@@ -47,8 +47,8 @@ |
||
47 | 47 | case 'php': |
48 | 48 | $translations = include $filename; |
49 | 49 | if (is_array($translations)) { |
50 | - $this->translations = $translations; |
|
51 | - } |
|
50 | + $this->translations = $translations; |
|
51 | + } |
|
52 | 52 | break; |
53 | 53 | } |
54 | 54 | } |
@@ -11,25 +11,25 @@ |
||
11 | 11 | * @license GPLv3+ |
12 | 12 | */ |
13 | 13 | class LocaleArMa extends LocaleAr { |
14 | - public function numberSymbols() { |
|
15 | - return array( |
|
16 | - self::GROUP => self::DOT, |
|
17 | - self::DECIMAL => self::COMMA, |
|
18 | - self::NEGATIVE => self::LTR_MARK . '-', |
|
19 | - ); |
|
20 | - } |
|
14 | + public function numberSymbols() { |
|
15 | + return array( |
|
16 | + self::GROUP => self::DOT, |
|
17 | + self::DECIMAL => self::COMMA, |
|
18 | + self::NEGATIVE => self::LTR_MARK . '-', |
|
19 | + ); |
|
20 | + } |
|
21 | 21 | |
22 | - protected function numerals() { |
|
23 | - $latin = new ScriptLatn(); |
|
22 | + protected function numerals() { |
|
23 | + $latin = new ScriptLatn(); |
|
24 | 24 | |
25 | - return $latin->numerals(); |
|
26 | - } |
|
25 | + return $latin->numerals(); |
|
26 | + } |
|
27 | 27 | |
28 | - protected function percentFormat() { |
|
29 | - return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK; |
|
30 | - } |
|
28 | + protected function percentFormat() { |
|
29 | + return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK; |
|
30 | + } |
|
31 | 31 | |
32 | - public function territory() { |
|
32 | + public function territory() { |
|
33 | 33 | return new TerritoryMa; |
34 | 34 | } |
35 | 35 | } |
@@ -11,23 +11,23 @@ |
||
11 | 11 | * @license GPLv3+ |
12 | 12 | */ |
13 | 13 | class LocaleArEh extends LocaleAr { |
14 | - public function numberSymbols() { |
|
15 | - return array( |
|
16 | - self::NEGATIVE => self::LTR_MARK . '-', |
|
17 | - ); |
|
18 | - } |
|
14 | + public function numberSymbols() { |
|
15 | + return array( |
|
16 | + self::NEGATIVE => self::LTR_MARK . '-', |
|
17 | + ); |
|
18 | + } |
|
19 | 19 | |
20 | - protected function numerals() { |
|
21 | - $latin = new ScriptLatn(); |
|
20 | + protected function numerals() { |
|
21 | + $latin = new ScriptLatn(); |
|
22 | 22 | |
23 | - return $latin->numerals(); |
|
24 | - } |
|
23 | + return $latin->numerals(); |
|
24 | + } |
|
25 | 25 | |
26 | - protected function percentFormat() { |
|
27 | - return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK; |
|
28 | - } |
|
26 | + protected function percentFormat() { |
|
27 | + return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK; |
|
28 | + } |
|
29 | 29 | |
30 | - public function territory() { |
|
30 | + public function territory() { |
|
31 | 31 | return new TerritoryEh; |
32 | 32 | } |
33 | 33 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | return new ScriptCyrl; |
15 | 15 | } |
16 | 16 | |
17 | - protected function percentFormat() { |
|
18 | - return '%s' . self::PERCENT; |
|
19 | - } |
|
17 | + protected function percentFormat() { |
|
18 | + return '%s' . self::PERCENT; |
|
19 | + } |
|
20 | 20 | } |
@@ -11,25 +11,25 @@ |
||
11 | 11 | * @license GPLv3+ |
12 | 12 | */ |
13 | 13 | class LocaleArLy extends LocaleAr { |
14 | - public function numberSymbols() { |
|
15 | - return array( |
|
16 | - self::GROUP => self::DOT, |
|
17 | - self::DECIMAL => self::COMMA, |
|
18 | - self::NEGATIVE => self::LTR_MARK . '-', |
|
19 | - ); |
|
20 | - } |
|
14 | + public function numberSymbols() { |
|
15 | + return array( |
|
16 | + self::GROUP => self::DOT, |
|
17 | + self::DECIMAL => self::COMMA, |
|
18 | + self::NEGATIVE => self::LTR_MARK . '-', |
|
19 | + ); |
|
20 | + } |
|
21 | 21 | |
22 | - protected function numerals() { |
|
23 | - $latin = new ScriptLatn(); |
|
22 | + protected function numerals() { |
|
23 | + $latin = new ScriptLatn(); |
|
24 | 24 | |
25 | - return $latin->numerals(); |
|
26 | - } |
|
25 | + return $latin->numerals(); |
|
26 | + } |
|
27 | 27 | |
28 | - protected function percentFormat() { |
|
29 | - return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK; |
|
30 | - } |
|
28 | + protected function percentFormat() { |
|
29 | + return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK; |
|
30 | + } |
|
31 | 31 | |
32 | - public function territory() { |
|
32 | + public function territory() { |
|
33 | 33 | return new TerritoryLy; |
34 | 34 | } |
35 | 35 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | ); |
30 | 30 | } |
31 | 31 | |
32 | - protected function percentFormat() { |
|
33 | - return '%s' . self::NBSP . self::PERCENT; |
|
34 | - } |
|
32 | + protected function percentFormat() { |
|
33 | + return '%s' . self::NBSP . self::PERCENT; |
|
34 | + } |
|
35 | 35 | } |
@@ -10,7 +10,7 @@ |
||
10 | 10 | * @license GPLv3+ |
11 | 11 | */ |
12 | 12 | class LocaleCcpIn extends LocaleCcp implements LocaleInterface { |
13 | - public function territory() { |
|
14 | - return new TerritoryIn; |
|
15 | - } |
|
13 | + public function territory() { |
|
14 | + return new TerritoryIn; |
|
15 | + } |
|
16 | 16 | } |
@@ -15,21 +15,21 @@ |
||
15 | 15 | return array( |
16 | 16 | self::GROUP => self::DOT, |
17 | 17 | self::DECIMAL => self::COMMA, |
18 | - self::NEGATIVE => self::LTR_MARK . '-', |
|
18 | + self::NEGATIVE => self::LTR_MARK . '-', |
|
19 | 19 | ); |
20 | 20 | } |
21 | 21 | |
22 | - protected function numerals() { |
|
23 | - $latin = new ScriptLatn(); |
|
22 | + protected function numerals() { |
|
23 | + $latin = new ScriptLatn(); |
|
24 | 24 | |
25 | - return $latin->numerals(); |
|
26 | - } |
|
25 | + return $latin->numerals(); |
|
26 | + } |
|
27 | 27 | |
28 | - protected function percentFormat() { |
|
29 | - return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK; |
|
30 | - } |
|
28 | + protected function percentFormat() { |
|
29 | + return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK; |
|
30 | + } |
|
31 | 31 | |
32 | - public function territory() { |
|
32 | + public function territory() { |
|
33 | 33 | return new TerritoryDz; |
34 | 34 | } |
35 | 35 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | } |
31 | 31 | |
32 | 32 | public function percentFormat() |
33 | - { |
|
34 | - return '%s' . self::NBSP . self::PERCENT; |
|
35 | - } |
|
33 | + { |
|
34 | + return '%s' . self::NBSP . self::PERCENT; |
|
35 | + } |
|
36 | 36 | } |