ES translation work - muchas gracias Albert

This commit is contained in:
Tobias Diekershoff 2016-11-20 06:26:42 +01:00
parent 3c56a3ee94
commit e99e660298
14 changed files with 475 additions and 48 deletions

View file

@ -0,0 +1,45 @@
# ADDON uhremotestorage
# Copyright (C)
# This file is distributed under the same license as the Friendica uhremotestorage 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-19 11:35+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"
#: uhremotestorage.php:84
#, php-format
msgid ""
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud). See <a "
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
" WebFinger</a>"
msgstr "Permite usar su ID de Friendica (%s) para conectar a un almacén habilitado externo sin hospedar (como ownCloud). Vea <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
#: uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr "Plantilla de URL (con {categoría})"
#: uhremotestorage.php:86
msgid "OAuth end-point"
msgstr "Punto final de OAuth"
#: uhremotestorage.php:87
msgid "Api"
msgstr "API"
#: uhremotestorage.php:89
msgid "Save Settings"
msgstr "Guardar Ajustes"

View file

@ -1,7 +1,12 @@
<?php
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Permitir el uso de tu ID de Friendica (%s) para conexiones de almacenamiento externo sin alojamiento activado (como OwnCloud). Mira <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
$a->strings["Template URL (with {category})"] = "Dirección de la plantilla (con {categoría})";
$a->strings["OAuth end-point"] = "Punto final OAuth";
$a->strings["Api"] = "API";
$a->strings["Submit"] = "Envíar";
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Permite usar su ID de Friendica (%s) para conectar a un almacén habilitado externo sin hospedar (como ownCloud). Vea <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
$a->strings["Template URL (with {category})"] = "Plantilla de URL (con {categoría})";
$a->strings["OAuth end-point"] = "Punto final de OAuth";
$a->strings["Api"] = "API";
$a->strings["Save Settings"] = "Guardar Ajustes";