64 lines
2.5 KiB
Plaintext
64 lines
2.5 KiB
Plaintext
/*:
|
|
@*: This file is organized into two main blocks. The first block contains
|
|
@*: code (non-string) sections which are specific to languages. Please put
|
|
@*: the code sections in the correct language.
|
|
@*: The second block is reserved for [Strings] which localizers will be
|
|
@*: working with. It is further divided using "#if LANGUAGE ==" for language
|
|
@*: specific strings. For strings which are common to all languages
|
|
@*: place outside the #ifs.
|
|
@*:
|
|
@*: This file is first precompiled with LANGUAGE_ID
|
|
@*: set to the language (see inf\win4\inf\makefile.inc for details).
|
|
@*: For example, for usa builds, the sections under #if LANGUAGE == 0x409
|
|
@*: will appear.
|
|
@*:
|
|
@*: Important: To support locstudio, this file contains only ONE [Strings] section.
|
|
@*:
|
|
@*/
|
|
|
|
#if LANGUAGE_ID != 0x804 && LANGUAGE_ID != 0x404 && LANGUAGE_ID != 0x411 && LANGUAGE_ID != 0x412
|
|
// This section is for non-FE (chs,cht,jpn,kor) builds. So english, german, ...
|
|
#elif LANGUAGE_ID == 0x804
|
|
//CHS specific sections
|
|
#elif LANGUAGE_ID == 0x404
|
|
//CHT specific sections
|
|
#elif LANGUAGE_ID == 0x411
|
|
//JPN specific sections
|
|
#elif LANGUAGE_ID == 0x412
|
|
//KOR specific sections
|
|
#endif
|
|
|
|
// String section below for localizers
|
|
[Strings]
|
|
; Unlocalizable strings
|
|
REG_WSH = "Software\Microsoft\Windows Script Host"
|
|
REG_APPROVE = "Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved"
|
|
REG_UNINSTALL = "Software\Microsoft\Windows\CurrentVersion\Uninstall\WindowsScriptHost"
|
|
CLSID_WSHEXT = "{60254CA5-953B-11CF-8C96-00AA00B8708C}"
|
|
|
|
; Localizable strings
|
|
DISP_WSH = "Microsoft Windows Script Host"
|
|
DESC_WSH = "Windows Script Host"
|
|
DESC_DISKS = "Windows Script Host Files"
|
|
TIPS_WSH = "Write scripts to help automate tasks in Windows"
|
|
|
|
DESC_DOTWSH = "Windows Script Host Settings File"
|
|
DESC_DOTVBS = "VBScript Script File"
|
|
DESC_DOTVBE = "VBScript Encoded Script File"
|
|
DESC_DOTJS = "JScript Script File"
|
|
DESC_DOTJSE = "JScript Encoded Script File"
|
|
DESC_DOTWS = "Windows Script File"
|
|
DESC_WSHEXT = "Shell extensions for Windows Script Host"
|
|
|
|
DESC_WSHOMLIB = "Microsoft Windows Script Host Object Model"
|
|
DESC_WSHSHELL = "Windows Script Host Shell Object"
|
|
DESC_WSHNETWORK = "Windows Script Host Network Object"
|
|
|
|
MENU_OPEN = "&Open"
|
|
MENU_CONOPEN = "Open &with Command Prompt"
|
|
MENU_DOSOPEN = "Open &with MS-DOS Prompt"
|
|
MENU_EDIT = "&Edit"
|
|
MENU_PRINT = "&Print"
|
|
|
|
FILE_WSHEXT = "wshext.dll"
|
|
FILE_SCROBJ = "scrobj.dll" |