No need to translate this error message.

This commit is contained in:
Todd C. Miller
2013-04-24 11:11:21 -04:00
parent ad019da9ef
commit 8ca50e13b7
2 changed files with 6 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sudo 1.8.7\n"
"Report-Msgid-Bugs-To: http://www.sudo.ws/bugs\n"
"POT-Creation-Date: 2013-04-19 09:53-0400\n"
"POT-Creation-Date: 2013-04-24 11:10-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1079,22 +1079,22 @@ msgstr ""
msgid "unable to cache user %s, already exists"
msgstr ""
#: plugins/sudoers/pwutil.c:374
#: plugins/sudoers/pwutil.c:386
#, c-format
msgid "unable to cache gid %u, already exists"
msgstr ""
#: plugins/sudoers/pwutil.c:410
#: plugins/sudoers/pwutil.c:422
#, c-format
msgid "unable to cache group %s, already exists"
msgstr ""
#: plugins/sudoers/pwutil.c:564 plugins/sudoers/pwutil.c:586
#: plugins/sudoers/pwutil.c:578 plugins/sudoers/pwutil.c:600
#, c-format
msgid "unable to cache group list for %s, already exists"
msgstr ""
#: plugins/sudoers/pwutil.c:584
#: plugins/sudoers/pwutil.c:598
#, c-format
msgid "unable to parse groups for %s"
msgstr ""
@@ -1321,11 +1321,6 @@ msgstr ""
msgid "writing to standard output"
msgstr ""
#: plugins/sudoers/sudoreplay.c:528
#, c-format
msgid "nanosleep: tv_sec %ld, tv_nsec %ld"
msgstr ""
#: plugins/sudoers/sudoreplay.c:641 plugins/sudoers/sudoreplay.c:666
#, c-format
msgid "ambiguous expression \"%s\""

View File

@@ -525,7 +525,7 @@ delay(double secs)
rval = nanosleep(&ts, &rts);
} while (rval == -1 && errno == EINTR);
if (rval == -1) {
fatal_nodebug(_("nanosleep: tv_sec %lld, tv_nsec %ld"),
fatal_nodebug("nanosleep: tv_sec %lld, tv_nsec %ld",
(long long)ts.tv_sec, (long)ts.tv_nsec);
}
}