Updated Need algorithm dialog.

This commit is contained in:
Unick Soft 2017-10-28 14:32:06 +03:00
parent 3f16d03e71
commit 5292f162bb
4 changed files with 7 additions and 2 deletions

View File

@ -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>.";
?>

View File

@ -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>.";
?>

View File

@ -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()

View File

@ -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>