Exclude '\v' from xgettext markers.
Showing
3 changed files
with
8 additions
and
6 deletions
... | @@ -32,10 +32,12 @@ | ... | @@ -32,10 +32,12 @@ |
32 | 32 | ||
33 | const char *argp_program_version = "GNU dotlock (" PACKAGE_STRING ")"; | 33 | const char *argp_program_version = "GNU dotlock (" PACKAGE_STRING ")"; |
34 | static char doc[] = | 34 | static char doc[] = |
35 | N_("GNU dotlock -- lock mail spool files" | 35 | N_("GNU dotlock -- lock mail spool files") |
36 | "\v" | 36 | "\v" |
37 | "Returns 0 on success, 3 if the locking the file fails because" | 37 | N_("Returns 0 on success, 3 if the locking the file fails because" |
38 | " it's already locked, and 1 if some other kind of error occurred."); | 38 | " it's already locked, and 1 if some other kind of error occurred."); |
39 | /* Note: keep \v excluded from the gettext strings, this way it's more | ||
40 | convenient for translators */ | ||
39 | 41 | ||
40 | static char args_doc[] = N_("FILE"); | 42 | static char args_doc[] = N_("FILE"); |
41 | error_t argp_err_exit_status = MU_DL_EX_ERROR; | 43 | error_t argp_err_exit_status = MU_DL_EX_ERROR; | ... | ... |
... | @@ -43,9 +43,9 @@ void notify_biff __P((mailbox_t mbox, char *name, size_t size)); | ... | @@ -43,9 +43,9 @@ void notify_biff __P((mailbox_t mbox, char *name, size_t size)); |
43 | 43 | ||
44 | const char *argp_program_version = "mail.local (" PACKAGE_STRING ")"; | 44 | const char *argp_program_version = "mail.local (" PACKAGE_STRING ")"; |
45 | static char doc[] = | 45 | static char doc[] = |
46 | N_("GNU mail.local -- the local MDA" | 46 | N_("GNU mail.local -- the local MDA") |
47 | "\v" | 47 | "\v" |
48 | "Debug flags are:\n" | 48 | N_("Debug flags are:\n" |
49 | " g - guimb stack traces\n" | 49 | " g - guimb stack traces\n" |
50 | " T - mailutil traces (MU_DEBUG_TRACE)\n" | 50 | " T - mailutil traces (MU_DEBUG_TRACE)\n" |
51 | " P - network protocols (MU_DEBUG_PROT)\n" | 51 | " P - network protocols (MU_DEBUG_PROT)\n" | ... | ... |
... | @@ -42,10 +42,10 @@ | ... | @@ -42,10 +42,10 @@ |
42 | 42 | ||
43 | const char *argp_program_version = "mail.remote (" PACKAGE_STRING ")"; | 43 | const char *argp_program_version = "mail.remote (" PACKAGE_STRING ")"; |
44 | static char doc[] = | 44 | static char doc[] = |
45 | N_("GNU mail.remote -- pseudo-sendmail interface for mail delivery\n" | 45 | N_("GNU mail.remote -- pseudo-sendmail interface for mail delivery\n") |
46 | "\v" | 46 | "\v" |
47 | "\n" | 47 | "\n" |
48 | "An RFC2822 formatted message is read from stdin and delivered using\n" | 48 | N_("An RFC2822 formatted message is read from stdin and delivered using\n" |
49 | "the mailer. This utility can be used as a drop-in replacement\n" | 49 | "the mailer. This utility can be used as a drop-in replacement\n" |
50 | "for /bin/sendmail to forward mail directly to an SMTP gateway.\n" | 50 | "for /bin/sendmail to forward mail directly to an SMTP gateway.\n" |
51 | "\n" | 51 | "\n" | ... | ... |
-
Please register or sign in to post a comment