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-13 23:31:25 +0100
commita1b6957efe505c124d4f28854a4297cf2a7bee71 (patch)
tree94a340b9db23865977bd4efe68182fa2067b29a3
parent138e9f3a638c5049f06628e683778406c8eec0df (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));