-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLocaleInterface.php
More file actions
82 lines (70 loc) · 1.71 KB
/
Copy pathLocaleInterface.php
File metadata and controls
82 lines (70 loc) · 1.71 KB
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
<?php
declare(strict_types=1);
/*
* UserFrosting Framework (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/framework
* @copyright Copyright (c) 2013-2024 Alexander Weissman, Louis Charette, Jordan Mele
* @license https://github.com/userfrosting/framework/blob/master/LICENSE.md (MIT License)
*/
namespace UserFrosting\I18n;
/**
* Locale interface.
*/
interface LocaleInterface
{
/**
* Returns the list of authors of the locale.
*
* @return string[] The list of authors
*/
public function getAuthors(): array;
/**
* Returns defined configuration file.
*
* @return string
*/
public function getConfigFile(): string;
/**
* Returns the locale identifier.
*
* @return string
*/
public function getIdentifier(): string;
/**
* Return the raw configuration data.
*
* @return mixed[]
*/
public function getConfig(): array;
/**
* Return an array of parent locales.
*
* @return LocaleInterface[]
*/
public function getDependentLocales(): array;
/**
* Return a list of parent locale identifier (eg. [fr_FR, en_US]).
*
* @return string[]
*/
public function getDependentLocalesIdentifier(): array;
/**
* Return the name of the locale, in English form.
*
* @return string
*/
public function getName(): string;
/**
* Return the number representing the plural rule to use for this locale.
*
* @return int
*/
public function getPluralRule(): int;
/**
* Return the localized version of the locale name.
*
* @return string
*/
public function getRegionalName(): string;
}