mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-03 13:58:55 +08:00
Fixes #13287: Fixed translating "and" separator in UniqueValidator error message
This commit is contained in:
committed by
Alexander Makarov
parent
3ea671454c
commit
3a1cd7f3aa
@ -100,6 +100,7 @@ Yii Framework 2 Change Log
|
|||||||
- Enh #13268: Added logging of memory usage (bashkarev)
|
- Enh #13268: Added logging of memory usage (bashkarev)
|
||||||
- Enh: Added constants for specifying `yii\validators\CompareValidator::$type` (cebe)
|
- Enh: Added constants for specifying `yii\validators\CompareValidator::$type` (cebe)
|
||||||
- Enh: Refactored `yii\web\ErrorAction` to make it reusable (silverfire)
|
- Enh: Refactored `yii\web\ErrorAction` to make it reusable (silverfire)
|
||||||
|
- Bug #13287: Fixed translating "and" separator in `UniqueValidator` error message (jetexe)
|
||||||
|
|
||||||
|
|
||||||
2.0.10 October 20, 2016
|
2.0.10 October 20, 2016
|
||||||
|
|||||||
@ -566,8 +566,11 @@ class BaseInflector
|
|||||||
* @return string the generated sentence
|
* @return string the generated sentence
|
||||||
* @since 2.0.1
|
* @since 2.0.1
|
||||||
*/
|
*/
|
||||||
public static function sentence(array $words, $twoWordsConnector = ' and ', $lastWordConnector = null, $connector = ', ')
|
public static function sentence(array $words, $twoWordsConnector = null, $lastWordConnector = null, $connector = ', ')
|
||||||
{
|
{
|
||||||
|
if ($twoWordsConnector === null) {
|
||||||
|
$twoWordsConnector = Yii::t('yii', ' and ');
|
||||||
|
}
|
||||||
if ($lastWordConnector === null) {
|
if ($lastWordConnector === null) {
|
||||||
$lastWordConnector = $twoWordsConnector;
|
$lastWordConnector = $twoWordsConnector;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ return [
|
|||||||
'Unknown alias: -{name}' => 'Неизвестный псевдоним: -{name}',
|
'Unknown alias: -{name}' => 'Неизвестный псевдоним: -{name}',
|
||||||
'Yii Framework' => 'Yii Framework',
|
'Yii Framework' => 'Yii Framework',
|
||||||
'(not set)' => '(не задано)',
|
'(not set)' => '(не задано)',
|
||||||
|
' and ' => ' и ',
|
||||||
'An internal server error occurred.' => 'Возникла внутренняя ошибка сервера.',
|
'An internal server error occurred.' => 'Возникла внутренняя ошибка сервера.',
|
||||||
'Are you sure you want to delete this item?' => 'Вы уверены, что хотите удалить этот элемент?',
|
'Are you sure you want to delete this item?' => 'Вы уверены, что хотите удалить этот элемент?',
|
||||||
'Error' => 'Ошибка',
|
'Error' => 'Ошибка',
|
||||||
|
|||||||
Reference in New Issue
Block a user