forked from wikimedia/mediawiki-extensions-FlexDiagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FlexDiagrams.i18n.namespaces.php
57 lines (46 loc) · 1.15 KB
/
FlexDiagrams.i18n.namespaces.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* Namespace internationalization for the Flex Diagrams extension.
*
* @file FDNamespaces.php
* @ingroup FlexDiagrams
*
* @license GPL-2.0-or-later
* @author Yaron Koren
*/
$namespaceNames = [];
// For wikis where the FlexDiagrams extension is not installed.
if ( !defined( 'FD_NS_BPMN' ) ) {
define( 'FD_NS_BPMN', 740 );
}
if ( !defined( 'FD_NS_BPMN_TALK' ) ) {
define( 'FD_NS_BPMN_TALK', 741 );
}
if ( !defined( 'FD_NS_GANTT' ) ) {
define( 'FD_NS_GANTT', 742 );
}
if ( !defined( 'FD_NS_GANTT_TALK' ) ) {
define( 'FD_NS_GANTT_TALK', 743 );
}
if ( !defined( 'FD_NS_MERMAID' ) ) {
define( 'FD_NS_MERMAID', 744 );
}
if ( !defined( 'FD_NS_MERMAID_TALK' ) ) {
define( 'FD_NS_MERMAID_TALK', 745 );
}
if ( !defined( 'FD_NS_DRAWIO' ) ) {
define( 'FD_NS_DRAWIO', 746 );
}
if ( !defined( 'FD_NS_DRAWIO_TALK' ) ) {
define( 'FD_NS_DRAWIO_TALK', 747 );
}
$namespaceNames['en'] = [
FD_NS_BPMN => 'BPMN',
FD_NS_BPMN_TALK => 'BPMN_talk',
FD_NS_GANTT => 'Gantt',
FD_NS_GANTT_TALK => 'Gantt_talk',
FD_NS_DRAWIO => 'Drawio',
FD_NS_DRAWIO_TALK => 'Drawio_talk',
FD_NS_MERMAID => 'Mermaid',
FD_NS_MERMAID_TALK => 'Mermaid_talk'
];