├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── node.js.yml ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── archive └── en_quests.txt ├── data ├── de │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── en │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests-outdated.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── es │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── fr │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── id │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── it │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── jp │ ├── README.md │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── kr │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── nl │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quest-archive.txt │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── pt │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── ru │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── scn │ ├── README.md │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests-outdated.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── tcn-yue │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── readme.md │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── tcn │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quests_outdated.json │ ├── quotes.json │ ├── ranks.json │ ├── readme.md │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── tctn │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── readme.md │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── th │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests-outdated.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── troll │ ├── quotes.json │ └── terms.json ├── ua │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json └── vi │ ├── battle.json │ ├── ctype.json │ ├── equiptype.json │ ├── items.json │ ├── quests.json │ ├── quotes.json │ ├── ranks.json │ ├── servers.json │ ├── ship_affix.json │ ├── ships.json │ ├── stype.json │ ├── terms.json │ ├── terms_extend.json │ └── useitems.json ├── package.json ├── tools ├── convert-quotes.py ├── kcwikizh-subtitle-merge.py ├── kcwikizh-subtitle-process.py ├── quotes-minify.py ├── remodelGroups.json └── update-servers.js ├── translation-diff.py └── updater ├── index.html ├── jquery.min.js ├── scripts.js └── styles.css /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/README.md -------------------------------------------------------------------------------- /archive/en_quests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/archive/en_quests.txt -------------------------------------------------------------------------------- /data/de/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/battle.json -------------------------------------------------------------------------------- /data/de/ctype.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /data/de/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/equiptype.json -------------------------------------------------------------------------------- /data/de/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/items.json -------------------------------------------------------------------------------- /data/de/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/quests.json -------------------------------------------------------------------------------- /data/de/quotes.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/de/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/ranks.json -------------------------------------------------------------------------------- /data/de/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/servers.json -------------------------------------------------------------------------------- /data/de/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/ship_affix.json -------------------------------------------------------------------------------- /data/de/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/ships.json -------------------------------------------------------------------------------- /data/de/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/stype.json -------------------------------------------------------------------------------- /data/de/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/terms.json -------------------------------------------------------------------------------- /data/de/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/terms_extend.json -------------------------------------------------------------------------------- /data/de/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/de/useitems.json -------------------------------------------------------------------------------- /data/en/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/battle.json -------------------------------------------------------------------------------- /data/en/ctype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/ctype.json -------------------------------------------------------------------------------- /data/en/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/equiptype.json -------------------------------------------------------------------------------- /data/en/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/items.json -------------------------------------------------------------------------------- /data/en/quests-outdated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/quests-outdated.json -------------------------------------------------------------------------------- /data/en/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/quests.json -------------------------------------------------------------------------------- /data/en/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/quotes.json -------------------------------------------------------------------------------- /data/en/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/ranks.json -------------------------------------------------------------------------------- /data/en/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/servers.json -------------------------------------------------------------------------------- /data/en/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/ship_affix.json -------------------------------------------------------------------------------- /data/en/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/ships.json -------------------------------------------------------------------------------- /data/en/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/stype.json -------------------------------------------------------------------------------- /data/en/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/terms.json -------------------------------------------------------------------------------- /data/en/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/terms_extend.json -------------------------------------------------------------------------------- /data/en/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/en/useitems.json -------------------------------------------------------------------------------- /data/es/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/battle.json -------------------------------------------------------------------------------- /data/es/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/es/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/equiptype.json -------------------------------------------------------------------------------- /data/es/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/items.json -------------------------------------------------------------------------------- /data/es/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/quests.json -------------------------------------------------------------------------------- /data/es/quotes.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/es/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/ranks.json -------------------------------------------------------------------------------- /data/es/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/servers.json -------------------------------------------------------------------------------- /data/es/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/ship_affix.json -------------------------------------------------------------------------------- /data/es/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/ships.json -------------------------------------------------------------------------------- /data/es/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/stype.json -------------------------------------------------------------------------------- /data/es/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/terms.json -------------------------------------------------------------------------------- /data/es/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/es/terms_extend.json -------------------------------------------------------------------------------- /data/es/useitems.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /data/fr/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/battle.json -------------------------------------------------------------------------------- /data/fr/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/fr/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/equiptype.json -------------------------------------------------------------------------------- /data/fr/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/items.json -------------------------------------------------------------------------------- /data/fr/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/quests.json -------------------------------------------------------------------------------- /data/fr/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/quotes.json -------------------------------------------------------------------------------- /data/fr/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/ranks.json -------------------------------------------------------------------------------- /data/fr/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/servers.json -------------------------------------------------------------------------------- /data/fr/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/ship_affix.json -------------------------------------------------------------------------------- /data/fr/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/ships.json -------------------------------------------------------------------------------- /data/fr/stype.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /data/fr/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/terms.json -------------------------------------------------------------------------------- /data/fr/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/terms_extend.json -------------------------------------------------------------------------------- /data/fr/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/fr/useitems.json -------------------------------------------------------------------------------- /data/id/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/battle.json -------------------------------------------------------------------------------- /data/id/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/id/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/equiptype.json -------------------------------------------------------------------------------- /data/id/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/items.json -------------------------------------------------------------------------------- /data/id/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/quests.json -------------------------------------------------------------------------------- /data/id/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/quotes.json -------------------------------------------------------------------------------- /data/id/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/ranks.json -------------------------------------------------------------------------------- /data/id/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/servers.json -------------------------------------------------------------------------------- /data/id/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/ship_affix.json -------------------------------------------------------------------------------- /data/id/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/ships.json -------------------------------------------------------------------------------- /data/id/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/stype.json -------------------------------------------------------------------------------- /data/id/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/terms.json -------------------------------------------------------------------------------- /data/id/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/terms_extend.json -------------------------------------------------------------------------------- /data/id/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/id/useitems.json -------------------------------------------------------------------------------- /data/it/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/battle.json -------------------------------------------------------------------------------- /data/it/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/it/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/equiptype.json -------------------------------------------------------------------------------- /data/it/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/items.json -------------------------------------------------------------------------------- /data/it/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/quests.json -------------------------------------------------------------------------------- /data/it/quotes.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/it/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/ranks.json -------------------------------------------------------------------------------- /data/it/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/servers.json -------------------------------------------------------------------------------- /data/it/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/ship_affix.json -------------------------------------------------------------------------------- /data/it/ships.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/it/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/stype.json -------------------------------------------------------------------------------- /data/it/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/terms.json -------------------------------------------------------------------------------- /data/it/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/it/terms_extend.json -------------------------------------------------------------------------------- /data/it/useitems.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /data/jp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/README.md -------------------------------------------------------------------------------- /data/jp/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/battle.json -------------------------------------------------------------------------------- /data/jp/ctype.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /data/jp/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/equiptype.json -------------------------------------------------------------------------------- /data/jp/items.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/jp/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/quests.json -------------------------------------------------------------------------------- /data/jp/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/quotes.json -------------------------------------------------------------------------------- /data/jp/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/ranks.json -------------------------------------------------------------------------------- /data/jp/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/servers.json -------------------------------------------------------------------------------- /data/jp/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/ship_affix.json -------------------------------------------------------------------------------- /data/jp/ships.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/jp/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/stype.json -------------------------------------------------------------------------------- /data/jp/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/terms.json -------------------------------------------------------------------------------- /data/jp/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/terms_extend.json -------------------------------------------------------------------------------- /data/jp/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/jp/useitems.json -------------------------------------------------------------------------------- /data/kr/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/battle.json -------------------------------------------------------------------------------- /data/kr/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/kr/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/equiptype.json -------------------------------------------------------------------------------- /data/kr/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/items.json -------------------------------------------------------------------------------- /data/kr/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/quests.json -------------------------------------------------------------------------------- /data/kr/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/quotes.json -------------------------------------------------------------------------------- /data/kr/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/ranks.json -------------------------------------------------------------------------------- /data/kr/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/servers.json -------------------------------------------------------------------------------- /data/kr/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/ship_affix.json -------------------------------------------------------------------------------- /data/kr/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/ships.json -------------------------------------------------------------------------------- /data/kr/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/stype.json -------------------------------------------------------------------------------- /data/kr/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/terms.json -------------------------------------------------------------------------------- /data/kr/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/terms_extend.json -------------------------------------------------------------------------------- /data/kr/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/kr/useitems.json -------------------------------------------------------------------------------- /data/nl/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/battle.json -------------------------------------------------------------------------------- /data/nl/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/nl/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/equiptype.json -------------------------------------------------------------------------------- /data/nl/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/items.json -------------------------------------------------------------------------------- /data/nl/quest-archive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/quest-archive.txt -------------------------------------------------------------------------------- /data/nl/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/quests.json -------------------------------------------------------------------------------- /data/nl/quotes.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/nl/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/ranks.json -------------------------------------------------------------------------------- /data/nl/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/servers.json -------------------------------------------------------------------------------- /data/nl/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/ship_affix.json -------------------------------------------------------------------------------- /data/nl/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/ships.json -------------------------------------------------------------------------------- /data/nl/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/stype.json -------------------------------------------------------------------------------- /data/nl/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/terms.json -------------------------------------------------------------------------------- /data/nl/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/nl/terms_extend.json -------------------------------------------------------------------------------- /data/nl/useitems.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /data/pt/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/battle.json -------------------------------------------------------------------------------- /data/pt/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/pt/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/equiptype.json -------------------------------------------------------------------------------- /data/pt/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/items.json -------------------------------------------------------------------------------- /data/pt/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/quests.json -------------------------------------------------------------------------------- /data/pt/quotes.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/pt/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/ranks.json -------------------------------------------------------------------------------- /data/pt/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/servers.json -------------------------------------------------------------------------------- /data/pt/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/ship_affix.json -------------------------------------------------------------------------------- /data/pt/ships.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/pt/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/stype.json -------------------------------------------------------------------------------- /data/pt/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/terms.json -------------------------------------------------------------------------------- /data/pt/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/pt/terms_extend.json -------------------------------------------------------------------------------- /data/pt/useitems.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /data/ru/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/battle.json -------------------------------------------------------------------------------- /data/ru/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/ru/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/equiptype.json -------------------------------------------------------------------------------- /data/ru/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/items.json -------------------------------------------------------------------------------- /data/ru/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/quests.json -------------------------------------------------------------------------------- /data/ru/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/quotes.json -------------------------------------------------------------------------------- /data/ru/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/ranks.json -------------------------------------------------------------------------------- /data/ru/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/servers.json -------------------------------------------------------------------------------- /data/ru/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/ship_affix.json -------------------------------------------------------------------------------- /data/ru/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/ships.json -------------------------------------------------------------------------------- /data/ru/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/stype.json -------------------------------------------------------------------------------- /data/ru/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/terms.json -------------------------------------------------------------------------------- /data/ru/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/terms_extend.json -------------------------------------------------------------------------------- /data/ru/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ru/useitems.json -------------------------------------------------------------------------------- /data/scn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/README.md -------------------------------------------------------------------------------- /data/scn/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/battle.json -------------------------------------------------------------------------------- /data/scn/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/scn/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/equiptype.json -------------------------------------------------------------------------------- /data/scn/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/items.json -------------------------------------------------------------------------------- /data/scn/quests-outdated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/quests-outdated.json -------------------------------------------------------------------------------- /data/scn/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/quests.json -------------------------------------------------------------------------------- /data/scn/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/quotes.json -------------------------------------------------------------------------------- /data/scn/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/ranks.json -------------------------------------------------------------------------------- /data/scn/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/servers.json -------------------------------------------------------------------------------- /data/scn/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/ship_affix.json -------------------------------------------------------------------------------- /data/scn/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/ships.json -------------------------------------------------------------------------------- /data/scn/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/stype.json -------------------------------------------------------------------------------- /data/scn/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/terms.json -------------------------------------------------------------------------------- /data/scn/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/terms_extend.json -------------------------------------------------------------------------------- /data/scn/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/scn/useitems.json -------------------------------------------------------------------------------- /data/tcn-yue/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/battle.json -------------------------------------------------------------------------------- /data/tcn-yue/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/tcn-yue/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/equiptype.json -------------------------------------------------------------------------------- /data/tcn-yue/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/items.json -------------------------------------------------------------------------------- /data/tcn-yue/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/quests.json -------------------------------------------------------------------------------- /data/tcn-yue/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/quotes.json -------------------------------------------------------------------------------- /data/tcn-yue/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/ranks.json -------------------------------------------------------------------------------- /data/tcn-yue/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/readme.md -------------------------------------------------------------------------------- /data/tcn-yue/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/servers.json -------------------------------------------------------------------------------- /data/tcn-yue/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/ship_affix.json -------------------------------------------------------------------------------- /data/tcn-yue/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/ships.json -------------------------------------------------------------------------------- /data/tcn-yue/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/stype.json -------------------------------------------------------------------------------- /data/tcn-yue/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/terms.json -------------------------------------------------------------------------------- /data/tcn-yue/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/terms_extend.json -------------------------------------------------------------------------------- /data/tcn-yue/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn-yue/useitems.json -------------------------------------------------------------------------------- /data/tcn/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/battle.json -------------------------------------------------------------------------------- /data/tcn/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/tcn/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/equiptype.json -------------------------------------------------------------------------------- /data/tcn/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/items.json -------------------------------------------------------------------------------- /data/tcn/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/quests.json -------------------------------------------------------------------------------- /data/tcn/quests_outdated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/quests_outdated.json -------------------------------------------------------------------------------- /data/tcn/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/quotes.json -------------------------------------------------------------------------------- /data/tcn/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/ranks.json -------------------------------------------------------------------------------- /data/tcn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/readme.md -------------------------------------------------------------------------------- /data/tcn/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/servers.json -------------------------------------------------------------------------------- /data/tcn/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/ship_affix.json -------------------------------------------------------------------------------- /data/tcn/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/ships.json -------------------------------------------------------------------------------- /data/tcn/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/stype.json -------------------------------------------------------------------------------- /data/tcn/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/terms.json -------------------------------------------------------------------------------- /data/tcn/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/terms_extend.json -------------------------------------------------------------------------------- /data/tcn/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tcn/useitems.json -------------------------------------------------------------------------------- /data/tctn/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/battle.json -------------------------------------------------------------------------------- /data/tctn/ctype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/ctype.json -------------------------------------------------------------------------------- /data/tctn/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/equiptype.json -------------------------------------------------------------------------------- /data/tctn/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/items.json -------------------------------------------------------------------------------- /data/tctn/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/quests.json -------------------------------------------------------------------------------- /data/tctn/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/quotes.json -------------------------------------------------------------------------------- /data/tctn/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/ranks.json -------------------------------------------------------------------------------- /data/tctn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/readme.md -------------------------------------------------------------------------------- /data/tctn/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/servers.json -------------------------------------------------------------------------------- /data/tctn/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/ship_affix.json -------------------------------------------------------------------------------- /data/tctn/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/ships.json -------------------------------------------------------------------------------- /data/tctn/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/stype.json -------------------------------------------------------------------------------- /data/tctn/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/terms.json -------------------------------------------------------------------------------- /data/tctn/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/terms_extend.json -------------------------------------------------------------------------------- /data/tctn/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/tctn/useitems.json -------------------------------------------------------------------------------- /data/th/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/battle.json -------------------------------------------------------------------------------- /data/th/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/th/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/equiptype.json -------------------------------------------------------------------------------- /data/th/items.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data/th/quests-outdated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/quests-outdated.json -------------------------------------------------------------------------------- /data/th/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/quests.json -------------------------------------------------------------------------------- /data/th/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/quotes.json -------------------------------------------------------------------------------- /data/th/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/ranks.json -------------------------------------------------------------------------------- /data/th/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/servers.json -------------------------------------------------------------------------------- /data/th/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/ship_affix.json -------------------------------------------------------------------------------- /data/th/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/ships.json -------------------------------------------------------------------------------- /data/th/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/stype.json -------------------------------------------------------------------------------- /data/th/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/terms.json -------------------------------------------------------------------------------- /data/th/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/th/terms_extend.json -------------------------------------------------------------------------------- /data/th/useitems.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /data/troll/quotes.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/troll/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/troll/terms.json -------------------------------------------------------------------------------- /data/ua/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/battle.json -------------------------------------------------------------------------------- /data/ua/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/ua/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/equiptype.json -------------------------------------------------------------------------------- /data/ua/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/items.json -------------------------------------------------------------------------------- /data/ua/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/quests.json -------------------------------------------------------------------------------- /data/ua/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/quotes.json -------------------------------------------------------------------------------- /data/ua/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/ranks.json -------------------------------------------------------------------------------- /data/ua/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/servers.json -------------------------------------------------------------------------------- /data/ua/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/ship_affix.json -------------------------------------------------------------------------------- /data/ua/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/ships.json -------------------------------------------------------------------------------- /data/ua/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/stype.json -------------------------------------------------------------------------------- /data/ua/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/terms.json -------------------------------------------------------------------------------- /data/ua/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/terms_extend.json -------------------------------------------------------------------------------- /data/ua/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/ua/useitems.json -------------------------------------------------------------------------------- /data/vi/battle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/battle.json -------------------------------------------------------------------------------- /data/vi/ctype.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/vi/equiptype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/equiptype.json -------------------------------------------------------------------------------- /data/vi/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/items.json -------------------------------------------------------------------------------- /data/vi/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/quests.json -------------------------------------------------------------------------------- /data/vi/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/quotes.json -------------------------------------------------------------------------------- /data/vi/ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/ranks.json -------------------------------------------------------------------------------- /data/vi/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/servers.json -------------------------------------------------------------------------------- /data/vi/ship_affix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/ship_affix.json -------------------------------------------------------------------------------- /data/vi/ships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/ships.json -------------------------------------------------------------------------------- /data/vi/stype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/stype.json -------------------------------------------------------------------------------- /data/vi/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/terms.json -------------------------------------------------------------------------------- /data/vi/terms_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/terms_extend.json -------------------------------------------------------------------------------- /data/vi/useitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/data/vi/useitems.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/package.json -------------------------------------------------------------------------------- /tools/convert-quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/tools/convert-quotes.py -------------------------------------------------------------------------------- /tools/kcwikizh-subtitle-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/tools/kcwikizh-subtitle-merge.py -------------------------------------------------------------------------------- /tools/kcwikizh-subtitle-process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/tools/kcwikizh-subtitle-process.py -------------------------------------------------------------------------------- /tools/quotes-minify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/tools/quotes-minify.py -------------------------------------------------------------------------------- /tools/remodelGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/tools/remodelGroups.json -------------------------------------------------------------------------------- /tools/update-servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/tools/update-servers.js -------------------------------------------------------------------------------- /translation-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/translation-diff.py -------------------------------------------------------------------------------- /updater/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/updater/index.html -------------------------------------------------------------------------------- /updater/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/updater/jquery.min.js -------------------------------------------------------------------------------- /updater/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KC3Kai/kc3-translations/HEAD/updater/scripts.js -------------------------------------------------------------------------------- /updater/styles.css: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------