Line 379: |
Line 379: |
Β | | Β | |
Β | == Language Names == | Β | == Language Names == |
β | Some files, like the badge and the category, store its name displayed on different languages. Here is the language list: | + | Some files, like the badge and the category file, store its display name in a set of 16 different languages. |
Β | | Β | |
β | {| class="wikitable"
| + | Each language is stored as a little-endian utf16 string, in an allocated 0x100 byte section stacked on top of each other. |
β | |-
| + | Β |
β | ! Offset
| + | A string does not need to fill the entire 0x100 byte section, the remaining data is set to null bytes |
β | ! Size
| + | Β |
β | ! Language
| + | The languages are ordered as follows: |
β | |-
| + | Β |
β | | 0x0
| + | # Japanese |
β | | 0x100
| + | # English |
β | | Japanese
| + | # French |
β | |-
| + | # German |
β | | 0x100
| + | # Italian |
β | | 0x100
| + | # Spanish |
β | | English
| + | # Chinese (simple) |
β | |-
| + | # Korean |
β | | 0x200
| + | # Dutch |
β | | 0x100
| + | # Portuguese |
β | | French
| + | # Russian |
β | |-
| + | # Chinese (traditional) |
β | | 0x300
| + | # Unknown |
β | | 0x100
| + | # Unknown |
β | | German
| + | # Unknown |
β | |-
| + | # Unknown |
β | | 0x400
| Β |
β | | 0x100
| Β |
β | | Italian
| Β |
β | |-
| Β |
β | | 0x500
| Β |
β | | 0x100
| Β |
β | | Spanish
| Β |
β | |-
| Β |
β | | 0x600
| Β |
β | | 0x100
| Β |
β | | Unknown
| Β |
β | |-
| Β |
β | | 0x700
| Β |
β | | 0x100
| Β |
β | | Unknown
| Β |
β | |-
| Β |
β | | 0x800
| Β |
β | | 0x100
| Β |
β | | Netherlands
| Β |
β | |-
| Β |
β | | 0x900
| Β |
β | | 0x100
| Β |
β | | Portuguese
| Β |
β | |-
| Β |
β | | 0xA00
| Β |
β | | 0x100
| Β |
β | | Russian
| Β |
β | |-
| Β |
β | | 0xB00
| Β |
β | | 0x100
| Β |
β | | Unknown
| Β |
β | |-
| Β |
β | | 0xC00
| Β |
β | | 0x100
| Β |
β | | Unknown
| Β |
β | |-
| Β |
β | | 0xD00
| Β |
β | | 0x100
| Β |
β | | Unknown
| Β |
β | |-
| Β |
β | | 0xE00
| Β |
β | | 0x100
| Β |
β | | Unknown
| Β |
β | |-
| Β |
β | | 0xF00
| Β |
β | | 0x100
| Β |
β | | Unknown
| Β |
β | |}
| Β |