git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] i18n: fix typos found during l10n for git 2.22.0
@ 2019-06-02 15:11 Jiang Xin
  2019-06-03 13:43 ` Johannes Schindelin
       [not found] ` <2609655.nBnP9L6vNR@cayenne>
  0 siblings, 2 replies; 4+ messages in thread
From: Jiang Xin @ 2019-06-02 15:11 UTC (permalink / raw)
  To: Junio C Hamano, Git List, Nguyễn Thái Ngọc Duy,
	Johannes Schindelin
  Cc: Jiang Xin

Find two typos introduced by the following commits:

+ 31fba9d3b4 (diff-parseopt: convert --[src|dst]-prefix, 2019-03-24)
+ ed8b4132c8 (remote-curl: mark all error messages for translation,
  2019-03-05)

Signed-off-by: Jiang Xin <worldhello.net@gmail.com>
---
 diff.c        | 2 +-
 remote-curl.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/diff.c b/diff.c
index 2068b1c06e..a654d46f6a 100644
--- a/diff.c
+++ b/diff.c
@@ -5354,7 +5354,7 @@ static void prep_parse_options(struct diff_options *options)
 			     N_("show the given source prefix instead of \"a/\""),
 			     PARSE_OPT_NONEG),
 		OPT_STRING_F(0, "dst-prefix", &options->b_prefix, N_("<prefix>"),
-			     N_("show the given source prefix instead of \"b/\""),
+			     N_("show the given destination prefix instead of \"b/\""),
 			     PARSE_OPT_NONEG),
 		OPT_CALLBACK_F(0, "line-prefix", options, N_("<prefix>"),
 			       N_("prepend an additional prefix to every line of output"),
diff --git a/remote-curl.c b/remote-curl.c
index a1bf4f68c7..051f26629d 100644
--- a/remote-curl.c
+++ b/remote-curl.c
@@ -1117,13 +1117,13 @@ static void parse_fetch(struct strbuf *buf)
 			const char *q;
 
 			if (parse_oid_hex(p, &old_oid, &q))
-				die(_("protocol error: expected sha/ref, got %s'"), p);
+				die(_("protocol error: expected sha/ref, got '%s'"), p);
 			if (*q == ' ')
 				name = q + 1;
 			else if (!*q)
 				name = "";
 			else
-				die(_("protocol error: expected sha/ref, got %s'"), p);
+				die(_("protocol error: expected sha/ref, got '%s'"), p);
 
 			ref = alloc_ref(name);
 			oidcpy(&ref->old_oid, &old_oid);
-- 
2.22.0.rc2.14.g03eb6640cb.dirty


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] i18n: fix typos found during l10n for git 2.22.0
  2019-06-02 15:11 [PATCH] i18n: fix typos found during l10n for git 2.22.0 Jiang Xin
@ 2019-06-03 13:43 ` Johannes Schindelin
  2019-06-03 18:10   ` Junio C Hamano
       [not found] ` <2609655.nBnP9L6vNR@cayenne>
  1 sibling, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2019-06-03 13:43 UTC (permalink / raw)
  To: Jiang Xin; +Cc: Junio C Hamano, Git List, Nguyễn Thái Ngọc Duy

Hi Jian Xin,

On Sun, 2 Jun 2019, Jiang Xin wrote:

> + ed8b4132c8 (remote-curl: mark all error messages for translation,
>   2019-03-05)

Urgh. Sorry for that, and thank you for cleaning up my mess...

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] i18n: fix typos found during l10n for git 2.22.0
  2019-06-03 13:43 ` Johannes Schindelin
@ 2019-06-03 18:10   ` Junio C Hamano
  0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2019-06-03 18:10 UTC (permalink / raw)
  To: Johannes Schindelin
  Cc: Jiang Xin, Git List, Nguyễn Thái Ngọc Duy

Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:

> Hi Jian Xin,
>
> On Sun, 2 Jun 2019, Jiang Xin wrote:
>
>> + ed8b4132c8 (remote-curl: mark all error messages for translation,
>>   2019-03-05)
>
> Urgh. Sorry for that, and thank you for cleaning up my mess...
>
> Ciao,
> Dscho

Thanks for a fix and a quick ack.  Very much appreciated during the
rc freeze period.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [L10N] Kickoff for Git 2.22.0 round #3
       [not found] ` <2609655.nBnP9L6vNR@cayenne>
@ 2019-06-04  0:46   ` Jiang Xin
  0 siblings, 0 replies; 4+ messages in thread
From: Jiang Xin @ 2019-06-04  0:46 UTC (permalink / raw)
  To: Git List, Alexander Shopov, Jordi Mas, Ralf Thielow,
	Jimmy Angelakos, Christopher Díaz, Jean-Noël Avila,
	Alessandro Menti, Gwan-gyeong Mun, Vasco Almeida,
	Dimitriy Ryazantcev, Peter Krefting,
	Trần Ngọc Quân, Jiang Xin

Hi,

Git v2.22.0-rc3 has been released, and there are 3 new localizable strings.
Let's start new round of git l10n based on the following commit:

    l10n: git.pot: v2.22.0 round 3 (3 new, 2 removed)
    
    Generate po/git.pot from v2.22.0-rc3 for git v2.22.0 l10n round 3.
    
    Signed-off-by: Jiang Xin <worldhello.net@gmail.com>

You can get it from the usual place:

    https://github.com/git-l10n/git-po/

As how to update your XX.po and help to translate Git, please see
"Updating a XX.po file" and other sections in "po/README" file.

--
Jiang Xin

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-06-04  0:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-02 15:11 [PATCH] i18n: fix typos found during l10n for git 2.22.0 Jiang Xin
2019-06-03 13:43 ` Johannes Schindelin
2019-06-03 18:10   ` Junio C Hamano
     [not found] ` <2609655.nBnP9L6vNR@cayenne>
2019-06-04  0:46   ` [L10N] Kickoff for Git 2.22.0 round #3 Jiang Xin

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).