that does not work!!!
Any one with ideas how to hack chromium browser ?
I just want it`s interface to be in English
Umm how can i do that ?sera wrote:Passing an English locale when invoking?
Code: Select all
k
ollin@felis ~ $ locale -a
bg_BG.cp1251
bg_BG.utf8
C
en_GB
en_GB.iso88591
en_GB.utf8
POSIX
Code: Select all
LC_ALL=EN chromium
or
LANG=EN chromiumThe first suggestion gave me:Spidey wrote:I have the same problem, using LC_ALL/LANG=EN (can't remind exactly which one) chromium did the trick.
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?Code: Select all
LC_ALL=EN chromium or LANG=EN chromium
Code: Select all
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.
Code: Select all
LC_ALL=en_GB.UTF-8 chromiumCode: Select all
LANG=EN chromiumCode: Select all
LC_ALL=en_GB.UTF-8 chromium %UThank yousera wrote:Nice, finally a browser with working nls support.
You could also use a shell alias to pass the locale.