mirror of
https://github.com/git/git.git
synced 2024-11-28 20:44:04 +08:00
i18n: receive-pack: mark messages for translation
Mark messages refuse_unconfigured_deny_msg and refuse_unconfigured_deny_delete_current_msg 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
8d79589ad6
commit
8ba35a2dc6
@ -775,47 +775,39 @@ static int is_ref_checked_out(const char *ref)
|
||||
return !strcmp(head_name, ref);
|
||||
}
|
||||
|
||||
static char *refuse_unconfigured_deny_msg[] = {
|
||||
"By default, updating the current branch in a non-bare repository",
|
||||
"is denied, because it will make the index and work tree inconsistent",
|
||||
"with what you pushed, and will require 'git reset --hard' to match",
|
||||
"the work tree to HEAD.",
|
||||
"",
|
||||
"You can set 'receive.denyCurrentBranch' configuration variable to",
|
||||
"'ignore' or 'warn' in the remote repository to allow pushing into",
|
||||
"its current branch; however, this is not recommended unless you",
|
||||
"arranged to update its work tree to match what you pushed in some",
|
||||
"other way.",
|
||||
"",
|
||||
"To squelch this message and still keep the default behaviour, set",
|
||||
"'receive.denyCurrentBranch' configuration variable to 'refuse'."
|
||||
};
|
||||
static char *refuse_unconfigured_deny_msg =
|
||||
N_("By default, updating the current branch in a non-bare repository\n"
|
||||
"is denied, because it will make the index and work tree inconsistent\n"
|
||||
"with what you pushed, and will require 'git reset --hard' to match\n"
|
||||
"the work tree to HEAD.\n"
|
||||
"\n"
|
||||
"You can set 'receive.denyCurrentBranch' configuration variable to\n"
|
||||
"'ignore' or 'warn' in the remote repository to allow pushing into\n"
|
||||
"its current branch; however, this is not recommended unless you\n"
|
||||
"arranged to update its work tree to match what you pushed in some\n"
|
||||
"other way.\n"
|
||||
"\n"
|
||||
"To squelch this message and still keep the default behaviour, set\n"
|
||||
"'receive.denyCurrentBranch' configuration variable to 'refuse'.");
|
||||
|
||||
static void refuse_unconfigured_deny(void)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < ARRAY_SIZE(refuse_unconfigured_deny_msg); i++)
|
||||
rp_error("%s", refuse_unconfigured_deny_msg[i]);
|
||||
rp_error("%s", _(refuse_unconfigured_deny_msg));
|
||||
}
|
||||
|
||||
static char *refuse_unconfigured_deny_delete_current_msg[] = {
|
||||
"By default, deleting the current branch is denied, because the next",
|
||||
"'git clone' won't result in any file checked out, causing confusion.",
|
||||
"",
|
||||
"You can set 'receive.denyDeleteCurrent' configuration variable to",
|
||||
"'warn' or 'ignore' in the remote repository to allow deleting the",
|
||||
"current branch, with or without a warning message.",
|
||||
"",
|
||||
"To squelch this message, you can set it to 'refuse'."
|
||||
};
|
||||
static char *refuse_unconfigured_deny_delete_current_msg =
|
||||
N_("By default, deleting the current branch is denied, because the next\n"
|
||||
"'git clone' won't result in any file checked out, causing confusion.\n"
|
||||
"\n"
|
||||
"You can set 'receive.denyDeleteCurrent' configuration variable to\n"
|
||||
"'warn' or 'ignore' in the remote repository to allow deleting the\n"
|
||||
"current branch, with or without a warning message.\n"
|
||||
"\n"
|
||||
"To squelch this message, you can set it to 'refuse'.");
|
||||
|
||||
static void refuse_unconfigured_deny_delete_current(void)
|
||||
{
|
||||
int i;
|
||||
for (i = 0;
|
||||
i < ARRAY_SIZE(refuse_unconfigured_deny_delete_current_msg);
|
||||
i++)
|
||||
rp_error("%s", refuse_unconfigured_deny_delete_current_msg[i]);
|
||||
rp_error("%s", _(refuse_unconfigured_deny_delete_current_msg));
|
||||
}
|
||||
|
||||
static int command_singleton_iterator(void *cb_data, unsigned char sha1[20]);
|
||||
|
Loading…
Reference in New Issue
Block a user