From 99c21232ee4ee202ce9d4d3ccfe54609cd3f5661 Mon Sep 17 00:00:00 2001 From: Myeongjin Date: Mon, 23 May 2016 06:33:02 +0900 Subject: [PATCH] Fix referred name of localisable string for recursive transclusion error (#2458) --- plugins/tiddlywiki/tw2parser/classictransclude.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tiddlywiki/tw2parser/classictransclude.js b/plugins/tiddlywiki/tw2parser/classictransclude.js index ed8c5da76..8afbed60c 100644 --- a/plugins/tiddlywiki/tw2parser/classictransclude.js +++ b/plugins/tiddlywiki/tw2parser/classictransclude.js @@ -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: $tw.language.getString("RecursiveTransclusion")}]); + this.makeChildWidgets([{type: "text", text: $tw.language.getString("Error/RecursiveTransclusion")}]); return; } // Check for correct type