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