git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Josh Steadmon <steadmon@google.com>
To: Ralf Thielow <ralf.thielow@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] submodule.c: mark more strings for translation
Date: Tue, 21 Jan 2020 13:58:26 -0800	[thread overview]
Message-ID: <20200121215826.GC63040@google.com> (raw)
In-Reply-To: <20200115180701.14657-1-ralf.thielow@gmail.com>

On 2020.01.15 19:07, Ralf Thielow wrote:
> Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
> ---
>  submodule.c | 28 ++++++++++++++--------------
>  1 file changed, 14 insertions(+), 14 deletions(-)
> 
> diff --git a/submodule.c b/submodule.c
> index 9da7181321..9430db8ffc 100644
> --- a/submodule.c
> +++ b/submodule.c
> @@ -431,7 +431,7 @@ void handle_ignore_submodules_arg(struct diff_options *diffopt,
>  	else if (!strcmp(arg, "dirty"))
>  		diffopt->flags.ignore_dirty_submodules = 1;
>  	else if (strcmp(arg, "none"))
> -		die("bad --ignore-submodules argument: %s", arg);
> +		die(_("bad --ignore-submodules argument: %s"), arg);
>  	/*
>  	 * Please update _git_status() in git-completion.bash when you
>  	 * add new options
> @@ -812,9 +812,9 @@ static void collect_changed_submodules_cb(struct diff_queue_struct *q,
>  				submodule = submodule_from_name(me->repo,
>  								commit_oid, name);
>  			if (submodule) {
> -				warning("Submodule in commit %s at path: "
> +				warning(_("Submodule in commit %s at path: "
>  					"'%s' collides with a submodule named "
> -					"the same. Skipping it.",
> +					"the same. Skipping it."),
>  					oid_to_hex(commit_oid), p->two->path);
>  				name = NULL;
>  			}
> @@ -844,7 +844,7 @@ static void collect_changed_submodules(struct repository *r,
>  	repo_init_revisions(r, &rev, NULL);
>  	setup_revisions(argv->argc, argv->argv, &rev, NULL);
>  	if (prepare_revision_walk(&rev))
> -		die("revision walk setup failed");
> +		die(_("revision walk setup failed"));
>  
>  	while ((commit = get_revision(&rev))) {
>  		struct rev_info diff_rev;
> @@ -992,7 +992,7 @@ static int submodule_needs_pushing(struct repository *r,
>  		cp.out = -1;
>  		cp.dir = path;
>  		if (start_command(&cp))
> -			die("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s",
> +			die(_("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s"),
>  					path);
>  		if (strbuf_read(&buf, cp.out, the_hash_algo->hexsz + 1))
>  			needs_pushing = 1;
> @@ -1115,7 +1115,7 @@ static void submodule_push_check(const char *path, const char *head,
>  	 * child process.
>  	 */
>  	if (run_command(&cp))
> -		die("process for submodule '%s' failed", path);
> +		die(_("process for submodule '%s' failed"), path);
>  }
>  
>  int push_unpushed_submodules(struct repository *r,
> @@ -1155,10 +1155,10 @@ int push_unpushed_submodules(struct repository *r,
>  	/* Actually push the submodules */
>  	for (i = 0; i < needs_pushing.nr; i++) {
>  		const char *path = needs_pushing.items[i].string;
> -		fprintf(stderr, "Pushing submodule '%s'\n", path);
> +		fprintf(stderr, _("Pushing submodule '%s'\n"), path);
>  		if (!push_submodule(path, remote, rs,
>  				    push_options, dry_run)) {
> -			fprintf(stderr, "Unable to push submodule '%s'\n", path);
> +			fprintf(stderr, _("Unable to push submodule '%s'\n"), path);
>  			ret = 0;
>  		}
>  	}
> @@ -1448,7 +1448,7 @@ static int get_next_submodule(struct child_process *cp,
>  			prepare_submodule_repo_env_in_gitdir(&cp->env_array);
>  			cp->git_cmd = 1;
>  			if (!spf->quiet)
> -				strbuf_addf(err, "Fetching submodule %s%s\n",
> +				strbuf_addf(err, _("Fetching submodule %s%s\n"),
>  					    spf->prefix, ce->name);
>  			argv_array_init(&cp->args);
>  			argv_array_pushv(&cp->args, spf->args.argv);
> @@ -1610,7 +1610,7 @@ int fetch_populated_submodules(struct repository *r,
>  		goto out;
>  
>  	if (repo_read_index(r) < 0)
> -		die("index file corrupt");
> +		die(_("index file corrupt"));
>  
>  	argv_array_push(&spf.args, "fetch");
>  	for (i = 0; i < options->argc; i++)
> @@ -1665,7 +1665,7 @@ unsigned is_submodule_modified(const char *path, int ignore_untracked)
>  	cp.out = -1;
>  	cp.dir = path;
>  	if (start_command(&cp))
> -		die("Could not run 'git status --porcelain=2' in submodule %s", path);
> +		die(_("Could not run 'git status --porcelain=2' in submodule %s"), path);
>  
>  	fp = xfdopen(cp.out, "r");
>  	while (strbuf_getwholeline(&buf, fp, '\n') != EOF) {
> @@ -1706,7 +1706,7 @@ unsigned is_submodule_modified(const char *path, int ignore_untracked)
>  	fclose(fp);
>  
>  	if (finish_command(&cp) && !ignore_cp_exit_code)
> -		die("'git status --porcelain=2' failed in submodule %s", path);
> +		die(_("'git status --porcelain=2' failed in submodule %s"), path);
>  
>  	strbuf_release(&buf);
>  	return dirty_submodule;
> @@ -1841,7 +1841,7 @@ static int submodule_has_dirty_index(const struct submodule *sub)
>  	cp.no_stdout = 1;
>  	cp.dir = sub->path;
>  	if (start_command(&cp))
> -		die("could not recurse into submodule '%s'", sub->path);
> +		die(_("could not recurse into submodule '%s'"), sub->path);
>  
>  	return finish_command(&cp);
>  }
> @@ -1862,7 +1862,7 @@ static void submodule_reset_index(const char *path)
>  	argv_array_push(&cp.args, empty_tree_oid_hex());
>  
>  	if (run_command(&cp))
> -		die("could not reset submodule index");
> +		die(_("could not reset submodule index"));
>  }
>  
>  /**
> -- 
> 2.25.0.341.g760bfbb309

This all looks good to me. Thanks for the patch!

      reply	other threads:[~2020-01-21 21:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-15 18:07 [PATCH] submodule.c: mark more strings for translation Ralf Thielow
2020-01-21 21:58 ` Josh Steadmon [this message]

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

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200121215826.GC63040@google.com \
    --to=steadmon@google.com \
    --cc=git@vger.kernel.org \
    --cc=ralf.thielow@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.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).