Locked

How to create new localization

aneverse
aneverse · 28 days ago

How to add or update a language

  1. Copy en.json and rename it to the game language file name
    (see list below), e.g. de.json, fr.json, ja.json.
  2. Translate only the second string in each [ "Key", "Text" ] pair.
    Do not change the keys.
  3. Keep valid JSON (UTF-8). Trailing commas are not allowed.
  4. Place the file in this Translations folder next to the mod DLL.
  5. Restart the game and switch to that language in settings.

Format (same as vanilla Captain of Industry):

[
	[
		"SomeKey",
		"Translated text"
	],
	[
		"AnotherKey",
		"More text"
	]
]

Game-supported languages (file name)

en.json      English (en-US)\
ca.json      Català (ca-ES)\
cs.json      Čeština (cs-CZ)\
de.json      Deutsch (de-DE)\
es.json      Español (es-ES)\
et.json      Eesti keel (et-EE)\
fr.json      Français (fr-FR)\
hu.json      Magyar (hu-HU)\
it.json      Italiano (it-IT)\
ja.json      日本語 (ja-JP)\
ko.json      한국어 (ko-KR)\
nb_NO.json   Norsk bokmål (nb-NO)\
nl.json      Nederlands (nl-NL)\
pl.json      Polski (pl-PL)\
pt_BR.json   Português brasileiro (pt-BR)\
ru.json      Русский (ru-RU)\
sv.json      Svenska (sv-SE)\
tr.json      Türkçe (tr-TR)\
uk.json      Українська (uk-UA)\
zh_Hans.json 简体中文 (zh-CN)\
zh_Hant.json 繁體中文 (zh-Hant)
118
Showing 1–1 of 1