1 /*
2 * Clock ( Simplified and Traditional Chinese Language Support)
3 *
4 * Copyright 2002 liuspider <liuspider@yahoo.com>
5 * Copyright 2008 Hongbo Ni <hongbo.at.njstar.com>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22 #include "clock_res.h"
23
24 /* Chinese text is encoded in UTF-8 */
25 #pragma code_page(65001)
26
27 LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
28
29 MAIN_MENU MENU
30 {
31 POPUP "属性(&P)" {
32 MENUITEM "模拟时钟(&L)", IDM_ANALOG
33 MENUITEM "数字时钟(&T)", IDM_DIGITAL
34 MENUITEM SEPARATOR
35 MENUITEM "字体(&F)...", IDM_FONT
36 MENUITEM SEPARATOR
37 MENUITEM "无标题栏(&W)", IDM_NOTITLE
38 MENUITEM SEPARATOR
39 MENUITEM "秒(&S)", IDM_SECONDS
40 MENUITEM "日期(&D)", IDM_DATE
41 MENUITEM SEPARATOR
42 MENUITEM "总是在最前面(&A)", IDM_ONTOP
43 }
44 POPUP "资料信息(&O)" {
45 MENUITEM "用户许可协议(&L)...", IDM_LICENSE
46 MENUITEM "责任无关(&N)...", IDM_NOWARRANTY
47 MENUITEM "关于 Wine(&A)...", IDM_ABOUT
48 }
49 }
50
51 STRINGTABLE DISCARDABLE
52 {
53 IDS_CLOCK, "时钟"
54 }
55
56 LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
57
58 MAIN_MENU MENU
59 {
60 POPUP "屬性(&P)" {
61 MENUITEM "模擬時鐘(&L)", IDM_ANALOG
62 MENUITEM "數字時鐘(&T)", IDM_DIGITAL
63 MENUITEM SEPARATOR
64 MENUITEM "字型(&F)...", IDM_FONT
65 MENUITEM SEPARATOR
66 MENUITEM "無標題欄(&W)", IDM_NOTITLE
67 MENUITEM SEPARATOR
68 MENUITEM "秒(&S)", IDM_SECONDS
69 MENUITEM "日期(&D)", IDM_DATE
70 MENUITEM SEPARATOR
71 MENUITEM "總是在最上面(&A)", IDM_ONTOP
72 }
73 POPUP "資料資訊(&O)" {
74 MENUITEM "用戶許可協議(&L)...", IDM_LICENSE
75 MENUITEM "責任無關(&N)...", IDM_NOWARRANTY
76 MENUITEM "關於 Wine(&A)...", IDM_ABOUT
77 }
78 }
79
80 STRINGTABLE DISCARDABLE
81 {
82 IDS_CLOCK, "時鐘"
83 }
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.