yourls: added NL translation THX Karel Vandecandelaere

This commit is contained in:
Tobias Diekershoff 2018-03-21 07:01:21 +01:00
parent 1d32d790fa
commit f0ca59e4ee
2 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,48 @@
# ADDON yourls
# Copyright (C)
# This file is distributed under the same license as the Friendica yourls addon package.
#
#
# Translators:
# Karel Vandecandelaere <karel@dasrakel.eu>, 2018
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2018-03-20 13:29+0000\n"
"Last-Translator: Karel Vandecandelaere <karel@dasrakel.eu>\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"
#: yourls.php:55
msgid "YourLS Settings"
msgstr "YourLS-instellingen"
#: yourls.php:57
msgid "URL: http://"
msgstr "URL: http://"
#: yourls.php:62
msgid "Username:"
msgstr "Gebruikersnaam:"
#: yourls.php:67
msgid "Password:"
msgstr "Wachtwoord:"
#: yourls.php:72
msgid "Use SSL "
msgstr "Gebruik SSL"
#: yourls.php:76
msgid "Submit"
msgstr "Toepassen"
#: yourls.php:92
msgid "yourls Settings saved."
msgstr "YourLS-instellingen bijgewerkt."

View File

@ -0,0 +1,14 @@
<?php
if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
return ($n != 1);;
}}
;
$a->strings["YourLS Settings"] = "YourLS-instellingen";
$a->strings["URL: http://"] = "URL: http://";
$a->strings["Username:"] = "Gebruikersnaam:";
$a->strings["Password:"] = "Wachtwoord:";
$a->strings["Use SSL "] = "Gebruik SSL";
$a->strings["Submit"] = "Toepassen";
$a->strings["yourls Settings saved."] = "YourLS-instellingen bijgewerkt.";