nsfw addon HU translation added THX Balázs Úr

This commit is contained in:
Tobias Diekershoff 2021-03-28 22:35:29 +02:00
parent d3e26c729f
commit a500f95f9c
2 changed files with 74 additions and 0 deletions

58
nsfw/lang/hu/messages.po Normal file
View File

@ -0,0 +1,58 @@
# ADDON nsfw
# Copyright (C)
# This file is distributed under the same license as the Friendica nsfw addon package.
#
#
# Translators:
# Balázs Úr, 2020-2021
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-03-25 23:00+0000\n"
"Last-Translator: Balázs Úr\n"
"Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: nsfw.php:68 nsfw.php:72
msgid "Content Filter (NSFW and more)"
msgstr "Tartalomszűrő (érzékeny tartalmak és egyebek)"
#: nsfw.php:76
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 "
"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."
msgstr "Ez a bővítmény megadott szavakra vagy szövegre keres a bejegyzésekben, és összecsukja azokat. Használható például az #NSFW megjelölésű tartalmak szűréséhez, amelyek bizonyos időkben vagy helyeken nem megfelelőnek tekinthetők, mint például munka közben. Ez hasznos a nem kapcsolódó vagy idegesítő tartalom elrejtéséhez a közvetlen megtekintés elől."
#: nsfw.php:77
msgid "Enable Content filter"
msgstr "Tartalomszűrő engedélyezése"
#: nsfw.php:80
msgid "Comma separated list of keywords to hide"
msgstr "Kulcsszavak vesszővel elválasztott listája az elrejtéshez"
#: nsfw.php:84
msgid "Save Settings"
msgstr "Beállítások mentése"
#: nsfw.php:85
msgid "Use /expression/ to provide regular expressions"
msgstr "Használjon /kifejezést/ reguláris kifejezések megadásához"
#: nsfw.php:152
#, php-format
msgid "Filtered tag: %s"
msgstr "Kiszűrt címke: %s"
#: nsfw.php:154
#, php-format
msgid "Filtered word: %s"
msgstr "Kiszűrt szó: %s"

16
nsfw/lang/hu/strings.php Normal file
View File

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_hu")) {
function string_plural_select_hu($n){
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["Content Filter (NSFW and more)"] = "Tartalomszűrő (érzékeny tartalmak és egyebek)";
$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."] = "Ez a bővítmény megadott szavakra vagy szövegre keres a bejegyzésekben, és összecsukja azokat. Használható például az #NSFW megjelölésű tartalmak szűréséhez, amelyek bizonyos időkben vagy helyeken nem megfelelőnek tekinthetők, mint például munka közben. Ez hasznos a nem kapcsolódó vagy idegesítő tartalom elrejtéséhez a közvetlen megtekintés elől.";
$a->strings["Enable Content filter"] = "Tartalomszűrő engedélyezése";
$a->strings["Comma separated list of keywords to hide"] = "Kulcsszavak vesszővel elválasztott listája az elrejtéshez";
$a->strings["Save Settings"] = "Beállítások mentése";
$a->strings["Use /expression/ to provide regular expressions"] = "Használjon /kifejezést/ reguláris kifejezések megadásához";
$a->strings["Filtered tag: %s"] = "Kiszűrt címke: %s";
$a->strings["Filtered word: %s"] = "Kiszűrt szó: %s";