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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
<?php
/**
* Class for Intuition for Translatewiki.net
*
* @file
* @author Niklas Laxström
* @author Krinkle
* @copyright Copyright © 2008-2013, Niklas Laxström
* @copyright Copyright © 2011, Krinkle
* @license GPL-2.0-or-later
*/
/**
* Support for tools using Intuition at the Toolserver and Wikimedia Labs.
*/
class PremadeIntuitionTextdomains extends PremadeMediawikiExtensionGroups {
protected $useConfigure = false;
protected $groups;
protected $idPrefix = 'tsint-';
protected $namespace = NS_INTUITION;
protected function processGroups( $groups ) {
$fixedGroups = [];
foreach ( $groups as $g ) {
if ( !is_array( $g ) ) {
$g = [ $g ];
}
$name = $g['name'];
$sanitizedName = preg_replace( '/\s+/', '', strtolower( $name ) );
if ( isset( $g['id'] ) ) {
$id = $g['id'];
} else {
$id = $this->idPrefix . $sanitizedName;
}
if ( isset( $g['file'] ) ) {
$file = $g['file'];
} else {
// Canonical names for Intuition text-domains are lowercase
// eg. "MyTool" -> "mytool/en.json"
$file = "$sanitizedName/%CODE%.json";
}
if ( isset( $g['descmsg'] ) ) {
$descmsg = $g['descmsg'];
} else {
$descmsg = "$id-desc";
}
if ( isset( $g['url'] ) ) {
$url = $g['url'];
} else {
$url = false;
}
$newgroup = [
'name' => 'Intuition - ' . $name,
'file' => $file,
'descmsg' => $descmsg,
'url' => $url,
];
// Prefix is required, if not customized use the sanitized name
if ( !isset( $g['prefix'] ) ) {
$g['prefix'] = "$sanitizedName-";
}
// All messages are prefixed with their groupname
$g['mangle'] = [ '*' ];
// Prevent E_NOTICE undefined index.
// PremadeMediawikiExtensionGroups::factory should probably check this better instead
if ( !isset( $g['ignored'] ) ) {
$g['ignored'] = [];
}
if ( !isset( $g['optional'] ) ) {
$g['optional'] = [];
}
$g['format'] = 'json';
$copyvars = [
'aliasfile',
'desc',
'format',
'ignored',
'magicfile',
'mangle',
'optional',
'prefix',
'var',
];
foreach ( $copyvars as $var ) {
if ( isset( $g[$var] ) ) {
$newgroup[$var] = $g[$var];
}
}
$fixedGroups[$id] = $newgroup;
}
return $fixedGroups;
}
}
|