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,59 @@
# ADDON webrtc
# Copyright (C)
# This file is distributed under the same license as the Friendica webrtc 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-23 14:45+0200\n"
"PO-Revision-Date: 2018-08-24 13:51+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"
#: webrtc.php:20
msgid "WebRTC Videochat"
msgstr "WebRTC Videochat"
#: webrtc.php:26
msgid "Save Settings"
msgstr "Instellingen opslaan"
#: webrtc.php:27
msgid "WebRTC Base URL"
msgstr ""
#: webrtc.php:27
msgid ""
"Page your users will create a WebRTC chat room on. For example you could use"
" https://live.mayfirst.org ."
msgstr ""
#: webrtc.php:33
msgid "Settings updated."
msgstr "Instellingen opgeslagen"
#: webrtc.php:47
msgid "Video Chat"
msgstr ""
#: webrtc.php:48
msgid ""
"WebRTC is a video and audio conferencing tool that works with Firefox "
"(version 21 and above) and Chrome/Chromium (version 25 and above). Just "
"create a new chat room and send the link to someone you want to chat with."
msgstr ""
#: webrtc.php:50
msgid ""
"Please contact your friendica admin and send a reminder to configure the "
"WebRTC addon."
msgstr ""

View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
$n = intval($n);
return ($n != 1);;
}}
;
$a->strings["WebRTC Videochat"] = "WebRTC Videochat";
$a->strings["Save Settings"] = "Instellingen opslaan";
$a->strings["WebRTC Base URL"] = "";
$a->strings["Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org ."] = "";
$a->strings["Settings updated."] = "Instellingen opgeslagen";
$a->strings["Video Chat"] = "";
$a->strings["WebRTC is a video and audio conferencing tool that works with Firefox (version 21 and above) and Chrome/Chromium (version 25 and above). Just create a new chat room and send the link to someone you want to chat with."] = "";
$a->strings["Please contact your friendica admin and send a reminder to configure the WebRTC addon."] = "";