ES update to the translations THX Alberto Díaz

This commit is contained in:
Tobias Diekershoff 2016-10-13 07:21:34 +02:00
parent 0417e2ef07
commit 1d100905a2
8 changed files with 263 additions and 32 deletions

View file

@ -0,0 +1,64 @@
# ADDON tumblr
# Copyright (C)
# This file is distributed under the same license as the Friendica tumblr addon package.
#
#
# Translators:
# Alberto Díaz <albertodiaztormo@gmail.com>, 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-10-12 15:15+0000\n"
"Last-Translator: Alberto Díaz <albertodiaztormo@gmail.com>\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"
#: tumblr.php:34
msgid "Permission denied."
msgstr "Permiso denegado."
#: tumblr.php:144
msgid "You are now authenticated to tumblr."
msgstr "Está ahora autenticado en tumblr."
#: tumblr.php:145
msgid "return to the connector page"
msgstr "Vuelva a la página del conector"
#: tumblr.php:158
msgid "Post to Tumblr"
msgstr "Publicar en Tumblr"
#: tumblr.php:185
msgid "Tumblr Post Settings"
msgstr "Ajustes de publicación de Tumblr"
#: tumblr.php:188
msgid "(Re-)Authenticate your tumblr page"
msgstr "(Re-)autenticar su página de tumblr"
#: tumblr.php:192
msgid "Enable Tumblr Post Plugin"
msgstr "Habilite el plugin Tumblr Post"
#: tumblr.php:197
msgid "Post to Tumblr by default"
msgstr "Publique en Tumblr por defecto"
#: tumblr.php:217
msgid "Post to page:"
msgstr "Publicar en página:"
#: tumblr.php:228
msgid "You are not authenticated to tumblr"
msgstr "No está autenticado en tumblr"
#: tumblr.php:233
msgid "Submit"
msgstr "Enviar"

View file

@ -1,8 +1,18 @@
<?php
$a->strings["Permission denied."] = "Permiso denegado.";
$a->strings["Post to Tumblr"] = "Publicar en Tumblr";
$a->strings["Tumblr Post Settings"] = "Configuración de publicación en Tumblr";
$a->strings["Enable Tumblr Post Plugin"] = "Habilitar el módulo de publicación en Tumblr";
$a->strings["Post to Tumblr by default"] = "Publicar en Tumblr por defecto";
$a->strings["Submit"] = "Envíar";
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Permission denied."] = "Permiso denegado.";
$a->strings["You are now authenticated to tumblr."] = "Está ahora autenticado en tumblr.";
$a->strings["return to the connector page"] = "Vuelva a la página del conector";
$a->strings["Post to Tumblr"] = "Publicar en Tumblr";
$a->strings["Tumblr Post Settings"] = "Ajustes de publicación de Tumblr";
$a->strings["(Re-)Authenticate your tumblr page"] = "(Re-)autenticar su página de tumblr";
$a->strings["Enable Tumblr Post Plugin"] = "Habilite el plugin Tumblr Post";
$a->strings["Post to Tumblr by default"] = "Publique en Tumblr por defecto";
$a->strings["Post to page:"] = "Publicar en página:";
$a->strings["You are not authenticated to tumblr"] = "No está autenticado en tumblr";
$a->strings["Submit"] = "Enviar";