mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 23:36:00 +00:00
24 lines
1.3 KiB
PHP
Executable File
24 lines
1.3 KiB
PHP
Executable File
<?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. 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";
|
||
$g_lang["use_ctrl_to_move_cells"] = "Use Ctrl + ← ↑ → ↓ keys to move between cells.";
|
||
?>
|