From 6926f7085bb2d1e3df02a6eb0547e40c5d47ef3f Mon Sep 17 00:00:00 2001 From: Manuel Menezes de Sequeira Date: Tue, 20 May 2014 13:23:24 +0100 Subject: Add localization to connection error message. --- cloud.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cloud.js') diff --git a/cloud.js b/cloud.js index 17fc76b..0dd7780 100644 --- a/cloud.js +++ b/cloud.js @@ -107,7 +107,7 @@ Cloud.prototype.signup = function ( errorCall.call( null, myself.url + 'SignUp', - 'could not connect to:' + localize('could not connect to:') ); } } @@ -164,7 +164,7 @@ Cloud.prototype.getPublicProject = function ( errorCall.call( null, myself.url + 'Public', - 'could not connect to:' + localize('could not connect to:') ); } } @@ -217,7 +217,7 @@ Cloud.prototype.resetPassword = function ( errorCall.call( null, myself.url + 'ResetPW', - 'could not connect to:' + localize('could not connect to:') ); } } @@ -264,7 +264,7 @@ Cloud.prototype.connect = function ( errorCall.call( null, myself.url, - 'could not connect to:' + localize('could not connect to:') ); } } @@ -533,7 +533,7 @@ Cloud.prototype.callService = function ( errorCall.call( this, request.responseText, - 'Service: ' + serviceName + localize('Service:') + ' ' + localize(serviceName) ); return; } -- cgit v1.3.1 From 24f7a37a56e4c44d6dd339f227507871867f1436 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Mon, 26 May 2014 09:57:21 +0200 Subject: Localization additions and Portuguese translation update, thanks, Manuel! --- cloud.js | 5 +++-- history.txt | 1 + lang-pt.js | 2 +- locale.js | 4 ++-- 4 files changed, 7 insertions(+), 5 deletions(-) (limited to 'cloud.js') diff --git a/cloud.js b/cloud.js index 0dd7780..54189d8 100644 --- a/cloud.js +++ b/cloud.js @@ -27,9 +27,10 @@ // Global settings ///////////////////////////////////////////////////// -/*global modules, IDE_Morph, SnapSerializer, hex_sha512, alert, nop*/ +/*global modules, IDE_Morph, SnapSerializer, hex_sha512, alert, nop, +localize*/ -modules.cloud = '2014-January-09'; +modules.cloud = '2014-May-26'; // Global stuff diff --git a/history.txt b/history.txt index ecfdff4..8155285 100755 --- a/history.txt +++ b/history.txt @@ -2137,3 +2137,4 @@ ______ 140526 ------ * Objects: Fixed #445 (minor search + zoom issues) +* Localization additions and Portuguese translation update, thanks, Manuel! diff --git a/lang-pt.js b/lang-pt.js index ffc8bf1..226abf5 100755 --- a/lang-pt.js +++ b/lang-pt.js @@ -185,7 +185,7 @@ SnapTranslator.dict.pt = { 'translator_e-mail': 'mmsequeira@gmail.com', 'last_changed': - '2014-01-12', + '2014-05-26', // GUI // control bar: diff --git a/locale.js b/locale.js index d981960..c10aa64 100644 --- a/locale.js +++ b/locale.js @@ -42,7 +42,7 @@ /*global modules, contains*/ -modules.locale = '2014-May-02'; +modules.locale = '2014-May-26'; // Global stuff @@ -209,7 +209,7 @@ SnapTranslator.dict.pt = { 'translator_e-mail': 'mmsequeira@gmail.com', 'last_changed': - '2014-01-12' + '2014-05-26' }; SnapTranslator.dict.cs = { -- cgit v1.3.1