Making more things translateable

Now we’re done with the text that lives in tiddlers, and we’ll need to
get on with the text that is embedded in code modules.
This commit is contained in:
Jermolene
2014-02-16 09:46:43 +00:00
parent 75b9de222e
commit e051eb7d90
53 changed files with 181 additions and 119 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ Handles saving changes via HTML5's download APIs
"use strict";
// Title of the tiddler containing the download message
var downloadInstructionsTitle = "$:/messages/Download"
var downloadInstructionsTitle = "$:/language/Modals/Download";
/*
Select the appropriate saver module and set it up
+1 -1
View File
@@ -65,7 +65,7 @@ UploadSaver.prototype.save = function(text,method,callback) {
}
};
http.send(data);
$tw.notifier.display("$:/messages/StartingSave");
$tw.notifier.display("$:/language/Notifications/Save/Starting");
return true;
};