wt-status: begin error messages with lower-case

The previous code still followed the old git-pull.sh code which did not adhere to our new convention. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Oct 7, 2016 at 18:09 UTC 4777e175de439b7ea0c435de4bb0de9ab1663c38
1 file changed +3 -3
wt-status.c
+3 -3
@@ -2265,15 +2265,15 @@ int require_clean_work_tree(const char *action, const char *hint, int ignore_sub
2265
2266 if (has_unstaged_changes(ignore_submodules)) {
2267 /* TRANSLATORS: the action is e.g. "pull with rebase" */
2268 - error(_("Cannot %s: You have unstaged changes."), _(action));
2268 + error(_("cannot %s: You have unstaged changes."), _(action));
2269 err = 1;
2270 }
2271
2272 if (has_uncommitted_changes(ignore_submodules)) {
2273 if (err)
2274 - error(_("Additionally, your index contains uncommitted changes."));
2274 + error(_("additionally, your index contains uncommitted changes."));
2275 else
2276 - error(_("Cannot %s: Your index contains uncommitted changes."),
2276 + error(_("cannot %s: Your index contains uncommitted changes."),
2277 _(action));
2278 err = 1;
2279 }