mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
[Qt] Hook Swedish to UI
This commit is contained in:
parent
4616b3bc19
commit
7bfcdbf442
2 changed files with 7 additions and 3 deletions
|
@ -756,7 +756,10 @@ if(NOT BUILD_HYDRA_CORE AND NOT BUILD_LIBRETRO_CORE)
|
||||||
)
|
)
|
||||||
|
|
||||||
# Translation files in Qt's .ts format. Will be converted into binary files and embedded into the executable
|
# Translation files in Qt's .ts format. Will be converted into binary files and embedded into the executable
|
||||||
set(TRANSLATIONS_TS docs/translations/en.ts docs/translations/el.ts docs/translations/es.ts docs/translations/pt_br.ts docs/translations/nl.ts)
|
set(TRANSLATIONS_TS docs/translations/en.ts docs/translations/el.ts docs/translations/es.ts docs/translations/pt_br.ts docs/translations/nl.ts
|
||||||
|
docs/translations/sv.ts
|
||||||
|
)
|
||||||
|
|
||||||
set_source_files_properties(${TRANSLATIONS_TS} PROPERTIES OUTPUT_LOCATION "${CMAKE_CURRENT_BINARY_DIR}/translations")
|
set_source_files_properties(${TRANSLATIONS_TS} PROPERTIES OUTPUT_LOCATION "${CMAKE_CURRENT_BINARY_DIR}/translations")
|
||||||
qt_add_translation(TRANSLATIONS_QM ${TRANSLATIONS_TS})
|
qt_add_translation(TRANSLATIONS_QM ${TRANSLATIONS_TS})
|
||||||
|
|
||||||
|
|
|
@ -46,12 +46,13 @@ struct LanguageInfo {
|
||||||
// Please keep this list mostly in alphabetical order.
|
// Please keep this list mostly in alphabetical order.
|
||||||
// Also, for Unicode characters in language names, use Unicode keycodes instead of writing out the name,
|
// Also, for Unicode characters in language names, use Unicode keycodes instead of writing out the name,
|
||||||
// as some compilers/toolchains may not enjoy Unicode in source files.
|
// as some compilers/toolchains may not enjoy Unicode in source files.
|
||||||
static std::array<LanguageInfo, 5> languages = {
|
static std::array<LanguageInfo, 6> languages = {
|
||||||
LanguageInfo(QStringLiteral(u"English"), "en"), // English
|
LanguageInfo(QStringLiteral(u"English"), "en"), // English
|
||||||
LanguageInfo(QStringLiteral(u"\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"), "el"), // Greek
|
LanguageInfo(QStringLiteral(u"\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"), "el"), // Greek
|
||||||
LanguageInfo(QStringLiteral(u"Espa\u00F1ol"), "es"), // Spanish
|
LanguageInfo(QStringLiteral(u"Espa\u00F1ol"), "es"), // Spanish
|
||||||
LanguageInfo(QStringLiteral(u"Nederlands"), "nl"), // Dutch
|
LanguageInfo(QStringLiteral(u"Nederlands"), "nl"), // Dutch
|
||||||
LanguageInfo(QStringLiteral(u"Portugu\u00EAs (Brasil)"), "pt_br") // Portuguese (Brazilian)
|
LanguageInfo(QStringLiteral(u"Portugu\u00EAs (Brasil)"), "pt_br"), // Portuguese (Brazilian)
|
||||||
|
LanguageInfo(QStringLiteral(u"Svenska"), "sv"), // Swedish
|
||||||
};
|
};
|
||||||
|
|
||||||
QComboBox* ConfigWindow::createLanguageSelect() {
|
QComboBox* ConfigWindow::createLanguageSelect() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue