Przy okazji, czy ktoś mógłby mi pomóc ze zmianą języka w samym inkscape?
Latając po necie natknąłem się na coś takiego:
Kod: Zaznacz cały
[edit] I am working on a machine with operating system xxx which has default language yyy set, but I want to work with Inkscape menus in language zzz (most likely English), how can I set this?
Linux
Fist type locale -a in the console
to find out, which locale settings are supported on your system and how they were written.
export LANGUAGE="C" in the commandline switches to the default language (English).
export LANGUAGE="de_DE.utf-8" changes the language to german. This command works only temporary. After a system restart the original locale is active. The
used locale has to be installed with inkscape on your computer (else, Inkscape falls back to the default language).
Add a new locale (need root permissions):
Add an entry to /etc/locale.gen:
hu_HU ISO-8859-2
en_US ISO-8859-1
> locale-gen
> update-locale
Po wstukaniu {locale -a} wyświetliło mi:
Kod: Zaznacz cały
C
en_AU.utf8
en_BW.utf8
en_CA.utf8
en_DK.utf8
en_GB.utf8
en_HK.utf8
en_IE.utf8
en_IN
en_NZ.utf8
en_PH.utf8
en_SG.utf8
en_US.utf8
en_ZA.utf8
en_ZW.utf8
pl_PL.utf8
POSIX
Po wpisaniu w terminalu "export LANGUAGE="C"" nic się nie dzieje
Po wpisaniu w terminalu np "export LANGUAGE="en_US.utf8"" nic się nie dzieje
Po uprzednim uruchomieniu Inkscape (w terminalu bądź nie) i wpisaniu powyższych nic się nie dzieje
Po wpisaniu w terminlau "inkscape export LANGUAGE="C"" wypisuje
Kod: Zaznacz cały
** (inkscape:6304): CRITICAL **: Inkscape::XML::Document* sp_repr_read_file(const gchar*, const gchar*): assertion `Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS )' failed
** (inkscape:6304): CRITICAL **: Inkscape::XML::Document* sp_repr_read_file(const gchar*, const gchar*): assertion `Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS )' failed
HELP!