mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-10 18:38:49 +00:00
NL translation THX JeroenED
This commit is contained in:
parent
4cae40ec63
commit
dcbf2f4416
108 changed files with 3908 additions and 42 deletions
102
pumpio/lang/nl/messages.po
Normal file
102
pumpio/lang/nl/messages.po
Normal file
|
@ -0,0 +1,102 @@
|
|||
# ADDON pumpio
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica pumpio 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:56+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"
|
||||
|
||||
#: pumpio.php:38
|
||||
msgid "Permission denied."
|
||||
msgstr "Toegang geweigerd."
|
||||
|
||||
#: pumpio.php:124
|
||||
#, php-format
|
||||
msgid "Unable to register the client at the pump.io server '%s'."
|
||||
msgstr "Niet mogelijk om uw client te registreren op pump.io server '%s'"
|
||||
|
||||
#: pumpio.php:164
|
||||
msgid "You are now authenticated to pumpio."
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:165
|
||||
msgid "return to the connector page"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:183
|
||||
msgid "Post to pumpio"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:221 pumpio.php:225
|
||||
msgid "Pump.io Import/Export/Mirror"
|
||||
msgstr "Pump.io Import/Exporteren/Spiegelen"
|
||||
|
||||
#: pumpio.php:229
|
||||
msgid "pump.io username (without the servername)"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:234
|
||||
msgid "pump.io servername (without \"http://\" or \"https://\" )"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:246
|
||||
msgid "Authenticate your pump.io connection"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:250
|
||||
msgid "Import the remote timeline"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:255
|
||||
msgid "Enable pump.io Post Addon"
|
||||
msgstr "Pump.io Post Addon inschakelen"
|
||||
|
||||
#: pumpio.php:260
|
||||
msgid "Post to pump.io by default"
|
||||
msgstr "Plaatsen op pump.io als standaard instellen "
|
||||
|
||||
#: pumpio.php:265
|
||||
msgid "Should posts be public?"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:270
|
||||
msgid "Mirror all public posts"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:275
|
||||
msgid "Check to delete this preset"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:285
|
||||
msgid "Save Settings"
|
||||
msgstr "Instellingen opslaan"
|
||||
|
||||
#: pumpio.php:515
|
||||
msgid "Pump.io post failed. Queued for retry."
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:587
|
||||
msgid "Pump.io like failed. Queued for retry."
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:875
|
||||
msgid "status"
|
||||
msgstr ""
|
||||
|
||||
#: pumpio.php:879
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr ""
|
28
pumpio/lang/nl/strings.php
Normal file
28
pumpio/lang/nl/strings.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_nl")) {
|
||||
function string_plural_select_nl($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Permission denied."] = "Toegang geweigerd.";
|
||||
$a->strings["Unable to register the client at the pump.io server '%s'."] = "Niet mogelijk om uw client te registreren op pump.io server '%s'";
|
||||
$a->strings["You are now authenticated to pumpio."] = "";
|
||||
$a->strings["return to the connector page"] = "";
|
||||
$a->strings["Post to pumpio"] = "";
|
||||
$a->strings["Pump.io Import/Export/Mirror"] = "Pump.io Import/Exporteren/Spiegelen";
|
||||
$a->strings["pump.io username (without the servername)"] = "";
|
||||
$a->strings["pump.io servername (without \"http://\" or \"https://\" )"] = "";
|
||||
$a->strings["Authenticate your pump.io connection"] = "";
|
||||
$a->strings["Import the remote timeline"] = "";
|
||||
$a->strings["Enable pump.io Post Addon"] = "Pump.io Post Addon inschakelen";
|
||||
$a->strings["Post to pump.io by default"] = "Plaatsen op pump.io als standaard instellen ";
|
||||
$a->strings["Should posts be public?"] = "";
|
||||
$a->strings["Mirror all public posts"] = "";
|
||||
$a->strings["Check to delete this preset"] = "";
|
||||
$a->strings["Save Settings"] = "Instellingen opslaan";
|
||||
$a->strings["Pump.io post failed. Queued for retry."] = "";
|
||||
$a->strings["Pump.io like failed. Queued for retry."] = "";
|
||||
$a->strings["status"] = "";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
|
Loading…
Add table
Add a link
Reference in a new issue