git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Gitk local language issue
@ 2012-02-17  8:30 shyamal
  2012-02-18 13:09 ` Pat Thoyts
  0 siblings, 1 reply; 2+ messages in thread
From: shyamal @ 2012-02-17  8:30 UTC (permalink / raw)
  To: git

Hi,

I am working in Japan now on a windows environment.
I installed GIT on my machine.When I run the application,The menus are in
Japanese.To get the English menu I added 
@set LANG=en 
at the beginning of git.cmd file.This worked like a magic :-)
But when I click the Visualize master' history from the repository menu of
Git Gui, a new interface (Gitk:Websites) opens where all the menus are still
in Japanese.Any idea how to change the menu to  English in Gitk too?

Thanks in advance

Regards,
Shyamal.

--
View this message in context: http://git.661346.n2.nabble.com/Gitk-local-language-issue-tp7293532p7293532.html
Sent from the git mailing list archive at Nabble.com.

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

* Re: Gitk local language issue
  2012-02-17  8:30 Gitk local language issue shyamal
@ 2012-02-18 13:09 ` Pat Thoyts
  0 siblings, 0 replies; 2+ messages in thread
From: Pat Thoyts @ 2012-02-18 13:09 UTC (permalink / raw)
  To: shyamal; +Cc: git

shyamal <shyamal2005@gmail.com> writes:

>Hi,
>
>I am working in Japan now on a windows environment.
>I installed GIT on my machine.When I run the application,The menus are in
>Japanese.To get the English menu I added 
>@set LANG=en 
>at the beginning of git.cmd file.This worked like a magic :-)
>But when I click the Visualize master' history from the repository menu of
>Git Gui, a new interface (Gitk:Websites) opens where all the menus are still
>in Japanese.Any idea how to change the menu to  English in Gitk too?
>
>Thanks in advance
>
>Regards,
>Shyamal.

If I modify the git.cmd file here on my English system to include
@set LANG=fr just after the @set PLINK_PROTOCOL=ssh command, then git
gui runs with French menus and selecting the view history menu item
launches gitk with French menus.

This is because git-gui executes a new tcl interpreter subprocess passing
in the known gitk script location. So the gitk process inherits the
git-gui environment (including this LANG setting). It doesn't call the
gitk.cmd script on Windows.

Possibly your interpreter is picking up some other locale setting. The
msgcat script will use LC_ALL, LC_MESSAGES or LANG (in that order) and
only makes use of the first one it sees. So perhaps you have an LC_ALL
set someplace - however, I would assume that would force the git-gui
script to use that locale too.

One quick hack would be to modify bin/gitk and after the msgcat
initialization force the locale using:
   msgcat::mclocale en


-- 
Pat Thoyts                            http://www.patthoyts.tk/
PGP fingerprint 2C 6E 98 07 2C 59 C8 97  10 CE 11 E6 04 E0 B9 DD

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

end of thread, other threads:[~2012-02-18 13:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-17  8:30 Gitk local language issue shyamal
2012-02-18 13:09 ` Pat Thoyts

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