2016-10-13 05:21:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_es")) {
|
|
|
|
function string_plural_select_es($n){
|
2021-02-01 17:47:38 +00:00
|
|
|
$n = intval($n);
|
2023-12-16 07:59:07 +00:00
|
|
|
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
|
2016-10-13 05:21:34 +00:00
|
|
|
}}
|
2021-10-10 06:27:53 +00:00
|
|
|
$a->strings['Permission denied.'] = 'Permiso denegado.';
|
|
|
|
$a->strings['Save Settings'] = 'Guardar ajustes';
|
|
|
|
$a->strings['Consumer Key'] = 'Consumer Key';
|
|
|
|
$a->strings['Consumer Secret'] = 'Consumer Secret';
|
2023-12-16 07:59:07 +00:00
|
|
|
$a->strings['Post to page:'] = 'Publicar en página:';
|
2021-10-10 06:27:53 +00:00
|
|
|
$a->strings['(Re-)Authenticate your tumblr page'] = '(Re-)autenticar su página de tumblr';
|
2023-12-16 07:59:07 +00:00
|
|
|
$a->strings['You are not authenticated to tumblr'] = 'No está autenticado en tumblr';
|
2021-10-10 06:27:53 +00:00
|
|
|
$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';
|
2023-12-16 07:59:07 +00:00
|
|
|
$a->strings['Post to Tumblr'] = 'Publicar en Tumblr';
|