如何设置WebOs项目的dault语言?
坏例子: $L("This should be not a real world sentence!!") $L("key.subKey")
$L("This should be not a real world sentence!!")
$L("key.subKey")
您可以使用键值对来解决这个问题(从 Palm documentation
如果原始字符串不适合作为键,则可以使用显式键调用$L()函数: $L("value":"Done", "key": "done_key"); 在运行时,调用$L()的结果是作为值传递的字符串的转换。翻译“活”在/resources/locale中/字符串.json文件。 例子: "My text here": "Mi texto aquÃ", "done_key": "Listo", "Some other string": "Some other string's translation" }
如果原始字符串不适合作为键,则可以使用显式键调用$L()函数:
$L("value":"Done", "key": "done_key");
在运行时,调用$L()的结果是作为值传递的字符串的转换。翻译“活”在/resources/locale中/字符串.json文件。
例子:
"My text here": "Mi texto aquÃ", "done_key": "Listo", "Some other string": "Some other string's translation"
}