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,55 @@
# ADDON securemail
# Copyright (C)
# This file is distributed under the same license as the Friendica securemail addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-11 21:14+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Jeroen De Meerleer <me@jeroened.be>, 2018\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"
#: securemail.php:53
msgid "\"Secure Mail\" Settings"
msgstr "\"Secure Mail\" instellingen"
#: securemail.php:54
msgid "Save Settings"
msgstr "Instellingen opslaan"
#: securemail.php:55 securemail.php:76
msgid "Save and send test"
msgstr ""
#: securemail.php:56
msgid "Enable Secure Mail"
msgstr "Secure Mail inschakelen"
#: securemail.php:57
msgid "Public key"
msgstr ""
#: securemail.php:57
msgid "Your public PGP key, ascii armored format"
msgstr ""
#: securemail.php:74
msgid "Secure Mail Settings saved."
msgstr "Secure Mail instellingen opgeslagen"
#: securemail.php:111
msgid "Test email sent"
msgstr ""
#: securemail.php:113
msgid "There was an error sending the test email"
msgstr ""

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
$n = intval($n);
return ($n != 1);;
}}
;
$a->strings["\"Secure Mail\" Settings"] = "\"Secure Mail\" instellingen";
$a->strings["Save Settings"] = "Instellingen opslaan";
$a->strings["Save and send test"] = "";
$a->strings["Enable Secure Mail"] = "Secure Mail inschakelen";
$a->strings["Public key"] = "";
$a->strings["Your public PGP key, ascii armored format"] = "";
$a->strings["Secure Mail Settings saved."] = "Secure Mail instellingen opgeslagen";
$a->strings["Test email sent"] = "";
$a->strings["There was an error sending the test email"] = "";