diff --git a/dll/shellext/cryptext/cryptext.rc b/dll/shellext/cryptext/cryptext.rc index 9dc9c22e7d5..88890f0b5fc 100644 --- a/dll/shellext/cryptext/cryptext.rc +++ b/dll/shellext/cryptext/cryptext.rc @@ -23,6 +23,12 @@ #ifdef LANGUAGE_HE_IL #include "lang/he-IL.rc" #endif +#ifdef LANGUAGE_IT_IT + #include "lang/it-IT.rc" +#endif +#ifdef LANGUAGE_RO_RO + #include "lang/ro-RO.rc" +#endif #ifdef LANGUAGE_RU_RU #include "lang/ru-RU.rc" #endif diff --git a/dll/shellext/cryptext/lang/it-IT.rc b/dll/shellext/cryptext/lang/it-IT.rc new file mode 100644 index 00000000000..36995db9975 --- /dev/null +++ b/dll/shellext/cryptext/lang/it-IT.rc @@ -0,0 +1,14 @@ +/* + * PROJECT: ReactOS CryptExt Shell Extension + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: Italian (Neutral) resource translation + * COPYRIGHT: Copyright 2019 Bișoc George (fraizeraust99 at gmail dot com) + */ + +LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL + +STRINGTABLE +BEGIN + IDS_INVALIDFILE "Il file del certificato non è valido." + IDS_CER_FILE "File certificato" +END diff --git a/dll/shellext/cryptext/lang/ro-RO.rc b/dll/shellext/cryptext/lang/ro-RO.rc new file mode 100644 index 00000000000..5609ce5f3f9 --- /dev/null +++ b/dll/shellext/cryptext/lang/ro-RO.rc @@ -0,0 +1,14 @@ +/* + * PROJECT: ReactOS CryptExt Shell Extension + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: Romanian (Neutral) resource translation + * COPYRIGHT: Copyright 2019 Bișoc George (fraizeraust99 at gmail dot com) + */ + +LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL + +STRINGTABLE +BEGIN + IDS_INVALIDFILE "Acest fișier de certificat este invalid." + IDS_CER_FILE "Fișier de certificat" +END