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