-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
104 lines (86 loc) · 3.12 KB
/
config.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
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
<?php
return [
/*
|--------------------------------------------------------------------------
| Language Name (required)
|--------------------------------------------------------------------------
|
| The name of your language pack, which will be displayed in the Languages
| list in the operator area. Can be either a plain text name or a language
| key to work with translations.
|
*/
'name' => 'French',
/*
|--------------------------------------------------------------------------
| Language Code (required)
|--------------------------------------------------------------------------
|
| The code of your language pack, confirming to BCP 47 using a ISO_639-1
| locale code and an optional ISO_3166-1 ALPHA-2 regional identifier. For
| example, valid identifiers are: 'en', 'es', 'en-GB', 'en-US'.
|
*/
'code' => 'fr',
/*
|--------------------------------------------------------------------------
| Language URI (optional)
|--------------------------------------------------------------------------
|
| The home page of the language pack - where you may store documentation
| or general information about the language.
|
*/
'uri' => '',
/*
|--------------------------------------------------------------------------
| Language Version (optional)
|--------------------------------------------------------------------------
|
| The current version number of the language pack, such as 1.0 or 1.0.3.
| Note that versions are compared using version_compare() e.g. 1.02 is
| greater than 1.1.
|
*/
'version' => '1.1',
/*
|--------------------------------------------------------------------------
| Language Author (optional)
|--------------------------------------------------------------------------
|
| The name of the language pack author. More than one author may be
| listed as a string.
|
*/
'author' => 'SupportPal Limited',
/*
|--------------------------------------------------------------------------
| Language Author URI (optional)
|--------------------------------------------------------------------------
|
| Optionally provide a link to the author's profile or contact page.
|
*/
'author_uri' => '',
/*
|--------------------------------------------------------------------------
| Language Icon (optional)
|--------------------------------------------------------------------------
|
| An icon for the language pack. Set the full path to an image on the file
| system.
|
*/
'icon' => __DIR__ . '/Views/assets/img/icon.png',
/*
|--------------------------------------------------------------------------
| Supported help desk version
|--------------------------------------------------------------------------
|
| A version constraint to specify which versions of the help desk the
| addon is compatible with. For supported constraints, see
| https://getcomposer.org/doc/articles/versions.md
|
*/
'supports' => '>=4.2.0',
];