Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions language/nl/acp_common.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php
/**
*
* phpBB mentions. An extension for the phpBB Forum Software package.
*
* @copyright (c) 2016, paul999, https://www.phpbbextensions.io
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

$lang = array_merge($lang, array(
'MENTION_LENGTH' => 'Vermelding systeem minimale lengte',
'MENTION_LENGTH_EXPLAIN' => 'The minimum text length before the simple mention dropdown is shown.
On larger boards you might want to increase this value.',
'MENTION_COLOR' => 'Vermelding systeem kleur',
'MENTION_COLOR_EXPLAIN' => 'Deze kleur wordt in het bericht gebruikt om te bepalen welke gebruiker wordt genoemd. Alleen hexadecimale waarden kunnen worden gebruikt.',
'MENTION_COLOR_INVALID' => 'De geselecteerde vermelding kleur (%s) is ongeldig. Selecteer een geldige HEX kleur, zonder #',
'MENTION_MAX_RESULTS' => 'Eenvoudige vermelding maximale resultaten',
'MENTION_MAX_RESULTS_EXPLAIN' => 'Het maximale aantal gebruikers wordt weergegeven in de vervolgkeuzelijst. Op grotere forums wil je deze waarde misschien verlagen',
'MENTION_LARGE_GROUPS' => 'Vermeld grote groepsgrootte',
'MENTION_LARGE_GROUPS_EXPLAIN' => 'Als de groep meer leden heeft dan het opgegeven aantal, is de permissie “Mag grote groepen vermelden” vereist.'
));
30 changes: 30 additions & 0 deletions language/nl/common.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php
/**
*
* phpBB mentions. An extension for the phpBB Forum Software package.
*
* @copyright (c) 2016, paul999, https://www.phpbbextensions.io
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

/**
* As there is no proper way of including this file just when the notification is
* loaded we need to include it on all pages. Make sure to only include important
* language items (That are directly needed by the notification system) in this file.
*/
$lang = array_merge($lang, array(
'MENTION_MENTION_NOTIFICATION' => 'U werd vernoemd door %1$s<br>in “%2$s”',
'NOTIFICATION_TYPE_MENTION' => 'Iemand vernoemde mij',
'MENTION_GROUP_NAME' => '(Groep. Zal in totaal {CNT} gebruikers op de hoogte stellen)', // Do not translate/change {CNT}
));
10 changes: 10 additions & 0 deletions language/nl/email/mention_mail.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Subject: You have been mentioned

Hallo,

Je bent zojuist genoemd door "{AUTHOR_NAME} in "{TOPIC_TITLE}" op "{SITENAME}".

Gebruik deze link om het bericht te bekijken waarin u werd genoemd:
{U_LINK_TO_TOPIC}

{EMAIL_SIG}
47 changes: 47 additions & 0 deletions language/nl/permissions_mention.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?php
/**
*
* phpBB mentions. An extension for the phpBB Forum Software package.
*
* @copyright (c) 2016, paul999, https://www.phpbbextensions.io
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge(
$lang, array(
'ACL_U_CAN_MENTION' => 'Kan het vermeldingssysteem gebruiken',
'ACL_U_CAN_MENTION_GROUPS' => 'Kan groepen vermelden',
'ACL_U_CAN_MENTION_LARGE_GROUPS' => 'Kan grote groepen vermelden (zie configuratie voor instellingen voor grote groepen)'

)
);