My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
JavaScript  
JavaScript localization file
Updated Mar 22, 2011 by phong.le...@gtempaccount.com

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"];
Powered by Google Project Hosting