mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-23 20:53:29 +00:00
70 lines
4.2 KiB
PHP
70 lines
4.2 KiB
PHP
<?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"] = "Edges bend";
|
||
$g_lang["newsList"][$newsIndex]["text"] = "We add ability to bend edges. Select edge and click to + or -.";
|
||
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
|
||
$g_lang["newsList"][$newsIndex]["date"] = "15.02.2019";
|
||
$newsIndex ++;
|
||
|
||
$g_lang["newsList"][$newsIndex]["title"] = "Floyd–Warshall algorithm";
|
||
$g_lang["newsList"][$newsIndex]["text"] = "We add Floyd–Warshall algorithm. Now you can get distance matrix.";
|
||
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
|
||
$g_lang["newsList"][$newsIndex]["date"] = "10.12.2017";
|
||
$newsIndex ++;
|
||
|
||
$g_lang["newsList"][$newsIndex]["title"] = "Vote";
|
||
$g_lang["newsList"][$newsIndex]["text"] = "We’ve asked you about the functions you’d like to use while working with graphonline.ru. And here are the results of the poll:" .
|
||
"<ul><li>More algorithms - 53%</li><li>Improved visualization - 24%</li><li>Personal account - 13%</li><li>Improved support of large graphs - 8%</li></ul>" .
|
||
"Thus, we will start crowdfunding program which will help to raise money for new algorithms development..";
|
||
$g_lang["newsList"][$newsIndex]["autor"] = "Admin";
|
||
$g_lang["newsList"][$newsIndex]["date"] = "23.09.2017";
|
||
$newsIndex ++;
|
||
|
||
$g_lang["newsList"][$newsIndex]["title"] = "Updates";
|
||
$g_lang["newsList"][$newsIndex]["text"] = "We’re 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 ++;
|
||
|
||
?>
|