From 7cd8ade9be6192be94bcc067ca7d93fb393bddcb Mon Sep 17 00:00:00 2001 From: Saverio Morelli Date: Mon, 9 Aug 2021 21:53:25 +0200 Subject: [PATCH] Fixed strings --- js/all-websites.js | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/all-websites.js b/js/all-websites.js index 963dd57..0233a6b 100644 --- a/js/all-websites.js +++ b/js/all-websites.js @@ -47,7 +47,7 @@ function loadDataFromBrowser(generate_section = true) { } function deleteAllData() { - let confirmation = confirm("Are you sure you want to clear all data?\nYou can cancel this process once started."); + let confirmation = confirm("Are you sure you want to clear all data?\nYou can't cancel this process once started."); if (confirmation) { let clearStorage = browser.storage.local.clear(); clearStorage.then(onCleared, onError); @@ -55,7 +55,7 @@ function deleteAllData() { } function deleteAWebsite(url) { - let confirmation = confirm("Are you sure you want to clear the selected website (https://" + url + ") and the time spent on it?\nYou can cancel this process once started."); + let confirmation = confirm("Are you sure you want to clear the selected website (https://" + url + ") and the time spent on it?\nYou can't cancel this process once started."); if (confirmation) { //delete the selected page delete websites_json[url]; diff --git a/manifest.json b/manifest.json index 4c5b3f7..d14a960 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Limite", - "version": "1.2.1", + "version": "1.2.1.1", "description": "Check how much time you spend on each website every day.\nOptimise your productivity, your time and your life as well.\nDon't lose precious time!", "icons": { "16": "./img/icon-16.png",