Vertaling - April Fools ACP MOD

Vertaling bekijken

Op deze pagina kunt u de vertaling van de modificatie bekijken en downloaden.

April Fools ACP MOD 1.0.1
Laatst gewijzigd door Zookeeper op 31 maart 2010, 23:58
Status: Volledig

Alle vertalers: Zookeeper

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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/*
* @package April Fools ACP
* @version $Id: april-fools-acp.php 8479 2008-06-26 00:22:48Z john010117.2 $
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License

*/

/**
* Dutch translation by zookeeper, 31 maart 2010.
*/

/**
* 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

/**
* NOTE: Most of the language items are used in javascript
* If you want to use quotes or other chars that need escaped, be sure you escape them double 
*/
$lang array_merge($lang, array(
    
'FACP' => array(
        
'1'    => 'Haha! 1 April !!!',
        
'2'    => 'Dacht je nu echt dat we je toegang zouden geven tot onze ACP?',
        
'3'    => 'Jawel hij is leuk ?  of toch niet ?',
        
'4'    => 'Zoek je iets?',
        
'5'    => 'Wat je ook zoekt, je gaat het toch niet vinden.',
        
'6'    => 'Het is goed verstopt, je gaat het echt niet vinden.',
        
'7'    => 'Wat... denk je nu echt dat we je voor de gek houden?',
        
'8'    => 'Denk je nu echt dat we dat zouden doen?',
        
'9'    => 'Uiteindelijk denk je van wel.',
        
'10'    => 'Oke, genoeg nu, hier vind je niks meer.',
        
'11'    => 'Je kunt stoppen met klikken.',
        
'12'    => 'Ja echt, stop nu maar.',
        
'13'    => 'We hopen dat je deze 1 april grap weet te waarderen.',
        
'14'    => 'Het einde, je kunt weer aan de slag op het forum.',
    ),
    
'FACP_TITLE'    => 'ACP Index (Admin Controle Paneel)',
    
'FACP_FOOTER'    => 'Dank naar de <a href="http://startrekguide.com/" target="_blank">Star Trek Guide</a> crew voor het originele idee.',
    
'FACP_TABS'    => array(
        
'1'    => 'Algemeen',
        
'6'    => 'Forums',
        
'9'    => 'Berichten',
        
'12'    => 'Gebruikers en groepen',
        
'16'    => 'Permissies',
        
'21'    => 'Stijlen',
        
'24'    => 'Onderhoud',
        
'27'    => 'Systeem'
    
),
));
?>




*****************
*** Extra tip ***
*****************

Wijzig de volgende regel die je moet invoegen naar de eronder staande regel om ervoor te zorgen dat de nep ACP alleen op 1 april zichtbaar is. Zie ook de install.xml in de originele MOD.

includes/functions.php

'U_FACP' => append_sid("{$phpbb_root_path}acp/index.$phpEx", false, true, $user->session_id),

'U_FACP' => (date('m') == 4 && date('d') == 1) ? append_sid("{$phpbb_root_path}acp/index.$phpEx", false, true, $user->session_id) : '',
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88