mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CRYPTEXT] Add Czech (cs-CZ) and Slovak (sk-SK) translations (#7109)
This commit is contained in:
parent
44a11cbc7f
commit
b21be48ee4
3 changed files with 34 additions and 0 deletions
|
@ -14,6 +14,9 @@
|
||||||
/* UTF-8 */
|
/* UTF-8 */
|
||||||
#pragma code_page(65001)
|
#pragma code_page(65001)
|
||||||
|
|
||||||
|
#ifdef LANGUAGE_CS_CZ
|
||||||
|
#include "lang/cs-CZ.rc"
|
||||||
|
#endif
|
||||||
#ifdef LANGUAGE_DE_DE
|
#ifdef LANGUAGE_DE_DE
|
||||||
#include "lang/de-DE.rc"
|
#include "lang/de-DE.rc"
|
||||||
#endif
|
#endif
|
||||||
|
@ -47,6 +50,9 @@
|
||||||
#ifdef LANGUAGE_RU_RU
|
#ifdef LANGUAGE_RU_RU
|
||||||
#include "lang/ru-RU.rc"
|
#include "lang/ru-RU.rc"
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef LANGUAGE_SK_SK
|
||||||
|
#include "lang/sk-SK.rc"
|
||||||
|
#endif
|
||||||
#ifdef LANGUAGE_TR_TR
|
#ifdef LANGUAGE_TR_TR
|
||||||
#include "lang/tr-TR.rc"
|
#include "lang/tr-TR.rc"
|
||||||
#endif
|
#endif
|
||||||
|
|
14
dll/shellext/cryptext/lang/cs-CZ.rc
Normal file
14
dll/shellext/cryptext/lang/cs-CZ.rc
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
/*
|
||||||
|
* PROJECT: ReactOS CryptExt Shell Extension
|
||||||
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||||||
|
* PURPOSE: Czech resource file
|
||||||
|
* TRANSLATOR: Copyright 2024 Václav Zouzalík (Venca24) <vaclav.zouzalik@seznam.cz>
|
||||||
|
*/
|
||||||
|
|
||||||
|
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
|
||||||
|
|
||||||
|
STRINGTABLE
|
||||||
|
BEGIN
|
||||||
|
IDS_INVALIDFILE "Toto není platný soubor certifikátu."
|
||||||
|
IDS_CER_FILE "Soubor certifikátu"
|
||||||
|
END
|
14
dll/shellext/cryptext/lang/sk-SK.rc
Normal file
14
dll/shellext/cryptext/lang/sk-SK.rc
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
/*
|
||||||
|
* PROJECT: ReactOS CryptExt Shell Extension
|
||||||
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||||||
|
* PURPOSE: Slovak resource file
|
||||||
|
* TRANSLATOR: Copyright 2024 Václav Zouzalík (Venca24) <vaclav.zouzalik@seznam.cz>
|
||||||
|
*/
|
||||||
|
|
||||||
|
LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT
|
||||||
|
|
||||||
|
STRINGTABLE
|
||||||
|
BEGIN
|
||||||
|
IDS_INVALIDFILE "Toto nie je platný súbor certifikátu."
|
||||||
|
IDS_CER_FILE "Súbor certifikátu"
|
||||||
|
END
|
Loading…
Reference in a new issue