mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-02 15:56:27 +00:00
Updated Need algorithm dialog.
This commit is contained in:
parent
3f16d03e71
commit
5292f162bb
@ -106,4 +106,6 @@
|
||||
$g_lang["what_algorithm_need"] = "Please, write what kind of algorithm would you like to see on this website?";
|
||||
|
||||
$g_lang["recommend_algorithm"] = "Recommend algorithms";
|
||||
|
||||
$g_lang["what_algorithm_we_have"] = "Our service already supports these features: <a href=\"/en/wiki/Help/FindTheShortestPath\" target=\"_blank\" style=\"text-decoration: underline\">Find the shortest path using Dijkstra's algorithm</a>, <a href=\"/en/wiki/Help/AdjacencyMatrix\" target=\"_blank\" style=\"text-decoration: underline\">Adjacency matrix</a>, <a href=\"/en/wiki/Help/IncidenceMatrix\" target=\"_blank\" style=\"text-decoration: underline\">Incidence Matrix</a>.";
|
||||
?>
|
||||
|
@ -106,9 +106,11 @@
|
||||
$g_lang["or"] = "или";
|
||||
$g_lang["vote"] = "Опрос";
|
||||
$g_lang["vote_question"] = "Какие функции нам добавить в первую очередь?";
|
||||
$g_lang["what_algorithm_need"] = "Пожалуйста, напишите, какого алгоритма вам не хватает";
|
||||
$g_lang["what_algorithm_need"] = "Пожалуйста, напишите, какого алгоритма вам не хватает. <a href=\"/donate\" style=\"text-decoration: underline\">Поддержвать проект</a>.";
|
||||
|
||||
$g_lang["recommend_algorithm"] = "Рекомендовать алгоритмы";
|
||||
|
||||
$g_lang["what_algorithm_we_have"] = "Сервис уже поддерживает следущий функционал: <a href=\"/wiki/Справка/ПоискКратчайшегоПути\" target=\"_blank\" style=\"text-decoration: underline\">Поиск пути алгоритмом Дейкстры</a>, <a href=\"/wiki/Справка/МатрицаСмежности\" target=\"_blank\" style=\"text-decoration: underline\">матрицу смежности</a>, <a href=\"/wiki/Справка/МатрицаИнцидентности\" target=\"_blank\" style=\"text-decoration: underline\">матрицу инцидентности</a>.";
|
||||
|
||||
|
||||
?>
|
||||
|
@ -22,7 +22,7 @@ FindShortPathNew.prototype.pathObjects = null;
|
||||
|
||||
FindShortPathNew.prototype.getName = function(local)
|
||||
{
|
||||
return local == "ru" ? "Найти кратчайший путь" : "Find shortest path";
|
||||
return local == "ru" ? "Поиск кратчайший путь алгоритмом Дейкстры" : "Find shortest path using Dijkstra's algorithm";
|
||||
}
|
||||
|
||||
FindShortPathNew.prototype.getId = function()
|
||||
|
@ -311,6 +311,7 @@
|
||||
<fieldset>
|
||||
<p><?= L('what_algorithm_need') ?></p>
|
||||
<textarea name="needAlgorthmText" id="NeedAlgorithmMessage" rows="5"></textarea>
|
||||
<p><?= L('what_algorithm_we_have') ?></p>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user