1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Add Turkish translation

This commit is contained in:
Michael Steenbeek
2018-08-13 00:16:11 +02:00
committed by GitHub
parent 56b174432d
commit 9e517a52ff
4 changed files with 4553 additions and 0 deletions

4550
data/language/tr-TR.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -7,6 +7,7 @@
- Feature: [#7771] Danish translation.
- Feature: [#7797, #7802, #7821, #7830] Add sprite font glyphs for Danish, Norwegian, Russian, Turkish, Catalan and Romanian.
- Feature: [#7868] Placing scenery while holding shift now scales appropriately with zoom levels.
- Feature: [#7885] Turkish translation.
- Fix: [#3177] Wrong keys displayed in shortcut menu.
- Fix: [#4039] No sprite font glyph for German opening quotation mark.
- Fix: [#5548] platform_get_locale_date_format is not implemented for Linux.

View File

@@ -46,6 +46,7 @@ const language_descriptor LanguagesDescriptors[LANGUAGE_COUNT] =
{ "ru-RU", "Russian", u8"Русский", FAMILY_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_ENGLISH_UK }, // LANGUAGE_RUSSIAN
{ "fi-FI", "Finnish", "Suomi", FAMILY_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_ENGLISH_UK }, // LANGUAGE_FINNISH
{ "sv-SE", "Swedish", "Svenska", FAMILY_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_SWEDISH }, // LANGUAGE_SWEDISH
{ "tr-TR", "Turkish", "Türkçe", FAMILY_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_ENGLISH_UK }, // LANGUAGE_TURKISH
};
// clang-format on

View File

@@ -41,6 +41,7 @@ enum
LANGUAGE_RUSSIAN,
LANGUAGE_FINNISH,
LANGUAGE_SWEDISH,
LANGUAGE_TURKISH,
LANGUAGE_COUNT
};