summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-01-13 23:31:25 +0100
committerCarl Hetherington <cth@carlh.net>2022-01-16 19:16:02 +0100
commitd409b51952ccc24719a322487c8514d8c38f58d9 (patch)
tree02dcb4877cad5d1e1931d26a401bfed772fb95aa
parent6257e51424edd37b924637725908bb58c71c39df (diff)
Don't offer the tr_TR translation as it is very limited.
-rw-r--r--src/wx/config_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index e0effec53..396691751 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -132,7 +132,7 @@ GeneralPage::add_language_controls (wxGridBagSizer* table, int& r)
languages.push_back (make_pair("Português do Brasil", "pt_BR"));
languages.push_back (make_pair("Svenska", "sv_SE"));
languages.push_back (make_pair("Slovenský jazyk", "sk_SK"));
- languages.push_back (make_pair("Türkçe", "tr_TR"));
+ // languages.push_back (make_pair("Türkçe", "tr_TR"));
languages.push_back (make_pair("українська мова", "uk_UA"));
checked_set (_language, languages);
table->Add (_language, wxGBPosition (r, 1));