From 131013f2913d5b3bf190e7467d7a3f2630c64f41 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Wed, 6 Sep 2023 10:18:06 -0700 Subject: [PATCH] Fix Portuguese(Brasil) translation naming On case-sensitive systems, the country code needs to be capitalized for the language to be correctly identified between two dialects. Since `br` was not capitalized, we fell back on european portuguese for Linux and MacOS Fixes https://gitlab.com/kicad/code/kicad/-/issues/15592 (cherry picked from commit 2be87e4527a4789a0c12223db8443f341b97cd13) --- translation/pofiles/LINGUAS | 2 +- translation/pofiles/LINGUAS_INSTALL | 2 +- translation/pofiles/{pt_br.po => pt_BR.po} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename translation/pofiles/{pt_br.po => pt_BR.po} (100%) diff --git a/translation/pofiles/LINGUAS b/translation/pofiles/LINGUAS index 61ae636c1a..9ab39cefd1 100644 --- a/translation/pofiles/LINGUAS +++ b/translation/pofiles/LINGUAS @@ -24,7 +24,7 @@ nl no pl pt -pt_br +pt_BR ro ru sk diff --git a/translation/pofiles/LINGUAS_INSTALL b/translation/pofiles/LINGUAS_INSTALL index 21ba04033e..505a506f9e 100644 --- a/translation/pofiles/LINGUAS_INSTALL +++ b/translation/pofiles/LINGUAS_INSTALL @@ -23,7 +23,7 @@ nl no pl pt -pt_br +pt_BR #ro ru #sk diff --git a/translation/pofiles/pt_br.po b/translation/pofiles/pt_BR.po similarity index 100% rename from translation/pofiles/pt_br.po rename to translation/pofiles/pt_BR.po