Language IDs
Posted: 24 Jan 2006 00:44
The question is, what are those IDs?wiki wrote:language-id .... Since 2.0.1 alpha 59, this value can have an alternative format that allows distinguishing up to 64 languages. To use this, set bit 6, and set the language ID in bits 0..5.
First of all, is it safe to assume that the values for the 5 original locales will remain same (for compatibility)? i.e.
Code: Select all
0x01 American
0x02 English
0x04 German
0x08 French
0x10 Spanish
Code: Select all
420 -> 0x10 + 0x04 + 0x01 = 0x15 (21 dec)
421 -> 0x10 + 0x04 + 0x02 = 0x16 (22 dec)
Therefore the language IDs are so far:
- Russian - 0x07 - reserved by George on Sat Jan 07, 2006 12:51 am
Czech - 0x15 - reserved by minime
Slovak - 0x16 - reserved by minime
Norwegian - 0x2F - reserved by OzTransLtd on Sat Jan 07, 2006 12:01 am
Could anyone please help clarify this, since there is no official documentation on this?