i18n: update-index: mark warnings for translation
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
205d13451d
commit
43073f8984
@ -1127,9 +1127,9 @@ int cmd_update_index(int argc, const char **argv, const char *prefix)
|
|||||||
break;
|
break;
|
||||||
case UC_DISABLE:
|
case UC_DISABLE:
|
||||||
if (git_config_get_untracked_cache() == 1)
|
if (git_config_get_untracked_cache() == 1)
|
||||||
warning("core.untrackedCache is set to true; "
|
warning(_("core.untrackedCache is set to true; "
|
||||||
"remove or change it, if you really want to "
|
"remove or change it, if you really want to "
|
||||||
"disable the untracked cache");
|
"disable the untracked cache"));
|
||||||
remove_untracked_cache(&the_index);
|
remove_untracked_cache(&the_index);
|
||||||
report(_("Untracked cache disabled"));
|
report(_("Untracked cache disabled"));
|
||||||
break;
|
break;
|
||||||
@ -1139,9 +1139,9 @@ int cmd_update_index(int argc, const char **argv, const char *prefix)
|
|||||||
case UC_ENABLE:
|
case UC_ENABLE:
|
||||||
case UC_FORCE:
|
case UC_FORCE:
|
||||||
if (git_config_get_untracked_cache() == 0)
|
if (git_config_get_untracked_cache() == 0)
|
||||||
warning("core.untrackedCache is set to false; "
|
warning(_("core.untrackedCache is set to false; "
|
||||||
"remove or change it, if you really want to "
|
"remove or change it, if you really want to "
|
||||||
"enable the untracked cache");
|
"enable the untracked cache"));
|
||||||
add_untracked_cache(&the_index);
|
add_untracked_cache(&the_index);
|
||||||
report(_("Untracked cache enabled for '%s'"), get_git_work_tree());
|
report(_("Untracked cache enabled for '%s'"), get_git_work_tree());
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user