Improve language lists in localization editor
(cherry picked from commit 30df260810
)
This commit is contained in:
parent
f9bafe4ba4
commit
24c52f8d67
|
@ -2639,7 +2639,7 @@ ProjectManager::ProjectManager() {
|
|||
for (int i = 0; i < editor_languages.size(); i++) {
|
||||
String lang = editor_languages[i];
|
||||
String lang_name = TranslationServer::get_singleton()->get_locale_name(lang);
|
||||
language_btn->add_item(lang_name + " [" + lang + "]", i);
|
||||
language_btn->add_item(vformat("[%s] %s", lang, lang_name), i);
|
||||
language_btn->set_item_metadata(i, lang);
|
||||
if (current_lang == lang) {
|
||||
language_btn->select(i);
|
||||
|
|
|
@ -1577,7 +1577,7 @@ void ProjectSettingsEditor::_update_translations() {
|
|||
|
||||
TreeItem *t = translation_filter->create_item(root);
|
||||
t->set_cell_mode(0, TreeItem::CELL_MODE_CHECK);
|
||||
t->set_text(0, n);
|
||||
t->set_text(0, vformat("[%s] %s", l, n));
|
||||
t->set_editable(0, true);
|
||||
t->set_tooltip(0, l);
|
||||
t->set_checked(0, is_checked);
|
||||
|
@ -1618,7 +1618,7 @@ void ProjectSettingsEditor::_update_translations() {
|
|||
if (langnames.length() > 0) {
|
||||
langnames += ",";
|
||||
}
|
||||
langnames += names[i];
|
||||
langnames += vformat("[%s] %s", langs[i], names[i]);
|
||||
translation_locales_idxs_remap.write[l_idx] = i;
|
||||
l_idx++;
|
||||
}
|
||||
|
@ -1627,7 +1627,7 @@ void ProjectSettingsEditor::_update_translations() {
|
|||
if (i > 0) {
|
||||
langnames += ",";
|
||||
}
|
||||
langnames += names[i];
|
||||
langnames += vformat("[%s] %s", langs[i], names[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue