From: Bișoc George Date: Fri, 8 Jun 2018 17:06:56 +0000 (+0200) Subject: [TRANSLATION][DRWTSN32] Implement Romanian and Italian resource translations for... X-Git-Tag: 0.4.11-dev~426 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=4217688b49c89fd5607617cf219563b4eec2d756 [TRANSLATION][DRWTSN32] Implement Romanian and Italian resource translations for Dr.Watson (#607) --- diff --git a/base/applications/drwtsn32/drwtsn32.rc b/base/applications/drwtsn32/drwtsn32.rc index 17597e31db8..1e173d8de9d 100644 --- a/base/applications/drwtsn32/drwtsn32.rc +++ b/base/applications/drwtsn32/drwtsn32.rc @@ -28,9 +28,15 @@ #ifdef LANGUAGE_FR_FR #include "lang/fr-FR.rc" #endif +#ifdef LANGUAGE_IT_IT + #include "lang/it-IT.rc" +#endif #ifdef LANGUAGE_PL_PL #include "lang/pl-PL.rc" #endif +#ifdef LANGUAGE_RO_RO + #include "lang/ro-RO.rc" +#endif #ifdef LANGUAGE_ZH_CN #include "lang/zh-CN.rc" #endif diff --git a/base/applications/drwtsn32/lang/it-IT.rc b/base/applications/drwtsn32/lang/it-IT.rc new file mode 100644 index 00000000000..4743ce98953 --- /dev/null +++ b/base/applications/drwtsn32/lang/it-IT.rc @@ -0,0 +1,14 @@ +/* + * PROJECT: Dr. Watson crash reporter + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: Italian resource file + * COPYRIGHT: Copyright 2018 Bișoc George (fraizeraust99 at gmail dot com) + */ + +LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL + +STRINGTABLE +BEGIN + IDS_APP_TITLE "ReactOS Crash Reporter" + IDS_USER_ALERT_MESSAGE "L'applicazione %ls ha smesso di funzionare. Le informazioni su questo crash sono state salvate in:\r\n\r\n%ls" +END diff --git a/base/applications/drwtsn32/lang/ro-RO.rc b/base/applications/drwtsn32/lang/ro-RO.rc new file mode 100644 index 00000000000..6ab1c722f3b --- /dev/null +++ b/base/applications/drwtsn32/lang/ro-RO.rc @@ -0,0 +1,14 @@ +/* + * PROJECT: Dr. Watson crash reporter + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: Romanian resource file + * COPYRIGHT: Copyright 2018 Bișoc George (fraizeraust99 at gmail dot com) + */ + +LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL + +STRINGTABLE +BEGIN + IDS_APP_TITLE "Crash reporter de ReactOS" + IDS_USER_ALERT_MESSAGE "Aplicația %ls a eșuat să funcționeze. Informațiile despre acest crash sunt salvate în:\r\n\r\n%ls" +END