1fa5fcacaSAndreas Haerter<?php 2fa5fcacaSAndreas Haerter 3fa5fcacaSAndreas Haerter/** 4fa5fcacaSAndreas Haerter * Brazilian Portuguese language for the "vector" Config Manager 5fa5fcacaSAndreas Haerter * 6fa5fcacaSAndreas Haerter * If your language is not/only partially translated or you found an error/typo, 7fa5fcacaSAndreas Haerter * have a look at the following files: 8*e3217ae2SAndreas Haerter * - /lib/tpl/vector/lang/<your lang>/lang.php 9*e3217ae2SAndreas Haerter * - /lib/tpl/vector/lang/<your lang>/settings.php 10fa5fcacaSAndreas Haerter * If they are not existing, copy and translate the English ones (hint: looking 11099d81c1SAndreas Haerter * at <http://[your lang].wikipedia.org> might be helpful). 12099d81c1SAndreas Haerter * 13*e3217ae2SAndreas Haerter * Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>. 14*e3217ae2SAndreas Haerter * Thanks! :-D 15fa5fcacaSAndreas Haerter * 16fa5fcacaSAndreas Haerter * 17fa5fcacaSAndreas Haerter * LICENSE: This file is open source software (OSS) and may be copied under 18fa5fcacaSAndreas Haerter * certain conditions. See COPYING file for details or try to contact 19fa5fcacaSAndreas Haerter * the author(s) of this file in doubt. 20fa5fcacaSAndreas Haerter * 21fa5fcacaSAndreas Haerter * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22fa5fcacaSAndreas Haerter * @author Fabio Reis <fabio.netsys@gmail.com> 23*e3217ae2SAndreas Haerter * @link https://www.dokuwiki.org/template:vector 24*e3217ae2SAndreas Haerter * @link https://www.dokuwiki.org/config:lang 25*e3217ae2SAndreas Haerter * @link https://www.dokuwiki.org/devel:configuration 26fa5fcacaSAndreas Haerter */ 27fa5fcacaSAndreas Haerter 28fa5fcacaSAndreas Haerter 29fa5fcacaSAndreas Haerter//check if we are running within the DokuWiki environment 30fa5fcacaSAndreas Haerterif (!defined("DOKU_INC")){ 31fa5fcacaSAndreas Haerter die(); 32fa5fcacaSAndreas Haerter} 33fa5fcacaSAndreas Haerter 34fa5fcacaSAndreas Haerter//discussion pages 35fa5fcacaSAndreas Haerter$lang["vector_discuss"] = "Usar guias 'Discussão'?"; 36fa5fcacaSAndreas Haerter$lang["vector_discuss_ns"] = "Se sim, usar a seguinte ':namespace:' como raiz para as discussões:"; 37fa5fcacaSAndreas Haerter 38fa5fcacaSAndreas Haerter//site notice 39fa5fcacaSAndreas Haerter$lang["vector_sitenotice"] = "Mostrar aviso no site?"; 40fa5fcacaSAndreas Haerter$lang["vector_sitenotice_location"] = "Se sim, usar a seguinte página wiki:"; 41fa5fcacaSAndreas Haerter 42fa5fcacaSAndreas Haerter//navigation 43fa5fcacaSAndreas Haerter$lang["vector_navigation"] = "Mostrar 'Navegação' no menu?"; 44fa5fcacaSAndreas Haerter$lang["vector_navigation_location"] = "Se sim, usar a seguinte página wiki para 'Navegação':"; 45fa5fcacaSAndreas Haerter 46fa5fcacaSAndreas Haerter//exportbox ("print/export") 47fa5fcacaSAndreas Haerter$lang["vector_exportbox"] = "Mostrar 'Imprimir/Exportar' no menu?"; 48fa5fcacaSAndreas Haerter$lang["vector_exportbox_default"] = "Se sim, usar o padrão 'Imprimir/Exportar' no menu?"; 49fa5fcacaSAndreas Haerter$lang["vector_exportbox_location"] = "Se não usar o padrão, usar a seguinte página wiki para 'Imprimir/Exportar':"; 50fa5fcacaSAndreas Haerter 51fa5fcacaSAndreas Haerter//toolbox 52fa5fcacaSAndreas Haerter$lang["vector_toolbox"] = "Mostrar 'Ferramentas' no menu?"; 53fa5fcacaSAndreas Haerter$lang["vector_toolbox_default"] = "Se sim, usar o padrão Ferramentas?"; 54fa5fcacaSAndreas Haerter$lang["vector_toolbox_location"] = "Se não usar o padrão, usar a seguinte página wiki para 'Ferramentas':"; 55fa5fcacaSAndreas Haerter 56fa5fcacaSAndreas Haerter//custom copyright notice 57fa5fcacaSAndreas Haerter$lang["vector_copyright"] = "Mostrar aviso de direitos autorais?"; 58fa5fcacaSAndreas Haerter$lang["vector_copyright_default"] = "Se sim, usar o padrão de direitos autorais?"; 59fa5fcacaSAndreas Haerter$lang["vector_copyright_location"] = "Se não usar o padrão, usar a seguinte página wiki para direitos autorais:"; 60fa5fcacaSAndreas Haerter 61fa5fcacaSAndreas Haerter//donation link/button 62fa5fcacaSAndreas Haerter$lang["vector_donate"] = "Exibir o link/botão de doação?"; 63fa5fcacaSAndreas Haerter$lang["vector_donate_url"] = "Se não usar o padrão, usar a seguinte URL para doações:"; 64fa5fcacaSAndreas Haerter 65fa5fcacaSAndreas Haerter//TOC 66fa5fcacaSAndreas Haerter$lang["vector_toc_position"] = "Tabela de conteúdo de posição (TOC)"; 67fa5fcacaSAndreas Haerter 68fa5fcacaSAndreas Haerter//other stuff 69fa5fcacaSAndreas Haerter$lang["vector_breadcrumbs_position"] = "Posição do indicador de navegação (se ativado):"; 70fa5fcacaSAndreas Haerter$lang["vector_youarehere_position"] = "Posição da navegação para 'Você está em' (se ativado):"; 71fa5fcacaSAndreas Haerter$lang["vector_cite_author"] = "Nome do Autor em 'Citar este artigo':"; 72fa5fcacaSAndreas Haerter$lang["vector_loaduserjs"] = "Caregar 'vector/user/user.js'?"; 73