1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-10-29 06:37:39 +00:00

Add localisable strings for error (#2447)

* Add localisable strings for error

* Update tiddler Transclusion Basic Usage in fr-FR
This commit is contained in:
Myeongjin
2016-05-18 05:58:47 +09:00
committed by Jeremy Ruston
parent eb47c6b2c5
commit 6388f859d1
16 changed files with 49 additions and 35 deletions

View File

@@ -196,7 +196,7 @@ Syncer.prototype.syncFromServer = function() {
},self.pollTimerInterval);
// Check for errors
if(err) {
self.logger.alert($tw.language.getString("Syncer/ErrorRetrievingSkinny") + ":",err);
self.logger.alert($tw.language.getString("Error/RetrievingSkinny") + ":",err);
return;
}
// Process each incoming tiddler
@@ -275,7 +275,7 @@ Syncer.prototype.handleLoginEvent = function() {
this.getStatus(function(err,isLoggedIn,username) {
if(!isLoggedIn) {
$tw.passwordPrompt.createPrompt({
serviceName: $tw.language.getString("Syncer/LoginToTiddlySpace"),
serviceName: $tw.language.getString("LoginToTiddlySpace"),
callback: function(data) {
self.login(data.username,data.password,function(err,isLoggedIn) {
self.syncFromServer();