Added use of locale in Graph Reorder algorithm

This commit is contained in:
serd2011 2021-09-19 18:59:11 +03:00
parent 92dd7751e3
commit 56ab95df40

View File

@ -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)