Function __dc
Allows you to override the current domain for a single message lookup. It also allows you to specify a category.
The category argument allows a specific category of the locale settings to be used for fetching a message. Valid categories are: LC_CTYPE, LC_NUMERIC, LC_TIME, LC_COLLATE, LC_MONETARY, LC_MESSAGES and LC_ALL.
Note that the category must be specified with a numeric value, instead of the constant name. The values are:
- LC_ALL 0
- LC_COLLATE 1
- LC_CTYPE 2
- LC_MONETARY 3
- LC_NUMERIC 4
- LC_TIME 5
- LC_MESSAGES 6
Package: Cake
Link: http://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html#__dc
Copyright: Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
License: License (http://www.opensource.org/licenses/mit-license.php)
Located at Cake/basics.php
Link: http://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html#__dc
Copyright: Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
License: License (http://www.opensource.org/licenses/mit-license.php)
Located at Cake/basics.php
__dc( string $domain , string $msg , integer $category , mixed $args = null )
Parameters summary
string |
$domain |
Domain |
string |
$msg |
Message to translate |
integer |
$category |
Category |
mixed |
$args = null |
Array with arguments or multiple arguments in function |
Returns
-
translated
string