ES translation work THX Albert

This commit is contained in:
Tobias Diekershoff 2016-11-18 07:57:19 +01:00
parent 673705dcca
commit 631c7724b6
51 changed files with 1981 additions and 227 deletions

102
pumpio/lang/es/messages.po Normal file
View file

@ -0,0 +1,102 @@
# ADDON pumpio
# Copyright (C)
# This file is distributed under the same license as the Friendica pumpio addon package.
#
#
# Translators:
# Albert, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:45+0200\n"
"PO-Revision-Date: 2016-11-17 22:20+0000\n"
"Last-Translator: Albert\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"
#: pumpio.php:38
msgid "Permission denied."
msgstr "Permiso denegado."
#: pumpio.php:124
#, php-format
msgid "Unable to register the client at the pump.io server '%s'."
msgstr "Imposible registrar el cliente en el servidor '%s' de pump.io."
#: pumpio.php:164
msgid "You are now authenticated to pumpio."
msgstr "Ahora está autenticado en Pump.io."
#: pumpio.php:165
msgid "return to the connector page"
msgstr "volver a la página del conector"
#: pumpio.php:183
msgid "Post to pumpio"
msgstr "Publicar en Pump.io"
#: pumpio.php:221 pumpio.php:225
msgid "Pump.io Import/Export/Mirror"
msgstr "Importar/Exportar/Reflejar Pump.io"
#: pumpio.php:229
msgid "pump.io username (without the servername)"
msgstr "Nombre de usuario de Pump.io (sin el nombre de servidor)"
#: pumpio.php:234
msgid "pump.io servername (without \"http://\" or \"https://\" )"
msgstr "Nombre de servidor de Pump.io (sin \"http://\" o \"https://\" )"
#: pumpio.php:246
msgid "Authenticate your pump.io connection"
msgstr "Autenticar su conexión de Pump.io"
#: pumpio.php:250
msgid "Import the remote timeline"
msgstr "Importar la línea de tiempo remota"
#: pumpio.php:255
msgid "Enable pump.io Post Plugin"
msgstr "Habilitar Plugin de publicación de Pump.io"
#: pumpio.php:260
msgid "Post to pump.io by default"
msgstr "Publicar en Pump.io por defecto"
#: pumpio.php:265
msgid "Should posts be public?"
msgstr "¿Deberían de ser públicas las entradas?"
#: pumpio.php:270
msgid "Mirror all public posts"
msgstr "Reflejar todas las entradas públicas"
#: pumpio.php:275
msgid "Check to delete this preset"
msgstr "Chequear para eliminar este preajuste"
#: pumpio.php:285
msgid "Save Settings"
msgstr "Guardar Ajustes"
#: pumpio.php:515
msgid "Pump.io post failed. Queued for retry."
msgstr "Falló la publicación de Pump.io. En cola para reintentar."
#: pumpio.php:587
msgid "Pump.io like failed. Queued for retry."
msgstr "Falló el Like de Pump.io. En cola para reintentar."
#: pumpio.php:875
msgid "status"
msgstr "estado"
#: pumpio.php:879
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "A %1$s le gustan los %3$s de %2$s"

View file

@ -0,0 +1,27 @@
<?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["Unable to register the client at the pump.io server '%s'."] = "Imposible registrar el cliente en el servidor '%s' de pump.io.";
$a->strings["You are now authenticated to pumpio."] = "Ahora está autenticado en Pump.io.";
$a->strings["return to the connector page"] = "volver a la página del conector";
$a->strings["Post to pumpio"] = "Publicar en Pump.io";
$a->strings["Pump.io Import/Export/Mirror"] = "Importar/Exportar/Reflejar Pump.io";
$a->strings["pump.io username (without the servername)"] = "Nombre de usuario de Pump.io (sin el nombre de servidor)";
$a->strings["pump.io servername (without \"http://\" or \"https://\" )"] = "Nombre de servidor de Pump.io (sin \"http://\" o \"https://\" )";
$a->strings["Authenticate your pump.io connection"] = "Autenticar su conexión de Pump.io";
$a->strings["Import the remote timeline"] = "Importar la línea de tiempo remota";
$a->strings["Enable pump.io Post Plugin"] = "Habilitar Plugin de publicación de Pump.io";
$a->strings["Post to pump.io by default"] = "Publicar en Pump.io por defecto";
$a->strings["Should posts be public?"] = "¿Deberían de ser públicas las entradas?";
$a->strings["Mirror all public posts"] = "Reflejar todas las entradas públicas";
$a->strings["Check to delete this preset"] = "Chequear para eliminar este preajuste";
$a->strings["Save Settings"] = "Guardar Ajustes";
$a->strings["Pump.io post failed. Queued for retry."] = "Falló la publicación de Pump.io. En cola para reintentar.";
$a->strings["Pump.io like failed. Queued for retry."] = "Falló el Like de Pump.io. En cola para reintentar.";
$a->strings["status"] = "estado";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gustan los %3\$s de %2\$s";