Skip to content

Commit 8785c42

Browse files
vascoolgitster
authored andcommittedJun 17, 2016
i18n: advice: internationalize message for conflicts
Mark message for translation telling the user she has conflicts to resolve. Expose each particular use case, in order to enable translating entire sentences which would facilitate translating into other languages. Change "Pull" to lowercase to match other instances. Update test t5520-pull.sh, that relied on the old error message, to use the new one. Although we loose in source code conciseness, we would gain better translations because translators can 1) translate the entire sentence, including those terms concerning Git (committing, merging, etc) 2) have leeway to adapt to their languages. Signed-off-by: Vasco Almeida <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent e9f3cec commit 8785c42

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed
 

‎advice.c

+15-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,20 @@ int git_default_advice_config(const char *var, const char *value)
7979

8080
int error_resolve_conflict(const char *me)
8181
{
82-
error("%s is not possible because you have unmerged files.", me);
82+
if (!strcmp(me, "cherry-pick"))
83+
error(_("Cherry-picking is not possible because you have unmerged files."));
84+
else if (!strcmp(me, "commit"))
85+
error(_("Committing is not possible because you have unmerged files."));
86+
else if (!strcmp(me, "merge"))
87+
error(_("Merging is not possible because you have unmerged files."));
88+
else if (!strcmp(me, "pull"))
89+
error(_("Pulling is not possible because you have unmerged files."));
90+
else if (!strcmp(me, "revert"))
91+
error(_("Reverting is not possible because you have unmerged files."));
92+
else
93+
error(_("It is not possible to %s because you have unmerged files."),
94+
me);
95+
8396
if (advice_resolve_conflict)
8497
/*
8598
* Message used both when 'git commit' fails and when
@@ -93,7 +106,7 @@ int error_resolve_conflict(const char *me)
93106
void NORETURN die_resolve_conflict(const char *me)
94107
{
95108
error_resolve_conflict(me);
96-
die("Exiting because of an unresolved conflict.");
109+
die(_("Exiting because of an unresolved conflict."));
97110
}
98111

99112
void NORETURN die_conclude_merge(void)

‎builtin/pull.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ int cmd_pull(int argc, const char **argv, const char *prefix)
852852
git_config(git_pull_config, NULL);
853853

854854
if (read_cache_unmerged())
855-
die_resolve_conflict("Pull");
855+
die_resolve_conflict("pull");
856856

857857
if (file_exists(git_path("MERGE_HEAD")))
858858
die_conclude_merge();

‎t/t5520-pull.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ test_expect_success 'fail if the index has unresolved entries' '
211211
test -n "$(git ls-files -u)" &&
212212
cp file expected &&
213213
test_must_fail git pull . second 2>err &&
214-
test_i18ngrep "Pull is not possible because you have unmerged files" err &&
214+
test_i18ngrep "Pulling is not possible because you have unmerged files." err &&
215215
test_cmp expected file &&
216216
git add file &&
217217
test -z "$(git ls-files -u)" &&

0 commit comments

Comments
 (0)
Please sign in to comment.