rebase: don't translate trace strings
commit b3a5d5a80c ("trace2:data: add subverb for rebase", 2019-02-22) mistakenly marked the subverb names for translation and unnecessarily NULL terminated the array. Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Phillip Wood committed
Apr 17, 2019 at 15:30 UTC
146839c4b69ec47a356eb1156f2093ac5cc2cb60
1 file changed
+7
-8
builtin/rebase.c
+7
-8
@@ -1027,14 +1027,13 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
1027
ACTION_EDIT_TODO,
1028
ACTION_SHOW_CURRENT_PATCH,
1029
} action = NO_ACTION;
1030
- static const char *action_names[] = { N_("undefined"),
1031
- N_("continue"),
1032
- N_("skip"),
1033
- N_("abort"),
1034
- N_("quit"),
1035
- N_("edit_todo"),
1036
- N_("show_current_patch"),
1037
- NULL };
1030
+ static const char *action_names[] = { "undefined",
1031
+ "continue",
1032
+ "skip",
1033
+ "abort",
1034
+ "quit",
1035
+ "edit_todo",
1036
+ "show_current_patch" };
1037
const char *gpg_sign = NULL;
1038
struct string_list exec = STRING_LIST_INIT_NODUP;
1039
const char *rebase_merges = NULL;