标签: flex flex3 internationalization
我必须将Alert.show(..)中的“是”和“否”按钮更改为另一种语言(例如荷兰语)。 是否有(简单)方法可以做到这一点?
我忘了提 - 我的编译器选项中有一个-locale nl_NL,但它仍然是Yes / No
答案 0 :(得分:4)
关注this example,您可以使用Alert.yesLabel = "Accept";和Alert.noLabel = "Reject";使用您自己的字符串自定义yes和no按钮中的文本。 查看this docs以设置磁贴。
Alert.yesLabel = "Accept";
Alert.noLabel = "Reject";