From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
To: git@vger.kernel.org
Cc: "Junio C Hamano" <gitster@pobox.com>,
"Jakub Narebski" <jnareb@gmail.com>,
"Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
Subject: [PATCH v4 25/73] gettextize: git-commit basic messages
Date: Tue, 22 Feb 2011 23:41:44 +0000 [thread overview]
Message-ID: <1298418152-27789-26-git-send-email-avarab@gmail.com> (raw)
In-Reply-To: <7vhbbwdjnm.fsf@alter.siamese.dyndns.org>
In-Reply-To: <7vhbbwdjnm.fsf@alter.siamese.dyndns.org>
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
---
builtin/commit.c | 118 +++++++++++++++++++++++++++---------------------------
1 files changed, 59 insertions(+), 59 deletions(-)
diff --git a/builtin/commit.c b/builtin/commit.c
index d7f55e3..c57f603 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -243,7 +243,7 @@ static void add_remove_files(struct string_list *list)
if (!lstat(p->string, &st)) {
if (add_to_cache(p->string, &st, 0))
- die("updating files failed");
+ die(_("updating files failed"));
} else
remove_file_from_cache(p->string);
}
@@ -270,7 +270,7 @@ static void create_base_index(void)
opts.fn = oneway_merge;
tree = parse_tree_indirect(head_sha1);
if (!tree)
- die("failed to unpack HEAD tree object");
+ die(_("failed to unpack HEAD tree object"));
parse_tree(tree);
init_tree_desc(&t, tree->buffer, tree->size);
if (unpack_trees(1, &t, &opts))
@@ -298,9 +298,9 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, int
refresh_flags |= REFRESH_UNMERGED;
if (interactive) {
if (interactive_add(argc, argv, prefix) != 0)
- die("interactive add failed");
+ die(_("interactive add failed"));
if (read_cache_preload(NULL) < 0)
- die("index file corrupt");
+ die(_("index file corrupt"));
commit_style = COMMIT_AS_IS;
return get_index_file();
}
@@ -309,7 +309,7 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, int
pathspec = get_pathspec(prefix, argv);
if (read_cache_preload(pathspec) < 0)
- die("index file corrupt");
+ die(_("index file corrupt"));
/*
* Non partial, non as-is commit.
@@ -329,7 +329,7 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, int
refresh_cache_or_die(refresh_flags);
if (write_cache(fd, active_cache, active_nr) ||
close_lock_file(&index_lock))
- die("unable to write new_index file");
+ die(_("unable to write new_index file"));
commit_style = COMMIT_NORMAL;
return index_lock.filename;
}
@@ -349,7 +349,7 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, int
if (active_cache_changed) {
if (write_cache(fd, active_cache, active_nr) ||
commit_locked_index(&index_lock))
- die("unable to write new_index file");
+ die(_("unable to write new_index file"));
} else {
rollback_lock_file(&index_lock);
}
@@ -379,7 +379,7 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, int
commit_style = COMMIT_PARTIAL;
if (in_merge)
- die("cannot do a partial commit during a merge.");
+ die(_("cannot do a partial commit during a merge."));
memset(&partial, 0, sizeof(partial));
partial.strdup_strings = 1;
@@ -388,14 +388,14 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, int
discard_cache();
if (read_cache() < 0)
- die("cannot read the index");
+ die(_("cannot read the index"));
fd = hold_locked_index(&index_lock, 1);
add_remove_files(&partial);
refresh_cache(REFRESH_QUIET);
if (write_cache(fd, active_cache, active_nr) ||
close_lock_file(&index_lock))
- die("unable to write new_index file");
+ die(_("unable to write new_index file"));
fd = hold_lock_file_for_update(&false_lock,
git_path("next-index-%"PRIuMAX,
@@ -408,7 +408,7 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, int
if (write_cache(fd, active_cache, active_nr) ||
close_lock_file(&false_lock))
- die("unable to write temporary index file");
+ die(_("unable to write temporary index file"));
discard_cache();
read_cache_from(false_lock.filename);
@@ -455,7 +455,7 @@ static int is_a_merge(const unsigned char *sha1)
{
struct commit *commit = lookup_commit(sha1);
if (!commit || parse_commit(commit))
- die("could not parse HEAD commit");
+ die(_("could not parse HEAD commit"));
return !!(commit->parents && commit->parents->next);
}
@@ -474,13 +474,13 @@ static void determine_author_info(struct strbuf *author_ident)
a = strstr(use_message_buffer, "\nauthor ");
if (!a)
- die("invalid commit: %s", use_message);
+ die(_("invalid commit: %s"), use_message);
lb = strchrnul(a + strlen("\nauthor "), '<');
rb = strchrnul(lb, '>');
eol = strchrnul(rb, '\n');
if (!*lb || !*rb || !*eol)
- die("invalid commit: %s", use_message);
+ die(_("invalid commit: %s"), use_message);
if (lb == a + strlen("\nauthor "))
/* \nauthor <foo@example.com> */
@@ -498,7 +498,7 @@ static void determine_author_info(struct strbuf *author_ident)
const char *rb = strchr(force_author, '>');
if (!lb || !rb)
- die("malformed --author parameter");
+ die(_("malformed --author parameter"));
name = xstrndup(force_author, lb - force_author);
email = xstrndup(lb + 2, rb - (lb + 2));
}
@@ -554,7 +554,7 @@ static char *cut_ident_timestamp_part(char *string)
{
char *ket = strrchr(string, '>');
if (!ket || ket[1] != ' ')
- die("Malformed ident string: '%s'", string);
+ die(_("Malformed ident string: '%s'"), string);
*++ket = '\0';
return ket;
}
@@ -588,7 +588,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
struct commit *c;
c = lookup_commit_reference_by_name(squash_message);
if (!c)
- die("could not lookup commit %s", squash_message);
+ die(_("could not lookup commit %s"), squash_message);
ctx.output_encoding = get_commit_output_encoding();
format_commit_message(c, "squash! %s\n\n", &sb,
&ctx);
@@ -600,19 +600,19 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
hook_arg1 = "message";
} else if (logfile && !strcmp(logfile, "-")) {
if (isatty(0))
- fprintf(stderr, "(reading log message from standard input)\n");
+ fprintf(stderr, _("(reading log message from standard input)\n"));
if (strbuf_read(&sb, 0, 0) < 0)
- die_errno("could not read log from standard input");
+ die_errno(_("could not read log from standard input"));
hook_arg1 = "message";
} else if (logfile) {
if (strbuf_read_file(&sb, logfile, 0) < 0)
- die_errno("could not read log file '%s'",
+ die_errno(_("could not read log file '%s'"),
logfile);
hook_arg1 = "message";
} else if (use_message) {
buffer = strstr(use_message_buffer, "\n\n");
if (!buffer || buffer[2] == '\0')
- die("commit has empty message");
+ die(_("commit has empty message"));
strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
hook_arg1 = "commit";
hook_arg2 = use_message;
@@ -621,22 +621,22 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
struct commit *commit;
commit = lookup_commit_reference_by_name(fixup_message);
if (!commit)
- die("could not lookup commit %s", fixup_message);
+ die(_("could not lookup commit %s"), fixup_message);
ctx.output_encoding = get_commit_output_encoding();
format_commit_message(commit, "fixup! %s\n\n",
&sb, &ctx);
hook_arg1 = "message";
} else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
- die_errno("could not read MERGE_MSG");
+ die_errno(_("could not read MERGE_MSG"));
hook_arg1 = "merge";
} else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
- die_errno("could not read SQUASH_MSG");
+ die_errno(_("could not read SQUASH_MSG"));
hook_arg1 = "squash";
} else if (template_file && !stat(template_file, &statbuf)) {
if (strbuf_read_file(&sb, template_file, 0) < 0)
- die_errno("could not read '%s'", template_file);
+ die_errno(_("could not read '%s'"), template_file);
hook_arg1 = "template";
}
@@ -659,7 +659,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
fp = fopen(git_path(commit_editmsg), "w");
if (fp == NULL)
- die_errno("could not open '%s'", git_path(commit_editmsg));
+ die_errno(_("could not open '%s'"), git_path(commit_editmsg));
if (cleanup_mode != CLEANUP_NONE)
stripspace(&sb, 0);
@@ -683,7 +683,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
}
if (fwrite(sb.buf, 1, sb.len, fp) < sb.len)
- die_errno("could not write commit template");
+ die_errno(_("could not write commit template"));
strbuf_release(&sb);
@@ -752,7 +752,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
const char *parent = "HEAD";
if (!active_nr && read_cache() < 0)
- die("Cannot read index");
+ die(_("Cannot read index"));
if (amend)
parent = "HEAD^1";
@@ -785,7 +785,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
active_cache_tree = cache_tree();
if (cache_tree_update(active_cache_tree,
active_cache, active_nr, 0, 0) < 0) {
- error("Error building trees");
+ error(_("Error building trees"));
return 0;
}
@@ -800,7 +800,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
if (launch_editor(git_path(commit_editmsg), NULL, env)) {
fprintf(stderr,
- "Please supply the message using either -m or -F option.\n");
+ _("Please supply the message using either -m or -F option.\n"));
exit(1);
}
}
@@ -880,7 +880,7 @@ static const char *find_author_by_nickname(const char *name)
format_commit_message(commit, "%an <%ae>", &buf, &ctx);
return strbuf_detach(&buf, NULL);
}
- die("No existing author found with '%s'", name);
+ die(_("No existing author found with '%s'"), name);
}
@@ -895,7 +895,7 @@ static void handle_untracked_files_arg(struct wt_status *s)
else if (!strcmp(untracked_files_arg, "all"))
s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
else
- die("Invalid untracked files mode '%s'", untracked_files_arg);
+ die(_("Invalid untracked files mode '%s'"), untracked_files_arg);
}
static int parse_and_validate_options(int argc, const char *argv[],
@@ -912,7 +912,7 @@ static int parse_and_validate_options(int argc, const char *argv[],
force_author = find_author_by_nickname(force_author);
if (force_author && renew_authorship)
- die("Using both --reset-author and --author does not make sense");
+ die(_("Using both --reset-author and --author does not make sense"));
if (logfile || message.len || use_message || fixup_message)
use_editor = 0;
@@ -926,7 +926,7 @@ static int parse_and_validate_options(int argc, const char *argv[],
/* Sanity check options */
if (amend && initial_commit)
- die("You have nothing to amend.");
+ die(_("You have nothing to amend."));
if (amend && in_merge)
die("You are in the middle of a merge -- cannot amend.");
if (fixup_message && squash_message)
@@ -940,22 +940,22 @@ static int parse_and_validate_options(int argc, const char *argv[],
if (logfile)
f++;
if (f > 1)
- die("Only one of -c/-C/-F/--fixup can be used.");
+ die(_("Only one of -c/-C/-F/--fixup can be used."));
if (message.len && f > 0)
- die("Option -m cannot be combined with -c/-C/-F/--fixup.");
+ die((_("Option -m cannot be combined with -c/-C/-F/--fixup.")));
if (edit_message)
use_message = edit_message;
if (amend && !use_message && !fixup_message)
use_message = "HEAD";
if (!use_message && renew_authorship)
- die("--reset-author can be used only with -C, -c or --amend.");
+ die(_("--reset-author can be used only with -C, -c or --amend."));
if (use_message) {
const char *out_enc;
struct commit *commit;
commit = lookup_commit_reference_by_name(use_message);
if (!commit)
- die("could not lookup commit %s", use_message);
+ die(_("could not lookup commit %s"), use_message);
out_enc = get_commit_output_encoding();
use_message_buffer = logmsg_reencode(commit, out_enc);
@@ -970,13 +970,13 @@ static int parse_and_validate_options(int argc, const char *argv[],
}
if (!!also + !!only + !!all + !!interactive > 1)
- die("Only one of --include/--only/--all/--interactive can be used.");
+ die(_("Only one of --include/--only/--all/--interactive can be used."));
if (argc == 0 && (also || (only && !amend)))
- die("No paths with --include/--only does not make sense.");
+ die(_("No paths with --include/--only does not make sense."));
if (argc == 0 && only && amend)
- only_include_assumed = "Clever... amending the last one with dirty index.";
+ only_include_assumed = _("Clever... amending the last one with dirty index.");
if (argc > 0 && !also && !only)
- only_include_assumed = "Explicit paths specified without -i nor -o; assuming --only paths...";
+ only_include_assumed = _("Explicit paths specified without -i nor -o; assuming --only paths...");
if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
else if (!strcmp(cleanup_arg, "verbatim"))
@@ -986,14 +986,14 @@ static int parse_and_validate_options(int argc, const char *argv[],
else if (!strcmp(cleanup_arg, "strip"))
cleanup_mode = CLEANUP_ALL;
else
- die("Invalid cleanup mode %s", cleanup_arg);
+ die(_("Invalid cleanup mode %s"), cleanup_arg);
handle_untracked_files_arg(s);
if (all && argc > 0)
- die("Paths with -a does not make sense.");
+ die(_("Paths with -a does not make sense."));
else if (interactive && argc > 0)
- die("Paths with --interactive does not make sense.");
+ die(_("Paths with --interactive does not make sense."));
if (null_termination && status_format == STATUS_FORMAT_LONG)
status_format = STATUS_FORMAT_PORCELAIN;
@@ -1074,7 +1074,7 @@ static int git_status_config(const char *k, const char *v, void *cb)
else if (!strcmp(v, "all"))
s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
else
- return error("Invalid untracked files mode '%s'", v);
+ return error(_("Invalid untracked files mode '%s'"), v);
return 0;
}
return git_diff_ui_config(k, v, NULL);
@@ -1180,9 +1180,9 @@ static void print_summary(const char *prefix, const unsigned char *sha1)
commit = lookup_commit(sha1);
if (!commit)
- die("couldn't look up newly created commit");
+ die(_("couldn't look up newly created commit"));
if (!commit || parse_commit(commit))
- die("could not parse newly created commit");
+ die(_("could not parse newly created commit"));
strbuf_addstr(&format, "format:%h] %s");
@@ -1336,7 +1336,7 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
reflog_msg = "commit (amend)";
commit = lookup_commit(head_sha1);
if (!commit || parse_commit(commit))
- die("could not parse HEAD commit");
+ die(_("could not parse HEAD commit"));
for (c = commit->parents; c; c = c->next)
pptr = &commit_list_insert(c->item, pptr)->next;
@@ -1349,19 +1349,19 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
fp = fopen(git_path("MERGE_HEAD"), "r");
if (fp == NULL)
- die_errno("could not open '%s' for reading",
+ die_errno(_("could not open '%s' for reading"),
git_path("MERGE_HEAD"));
while (strbuf_getline(&m, fp, '\n') != EOF) {
unsigned char sha1[20];
if (get_sha1_hex(m.buf, sha1) < 0)
- die("Corrupt MERGE_HEAD file (%s)", m.buf);
+ die(_("Corrupt MERGE_HEAD file (%s)"), m.buf);
pptr = &commit_list_insert(lookup_commit(sha1), pptr)->next;
}
fclose(fp);
strbuf_release(&m);
if (!stat(git_path("MERGE_MODE"), &statbuf)) {
if (strbuf_read_file(&sb, git_path("MERGE_MODE"), 0) < 0)
- die_errno("could not read MERGE_MODE");
+ die_errno(_("could not read MERGE_MODE"));
if (!strcmp(sb.buf, "no-ff"))
allow_fast_forward = 0;
}
@@ -1378,7 +1378,7 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
int saved_errno = errno;
rollback_index_files();
- die("could not read commit message: %s", strerror(saved_errno));
+ die(_("could not read commit message: %s"), strerror(saved_errno));
}
/* Truncate the message just before the diff, if any. */
@@ -1392,14 +1392,14 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
stripspace(&sb, cleanup_mode == CLEANUP_ALL);
if (message_is_empty(&sb) && !allow_empty_message) {
rollback_index_files();
- fprintf(stderr, "Aborting commit due to empty commit message.\n");
+ fprintf(stderr, _("Aborting commit due to empty commit message.\n"));
exit(1);
}
if (commit_tree(sb.buf, active_cache_tree->sha1, parents, commit_sha1,
author_ident.buf)) {
rollback_index_files();
- die("failed to write commit object");
+ die(_("failed to write commit object"));
}
strbuf_release(&author_ident);
@@ -1417,11 +1417,11 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
if (!ref_lock) {
rollback_index_files();
- die("cannot lock HEAD ref");
+ die(_("cannot lock HEAD ref"));
}
if (write_ref_sha1(ref_lock, commit_sha1, sb.buf) < 0) {
rollback_index_files();
- die("cannot update HEAD ref");
+ die(_("cannot update HEAD ref"));
}
unlink(git_path("MERGE_HEAD"));
@@ -1430,9 +1430,9 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
unlink(git_path("SQUASH_MSG"));
if (commit_index_files())
- die ("Repository has been updated, but unable to write\n"
+ die (_("Repository has been updated, but unable to write\n"
"new_index file. Check that disk is not full or quota is\n"
- "not exceeded, and then \"git reset HEAD\" to recover.");
+ "not exceeded, and then \"git reset HEAD\" to recover."));
rerere(0);
run_hook(get_index_file(), "post-commit", NULL);
--
1.7.2.3
next prev parent reply other threads:[~2011-02-22 23:44 UTC|newest]
Thread overview: 222+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-19 19:23 [PATCH 00/72] No-op C gettext wrappers Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 01/72] gettext.h: add no-op _() and N_() wrappers Ævar Arnfjörð Bjarmason
2011-02-20 2:01 ` Jonathan Nieder
2011-02-20 10:13 ` Erik Faye-Lund
2011-02-20 10:34 ` Jonathan Nieder
2011-02-20 21:11 ` Ævar Arnfjörð Bjarmason
2011-02-20 22:03 ` Jonathan Nieder
2011-02-19 19:23 ` [PATCH 02/72] cache.h: include gettext.h Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 03/72] t/test-lib.sh: add always-set NO_GETTEXT_POISON prerequisite Ævar Arnfjörð Bjarmason
2011-02-20 2:10 ` Jonathan Nieder
2011-02-20 12:42 ` Ævar Arnfjörð Bjarmason
2011-02-20 21:55 ` Jonathan Nieder
2011-02-20 22:05 ` Ævar Arnfjörð Bjarmason
2011-02-20 22:10 ` Jonathan Nieder
2011-02-20 22:31 ` Ævar Arnfjörð Bjarmason
2011-02-20 22:36 ` Jonathan Nieder
2011-02-21 6:56 ` Junio C Hamano
2011-02-19 19:23 ` [PATCH 04/72] gettextize: git-init basic messages Ævar Arnfjörð Bjarmason
2011-02-20 2:21 ` Jonathan Nieder
2011-02-19 19:23 ` [PATCH 05/72] gettextize: git-init "Initialized [...] repository" message Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 06/72] gettextize: git-clone basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 07/72] gettextize: git-clone "Cloning into" message Ævar Arnfjörð Bjarmason
2011-02-21 9:19 ` Jonathan Nieder
2011-02-19 19:23 ` [PATCH 08/72] gettextize: git-add basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 09/72] gettextize: git-add "no files added" message Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 10/72] gettextize: git-add "Use -f if you really want" message Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 11/72] gettextize: git-add "pathspec [...] did not match" message Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 12/72] gettextize: git-add "remove '%s'" message Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 13/72] gettextize: git-add refresh_index message Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 14/72] gettextize: git-branch basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 15/72] gettextize: git-branch "remote branch '%s' not found" message Ævar Arnfjörð Bjarmason
2011-02-19 19:23 ` [PATCH 16/72] gettextize: git-branch "Deleted branch [...]" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 17/72] gettextize: git-branch "git branch -v" messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 18/72] gettextize: git-branch "(no branch)" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 19/72] gettextize: git-checkout basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 20/72] gettextize: git-checkout: our/their version message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 21/72] gettextize: git-checkout describe_detached_head messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 22/72] gettextize: git-checkout "HEAD is now at" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 23/72] gettextize: git-checkout "Switched to a .. branch" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 24/72] gettextize: git-commit basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 25/72] gettextize: git-commit "middle of a merge" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 26/72] gettextize: git-commit formatting messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 27/72] gettextize: git-commit print_summary messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 28/72] gettextize: git-commit "enter the commit message" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 29/72] gettextize: git-commit advice messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 30/72] gettextize: git-diff basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 31/72] gettextize: git-fetch " Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 32/72] gettextize: git-fetch formatting messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 33/72] gettextize: git-fetch update_local_ref messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 34/72] gettextize: git-fetch split up "(non-fast-forward)" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 35/72] gettextize: git-grep basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 36/72] gettextize: git-grep "--open-files-in-pager" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 37/72] gettextize: git-log basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 38/72] gettextize: git-log "--OPT does not make sense" messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 39/72] gettextize: git-merge basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 40/72] gettextize: git-merge "Updating %s..%s" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 41/72] gettextize: git-merge "You have not concluded your merge" messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 42/72] gettextize: git-merge "Wonderful" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 43/72] gettextize: git-mv basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 44/72] gettextize: git-mv "bad" messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 45/72] gettextize: git-rm basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 46/72] gettextize: git-reset " Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 47/72] gettextize: git-reset reset_type_names messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 48/72] gettextize: git-reset "Unstaged changes after reset" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 49/72] gettextize: git-tag basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 50/72] gettextize: git-tag tag_template message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 51/72] gettextize: git-push basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 52/72] gettextize: git-push "prevent you from losing" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 53/72] gettextize: git-status basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 54/72] gettextize: git-status "nothing to commit" messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 55/72] gettextize: git-status shortstatus messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 56/72] gettextize: git-status "Changes to be committed" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 57/72] gettextize: git-status "Initial commit" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 58/72] gettextize: git-status "renamed: " message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 59/72] gettextize: git-archive basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 60/72] gettextize: git-bundle " Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 61/72] gettextize: git-clean " Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 62/72] gettextize: git-clean clean.requireForce messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 63/72] gettextize: git-describe basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 64/72] gettextize: git-gc " Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 65/72] gettextize: git-gc "Auto packing the repository" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 66/72] gettextize: git-notes basic commands Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 67/72] gettextize: git-notes GIT_NOTES_REWRITE_MODE error message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 68/72] gettextize: git-revert basic messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 69/72] gettextize: git-revert "Your local changes" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 70/72] gettextize: git-revert literal "me" messages Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 71/72] gettextize: git-revert split up "could not revert/apply" message Ævar Arnfjörð Bjarmason
2011-02-19 19:24 ` [PATCH 72/72] gettextize: git-shortlog basic messages Ævar Arnfjörð Bjarmason
2011-02-21 4:00 ` [PATCH v2 0/3] No-op C gettext wrappers Jonathan Nieder
2011-02-21 4:02 ` [PATCH 1/3] i18n: add no-op _() and N_() wrappers Jonathan Nieder
2011-02-21 4:03 ` [PATCH 2/3] tests: add GETTEXT_POISON to simulate unfriendly translator Jonathan Nieder
2011-02-21 4:05 ` [PATCH 3/3] tests: let GETTEXT_POISON be disabled at run time Jonathan Nieder
2011-02-21 10:12 ` [PATCH v3 00/15] Mark "init", "clone", and "add" output for translation Jonathan Nieder
2011-02-21 10:13 ` [PATCH 01/15] i18n: add no-op _() and N_() wrappers Jonathan Nieder
2011-02-21 10:13 ` [PATCH 02/15] tests: add GETTEXT_POISON to simulate unfriendly translator Jonathan Nieder
2011-02-21 12:41 ` Ævar Arnfjörð Bjarmason
2011-02-21 12:58 ` Jonathan Nieder
2011-02-21 10:14 ` [PATCH 03/15] i18n: do not poison translations unless GIT_GETTEXT_POISON envvar is set Jonathan Nieder
2011-02-21 10:15 ` [PATCH 04/15] Makefile: "pot" target to extract messages marked for translation Jonathan Nieder
2011-02-21 12:35 ` Ævar Arnfjörð Bjarmason
2011-02-21 13:05 ` Jonathan Nieder
2011-02-21 13:14 ` Ævar Arnfjörð Bjarmason
2011-02-21 10:16 ` [PATCH 05/15] init: mark basic messages " Jonathan Nieder
2011-02-21 10:17 ` [PATCH 06/15] init: mark "Initialized [...] repository" " Jonathan Nieder
2011-02-21 10:18 ` [PATCH 07/15] clone: mark basic messages " Jonathan Nieder
2011-02-21 10:18 ` [PATCH 08/15] clone: split "Cloning into" message into two Jonathan Nieder
2011-02-21 10:19 ` [PATCH 09/15] clone: mark "Cloning into" message for translation Jonathan Nieder
2011-02-21 10:24 ` [PATCH 10/15] add: mark basic messages " Jonathan Nieder
2011-02-21 10:25 ` [PATCH 11/15] add: mark "The following paths are ignored" " Jonathan Nieder
2011-02-21 10:25 ` [PATCH 12/15] add: mark "did not match any files" " Jonathan Nieder
2011-02-21 10:26 ` [PATCH 13/15] add -u --verbose: mark "remove '%s'" " Jonathan Nieder
2011-02-21 10:26 ` [PATCH 14/15] update-index --refresh --porcelain: add missing const Jonathan Nieder
2011-02-21 10:29 ` [PATCH 15/15] add --refresh --verbose: mark "Unstaged changes" heading for translation Jonathan Nieder
2011-02-21 12:38 ` [PATCH v3 00/15] Mark "init", "clone", and "add" output " Ævar Arnfjörð Bjarmason
2011-02-22 7:36 ` Junio C Hamano
2011-02-22 11:22 ` Ævar Arnfjörð Bjarmason
2011-02-22 18:11 ` Junio C Hamano
2011-02-22 23:41 ` [PATCH v4 00/73] No-op gettextize core Git C programs Ævar Arnfjörð Bjarmason
2011-02-23 0:49 ` Junio C Hamano
2011-02-23 1:37 ` Junio C Hamano
2011-02-23 18:30 ` Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 01/73] gettext: add no-op _() and N_() wrappers Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 02/73] gettext tests: add GETTEXT_POISON to simulate unfriendly translator Ævar Arnfjörð Bjarmason
2011-02-25 7:08 ` Jonathan Nieder
2011-02-25 17:52 ` Junio C Hamano
2011-02-25 19:50 ` Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 03/73] gettext: do not poison translations unless GIT_GETTEXT_POISON envvar is set Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 04/73] Makefile: "pot" target to extract messages marked for translation Ævar Arnfjörð Bjarmason
2011-02-25 7:22 ` Jonathan Nieder
2011-02-25 19:53 ` Ævar Arnfjörð Bjarmason
2011-02-25 21:20 ` Jonathan Nieder
2011-02-25 21:36 ` Junio C Hamano
2011-02-25 22:11 ` Jonathan Nieder
2011-02-22 23:41 ` [PATCH v4 05/73] gettextize: git-init basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 06/73] gettextize: git-init "Initialized [...] repository" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 07/73] gettextize: git-clone basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 08/73] gettextize: git-clone "Cloning into" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 09/73] " Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 10/73] gettextize: git-add basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 11/73] gettextize: git-add "The following paths are ignored" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 12/73] gettextize: git-add "did not match any files" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 13/73] gettextize: git-add "remove '%s'" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 14/73] gettextize: git-add "Unstaged changes" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 15/73] gettextize: git-branch basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 16/73] gettextize: git-branch "remote branch '%s' not found" message Ævar Arnfjörð Bjarmason
2011-02-27 19:14 ` Piotr Krukowiecki
2011-02-22 23:41 ` [PATCH v4 17/73] gettextize: git-branch "Deleted branch [...]" message Ævar Arnfjörð Bjarmason
2011-02-25 7:54 ` Jonathan Nieder
2011-02-25 19:58 ` Ævar Arnfjörð Bjarmason
2011-02-25 21:16 ` Jonathan Nieder
2011-02-22 23:41 ` [PATCH v4 18/73] gettextize: git-branch "git branch -v" messages Ævar Arnfjörð Bjarmason
2011-02-25 7:52 ` Jonathan Nieder
2011-02-22 23:41 ` [PATCH v4 19/73] gettextize: git-branch "(no branch)" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 20/73] gettextize: git-checkout basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 21/73] gettextize: git-checkout: our/their version message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 22/73] gettextize: git-checkout describe_detached_head messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 23/73] gettextize: git-checkout "HEAD is now at" message Ævar Arnfjörð Bjarmason
2011-02-25 8:04 ` Jonathan Nieder
2011-02-22 23:41 ` [PATCH v4 24/73] gettextize: git-checkout "Switched to a .. branch" message Ævar Arnfjörð Bjarmason
2011-02-25 8:10 ` Jonathan Nieder
2011-02-25 19:33 ` Junio C Hamano
2011-02-25 19:47 ` Ævar Arnfjörð Bjarmason
2011-02-25 19:56 ` Junio C Hamano
2011-02-26 10:01 ` Junio C Hamano
2011-02-22 23:41 ` Ævar Arnfjörð Bjarmason [this message]
2011-02-22 23:41 ` [PATCH v4 26/73] gettextize: git-commit "middle of a merge" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 27/73] gettextize: git-commit formatting messages Ævar Arnfjörð Bjarmason
2011-02-25 9:07 ` [PATCH] commit: error out for missing commit message template Jonathan Nieder
2011-02-25 20:14 ` Junio C Hamano
2011-02-25 9:43 ` [PATCH v4 27/73] gettextize: git-commit formatting messages Jonathan Nieder
2011-02-25 18:46 ` Junio C Hamano
2011-02-25 20:01 ` Ævar Arnfjörð Bjarmason
2011-02-25 21:35 ` Jonathan Nieder
2011-02-22 23:41 ` [PATCH v4 28/73] gettextize: git-commit print_summary messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 29/73] gettextize: git-commit "enter the commit message" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 30/73] gettextize: git-commit advice messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 31/73] gettextize: git-diff basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 32/73] gettextize: git-fetch " Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 33/73] gettextize: git-fetch formatting messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 34/73] gettextize: git-fetch update_local_ref messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 35/73] gettextize: git-fetch split up "(non-fast-forward)" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 36/73] gettextize: git-grep basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 37/73] gettextize: git-grep "--open-files-in-pager" message Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 38/73] gettextize: git-log basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 39/73] gettextize: git-log "--OPT does not make sense" messages Ævar Arnfjörð Bjarmason
2011-02-22 23:41 ` [PATCH v4 40/73] gettextize: git-merge basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 41/73] gettextize: git-merge "Updating %s..%s" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 42/73] gettextize: git-merge "You have not concluded your merge" messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 43/73] gettextize: git-merge "Wonderful" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 44/73] gettextize: git-mv basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 45/73] gettextize: git-mv "bad" messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 46/73] gettextize: git-rm basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 47/73] gettextize: git-reset " Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 48/73] gettextize: git-reset reset_type_names messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 49/73] gettextize: git-reset "Unstaged changes after reset" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 50/73] gettextize: git-tag basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 51/73] gettextize: git-tag tag_template message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 52/73] gettextize: git-push basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 53/73] gettextize: git-push "prevent you from losing" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 54/73] gettextize: git-status basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 55/73] gettextize: git-status "nothing to commit" messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 56/73] gettextize: git-status shortstatus messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 57/73] gettextize: git-status "Changes to be committed" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 58/73] gettextize: git-status "Initial commit" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 59/73] gettextize: git-status "renamed: " message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 60/73] gettextize: git-archive basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 61/73] gettextize: git-bundle " Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 62/73] gettextize: git-clean " Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 63/73] gettextize: git-clean clean.requireForce messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 64/73] gettextize: git-describe basic messages Ævar Arnfjörð Bjarmason
2011-02-26 9:55 ` Jakub Narebski
2011-02-26 10:03 ` Junio C Hamano
2011-02-26 13:16 ` Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 65/73] gettextize: git-gc " Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 66/73] gettextize: git-gc "Auto packing the repository" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 67/73] gettextize: git-notes basic commands Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 68/73] gettextize: git-notes GIT_NOTES_REWRITE_MODE error message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 69/73] gettextize: git-revert basic messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 70/73] gettextize: git-revert "Your local changes" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 71/73] gettextize: git-revert literal "me" messages Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 72/73] gettextize: git-revert split up "could not revert/apply" message Ævar Arnfjörð Bjarmason
2011-02-22 23:42 ` [PATCH v4 73/73] gettextize: git-shortlog basic messages Ævar Arnfjörð Bjarmason
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1298418152-27789-26-git-send-email-avarab@gmail.com \
--to=avarab@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jnareb@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).