1/* 2 * HTML Help resources 3 * Hungarian Language Support 4 * 5 * Copyright 2006 Andras Kovacs 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public 9 * License as published by the Free Software Foundation; either 10 * version 2.1 of the License, or (at your option) any later version. 11 * 12 * This library is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this library; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 20 */ 21 22LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT 23 24STRINGTABLE 25BEGIN 26#ifdef __REACTOS__ 27 IDS_DEFTITLE "HTML Help" 28#endif 29 IDS_CONTENTS "&Tartalom" 30 IDS_INDEX "I&ndex" 31 IDS_SEARCH "&Keresés" 32 IDS_FAVORITES "Kedven&cek" 33 34 IDS_HIDETABS "Hide &Tabs" 35 IDS_SHOWTABS "Show &Tabs" 36END 37 38STRINGTABLE 39BEGIN 40 IDTB_EXPAND "Megjelenítés" 41 IDTB_CONTRACT "Elrejtés" 42 IDTB_STOP "Megállítás" 43 IDTB_REFRESH "Frissítés" 44 IDTB_BACK "Vissza" 45 IDTB_HOME "Kezdőlap" 46 IDTB_SYNC "Szink." 47 IDTB_PRINT "Nyomtatás" 48 IDTB_OPTIONS "Opciók" 49 IDTB_FORWARD "Előre" 50END 51 52MENU_POPUP MENU 53{ 54 POPUP "" /* Options */ 55 { 56 MENUITEM "", IDTB_EXPAND 57 MENUITEM "S&ync", IDTB_SYNC 58 MENUITEM "&Back", IDTB_BACK 59 MENUITEM "&Forward", IDTB_FORWARD 60 MENUITEM "&Home", IDTB_HOME 61 MENUITEM "&Stop", IDTB_STOP 62 MENUITEM "&Refresh", IDTB_REFRESH 63 MENUITEM "&Print...", IDTB_PRINT 64 } 65} 66 67MENU_WEBBROWSER MENU 68{ 69 POPUP "" 70 { 71 MENUITEM "&Back", IDTB_BACK 72 MENUITEM "&Forward", IDTB_FORWARD 73 MENUITEM SEPARATOR 74 MENUITEM "Select &All", MIID_SELECTALL 75 MENUITEM SEPARATOR 76 MENUITEM "&View Source", MIID_VIEWSOURCE 77 MENUITEM SEPARATOR 78 MENUITEM "&Print...", IDTB_PRINT 79 MENUITEM "&Refresh", IDTB_REFRESH 80 MENUITEM SEPARATOR 81 MENUITEM "Proper&ties", MIID_PROPERTIES 82 } 83 POPUP "" 84 { 85 MENUITEM "Cu&t", MIID_CUT 86 MENUITEM "&Copy", MIID_COPY 87 MENUITEM "Paste", MIID_PASTE 88 MENUITEM "Select &All", MIID_SELECTALL 89 MENUITEM "&Print", IDTB_PRINT 90 } 91} 92