translations updates for 2023.03

This commit is contained in:
Tobias Diekershoff 2023-04-09 07:58:49 +02:00
parent 91bb323a16
commit 1c677722b3
148 changed files with 1875 additions and 2233 deletions

View file

@ -11,21 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-01 11:11-0400\n"
"PO-Revision-Date: 2018-08-16 10:09+0000\n"
"Last-Translator: Aditoo\n"
"Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
"POT-Creation-Date: 2022-12-10 14:42-0500\n"
"PO-Revision-Date: 2014-06-23 10:34+0000\n"
"Last-Translator: Aditoo, 2018\n"
"Language-Team: Czech (http://app.transifex.com/Friendica/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: nsfw.php:77 nsfw.php:81
msgid "Content Filter (NSFW and more)"
msgstr "Filtr obsahu (citlivý obsah a další)"
#: nsfw.php:85
#: 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 "
@ -33,32 +29,35 @@ msgid ""
"is also useful for hiding irrelevant or annoying content from direct view."
msgstr "Tento doplněk vyhledává specifikovaná slova/text v příspěvcích a skrývá je. Může být použit pro filtrování obsahu označeného štítky, jako například #NSFW, který může být považován za nevhodný v určitých časech či místech, například když jste v práci. Může být také užitečný ke skrývání nepodstatného či nepříjemného obsahu z přímého pohledu."
#: nsfw.php:86
#: nsfw.php:66
msgid "Enable Content filter"
msgstr "Povolit filtr obsahu"
#: nsfw.php:89
#: nsfw.php:67
msgid "Comma separated list of keywords to hide"
msgstr "Čárkou oddělený seznam klíčových slov ke skrytí"
msgstr "Seznam klíčových slov ke skrytí, oddělených čárkami"
#: nsfw.php:93
msgid "Save Settings"
msgstr "Uložit nastavení"
#: 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:94
msgid "Use /expression/ to provide regular expressions"
msgstr "Použijte /výraz/ pro použití regulárních výrazů"
#: nsfw.php:72
msgid "Content Filter (NSFW and more)"
msgstr "Filtr obsahu (citlivý obsah a další)"
#: nsfw.php:109
msgid "NSFW Settings saved."
msgstr "Nastavení NSFW uloženo"
#: nsfw.php:96
#, php-format
msgid "Regular expression \"%s\" fails to compile"
msgstr ""
#: nsfw.php:162
#: nsfw.php:154
#, php-format
msgid "Filtered tag: %s"
msgstr "Filtrovaná značka: %s"
msgstr "Filtrovaný štítek: %s"
#: nsfw.php:164
#: nsfw.php:156
#, php-format
msgid "Filtered word: %s"
msgstr "Filtrované slovo: %s"

View file

@ -5,12 +5,9 @@ function string_plural_select_cs($n){
$n = intval($n);
if (($n == 1 && $n % 1 == 0)) { return 0; } else if (($n >= 2 && $n <= 4 && $n % 1 == 0)) { return 1; } else if (($n % 1 != 0 )) { return 2; } else { return 3; }
}}
$a->strings['Content Filter (NSFW and more)'] = 'Filtr obsahu (citlivý obsah a další)';
$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.'] = 'Tento doplněk vyhledává specifikovaná slova/text v příspěvcích a skrývá je. Může být použit pro filtrování obsahu označeného štítky, jako například #NSFW, který může být považován za nevhodný v určitých časech či místech, například když jste v práci. Může být také užitečný ke skrývání nepodstatného či nepříjemného obsahu z přímého pohledu.';
$a->strings['Enable Content filter'] = 'Povolit filtr obsahu';
$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žijte /výraz/ pro použití regulárních výrazů';
$a->strings['NSFW Settings saved.'] = 'Nastavení NSFW uloženo';
$a->strings['Filtered tag: %s'] = 'Filtrovaná značka: %s';
$a->strings['Comma separated list of keywords to hide'] = 'Seznam klíčových slov ke skrytí, oddělených čárkami';
$a->strings['Content Filter (NSFW and more)'] = 'Filtr obsahu (citlivý obsah a další)';
$a->strings['Filtered tag: %s'] = 'Filtrovaný štítek: %s';
$a->strings['Filtered word: %s'] = 'Filtrované slovo: %s';