-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp_menu.php
63 lines (60 loc) · 2.67 KB
/
app_menu.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
58
59
60
61
62
63
<?php
/*
* FusionPBX
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is FusionPBX
*
* The Initial Developer of the Original Code is
* Mark J Crane <markjcrane@fusionpbx.com>
* Portions created by the Initial Developer are Copyright (C) 2008-2024
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Mark J Crane <markjcrane@fusionpbx.com>
* Tim Fry <tim@fusionpbx.com>
*/
$y=0;
$apps[$x]['menu'][$y]['title']['en-us'] = "Maintenance";
$apps[$x]['menu'][$y]['title']['en-gb'] = "Maintenance";
$apps[$x]['menu'][$y]['title']['ar-eg'] = "صيانة";
$apps[$x]['menu'][$y]['title']['de-at'] = "Wartung";
$apps[$x]['menu'][$y]['title']['de-ch'] = "Wartung";
$apps[$x]['menu'][$y]['title']['de-de'] = "Wartung";
$apps[$x]['menu'][$y]['title']['el-gr'] = "Συντήρηση";
$apps[$x]['menu'][$y]['title']['es-cl'] = "Mantenimiento";
$apps[$x]['menu'][$y]['title']['es-mx'] = "Mantenimiento";
$apps[$x]['menu'][$y]['title']['fr-ca'] = "Entretien";
$apps[$x]['menu'][$y]['title']['fr-fr'] = "Entretien";
$apps[$x]['menu'][$y]['title']['he-il'] = "תחזוקה";
$apps[$x]['menu'][$y]['title']['it-it'] = "Manutenzione";
$apps[$x]['menu'][$y]['title']['nl-nl'] = "Onderhoud";
$apps[$x]['menu'][$y]['title']['pl-pl'] = "Konserwacja";
$apps[$x]['menu'][$y]['title']['pt-br'] = "Manutenção";
$apps[$x]['menu'][$y]['title']['pt-pt'] = "Manutenção";
$apps[$x]['menu'][$y]['title']['ro-ro'] = "întreținere";
$apps[$x]['menu'][$y]['title']['ru-ru'] = "Обслуживание";
$apps[$x]['menu'][$y]['title']['sv-se'] = "Underhåll";
$apps[$x]['menu'][$y]['title']['uk-ua'] = "Технічне обслуговування";
$apps[$x]['menu'][$y]['title']['zh-cn'] = "维护";
$apps[$x]['menu'][$y]['title']['ja-jp'] = "メンテナンス";
$apps[$x]['menu'][$y]['title']['ko-kr'] = "유지";
$apps[$x]['menu'][$y]['uuid'] = "14f45122-cf96-4519-8eee-43a8a47d8734";
$apps[$x]['menu'][$y]['parent_uuid'] = "0438b504-8613-7887-c420-c837ffb20cb1";
$apps[$x]['menu'][$y]['category'] = "internal";
$apps[$x]['menu'][$y]['icon'] = "";
$apps[$x]['menu'][$y]['path'] = "/app/maintenance/maintenance.php";
$apps[$x]['menu'][$y]['order'] = "";
$apps[$x]['menu'][$y]['groups'][] = "superadmin";
$y++;
?>