git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
To: git@vger.kernel.org
Cc: "Junio C Hamano" <gitster@pobox.com>,
	"Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
Subject: [PATCH 19/72] gettextize: git-checkout basic messages
Date: Sat, 19 Feb 2011 19:24:02 +0000	[thread overview]
Message-ID: <1298143495-3681-20-git-send-email-avarab@gmail.com> (raw)
In-Reply-To: <1298143495-3681-1-git-send-email-avarab@gmail.com>

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
---
 builtin/checkout.c |   68 ++++++++++++++++++++++++++--------------------------
 1 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/builtin/checkout.c b/builtin/checkout.c
index cd7f56e..b5060ab 100644
--- a/builtin/checkout.c
+++ b/builtin/checkout.c
@@ -116,7 +116,7 @@ static int check_all_stages(struct cache_entry *ce, int pos)
 	    ce_stage(active_cache[pos+1]) != 2 ||
 	    strcmp(active_cache[pos+2]->name, ce->name) ||
 	    ce_stage(active_cache[pos+2]) != 3)
-		return error("path '%s' does not have all three versions",
+		return error(_("path '%s' does not have all three versions"),
 			     ce->name);
 	return 0;
 }
@@ -150,7 +150,7 @@ static int checkout_merged(int pos, struct checkout *state)
 	    ce_stage(active_cache[pos+1]) != 2 ||
 	    strcmp(active_cache[pos+2]->name, path) ||
 	    ce_stage(active_cache[pos+2]) != 3)
-		return error("path '%s' does not have all 3 versions", path);
+		return error(_("path '%s' does not have all 3 versions"), path);
 
 	read_mmblob(&ancestor, active_cache[pos]->sha1);
 	read_mmblob(&ours, active_cache[pos+1]->sha1);
@@ -167,7 +167,7 @@ static int checkout_merged(int pos, struct checkout *state)
 	free(theirs.ptr);
 	if (status < 0 || !result_buf.ptr) {
 		free(result_buf.ptr);
-		return error("path '%s': cannot merge", path);
+		return error(_("path '%s': cannot merge"), path);
 	}
 
 	/*
@@ -184,12 +184,12 @@ static int checkout_merged(int pos, struct checkout *state)
 	 */
 	if (write_sha1_file(result_buf.ptr, result_buf.size,
 			    blob_type, sha1))
-		die("Unable to add merge result for '%s'", path);
+		die(_("Unable to add merge result for '%s'"), path);
 	ce = make_cache_entry(create_ce_mode(active_cache[pos+1]->ce_mode),
 			      sha1,
 			      path, 2, 0);
 	if (!ce)
-		die("make_cache_entry failed for path '%s'", path);
+		die(_("make_cache_entry failed for path '%s'"), path);
 	status = checkout_entry(ce, state, NULL);
 	return status;
 }
