diff --git a/www/plugins/es/templates/registry/lookup_item.html b/www/plugins/es/templates/registry/lookup_item.html index c0044b5663f2371a46fb5e6ae7067dc7b3458c48..bf34a2539bb2304881b7dc4c0e5e7c8f2c380d8c 100644 --- a/www/plugins/es/templates/registry/lookup_item.html +++ b/www/plugins/es/templates/registry/lookup_item.html @@ -18,7 +18,7 @@ <div class="col col-20 hidden-xs"> <h3 class="gray"> <ng-if ng-if="item.category">{{::item.category.name}}</ng-if> - <!--ng-if ng-if="!item.category">{{'REGISTRY.TYPE.ENUM.'+item.type|translate}}</ng-if--> + <ng-if ng-if="!item.category">{{'REGISTRY.TYPE.ENUM.'+item.type|uppercase|translate}}</ng-if> </h3> </div> <div class="col"> diff --git a/www/plugins/es/templates/registry/lookup_options.html b/www/plugins/es/templates/registry/lookup_options.html index f6d23948a2f77c477c651c2d768a2c9d7168ad04..47cf25d043fa489212d1222b2c4e1706c2e52cc9 100644 --- a/www/plugins/es/templates/registry/lookup_options.html +++ b/www/plugins/es/templates/registry/lookup_options.html @@ -11,7 +11,7 @@ <div class="item item-icon-right" ng-if="search.options" ng-click="showRecordTypeModal()"> <span translate>REGISTRY.SEARCH.TYPE</span> - <span class="badge badge-balanced" ng-if="search.type">{{'REGISTRY.TYPE.ENUM.' + search.type|translate}}</span> + <span class="badge badge-balanced" ng-if="search.type">{{'REGISTRY.TYPE.ENUM.'+search.type|uppercase|translate}}</span> <i class="gray icon ion-ios-arrow-right"></i> </div>