mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
some more PT BR translations THX Beatriz Vital
This commit is contained in:
parent
3844124d9c
commit
aa8c44dcc8
42 changed files with 1665 additions and 214 deletions
59
nsfw/lang/pt-br/messages.po
Normal file
59
nsfw/lang/pt-br/messages.po
Normal file
|
@ -0,0 +1,59 @@
|
|||
# ADDON nsfw
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica nsfw addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Beatriz Vital <vitalb@riseup.net>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2016-08-19 20:32+0000\n"
|
||||
"Last-Translator: Beatriz Vital <vitalb@riseup.net>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/Friendica/friendica/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: nsfw.php:78
|
||||
msgid "Not Safe For Work (General Purpose Content Filter) settings"
|
||||
msgstr ""
|
||||
|
||||
#: nsfw.php:80
|
||||
msgid ""
|
||||
"This plugin looks in posts for the words/text you specify below, and "
|
||||
"collapses any content containing those keywords so it is not displayed at "
|
||||
"inappropriate times, such as sexual innuendo that may be improper in a work "
|
||||
"setting. It is polite and recommended to tag any content containing nudity "
|
||||
"with #NSFW. This filter can also match any other word/text you specify, and"
|
||||
" can thereby be used as a general purpose content filter."
|
||||
msgstr ""
|
||||
|
||||
#: nsfw.php:81
|
||||
msgid "Enable Content filter"
|
||||
msgstr "Habilitar filtro de conteúdo"
|
||||
|
||||
#: nsfw.php:84
|
||||
msgid "Comma separated list of keywords to hide"
|
||||
msgstr ""
|
||||
|
||||
#: nsfw.php:88
|
||||
msgid "Submit"
|
||||
msgstr "Enviar"
|
||||
|
||||
#: nsfw.php:89
|
||||
msgid "Use /expression/ to provide regular expressions"
|
||||
msgstr ""
|
||||
|
||||
#: nsfw.php:105
|
||||
msgid "NSFW Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: nsfw.php:157
|
||||
#, php-format
|
||||
msgid "%s - Click to open/close"
|
||||
msgstr ""
|
|
@ -1,10 +1,15 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Configurações do filtro de conteúdo impróprio para o local de trabalho (Not Safe For Work)";
|
||||
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
|
||||
$a->strings["Enable Content filter"] = "Habilitar o filtro de conteúdo";
|
||||
$a->strings["Comma separated list of keywords to hide"] = "Lista de palavras-chave a serem ocultadas, separadas por vírgula";
|
||||
$a->strings["Submit"] = "Enviar";
|
||||
$a->strings["Use /expression/ to provide regular expressions"] = "Use /expressão/ para fornecer a expressão regular";
|
||||
$a->strings["NSFW Settings saved."] = "Configurações NSFW armazenadas.";
|
||||
$a->strings["%s - Click to open/close"] = "%s ";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_pt_br")) {
|
||||
function string_plural_select_pt_br($n){
|
||||
return ($n > 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
|
||||
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
|
||||
$a->strings["Enable Content filter"] = "Habilitar filtro de conteúdo";
|
||||
$a->strings["Comma separated list of keywords to hide"] = "";
|
||||
$a->strings["Submit"] = "Enviar";
|
||||
$a->strings["Use /expression/ to provide regular expressions"] = "";
|
||||
$a->strings["NSFW Settings saved."] = "";
|
||||
$a->strings["%s - Click to open/close"] = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue