Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
systems:yii2:internationalization_i18n [2018/04/11 15:52] smayr [Models] |
systems:yii2:internationalization_i18n [2018/04/11 17:38] (current) smayr [Controllers] |
||
---|---|---|---|
Line 215: | Line 215: | ||
In the controller, all string to be displayed need to include the '' | In the controller, all string to be displayed need to include the '' | ||
<code php> | <code php> | ||
+ | // Basic Messages | ||
+ | echo Yii:: | ||
+ | |||
// Messages can contain parameter placeholders which will be replaced | // Messages can contain parameter placeholders which will be replaced | ||
// with the actual parameter values when calling Yii::t(). For example, | // with the actual parameter values when calling Yii::t(). For example, | ||
// the following message translation request would replace | // the following message translation request would replace | ||
// the {alias} placeholder in the original message with the actual alias value. | // the {alias} placeholder in the original message with the actual alias value. | ||
- | Yii:: | + | echo Yii:: |
+ | |||
+ | // Positional placeholders | ||
+ | $price = 100; | ||
+ | $count = 2; | ||
+ | $subtotal = 200; | ||
+ | echo \Yii:: | ||
+ | echo \Yii:: | ||
</ | </ | ||
+ | |||
+ | See more formatting and placeholders: | ||
== Detecting Language Automatically == | == Detecting Language Automatically == | ||