我正在使用ARB google的API进行本地化,但实际上持卡人没有工作,我花了5个小时来解决这个问题,没有运气
arb.register(
"login",
{
"title": "Login",
"subtitle": "to your account",
"MSG_BODY_TEST": "This is a test.",
"email": "Email {0}",
"@email": {
"placeholders": {
"0": {
"example": "$123.45",
"description": "cost presented with currency symbol"
}
}
},
"MSG_CURR_LOCALE": "...and the selected language is \"{currentLocale}\"."
});
arb.register(
"login:ar",
{
"title": "الدخول",
"subtitle": "الى حسابك",
"email": "البريد الاكتروني {0}",
"@email": {
"placeholders": {
"0": {
"example": "$123.45",
"description": "cost presented with currency symbol"
}
}
},
"MSG_CURR_LOCALE": "...and the selected language is \" {currentLocale}\"."
}
);谁能告诉我有什么问题吗?
发布于 2017-03-30 20:27:49
https://stackoverflow.com/questions/43125951
复制相似问题