From: Carl Hetherington Date: Thu, 13 Jan 2022 22:31:25 +0000 (+0100) Subject: Don't offer the tr_TR translation as it is very limited. X-Git-Tag: checked-for-v2.16.x~84 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=a1b6957efe505c124d4f28854a4297cf2a7bee71 Don't offer the tr_TR translation as it is very limited. --- 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));