summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-03-25 00:43:58 +0000
committerCarl Hetherington <cth@carlh.net>2019-03-25 00:43:58 +0000
commit4bef2e0b93f84ee98d7a3dccbfa5b13106f7a263 (patch)
treeb6a18a5d12ae7203f24cb25cd362cc291f2ecb9b
parent74873babf8ed3ffb3dd79858328d5b3f142479a3 (diff)
Try to fix missing inbuilt translations of wxWidgets in Fedora (#1502).v2.13.136
-rw-r--r--src/wx/wx_util.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc
index f77cfacd3..747d1df04 100644
--- a/src/wx/wx_util.cc
+++ b/src/wx/wx_util.cc
@@ -361,6 +361,9 @@ dcpomatic_setup_i18n ()
of wxWidgets.
*/
locale->AddCatalog (wxT ("dcpomatic2-wxstd"));
+
+ /* Fedora 29 (at least) installs wxstd3.mo instead of wxstd.mo */
+ locale->AddCatalog (wxT ("wxstd3"));
#endif
locale->AddCatalog (wxT ("libdcpomatic2-wx"));