1/* 2 * HTML Help resources 3 * 4 * Copyright 2005 James Hawkins 5 * Copyright 2010 Claudia Cotună 6 * Michael Stefaniuc 7 * Ștefan Fulea 8 * 9 * This library is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU Lesser General Public 11 * License as published by the Free Software Foundation; either 12 * version 2.1 of the License, or (at your option) any later version. 13 * 14 * This library is distributed in the hope that it will be useful, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 * Lesser General Public License for more details. 18 * 19 * You should have received a copy of the GNU Lesser General Public 20 * License along with this library; if not, write to the Free Software 21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 22 */ 23 24LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL 25 26#pragma code_page(65001) 27 28STRINGTABLE 29BEGIN 30 IDS_CONTENTS "C&uprins" 31 IDS_INDEX "In&dex" 32 IDS_SEARCH "&Caută" 33 IDS_FAVORITES "F&avorite" 34 35 IDS_HIDETABS "Ascunde ta&buri" 36 IDS_SHOWTABS "Afișează ta&buri" 37END 38 39STRINGTABLE 40BEGIN 41 IDTB_EXPAND "Afișează" 42 IDTB_CONTRACT "Ascunde" 43 IDTB_STOP "Oprește" 44 IDTB_REFRESH "Actualizează" 45 IDTB_BACK "Înapoi" 46 IDTB_HOME "Acasă" 47 IDTB_SYNC "Sincronizează" 48 IDTB_PRINT "Imprimă" 49 IDTB_OPTIONS "Opțiuni" 50 IDTB_FORWARD "Înainte" 51END 52 53MENU_POPUP MENU 54{ 55 POPUP "" /* Options */ 56 { 57 MENUITEM "", IDTB_EXPAND 58 MENUITEM "Sinc&ronizează", IDTB_SYNC 59 MENUITEM "Înap&oi", IDTB_BACK 60 MENUITEM "În&ainte", IDTB_FORWARD 61 MENUITEM "A&casă", IDTB_HOME 62 MENUITEM "Opr&ește", IDTB_STOP 63 MENUITEM "Împrospătea&ză", IDTB_REFRESH 64 MENUITEM "I&mprimare…", IDTB_PRINT 65 } 66} 67 68MENU_WEBBROWSER MENU 69{ 70 POPUP "" 71 { 72 MENUITEM "Înap&oi", IDTB_BACK 73 MENUITEM "În&ainte", IDTB_FORWARD 74 MENUITEM SEPARATOR 75 MENUITEM "S&electează tot", MIID_SELECTALL 76 MENUITEM SEPARATOR 77 MENUITEM "Afișează s&ursa paginii", MIID_VIEWSOURCE 78 MENUITEM SEPARATOR 79 MENUITEM "I&mprimare…", IDTB_PRINT 80 MENUITEM "Împrospătea&ză", IDTB_REFRESH 81 MENUITEM SEPARATOR 82 MENUITEM "&Proprietăți", MIID_PROPERTIES 83 } 84 POPUP "" 85 { 86 MENUITEM "&Decupează", MIID_CUT 87 MENUITEM "&Copiază", MIID_COPY 88 MENUITEM "&Lipește", MIID_PASTE 89 MENUITEM "S&electează tot", MIID_SELECTALL 90 MENUITEM "I&mprimă", IDTB_PRINT 91 } 92} 93