mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-08-17 16:46:12 +00:00
39 lines
2.1 KiB
PHP
Executable File
39 lines
2.1 KiB
PHP
Executable File
<?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";
|
|
?>
|