Skip to content

Commit ce885c5

Browse files
committed
Merge branch 'ah/stash-usage-i18n-fix'
i18n update. * ah/stash-usage-i18n-fix: stash: don't translate literal commands
2 parents b03709e + 4901884 commit ce885c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builtin/stash.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const char * const git_stash_usage[] = {
2626
N_("git stash drop [-q|--quiet] [<stash>]"),
2727
N_("git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>]"),
2828
N_("git stash branch <branchname> [<stash>]"),
29-
N_("git stash clear"),
29+
"git stash clear",
3030
N_("git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"
3131
" [-u|--include-untracked] [-a|--all] [-m|--message <message>]\n"
3232
" [--pathspec-from-file=<file> [--pathspec-file-nul]]\n"
@@ -67,7 +67,7 @@ static const char * const git_stash_branch_usage[] = {
6767
};
6868

6969
static const char * const git_stash_clear_usage[] = {
70-
N_("git stash clear"),
70+
"git stash clear",
7171
NULL
7272
};
7373

0 commit comments

Comments
 (0)