代码之家  ›  专栏  ›  技术社区  ›  AlexVogel

如何在WebOs中设置默认语言

  •  0
  • AlexVogel  · 技术社区  · 15 年前

    如何设置WebOs项目的dault语言?

    坏例子: $L("This should be not a real world sentence!!")
    $L("key.subKey")

    1 回复  |  直到 15 年前
        1
  •  1
  •   etlovett    15 年前

    您可以使用键值对来解决这个问题(从 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"
    

    }

    推荐文章