1/* 2 * MPR dll (Chinese Resources) 3 * 4 * Copyright (C) 2004 Juan Lang 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 * TRANSLATORS: Copyright 2008 Hongbo Ni <hongbo@njstar.com> 21 * Copyright 2021 Chan Chilung <eason066@gmail.com> 22 */ 23 24/* Chinese text is encoded in UTF-8 */ 25#pragma code_page(65001) 26 27LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED 28 29STRINGTABLE 30{ 31 IDS_ENTIRENETWORK "整个网络" 32} 33 34IDD_PROXYDLG DIALOGEX 36, 24, 228, 145 35STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 36CAPTION "输入网络密码" 37FONT 9, "宋体" 38{ 39 LTEXT "请输入用户名和密码:", IDC_EXPLAIN, 6, 6, 150, 18 40 LTEXT "代理", -1, 6, 26, 60, 10 41/* LTEXT "Realm", -1, 6, 46, 60, 10 */ 42 LTEXT "用户名", -1, 6, 66, 60, 10 43 LTEXT "密码", -1, 6, 86, 60, 10 44 LTEXT "", IDC_PROXY, 70, 26, 150, 14, 0 45 LTEXT "", IDC_REALM, 70, 46, 150, 14, 0 46 EDITTEXT IDC_USERNAME, 70, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 47 EDITTEXT IDC_PASSWORD, 70, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 48 CHECKBOX "保存密码(不安全)(&S)", IDC_SAVEPASSWORD, 49 70, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 50 DEFPUSHBUTTON "确定", IDOK, 114, 126, 50, 14, WS_GROUP | WS_TABSTOP 51 PUSHBUTTON "取消", IDCANCEL, 170, 126, 50, 14, WS_GROUP | WS_TABSTOP 52} 53 54LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL 55 56STRINGTABLE 57{ 58 IDS_ENTIRENETWORK "整個網路" 59} 60 61IDD_PROXYDLG DIALOGEX 36, 24, 228, 145 62STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 63CAPTION "輸入網路密碼" 64FONT 9, "新細明體" 65{ 66 LTEXT "請輸入使用者名稱和密碼:", IDC_EXPLAIN, 6, 6, 150, 18 67 LTEXT "代理伺服器", -1, 6, 26, 60, 10 68/* LTEXT "Realm", -1, 6, 46, 60, 10 */ 69 LTEXT "使用者", -1, 6, 66, 60, 10 70 LTEXT "密碼", -1, 6, 86, 60, 10 71 LTEXT "", IDC_PROXY, 70, 26, 150, 14, 0 72 LTEXT "", IDC_REALM, 70, 46, 150, 14, 0 73 EDITTEXT IDC_USERNAME, 70, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 74 EDITTEXT IDC_PASSWORD, 70, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 75 CHECKBOX "儲存密碼(不安全)(&S)", IDC_SAVEPASSWORD, 76 70, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 77 PUSHBUTTON "確定", IDOK, 114, 126, 50, 14, WS_GROUP | WS_TABSTOP 78 PUSHBUTTON "取消", IDCANCEL, 170, 126, 50, 14, WS_GROUP | WS_TABSTOP 79} 80