1/* 2 * Help Viewer 3 * 4 * Copyright 2009 Aurimas Fišeras <aurimas@gmail.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/* UTF-8 */ 22#pragma code_page(65001) 23 24LANGUAGE LANG_LITHUANIAN, SUBLANG_NEUTRAL 25 26MAIN_MENU MENU 27{ 28 POPUP "&Failas" { 29 MENUITEM "&Atverti", MNID_FILE_OPEN 30 MENUITEM SEPARATOR 31 MENUITEM "&Spausdinti", MNID_FILE_PRINT 32 MENUITEM "Spaus&dintuvo nuostatos...", MNID_FILE_SETUP 33 MENUITEM SEPARATOR 34 MENUITEM "Iš&eiti", MNID_FILE_EXIT 35 } 36 POPUP "&Taisa" { 37 MENUITEM "&Kopijuoti...", MNID_EDIT_COPYDLG 38 MENUITEM SEPARATOR 39 MENUITEM "Ko&mentuoti...", MNID_EDIT_ANNOTATE 40 } 41 POPUP "&Adresynas" { 42 MENUITEM "&Apibrėžti...", MNID_BKMK_DEFINE 43 } 44 POPUP "&Parinktys" { 45 MENUITEM "&Visada viršuje", MNID_HELP_HELPTOP 46 MENUITEM "History", MNID_OPTS_HISTORY 47 POPUP "Šriftas" 48 BEGIN 49 MENUITEM "&Mažas", MNID_OPTS_FONTS_SMALL 50 MENUITEM "&Normalus", MNID_OPTS_FONTS_NORMAL 51 MENUITEM "&Didelis", MNID_OPTS_FONTS_LARGE 52 END 53 } 54 POPUP "&Žinynas" { 55 MENUITEM "Pa&galba apie žinyną", MNID_HELP_HELPON 56 MENUITEM "&Informacija...", MNID_HELP_ABOUT 57 } 58} 59 60CONTEXT_MENU MENU 61BEGIN 62 POPUP "" 63 BEGIN 64 MENUITEM "Komentuoti...", MNID_CTXT_ANNOTATE 65 MENUITEM "Kopijuoti", MNID_CTXT_COPY 66 MENUITEM "Spausdinti...", MNID_CTXT_PRINT 67 POPUP "Šriftas" 68 BEGIN 69 MENUITEM "Mažas", MNID_CTXT_FONTS_SMALL 70 MENUITEM "Normalus", MNID_CTXT_FONTS_NORMAL 71 MENUITEM "Didelis", MNID_CTXT_FONTS_LARGE 72 END 73 END 74END 75 76STRINGTABLE 77{ 78STID_WINE_HELP, "ReactOS žinynas" 79STID_WHERROR, "KLAIDA" 80STID_WARNING, "ĮSPĖJIMAS" 81STID_INFO, "Informacija" 82STID_NOT_IMPLEMENTED, "Nerealizuota" 83STID_HLPFILE_ERROR_s, "Klaida skaitant žinyno failą „%s“" 84STID_INDEX, "&Rodyklė" 85STID_CONTENTS, "Santrauka" 86STID_BACK, "&Atgal" 87STID_ALL_FILES, "Visi failai (*.*)" 88STID_HELP_FILES_HLP, "Žinyno failai (*.hlp)" 89STID_FILE_NOT_FOUND_s "Nepavyko rasti „%s“. Ar norite rasti šį failą patys?" 90STID_NO_RICHEDIT "Nepavyko rasti RichEdit realizacijos... Nutraukiama" 91STID_PSH_INDEX, "Žinyno temos: " 92} 93 94IDD_INDEX DIALOGEX 0, 0, 200, 190 95STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 96FONT 8, "MS Shell Dlg" 97CAPTION "Indeksas" 98{ 99 LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER 100} 101 102IDD_SEARCH DIALOGEX 0, 0, 200, 190 103STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 104FONT 8, "MS Shell Dlg" 105CAPTION "Paieška" 106{ 107 LTEXT "Dar nerealizuota", -1, 10, 10, 180, 150 108} 109