Flex Alert.show(..) 按钮的 i18n
我必须将 Alert.show(..) 中的“是”和“否”按钮更改为另一种语言(例如荷兰语)。 有没有一种(简单的)方法可以做到这一点?
我忘了提及 - 我的编译器选项中有一个 -locale nl_NL,但它仍然是/否
I have to change the "Yes" and "No" buttons in an Alert.show(..), to another language (Dutch, for instance).
Is there a (easy) way to do that?
I forgot to mention - I have a -locale nl_NL in my compiler options, but it is still Yes/No
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按照这个示例,您可以使用
Alert .yesLabel = "Accept";
和Alert.noLabel = "Reject";
使用您自己的字符串自定义“是”和“否”按钮中的文本。请参阅此文档来设置磁贴。
Following this example you can use
Alert.yesLabel = "Accept";
andAlert.noLabel = "Reject";
to customize text in the yes and no buttons with your own string.Look at this docs to set the tile.