translation updates

This commit is contained in:
Tobias Diekershoff 2023-12-16 08:59:07 +01:00
parent fa01357445
commit 3a063f999d
67 changed files with 1026 additions and 1930 deletions

View file

@ -10,64 +10,81 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:16+0100\n"
"PO-Revision-Date: 2021-04-06 02:11+0000\n"
"Last-Translator: Senex Petrovic <javierruizo@hotmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
"POT-Creation-Date: 2023-04-29 06:56+0000\n"
"PO-Revision-Date: 2014-06-23 12:58+0000\n"
"Last-Translator: Senex Petrovic <javierruizo@hotmail.com>, 2021\n"
"Language-Team: Spanish (http://app.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"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: tumblr.php:39
#: tumblr.php:243
msgid "Permission denied."
msgstr "Permiso denegado."
#: tumblr.php:69 tumblr.php:283
#: tumblr.php:296
msgid "Save Settings"
msgstr "Guardar ajustes"
#: tumblr.php:71
#: tumblr.php:297
msgid "Consumer Key"
msgstr "Consumer Key"
#: tumblr.php:72
#: tumblr.php:298
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: tumblr.php:177
msgid "You are now authenticated to tumblr."
msgstr "Está ahora autenticado en tumblr."
#: tumblr.php:299
msgid "Maximum tags"
msgstr ""
#: tumblr.php:178
msgid "return to the connector page"
msgstr "Vuelva a la página del conector"
#: tumblr.php:299
msgid ""
"Maximum number of tags that a user can follow. Enter 0 to deactivate the "
"feature."
msgstr ""
#: tumblr.php:194
msgid "Post to Tumblr"
msgstr "Publicar en Tumblr"
#: tumblr.php:224 tumblr.php:228
msgid "Tumblr Export"
msgstr "Exportar a Tumblr "
#: tumblr.php:232
msgid "(Re-)Authenticate your tumblr page"
msgstr "(Re-)autenticar su página de tumblr"
#: tumblr.php:236
msgid "Enable Tumblr Post Addon"
msgstr "Habilitar el complemento de publicación de Tumblr"
#: tumblr.php:242
msgid "Post to Tumblr by default"
msgstr "Publique en Tumblr por defecto"
#: tumblr.php:263
#: tumblr.php:336
msgid "Post to page:"
msgstr "Publicar en página:"
#: tumblr.php:277
#: tumblr.php:342
msgid "(Re-)Authenticate your tumblr page"
msgstr "(Re-)autenticar su página de tumblr"
#: tumblr.php:343
msgid "You are not authenticated to tumblr"
msgstr "No está autenticado en tumblr"
#: tumblr.php:348
msgid "Enable Tumblr Post Addon"
msgstr "Habilitar el complemento de publicación de Tumblr"
#: tumblr.php:349
msgid "Post to Tumblr by default"
msgstr "Publique en Tumblr por defecto"
#: tumblr.php:350
msgid "Import the remote timeline"
msgstr ""
#: tumblr.php:351
msgid "Subscribed tags"
msgstr ""
#: tumblr.php:351
#, php-format
msgid ""
"Comma separated list of up to %d tags that will be imported additionally to "
"the timeline"
msgstr ""
#: tumblr.php:357
msgid "Tumblr Import/Export"
msgstr ""
#: tumblr.php:375
msgid "Post to Tumblr"
msgstr "Publicar en Tumblr"

View file

@ -3,18 +3,15 @@
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
$n = intval($n);
return intval($n != 1);
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
}}
$a->strings['Permission denied.'] = 'Permiso denegado.';
$a->strings['Save Settings'] = 'Guardar ajustes';
$a->strings['Consumer Key'] = 'Consumer Key';
$a->strings['Consumer Secret'] = 'Consumer Secret';
$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 Export'] = 'Exportar a Tumblr ';
$a->strings['Post to page:'] = 'Publicar en página:';
$a->strings['(Re-)Authenticate your tumblr page'] = '(Re-)autenticar su página de tumblr';
$a->strings['You are not authenticated to tumblr'] = 'No está autenticado en tumblr';
$a->strings['Enable Tumblr Post Addon'] = 'Habilitar el complemento de publicación de Tumblr';
$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['Post to Tumblr'] = 'Publicar en Tumblr';