Source code of Windows XP (NT5)
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.
|
|
#include "windows.h" #include "clock.h"
#include "font.dlg"
Clock MENU PRELOAD DISCARDABLE #ifdef JAPAN BEGIN POPUP "�ݒ�(&S)" BEGIN MENUITEM "�A�i���O�\��(&A)", IDM_ANALOG MENUITEM "�f�W�^���\��(&D)", IDM_DIGITAL MENUITEM SEPARATOR MENUITEM "�f�W�^�����v�̃t�H���g�̎w��(&F)...", IDM_SETFONT MENUITEM SEPARATOR MENUITEM "�O���j�b�W�W����(&G)", IDM_UTC MENUITEM "�^�C�g���o�[�Ȃ�(&N)", IDM_NOTITLE MENUITEM SEPARATOR MENUITEM "�b���\��(&S)" IDM_SECONDS MENUITEM "���t���\��(&T)" IDM_DATE MENUITEM SEPARATOR MENUITEM "�o�[�W��������(&B)...", IDM_ABOUT END END #else BEGIN POPUP "&Settings" BEGIN MENUITEM "&Analog", IDM_ANALOG MENUITEM "&Digital", IDM_DIGITAL MENUITEM SEPARATOR MENUITEM "Set &Font...", IDM_SETFONT MENUITEM SEPARATOR MENUITEM "&GMT", IDM_UTC MENUITEM "&No Title", IDM_NOTITLE MENUITEM SEPARATOR MENUITEM "&Seconds" IDM_SECONDS MENUITEM "Da&te" IDM_DATE MENUITEM SEPARATOR MENUITEM "A&bout Clock...", IDM_ABOUT END END #endif
cckk ICON PRELOAD DISCARDABLE clock.ico
STRINGTABLE PRELOAD DISCARDABLE BEGIN /* Attention localizers! Only the following lines need to be localized! */
#ifdef JAPAN IDS_APPNAME, "���v" /* Note: We can not split the following line into two because it is used in a hardsysmodal dialogbox. */ IDS_TOOMANY, "���v�ɕK�v�ȃ^�C�}�[���g�p�ł��܂����B�ق��̃A�v���P�[�V�������I�����Ă����A���蒼���Ă��������B" IDS_FONTFILE, "arial" /* File containing default font. */ IDS_TOPMOST, "�˂Ɏ��O�ɕ\��(&T)" #else IDS_APPNAME, "Clock" /* Note: We can not split the following line into two because it is used in a hardsysmodal dialogbox. */ IDS_TOOMANY, "Not enough timing resources for Clock. Close other applications and try again." IDS_FONTFILE, "uclucida" /* File containing default font. */ IDS_TOPMOST, "Always on &Top" #endif
/* DO NOT LOCALIZE THESE! Below: Names of the keys in the file "win.ini" that contain the international time and date settings */
IDS_FONTCHOICE "sFont" #ifdef JAPAN IDS_INIFILE, "winclock.ini" #else IDS_INIFILE, "clock.ini" #endif
IDS_USNAME, "Clock"
/* End of non-localized strings. */ END
#include <ntverp.h>
#define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Clock Applet" #define VER_INTERNALNAME_STR "clock\0" #define VER_ORIGINALFILENAME_STR "CLOCK.EXE"
#include "common.ver"
|