Introduction
Get Localization supports a standard format that can be used Javascript based framework such as jQuery or just pure Javascript
Example
Following will show two examples of format that can be recognized as strings in Get Localization.
var hello_str = "Hello"; // variable string
var strings = {
"exit" : "Exit", // list item string
"bye" : "Bye"
};
Three strings will be imported, "Hello", "Exit" and "Bye" Logical strings
- Hello => hello_str
- Exit => exit
- Bye => bye
The items in the string array is not supported due to there is no lead to the logical string, such as
var localized_strings = ["Hello", "Bye"];