-
Notifications
You must be signed in to change notification settings - Fork 0
/
ParserFun.i18n.magic.php
38 lines (33 loc) · 1.02 KB
/
ParserFun.i18n.magic.php
1
2
3
4
5
6
7
8
9
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
<?php
#coding: utf-8
/**
* Internationalization file for magic words of the 'Parser Fun' extension.
*
* @since 0.1
*
* @file ParserFun.i18n.magic.php
* @ingroup ParserFun
* @author Daniel Werner < [email protected] >
*/
$magicWords = array();
/** English
* @author Daniel Werner
*/
$magicWords['en'] = array(
'parse' => array( 0, 'parse' ),
'this' => array( 1, 'THIS' ),
'caller' => array( 1, 'CALLER' ),
);
/** Message documentation (Message documentation)
* @author Daniel Werner
*/
$magicWords['qqq'] = array(
'this' => array( 1, 'Keyword to put in front of a variable like "{{THIS:PAGENAME}}". This will output the pagename of the page where it is defined on instead of the page actually being parsed. "THIS" refers to that page.' ),
'caller' => array( 1, 'Variable/Parser function returning an templates direct initiator or with options even all or just specific initiators.' ),
);
/** German (Deutsch)
* @author Daniel Werner
*/
$magicWords['de'] = array(
'this' => array( 1, 'DIESER', 'DIESE', 'DIESES' ),
);