* [PATCH] i18n: diff/apply statistics
@ 2012-02-01 17:22 Jiang Xin
2012-02-02 14:40 ` Nguyen Thai Ngoc Duy
0 siblings, 1 reply; 5+ messages in thread
From: Jiang Xin @ 2012-02-01 17:22 UTC (permalink / raw)
To: Git List, avarab; +Cc: Jiang Xin
translate oneline statistics of diff/apply.
Signed-off-by: Jiang Xin <worldhello.net@gmail.com>
---
builtin/apply.c | 2 +-
diff.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/builtin/apply.c b/builtin/apply.c
index c24d..e289e 100644
--- a/builtin/apply.c
+++ b/builtin/apply.c
@@ -3241,7 +3241,7 @@ static void stat_patch_list(struct patch *patch)
show_stats(patch);
}
- printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
+ printf(_(" %d files changed, %d insertions(+), %d deletions(-)\n"), files, adds, dels);
}
static void numstat_patch_list(struct patch *patch)
diff --git a/diff.c b/diff.c
index 7e1542..b9115 100644
--- a/diff.c
+++ b/diff.c
@@ -1476,7 +1476,7 @@ static void show_stats(struct diffstat_t *data, struct diff_options *options)
}
fprintf(options->file, "%s", line_prefix);
fprintf(options->file,
- " %d files changed, %d insertions(+), %d deletions(-)\n",
+ _(" %d files changed, %d insertions(+), %d deletions(-)\n"),
total_files, adds, dels);
}
@@ -1507,7 +1507,7 @@ static void show_shortstats(struct diffstat_t *data, struct diff_options *option
options->output_prefix_data);
fprintf(options->file, "%s", msg->buf);
}
- fprintf(options->file, " %d files changed, %d insertions(+), %d deletions(-)\n",
+ fprintf(options->file, _(" %d files changed, %d insertions(+), %d deletions(-)\n"),
total_files, adds, dels);
}
--
1.7.9.3.g1fbd7
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i18n: diff/apply statistics
2012-02-01 17:22 [PATCH] i18n: diff/apply statistics Jiang Xin
@ 2012-02-02 14:40 ` Nguyen Thai Ngoc Duy
2012-02-03 1:15 ` Jiang Xin
[not found] ` <CANYiYbGg_ORq4HhB+LRUjhwUuZs-PZf8BzAPcS1qDUMmchdCJQ@mail.gmail.com>
0 siblings, 2 replies; 5+ messages in thread
From: Nguyen Thai Ngoc Duy @ 2012-02-02 14:40 UTC (permalink / raw)
To: Jiang Xin; +Cc: Git List, avarab
On Thu, Feb 2, 2012 at 12:22 AM, Jiang Xin <worldhello.net@gmail.com> wrote:
> translate oneline statistics of diff/apply.
There's another patch with similar goal:
http://thread.gmane.org/gmane.comp.version-control.git/189453/focus=189509
--
Duy
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i18n: diff/apply statistics
2012-02-02 14:40 ` Nguyen Thai Ngoc Duy
@ 2012-02-03 1:15 ` Jiang Xin
[not found] ` <CANYiYbGg_ORq4HhB+LRUjhwUuZs-PZf8BzAPcS1qDUMmchdCJQ@mail.gmail.com>
1 sibling, 0 replies; 5+ messages in thread
From: Jiang Xin @ 2012-02-03 1:15 UTC (permalink / raw)
To: Nguyen Thai Ngoc Duy; +Cc: Git List, avarab
2012/2/2 Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
> On Thu, Feb 2, 2012 at 12:22 AM, Jiang Xin <worldhello.net@gmail.com> wrote:
>> translate oneline statistics of diff/apply.
>
> There's another patch with similar goal:
>
> http://thread.gmane.org/gmane.comp.version-control.git/189453/focus=189509
It's cool, especially the call of interactive_use, so that
translations for the statistics line is only for human, not for scripts/pipe...
--
Jiang Xin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i18n: diff/apply statistics
[not found] ` <CACsJy8DfdTPfwZJq1_=RzO_f67FoLGJ1Q__Qfqtg+HxKZEMp4g@mail.gmail.com>
@ 2012-02-03 1:23 ` Jiang Xin
2012-02-03 1:28 ` Nguyen Thai Ngoc Duy
0 siblings, 1 reply; 5+ messages in thread
From: Jiang Xin @ 2012-02-03 1:23 UTC (permalink / raw)
To: Nguyen Thai Ngoc Duy; +Cc: Git List
2012/2/3 Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
> On Fri, Feb 3, 2012 at 8:12 AM, Jiang Xin <worldhello.net@gmail.com> wrote:
>> 2012/2/2 Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
>>>
>>> There's another patch with similar goal:
>>>
>>> http://thread.gmane.org/gmane.comp.version-control.git/189453/focus=189509
>>
>> It's cool, especially the call of interactive_use, so that
>> translations for the statistics line is only for human, not for scripts/pipe...
>
> That's the idea but they decided to allow translations unconditionally
> in the end.
Ohh, sad, not so cool. Are there any reasons?
--
Jiang Xin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i18n: diff/apply statistics
2012-02-03 1:23 ` Jiang Xin
@ 2012-02-03 1:28 ` Nguyen Thai Ngoc Duy
0 siblings, 0 replies; 5+ messages in thread
From: Nguyen Thai Ngoc Duy @ 2012-02-03 1:28 UTC (permalink / raw)
To: Jiang Xin; +Cc: Git List
On Fri, Feb 3, 2012 at 8:23 AM, Jiang Xin <worldhello.net@gmail.com> wrote:
> 2012/2/3 Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
>> On Fri, Feb 3, 2012 at 8:12 AM, Jiang Xin <worldhello.net@gmail.com> wrote:
>>> 2012/2/2 Nguyen Thai Ngoc Duy <pclouds@gmail.com>:
>>>>
>>>> There's another patch with similar goal:
>>>>
>>>> http://thread.gmane.org/gmane.comp.version-control.git/189453/focus=189509
>>>
>>> It's cool, especially the call of interactive_use, so that
>>> translations for the statistics line is only for human, not for scripts/pipe...
>>
>> That's the idea but they decided to allow translations unconditionally
>> in the end.
>
> Ohh, sad, not so cool. Are there any reasons?
>
Inconsistency mainly. I don't see anything sad about that though. You
should read that thread.
--
Duy
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-02-03 1:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-01 17:22 [PATCH] i18n: diff/apply statistics Jiang Xin
2012-02-02 14:40 ` Nguyen Thai Ngoc Duy
2012-02-03 1:15 ` Jiang Xin
[not found] ` <CANYiYbGg_ORq4HhB+LRUjhwUuZs-PZf8BzAPcS1qDUMmchdCJQ@mail.gmail.com>
[not found] ` <CACsJy8DfdTPfwZJq1_=RzO_f67FoLGJ1Q__Qfqtg+HxKZEMp4g@mail.gmail.com>
2012-02-03 1:23 ` Jiang Xin
2012-02-03 1:28 ` Nguyen Thai Ngoc Duy
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).