unpack-trees: do not capitalize "working"
In English, only proper nouns are capitalized. Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Alex Henrie committed
Sep 7, 2016 at 22:34 UTC
a1c8044662947caeefc9d8f5c31dc77548d81cb4
1 file changed
+2
-2
unpack-trees.c
+2
-2
@@ -123,9 +123,9 @@ void setup_unpack_trees_porcelain(struct unpack_trees_options *opts,
123
msgs[ERROR_SPARSE_NOT_UPTODATE_FILE] =
124
_("Cannot update sparse checkout: the following entries are not up-to-date:\n%s");
125
msgs[ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN] =
126
- _("The following Working tree files would be overwritten by sparse checkout update:\n%s");
126
+ _("The following working tree files would be overwritten by sparse checkout update:\n%s");
127
msgs[ERROR_WOULD_LOSE_ORPHANED_REMOVED] =
128
- _("The following Working tree files would be removed by sparse checkout update:\n%s");
128
+ _("The following working tree files would be removed by sparse checkout update:\n%s");
129
130
opts->show_all_errors = 1;
131
/* rejected paths may not have a static buffer */