diff options
author | Theodore Ts'o <tytso@mit.edu> | 2011-10-09 17:08:47 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-10-09 17:54:23 -0400 |
commit | 3fcd8fe8acb269598390b35bbf6e4247d10bc64e (patch) | |
tree | b47c1e0269e97c862dc428a5ed413443ba1c5b12 /misc/uuidd.c | |
parent | d4d03cd3ffe4cb09f2206f1def1361be25761523 (diff) | |
download | e2fsprogs-3fcd8fe8acb269598390b35bbf6e4247d10bc64e.tar.gz |
Fix more spelling errors found by translators and add pluralization
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'misc/uuidd.c')
-rw-r--r-- | misc/uuidd.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/misc/uuidd.c b/misc/uuidd.c index 37e031a5..2e255ba1 100644 --- a/misc/uuidd.c +++ b/misc/uuidd.c @@ -396,8 +396,11 @@ static void server_loop(const char *socket_path, const char *pidfile_path, uuid__generate_time(uu, &num); if (debug) { uuid_unparse(uu, str); - printf(_("Generated time UUID %s and %d " - "following\n"), str, num); + printf(P_("Generated time UUID %s and " + "subsequent UUID\n", + "Generated time UUID %s and %d " + "subsequent UUIDs\n", num), + str, num); } memcpy(reply_buf, uu, sizeof(uu)); reply_len = sizeof(uu); @@ -537,7 +540,9 @@ int main(int argc, char **argv) uuid_unparse((unsigned char *) buf, str); - printf(_("%s and subsequent %d UUID's\n"), str, num); + printf(P_("%s and subsequent UUID\n", + "%s and subsequent %d UUIDs\n", num), + str, num); } else { printf(_("List of UUID's:\n")); cp = buf + 4; |