From fe53644150c609828868b15bed4e9fa4da374d37 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 27 Mar 2022 17:10:46 -0700 Subject: [PATCH] translations: fix Portuguese parent translation I didn't pay attention and entered the wrong flavor of Portuguese as the parent translation. The one for Portugal is complete and should be the parent, back-filling the one for Brazil where needed. Suggested-by: Christof Arnosti Signed-off-by: Dirk Hohndel --- core/qt-init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/qt-init.cpp b/core/qt-init.cpp index 20052c20e..e4da53c41 100644 --- a/core/qt-init.cpp +++ b/core/qt-init.cpp @@ -104,7 +104,7 @@ void init_qt_late() // obvious fallbacks QPair parents[] = { { QLocale::German, QLocale::Germany }, - { QLocale::Portuguese, QLocale::Brazil }, + { QLocale::Portuguese, QLocale::Portugal }, { QLocale::French, QLocale::France}, { QLocale::Spanish, QLocale::Spain} };