We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a80897c commit cbb46caCopy full SHA for cbb46ca
environment.c
@@ -147,7 +147,7 @@ static char *expand_namespace(const char *raw_namespace)
147
strbuf_addf(&buf, "refs/namespaces/%s", (*c)->buf);
148
strbuf_list_free(components);
149
if (check_refname_format(buf.buf, 0))
150
- die("bad git namespace path \"%s\"", raw_namespace);
+ die(_("bad git namespace path \"%s\""), raw_namespace);
151
strbuf_addch(&buf, '/');
152
return strbuf_detach(&buf, NULL);
153
}
@@ -329,7 +329,7 @@ char *get_graft_file(void)
329
static void set_git_dir_1(const char *path)
330
{
331
if (setenv(GIT_DIR_ENVIRONMENT, path, 1))
332
- die("could not set GIT_DIR to '%s'", path);
+ die(_("could not set GIT_DIR to '%s'"), path);
333
setup_git_env(path);
334
335
0 commit comments