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