mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.5 KiB
84 lines
1.5 KiB
/*++
|
|
|
|
Copyright (c) 1994-1995, Microsoft Corporation All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
internat.rc
|
|
|
|
Abstract:
|
|
|
|
This module contains the resource descriptions for the Multilingual
|
|
Language Indicator application.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
|
|
//
|
|
// Include Files.
|
|
//
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
|
|
//
|
|
// Icons.
|
|
//
|
|
|
|
IDI_INTERNAT ICON DISCARDABLE "internat.ico"
|
|
|
|
|
|
|
|
|
|
//
|
|
// String Tables.
|
|
//
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_UNKNOWN "Unknown"
|
|
IDS_PROPERTIES "P&roperties"
|
|
IDS_WHATSTHIS "&What's This?"
|
|
IDS_HELPFINDER "&Help Finder..."
|
|
IDS_CPL_KEYBOARD "RunDll32.exe shell32.dll,Control_RunDLL main.cpl,keyboard,1"
|
|
IDS_PREVIOUS "Application is already running"
|
|
IDS_APPNAME "Indicator"
|
|
#ifdef FE_IME
|
|
IDS_IMECLOSE "Close IME"
|
|
IDS_IMEOPEN "Open IME"
|
|
IDS_SOFTKBDOFF "Close Soft Keyboard"
|
|
IDS_SOFTKBDON "Open Soft Keyboard"
|
|
IDS_IMESHOWSTATUS "Show IME Status"
|
|
IDS_CONFIGUREIME "Configure IME..."
|
|
#endif
|
|
END
|
|
|
|
|
|
|
|
|
|
//
|
|
// Version Info.
|
|
//
|
|
|
|
#ifdef WINNT
|
|
#include <winver.h>
|
|
#include <ntverp.h>
|
|
#else
|
|
#include <version.h>
|
|
#endif
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Keyboard Language Indicator Applet"
|
|
#define VER_INTERNALNAME_STR "INTERNAT"
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1995"
|
|
#define VER_ORIGINALFILENAME_STR "INTERNAT.EXE"
|
|
|
|
#include <common.ver>
|
|
|
|
|