NL translation THX JeroenED

This commit is contained in:
Tobias Diekershoff 2018-08-25 21:12:02 +02:00
parent 4cae40ec63
commit dcbf2f4416
108 changed files with 3908 additions and 42 deletions

View file

@ -0,0 +1,76 @@
# ADDON newmemberwidget
# Copyright (C)
# This file is distributed under the same license as the Friendica newmemberwidget addon package.
#
#
# Translators:
# Jeroen De Meerleer <me@jeroened.be>, 2018
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-01 14:12+0200\n"
"PO-Revision-Date: 2018-08-24 13:40+0000\n"
"Last-Translator: Jeroen De Meerleer <me@jeroened.be>\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"
#: newmemberwidget.php:21
msgid "New Member"
msgstr "Nieuw lid"
#: newmemberwidget.php:22
msgid "Tips for New Members"
msgstr "Tips voor nieuwe leden"
#: newmemberwidget.php:24
msgid "Global Support Forum"
msgstr ""
#: newmemberwidget.php:26
msgid "Local Support Forum"
msgstr ""
#: newmemberwidget.php:49
msgid "Save Settings"
msgstr "Instellingen opslaan"
#: newmemberwidget.php:50
msgid "Message"
msgstr ""
#: newmemberwidget.php:50
msgid "Your message for new members. You can use bbcode here."
msgstr ""
#: newmemberwidget.php:51
msgid "Add a link to global support forum"
msgstr ""
#: newmemberwidget.php:51
msgid "Should a link to the global support forum be displayed?"
msgstr ""
#: newmemberwidget.php:52
msgid "Add a link to the local support forum"
msgstr ""
#: newmemberwidget.php:52
msgid ""
"If you have a local support forum and wand to have a link displayed in the "
"widget, check this box."
msgstr ""
#: newmemberwidget.php:53
msgid "Name of the local support group"
msgstr ""
#: newmemberwidget.php:53
msgid ""
"If you checked the above, specify the <em>nickname</em> of the local support"
" group here (i.e. helpers)"
msgstr ""

View file

@ -0,0 +1,21 @@
<?php
if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
$n = intval($n);
return ($n != 1);;
}}
;
$a->strings["New Member"] = "Nieuw lid";
$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
$a->strings["Global Support Forum"] = "";
$a->strings["Local Support Forum"] = "";
$a->strings["Save Settings"] = "Instellingen opslaan";
$a->strings["Message"] = "";
$a->strings["Your message for new members. You can use bbcode here."] = "";
$a->strings["Add a link to global support forum"] = "";
$a->strings["Should a link to the global support forum be displayed?"] = "";
$a->strings["Add a link to the local support forum"] = "";
$a->strings["If you have a local support forum and wand to have a link displayed in the widget, check this box."] = "";
$a->strings["Name of the local support group"] = "";
$a->strings["If you checked the above, specify the <em>nickname</em> of the local support group here (i.e. helpers)"] = "";