@@ -211,7 +211,7 @@ static int checkout_paths(struct tree *source_tree, const char **pathspec,
 
 	newfd = hold_locked_index(lock_file, 1);
 	if (read_cache_preload(pathspec) < 0)
-		return error("corrupt index file");
+		return error(_("corrupt index file"));
 
 	if (source_tree)
 		read_tree_some(source_tree, pathspec);
@@ -239,14 +239,14 @@ static int checkout_paths(struct tree *source_tree, const char **pathspec,
 			if (!ce_stage(ce))
 				continue;
 			if (opts->force) {
-				warning("path '%s' is unmerged", ce->name);
+				warning(_("path '%s' is unmerged"), ce->name);
 			} else if (stage) {
 				errs |= check_stage(stage, ce, pos);
 			} else if (opts->merge) {
 				errs |= check_all_stages(ce, pos);
 			} else {
 				errs = 1;
-				error("path '%s' is unmerged", ce->name);
+				error(_("path '%s' is unmerged"), ce->name);
 			}
 			pos = skip_same_name(ce, pos) - 1;
 		}
@@ -275,7 +275,7 @@ static int checkout_paths(struct tree *source_tree, const char **pathspec,
 
 	if (write_cache(newfd, active_cache, active_nr) ||
 	    commit_locked_index(lock_file))
-		die("unable to write new index file");
+		die(_("unable to write new index file"));
 
 	resolve_ref("HEAD", rev, 0, &flag);
 	head = lookup_commit_reference_gently(rev, 1);
@@ -292,7 +292,7 @@ static void show_local_changes(struct object *head, struct diff_options *opts)
 	rev.diffopt.flags = opts->flags;
 	rev.diffopt.output_format |= DIFF_FORMAT_NAME_STATUS;
 	if (diff_setup_done(&rev.diffopt) < 0)
-		die("diff_setup_done failed");
+		die(_("diff_setup_done failed"));
 	add_pending_object(&rev, head, NULL);
 	run_diff_index(&rev, 0);
 }
@@ -366,7 +366,7 @@ static int merge_working_tree(struct checkout_opts *opts,
 	int newfd = hold_locked_index(lock_file, 1);
 
 	if (read_cache_preload(NULL) < 0)
-		return error("corrupt index file");
+		return error(_("corrupt index file"));
 
 	resolve_undo_clear();
 	if (opts->force) {
@@ -388,7 +388,7 @@ static int merge_working_tree(struct checkout_opts *opts,
 		refresh_cache(REFRESH_QUIET);
 
 		if (unmerged_cache()) {
-			error("you need to resolve your current index first");
+			error(_("you need to resolve your current index first"));
 			return 1;
 		}
 
@@ -470,7 +470,7 @@ static int merge_working_tree(struct checkout_opts *opts,
 
 	if (write_cache(newfd, active_cache, active_nr) ||
 	    commit_locked_index(lock_file))
-		die("unable to write new index file");
+		die(_("unable to write new index file"));
 
 	if (!opts->force && !opts->quiet)
 		show_local_changes(&new->commit->object, &opts->diff_options);
@@ -519,7 +519,7 @@ static void update_refs_for_switch(struct checkout_opts *opts,
 				temp = log_all_ref_updates;
 				log_all_ref_updates = 1;
 				if (log_ref_setup(ref_name, log_file, sizeof(log_file))) {
-					fprintf(stderr, "Can not do reflog for '%s'\n",
+					fprintf(stderr, _("Can not do reflog for '%s'\n"),
 					    opts->new_orphan_branch);
 					log_all_ref_updates = temp;
 					return;
@@ -545,14 +545,14 @@ static void update_refs_for_switch(struct checkout_opts *opts,
 		create_symref("HEAD", new->path, msg.buf);
 		if (!opts->quiet) {
 			if (old->path && !strcmp(new->path, old->path))
-				fprintf(stderr, "Already on '%s'\n",
+				fprintf(stderr, _("Already on '%s'\n"),
 					new->name);
 			else if (opts->new_branch)
 				fprintf(stderr, "Switched to%s branch '%s'\n",
 					opts->branch_exists ? " and reset" : " a new",
 					new->name);
 			else
-				fprintf(stderr, "Switched to branch '%s'\n",
+				fprintf(stderr, _("Switched to branch '%s'\n"),
 					new->name);
 		}
 		if (old->path && old->name) {
@@ -597,7 +597,7 @@ static int switch_branches(struct checkout_opts *opts, struct branch_info *new)
 		new->name = "HEAD";
 		new->commit = old.commit;
 		if (!new->commit)
-			die("You are on a branch yet to be born");
+			die(_("You are on a branch yet to be born"));
 		parse_commit(new->commit);
 	}
 
@@ -724,7 +724,7 @@ int cmd_checkout(int argc, const char **argv, const char *prefix)
 
 	/* we can assume from now on new_branch = !new_branch_force */
 	if (opts.new_branch && opts.new_branch_force)
-		die("-B cannot be used with -b");
+		die(_("-B cannot be used with -b"));
 
 	/* copy -B over to -b, so that we can just check the latter */
 	if (opts.new_branch_force)
@@ -732,28 +732,28 @@ int cmd_checkout(int argc, const char **argv, const char *prefix)
 
 	if (patch_mode && (opts.track > 0 || opts.new_branch
 			   || opts.new_branch_log || opts.merge || opts.force))
-		die ("--patch is incompatible with all other options");
+		die (_("--patch is incompatible with all other options"));
 
 	/* --track without -b should DWIM */
 	if (0 < opts.track && !opts.new_branch) {
 		const char *argv0 = argv[0];
 		if (!argc || !strcmp(argv0, "--"))
-			die ("--track needs a branch name");
+			die (_("--track needs a branch name"));
 		if (!prefixcmp(argv0, "refs/"))
 			argv0 += 5;
 		if (!prefixcmp(argv0, "remotes/"))
 			argv0 += 8;
 		argv0 = strchr(argv0, '/');
 		if (!argv0 || !argv0[1])
-			die ("Missing branch name; try -b");
+			die (_("Missing branch name; try -b"));
 		opts.new_branch = argv0 + 1;
 	}
 
 	if (opts.new_orphan_branch) {
 		if (opts.new_branch)
-			die("--orphan and -b|-B are mutually exclusive");
+			die(_("--orphan and -b|-B are mutually exclusive"));
 		if (opts.track > 0)
-			die("--orphan cannot be used with -t");
+			die(_("--orphan cannot be used with -t"));
 		opts.new_branch = opts.new_orphan_branch;
 	}
 
@@ -763,7 +763,7 @@ int cmd_checkout(int argc, const char **argv, const char *prefix)
 	}
 
 	if (opts.force && opts.merge)
-		die("git checkout: -f and -m are incompatible");
+		die(_("git checkout: -f and -m are incompatible"));
 
 	/*
 	 * case 1: git checkout <ref> -- [<paths>]
@@ -809,7 +809,7 @@ int cmd_checkout(int argc, const char **argv, const char *prefix)
 
 		if (get_sha1_mb(arg, rev)) {
 			if (has_dash_dash)          /* case (1) */
-				die("invalid reference: %s", arg);
+				die(_("invalid reference: %s"), arg);
 			if (!patch_mode &&
 			    dwim_new_local_branch &&
 			    opts.track == BRANCH_TRACK_UNSPECIFIED &&
@@ -846,7 +846,7 @@ int cmd_checkout(int argc, const char **argv, const char *prefix)
 			source_tree = parse_tree_indirect(rev);
 
 		if (!source_tree)                   /* case (1): want a tree */
-			die("reference is not a tree: %s", arg);
+			die(_("reference is not a tree: %s"), arg);
 		if (!has_dash_dash) {/* case (3 -> 1) */
 			/*
 			 * Do not complain the most common case
@@ -872,7 +872,7 @@ no_reference:
 		const char **pathspec = get_pathspec(prefix, argv);
 
 		if (!pathspec)
-			die("invalid path specification");
+			die(_("invalid path specification"));
 
 		if (patch_mode)
 			return interactive_checkout(new.name, pathspec, &opts);
@@ -880,14 +880,14 @@ no_reference:
 		/* Checkout paths */
 		if (opts.new_branch) {
 			if (argc == 1) {
-				die("git checkout: updating paths is incompatible with switching branches.\nDid you intend to checkout '%s' which can not be resolved as commit?", argv[0]);
+				die(_("git checkout: updating paths is incompatible with switching branches.\nDid you intend to checkout '%s' which can not be resolved as commit?"), argv[0]);
 			} else {
-				die("git checkout: updating paths is incompatible with switching branches.");
+				die(_("git checkout: updating paths is incompatible with switching branches."));
 			}
 		}
 
 		if (1 < !!opts.writeout_stage + !!opts.force + !!opts.merge)
-			die("git checkout: --ours/--theirs, --force and --merge are incompatible when\nchecking out of the index.");
+			die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\nchecking out of the index."));
 
 		return checkout_paths(source_tree, pathspec, &opts);
 	}
@@ -898,22 +898,22 @@ no_reference:
 	if (opts.new_branch) {
 		struct strbuf buf = STRBUF_INIT;
 		if (strbuf_check_branch_ref(&buf, opts.new_branch))
-			die("git checkout: we do not like '%s' as a branch name.",
+			die(_("git checkout: we do not like '%s' as a branch name."),
 			    opts.new_branch);
 		if (!get_sha1(buf.buf, rev)) {
 			opts.branch_exists = 1;
 			if (!opts.new_branch_force)
-				die("git checkout: branch %s already exists",
+				die(_("git checkout: branch %s already exists"),
 				    opts.new_branch);
 		}
 		strbuf_release(&buf);
 	}
 
 	if (new.name && !new.commit) {
-		die("Cannot switch branch to a non-commit.");
+		die(_("Cannot switch branch to a non-commit."));
 	}
 	if (opts.writeout_stage)
-		die("--ours/--theirs is incompatible with switching branches.");
+		die(_("--ours/--theirs is incompatible with switching branches."));
 
 	return switch_branches(&opts, &new);
 }
-- 
1.7.2.3

  parent reply	other threads:[~2011-02-19 19:30 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 ` Ævar Arnfjörð Bjarmason [this message]
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       ` [PATCH v4 25/73] gettextize: git-commit basic messages Ævar Arnfjörð Bjarmason
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=1298143495-3681-20-git-send-email-avarab@gmail.com \
    --to=avarab@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.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).