-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.alias.php
35 lines (32 loc) · 1023 Bytes
/
Cargo.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
<?php
/**
* Aliases for the Cargo special pages.
*
* @file
* @ingroup Extensions
*/
$specialPageAliases = [];
/** English (English) */
$specialPageAliases['en'] = [
'CargoExport' => [ 'CargoExport' ],
'CargoTables' => [ 'CargoTables' ],
'DeleteCargoTable' => [ 'DeleteCargoTable' ],
'Drilldown' => [ 'Drilldown' ],
'CargoTableDiagram' => [ 'CargoTableDiagram' ],
'PageValues' => [ 'PageValues' ],
'CargoQuery' => [ 'CargoQuery', 'ViewData' ],
'SwitchCargoTable' => [ 'SwitchCargoTable' ],
'RecreateCargoData' => [ 'RecreateCargoData' ],
];
/** Simplified Chinese (中文(简体)) */
$specialPageAliases['zh-hans'] = [
'CargoExport' => [ 'Cargo导出' ],
'CargoTables' => [ 'Cargo表' ],
'DeleteCargoTable' => [ '删除Cargo表' ],
'Drilldown' => [ '深入分析' ],
'CargoTableDiagram' => [ 'Cargo图表' ],
'PageValues' => [ '页面值' ],
'CargoQuery' => [ 'Cargo查询', '查看数据' ],
'SwitchCargoTable' => [ '切换Cargo表' ],
'RecreateCargoData' => [ '重新创建Cargo数据' ],
];