From 56ab95df40e39fc1cbd98eb35900ae2a7ea91042 Mon Sep 17 00:00:00 2001 From: serd2011 <45919738+serd2011@users.noreply.github.com> Date: Sun, 19 Sep 2021 18:59:11 +0300 Subject: [PATCH] Added use of locale in Graph Reorder algorithm --- script/plugins/GraphReorder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/plugins/GraphReorder.js b/script/plugins/GraphReorder.js index c1d05df..f31fda1 100755 --- a/script/plugins/GraphReorder.js +++ b/script/plugins/GraphReorder.js @@ -30,7 +30,7 @@ GraphReorder.prototype.getId = function() // @return message for user. GraphReorder.prototype.getMessage = function(local) { - return (local == "ru" ? "Готово" : "Done"); + return g_done; } GraphReorder.prototype.result = function(resultCallback)