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.

103 lines
3.0 KiB

  1. #include "windows.h"
  2. #include "clock.h"
  3. #include "font.dlg"
  4. Clock MENU PRELOAD DISCARDABLE
  5. #ifdef JAPAN
  6. BEGIN
  7. POPUP "�ݒ�(&S)"
  8. BEGIN
  9. MENUITEM "�A�i���O�\��(&A)", IDM_ANALOG
  10. MENUITEM "�f�W�^���\��(&D)", IDM_DIGITAL
  11. MENUITEM SEPARATOR
  12. MENUITEM "�f�W�^�����v�̃t�H���g�̎w��(&F)...", IDM_SETFONT
  13. MENUITEM SEPARATOR
  14. MENUITEM "�O���j�b�W�W����(&G)", IDM_UTC
  15. MENUITEM "�^�C�g���o�[�Ȃ�(&N)", IDM_NOTITLE
  16. MENUITEM SEPARATOR
  17. MENUITEM "�b���\��(&S)" IDM_SECONDS
  18. MENUITEM "���t���\��(&T)" IDM_DATE
  19. MENUITEM SEPARATOR
  20. MENUITEM "�o�[�W��������(&B)...", IDM_ABOUT
  21. END
  22. END
  23. #else
  24. BEGIN
  25. POPUP "&Settings"
  26. BEGIN
  27. MENUITEM "&Analog", IDM_ANALOG
  28. MENUITEM "&Digital", IDM_DIGITAL
  29. MENUITEM SEPARATOR
  30. MENUITEM "Set &Font...", IDM_SETFONT
  31. MENUITEM SEPARATOR
  32. MENUITEM "&GMT", IDM_UTC
  33. MENUITEM "&No Title", IDM_NOTITLE
  34. MENUITEM SEPARATOR
  35. MENUITEM "&Seconds" IDM_SECONDS
  36. MENUITEM "Da&te" IDM_DATE
  37. MENUITEM SEPARATOR
  38. MENUITEM "A&bout Clock...", IDM_ABOUT
  39. END
  40. END
  41. #endif
  42. cckk ICON PRELOAD DISCARDABLE clock.ico
  43. STRINGTABLE PRELOAD DISCARDABLE
  44. BEGIN
  45. /*
  46. Attention localizers! Only the following lines need to be
  47. localized!
  48. */
  49. #ifdef JAPAN
  50. IDS_APPNAME, "���v"
  51. /*
  52. Note: We can not split the following line into two because it is used in a
  53. hardsysmodal dialogbox.
  54. */
  55. IDS_TOOMANY, "���v�ɕK�v�ȃ^�C�}�[���g�p�ł��܂����B�ق��̃A�v���P�[�V�������I�����Ă����A���蒼���Ă��������B"
  56. IDS_FONTFILE, "arial" /* File containing default font. */
  57. IDS_TOPMOST, "�‚˂Ɏ��O�ɕ\��(&T)"
  58. #else
  59. IDS_APPNAME, "Clock"
  60. /*
  61. Note: We can not split the following line into two because it is used in a
  62. hardsysmodal dialogbox.
  63. */
  64. IDS_TOOMANY, "Not enough timing resources for Clock. Close other applications and try again."
  65. IDS_FONTFILE, "uclucida" /* File containing default font. */
  66. IDS_TOPMOST, "Always on &Top"
  67. #endif
  68. /*
  69. DO NOT LOCALIZE THESE!
  70. Below: Names of the keys in the file "win.ini" that
  71. contain the international time and date settings
  72. */
  73. IDS_FONTCHOICE "sFont"
  74. #ifdef JAPAN
  75. IDS_INIFILE, "winclock.ini"
  76. #else
  77. IDS_INIFILE, "clock.ini"
  78. #endif
  79. IDS_USNAME, "Clock"
  80. /*
  81. End of non-localized strings.
  82. */
  83. END
  84. #include <ntverp.h>
  85. #define VER_FILETYPE VFT_APP
  86. #define VER_FILESUBTYPE VFT2_UNKNOWN
  87. #define VER_FILEDESCRIPTION_STR "Clock Applet"
  88. #define VER_INTERNALNAME_STR "clock\0"
  89. #define VER_ORIGINALFILENAME_STR "CLOCK.EXE"
  90. #include "common.ver"