Added use of locale in Radius and Diameter algorithm

This commit is contained in:
serd2011
2021-09-19 18:27:12 +03:00
parent b2919829e3
commit c145c53ec8
12 changed files with 116 additions and 9 deletions

View File

@@ -172,6 +172,7 @@
$g_lang["min_spanning_tree_ignore_direction"] = "In time of calculation we have ignored the edges direction.";
$g_lang["min_spanning_tree_graph_not_connected"] = "Graph is disconnected";
// IsomorphismCheck.js
$g_lang['select_first_graph_isomorphism_check'] = "Select first graph for isomorphic check. Click to any node of graph";
$g_lang['select_second_graph_isomorphism_check'] = "Select second graph for isomorphic check. Click to any node of graph";
$g_lang['select_first_graph_pattern_check'] = "Select a template graph by clicking to any node of graph";
@@ -185,6 +186,14 @@
$g_lang['graph_has_no_atleast_2_graphs'] = "To use the algorithm, you need to create 2 separate graphs";
$g_lang['isomorphism_check'] = "Check Graphs Isomorphism";
// RadiusAndDiameter.js
$g_lang['graph_is_disconnected'] = "Graph is disconnected";
$g_lang['graph_is_trivial'] = "Graph contains only one vertex";
$g_lang['graph_radius'] = "Graph radius";
$g_lang['graph_diameter'] = "Graph diameter";
$g_lang['vertex_central'] = "Central";
$g_lang['vertex_peripheral'] = "Peripheral";
$g_lang['action'] = "Actions";
$g_lang['common_edge_style'] = "Common edge style";
$g_lang['selected_edge_style'] = "Selected edge style";