mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-11 02:48: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
|
@ -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