mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
fixing a problem with automatization ;-)
This commit is contained in:
parent
214e7d9b1c
commit
a79ca033f4
102 changed files with 819 additions and 0 deletions
|
@ -1,2 +1,15 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
|
||||
}}
|
||||
;
|
||||
$a->strings["Not Safe For Work (General Purpose Content Filter)"] = "Not Safe For Work (General Purpose Content Filter)";
|
||||
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Tento plugin hledá v příspěvcích slova zadáná níže a skryje jakýkoliv obsah, který tyto slova obsahuje v prostředích, kde to není vhodné. Je slušné a doporučené jakékoliv příspěvky s mahotou označit s #NSFW. Tento filtr může také vyhledávat jakékoliv Vámi specifikované slovní spojení, takže může být využit jako obecný kontextový filtr.";
|
||||
$a->strings["Enable Content filter"] = "Povolit Kontextový filtr";
|
||||
$a->strings["Comma separated list of keywords to hide"] = "Čárkou oddělený seznam klíčových slov ke skrytí";
|
||||
$a->strings["Save Settings"] = "Uložit Nastavení";
|
||||
$a->strings["Use /expression/ to provide regular expressions"] = "Použít /výraz/ pro použití regulárních výrazů";
|
||||
$a->strings["NSFW Settings saved."] = "NSFW nastavení uloženo";
|
||||
$a->strings["%s - Click to open/close"] = "%s - Klikněte pro otevření/zavření";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue