mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-02 16:26:59 +00:00
Add localisable strings (#2438)
* Add localisable string for recursive transclusion error * Add localisable string for count * Add localisable strings for syncer
This commit is contained in:
@@ -79,7 +79,7 @@ TranscludeWidget.prototype.execute = function() {
|
||||
// Check for recursion
|
||||
var recursionMarker = this.makeRecursionMarker();
|
||||
if(this.parentWidget && this.parentWidget.hasVariable("transclusion",recursionMarker)) {
|
||||
this.makeChildWidgets([{type: "text", text: "Recursive transclusion error in transclude widget"}]);
|
||||
this.makeChildWidgets([{type: "text", text: $tw.language.getString("RecursiveTransclusion")}]);
|
||||
return;
|
||||
}
|
||||
// Check for correct type
|
||||
|
||||
Reference in New Issue
Block a user