ES translation thx TupambaeNet

This commit is contained in:
Tobias Diekershoff 2016-04-22 17:42:52 +02:00
parent 8ca008780f
commit a7a5d9b9aa
10 changed files with 361 additions and 23 deletions

59
nsfw/lang/es/messages.po Normal file
View file

@ -0,0 +1,59 @@
# ADDON nsfw
# Copyright (C)
# This file is distributed under the same license as the Friendica nsfw addon package.
#
#
# Translators:
# Tupambae.org, 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-04-18 19:53+0000\n"
"Last-Translator: Tupambae.org\n"
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr "Configuración \"No apto para trabajar\" (Filtro genérico de contenido)"
#: 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 "Este plugin se fija por el contenido del texto y colapsa todo tema o respuesta que contiene las palabras establecidas. Como tales pueden ser contenido sexual o de otra índole que no conviene desplegar en el trabajo o ambientes correspondientes. Es de buena educación y recomendado de identificar todo tipo de contenido explicito con #NSFW. Este filtro además puede ser usado con cualquier palabra a especificar y por lo tanto ser usado como un filtro generico de contenido."
#: nsfw.php:81
msgid "Enable Content filter"
msgstr "Habilitar filtro de contenido"
#: nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr "Lista de palabras claves separadas por coma para colapsar el contenido correspondiente."
#: nsfw.php:88
msgid "Submit"
msgstr "Enviar"
#: nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr "Utiliza /expresión/ para proveer expresiones regulares."
#: nsfw.php:105
msgid "NSFW Settings saved."
msgstr "Configuración NSFW guardada."
#: nsfw.php:157
#, php-format
msgid "%s - Click to open/close"
msgstr "%s - Click aquí para abrir/cerrar"

View file

@ -1,10 +1,15 @@
<?php
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Configuración \"Not Safe For Work\" (Filtro de contenido de carácter general)";
$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."] = "Este complemento busca las palabras clave que especifiques y oculta cualquier comentario que contenga dichas claves, para que no aparezcan en momentos inoportunos, como por ejemplo, material sexual. Se considera de buena educación y correcto etiquetar los desnudos con #NSFW. Este filtro puede servir para filtrar otro contenido, así que te puede servir como un filtro de carácter general, escogiendo las palabras clave adecuadas.";
$a->strings["Enable Content filter"] = "Activar el filtro de contenido";
$a->strings["Comma separated list of keywords to hide"] = "Palabras clave para ocultar, lista separada por comas";
$a->strings["Submit"] = "Envíar";
$a->strings["Use /expression/ to provide regular expressions"] = "Usa /expresión/ para proporcionar expresiones regulares";
$a->strings["NSFW Settings saved."] = "Configuración NSFW guardada.";
$a->strings["%s - Click to open/close"] = "%s - Pulsa aquí para abrir/cerrar";
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Configuración \"No apto para trabajar\" (Filtro genérico de contenido)";
$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."] = "Este plugin se fija por el contenido del texto y colapsa todo tema o respuesta que contiene las palabras establecidas. Como tales pueden ser contenido sexual o de otra índole que no conviene desplegar en el trabajo o ambientes correspondientes. Es de buena educación y recomendado de identificar todo tipo de contenido explicito con #NSFW. Este filtro además puede ser usado con cualquier palabra a especificar y por lo tanto ser usado como un filtro generico de contenido.";
$a->strings["Enable Content filter"] = "Habilitar filtro de contenido";
$a->strings["Comma separated list of keywords to hide"] = "Lista de palabras claves separadas por coma para colapsar el contenido correspondiente.";
$a->strings["Submit"] = "Enviar";
$a->strings["Use /expression/ to provide regular expressions"] = "Utiliza /expresión/ para proveer expresiones regulares.";
$a->strings["NSFW Settings saved."] = "Configuración NSFW guardada.";
$a->strings["%s - Click to open/close"] = "%s - Click aquí para abrir/cerrar";