[UXTHEME] Add Portuguese Portugal (pt-PT) and Portuguese Brazil (pt-BR) translations (#7418)

Matches corresponding translations in the desk.cpl applet.
Addendum to d11582f0e. CORE-5991
This commit is contained in:
Daniel Victor 2024-10-03 04:30:56 -03:00 committed by GitHub
parent a65b6ae946
commit 5ed33debf4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,19 @@
/*
* PROJECT: ReactOS uxtheme.dll
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
* PURPOSE: Portuguese (Brazil) resource file
* TRANSLATOR: Copyright 2024 Daniel Victor <ilauncherdeveloper@gmail.com>
*/
LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
/* Strings */
STRINGTABLE
BEGIN
IDS_MESSAGEBOX "Caixa de mensagem"
IDS_ACTIVEWIN "Janela ativa"
IDS_INACTIVEWIN "Janela inativa"
IDS_OK "OK"
IDS_WINTEXT "Texto da janela"
END

View file

@ -0,0 +1,19 @@
/*
* PROJECT: ReactOS uxtheme.dll
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
* PURPOSE: Portuguese (Portugal) resource file
* TRANSLATOR: Copyright 2024 Daniel Victor <ilauncherdeveloper@gmail.com>
*/
LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE
/* Strings */
STRINGTABLE
BEGIN
IDS_MESSAGEBOX "Caixa de mensagem"
IDS_ACTIVEWIN "Janela activa"
IDS_INACTIVEWIN "Janela inactiva"
IDS_OK "OK"
IDS_WINTEXT "Texto da janela"
END

View file

@ -28,6 +28,12 @@
#ifdef LANGUAGE_EN_US
#include "lang/en-US.rc"
#endif
#ifdef LANGUAGE_PT_BR
#include "lang/pt-BR.rc"
#endif
#ifdef LANGUAGE_PT_PT
#include "lang/pt-PT.rc"
#endif
#ifdef LANGUAGE_RU_RU
#include "lang/ru-RU.rc"
#endif