2 * Clock ( Simplified and Traditional Chinese Language Support)
4 * Copyright 2002 liuspider <liuspider@yahoo.com>
5 * Copyright 2008 Hongbo Ni <hongbo.at.njstar.com>
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.
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.
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
22 /* Chinese text is encoded in UTF-8 */
23 #pragma code_page(65001)
25 LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
30 MENUITEM "模拟时钟(&L)", IDM_ANALOG
31 MENUITEM "数字时钟(&T)", IDM_DIGITAL
33 MENUITEM "字体(&F)...", IDM_FONT
35 MENUITEM "无标题栏(&W)", IDM_NOTITLE
37 MENUITEM "秒(&S)", IDM_SECONDS
38 MENUITEM "日期(&D)", IDM_DATE
40 MENUITEM "总是在最前面(&A)", IDM_ONTOP
43 MENUITEM "用户许可协议(&L)...", IDM_LICENSE
44 MENUITEM "责任无关(&N)...", IDM_NOWARRANTY
45 MENUITEM "关于 Wine(&A)...", IDM_ABOUT
49 STRINGTABLE DISCARDABLE
54 LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
59 MENUITEM "模擬時鐘(&L)", IDM_ANALOG
60 MENUITEM "數字時鐘(&T)", IDM_DIGITAL
62 MENUITEM "字型(&F)...", IDM_FONT
64 MENUITEM "無標題欄(&W)", IDM_NOTITLE
66 MENUITEM "秒(&S)", IDM_SECONDS
67 MENUITEM "日期(&D)", IDM_DATE
69 MENUITEM "總是在最上面(&A)", IDM_ONTOP
72 MENUITEM "用戶許可協議(&L)...", IDM_LICENSE
73 MENUITEM "責任無關(&N)...", IDM_NOWARRANTY
74 MENUITEM "關於 Wine(&A)...", IDM_ABOUT
78 STRINGTABLE DISCARDABLE
83 #pragma code_page(default)