MessagesPt.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. <?php
  2. /** Portuguese (português)
  3. *
  4. * To improve a translation please visit https://translatewiki.net
  5. *
  6. * @ingroup Language
  7. * @file
  8. *
  9. * @author Alchimista
  10. * @author Andresilvazito
  11. * @author Cainamarques
  12. * @author Capmo
  13. * @author Crazymadlover
  14. * @author Daemorris
  15. * @author DanielTom
  16. * @author Dannyps
  17. * @author Dicionarista
  18. * @author Francisco Leandro
  19. * @author Fúlvio
  20. * @author Giro720
  21. * @author GoEThe
  22. * @author Hamilton Abreu
  23. * @author Helder.wiki
  24. * @author Imperadeiro98
  25. * @author Indech
  26. * @author Jens Liebenau
  27. * @author Jorge Morais
  28. * @author Josep Maria 15.
  29. * @author Kaganer
  30. * @author Leonardo.stabile
  31. * @author Lijealso
  32. * @author Luckas
  33. * @author Luckas Blade
  34. * @author Lugusto
  35. * @author MCruz
  36. * @author MF-Warburg
  37. * @author Malafaya
  38. * @author Manuel Menezes de Sequeira
  39. * @author Masked Rogue
  40. * @author Matma Rex
  41. * @author McDutchie
  42. * @author MetalBrasil
  43. * @author Minh Nguyen
  44. * @author Nemo bis
  45. * @author Nuno Tavares
  46. * @author OTAVIO1981
  47. * @author Opraco
  48. * @author Paulo Juntas
  49. * @author Pedroca cerebral
  50. * @author Polyethylen
  51. * @author Rafael Vargas
  52. * @author Rei-artur
  53. * @author Remember the dot
  54. * @author RmSilva
  55. * @author Rodrigo Calanca Nishino
  56. * @author SandroHc
  57. * @author Sarilho1
  58. * @author Sir Lestaty de Lioncourt
  59. * @author Sérgio Ribeiro
  60. * @author Teles
  61. * @author Urhixidur
  62. * @author Villate
  63. * @author Vitorvicentevalente
  64. * @author Waldir
  65. * @author Yves Marques Junqueira
  66. * @author לערי ריינהארט
  67. * @author 555
  68. */
  69. $fallback = 'pt-br';
  70. $namespaceNames = [
  71. NS_MEDIA => 'Multimédia',
  72. NS_SPECIAL => 'Especial',
  73. NS_TALK => 'Discussão',
  74. NS_USER => 'Utilizador',
  75. NS_USER_TALK => 'Utilizador_Discussão',
  76. NS_PROJECT_TALK => '$1_Discussão',
  77. NS_FILE => 'Ficheiro',
  78. NS_FILE_TALK => 'Ficheiro_Discussão',
  79. NS_MEDIAWIKI => 'MediaWiki',
  80. NS_MEDIAWIKI_TALK => 'MediaWiki_Discussão',
  81. NS_TEMPLATE => 'Predefinição',
  82. NS_TEMPLATE_TALK => 'Predefinição_Discussão',
  83. NS_HELP => 'Ajuda',
  84. NS_HELP_TALK => 'Ajuda_Discussão',
  85. NS_CATEGORY => 'Categoria',
  86. NS_CATEGORY_TALK => 'Categoria_Discussão',
  87. ];
  88. $namespaceAliases = [
  89. 'Usuário' => NS_USER,
  90. 'Usuário_Discussão' => NS_USER_TALK,
  91. 'Imagem' => NS_FILE,
  92. 'Imagem_Discussão' => NS_FILE_TALK,
  93. 'Arquivo' => NS_FILE,
  94. 'Arquivo_Discussão' => NS_FILE_TALK,
  95. ];
  96. $namespaceGenderAliases = [
  97. NS_USER => [ 'male' => 'Utilizador', 'female' => 'Utilizadora' ],
  98. NS_USER_TALK => [ 'male' => 'Utilizador_Discussão', 'female' => 'Utilizadora_Discussão' ],
  99. ];
  100. $defaultDateFormat = 'dmy';
  101. $dateFormats = [
  102. 'dmy time' => 'H\hi\m\i\n',
  103. 'dmy date' => 'j \d\e F \d\e Y',
  104. 'dmy both' => 'H\hi\m\i\n \d\e j \d\e F \d\e Y',
  105. ];
  106. $separatorTransformTable = [ ',' => "\xc2\xa0", '.' => ',' ];
  107. $linkTrail = '/^([áâãàéêẽçíòóôõq̃úüűũa-z]+)(.*)$/sDu'; # T23168, T29633
  108. $specialPageAliases = [
  109. 'Activeusers' => [ 'Utilizadores_activos' ],
  110. 'Allmessages' => [ 'Todas_as_mensagens', 'Todas_mensagens' ],
  111. 'Allpages' => [ 'Todas_as_páginas', 'Todos_os_artigos', 'Todas_páginas', 'Todos_artigos' ],
  112. 'Ancientpages' => [ 'Páginas_inactivas', 'Páginas_inativas', 'Artigos_inativos' ],
  113. 'Badtitle' => [ 'Título_inválido' ],
  114. 'Blankpage' => [ 'Página_em_branco' ],
  115. 'Block' => [ 'Bloquear', 'Bloquear_IP', 'Bloquear_utilizador', 'Bloquear_usuário' ],
  116. 'Booksources' => [ 'Fontes_de_livros' ],
  117. 'BrokenRedirects' => [ 'Redireccionamentos_quebrados', 'Redirecionamentos_quebrados' ],
  118. 'Categories' => [ 'Categorias' ],
  119. 'ChangeEmail' => [ 'Alterar_e-mail', 'Alterar_correio_electrónico' ],
  120. 'ChangePassword' => [ 'Reiniciar_palavra-chave', 'Repor_senha', 'Zerar_senha' ],
  121. 'ComparePages' => [ 'Comparar_páginas' ],
  122. 'Confirmemail' => [ 'Confirmar_correio_electrónico', 'Confirmar_e-mail', 'Confirmar_email' ],
  123. 'Contributions' => [ 'Contribuições' ],
  124. 'CreateAccount' => [ 'Criar_conta' ],
  125. 'Deadendpages' => [ 'Páginas_sem_saída', 'Artigos_sem_saída' ],
  126. 'DeletedContributions' => [ 'Contribuições_eliminadas', 'Edições_eliminadas' ],
  127. 'Diff' => [ 'Diferenças_entre_edições', 'Mudanças_entre_edições' ],
  128. 'DoubleRedirects' => [ 'Redireccionamentos_duplos', 'Redirecionamentos_duplos' ],
  129. 'EditWatchlist' => [ 'Editar_lista_de_páginas_vigiadas' ],
  130. 'Emailuser' => [ 'Contactar_utilizador', 'Contactar_usuário', 'Contatar_usuário' ],
  131. 'ExpandTemplates' => [ 'Expandir_predefinições' ],
  132. 'Export' => [ 'Exportar' ],
  133. 'Fewestrevisions' => [ 'Páginas_com_menos_edições', 'Artigos_com_menos_edições', 'Artigos_menos_editados' ],
  134. 'FileDuplicateSearch' => [ 'Busca_de_ficheiros_duplicados', 'Busca_de_arquivos_duplicados' ],
  135. 'Filepath' => [ 'Directório_de_ficheiro', 'Diretório_de_ficheiro', 'Diretório_de_arquivo' ],
  136. 'Import' => [ 'Importar' ],
  137. 'Invalidateemail' => [ 'Invalidar_correio_electrónico', 'Invalidar_e-mail' ],
  138. 'BlockList' => [ 'Registo_de_bloqueios', 'IPs_bloqueados', 'Utilizadores_bloqueados', 'Registro_de_bloqueios', 'Usuários_bloqueados' ],
  139. 'LinkSearch' => [ 'Pesquisar_links' ],
  140. 'Listadmins' => [ 'Administradores', 'Admins', 'Lista_de_administradores', 'Lista_de_admins' ],
  141. 'Listbots' => [ 'Robôs', 'Lista_de_robôs', 'Bots', 'Lista_de_bots' ],
  142. 'Listfiles' => [ 'Lista_de_ficheiros', 'Lista_de_imagens', 'Lista_de_arquivos' ],
  143. 'Listgrouprights' => [ 'Lista_de_privilégios_de_grupos', 'Listar_privilégios_de_grupos' ],
  144. 'Listredirects' => [ 'Redireccionamentos', 'Redirecionamentos', 'Lista_de_redireccionamentos', 'Lista_de_redirecionamentos' ],
  145. 'ListDuplicatedFiles' => [ 'Lista_de_ficheiros_duplicados', 'Lista_de_arquivos_duplicados' ],
  146. 'Listusers' => [ 'Lista_de_utilizadores', 'Lista_de_usuários' ],
  147. 'Lockdb' => [ 'Bloquear_base_de_dados', 'Bloquear_a_base_de_dados', 'Bloquear_banco_de_dados' ],
  148. 'Log' => [ 'Registo', 'Registos', 'Registro', 'Registros' ],
  149. 'Lonelypages' => [ 'Páginas_órfãs', 'Páginas_sem_afluentes', 'Artigos_órfãos', 'Artigos_sem_afluentes' ],
  150. 'Longpages' => [ 'Páginas_longas', 'Artigos_extensos' ],
  151. 'MergeHistory' => [ 'Fundir_históricos', 'Fundir_edições' ],
  152. 'MIMEsearch' => [ 'Busca_MIME' ],
  153. 'Mostcategories' => [ 'Páginas_com_mais_categorias', 'Artigos_com_mais_categorias' ],
  154. 'Mostimages' => [ 'Ficheiros_com_mais_afluentes', 'Imagens_com_mais_afluentes', 'Arquivos_com_mais_afluentes' ],
  155. 'Mostinterwikis' => [ 'Páginas_com_mais_interwikis' ],
  156. 'Mostlinked' => [ 'Páginas_com_mais_afluentes', 'Artigos_com_mais_afluentes' ],
  157. 'Mostlinkedcategories' => [ 'Categorias_com_mais_afluentes', 'Categorias_mais_usadas' ],
  158. 'Mostlinkedtemplates' => [ 'Predefinições_com_mais_afluentes', 'Predefinições_mais_usadas' ],
  159. 'Mostrevisions' => [ 'Páginas_com_mais_edições', 'Artigos_com_mais_edições' ],
  160. 'Movepage' => [ 'Mover_página', 'Mover', 'Mover_artigo' ],
  161. 'Mycontributions' => [ 'Minhas_contribuições', 'Minhas_edições', 'Minhas_constribuições' ],
  162. 'Mypage' => [ 'Minha_página' ],
  163. 'Mytalk' => [ 'Minha_discussão' ],
  164. 'Newimages' => [ 'Ficheiros_novos', 'Imagens_novas', 'Arquivos_novos' ],
  165. 'Newpages' => [ 'Páginas_novas', 'Artigos_novos' ],
  166. 'PagesWithProp' => [ 'Propriedades_de_página' ],
  167. 'PasswordReset' => [ 'Redefinir_autenticação' ],
  168. 'PermanentLink' => [ 'Ligação_permanente', 'Link_permanente' ],
  169. 'Preferences' => [ 'Preferências' ],
  170. 'Prefixindex' => [ 'Índice_por_prefixo', 'Índice_de_prefixo' ],
  171. 'Protectedpages' => [ 'Páginas_protegidas', 'Artigos_protegidos' ],
  172. 'Protectedtitles' => [ 'Títulos_protegidos' ],
  173. 'Randompage' => [ 'Aleatória', 'Aleatório', 'Página_aleatória', 'Artigo_aleatório' ],
  174. 'RandomInCategory' => [ 'Aleatória_na_Categoria', 'Aleatório_na_Categoria' ],
  175. 'Randomredirect' => [ 'Redireccionamento_aleatório', 'Redirecionamento_aleatório' ],
  176. 'Recentchanges' => [ 'Mudanças_recentes' ],
  177. 'Recentchangeslinked' => [ 'Alterações_relacionadas', 'Novidades_relacionadas', 'Mudanças_relacionadas' ],
  178. 'Redirect' => [ 'Redirecionar', 'Redireccionar' ],
  179. 'ResetTokens' => [ 'Reiniciar_tokens', 'Reiniciar_os_tokens' ],
  180. 'Revisiondelete' => [ 'Eliminar_edição', 'Eliminar_revisão', 'Apagar_edição', 'Apagar_revisão' ],
  181. 'Search' => [ 'Pesquisar', 'Busca', 'Buscar', 'Procurar', 'Pesquisa' ],
  182. 'Shortpages' => [ 'Páginas_curtas', 'Artigos_curtos' ],
  183. 'Specialpages' => [ 'Páginas_especiais' ],
  184. 'Statistics' => [ 'Estatísticas' ],
  185. 'Tags' => [ 'Etiquetas' ],
  186. 'TrackingCategories' => [ 'Categorias_de_rastreamento', 'Monitoramento_de_Categorias' ],
  187. 'Unblock' => [ 'Desbloquear' ],
  188. 'Uncategorizedcategories' => [ 'Categorias_não_categorizadas', 'Categorias_sem_categorias' ],
  189. 'Uncategorizedimages' => [ 'Ficheiros_não_categorizados', 'Imagens_não_categorizadas', 'Imagens_sem_categorias', 'Ficheiros_sem_categorias', 'Arquivos_sem_categorias' ],
  190. 'Uncategorizedpages' => [ 'Páginas_não_categorizadas', 'Páginas_sem_categorias', 'Artigos_sem_categorias' ],
  191. 'Uncategorizedtemplates' => [ 'Predefinições_não_categorizadas', 'Predefinições_sem_categorias' ],
  192. 'Undelete' => [ 'Restaurar', 'Restaurar_páginas_eliminadas', 'Restaurar_artigos_eliminados' ],
  193. 'Unlockdb' => [ 'Desbloquear_base_de_dados', 'Desbloquear_a_base_de_dados', 'Desbloquear_banco_de_dados' ],
  194. 'Unusedcategories' => [ 'Categorias_não_utilizadas', 'Categorias_sem_uso' ],
  195. 'Unusedimages' => [ 'Ficheiros_não_utilizados', 'Imagens_não_utilizadas' ],
  196. 'Unusedtemplates' => [ 'Predefinições_não_utilizadas', 'Predefinições_sem_uso' ],
  197. 'Unwatchedpages' => [ 'Páginas_não_vigiadas', 'Páginas_não-vigiadas', 'Artigos_não-vigiados', 'Artigos_não_vigiados' ],
  198. 'Upload' => [ 'Carregar_imagem', 'Carregar_ficheiro', 'Carregar_arquivo', 'Enviar' ],
  199. 'UploadStash' => [ 'Envios_ocultos', 'Ficheiros_ocultos', 'Arquivos_ocultos', 'Envios_escondidos', 'Ficheiros_escondidos', 'Arquivos_escondidos' ],
  200. 'Userlogin' => [ 'Entrar' ],
  201. 'Userlogout' => [ 'Sair' ],
  202. 'Userrights' => [ 'Privilégios', 'Direitos', 'Estatutos' ],
  203. 'Version' => [ 'Versão', 'Sobre' ],
  204. 'Wantedcategories' => [ 'Categorias_pedidas', 'Categorias_em_falta', 'Categorias_inexistentes' ],
  205. 'Wantedfiles' => [ 'Ficheiros_pedidos', 'Imagens_pedidas', 'Ficheiros_em_falta', 'Arquivos_em_falta', 'Imagens_em_falta' ],
  206. 'Wantedpages' => [ 'Páginas_pedidas', 'Páginas_em_falta', 'Artigos_em_falta', 'Artigos_pedidos' ],
  207. 'Wantedtemplates' => [ 'Predefinições_pedidas', 'Predefinições_em_falta' ],
  208. 'Watchlist' => [ 'Páginas_vigiadas', 'Artigos_vigiados', 'Vigiados' ],
  209. 'Whatlinkshere' => [ 'Páginas_afluentes', 'Artigos_afluentes' ],
  210. 'Withoutinterwiki' => [ 'Páginas_sem_interwikis', 'Artigos_sem_interwikis' ],
  211. ];
  212. $magicWords = [
  213. 'redirect' => [ '0', '#REDIRECIONAMENTO', '#REDIRECT' ],
  214. 'notoc' => [ '0', '__SEMTDC__', '__SEMSUMÁRIO__', '__NOTOC__' ],
  215. 'nogallery' => [ '0', '__SEMGALERIA__', '__NOGALLERY__' ],
  216. 'forcetoc' => [ '0', '__FORCARTDC__', '__FORCARSUMARIO__', '__FORÇARTDC__', '__FORÇARSUMÁRIO__', '__FORCETOC__' ],
  217. 'toc' => [ '0', '__TDC__', '__SUMÁRIO__', '__SUMARIO__', '__TOC__' ],
  218. 'noeditsection' => [ '0', '__NÃOEDITARSEÇÃO__', '__SEMEDITARSEÇÃO__', '__NAOEDITARSECAO__', '__SEMEDITARSECAO__', '__NOEDITSECTION__' ],
  219. 'currentmonth' => [ '1', 'MESATUAL', 'MESATUAL2', 'CURRENTMONTH', 'CURRENTMONTH2' ],
  220. 'currentmonth1' => [ '1', 'MESATUAL1', 'CURRENTMONTH1' ],
  221. 'currentmonthname' => [ '1', 'NOMEDOMESATUAL', 'CURRENTMONTHNAME' ],
  222. 'currentmonthabbrev' => [ '1', 'MESATUALABREV', 'MESATUALABREVIADO', 'ABREVIATURADOMESATUAL', 'CURRENTMONTHABBREV' ],
  223. 'currentday' => [ '1', 'DIAATUAL', 'CURRENTDAY' ],
  224. 'currentday2' => [ '1', 'DIAATUAL2', 'CURRENTDAY2' ],
  225. 'currentdayname' => [ '1', 'NOMEDODIAATUAL', 'CURRENTDAYNAME' ],
  226. 'currentyear' => [ '1', 'ANOATUAL', 'CURRENTYEAR' ],
  227. 'currenttime' => [ '1', 'HORARIOATUAL', 'CURRENTTIME' ],
  228. 'currenthour' => [ '1', 'HORAATUAL', 'CURRENTHOUR' ],
  229. 'localmonth' => [ '1', 'MESLOCAL', 'LOCALMONTH', 'LOCALMONTH2' ],
  230. 'localmonth1' => [ '1', 'MESLOCAL1', 'LOCALMONTH1' ],
  231. 'localmonthname' => [ '1', 'NOMEDOMESLOCAL', 'LOCALMONTHNAME' ],
  232. 'localmonthabbrev' => [ '1', 'MESLOCALABREV', 'MESLOCALABREVIADO', 'ABREVIATURADOMESLOCAL', 'LOCALMONTHABBREV' ],
  233. 'localday' => [ '1', 'DIALOCAL', 'LOCALDAY' ],
  234. 'localday2' => [ '1', 'DIALOCAL2', 'LOCALDAY2' ],
  235. 'localdayname' => [ '1', 'NOMEDODIALOCAL', 'LOCALDAYNAME' ],
  236. 'localyear' => [ '1', 'ANOLOCAL', 'LOCALYEAR' ],
  237. 'localtime' => [ '1', 'HORARIOLOCAL', 'LOCALTIME' ],
  238. 'localhour' => [ '1', 'HORALOCAL', 'LOCALHOUR' ],
  239. 'numberofpages' => [ '1', 'NUMERODEPAGINAS', 'NÚMERODEPÁGINAS', 'NUMBEROFPAGES' ],
  240. 'numberofarticles' => [ '1', 'NUMERODEARTIGOS', 'NÚMERODEARTIGOS', 'NUMBEROFARTICLES' ],
  241. 'numberoffiles' => [ '1', 'NUMERODEARQUIVOS', 'NÚMERODEARQUIVOS', 'NUMBEROFFILES' ],
  242. 'numberofusers' => [ '1', 'NUMERODEUSUARIOS', 'NÚMERODEUSUÁRIOS', 'NUMBEROFUSERS' ],
  243. 'numberofactiveusers' => [ '1', 'NUMERODEUSUARIOSATIVOS', 'NÚMERODEUSUÁRIOSATIVOS', 'NUMBEROFACTIVEUSERS' ],
  244. 'numberofedits' => [ '1', 'NUMERODEEDICOES', 'NÚMERODEEDIÇÕES', 'NUMBEROFEDITS' ],
  245. 'pagename' => [ '1', 'NOMEDAPAGINA', 'NOMEDAPÁGINA', 'PAGENAME' ],
  246. 'pagenamee' => [ '1', 'NOMEDAPAGINAC', 'NOMEDAPÁGINAC', 'PAGENAMEE' ],
  247. 'namespace' => [ '1', 'DOMINIO', 'DOMÍNIO', 'ESPACONOMINAL', 'ESPAÇONOMINAL', 'NAMESPACE' ],
  248. 'namespacee' => [ '1', 'DOMINIOC', 'DOMÍNIOC', 'ESPACONOMINALC', 'ESPAÇONOMINALC', 'NAMESPACEE' ],
  249. 'talkspace' => [ '1', 'PAGINADEDISCUSSAO', 'PÁGINADEDISCUSSÃO', 'TALKSPACE' ],
  250. 'talkspacee' => [ '1', 'PAGINADEDISCUSSAOC', 'PÁGINADEDISCUSSÃOC', 'TALKSPACEE' ],
  251. 'subjectspace' => [ '1', 'PAGINADECONTEUDO', 'PAGINADECONTEÚDO', 'SUBJECTSPACE', 'ARTICLESPACE' ],
  252. 'subjectspacee' => [ '1', 'PAGINADECONTEUDOC', 'PAGINADECONTEÚDOC', 'SUBJECTSPACEE', 'ARTICLESPACEE' ],
  253. 'fullpagename' => [ '1', 'NOMECOMPLETODAPAGINA', 'NOMECOMPLETODAPÁGINA', 'FULLPAGENAME' ],
  254. 'fullpagenamee' => [ '1', 'NOMECOMPLETODAPAGINAC', 'NOMECOMPLETODAPÁGINAC', 'FULLPAGENAMEE' ],
  255. 'subpagename' => [ '1', 'NOMEDASUBPAGINA', 'NOMEDASUBPÁGINA', 'SUBPAGENAME' ],
  256. 'subpagenamee' => [ '1', 'NOMEDASUBPAGINAC', 'NOMEDASUBPÁGINAC', 'SUBPAGENAMEE' ],
  257. 'basepagename' => [ '1', 'NOMEDAPAGINABASE', 'NOMEDAPÁGINABASE', 'BASEPAGENAME' ],
  258. 'basepagenamee' => [ '1', 'NOMEDAPAGINABASEC', 'NOMEDAPÁGINABASEC', 'BASEPAGENAMEE' ],
  259. 'talkpagename' => [ '1', 'NOMEDAPAGINADEDISCUSSAO', 'NOMEDAPÁGINADEDISCUSSÃO', 'TALKPAGENAME' ],
  260. 'talkpagenamee' => [ '1', 'NOMEDAPAGINADEDISCUSSAOC', 'NOMEDAPÁGINADEDISCUSSÃOC', 'TALKPAGENAMEE' ],
  261. 'subjectpagename' => [ '1', 'NOMEDAPAGINADECONTEUDO', 'NOMEDAPÁGINADECONTEÚDO', 'SUBJECTPAGENAME', 'ARTICLEPAGENAME' ],
  262. 'subjectpagenamee' => [ '1', 'NOMEDAPAGINADECONTEUDOC', 'NOMEDAPÁGINADECONTEÚDOC', 'SUBJECTPAGENAMEE', 'ARTICLEPAGENAMEE' ],
  263. 'img_thumbnail' => [ '1', 'miniaturadaimagem', 'miniatura', 'thumb', 'thumbnail' ],
  264. 'img_manualthumb' => [ '1', 'miniaturadaimagem=$1', 'miniatura=$1', 'thumbnail=$1', 'thumb=$1' ],
  265. 'img_right' => [ '1', 'direita', 'right' ],
  266. 'img_left' => [ '1', 'esquerda', 'left' ],
  267. 'img_none' => [ '1', 'nenhum', 'none' ],
  268. 'img_center' => [ '1', 'centro', 'center', 'centre' ],
  269. 'img_framed' => [ '1', 'commoldura', 'comborda', 'frame', 'framed', 'enframed' ],
  270. 'img_frameless' => [ '1', 'semmoldura', 'semborda', 'frameless' ],
  271. 'img_page' => [ '1', 'página=$1', 'página_$1', 'página $1', 'page=$1', 'page $1' ],
  272. 'img_upright' => [ '1', 'superiordireito', 'superiordireito=$1', 'superiordireito_$1', 'superiordireito $1', 'upright', 'upright=$1', 'upright $1' ],
  273. 'img_border' => [ '1', 'borda', 'border' ],
  274. 'img_baseline' => [ '1', 'linhadebase', 'baseline' ],
  275. 'img_top' => [ '1', 'acima', 'top' ],
  276. 'img_middle' => [ '1', 'meio', 'middle' ],
  277. 'img_bottom' => [ '1', 'abaixo', 'bottom' ],
  278. 'img_link' => [ '1', 'ligação=$1', 'link=$1' ],
  279. 'sitename' => [ '1', 'NOMEDOSITE', 'NOMEDOSÍTIO', 'NOMEDOSITIO', 'SITENAME' ],
  280. 'server' => [ '0', 'SERVIDOR', 'SERVER' ],
  281. 'servername' => [ '0', 'NOMEDOSERVIDOR', 'SERVERNAME' ],
  282. 'scriptpath' => [ '0', 'CAMINHODOSCRIPT', 'SCRIPTPATH' ],
  283. 'gender' => [ '0', 'GENERO', 'GÊNERO', 'GENDER:' ],
  284. 'notitleconvert' => [ '0', '__SEMCONVERTERTITULO__', '__SEMCONVERTERTÍTULO__', '__SEMCT__', '__NOTITLECONVERT__', '__NOTC__' ],
  285. 'nocontentconvert' => [ '0', '__SEMCONVERTERCONTEUDO__', '__SEMCONVERTERCONTEÚDO__', '__SEMCC__', '__NOCONTENTCONVERT__', '__NOCC__' ],
  286. 'currentweek' => [ '1', 'SEMANAATUAL', 'CURRENTWEEK' ],
  287. 'currentdow' => [ '1', 'DIADASEMANAATUAL', 'CURRENTDOW' ],
  288. 'localweek' => [ '1', 'SEMANALOCAL', 'LOCALWEEK' ],
  289. 'localdow' => [ '1', 'DIADASEMANALOCAL', 'LOCALDOW' ],
  290. 'revisionid' => [ '1', 'IDDAREVISAO', 'IDDAREVISÃO', 'REVISIONID' ],
  291. 'revisionday' => [ '1', 'DIADAREVISAO', 'DIADAREVISÃO', 'REVISIONDAY' ],
  292. 'revisionday2' => [ '1', 'DIADAREVISAO2', 'DIADAREVISÃO2', 'REVISIONDAY2' ],
  293. 'revisionmonth' => [ '1', 'MESDAREVISAO', 'MÊSDAREVISÃO', 'REVISIONMONTH' ],
  294. 'revisionyear' => [ '1', 'ANODAREVISAO', 'ANODAREVISÃO', 'REVISIONYEAR' ],
  295. 'revisionuser' => [ '1', 'USUARIODAREVISAO', 'USUÁRIODAREVISÃO', 'REVISIONUSER' ],
  296. 'fullurl' => [ '0', 'URLCOMPLETO:', 'FULLURL:' ],
  297. 'fullurle' => [ '0', 'URLCOMPLETOC:', 'FULLURLE:' ],
  298. 'lcfirst' => [ '0', 'PRIMEIRAMINUSCULA:', 'PRIMEIRAMINÚSCULA:', 'LCFIRST:' ],
  299. 'ucfirst' => [ '0', 'PRIMEIRAMAIUSCULA:', 'PRIMEIRAMAIÚSCULA:', 'UCFIRST:' ],
  300. 'lc' => [ '0', 'MINUSCULA', 'MINÚSCULA', 'MINUSCULAS', 'MINÚSCULAS', 'LC:' ],
  301. 'uc' => [ '0', 'MAIUSCULA', 'MAIÚSCULA', 'MAIUSCULAS', 'MAIÚSCULAS', 'UC:' ],
  302. 'displaytitle' => [ '1', 'EXIBETITULO', 'EXIBETÍTULO', 'DISPLAYTITLE' ],
  303. 'newsectionlink' => [ '1', '__LINKDENOVASECAO__', '__LINKDENOVASEÇÃO__', '__LIGACAODENOVASECAO__', '__LIGAÇÃODENOVASEÇÃO__', '__NEWSECTIONLINK__' ],
  304. 'nonewsectionlink' => [ '1', '__SEMLINKDENOVASECAO__', '__SEMLINKDENOVASEÇÃO__', '__SEMLIGACAODENOVASECAO__', '__SEMLIGAÇÃODENOVASEÇÃO__', '__NONEWSECTIONLINK__' ],
  305. 'currentversion' => [ '1', 'REVISAOATUAL', 'REVISÃOATUAL', 'CURRENTVERSION' ],
  306. 'urlencode' => [ '0', 'CODIFICAURL:', 'URLENCODE:' ],
  307. 'anchorencode' => [ '0', 'CODIFICAANCORA:', 'CODIFICAÂNCORA:', 'ANCHORENCODE' ],
  308. 'language' => [ '0', '#IDIOMA:', '#LANGUAGE:' ],
  309. 'contentlanguage' => [ '1', 'IDIOMADOCONTEUDO', 'IDIOMADOCONTEÚDO', 'CONTENTLANGUAGE', 'CONTENTLANG' ],
  310. 'pagesinnamespace' => [ '1', 'PAGINASNOESPACONOMINAL', 'PÁGINASNOESPAÇONOMINAL', 'PAGINASNODOMINIO', 'PÁGINASNODOMÍNIO', 'PAGESINNAMESPACE:', 'PAGESINNS:' ],
  311. 'numberofadmins' => [ '1', 'NUMERODEADMINISTRADORES', 'NÚMERODEADMINISTRADORES', 'NUMBEROFADMINS' ],
  312. 'defaultsort' => [ '1', 'ORDENACAOPADRAO', 'ORDENAÇÃOPADRÃO', 'ORDEMPADRAO', 'ORDEMPADRÃO', 'DEFAULTSORT:', 'DEFAULTSORTKEY:', 'DEFAULTCATEGORYSORT:' ],
  313. 'filepath' => [ '0', 'CAMINHODOARQUIVO', 'FILEPATH:' ],
  314. 'hiddencat' => [ '1', '__CATEGORIAOCULTA__', '__CATOCULTA__', '__HIDDENCAT__' ],
  315. 'pagesincategory' => [ '1', 'PAGINASNACATEGORIA', 'PÁGINASNACATEGORIA', 'PAGINASNACAT', 'PÁGINASNACAT', 'PAGESINCATEGORY', 'PAGESINCAT' ],
  316. 'pagesize' => [ '1', 'TAMANHODAPAGINA', 'TAMANHODAPÁGINA', 'PAGESIZE' ],
  317. 'index' => [ '1', '__INDEXAR__', '__INDEX__' ],
  318. 'noindex' => [ '1', '__NAOINDEXAR__', '__NÃOINDEXAR__', '__NOINDEX__' ],
  319. 'numberingroup' => [ '1', 'NUMERONOGRUPO', 'NÚMERONOGRUPO', 'NUMBERINGROUP', 'NUMINGROUP' ],
  320. 'staticredirect' => [ '1', '__REDIRECIONAMENTOESTATICO__', '__REDIRECIONAMENTOESTÁTICO__', '__STATICREDIRECT__' ],
  321. 'protectionlevel' => [ '1', 'NIVELDEPROTECAO', 'NÍVELDEPROTEÇÃO', 'PROTECTIONLEVEL' ],
  322. ];