本地化通知负载
我目前正在开发一个使用推送通知的本地化应用程序。我想知道是否可以本地化在通知消息、Toast 通知的 Text
元素和图块的 Title
元素中发送的字符串通知。我想使用我创建的本地化资源字符串来本地化应用程序的其余部分。
我发现可以按照以下指南使用主磁贴中的 '@'
字符来本地化应用程序标题: http://msdn.microsoft.com/en-我们/库/ff967550(v=VS.92).aspx 但不幸的是,我不知道在收到推送通知时是否可以重现这种行为。那么最后,有没有办法本地化推送通知?
I am currently developing a localized application which uses push notifications. I would like to know if it is possible to localize the strings that are sent in the notification message, in the Text
element for toast notification and in the Title
element for a tile notification. I would like to use the localized resource strings I have created to localize the rest of the application.
I have seen that it is possible to localize the application title by using the '@'
character in the main tile by following this guidance:
http://msdn.microsoft.com/en-us/library/ff967550(v=VS.92).aspx
but unfortunately I do not know if this behaviour can be reproduced whilst receiving a push notification. So finally, is there a way to localize push notifications?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还在 msdn 网站上发布了此问题:
http://forums.create.msdn .com/forums/t/96082.aspx
因此,我将在服务器端实现 l8n,因为它似乎是本地化通知有效负载的唯一方法。
谢谢海因里希。
I also posted this issue on the msdn site:
http://forums.create.msdn.com/forums/t/96082.aspx
Therefore I will implement l8n on the server side as it seems to be the only way to localize notifications' payload.
Thank you Heinrich.