[TRANSLATION][DRWTSN32] Implement Romanian and Italian resource translations for Dr.Watson (#607)

This commit is contained in:
Bișoc George 2018-06-08 19:06:56 +02:00 committed by Hermès BÉLUSCA - MAÏTO
parent 01e2877161
commit 4217688b49
3 changed files with 34 additions and 0 deletions

View file

@ -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

View file

@ -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

View file

@ -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