mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[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:
parent
a65b6ae946
commit
5ed33debf4
3 changed files with 44 additions and 0 deletions
19
dll/win32/uxtheme/lang/pt-BR.rc
Normal file
19
dll/win32/uxtheme/lang/pt-BR.rc
Normal 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
|
19
dll/win32/uxtheme/lang/pt-PT.rc
Normal file
19
dll/win32/uxtheme/lang/pt-PT.rc
Normal 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
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue