Skip to content

Commit

Permalink
Merge pull request #7 from Sav22999/beta
Browse files Browse the repository at this point in the history
Fixed strings
  • Loading branch information
Sav22999 committed Aug 9, 2021
2 parents e9de18b + 7cd8ade commit aedabcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions js/all-websites.js
Expand Up @@ -47,15 +47,15 @@ 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);
}
}

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];
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down

0 comments on commit aedabcf

Please sign in to comment.