1/* 2 * HTML Help resources 3 * Portuguese Language Support 4 * 5 * Copyright 2008 Ricardo Filipe 6 * Copyright 2010 Gustavo Henrique Milaré 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#pragma code_page(65001) 24 25LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL 26 27STRINGTABLE 28BEGIN 29#ifdef __REACTOS__ 30 IDS_DEFTITLE "HTML Help" 31#endif 32 IDS_CONTENTS "&Conteúdos" 33 IDS_INDEX "&Índice" 34 IDS_SEARCH "&Pesquisar" 35 IDS_FAVORITES "&Favoritos" 36END 37 38MENU_POPUP MENU 39{ 40 POPUP "" /* Options */ 41 { 42 MENUITEM "", IDTB_EXPAND 43 MENUITEM "S&incronizar", IDTB_SYNC 44 MENUITEM "&Retroceder", IDTB_BACK 45 MENUITEM "&Avançar", IDTB_FORWARD 46 MENUITEM "&Home", IDTB_HOME 47 MENUITEM "&Parar", IDTB_STOP 48 MENUITEM "A&ctualizar", IDTB_REFRESH 49 MENUITEM "&Imprimir...", IDTB_PRINT 50 } 51} 52 53MENU_WEBBROWSER MENU 54{ 55 POPUP "" 56 { 57 MENUITEM "&Retroceder", IDTB_BACK 58 MENUITEM "&Avançar", IDTB_FORWARD 59 MENUITEM SEPARATOR 60 MENUITEM "Seleccionar &tudo", MIID_SELECTALL 61 MENUITEM SEPARATOR 62 MENUITEM "&Ver código fonte", MIID_VIEWSOURCE 63 MENUITEM SEPARATOR 64 MENUITEM "&Imprimir...", IDTB_PRINT 65 MENUITEM "A&ctualizar", IDTB_REFRESH 66 MENUITEM SEPARATOR 67 MENUITEM "&Propriedades", MIID_PROPERTIES 68 } 69 POPUP "" 70 { 71 MENUITEM "Cor&tar", MIID_CUT 72 MENUITEM "&Copiar", MIID_COPY 73 MENUITEM "Co&lar", MIID_PASTE 74 MENUITEM "Seleccionar &tudo", MIID_SELECTALL 75 MENUITEM "&Imprimir", IDTB_PRINT 76 } 77} 78 79LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN 80 81STRINGTABLE 82BEGIN 83 IDTB_EXPAND "Mostrar" 84 IDTB_CONTRACT "Ocultar" 85 IDTB_STOP "Parar" 86 IDTB_REFRESH "Recarregar" 87 IDTB_BACK "Voltar" 88 IDTB_HOME "Início" 89 IDTB_SYNC "Sincronizar" 90 IDTB_PRINT "Imprimir" 91 IDTB_OPTIONS "Opções" 92 IDTB_FORWARD "Avançar" 93END 94 95LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE 96 97STRINGTABLE 98BEGIN 99 IDTB_EXPAND "Mostrar" 100 IDTB_CONTRACT "Esconder" 101 IDTB_STOP "Parar" 102 IDTB_REFRESH "Actualizar" 103 IDTB_BACK "Retroceder" 104 IDTB_HOME "Início" 105 IDTB_SYNC "Sincronizar" 106 IDTB_PRINT "Imprimir" 107 IDTB_OPTIONS "Opções" 108 IDTB_FORWARD "Avançar" 109END 110