added NÖ translation for blockbot addon THX JeroenED

This commit is contained in:
Tobias Diekershoff 2019-08-08 14:54:22 +02:00
parent 10f83b26e6
commit 57bb3e604f
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,42 @@
# ADDON blockbot
# Copyright (C)
# This file is distributed under the same license as the Friendica blockbot addon package.
#
#
# Translators:
# Jeroen De Meerleer <me@jeroened.be>, 2019
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-08-07 09:03+0200\n"
"PO-Revision-Date: 2019-08-07 07:43+0000\n"
"Last-Translator: Jeroen De Meerleer <me@jeroened.be>, 2019\n"
"Language-Team: Dutch (https://www.transifex.com/Friendica/teams/12172/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"
#: blockbot.php:35
msgid "Save Settings"
msgstr "Instellingen opslaan"
#: blockbot.php:36
msgid "Allow \"good\" crawlers"
msgstr "\"Goede\" crawlers toestaan"
#: blockbot.php:37
msgid "Block GabSocial"
msgstr "Blokeer GabSocial"
#: blockbot.php:38
msgid "Training mode"
msgstr "Training modus"
#: blockbot.php:46
msgid "Settings updated."
msgstr "Instellingen opgeslagen"

View File

@ -0,0 +1,13 @@
<?php
if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
$n = intval($n);
return ($n != 1);;
}}
;
$a->strings["Save Settings"] = "Instellingen opslaan";
$a->strings["Allow \"good\" crawlers"] = "\"Goede\" crawlers toestaan";
$a->strings["Block GabSocial"] = "Blokeer GabSocial";
$a->strings["Training mode"] = "Training modus";
$a->strings["Settings updated."] = "Instellingen opgeslagen";