1/* 2 * Copyright 2005 Milko Krachounov 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_BULGARIAN, SUBLANG_DEFAULT 20 21STRINGTABLE 22{ 23 IDS_STATUS_DONE "Done" 24 IDS_STATUS_DOWNLOADINGFROM "Downloading from %s..." 25} 26 27STRINGTABLE 28{ 29 IDS_HTMLDOCUMENT "HTML Document" 30} 31 32IDD_HYPERLINK DIALOGEX 0, 0, 255, 65 33STYLE DS_SHELLFONT | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 34CAPTION "Hyperlink" 35FONT 8, "MS Shell Dlg" 36{ 37 GROUPBOX "Hyperlink Information", -1, 5, 5, 190, 55 38 LTEXT "&Type:", -1, 10, 22, 24, 10 39 COMBOBOX IDC_TYPE, 35, 20, 45, 100, WS_TABSTOP | WS_GROUP | WS_VSCROLL | CBS_DROPDOWNLIST | CBS_HASSTRINGS 40 LTEXT "&URL:", -1, 10, 42, 24, 10 41 EDITTEXT IDC_URL, 35, 40, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_GROUP | WS_TABSTOP 42 PUSHBUTTON "OK", IDOK, 200, 10, 50, 14, BS_DEFPUSHBUTTON | WS_GROUP | WS_TABSTOP 43 PUSHBUTTON "Cancel", IDCANCEL, 200, 28, 50, 14, WS_GROUP | WS_TABSTOP 44} 45 46ID_PROMPT_DIALOG DIALOGEX 0, 0, 200, 90 47STYLE DS_SHELLFONT | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 48FONT 8, "MS Shell Dlg" 49{ 50 LTEXT "", ID_PROMPT_PROMPT, 10, 10, 180, 30 51 EDITTEXT ID_PROMPT_EDIT, 10, 45, 180, 14, ES_AUTOHSCROLL | WS_BORDER | WS_GROUP | WS_TABSTOP 52 PUSHBUTTON "OK", IDOK, 40, 65, 50, 15, BS_DEFPUSHBUTTON | WS_GROUP | WS_TABSTOP 53 PUSHBUTTON "Cancel", IDCANCEL, 110, 65, 50, 15, WS_GROUP | WS_TABSTOP 54} 55