From c99e23d90325ed02518e15cff5ead5ba0dfd66fa Mon Sep 17 00:00:00 2001
From: Olgun Cengiz <olgun.cengiz@vereign.com>
Date: Fri, 1 Feb 2019 16:39:04 +0300
Subject: [PATCH] blocked changed with locked

---
 javascript/src/iframe/viamapi-iframe.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/javascript/src/iframe/viamapi-iframe.js b/javascript/src/iframe/viamapi-iframe.js
index 24e412b..74c1ef7 100644
--- a/javascript/src/iframe/viamapi-iframe.js
+++ b/javascript/src/iframe/viamapi-iframe.js
@@ -577,7 +577,7 @@ function getTimeLeftInLocalStorage() {
   let minutes = Math.floor((blockFinishTime - timeNow) / 60);
   minutes %= 60;
 
-  const left = "Your identity has been blocked. Try again in " + minutes + " minutes and " + seconds + " seconds.";
+  const left = "Your identity has been locked. Try again in " + minutes + " minutes and " + seconds + " seconds.";
   return left;
 }
 
@@ -598,7 +598,7 @@ function failPincodeAttempt(password) {
       const blockFinishTime = timeNow + 300;
       localStorage.setItem("blockFinishTime", blockFinishTime);
       localStorage.setItem("attempt", attempt + 1);
-      message = "3 failed attempts. Identity is blocked!";
+      message = "3 failed attempts. Identity is locked!";
     } else {
       localStorage.setItem("attempt", attempt + 1);
     }
-- 
GitLab