summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorKyle J. McKay <mackyle@gmail.com>2015-01-06 10:34:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-01-06 19:30:42 (GMT)
commite66dc0cc4b1a625acc7200f69e0261c77fb1f0a6 (patch)
treeac3957bc1e5f03f03a2659e91baf7bf3b7b2cf4e /builtin
parent9a8c2b67cd5a51666f2c0ce3fbbdb08b97b79b3d (diff)
downloadgit-e66dc0cc4b1a625acc7200f69e0261c77fb1f0a6.zip
git-e66dc0cc4b1a625acc7200f69e0261c77fb1f0a6.tar.gz
git-e66dc0cc4b1a625acc7200f69e0261c77fb1f0a6.tar.bz2
log.c: fix translation markings
The parse_options API expects an array of alternative usage lines to which it automatically ads the language-appropriate "or" when displaying. Each of these options is marked for translation with N_ and then later translated when gettext is called on each element of the array. Since the N_ macro just expands to its argument, if two N_-marked strings appear next to each other without being separated by anything else such as a comma, the preprocessor will join them into one string. In that case two separate strings get marked for translation, but at runtime they have been joined into a single string passed to gettext which then fails to get translated because the combined string was never marked for translation. Fix this by properly separating the two N_ marked strings with a comma and removing the embedded "\n" and " or:" that are properly supplied by the parse_options API. Signed-off-by: Kyle J. McKay <mackyle@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/log.c b/builtin/log.c
index 4f67813..f138b2a 100644
--- a/builtin/log.c
+++ b/builtin/log.c
@@ -38,8 +38,8 @@ static const char *fmt_patch_subject_prefix = "PATCH";
static const char *fmt_pretty;
static const char * const builtin_log_usage[] = {
- N_("git log [<options>] [<revision range>] [[--] <path>...]\n")
- N_(" or: git show [options] <object>..."),
+ N_("git log [<options>] [<revision range>] [[--] <path>...]"),
+ N_("git show [options] <object>..."),
NULL
};