mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 03:18:48 +00:00
translations updates for 2023.03
This commit is contained in:
parent
91bb323a16
commit
1c677722b3
148 changed files with 1875 additions and 2233 deletions
|
@ -10,21 +10,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2021-04-06 01:49+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: 2022-12-10 14:42-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 10:34+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"
|
||||
|
||||
#: nsfw.php:68 nsfw.php:72
|
||||
msgid "Content Filter (NSFW and more)"
|
||||
msgstr "Filtro de contenido (NSFW y más)"
|
||||
|
||||
#: nsfw.php:76
|
||||
#: nsfw.php:65
|
||||
msgid ""
|
||||
"This addon searches for specified words/text in posts and collapses them. It"
|
||||
" can be used to filter content tagged with for instance #NSFW that may be "
|
||||
|
@ -32,28 +28,35 @@ msgid ""
|
|||
"is also useful for hiding irrelevant or annoying content from direct view."
|
||||
msgstr "Este complemento busca palabras / texto específicos en las publicaciones y las contrae. Se puede utilizar para filtrar contenido etiquetado con, por ejemplo, #NSFW que puede considerarse inapropiado en determinados momentos o lugares, como en el trabajo. También es útil para ocultar contenido irrelevante o molesto de la vista directa."
|
||||
|
||||
#: nsfw.php:77
|
||||
#: nsfw.php:66
|
||||
msgid "Enable Content filter"
|
||||
msgstr "Habilitar filtro de contenido"
|
||||
|
||||
#: nsfw.php:80
|
||||
#: nsfw.php:67
|
||||
msgid "Comma separated list of keywords to hide"
|
||||
msgstr "Lista de palabras claves separadas por coma para colapsar el contenido correspondiente."
|
||||
|
||||
#: nsfw.php:84
|
||||
msgid "Save Settings"
|
||||
msgstr "Grabar ajustes"
|
||||
#: nsfw.php:67
|
||||
msgid ""
|
||||
"Use /expression/ to provide regular expressions, #tag to specfically match "
|
||||
"hashtags (case-insensitive), or regular words (case-sensitive)"
|
||||
msgstr ""
|
||||
|
||||
#: nsfw.php:85
|
||||
msgid "Use /expression/ to provide regular expressions"
|
||||
msgstr "Utiliza /expresión/ para proveer expresiones regulares."
|
||||
#: nsfw.php:72
|
||||
msgid "Content Filter (NSFW and more)"
|
||||
msgstr "Filtro de contenido (NSFW y más)"
|
||||
|
||||
#: nsfw.php:152
|
||||
#: nsfw.php:96
|
||||
#, php-format
|
||||
msgid "Regular expression \"%s\" fails to compile"
|
||||
msgstr ""
|
||||
|
||||
#: nsfw.php:154
|
||||
#, php-format
|
||||
msgid "Filtered tag: %s"
|
||||
msgstr "Etiqueta filtrada: %s"
|
||||
|
||||
#: nsfw.php:154
|
||||
#: nsfw.php:156
|
||||
#, php-format
|
||||
msgid "Filtered word: %s"
|
||||
msgstr "Palabra filtrada: %s"
|
||||
|
|
|
@ -3,13 +3,11 @@
|
|||
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['Content Filter (NSFW and more)'] = 'Filtro de contenido (NSFW y más)';
|
||||
$a->strings['This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view.'] = 'Este complemento busca palabras / texto específicos en las publicaciones y las contrae. Se puede utilizar para filtrar contenido etiquetado con, por ejemplo, #NSFW que puede considerarse inapropiado en determinados momentos o lugares, como en el trabajo. También es útil para ocultar contenido irrelevante o molesto de la vista directa.';
|
||||
$a->strings['Enable Content filter'] = 'Habilitar filtro de contenido';
|
||||
$a->strings['Comma separated list of keywords to hide'] = 'Lista de palabras claves separadas por coma para colapsar el contenido correspondiente.';
|
||||
$a->strings['Save Settings'] = 'Grabar ajustes';
|
||||
$a->strings['Use /expression/ to provide regular expressions'] = 'Utiliza /expresión/ para proveer expresiones regulares.';
|
||||
$a->strings['Content Filter (NSFW and more)'] = 'Filtro de contenido (NSFW y más)';
|
||||
$a->strings['Filtered tag: %s'] = 'Etiqueta filtrada: %s';
|
||||
$a->strings['Filtered word: %s'] = 'Palabra filtrada: %s';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue