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
806dbf9b
Commit
806dbf9b
authored
Jan 26, 2014
by
Mark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i18n docs added
parent
698d66a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
98 additions
and
0 deletions
+98
-0
i18n.md
docs/guide/i18n.md
+98
-0
No files found.
docs/guide/i18n.md
View file @
806dbf9b
...
...
@@ -284,4 +284,102 @@ Formatters
In order to use formatters you need to install and enable
[
intl
](
http://www.php.net/manual/en/intro.intl.php
)
PHP
extension.
Examples
--------
###Translating module messages
If you want to translate messages for module and you dont use one translation file for all messages, you can make it like following:
```
php
<?php
namespace
app\modules\users
;
use
Yii
;
class
Module
extends
\yii\base\Module
{
public
$controllerNamespace
=
'app\modules\users\controllers'
;
public
function
init
()
{
parent
::
init
();
$this
->
registerTranslations
();
}
public
function
registerTranslations
()
{
$i18n
=
Yii
::
$app
->
i18n
;
$i18n
->
translations
[
'modules/users/*'
]
=
[
'class'
=>
'yii\i18n\PhpMessageSource'
,
'sourceLanguage'
=>
'en'
,
'basePath'
=>
'@app/modules/users/messages'
,
'fileMap'
=>
[
'modules/users/validation'
=>
'validation.php'
,
'modules/users/form'
=>
'form.php'
,
...
],
];
}
public
static
function
t
(
$category
,
$message
,
$params
=
[],
$language
=
null
)
{
return
Yii
::
t
(
'modules/users/'
.
$category
,
$message
,
$params
,
$language
);
}
}
```
In the example above we are using wildcard for matching and then filtering each category per needed file.
###Translating widgets messages
Same rules can be applied for widgets too, for example:
```
php
<?php
namespace
app\widgets\menu
;
use
yii\base\Widget
;
use
Yii
;
class
Menu
extends
Widget
{
public
function
init
()
{
parent
::
init
();
$this
->
registerTranslations
();
}
public
function
registerTranslations
()
{
$i18n
=
Yii
::
$app
->
i18n
;
$i18n
->
translations
[
'widgets/menu/*'
]
=
[
'class'
=>
'yii\i18n\PhpMessageSource'
,
'sourceLanguage'
=>
'en'
,
'basePath'
=>
'@app/widgets/menu/messages'
,
'fileMap'
=>
[
'widgets/menu/messages'
=>
'messages.php'
,
],
];
}
public
function
run
()
{
echo
$this
->
render
(
'index'
);
}
public
static
function
t
(
$category
,
$message
,
$params
=
[],
$language
=
null
)
{
return
Yii
::
t
(
'widgets/menu/'
.
$category
,
$message
,
$params
,
$language
);
}
}
```
> **Note**: For widgets you also can use i18n views, same rules as for controllers are applied to them too.
TBD: provided classes overview.
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