first commit

This commit is contained in:
/usr/bin/nano
2017-04-15 01:34:36 +03:00
commit c715e2a604
5325 changed files with 329700 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
$g_lang["head"] = "Page is not found";
$g_lang["message"] = "<p>Sorry, but the page was not found on the server.</p>\n\n<p>Perhaps, these options may&nbsp;help you:</p>\n\n<ul>\n <li>Go to the <a href=\"/\" title=\"Go to home page\">home page</a></li>\n <li>Return to the <a href=\"javascript:history.back()\" title=\"Go to previous page\">previous page</a></li>\n</ul>\n";
$g_lang["m_title"] = "404 Page is not found";
?>
+6
View File
@@ -0,0 +1,6 @@
<?php
$g_lang['m_title'] = '500 Internal Server Error';
$g_lang['head'] = 'Site Error';
$g_lang['message'] = 'Sorry, but there is an error on the site.';
?>
+9
View File
@@ -0,0 +1,9 @@
<?php
$g_lang["title_notg"] = "About Graph Online project";
$g_lang["text"] = "<p>Graph Online was created&nbsp;by authors of&nbsp;<a href=\"http://grafoanalizator.unick-soft.ru/en/\" style=\"color: rgb(207, 56, 34); margin: 0px;\"><span style=\"color:#000000\">Graphanalyzer</span></a>. 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";
?>
+8
View File
@@ -0,0 +1,8 @@
<?php
$g_lang["m_titlePostfix"] = "";
$g_lang["m_title"] = "Graph Online";
$g_lang["m_keyWords"] = "Graph Online, find shortest path, visualization";
$g_lang["m_description"] = "";
?>
+9
View File
@@ -0,0 +1,9 @@
<?php
$g_lang["title_notg"] = "Graph Online feedback";
$g_lang["text"] = "<p>Please, send your questions to <a href=\"mailto:admin@unick-soft.ru?subject=GraphOnline%20-%20feedbcak\">admin@unick-soft.ru</a> or <a href=\"mailto:admin@graphonline.ru?subject=Graphonline%20-%20feedback\">admin@graphonline.ru</a></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.";
?>
+12
View File
@@ -0,0 +1,12 @@
<?php
include ("home.php");
$g_lang["title_notg"] = "Create algorithm for graph";
$g_lang["text"] = "<p>Create own algorithm for graph using JavaScript. To learn more <a href=\"http://graphonline.ru/en/wiki/Development/Documentation\">read API documentation</a>.</p>\n";
$g_lang["m_title"] = "Create own algorithm on JavaScript for graph online";
$g_lang["m_keyWords"] = "graphs, creating of algorithm, JavaScript";
$g_lang["m_description"] = "Create algorithm on JavaScript for graph online";
?>
+17
View File
@@ -0,0 +1,17 @@
<?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. Use comma \",\" as separator and press \"Plot Graph\".";
$g_lang["incidence_matrix_bad_format"] = "Matrix is incorrect. Use comma \",\" as separator. Matrix should be square.";
$g_lang["plot_graph_button"] = "Plot graph";
$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";
$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 online and see visual result";
?>
+22
View File
@@ -0,0 +1,22 @@
<?php
$g_lang["head_no_tags"] = "Creating graph from adjacency matrix";
$g_lang["text"] = "<p>On this page you can enter&nbsp;adjacency matrix and plot graph</p>\n";
$g_lang["adjacency_matrix_description"] = "Enter adjacency matrix. Use comma \",\" as separator and press \"Plot Graph\".";
$g_lang["adjacency_matrix_bad_format"] = "Matrix is incorrect. Use comma \",\" as separator. Matrix should be square.";
$g_lang["plot_graph_button"] = "Plot graph";
$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";
$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 online and see visual result";
$g_lang["current_language"] = "en";
$g_lang["separator"] = "Separator: ";
$g_lang["separator_commo"] = "comma";
$g_lang["separator_space"] = "space";
?>
+10
View File
@@ -0,0 +1,10 @@
<?php
$g_lang["head_no_tags"] = "Graphs examples";
$g_lang["text"] = "<p>Below you can find graphs examples, you may create your graph based on one of them.</p>\n";
$g_lang["current_language"] = "en";
$g_lang["m_title"] = "Graph Online: Graphs examples";
$g_lang["m_keyWords"] = "graphs examples, graph gallery, create graph";
$g_lang["m_description"] = "Graphs examples gallery";
?>
+9
View File
@@ -0,0 +1,9 @@
<?php
$g_lang["title_notg"] = "Graph Online Help";
$g_lang["text"] = "<p><iframe allowfullscreen=\"\" frameborder=\"0\" height=\"360\" src=\"//www.youtube.com/embed/Sx4tOe3bWNg\" width=\"640\"></iframe></p>\n";
$g_lang["m_title"] = "Graph Online help";
$g_lang["m_keyWords"] = "graph, help";
$g_lang["m_description"] = "Graph online help page";
?>
+101
View File
@@ -0,0 +1,101 @@
<?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"] = "Click to workspace to add a new vertex. <span style=\"float:right;\">Vertex enumeration " .
"<select id=\"enumVertexsText\">" .
"</select></span>";
$g_lang["select_first_vertext_to_connect"] = "Select first vertex of edge";
$g_lang["select_second_vertext_to_connect"] = "Select second vertext of edge";
$g_lang["select_start_short_path_vertex"] = "Select the initial vertex of the shortest path";
$g_lang["select_finish_short_path_vertex"] = "Select 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 exist";
$g_lang["select_object_to_delete"] = "Click on the object to remove";
$g_lang["shortest_dist"] = "the lowest distance is ";
$g_lang["show_incidence_matrix"] = "Incidence matrix";
$g_lang["incidence_matrix_description"] = "Set up incidence matrix. Use comma \",\" as separator.";
$g_lang["incidence_matrix_bad_format"] = "Matrix is incorrect. Use comma \",\" as separator.";
$g_lang["this_is_graph_link"] = "Graph was saved. Follow this link to see it.";
$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"] = "The number of weakly connected components is ";
$g_lang["connected_component_result"] = "The number of connected components is ";
$g_lang["new_graph"] = "Create graph";
$g_lang["what_do_you_think"] = "What do you think about the site?";
$g_lang["name"] = "Name (email for feedback)";
$g_lang["feedback"] = "Feedback";
$g_lang["send"] = "Send";
$g_lang["write_to_us"] = "To ask us a question or send us a comment, write us at ";
$g_lang["fix_matrix_button"] = "fix matrix";
$g_lang["open_matrix_help"] = "help";
$g_lang["wrong_matrix_title"] = "Matrix has wrong format";
$g_lang["bad_adj_matrix_message"] = "Cannot create graph. Adjacency Matrix has wrong format. Click \"fix matrix\" button to fix matrix or \"help\" 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\" 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"] = "Create Graph online and find shortest path or use other algorithm";
$g_lang["m_keyWords"] = "graph online, find shortest path, graph visualization, graph by adjacency matrix, adjacency matrix, incidence matrix, search connected component, eulerian cycle, minimum spanning tree";
$g_lang["m_description"] = "Create graph online and use big amount of algorithms: find the shortest path, find adjacency matrix, find minimum spanning tree and others";
$g_lang["current_language"] = "en";
$g_lang["developer_tools_title"] = "Create algorithm";
$g_lang["developer_tools_text"] = "Paste your algorith below and press Run";
$g_lang["developer_tools_run"] = "Run";
$g_lang["developer_tools_submit"] = "Submit to site";
$g_lang["algorithm_was_sent"] = "Algorithm was sent";
$g_lang["your_algorithm_was_sent"] = "Your algorithm was sent to check and in success case it will be add to site.";
$g_lang["edit_weight"] = "Edit weight";
$g_lang["group_rename"] = "Group rename";
$g_lang["enter_vertices_text_in_each_line"] = "Enter text for each vertex in separate line";
?>
+16
View File
@@ -0,0 +1,16 @@
<?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"] = "Using graph example";
$g_lang["footer_info"] = "<a href=\"/en/\">Graph Online</a>&nbsp;is online project aimed at&nbsp;creation and easy visualization of graph and <a href=\"/en/\">shortest path searching</a>. Also you can create&nbsp;<a href=\"http://graph.unick-soft.ru/en/create_graph_by_matrix\">graph from adjacency matrix</a>.&nbsp;A<a href=\"/en/about\">bout project</a> and <a href=\"http://graph.unick-soft.ru/en/help\">look help page</a>.\n";
$g_lang["lang"] = "Language";
?>
+5
View File
@@ -0,0 +1,5 @@
<?php
$g_lang['home_notg'] = 'Home';
$g_lang['back_notg'] = 'Back';
?>
+50
View File
@@ -0,0 +1,50 @@
<?php
$g_lang["head_no_tags"] = "News and updates";
$g_lang["text"] = "<p>Belowe you find last news and updates of our service</p>\n";
$g_lang["m_title"] = "News of Graph Online";
$g_lang["m_keyWords"] = "graph online, news, graph, path searching";
$g_lang["m_description"] = "News of Graph Online";
$g_lang["newsList"] = array();
$newsIndex = 0;
$g_lang["newsList"][$newsIndex]["title"] = "Updates";
$g_lang["newsList"][$newsIndex]["text"] = "Were constantly working on improving our service. Here are the list of recent changes. Our team has uploaded new videos to official YouTube channel <a href=\"https://www.youtube.com/channel/UCyYynHE4mSdR9jXRYVEHRCw\">https://www.youtube.com/channel/UCyYynHE4mSdR9jXRYVEHRCw</a>, added examples of graphs and the algorithm of searching for minimum spanning tree, improved mobile version of the website, and made some other modifications.";
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
$g_lang["newsList"][$newsIndex]["date"] = "09.04.2017";
$newsIndex ++;
$g_lang["newsList"][$newsIndex]["title"] = "Create your own algorithm";
$g_lang["newsList"][$newsIndex]["text"] = "Now you may create your own algorithms. It can be done on a special page <a href=\"http://graphonline.ru/en/create_algorithm\">http://graphonline.ru/en/create_algorithm </a>. Documentation can be found here: <a href=\"http://graphonline.ru/en/wiki/Development/Documentation\">http://graphonline.ru/en/wiki/Development/Documentation</a>.";
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
$g_lang["newsList"][$newsIndex]["date"] = "25.09.2016";
$newsIndex ++;
$g_lang["newsList"][$newsIndex]["title"] = "Custom text for vertex";
$g_lang["newsList"][$newsIndex]["text"] = "Added custom text for vertices.";
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
$g_lang["newsList"][$newsIndex]["date"] = "04.07.2016";
$newsIndex ++;
$g_lang["newsList"][$newsIndex]["title"] = "Graph layout";
$g_lang["newsList"][$newsIndex]["text"] = "Added force-based layout systems for graph. It is first version and we will improve it more.";
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
$g_lang["newsList"][$newsIndex]["date"] = "12.06.2016";
$newsIndex ++;
$g_lang["newsList"][$newsIndex]["title"] = "Zoom";
$g_lang["newsList"][$newsIndex]["text"] = "Added functionality for zoom of work area.";
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
$g_lang["newsList"][$newsIndex]["date"] = "11.06.2016";
$newsIndex ++;
$g_lang["newsList"][$newsIndex]["title"] = "Animations";
$g_lang["newsList"][$newsIndex]["text"] = "We added animation for shortest path finding and Eulerian cycle finsing. Also we improved reports.";
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
$g_lang["newsList"][$newsIndex]["date"] = "23.01.2016";
$newsIndex ++;
?>