The `npc_text_locale` table
This table is used to provide localized clients with localized strings for npc_texts.
Table Structure
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
|---|---|---|---|---|---|---|---|
| ID | INT | UNSIGNED | PRI | NO | 0 | ||
| Locale | VARCHAR(4) | PRI | NO | ||||
| Text0_0 | TEXT | YES | |||||
| Text0_1 | TEXT | YES | |||||
| Text1_0 | TEXT | YES | |||||
| Text1_1 | TEXT | YES | |||||
| Text2_0 | TEXT | YES | |||||
| Text2_1 | TEXT | YES | |||||
| Text3_0 | TEXT | YES | |||||
| Text3_1 | TEXT | YES | |||||
| Text4_0 | TEXT | YES | |||||
| Text4_1 | TEXT | YES | |||||
| Text5_0 | TEXT | YES | |||||
| Text5_1 | TEXT | YES | |||||
| Text6_0 | TEXT | YES | |||||
| Text6_1 | TEXT | YES | |||||
| Text7_0 | TEXT | YES | |||||
| Text7_1 | TEXT | YES |
Description of the fields
This must match npc_text.ID.
The locale (language code) for this row. There is one row per non-default locale, so a single record can have up to 8 translated variants here. Valid values: koKR, frFR, deDE, zhCN, zhTW, esES, esMX, ruRU. The default enUS text is stored in the base table, not here.
Translated variants of the corresponding npc_text textN_0 / textN_1 columns for this locale.