mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 10:28:45 +00:00
[UXTHEME] Add Czech (cs-CZ) and Slovak (sk-SK) translations (#7179)
This commit is contained in:
parent
8ee524ac06
commit
7bfae18184
3 changed files with 44 additions and 0 deletions
19
dll/win32/uxtheme/lang/cs-CZ.rc
Normal file
19
dll/win32/uxtheme/lang/cs-CZ.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: Czech resource file
|
||||
* TRANSLATOR: Copyright 2024 Václav Zouzalík (Venca24) <vaclav.zouzalik@seznam.cz>
|
||||
*/
|
||||
|
||||
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
|
||||
|
||||
/* Strings */
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_MESSAGEBOX "Okno zprávy"
|
||||
IDS_ACTIVEWIN "Aktivní okno"
|
||||
IDS_INACTIVEWIN "Neaktivní okno"
|
||||
IDS_OK "OK"
|
||||
IDS_WINTEXT "Text okna"
|
||||
END
|
19
dll/win32/uxtheme/lang/sk-SK.rc
Normal file
19
dll/win32/uxtheme/lang/sk-SK.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: Slovak resource file
|
||||
* TRANSLATOR: Copyright 2024 Václav Zouzalík (Venca24) <vaclav.zouzalik@seznam.cz>
|
||||
*/
|
||||
|
||||
LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT
|
||||
|
||||
/* Strings */
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_MESSAGEBOX "Okno správy"
|
||||
IDS_ACTIVEWIN "Aktívne okno"
|
||||
IDS_INACTIVEWIN "Neaktívne okno"
|
||||
IDS_OK "OK"
|
||||
IDS_WINTEXT "Text okna"
|
||||
END
|
|
@ -19,12 +19,18 @@
|
|||
/* UTF-8 */
|
||||
#pragma code_page(65001)
|
||||
|
||||
#ifdef LANGUAGE_CS_CZ
|
||||
#include "lang/cs-CZ.rc"
|
||||
#endif
|
||||
#ifdef LANGUAGE_EN_US
|
||||
#include "lang/en-US.rc"
|
||||
#endif
|
||||
#ifdef LANGUAGE_RU_RU
|
||||
#include "lang/ru-RU.rc"
|
||||
#endif
|
||||
#ifdef LANGUAGE_SK_SK
|
||||
#include "lang/sk-SK.rc"
|
||||
#endif
|
||||
#ifdef LANGUAGE_UK_UA
|
||||
#include "lang/uk-UA.rc"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue