From 4aedad8ffa88f306719f493c0a15098fa3674114 Mon Sep 17 00:00:00 2001
From: blavenie <benoit.lavenier@e-is.pro>
Date: Thu, 30 Nov 2017 10:09:49 +0100
Subject: [PATCH] [fix] misspelling

---
 www/plugins/es/i18n/locale-en-GB.json              | 6 +++---
 www/plugins/es/i18n/locale-en.json                 | 6 +++---
 www/plugins/es/templates/registry/lookup_form.html | 9 +++++----
 3 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/www/plugins/es/i18n/locale-en-GB.json b/www/plugins/es/i18n/locale-en-GB.json
index 06d01e69..c10a8310 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 06d01e69..c10a8310 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 01ffdbdc..086995aa 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>
-- 
GitLab