Op deze pagina kunt u de vertaling van de modificatie bekijken en downloaden.
Advanced Quick Reply 1.0.0
Laatst gewijzigd door Tom V op 22 aug 2008, 12:58
Status: Volledig
Alle vertalers: Tom V, steefaman
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
*
* quickreply [Dutch]
*
* @package language
* @version $Id: quickreply Z3u5 Exp $
* @copyright (c) 2007 www.suportephpbb.org
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* Nederlandse vertaling door steefaman; Ubersoft.nl (laat dit AUB staan!)
*
*/
/**
* DO NOT CHANGE
*/
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
$lang = array_merge($lang, array(
'ATTACH_SIG' => 'Voeg een onderschrift toe (je onderschrift kan veranderd worden in het gebruikerspaneel)',
'MORE_SMILIES' => 'Toon meer smilies',
'NO_TEXT_SELECTED' => 'Selecteer tekst en probeer opnieuw',
'NOTIFY_REPLY' => 'Geef een melding wanneer een reactie is geplaatst',
'QUOTE_SELECTED' => 'Quote geselecteerd',
'QUOTE_LAST_POST' => 'Quote het laatste bericht',
'POST_REPLY' => 'Plaats een reactie',
'TOO_FEW_CHARS' => 'Je bericht bevat te weinig tekens.',
'SMILIES' => 'Smilies',
));
?>
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46