mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-11-25 19:54:52 +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:
@@ -39,7 +39,7 @@ TWEditSaver.prototype.save = function(text,method,callback) {
|
||||
// Error handler
|
||||
var errorHandler = function(event) {
|
||||
// Error
|
||||
callback("Error saving to TWEdit: " + event.target.error.code);
|
||||
callback($tw.language.getString("Error/SavingToTWEdit") + ": " + event.target.error.code);
|
||||
};
|
||||
// Get the file system
|
||||
window.requestFileSystem(LocalFileSystem.PERSISTENT,0,function(fileSystem) {
|
||||
|
||||
Reference in New Issue
Block a user