1/* 2 * Wininet Resources - Esperanto Language Support 3 * 4 * Copyright 2006 Antonio Codazzi 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 21LANGUAGE LANG_ESPERANTO, SUBLANG_DEFAULT 22 23STRINGTABLE 24{ 25 IDS_LANCONNECTION "LAN Connection" 26 IDS_CERT_CA_INVALID "The certificate is issued by an unknown or untrusted publisher." 27 IDS_CERT_DATE_INVALID "The date on the certificate is invalid." 28 IDS_CERT_CN_INVALID "The name on the certificate does not match the site." 29 IDS_CERT_ERRORS "There is at least one unspecified security problem with this certificate." 30} 31 32IDD_PROXYDLG DIALOGEX 36, 24, 220, 146 33STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 34CAPTION "Enmetu Retan Pasvorton" 35FONT 8, "MS Shell Dlg" 36{ 37 LTEXT "Enmetu uzantonomon kaj pasvorton:", -1, 6, 6, 210, 15 38 LTEXT "Proxy", -1, 6, 26, 50, 18 39 LTEXT "Realm", -1, 6, 46, 50, 18 40 LTEXT "Uzanto", -1, 6, 66, 50, 18 41 LTEXT "Pasvorto", -1, 6, 86, 50, 18 42 LTEXT "", IDC_PROXY, 60, 26, 150, 14, 0 43 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0 44 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 45 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 46 CHECKBOX "&Storu pasvorton ( RISKE! )", IDC_SAVEPASSWORD, 47 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 48 PUSHBUTTON "Bone", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 49 PUSHBUTTON "Rezigni", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP 50} 51 52IDD_AUTHDLG DIALOGEX 36, 24, 220, 146 53STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 54CAPTION "Authentication Required" 55FONT 8, "MS Shell Dlg" 56{ 57 LTEXT "Please enter your username and password:", -1, 6, 6, 210, 15 58 LTEXT "Server", -1, 6, 26, 50, 18 59 LTEXT "Realm", -1, 6, 46, 50, 18 60 LTEXT "User", -1, 6, 66, 50, 18 61 LTEXT "Password", -1, 6, 86, 50, 18 62 LTEXT "", IDC_SERVER, 60, 26, 150, 14, 0 63 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0 64 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 65 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 66 CHECKBOX "&Save this password (insecure)", IDC_SAVEPASSWORD, 67 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 68 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 69 PUSHBUTTON "Cancel", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP 70} 71 72IDD_INVCERTDLG DIALOGEX 3, 24, 250, 86 73STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 74CAPTION "Security Warning" 75FONT 8, "MS Shell Dlg" 76{ 77 LTEXT "There is a problem with the certificate for this site.", -1, 40, 6, 200, 20 78 LTEXT "", IDC_CERT_ERROR, 40, 26, 200, 20 79 LTEXT "Do you want to continue anyway?", -1, 40, 46, 200, 20 80 PUSHBUTTON "Yes", IDOK, 40, 66, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 81 PUSHBUTTON "No", IDCANCEL, 100, 66, 56, 14, WS_GROUP | WS_TABSTOP 82} 83