summaryrefslogtreecommitdiff
path: root/cloud.js
diff options
context:
space:
mode:
authorJens Mönig <jens@moenig.org>2014-05-26 09:42:32 +0200
committerJens Mönig <jens@moenig.org>2014-05-26 09:42:32 +0200
commit00112859a503c6e7adbc6c5d0b62e07cc486c75f (patch)
tree724f113590703856ca65a95cb3fb69cfee55f23c /cloud.js
parent8125861f8062727cc7a3abb2e3a140279a10b862 (diff)
parent43bfc95c1bda3912263475c4e49e9b4a4591c6de (diff)
downloadsnap-byow-00112859a503c6e7adbc6c5d0b62e07cc486c75f.tar.gz
snap-byow-00112859a503c6e7adbc6c5d0b62e07cc486c75f.zip
Merge pull request #443 from MMSequeira/master
Update to Portuguese (Portugal) translation and a few new localizations
Diffstat (limited to 'cloud.js')
-rw-r--r--cloud.js10
1 files changed, 5 insertions, 5 deletions
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;
}