added NL translation of blockem addon

This commit is contained in:
Tobias Diekershoff 2018-04-25 17:48:49 +02:00
parent e0bc167742
commit 7fee921cb4
2 changed files with 75 additions and 0 deletions

View File

@ -0,0 +1,59 @@
# ADDON blockem
# Copyright (C)
# This file is distributed under the same license as the Friendica blockem addon package.
#
#
# Translators:
# AgnesElisa <agneselisa@disroot.org>, 2018
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-04-23 17:59+0000\n"
"Last-Translator: AgnesElisa <agneselisa@disroot.org>\n"
"Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: blockem.php:52 blockem.php:56
msgid "\"Blockem\""
msgstr "\"Blockem\""
#: blockem.php:60
msgid ""
"Hides user's content by collapsing posts. Also replaces their avatar with "
"generic image."
msgstr "Verbergt de inhoud van het bericht van de gebruiker. Daarnaast vervangt het de avatar door een standaardafbeelding."
#: blockem.php:61
msgid "Comma separated profile URLS:"
msgstr "Profiel URLs (kommagescheiden):"
#: blockem.php:65
msgid "Save Settings"
msgstr "Instellingen opslaan"
#: blockem.php:78
msgid "BLOCKEM Settings saved."
msgstr "BLOCKEM Instellingen opgeslagen."
#: blockem.php:136
#, php-format
msgid "Filtered user: %s"
msgstr "Gefilterde gebruiker: %s"
#: blockem.php:189
msgid "Unblock Author"
msgstr "Deblokkeer Auteur"
#: blockem.php:191
msgid "Block Author"
msgstr "Auteur blokkeren"
#: blockem.php:223
msgid "blockem settings updated"
msgstr "blockem instellingen geupdatet"

View File

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
return ($n != 1);;
}}
;
$a->strings["\"Blockem\""] = "\"Blockem\"";
$a->strings["Hides user's content by collapsing posts. Also replaces their avatar with generic image."] = "Verbergt de inhoud van het bericht van de gebruiker. Daarnaast vervangt het de avatar door een standaardafbeelding.";
$a->strings["Comma separated profile URLS:"] = "Profiel URLs (kommagescheiden):";
$a->strings["Save Settings"] = "Instellingen opslaan";
$a->strings["BLOCKEM Settings saved."] = "BLOCKEM Instellingen opgeslagen.";
$a->strings["Filtered user: %s"] = "Gefilterde gebruiker: %s";
$a->strings["Unblock Author"] = "Deblokkeer Auteur";
$a->strings["Block Author"] = "Auteur blokkeren";
$a->strings["blockem settings updated"] = "blockem instellingen geupdatet";