我正在使用Grails上的Groovy和AngularJS
开发一个UI项目。对于本地化/国际化,我们使用ng-i18next
。
这里我要求以大写形式显示本地化文本。我的.gsp
文件中有一个锚标记
<a ng-href="${request.contextPath}/#/list">{{'locales.data.labels.summary' | i18next}}</a>
显示文字&#34;摘要&#34;在浏览器中渲染后,我们希望将其显示为&#34; SUMMARY&#34;。
我认为应该有一个过滤器可以在翻译后以大写形式转换文本。
答案 0 :(得分:0)
尝试使用uppercase
过滤器
{{'locales.data.labels.summary' | i18next | uppercase}}
参考#http://www.w3schools.com/angular/tryit.asp?filename=try_ng_filters_uppercase
OR
您可以将CSS样式用于此
text-transform: uppercase
Ref#CSS text-transform Property