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