Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
e539482d
Commit
e539482d
authored
Feb 03, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added failing test for #2209
parent
d9d36006
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
I18NTest.php
tests/unit/framework/i18n/I18NTest.php
+9
-0
No files found.
tests/unit/framework/i18n/I18NTest.php
View file @
e539482d
...
@@ -89,6 +89,15 @@ class I18NTest extends TestCase
...
@@ -89,6 +89,15 @@ class I18NTest extends TestCase
$model
=
new
ParamModel
();
$model
=
new
ParamModel
();
$this
->
assertEquals
(
'His name is peer and he is 5 years old.'
,
$this
->
i18n
->
translate
(
'test'
,
$msg
,
$model
,
'en-US'
));
$this
->
assertEquals
(
'His name is peer and he is 5 years old.'
,
$this
->
i18n
->
translate
(
'test'
,
$msg
,
$model
,
'en-US'
));
}
}
/**
* When translation is missing source language should be used for formatting.
* https://github.com/yiisoft/yii2/issues/2209
*/
public
function
testMissingTranslationFormatting
()
{
$this
->
assertEquals
(
'1 item'
,
$this
->
i18n
->
translate
(
'test'
,
'{0, number} {0, plural, one{item} other{items}}'
,
1
,
'hu'
));
}
}
}
class
ParamModel
extends
Model
class
ParamModel
extends
Model
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment