Skip to content

feat(color): add Korean font and localization support #6118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions companion/src/firmwares/opentx/opentxinterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class OpenTxFirmware: public Firmware
addLanguage("hu");
addLanguage("it");
addLanguage("jp");
addLanguage("ko");
addLanguage("nl");
addLanguage("pl");
addLanguage("pt");
Expand Down
1 change: 1 addition & 0 deletions companion/src/generaledit/generalsetup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ void GeneralSetupPanel::populateVoiceLangCB()
{ tr("Hungarian"), "hu" },
{ tr("Italian"), "it" },
{ tr("Japanese"), "jp" },
{ tr("Korean"), "ko" },
{ tr("Polish"), "pl" },
{ tr("Portuguese"), "pt" },
{ tr("Russian"), "ru" },
Expand Down
5 changes: 3 additions & 2 deletions companion/src/translations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,15 @@ QStringList const Translations::getAvailableTranslations()
<< "fr_FR"
<< "he_IL"
<< "it_IT"
<< "ja_JP"
<< "ko-KR"
<< "nl_NL"
<< "pl_PL"
<< "pt_PT"
<< "ru_RU"
<< "sv_SE"
<< "zh_CN"
<< "zh_TW"
<< "ja_JP" ;
<< "zh_TW";
}
return locales;
}
Expand Down
Loading
Loading