Add Esperanto to language list (#13096)

This commit is contained in:
Michael Steenbeek 2020-10-05 13:21:27 +02:00 committed by GitHub
parent f461b42ee6
commit b835477542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
------------------------------------------------------------------------
- Feature: [#12999] .sea (RCT Classic) scenarios are now listed in the “New Scenario” dialog.
- Feature: [#13000] objective_options command for console.
- Feature: [#13096] Add Esperanto translation.
- Fix: [#3200] Close Construction window upon selecting vehicle page.
- Fix: [#5904] Empty errors on tile inspector base height change.
- Fix: [#8015] RCT2 files are not found when put into the OpenRCT2 folder.

View File

@ -33,6 +33,7 @@ const language_descriptor LanguagesDescriptors[LANGUAGE_COUNT] =
{ "de-DE", "German", "Deutsch", FAMILY_OPENRCT2_SPRITE, false }, // LANGUAGE_GERMAN
{ "en-GB", "English (UK)", "English (UK)", FAMILY_OPENRCT2_SPRITE, false }, // LANGUAGE_ENGLISH_UK
{ "en-US", "English (US)", "English (US)", FAMILY_OPENRCT2_SPRITE, false }, // LANGUAGE_ENGLISH_US
{ "eo-OO", "Esperanto", "Esperanto", FAMILY_OPENRCT2_SPRITE, false }, // LANGUAGE_ESPERANTO
{ "es-ES", "Spanish", u8"Español", FAMILY_OPENRCT2_SPRITE, false }, // LANGUAGE_SPANISH
{ "fr-FR", "French", u8"Français", FAMILY_OPENRCT2_SPRITE, false }, // LANGUAGE_FRENCH
{ "it-IT", "Italian", "Italiano", FAMILY_OPENRCT2_SPRITE, false }, // LANGUAGE_ITALIAN

View File

@ -28,6 +28,7 @@ enum
LANGUAGE_GERMAN,
LANGUAGE_ENGLISH_UK,
LANGUAGE_ENGLISH_US,
LANGUAGE_ESPERANTO,
LANGUAGE_SPANISH,
LANGUAGE_FRENCH,
LANGUAGE_ITALIAN,