|
eZ Publish
[trunk]
|
This provides internationalization support for text output. More...
Public Member Functions | |
| eZTranslatorManager () | |
| findKey ($key) | |
| findMessage ($context, $source, $comment=null) | |
| keyTranslate ($key) | |
| translate ($context, $source, $comment=null) | |
Static Public Member Functions | |
| static | createKey ($context, $source, $comment=null) |
| static | createMessage ($context, $source, $comment=null, $translation=null) |
| static | dynamicTranslationsEnabled () |
| static | enableDynamicTranslations ($enable=true) |
| static | instance () |
| Returns a shared instance of the eZTranslatorManager class. | |
| static | registerHandler ($handler) |
| static | resetGlobals () |
| static | resetTranslations () |
| static | setActiveTranslation ($locale, $permanently=true) |
Public Attributes | |
| $Handlers | |
| The array of handler objects. | |
| const | DYNAMIC_TRANSLATIONS_ENABLED = 'eZTMDynamicTranslationsEnabled' |
This provides internationalization support for text output.
Each message consists of:
Definition at line 30 of file eztranslatormanager.php.
| static eZTranslatorManager::createKey | ( | $ | context, |
| $ | source, | ||
| $ | comment = null |
||
| ) | [static] |
Creates an md5 key based on the $context, $source and $comment and returns it.
Definition at line 150 of file eztranslatormanager.php.
| static eZTranslatorManager::createMessage | ( | $ | context, |
| $ | source, | ||
| $ | comment = null, |
||
| $ | translation = null |
||
| ) | [static] |
Creates a message structure out of $context, $source and $comment and returns it.
Definition at line 162 of file eztranslatormanager.php.
| static eZTranslatorManager::dynamicTranslationsEnabled | ( | ) | [static] |
Definition at line 193 of file eztranslatormanager.php.
Referenced by ezpI18n\isEnabled(), and setActiveTranslation().
| static eZTranslatorManager::enableDynamicTranslations | ( | $ | enable = true | ) | [static] |
Definition at line 201 of file eztranslatormanager.php.
Referenced by eZCheckValidity().
Definition at line 34 of file eztranslatormanager.php.
Referenced by instance().
| eZTranslatorManager::findKey | ( | $ | key | ) |
Tries to find the translation message that matches $key in all it's handlers and returns it. If no message could be found it either means that none of the handlers have a translation for the key or that some of the handlers are not key based, for instance realtime translators. In the latter case an extra call to findMessage() or translate() is required.
Use keyTranslate if you only want to translate a message.
Definition at line 50 of file eztranslatormanager.php.
| eZTranslatorManager::findMessage | ( | $ | context, |
| $ | source, | ||
| $ | comment = null |
||
| ) |
Tries to find the translation message that matches $context, $source and $comment. If that fails it tries $context and $source only. The message is then returned or null if no translation message could be found/generated for it.
Use translate if you only want to translate a message.
Definition at line 71 of file eztranslatormanager.php.
| static eZTranslatorManager::instance | ( | ) | [static] |
Returns a shared instance of the eZTranslatorManager class.
Definition at line 127 of file eztranslatormanager.php.
Referenced by eZShuffleTranslator\findMessage(), eZ1337Translator\findMessage(), eZBorkTranslator\findMessage(), eZTSTranslator\findMessage(), eZi18nOperator\i18nTrans(), eZTSTranslator\initialize(), eZ1337Translator\initialize(), eZBorkTranslator\initialize(), eZTSTranslator\insert(), registerHandler(), eZTSTranslator\remove(), setActiveTranslation(), and ezpI18n\translateText().
| eZTranslatorManager::keyTranslate | ( | $ | key | ) |
Note this returns the exact translation for the given key, use translate() instead if you want to have variable comment support.
Definition at line 92 of file eztranslatormanager.php.
| static eZTranslatorManager::registerHandler | ( | $ | handler | ) | [static] |
Registers the handler object $handler.
Definition at line 140 of file eztranslatormanager.php.
| static eZTranslatorManager::resetGlobals | ( | ) | [static] |
Definition at line 174 of file eztranslatormanager.php.
Referenced by resetTranslations().
| static eZTranslatorManager::resetTranslations | ( | ) | [static] |
Definition at line 182 of file eztranslatormanager.php.
Referenced by setActiveTranslation().
| static eZTranslatorManager::setActiveTranslation | ( | $ | locale, |
| $ | permanently = true |
||
| ) | [static] |
Definition at line 216 of file eztranslatormanager.php.
Referenced by eZStepWelcome\display(), and eZStepWelcome\processPostData().
| eZTranslatorManager::translate | ( | $ | context, |
| $ | source, | ||
| $ | comment = null |
||
| ) |
Definition at line 109 of file eztranslatormanager.php.
| eZTranslatorManager::$Handlers |
The array of handler objects.
Definition at line 242 of file eztranslatormanager.php.
| const eZTranslatorManager::DYNAMIC_TRANSLATIONS_ENABLED = 'eZTMDynamicTranslationsEnabled' |
Definition at line 32 of file eztranslatormanager.php.
Referenced by enableDynamicTranslations().