mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Minor changes and IT resource file.
svn path=/trunk/; revision=17570
This commit is contained in:
parent
3c98221253
commit
ca18dcf2d9
3 changed files with 16 additions and 2 deletions
13
reactos/subsys/system/reactos/It.rc
Normal file
13
reactos/subsys/system/reactos/It.rc
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
/* $Id$ */
|
||||||
|
|
||||||
|
LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
|
||||||
|
|
||||||
|
/* String Tables */
|
||||||
|
STRINGTABLE DISCARDABLE
|
||||||
|
BEGIN
|
||||||
|
IDS_CAPTION "Installazione di ReactOS"
|
||||||
|
IDS_TEXT "Non è possibile installare direttamente ReactOS da questo CD!\n\n"\
|
||||||
|
"Per installare ReactOS, riavvia il computer da questo CD."
|
||||||
|
END
|
||||||
|
|
||||||
|
/* EOF */
|
|
@ -51,13 +51,13 @@ WinMain(HINSTANCE hInst,
|
||||||
if (!LoadString(hInstance,
|
if (!LoadString(hInstance,
|
||||||
IDS_CAPTION,
|
IDS_CAPTION,
|
||||||
szCaption,
|
szCaption,
|
||||||
256))
|
(sizeof szCaption / sizeof szCaption[0])))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (!LoadString(hInstance,
|
if (!LoadString(hInstance,
|
||||||
IDS_TEXT,
|
IDS_TEXT,
|
||||||
szText,
|
szText,
|
||||||
256))
|
(sizeof szText / sizeof szText[0])))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
MessageBox(NULL,
|
MessageBox(NULL,
|
||||||
|
|
|
@ -20,5 +20,6 @@ IDI_MAIN ICON "res/reactos.ico"
|
||||||
#include "Cz.rc"
|
#include "Cz.rc"
|
||||||
#include "De.rc"
|
#include "De.rc"
|
||||||
#include "Sv.rc"
|
#include "Sv.rc"
|
||||||
|
#include "It.rc"
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Reference in a new issue