1/* 2 * Copyright 2007 Daniel Nylander 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 */ 18 19LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL 20 21STRINGTABLE 22{ 23 IDS_LANCONNECTION "LAN Connection" 24 IDS_CERT_CA_INVALID "The certificate is issued by an unknown or untrusted publisher." 25 IDS_CERT_DATE_INVALID "The date on the certificate is invalid." 26 IDS_CERT_CN_INVALID "The name on the certificate does not match the site." 27 IDS_CERT_ERRORS "There is at least one unspecified security problem with this certificate." 28} 29 30IDD_PROXYDLG DIALOGEX 36, 24, 220, 146 31STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 32CAPTION "Ange nätverkslösenord" 33FONT 8, "MS Shell Dlg" 34{ 35 LTEXT "Ange ditt användarnamn och lösenord:", -1, 6, 6, 210, 15 36 LTEXT "Proxy", -1, 6, 26, 50, 18 37 LTEXT "Domän", -1, 6, 46, 50, 18 38 LTEXT "Användare", -1, 6, 66, 50, 18 39 LTEXT "Lösenord", -1, 6, 86, 50, 18 40 LTEXT "", IDC_PROXY, 60, 26, 150, 14, 0 41 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0 42 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 43 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 44 CHECKBOX "&Spara detta lösenord (osäkert)", IDC_SAVEPASSWORD, 45 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 46 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 47 PUSHBUTTON "Avbryt", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP 48} 49 50IDD_AUTHDLG DIALOGEX 36, 24, 220, 146 51STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 52CAPTION "Autentisering krävs" 53FONT 8, "MS Shell Dlg" 54{ 55 LTEXT "Ange ditt användarnamn och lösenord:", -1, 6, 6, 210, 15 56 LTEXT "Server", -1, 6, 26, 50, 18 57 LTEXT "Domän", -1, 6, 46, 50, 18 58 LTEXT "Användare", -1, 6, 66, 50, 18 59 LTEXT "Lösenord", -1, 6, 86, 50, 18 60 LTEXT "", IDC_SERVER, 60, 26, 150, 14, 0 61 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0 62 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 63 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 64 CHECKBOX "&Spara detta lösenord (osäkert)", IDC_SAVEPASSWORD, 65 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 66 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 67 PUSHBUTTON "Avbryt", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP 68} 69 70IDD_INVCERTDLG DIALOGEX 3, 24, 250, 86 71STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 72CAPTION "Säkerhetsvarning" 73FONT 8, "MS Shell Dlg" 74{ 75 LTEXT "Ett problem upptäcktes med certifikatet för denna site.", -1, 40, 6, 200, 20 76 LTEXT "", IDC_CERT_ERROR, 40, 26, 200, 20 77 LTEXT "Vill du fortsätta ändå?", -1, 40, 46, 200, 20 78 PUSHBUTTON "Ja", IDOK, 40, 66, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 79 PUSHBUTTON "Nej", IDCANCEL, 100, 66, 56, 14, WS_GROUP | WS_TABSTOP 80} 81