mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-06-17 14:22:02 +00:00
first commit
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
$g_lang['m_title'] = '404 Page not found';
|
||||
$g_lang['head'] = 'Page not found';
|
||||
$g_lang['message'] = '<p>Sorry but page was not found on the server.</p>
|
||||
<p>Perhaps these options can help you:</p>
|
||||
<ul>
|
||||
<li>Go to the <a href="' . SiteRoot() . '" title="Go to home page">home page</a></li>
|
||||
<li>Return to the <a href="javascript:history.back()" title="Go to previous page">previous page</a></li>
|
||||
</ul>';
|
||||
?>
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
$g_lang['title_notg'] = 'Page is not ready';
|
||||
$g_lang['text'] = '<p>Sorry but page is not ready yet.</p>';
|
||||
?>
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "About Graph Online project";
|
||||
$g_lang["text"] = "<p>Graph Online was created by authors of <a href=\"http://grafoanalizator.unick-soft.ru/en/abouten.html\" style=\"color: rgb(207, 56, 34); margin: 0px;\"><span style=\"color:#000000\">Graphanalyzer</span></a><span style=\"color:#000000\"> </span>http://grafoanalizator.unick-soft.ru/en/. Now it is online service for education and business.</p>\n";
|
||||
|
||||
$g_lang["m_title"] = "About Graph online service";
|
||||
$g_lang["m_keyWords"] = "graph online, find shortest path, graph visualization";
|
||||
$g_lang["m_description"] = "About Graph Online project";
|
||||
?>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Главный языковой файл для английской версии сайта, грузится всегда и при этом первым
|
||||
*
|
||||
* @author Zmi
|
||||
*/
|
||||
|
||||
|
||||
$g_lang['m_title'] = 'Graph Online';
|
||||
$g_lang['m_description'] = '';
|
||||
$g_lang['m_keyWords'] = '';
|
||||
$g_lang['m_titlePostfix'] = '';
|
||||
?>
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
$g_lang['title_notg'] = 'Page is not ready';
|
||||
$g_lang['text'] = '<p>Sorry but page is not ready yet.</p>';
|
||||
?>
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Page is not ready";
|
||||
$g_lang["text"] = "<p>Please send your questions to admin@unick-soft.ru or soft_support@list.ru</p>\n";
|
||||
|
||||
?>
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Graph Online feedback";
|
||||
$g_lang["text"] = "<p>Please send your questions to admin@unick-soft.ru or soft_support@list.ru</p>\n";
|
||||
|
||||
$g_lang["m_title"] = "Graph Online contacts";
|
||||
$g_lang["m_keyWords"] = "graph online contacts";
|
||||
$g_lang["m_description"] = "Contacts with admins of Graph online.";
|
||||
?>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Graph Online feedback";
|
||||
$g_lang["text"] = "<p>Please, send your questions to admin@unick-soft.ru or soft_support@list.ru</p>\n";
|
||||
|
||||
$g_lang["m_title"] = "Graph Online contacts";
|
||||
$g_lang["m_keyWords"] = "graph online contacts";
|
||||
$g_lang["m_description"] = "Contacts with admins of Graph online.";
|
||||
?>
|
||||
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
|
||||
$g_lang["head_no_tags"] = "Creating graph from incidence matrix";
|
||||
$g_lang["text"] = "<p>On this page you can enter incidence matrix and plot graph</p>\n";
|
||||
$g_lang["incidence_matrix_description"] = "Enter incidence matrix. Using commo \",\" as separator and press \"Plot Graph\"";
|
||||
$g_lang["incidence_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator. Matrix should be square.";
|
||||
$g_lang["plot_graph_button"] = "Plot graph";
|
||||
|
||||
$g_lang["m_title"] = "Creating graph from incidence matrix";
|
||||
$g_lang["m_keyWords"] = "graph online, plot graph, creating graph from incidence matrix, incidence matrix";
|
||||
$g_lang["m_description"] = "Creating graph from incidence matrix";
|
||||
|
||||
$g_lang["matrix_matrix_input"] = "Enter to table";
|
||||
$g_lang["text_matrix_input"] = "Enter as text";
|
||||
$g_lang["incidence_matrix_description_matrix"] = "Enter incidence matrix. Press \"Plot Graph\" to plot";
|
||||
$g_lang["add_edge_to_matrix"] = "Add edge";
|
||||
$g_lang["add_node_to_matrix"] = "Add node";
|
||||
|
||||
?>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
$g_lang["head_no_tags"] = "Построение графа по матрице смежности";
|
||||
$g_lang["text"] = "<p>На этой странице вы можете задать матрицу смежности и построить по ней граф </p>\n";
|
||||
$g_lang["adjacency_matrix_description"] = "Задайте матрицу смежности. Используйте запятую \",\" в качестве разделителя. Затем нажнимте кнопку \"Построить граф\"";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Мартрица имеет неправильный формат. Используйте запятую \",\" в качестве разделителя. Матрица должна иметь одинаковое количество столбцов и строк";
|
||||
|
||||
$g_lang["m_title"] = "Построение графа по матрице смежности";
|
||||
$g_lang["m_keyWords"] = "матрица смежности, граф, создание графа";
|
||||
$g_lang["m_description"] = "Создание графа по матрице смежности";
|
||||
?>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
$g_lang["head_no_tags"] = "Creating graph from adjacency matrix";
|
||||
$g_lang["text"] = "<p>On this page you can enter adjacency matrix and plot graph</p>\n";
|
||||
$g_lang["adjacency_matrix_description"] = "Enter adjacency matrix. Using commo \",\" as separator and press \"Plot Graph\"";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator. Matrix should be square.";
|
||||
$g_lang["plot_graph_button"] = "Plot graph";
|
||||
|
||||
$g_lang["m_title"] = "Creating graph from adjacency matrix";
|
||||
$g_lang["m_keyWords"] = "graph online, plot graph, creating graph from adjacency matrix, adjacency matrix";
|
||||
$g_lang["m_description"] = "Creating graph from adjacency matrix";
|
||||
|
||||
$g_lang["matrix_matrix_input"] = "Enter as table";
|
||||
$g_lang["text_matrix_input"] = "Enter as text";
|
||||
$g_lang["adjacency_matrix_description_matrix"] = "Enter adjacency matrix. Press \"Plot Graph\"";
|
||||
$g_lang["add_node_to_matrix"] = "Add node to matrix";
|
||||
?>
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
$g_lang['title_notg'] = 'Page is not ready';
|
||||
$g_lang['text'] = '<p>Sorry but page is not ready yet.</p>';
|
||||
?>
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
$g_lang['title_notg'] = 'Page is not ready';
|
||||
$g_lang['text'] = '<p>Sorry but page is not ready yet.</p>';
|
||||
?>
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Page is not ready";
|
||||
$g_lang["text"] = "<p>Sorry but page is not ready yet. Test.</p>\n";
|
||||
|
||||
?>
|
||||
Executable
+16
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
$g_lang["title_notg"] = "Page is not ready";
|
||||
$g_lang["text"] = "<p>Sorry but page is not ready yet. Test.</p>\n";
|
||||
$g_lang["add_node"] = "Äîáàâèòü âåðøèíó";
|
||||
$g_lang["connect_nodes"] = "Ñîåäèíèòü âåðøèíû";
|
||||
$g_lang["delete"] = "Óäàëèòü";
|
||||
$g_lang["default"] = "Ïåðåìåùåíèå";
|
||||
$g_lang["short_path"] = "Íàéòè êðàò÷àéøèõ ïóòü";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
?>
|
||||
Executable
+19
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Page is not ready";
|
||||
$g_lang["text"] = "<p>Sorry but page is not ready yet. Test.</p>\n";
|
||||
$g_lang["add_node"] = "Add edge";
|
||||
$g_lang["connect_nodes"] = "Connect edges";
|
||||
$g_lang["delete"] = "Remove edge";
|
||||
$g_lang["default"] = "Grad and drop";
|
||||
$g_lang["short_path"] = "Find shortest path";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
|
||||
$g_lang["m_title"] = "Find shortes path online";
|
||||
?>
|
||||
Executable
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Find shortest path";
|
||||
$g_lang["text"] = "<p>Create graph and find shortest path</p>\n";
|
||||
$g_lang["add_node"] = "Add vertex";
|
||||
$g_lang["connect_nodes"] = "Connect vertexs";
|
||||
$g_lang["delete"] = "Remove object";
|
||||
$g_lang["default"] = "Drad & drop";
|
||||
$g_lang["short_path"] = "Find shortest path";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
$g_lang["add_graph"] = "Add edge";
|
||||
$g_lang["orint_edge"] = "Directed";
|
||||
$g_lang["not_orint_edge"] = "Undirected";
|
||||
$g_lang["show_adjacency_matrix"] = "Adjacency Matrix";
|
||||
$g_lang["save"] = "Save";
|
||||
$g_lang["cancel"] = "Cancel";
|
||||
$g_lang["adjacency_matrix_description"] = "Setup adjacency matrix. Use commo \",\" as separator";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator. Matrix should be square";
|
||||
$g_lang["delete_all"] = "Remove all";
|
||||
|
||||
$g_lang["m_title"] = "Find shortes path online";
|
||||
?>
|
||||
Executable
+39
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Find shortest path";
|
||||
$g_lang["text"] = "<p>Create graph and find shortest path</p>\n";
|
||||
$g_lang["add_node"] = "Add vertex";
|
||||
$g_lang["connect_nodes"] = "Connect vertexs";
|
||||
$g_lang["delete"] = "Remove object";
|
||||
$g_lang["default"] = "Drad & drop";
|
||||
$g_lang["short_path"] = "Find shortest path";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
$g_lang["add_graph"] = "Add edge";
|
||||
$g_lang["orint_edge"] = "Directed";
|
||||
$g_lang["not_orint_edge"] = "Undirected";
|
||||
$g_lang["show_adjacency_matrix"] = "Adjacency Matrix";
|
||||
$g_lang["save"] = "Save";
|
||||
$g_lang["cancel"] = "Cancel";
|
||||
$g_lang["adjacency_matrix_description"] = "Setup adjacency matrix. Use commo \",\" as separator";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator. Matrix should be square";
|
||||
$g_lang["delete_all"] = "Remove all";
|
||||
|
||||
|
||||
$g_lang["click_to_add_vertex"] = "Êëèêíèòå íà ðàáî÷óþ îáëàñòü, ÷òîáû äîáàâèòü âåðøèíó";
|
||||
$g_lang["select_first_vertext_to_connect"] = "Âûäåëåòå ïåðâóþ âåðøèíó";
|
||||
$g_lang["select_second_vertext_to_connect"] = "Âûäåëèòå âòîðóþ âåðøèíó, êîòîðóþ õîòèòå ñîåäèíèòü";
|
||||
$g_lang["select_start_short_path_vertex"] = "Âûäåëèòå âåðøèíó, èç êîòîðîé õîòèòå íàéòè êðàò÷àéøèõ ïóòü";
|
||||
$g_lang["select_finish_short_path_vertex"] = "Âûäåëèòå êîíå÷íóþ âåðøèíó êðàò÷àéøåãî ïóòè";
|
||||
$g_lang["short_path_result"] = "Ðàññòîÿíèå ìåæäó âåðøèíàìè %d";
|
||||
|
||||
|
||||
$g_lang["m_title"] = "Find shortest path online";
|
||||
$g_lang["m_keyWords"] = "graph online, find shortest path, graph visualization, graph by adjacency matrix";
|
||||
$g_lang["m_description"] = "Create graph and find shortest path";
|
||||
?>
|
||||
Executable
+36
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Find shortest path";
|
||||
$g_lang["text"] = "<p>Create graph and find shortest path</p>\n";
|
||||
$g_lang["add_node"] = "Add vertex";
|
||||
$g_lang["connect_nodes"] = "Connect vertexs";
|
||||
$g_lang["delete"] = "Remove object";
|
||||
$g_lang["default"] = "Drad & drop";
|
||||
$g_lang["short_path"] = "Find shortest path";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
$g_lang["add_graph"] = "Add edge";
|
||||
$g_lang["orint_edge"] = "Directed";
|
||||
$g_lang["not_orint_edge"] = "Undirected";
|
||||
$g_lang["show_adjacency_matrix"] = "Adjacency Matrix";
|
||||
$g_lang["save"] = "Save";
|
||||
$g_lang["cancel"] = "Cancel";
|
||||
$g_lang["adjacency_matrix_description"] = "Setup adjacency matrix. Use commo \",\" as separator";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator. Matrix should be square";
|
||||
$g_lang["delete_all"] = "Remove all";
|
||||
$g_lang["click_to_add_vertex"] = "Click to add new vertex";
|
||||
$g_lang["select_first_vertext_to_connect"] = "Выделете первую вершину";
|
||||
$g_lang["select_second_vertext_to_connect"] = "Выделите вторую вершину, которую хотите соединить";
|
||||
$g_lang["select_start_short_path_vertex"] = "Выделите вершину, из которой хотите найти кратчайших путь";
|
||||
$g_lang["select_finish_short_path_vertex"] = "Выделите конечную вершину кратчайшего пути";
|
||||
$g_lang["short_path_result"] = "Расстояние между вершинами %d";
|
||||
|
||||
$g_lang["m_title"] = "Find shortest path online";
|
||||
$g_lang["m_keyWords"] = "graph online, find shortest path, graph visualization, graph by adjacency matrix";
|
||||
$g_lang["m_description"] = "Create graph and find shortest path";
|
||||
?>
|
||||
Executable
+39
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Find shortest path";
|
||||
$g_lang["text"] = "<p>Create graph and find shortest path</p>\n";
|
||||
$g_lang["add_node"] = "Add vertex";
|
||||
$g_lang["connect_nodes"] = "Connect vertexs";
|
||||
$g_lang["delete"] = "Remove object";
|
||||
$g_lang["default"] = "Drad & drop";
|
||||
$g_lang["short_path"] = "Find shortest path";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
$g_lang["add_graph"] = "Add edge";
|
||||
$g_lang["orint_edge"] = "Directed";
|
||||
$g_lang["not_orint_edge"] = "Undirected";
|
||||
$g_lang["show_adjacency_matrix"] = "Adjacency Matrix";
|
||||
$g_lang["save"] = "Save";
|
||||
$g_lang["cancel"] = "Cancel";
|
||||
$g_lang["adjacency_matrix_description"] = "Setup adjacency matrix. Use commo \",\" as separator";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator. Matrix should be square";
|
||||
$g_lang["delete_all"] = "Remove all";
|
||||
$g_lang["click_to_add_vertex"] = "Click to workspace to add new vertex";
|
||||
$g_lang["select_first_vertext_to_connect"] = "Choice first vertext of edge";
|
||||
$g_lang["select_second_vertext_to_connect"] = "Choice second vertext of edge";
|
||||
$g_lang["select_start_short_path_vertex"] = "Choice the initial vertex of the shortest path";
|
||||
$g_lang["select_finish_short_path_vertex"] = "Choice the end vertex of the shortest path";
|
||||
$g_lang["short_path_result"] = "Shortest path length is %d";
|
||||
$g_lang["path_not_exists"] = "Ïóòè íå ñóùåñòâóåò";
|
||||
$g_lang["select_object_to_delete"] = "Êëèêíèòå ïî îáúåêòó, êîòîðûé õîòèòå óäàëèòü";
|
||||
|
||||
|
||||
$g_lang["m_title"] = "Find shortest path online";
|
||||
$g_lang["m_keyWords"] = "graph online, find shortest path, graph visualization, graph by adjacency matrix";
|
||||
$g_lang["m_description"] = "Create graph and find shortest path";
|
||||
?>
|
||||
Executable
+38
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Find shortest path";
|
||||
$g_lang["text"] = "<p>Create graph and find shortest path</p>\n";
|
||||
$g_lang["add_node"] = "Add vertex";
|
||||
$g_lang["connect_nodes"] = "Connect vertexs";
|
||||
$g_lang["delete"] = "Remove object";
|
||||
$g_lang["default"] = "Drad & drop";
|
||||
$g_lang["short_path"] = "Find shortest path";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
$g_lang["add_graph"] = "Add edge";
|
||||
$g_lang["orint_edge"] = "Directed";
|
||||
$g_lang["not_orint_edge"] = "Undirected";
|
||||
$g_lang["show_adjacency_matrix"] = "Adjacency Matrix";
|
||||
$g_lang["save"] = "Save";
|
||||
$g_lang["cancel"] = "Cancel";
|
||||
$g_lang["adjacency_matrix_description"] = "Setup adjacency matrix. Use commo \",\" as separator";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator. Matrix should be square";
|
||||
$g_lang["delete_all"] = "Remove all";
|
||||
$g_lang["click_to_add_vertex"] = "Click to workspace to add new vertex";
|
||||
$g_lang["select_first_vertext_to_connect"] = "Choice first vertext of edge";
|
||||
$g_lang["select_second_vertext_to_connect"] = "Choice second vertext of edge";
|
||||
$g_lang["select_start_short_path_vertex"] = "Choice the initial vertex of the shortest path";
|
||||
$g_lang["select_finish_short_path_vertex"] = "Choice the end vertex of the shortest path";
|
||||
$g_lang["short_path_result"] = "Shortest path length is %d";
|
||||
$g_lang["path_not_exists"] = "Path does not exists";
|
||||
$g_lang["select_object_to_delete"] = "Click on object to remove";
|
||||
|
||||
$g_lang["m_title"] = "Find shortest path online";
|
||||
$g_lang["m_keyWords"] = "graph online, find shortest path, graph visualization, graph by adjacency matrix";
|
||||
$g_lang["m_description"] = "Create graph and find shortest path";
|
||||
?>
|
||||
@@ -0,0 +1,116 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Find shortest path";
|
||||
$g_lang["text"] = "<p>Create graph and find shortest path. On the Help page you <a href=\"/en/help\">will find tutorial video</a>.</p>";
|
||||
$g_lang["add_node"] = "Add vertex";
|
||||
$g_lang["connect_nodes"] = "Connect vertexs";
|
||||
$g_lang["delete"] = "Remove object";
|
||||
$g_lang["default"] = "Drad & drop";
|
||||
$g_lang["short_path"] = "Find shortest path";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse or move workspace";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
$g_lang["add_graph"] = "Add edge";
|
||||
$g_lang["orint_edge"] = "Directed";
|
||||
$g_lang["not_orint_edge"] = "Undirected";
|
||||
$g_lang["show_adjacency_matrix"] = "Adjacency Matrix";
|
||||
$g_lang["save"] = "Save";
|
||||
$g_lang["cancel"] = "Cancel";
|
||||
$g_lang["adjacency_matrix_description"] = "Setup adjacency matrix. Use commo \",\" as separator";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator. Matrix should be square";
|
||||
$g_lang["delete_all"] = "Remove all";
|
||||
$g_lang["click_to_add_vertex"] = "Click to workspace to add new vertex. <span style=\"float:right;\">Vertex enumeration " .
|
||||
"<select id=\"enumVertexsText\">" .
|
||||
"</select></span>";
|
||||
$g_lang["select_first_vertext_to_connect"] = "Choice first vertext of edge";
|
||||
$g_lang["select_second_vertext_to_connect"] = "Choice second vertext of edge";
|
||||
$g_lang["select_start_short_path_vertex"] = "Choice the initial vertex of the shortest path";
|
||||
$g_lang["select_finish_short_path_vertex"] = "Choice the end vertex of the shortest path";
|
||||
$g_lang["short_path_result"] = "Shortest path length is %d";
|
||||
$g_lang["path_not_exists"] = "Path does not exists";
|
||||
$g_lang["select_object_to_delete"] = "Click on object to remove";
|
||||
|
||||
$g_lang["m_title"] = "Find shortest path online";
|
||||
$g_lang["m_keyWords"] = "graph online, find shortest path, graph visualization, graph by adjacency matrix";
|
||||
$g_lang["m_description"] = "Create graph and find shortest path";
|
||||
|
||||
$g_lang["shortest_dist"] = "lowest distance is ";
|
||||
|
||||
$g_lang["show_incidence_matrix"] = "Incidence matrix";
|
||||
$g_lang["incidence_matrix_description"] = "Setup incidence matrix. Use commo \",\" as separator.";
|
||||
$g_lang["incidence_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator.";
|
||||
|
||||
$g_lang["this_is_graph_link"] = "Graph was saved. It will be available by link:";
|
||||
$g_lang["share_graph_text"] = "Graph Online: Saved Graph";
|
||||
$g_lang["share_graph_description"] = "Share link in social networks:";
|
||||
|
||||
$g_lang["graph"] = "Graph";
|
||||
$g_lang["save_dialog_title"] = "Saving Graph";
|
||||
$g_lang["close_button"] = "close";
|
||||
|
||||
$g_lang["connected_component"] = "Find connected components";
|
||||
|
||||
$g_lang["sick_connected_component_result"] = "Number of sick connected components is ";
|
||||
$g_lang["connected_component_result"] = "Number of connected components is ";
|
||||
|
||||
$g_lang["new_graph"] = "Create graph";
|
||||
|
||||
|
||||
$g_lang["what_do_you_think"] = "What do you think about site?";
|
||||
$g_lang["name"] = "Name (email for feedback)";
|
||||
$g_lang["feedback"] = "Feedback";
|
||||
$g_lang["send"] = "Send";
|
||||
$g_lang["write_to_us"] = "Wrigte to us";
|
||||
|
||||
|
||||
$g_lang["fix_matrix_button"] = "fix matrix";
|
||||
$g_lang["open_matrix_help"] = "help (russian)";
|
||||
$g_lang["wrong_matrix_title"] = "Matrix has wrond format";
|
||||
|
||||
$g_lang["bad_adj_matrix_message"] = "Cannot create graph. Adjacency Matrix has wrong format. Click \"" .
|
||||
$g_lang["fix_matrix_button"] . "\" button to fix matrix or \"" . $g_lang["open_matrix_help"] .
|
||||
"\" button to open help about Adjacency Matrix format";
|
||||
|
||||
$g_lang["bad_inc_matrix_message"] = "Cannot create graph. Incidence Matrix has wrong format. Click \"" .
|
||||
$g_lang["fix_matrix_button"] . "\" button to fix matrix or \"" . $g_lang["open_matrix_help"] .
|
||||
"\" button to open help about Incidence Matrix format";
|
||||
|
||||
$g_lang["save_image"] = "Save graph image";
|
||||
|
||||
|
||||
$g_lang["open_saved_image_browser"] = "Open image in browser";
|
||||
$g_lang["download_saved_image"] = "Download saved image";
|
||||
$g_lang["save_image_dialog_title"] = "Save Graph Image";
|
||||
|
||||
$g_lang["full_report"] = "Full report";
|
||||
$g_lang["short_report"] = "Short report";
|
||||
|
||||
$g_lang["find_eulerian_loop"] = "Find Eulerian cycle";
|
||||
$g_lang["has_eulerian_loop"] = "Graph has Eulerian cycle";
|
||||
$g_lang["has_not_eulerian_loop"] = "Graph has not Eulerian cycle";
|
||||
|
||||
$g_lang["algorithms"] = "Algorithms";
|
||||
|
||||
$g_lang["processing"] = "Processing...";
|
||||
|
||||
|
||||
$g_lang["view"] = "View";
|
||||
$g_lang["view_keys"] = "To move use keys \"w\", \"a\", \"s\", \"d\".";
|
||||
|
||||
$g_lang["zoom_fit"] = "Zoom fit";
|
||||
$g_lang["zoom_in"] = "Zoom in (+)";
|
||||
$g_lang["zoom_out"] = "Zoom out (-)";
|
||||
|
||||
$g_lang["move_workspace"] = "Move workspace";
|
||||
|
||||
$g_lang["custom"] = "Custom text";
|
||||
$g_lang["enter_vertex_title"] = "Enter title";
|
||||
|
||||
$g_lang["rename_vertex"] = "Rename vertex";
|
||||
$g_lang["rename_text"] = "Rename";
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?php
|
||||
|
||||
$g_lang["title_notg"] = "Find shortest path";
|
||||
$g_lang["text"] = "<p>Create graph and find the shortest path. On the Help page you <a href=\"/en/help\">will find tutorial video</a>.</p>\n";
|
||||
$g_lang["add_node"] = "Add vertex";
|
||||
$g_lang["connect_nodes"] = "Connect vertexes";
|
||||
$g_lang["delete"] = "Remove object";
|
||||
$g_lang["default"] = "Drad & drop";
|
||||
$g_lang["short_path"] = "Find shortest path";
|
||||
$g_lang["save_direction_choose"] = "Save edge type";
|
||||
$g_lang["edge_weight"] = "Edge weight";
|
||||
$g_lang["save_weight_choose"] = "use value for the next edges";
|
||||
$g_lang["default_weight"] = "has no weight";
|
||||
$g_lang["browser_no_support"] = "Your browser is not supported";
|
||||
$g_lang["select_and_move_objects"] = "Select and move objects by mouse or move workspace";
|
||||
$g_lang["move_cursor_for_moving"] = "Drag cursor to move objects";
|
||||
$g_lang["add_graph"] = "Add edge";
|
||||
$g_lang["orint_edge"] = "Directed";
|
||||
$g_lang["not_orint_edge"] = "Undirected";
|
||||
$g_lang["show_adjacency_matrix"] = "Adjacency Matrix";
|
||||
$g_lang["save"] = "Save";
|
||||
$g_lang["cancel"] = "Cancel";
|
||||
$g_lang["adjacency_matrix_description"] = "Setup adjacency matrix. Use comma \",\" as separator";
|
||||
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use comma \",\" as separator. Matrix should be square";
|
||||
$g_lang["delete_all"] = "Remove all";
|
||||
$g_lang["click_to_add_vertex"] = "<p>Click to workspace to add a new vertex. Vertex enumeration</p>\n";
|
||||
$g_lang["select_first_vertext_to_connect"] = "Choice first vertex of edge";
|
||||
$g_lang["select_second_vertext_to_connect"] = "Choice second vertext of edge";
|
||||
$g_lang["select_start_short_path_vertex"] = "Choice the initial vertex of the shortest path";
|
||||
$g_lang["select_finish_short_path_vertex"] = "Choice the end vertex of the shortest path";
|
||||
$g_lang["short_path_result"] = "Shortest path length is %d";
|
||||
$g_lang["path_not_exists"] = "Path does not exists";
|
||||
$g_lang["select_object_to_delete"] = "Click on object to remove";
|
||||
$g_lang["shortest_dist"] = "lowest distance is ";
|
||||
$g_lang["show_incidence_matrix"] = "Incidence matrix";
|
||||
$g_lang["incidence_matrix_description"] = "Setup incidence matrix. Use commo \",\" as separator.";
|
||||
$g_lang["incidence_matrix_bad_format"] = "Matrix is incorrect. Use commo \",\" as separator.";
|
||||
$g_lang["this_is_graph_link"] = "Graph was saved. It will be available by link:";
|
||||
$g_lang["share_graph_text"] = "Graph Online: Saved Graph";
|
||||
$g_lang["share_graph_description"] = "Share link in social networks:";
|
||||
$g_lang["graph"] = "Graph";
|
||||
$g_lang["save_dialog_title"] = "Saving Graph";
|
||||
$g_lang["close_button"] = "close";
|
||||
$g_lang["connected_component"] = "Find connected components";
|
||||
$g_lang["sick_connected_component_result"] = "Number of sick connected components is ";
|
||||
$g_lang["connected_component_result"] = "Number of connected components is ";
|
||||
$g_lang["new_graph"] = "Create graph";
|
||||
$g_lang["what_do_you_think"] = "What do you think about site?";
|
||||
$g_lang["name"] = "Name (email for feedback)";
|
||||
$g_lang["feedback"] = "Feedback";
|
||||
$g_lang["send"] = "Send";
|
||||
$g_lang["write_to_us"] = "Wrigte to us";
|
||||
$g_lang["fix_matrix_button"] = "fix matrix";
|
||||
$g_lang["open_matrix_help"] = "help (russian)";
|
||||
$g_lang["wrong_matrix_title"] = "Matrix has wrond format";
|
||||
$g_lang["bad_adj_matrix_message"] = "Cannot create graph. Adjacency Matrix has wrong format. Click \"fix matrix\" button to fix matrix or \"help (russian)\" button to open help about Adjacency Matrix format";
|
||||
$g_lang["bad_inc_matrix_message"] = "Cannot create graph. Incidence Matrix has wrong format. Click \"fix matrix\" button to fix matrix or \"help (russian)\" button to open help about Incidence Matrix format";
|
||||
$g_lang["save_image"] = "Save graph image";
|
||||
$g_lang["open_saved_image_browser"] = "Open image in browser";
|
||||
$g_lang["download_saved_image"] = "Download saved image";
|
||||
$g_lang["save_image_dialog_title"] = "Save Graph Image";
|
||||
$g_lang["full_report"] = "Full report";
|
||||
$g_lang["short_report"] = "Short report";
|
||||
$g_lang["find_eulerian_loop"] = "Find Eulerian cycle";
|
||||
$g_lang["has_eulerian_loop"] = "Graph has Eulerian cycle";
|
||||
$g_lang["has_not_eulerian_loop"] = "Graph has not Eulerian cycle";
|
||||
$g_lang["algorithms"] = "Algorithms";
|
||||
$g_lang["processing"] = "Processing...";
|
||||
$g_lang["view"] = "View";
|
||||
$g_lang["view_keys"] = "To move use keys \"w\", \"a\", \"s\", \"d\".";
|
||||
$g_lang["zoom_fit"] = "Zoom fit";
|
||||
$g_lang["zoom_in"] = "Zoom in (+)";
|
||||
$g_lang["zoom_out"] = "Zoom out (-)";
|
||||
$g_lang["move_workspace"] = "Move workspace";
|
||||
$g_lang["custom"] = "Custom text";
|
||||
$g_lang["enter_vertex_title"] = "Enter title";
|
||||
$g_lang["rename_vertex"] = "Rename vertex";
|
||||
$g_lang["rename_text"] = "Rename";
|
||||
|
||||
$g_lang["m_title"] = "Find shortest path online";
|
||||
$g_lang["m_keyWords"] = "graph online, find shortest path, graph visualization, graph by adjacency matrix";
|
||||
$g_lang["m_description"] = "Create graph and find shortest path";
|
||||
?>
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
$g_lang['menu_0'] = 'Home';
|
||||
$g_lang['menu_1'] = 'About project';
|
||||
$g_lang['menu_2'] = 'Help';
|
||||
$g_lang['menu_3'] = 'Contacts';
|
||||
$g_lang['menu_4'] = '';
|
||||
$g_lang['menu_5'] = '';
|
||||
$g_lang['menu_6'] = '';
|
||||
$g_lang['menu_7'] = '';
|
||||
$g_lang['menu_8'] = '';
|
||||
$g_lang['menu_9'] = '';
|
||||
|
||||
$g_lang['footer_info'] = 'Graph Online';
|
||||
?>
|
||||
Executable
+14
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$g_lang["menu_0"] = "Home";
|
||||
$g_lang["menu_1"] = "About project";
|
||||
$g_lang["menu_2"] = "Help";
|
||||
$g_lang["menu_3"] = "Contacts";
|
||||
$g_lang["menu_4"] = "";
|
||||
$g_lang["menu_5"] = "";
|
||||
$g_lang["menu_6"] = "";
|
||||
$g_lang["menu_7"] = "";
|
||||
$g_lang["menu_8"] = "";
|
||||
$g_lang["menu_9"] = "";
|
||||
$g_lang["footer_info"] = "Graph Online - creation and easy visualization of graph or using adjacency matrix and shortest path searing";
|
||||
?>
|
||||
Executable
+14
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$g_lang["menu_0"] = "Home";
|
||||
$g_lang["menu_1"] = "About project";
|
||||
$g_lang["menu_2"] = "Help";
|
||||
$g_lang["menu_3"] = "Contacts";
|
||||
$g_lang["menu_4"] = "Graph by matrix";
|
||||
$g_lang["menu_5"] = "";
|
||||
$g_lang["menu_6"] = "";
|
||||
$g_lang["menu_7"] = "";
|
||||
$g_lang["menu_8"] = "";
|
||||
$g_lang["menu_9"] = "";
|
||||
$g_lang["footer_info"] = "<a href=\"/en\">Graph Online</a> - creation and easy visualization of graph or using adjacency matrix and <a href=\"/en\">shortest path searing</a>.";
|
||||
?>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
$g_lang["menu_0"] = "Home";
|
||||
$g_lang["menu_1"] = "Create Graph";
|
||||
$g_lang["menu_2"] = "Help";
|
||||
$g_lang["menu_3"] = "Contacts";
|
||||
$g_lang["menu_4"] = "Using adjacency matrix";
|
||||
$g_lang["menu_5"] = "Using incidence matrix";
|
||||
$g_lang["menu_6"] = "Wiki";
|
||||
$g_lang["menu_7"] = "Quick Start";
|
||||
$g_lang["menu_8"] = "News";
|
||||
$g_lang["menu_9"] = "";
|
||||
$g_lang["footer_info"] = "<a href=\"/en\">Graph Online</a> - creation and easy visualization of graph or using adjacency matrix and <a href=\"/en\">shortest path searing</a>. You also can creating <a href=\"http://graph.unick-soft.ru/en/create_graph_by_matrix\">graph from adjacency matrix</a>, <a href=\"/en/about\">about project</a> and <a href=\"http://graph.unick-soft.ru/en/help\">look help page</a>.\n";
|
||||
$g_lang["lang"] = "Language";
|
||||
?>
|
||||
Reference in New Issue
Block a user