Questions tagged [i18n]

i18n, short for “internationalization”, means adapting software to handle multiple languages and other regional differences.

Internationalization, often abbreviated i18n (a numeronym), means adapting software to cope with multiple regions, letting the user select a preferred language and other options such as date and number formats. It is closely related to internationalization (l10n); see .

41 questions
132
votes
7 answers

Why is there no "Euro English" locale?

I used to use the somewhat whimsical en_DK.UTF-8 locale when installing a new system because that would produce (roughly) the locale results I wanted, even though I am not in Denmark. Measurements metric Sensible date and time formats, but day and…
tripleee
  • 7,506
  • 2
  • 32
  • 42
14
votes
3 answers

How can I change the language in chromium?

I've installed chromium, but it deeply sucks that it uses my mother tongue (german) in its UI and for websites by default. I want the english back, like firefox did. I'm using archlinux's default packages. I looked into the settings dialogs, but I…
13
votes
2 answers

Why can't I type a g̃ the same way I type ñ?

My language, Guarani, uses G̃/g̃ to denote the nasalized velar approximant. I thought I'd be able to type it by combining a dead tilde with g, but this does not work. Why doesn't it, and how can I fix it? My main suspicion is that this has to do…
mmaluff
  • 181
  • 13
11
votes
2 answers

Setting locale for user

I'd like to set a locale for my user different than system locale. By putting export LANG=en_US.utf8 in .bashrc I could do that for the shells, but still it's not working for applications not started via a shell (i.e. the desktop environment, LXDE,…
peoro
  • 3,658
  • 3
  • 32
  • 32
9
votes
1 answer

Is there a utility like dspcat on Linux?

I use the following dspcat command on AIX and can dump message catalogs created with the gencat command: dspcat –g /u/is/bin/I18N/l/lib/libca/libcalifornia.117.cat >> /tmp/message.smc I have spent a good solid hour looking for hints on how to dump…
ojblass
  • 343
  • 2
  • 10
8
votes
2 answers

Are the outputs of /proc/meminfo, /proc/cpuinfo etc always in English?

I am writing code that relies on the output of /proc/meminfo, /proc/cpuinfo etc. Are the file contents always in English? For example, will MemTotal in /proc/meminfo always be MemTotal in all locales?
fxam
  • 183
  • 5
8
votes
6 answers

Fastest way to get an Euro symbol at a prompt?

First of all I'm working on a keyboard using a QWERTY layout. Now once in a while I need to get the Euro (€) symbol in my terminal (typically in a xterm). If I cut'n'paste the Euro symbol, it shows up fine in my xterms, which have their locale set…
SyntaxT3rr0r
  • 604
  • 2
  • 7
  • 9
7
votes
1 answer

What is ANALYZE/CATALOG for Linux msginit binary message catalog?

VMS has an ANALYZE command that examines an item such as an executable image or an object file displaying information about its contents. Is there such a command for examining the output of msginit which is a binary message catalog file? Something…
CW Holeman II
  • 3,654
  • 5
  • 31
  • 49
7
votes
2 answers

Valid values for LC_CTYPE?

I have found a number of questions on various forums where Mac users complain about locale errors when they log in to Linux systems over SSH which complain that the LC_CTYPE=UTF-8 setting is incorrect. In some more detail, the shell on MacOS seems…
tripleee
  • 7,506
  • 2
  • 32
  • 42
7
votes
2 answers

How to fix diacritics in PDF forms in Evince?

I happen to live in Czech Republic and we have such letters like ě, š, č, ť, etc in the alphabet and use them everywhere, including addresses. Today I was filling a PDF form in Evince and noticed that some of these letters either disappear or make…
Ivan
  • 17,368
  • 35
  • 93
  • 118
7
votes
2 answers

In Fedora, how do I select a proper Norwegian keyboard layout?

I just installed Fedora 19 in VirtualBox using an image from virtualboxes.org. However, I'm unable to select a proper Norwegian keyboard. When I open the keyboard layout, it shows an US layout. A Norwegian layout should have Æ, Ø, Å keys and a lot…
neu242
  • 1,650
  • 2
  • 13
  • 17
5
votes
0 answers

How to change secondary font used by gnome terminal?

Some environment infos: Arch Linux KDE Plasma 5.10.4 GNOME Terminal 3.24.2 Using VTE version 0.48.3 +GNUTLS I set to use Ubuntu Mono Regular font in gnome terminal profile. And Latin characters do render nicely. The problem is I don't like the…
Naitree
  • 829
  • 1
  • 7
  • 16
5
votes
1 answer

Why non-ASCII characters are displayed using a question mark?

I'm working on an embedded linux distribution based on Yocto Morty. I have used an Ubuntu distribution to create the following two files: fòò.dàt bàr.dàt I have stored the files into a pendrive and connected the pendrive to my embedded system. I…
Grynium
  • 123
  • 2
  • 6
5
votes
1 answer

How to get this collation in sort?

I need to set up command sort, so it is sorting lines into this order: Akira Kurosawa Al Ernest Garcia Alain Sarde Alan Ladd, Jr. Albert S. Ruddy Alberto Grimaldi Alfred Hitchcock Amanda Plummer Frank Pesce Fred Roos Fulvio Morsella Günter…
4
votes
1 answer

Incorrect sorting according en_US.UTF-8

I'm seeing a weird behavior of the sort command when I sort by en_US.UTF-8. I'm trying to sort this file (LC_COLLATE=en_US.UTF-8 sort…
1
2 3