-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/translator. | ||
* | ||
* (c) 2013-2018 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -14,7 +14,8 @@ | |
* @author Christian Schiffler <[email protected]> | ||
* @author Tristan Lins <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2013-2018 Contao Community Alliance. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/translator/blob/master/LICENSE LGPL-3.0 | ||
* @filesource | ||
*/ | ||
|
@@ -124,16 +125,12 @@ protected function buildChoiceLookupList($choices) | |
|
||
foreach ($choices as $range => $choice) { | ||
/** @psalm-suppress RedundantCastGivenDocblockType - There is no way to enforce string array key :/ */ | ||
$range = explode(':', (string) $range); | ||
|
||
if (count($range) < 2) { | ||
$range[] = ''; | ||
} | ||
$range = array_merge(explode(':', (string) $range), ['0']); | ||
|
||
$array[] = (object) [ | ||
'range' => (object) [ | ||
'from' => (int) $range[0], | ||
'to' => (int) $range[1], | ||
'to' => (int) $range[1], | ||
], | ||
'string' => $choice | ||
]; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of contao-community-alliance/translator. | ||
* | ||
* (c) 2013-2018 Contao Community Alliance. | ||
* (c) 2013-2024 Contao Community Alliance. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -14,7 +14,8 @@ | |
* @author Christian Schiffler <[email protected]> | ||
* @author Tristan Lins <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2013-2018 Contao Community Alliance. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2013-2024 Contao Community Alliance. | ||
* @license https://github.com/contao-community-alliance/translator/blob/master/LICENSE LGPL-3.0 | ||
* @filesource | ||
*/ | ||
|
@@ -25,16 +26,18 @@ | |
|
||
/** | ||
* This interface describes a translator. | ||
* | ||
* @psalm-type TParameterArray=array<string, string>|list<float|int|string> | ||
*/ | ||
interface TranslatorInterface | ||
{ | ||
/** | ||
* Translate a string in a specific domain. | ||
* | ||
* @param string $string The translation string. | ||
* @param string|null $domain The translation domain. | ||
* @param array $parameters Parameters used in translation. | ||
* @param string|null $locale The translation locale. | ||
* @param string $string The translation string. | ||
* @param string|null $domain The translation domain. | ||
* @param TParameterArray $parameters Parameters used in translation. | ||
* @param string|null $locale The translation locale. | ||
* | ||
* @return string | ||
*/ | ||
|
@@ -43,11 +46,11 @@ public function translate($string, $domain = null, array $parameters = [], $loca | |
/** | ||
* Translate a pluralized string in a specific domain. | ||
* | ||
* @param string $string The translation string. | ||
* @param int $number The pluralization number. | ||
* @param string|null $domain The translation domain. | ||
* @param array $parameters Parameters used in translation. | ||
* @param string|null $locale The translation locale. | ||
* @param string $string The translation string. | ||
* @param int $number The pluralization number. | ||
* @param string|null $domain The translation domain. | ||
* @param TParameterArray $parameters Parameters used in translation. | ||
* @param string|null $locale The translation locale. | ||
* | ||
* @return string | ||
*/ | ||
|