ES translation work THX Albert

This commit is contained in:
Tobias Diekershoff 2016-11-19 06:17:07 +01:00
parent 631c7724b6
commit 87697cc233
4 changed files with 120 additions and 15 deletions

View file

@ -0,0 +1,41 @@
# ADDON testdrive
# Copyright (C)
# This file is distributed under the same license as the Friendica testdrive addon package.
#
#
# Translators:
# Albert, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-23 17:30+0200\n"
"PO-Revision-Date: 2016-11-18 11:58+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"
#: testdrive.php:67
msgid "Administrator"
msgstr "Administrador"
#: testdrive.php:94
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr "Su cuenta de %s expirará en unos días."
#: testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr "Su cuenta de prueba de Friendica está a punto de expirar."
#: testdrive.php:96
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at %s/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr "Hola %1$s,\n\nSu cuenta de prueba de %2$s expirará en menos de cinco días. Esperamos que disfrute este drive de prueba y usar esta oportunidad para encontrar una página web permanente de Friendica para sus comunicaciones sociales integradas. Una lista de sitios públicos está disponible en %s/siteinfo - y para más información ajustando su servidor de Friendica por favor vea la página del proyecto de Friendica en http://friendica.com."

View file

@ -1,5 +1,11 @@
<?php
$a->strings["Administrator"] = "Administrador";
$a->strings["Your account on %s will expire in a few days."] = "Tu cuenta de %s expirará en pocos días.";
$a->strings["Your Friendica test account is about to expire."] = "Tu cuenta de prueba de Friendica está a punto de expirar.";
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Administrator"] = "Administrador";
$a->strings["Your account on %s will expire in a few days."] = "Su cuenta de %s expirará en unos días.";
$a->strings["Your Friendica test account is about to expire."] = "Su cuenta de prueba de Friendica está a punto de expirar.";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at %s/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Hola %1\$s,\n\nSu cuenta de prueba de %2\$s expirará en menos de cinco días. Esperamos que disfrute este drive de prueba y usar esta oportunidad para encontrar una página web permanente de Friendica para sus comunicaciones sociales integradas. Una lista de sitios públicos está disponible en %s/siteinfo - y para más información ajustando su servidor de Friendica por favor vea la página del proyecto de Friendica en http://friendica.com.";