Property | Defined By | ||
---|---|---|---|
data : Object
A mapping from original text to translated text. | ILocale | ||
reverseLayout : Boolean | ILocale |
Method | Defined By | ||
---|---|---|---|
getText(text:String):String
This will look up the localized version of a piece of text. | ILocale |
data | property |
data:Object
A mapping from original text to translated text.
public function get data():Object
public function set data(value:Object):void
reverseLayout | property |
reverseLayout:Boolean
public function get reverseLayout():Boolean
public function set reverseLayout(value:Boolean):void
getText | () | method |
public function getText(text:String):String
This will look up the localized version of a piece of text.
Parameters
text:String — The original text as specified by the developer.
|
String — The text in the current locale, or the original text if no localization exists.
|