~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/programs/winemine/Zh.rc

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * WineMine (Simplified and Traditional Chinese Resource)
  3  *
  4  * Copyright 2008 Hongbo Ni <hongbo.at.njstar.com>
  5  *
  6  * This library is free software; you can redistribute it and/or
  7  * modify it under the terms of the GNU Lesser General Public
  8  * License as published by the Free Software Foundation; either
  9  * version 2.1 of the License, or (at your option) any later version.
 10  *
 11  * This library is distributed in the hope that it will be useful,
 12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 14  * Lesser General Public License for more details.
 15  *
 16  * You should have received a copy of the GNU Lesser General Public
 17  * License along with this library; if not, write to the Free Software
 18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 19  */
 20 
 21 #include "resource.h"
 22 
 23 /* Chinese text is encoded in UTF-8 */
 24 #pragma code_page(65001)
 25 
 26 LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
 27 
 28 STRINGTABLE {
 29      IDS_APPNAME, "Wine地雷"
 30      IDS_NOBODY,  "无人"
 31      IDS_ABOUT,   "Copyright 2000 Joshua Thielen"
 32 }
 33 
 34 MENU_WINEMINE MENU DISCARDABLE
 35 {
 36     POPUP "选项(&O)" {
 37         MENUITEM "新游戏(&N)\tF2", IDM_NEW
 38         MENUITEM SEPARATOR
 39         MENUITEM "标出问题(&M)", IDM_MARKQ
 40         MENUITEM SEPARATOR
 41         MENUITEM "初学者(&B)", IDM_BEGINNER
 42         MENUITEM "高级(&A)", IDM_ADVANCED
 43         MENUITEM "专家(&E)", IDM_EXPERT
 44         MENUITEM "自定义(&C)", IDM_CUSTOM
 45         MENUITEM SEPARATOR
 46         MENUITEM "退出(&X)\tAlt+X", IDM_EXIT
 47     }
 48     POPUP "信息(&I)" {
 49         MENUITEM "最快时间(&F)", IDM_TIMES
 50         MENUITEM "关于(&A)", IDM_ABOUT
 51     }
 52 }
 53 
 54 DLG_TIMES DIALOG DISCARDABLE 0, 0, 160, 80
 55 STYLE  DS_MODALFRAME | DS_3DLOOK |
 56     WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
 57 CAPTION "最快时间"
 58 {
 59     GROUPBOX        "最快时间", -1,  10,  10, 140,  45
 60     LTEXT           "初学者", -1,  20,  20,  40,   8
 61     LTEXT           "高级", -1,  20,  30,  40,   8
 62     LTEXT           "专家", -1,  20,  40,  40,   8
 63     LTEXT           "999", IDC_TIME1,  70,  20,  15,   8
 64     LTEXT           "999", IDC_TIME2,  70,  30,  15,   8
 65     LTEXT           "999", IDC_TIME3,  70,  40,  15,   8
 66     LTEXT           "", IDC_NAME1,  90,  20,  55,   8
 67     LTEXT           "", IDC_NAME2,  90,  30,  55,   8
 68     LTEXT           "", IDC_NAME3,  90,  40,  55,   8
 69     DEFPUSHBUTTON   "确定", IDOK,  55,  60,  50,  15
 70 }
 71 
 72 DLG_CONGRATS DIALOG DISCARDABLE  0, 0, 160, 60
 73 STYLE  DS_MODALFRAME | DS_3DLOOK |
 74     WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
 75 CAPTION "祝贺!"
 76 {
 77     LTEXT           "请输入你的名字", -1,  10,  10, 150,  10
 78     EDITTEXT                              IDC_EDITNAME,  25,  20, 110,  12
 79     DEFPUSHBUTTON   "确定", IDOK,  60,  40,  40,  15
 80 }
 81 
 82 DLG_CUSTOM DIALOG DISCARDABLE  0, 0, 100, 100
 83 STYLE  DS_MODALFRAME | DS_3DLOOK |
 84     WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
 85 CAPTION "自定义游戏"
 86 {
 87     LTEXT           "行", -1,   5,   5,  30,  10
 88     LTEXT           "列", -1,   5,  35,  30,  10
 89     LTEXT           "地雷", -1,   5,  65,  30,  10
 90     EDITTEXT              IDC_EDITROWS,   5,  15,  20,  12, ES_NUMBER
 91     EDITTEXT              IDC_EDITCOLS,   5,  45,  20,  12, ES_NUMBER
 92     EDITTEXT             IDC_EDITMINES,   5,  75,  20,  12, ES_NUMBER
 93     DEFPUSHBUTTON   "确定", IDOK,      40,  30,  50,  15
 94     PUSHBUTTON      "取消", IDCANCEL,  40,  50,  50,  15
 95 }
 96 
 97 LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
 98 
 99 STRINGTABLE {
100      IDS_APPNAME, "Wine地雷"
101      IDS_NOBODY,  "無人"
102      IDS_ABOUT,   "Copyright 2000 Joshua Thielen"
103 }
104 
105 MENU_WINEMINE MENU DISCARDABLE
106 {
107     POPUP "選項(&O)" {
108         MENUITEM "新遊戲(&N)\tF2", IDM_NEW
109         MENUITEM SEPARATOR
110         MENUITEM "標出問題(&M)", IDM_MARKQ
111         MENUITEM SEPARATOR
112         MENUITEM "初學者(&B)", IDM_BEGINNER
113         MENUITEM "高級(&A)", IDM_ADVANCED
114         MENUITEM "專家(&E)", IDM_EXPERT
115         MENUITEM "自定義(&C)", IDM_CUSTOM
116         MENUITEM SEPARATOR
117         MENUITEM "結束(&X)\tAlt+X", IDM_EXIT
118     }
119     POPUP "資訊(&I)" {
120         MENUITEM "最快時間(&F)", IDM_TIMES
121         MENUITEM "關於(&A)", IDM_ABOUT
122     }
123 }
124 
125 DLG_TIMES DIALOG DISCARDABLE 0, 0, 160, 80
126 STYLE  DS_MODALFRAME | DS_3DLOOK |
127     WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
128 CAPTION "最快時間"
129 {
130     GROUPBOX        "最快時間", -1,  10,  10, 140,  45
131     LTEXT           "初學者", -1,  20,  20,  40,   8
132     LTEXT           "高級", -1,  20,  30,  40,   8
133     LTEXT           "專家", -1,  20,  40,  40,   8
134     LTEXT           "999", IDC_TIME1,  70,  20,  15,   8
135     LTEXT           "999", IDC_TIME2,  70,  30,  15,   8
136     LTEXT           "999", IDC_TIME3,  70,  40,  15,   8
137     LTEXT           "", IDC_NAME1,  90,  20,  55,   8
138     LTEXT           "", IDC_NAME2,  90,  30,  55,   8
139     LTEXT           "", IDC_NAME3,  90,  40,  55,   8
140     DEFPUSHBUTTON   "確定", IDOK,  55,  60,  50,  15
141 }
142 
143 DLG_CONGRATS DIALOG DISCARDABLE  0, 0, 160, 60
144 STYLE  DS_MODALFRAME | DS_3DLOOK |
145     WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
146 CAPTION "祝賀!"
147 {
148     LTEXT           "請輸入你的名字", -1,  10,  10, 150,  10
149     EDITTEXT                              IDC_EDITNAME,  25,  20, 110,  12
150     DEFPUSHBUTTON   "確定", IDOK,  60,  40,  40,  15
151 }
152 
153 DLG_CUSTOM DIALOG DISCARDABLE  0, 0, 100, 100
154 STYLE  DS_MODALFRAME | DS_3DLOOK |
155     WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
156 CAPTION "自定義遊戲"
157 {
158     LTEXT           "行", -1,   5,   5,  30,  10
159     LTEXT           "列", -1,   5,  35,  30,  10
160     LTEXT           "地雷", -1,   5,  65,  30,  10
161     EDITTEXT              IDC_EDITROWS,   5,  15,  20,  12, ES_NUMBER
162     EDITTEXT              IDC_EDITCOLS,   5,  45,  20,  12, ES_NUMBER
163     EDITTEXT             IDC_EDITMINES,   5,  75,  20,  12, ES_NUMBER
164     DEFPUSHBUTTON   "確定", IDOK,      40,  30,  50,  15
165     PUSHBUTTON      "取消", IDCANCEL,  40,  50,  50,  15
166 }

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.