<select chosen
options="myOptions"
ng-model="StatCode"
data-placeholder="{{'PleaseSelect' | translate}}"
ng-options="item[0] as item[1] + ' / ' + item[0] for item in myOptions"
required></select>
我改变了语言。但是不要改变占位符。
答案 0 :(得分:0)
您需要placeholder-text-single
使用single select
而placeholder-text-multiple
使用multiple select
此外,您的表达应附在''
placeholder-text-single="'{{'PleaseSelect' | translate}}'"
请注意{{
之前和}}
之后的单引号
以下是将select
placeholder
和option text
从英语翻译为俄语的基本示例。
通常在从一种语言转换为另一种语言时,只有option text
发生变化,而option value
保持不变,无论语言如何
单击超链接以查看语言更改。