forked from trypostit/trypost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguages.php
More file actions
35 lines (28 loc) · 893 Bytes
/
Copy pathlanguages.php
File metadata and controls
35 lines (28 loc) · 893 Bytes
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
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Available Languages
|--------------------------------------------------------------------------
|
| List of languages available in the application. Each entry maps a locale
| code to a display name. Add or remove entries here to control which
| languages appear in the language switcher and are accepted by the API.
|
*/
'available' => [
'en' => 'English',
'es' => 'Español',
'pt-BR' => 'Português',
],
/*
|--------------------------------------------------------------------------
| Default Language
|--------------------------------------------------------------------------
|
| The default locale code assigned to new users.
|
*/
'default' => 'en',
];