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