diff --git a/www/plugins/es/i18n/locale-en-GB.json b/www/plugins/es/i18n/locale-en-GB.json index 06d01e69e65ce1878d3766ec3486a97c321c8f05..c10a831035769362eea079603a80798a515abece 100644 --- a/www/plugins/es/i18n/locale-en-GB.json +++ b/www/plugins/es/i18n/locale-en-GB.json @@ -232,9 +232,9 @@ "RESULTS": "Results", "RESULT_COUNT_LOCATION": "{{count}} result{{count>0?'s':''}}, near {{location}}", "RESULT_COUNT": "{{count}} result{{count>0?'s':''}}", - "LAST_RECORDS": "Recents pages", - "LAST_RECORD_COUNT_LOCATION": "{{count}} recent{{count>0?'s':''}} page{{count>0?'s':''}}, near {{location}}", - "LAST_RECORD_COUNT": "{{count}} recent{{count>0?'s':''}} page{{count>0?'s':''}}", + "LAST_RECORDS": "Recent pages", + "LAST_RECORD_COUNT_LOCATION": "{{count}} recent page{{count>0?'s':''}}, near {{location}}", + "LAST_RECORD_COUNT": "{{count}} recent page{{count>0?'s':''}}", "POPOVER_FILTERS": { "BTN_ADVANCED_SEARCH": "Advanced options?" } diff --git a/www/plugins/es/i18n/locale-en.json b/www/plugins/es/i18n/locale-en.json index 06d01e69e65ce1878d3766ec3486a97c321c8f05..c10a831035769362eea079603a80798a515abece 100644 --- a/www/plugins/es/i18n/locale-en.json +++ b/www/plugins/es/i18n/locale-en.json @@ -232,9 +232,9 @@ "RESULTS": "Results", "RESULT_COUNT_LOCATION": "{{count}} result{{count>0?'s':''}}, near {{location}}", "RESULT_COUNT": "{{count}} result{{count>0?'s':''}}", - "LAST_RECORDS": "Recents pages", - "LAST_RECORD_COUNT_LOCATION": "{{count}} recent{{count>0?'s':''}} page{{count>0?'s':''}}, near {{location}}", - "LAST_RECORD_COUNT": "{{count}} recent{{count>0?'s':''}} page{{count>0?'s':''}}", + "LAST_RECORDS": "Recent pages", + "LAST_RECORD_COUNT_LOCATION": "{{count}} recent page{{count>0?'s':''}}, near {{location}}", + "LAST_RECORD_COUNT": "{{count}} recent page{{count>0?'s':''}}", "POPOVER_FILTERS": { "BTN_ADVANCED_SEARCH": "Advanced options?" } diff --git a/www/plugins/es/templates/registry/lookup_form.html b/www/plugins/es/templates/registry/lookup_form.html index 01ffdbdc6e9cd1db9bd7fc6553904c849ecc3335..086995aa12f822e01c2445a8cc3315c1ca4ac060 100644 --- a/www/plugins/es/templates/registry/lookup_form.html +++ b/www/plugins/es/templates/registry/lookup_form.html @@ -64,22 +64,23 @@ </div> </div> + <div class="padding-xs" style="display: block; height: 60px;"> <div class="pull-left ng-hide" ng-show="!search.loading && search.results"> <ng-if ng-if="search.lastRecords"> <h4 translate>REGISTRY.SEARCH.LAST_RECORDS</h4> - <h5 class="dark no-padding" ng-if="search.total"> + <small class="gray no-padding" ng-if="search.total"> <span ng-if="search.geoPoint && search.total">{{'REGISTRY.SEARCH.LAST_RECORD_COUNT_LOCATION'|translate:{count: search.total, location: search.location} }}</span> <span ng-if="!search.geoPoint && search.total">{{'REGISTRY.SEARCH.LAST_RECORD_COUNT'|translate:{count: search.total} }}</span> - </h5> + </small> </ng-if> <ng-if ng-if="!search.lastRecords"> <h4 translate>COMMON.RESULTS_LIST</h4> - <h5 class="dark no-padding" ng-if="search.total"> + <small class="gray no-padding" ng-if="search.total"> <span ng-if="search.geoPoint && search.total">{{'REGISTRY.SEARCH.RESULT_COUNT_LOCATION'|translate:{count: search.total, location: search.location} }}</span> <span ng-if="!search.geoPoint && search.total">{{'REGISTRY.SEARCH.RESULT_COUNT'|translate:{count: search.total} }}</span> - </h5> + </small> </ng-if> </div>