mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-21 21:03:42 +00:00
advancedcontentfilter updated ES translation THX Senex Petrovic
This commit is contained in:
parent
9305bc9e6e
commit
291c85c7af
2 changed files with 8 additions and 5 deletions
|
@ -8,6 +8,7 @@
|
|||
# Yasmine A <yasmine.elachkar@gmail.com>, 2018
|
||||
# Julio Cova, 2019
|
||||
# Boris Daniel Martinez Millàn <borisdanielmartinezmillan@gmail.com>, 2021
|
||||
# Senex Petrovic <javierruizo@hotmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
|
@ -16,7 +17,7 @@ msgstr ""
|
|||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2018-05-24 06:41+0000\n"
|
||||
"Last-Translator: Boris Daniel Martinez Millàn <borisdanielmartinezmillan@gmail.com>, 2021\n"
|
||||
"Last-Translator: Senex Petrovic <javierruizo@hotmail.com>, 2021\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/Friendica/teams/12172/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -56,6 +57,11 @@ msgid ""
|
|||
"For a complete reference of the available operations and variables, check "
|
||||
"the help page."
|
||||
msgstr ""
|
||||
"Agregue y administre sus reglas de filtrado de contenido personal en esta "
|
||||
"pantalla. Las reglas tienen un nombre y una expresión arbitraria que se "
|
||||
"comparará con los datos de la publicación. Para obtener una referencia "
|
||||
"completa de las operaciones y variables disponibles, consulte la página de "
|
||||
"ayuda."
|
||||
|
||||
#: advancedcontentfilter.php:211
|
||||
msgid "Your rules"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
if(! function_exists("string_plural_select_es")) {
|
||||
function string_plural_select_es($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["Method not found"] = "Método no encontrado";
|
||||
|
@ -12,9 +12,7 @@ $a->strings["Advanced Content Filter"] = "Filtro de contenido avanzado";
|
|||
$a->strings["Back to Addon Settings"] = "Volver a Ajustes de Complemento";
|
||||
$a->strings["Add a Rule"] = "Añadir una regla";
|
||||
$a->strings["Help"] = "Ayuda";
|
||||
$a->strings["Add and manage your personal content filter rules in this screen. Rules have a name and an arbitrary expression that will be matched against post data. For a complete reference of the available operations and variables, check the help page."] = "";
|
||||
$a->strings["Your rules"] = "Tus reglas";
|
||||
$a->strings["You have no rules yet! Start adding one by clicking on the button above next to the title."] = "¡Aún no tienes reglas! Empieza añadiendo una haciendo clic en el botón de arriba al lado del título. ";
|
||||
$a->strings["Disabled"] = "Desactivado";
|
||||
$a->strings["Enabled"] = "Activado";
|
||||
$a->strings["Disable this rule"] = "Desactivar esta regla";
|
||||
|
@ -30,7 +28,6 @@ $a->strings["Rule Name"] = "Nombre de la regla";
|
|||
$a->strings["Rule Expression"] = "Expresión de la regla";
|
||||
$a->strings["Cancel"] = "Cancelar";
|
||||
$a->strings["You must be logged in to use this method"] = "Debe estar registrado para usar este método";
|
||||
$a->strings["Invalid form security token, please refresh the page."] = "Token de seguridad de formulario inválido, por favor actualice la página.";
|
||||
$a->strings["The rule name and expression are required."] = "El nombre y la expresión de la regla son obligatorios.";
|
||||
$a->strings["Rule successfully added"] = "Regla añadida exitosamente";
|
||||
$a->strings["Rule doesn't exist or doesn't belong to you."] = "La regla no existe o no te pertenece.";
|
||||
|
|
Loading…
Reference in a new issue