mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 23:36:00 +00:00
Added use of locale inColoring algorithm
This commit is contained in:
parent
56ab95df40
commit
0a294c1720
@ -192,6 +192,9 @@
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Color number is";
|
||||
|
||||
$g_lang['done'] = "Done";
|
||||
|
||||
$g_lang['action'] = "Actions";
|
||||
|
@ -230,6 +230,9 @@
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Color number is";
|
||||
|
||||
$g_lang['done'] = "Done";
|
||||
|
||||
$g_lang['action'] = "Actions";
|
||||
|
@ -229,6 +229,9 @@ We have added Dutch translation 🇳🇱. Thank you Willie de Wit</a>";
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Color number is";
|
||||
|
||||
$g_lang['done'] = "Done";
|
||||
|
||||
$g_lang['action'] = "Actions";
|
||||
|
@ -229,6 +229,9 @@ Tenemos traducciones en griego 🇬🇷.</a> <a href=\"https://github.com/UnickS
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Color number is";
|
||||
|
||||
$g_lang['done'] = "Done";
|
||||
|
||||
$g_lang['action'] = "Actions";
|
||||
|
@ -197,6 +197,9 @@
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Color number is";
|
||||
|
||||
$g_lang['done'] = "Done";
|
||||
|
||||
$g_lang['action'] = "Actions";
|
||||
|
@ -194,6 +194,9 @@
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Color number is";
|
||||
|
||||
$g_lang['done'] = "Done";
|
||||
|
||||
$g_lang['action'] = "Actions";
|
||||
|
@ -195,6 +195,9 @@
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Color number is";
|
||||
|
||||
$g_lang['done'] = "Done";
|
||||
|
||||
$g_lang['action'] = "Actions";
|
||||
|
@ -230,6 +230,9 @@
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "Максимальная степень вершин графа равна";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Найденное количество цветов";
|
||||
|
||||
$g_lang['done'] = "Готово";
|
||||
|
||||
$g_lang['action'] = "Действия";
|
||||
|
@ -191,6 +191,9 @@
|
||||
// VerticesDegree.js
|
||||
$g_lang['maximum_degree_of_graph'] = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
$g_lang['color_number'] = "Color number is";
|
||||
|
||||
$g_lang['done'] = "Done";
|
||||
|
||||
$g_lang['action'] = "Actions";
|
||||
|
@ -30,7 +30,7 @@ Coloring.prototype.getId = function()
|
||||
// @return message for user.
|
||||
Coloring.prototype.getMessage = function(local)
|
||||
{
|
||||
return (local == "ru" ? "Найденное количество цветов " : "Color number is ") + this.connectedComponentNumber;
|
||||
return g_colorNumber + " " + this.connectedComponentNumber;
|
||||
}
|
||||
|
||||
Coloring.prototype.result = function(resultCallback)
|
||||
|
@ -159,6 +159,9 @@ var g_vertexPeripheral = "Peripheral";
|
||||
// VerticesDegree.js
|
||||
var g_maximumDegreeOfGraph = "The maximum degree of a graph is";
|
||||
|
||||
// Coloring.js
|
||||
var g_colorNumber = "Color number is";
|
||||
|
||||
var g_done = "Done";
|
||||
|
||||
var g_action = "Action";
|
||||
@ -334,6 +337,9 @@ function loadTexts()
|
||||
// VerticesDegree.js
|
||||
g_maximumDegreeOfGraph = document.getElementById("MaximumDegreeOfGraph").innerHTML;
|
||||
|
||||
// Coloring.js
|
||||
g_colorNumber = document.getElementById("ColorNumber").innerHTML;
|
||||
|
||||
g_done = document.getElementById("Done").innerHTML;
|
||||
|
||||
g_action = document.getElementById("ActionText").innerHTML;
|
||||
|
@ -761,6 +761,9 @@
|
||||
<!-- VerticesDegree.js -->
|
||||
<p id="MaximumDegreeOfGraph" class="translation"><?= L('maximum_degree_of_graph')?></p>
|
||||
|
||||
<!-- Coloring.js -->
|
||||
<p id="ColorNumber" class="translation"><?= L('color_number')?></p>
|
||||
|
||||
<p id="Done" class="translation"><?= L('done')?></p>
|
||||
|
||||
<p id="ActionText" class="translation"><?= L('action')?></p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user