From: Darren Date: Sat, 17 Aug 2013 19:42:22 +0000 (+0100) Subject: Removing obsolete locale strings X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=77a2e4004ae5debb7c284bccc0d566af8c3743fe;p=KiwiIRC.git Removing obsolete locale strings --- diff --git a/client/assets/src/models/application.js b/client/assets/src/models/application.js index 363f040..8e9df4b 100644 --- a/client/assets/src/models/application.js +++ b/client/assets/src/models/application.js @@ -430,12 +430,10 @@ _kiwi.model.Application = function () { // Get an interval around 1 minute so everyone doesn't reconnect it all at once var jump_server_interval = Math.random() * (90 - 60) + 60; - var msg = 'In 1 minutes time you will be reconnected to a more stable server. Get ready!'; var msg = _kiwi.global.i18n.translate('client_models_application_jumpserver_prepare').fetch(); that.message.text(msg, {timeout: 10000}); setTimeout(function forcedReconnect() { - var msg = 'Safely reconnecting you now..'; var msg = _kiwi.global.i18n.translate('client_models_application_jumpserver_reconnect').fetch(); that.message.text(msg, {timeout: 8000});