From 5df95d4132f1a585aac7f19f1bbcf970f531788d Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 26 Aug 2012 22:44:11 +0200 Subject: [PATCH] Fixed spelling in please wait message. --- couchpotato/static/scripts/couchpotato.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/static/scripts/couchpotato.js b/couchpotato/static/scripts/couchpotato.js index 9e66e342..61ee45bd 100644 --- a/couchpotato/static/scripts/couchpotato.js +++ b/couchpotato/static/scripts/couchpotato.js @@ -188,7 +188,7 @@ var CouchPotato = new Class({ restart: function(message, title){ var self = this; - self.blockPage(message || 'Restarting... please wait. If this takes to long, something must have gone wrong.', title); + self.blockPage(message || 'Restarting... please wait. If this takes too long, something must have gone wrong.', title); Api.request('app.restart'); self.checkAvailable(1000); }, @@ -217,7 +217,7 @@ var CouchPotato = new Class({ Updater.check(onComplete) - self.blockPage('Please wait. If this takes to long, something must have gone wrong.', 'Checking for updates'); + self.blockPage('Please wait. If this takes too long, something must have gone wrong.', 'Checking for updates'); self.checkAvailable(3000); },