| View previous topic :: View next topic |
| Author |
Message |
Kollin l33t


Joined: 25 Feb 2006 Posts: 883 Location: Sofia/Bulgaria
|
Posted: Fri Feb 12, 2010 6:34 pm Post subject: I want chromium browser interface to be in english![SOLVED] |
|
|
http://www.google.com/support/chrome/bin/answer.py?hl=en&answer=95415
that does not work!!!
Any one with ideas how to hack chromium browser ?
I just want it`s interface to be in English  _________________ "Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..."
Last edited by Kollin on Sat Feb 13, 2010 12:37 am; edited 1 time in total |
|
| Back to top |
|
 |
sera Developer

Joined: 29 Feb 2008 Posts: 936 Location: CEST
|
Posted: Fri Feb 12, 2010 7:39 pm Post subject: |
|
|
| Passing an English locale when invoking? |
|
| Back to top |
|
 |
Kollin l33t


Joined: 25 Feb 2006 Posts: 883 Location: Sofia/Bulgaria
|
Posted: Fri Feb 12, 2010 8:36 pm Post subject: |
|
|
| sera wrote: | | Passing an English locale when invoking? |
Umm how can i do that ?
I have these locales installed:
| Code: | k
ollin@felis ~ $ locale -a
bg_BG.cp1251
bg_BG.utf8
C
en_GB
en_GB.iso88591
en_GB.utf8
POSIX
|
_________________ "Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..." |
|
| Back to top |
|
 |
Spidey Apprentice


Joined: 07 Sep 2006 Posts: 208
|
Posted: Fri Feb 12, 2010 10:15 pm Post subject: |
|
|
I have the same problem, using LC_ALL/LANG=EN (can't remind exactly which one) chromium did the trick.
| Code: | LC_ALL=EN chromium
or
LANG=EN chromium |
Is it wise to rename chromium probably in /usr/bin to /usr/bin/chromium_bin and make a bash script in /usr/bin/chromium that passes the correct environment variable? |
|
| Back to top |
|
 |
Kollin l33t


Joined: 25 Feb 2006 Posts: 883 Location: Sofia/Bulgaria
|
Posted: Sat Feb 13, 2010 12:35 am Post subject: |
|
|
| Spidey wrote: | I have the same problem, using LC_ALL/LANG=EN (can't remind exactly which one) chromium did the trick.
| Code: | LC_ALL=EN chromium
or
LANG=EN chromium |
Is it wise to rename chromium probably in /usr/bin to /usr/bin/chromium_bin and make a bash script in /usr/bin/chromium that passes the correct environment variable? |
The first suggestion gave me:
| Code: | LC_ALL=EN chromium
/bin/sh: warning: setlocale: LC_ALL: cannot change locale (EN)
(process:23318): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
|
so i changed it a bit :
| Code: | | LC_ALL=en_GB.UTF-8 chromium |
and that is working flawlessly
the second suggestion had absolutely no effect on chromium interface language
For starting chromium i just have changed icon settings to use the following command:
| Code: | | LC_ALL=en_GB.UTF-8 chromium %U |
Thank you all for the help, very appreciated !!!  _________________ "Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..." |
|
| Back to top |
|
 |
sera Developer

Joined: 29 Feb 2008 Posts: 936 Location: CEST
|
Posted: Sat Feb 13, 2010 7:42 am Post subject: |
|
|
Nice, finally a browser with working nls support.
You could also use a shell alias to pass the locale. |
|
| Back to top |
|
 |
Kollin l33t


Joined: 25 Feb 2006 Posts: 883 Location: Sofia/Bulgaria
|
Posted: Sat Feb 13, 2010 8:28 am Post subject: |
|
|
| sera wrote: | Nice, finally a browser with working nls support.
You could also use a shell alias to pass the locale. |
Thank you  _________________ "Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..." |
|
| Back to top |
|
 |
|