forked from darenwelsh/SummaryTimeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SummaryTimeline.i18n.php
executable file
·35 lines (31 loc) · 1.12 KB
/
SummaryTimeline.i18n.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
<?php
/**
* Internationalisation file for extension SummaryTimeline.
*
* @file
* @ingroup Extensions
*/
$magicWords = array();
$messages = array();
/** English **/
$messages['en'] = array(
'summarytimeline' => 'summarytimeline',
'summarytimeline-desc' => 'Generates graphic representation of EVA summary timeline.',
);
/** German **/
$messages['de'] = array(
'summarytimeline' => 'zusammenfassung-des-zeitplans',
'summarytimeline-desc' => 'German translation of "Generates graphic representation of EVA summary timeline"'
);
# The $magicWords array is where we'll declare the name of our parser function
# Below we've declared that it will be called "masonry-block", and thus will be
# called in wikitext by doing {{#masonry-block: example | parameters }}
$magicWords['en'] = array(
'summary-timeline' => array(
0, // zero means case-insensitive, 1 means case sensitive
'summary-timeline' // parser function in this language. For English this will probably be the same as above
),
);
$magicWords['de'] = array(
'summary-timeline' => array( 0, 'zusammenfassung-des-zeitplans' ),
);