* protocol for updating .po gettext files?
@ 2018-05-28 11:56 Robert P. J. Day
2018-05-28 13:47 ` Junio C Hamano
0 siblings, 1 reply; 2+ messages in thread
From: Robert P. J. Day @ 2018-05-28 11:56 UTC (permalink / raw)
To: Git Mailing list
i was going to submit a minor patch to fix grammar here:
builtin/init-db.c: warning(_("templates not found %s"), template_dir);
as it should display "templates not found in %s" to be consistent with
other messages, but i know from nothing about .po files, so does one
also have to update those, or how does that work?
rday
--
========================================================================
Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca/dokuwiki
Twitter: http://twitter.com/rpjday
LinkedIn: http://ca.linkedin.com/in/rpjday
========================================================================
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: protocol for updating .po gettext files?
2018-05-28 11:56 protocol for updating .po gettext files? Robert P. J. Day
@ 2018-05-28 13:47 ` Junio C Hamano
0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2018-05-28 13:47 UTC (permalink / raw)
To: Robert P. J. Day; +Cc: Git Mailing list
"Robert P. J. Day" <rpjday@crashcourse.ca> writes:
> i was going to submit a minor patch to fix grammar here:
>
> builtin/init-db.c: warning(_("templates not found %s"), template_dir);
>
> as it should display "templates not found in %s" to be consistent with
> other messages, but i know from nothing about .po files, so does one
> also have to update those, or how does that work?
You as a developer generally don't. Instead, you just update the
code i.e.
- warning(_("t not found %s"), t);
+ warning(_("t not found in %s"), t);
and leave it up to the i18n coordinator to update *.pot and *.po so
that localization teams can work on it, which all happens closer to
the next release.
I think po/README has a bit more details describing which part is
handled by whom.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-05-28 13:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-28 11:56 protocol for updating .po gettext files? Robert P. J. Day
2018-05-28 13:47 ` Junio C Hamano
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).