-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPronunciationRecording.alias.php
50 lines (42 loc) · 1.1 KB
/
PronunciationRecording.alias.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
<?php
/**
* Aliases for PronunciationRecording
*
* @file
* @ingroup Extensions
*/
$specialPageAliases = [];
/** English
* @author Rahul Maliakkal
*/
$specialPageAliases[ 'en' ] = [
'PronunciationRecording' => [ 'PronunciationRecording', 'Pronunciation Recording' ],
];
/** Bosnian (bosanski)
* @author Zoranzoki21
*/
$specialPageAliases[ 'bs' ] = [
'PronunciationRecording' => [ 'SnimanjeIzgovora', 'Snimanje_izgovora' ],
];
/** Spanish (Español) */
$specialPageAliases[ 'es' ] = [
'PronunciationRecording' => [ 'Grabar_pronunciación' ],
];
/** Croatian (hrvatski)
* @author Zoranzoki21
*/
$specialPageAliases[ 'hr' ] = [
'PronunciationRecording' => [ 'SnimanjeIzgovora', 'Snimanje_izgovora' ],
];
/** Serbian Cyrillic (српски (ћирилица))
* @author Zoranzoki21
*/
$specialPageAliases[ 'sr-ec' ] = [
'PronunciationRecording' => [ 'СнимањеИзговора', 'Снимање_изговора' ],
];
/** Serbian Latin (srpski (latinica))
* @author Zoranzoki21
*/
$specialPageAliases[ 'sr-el' ] = [
'PronunciationRecording' => [ 'SnimanjeIzgovora', 'Snimanje_izgovora' ],
];