From 5adb9deb15e67f001e5e219e7c24304ebadfe679 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=BE=D0=B2?= <22411953+Vladislav4KZ@users.noreply.github.com> Date: Thu, 20 Apr 2023 11:46:23 +0000 Subject: [PATCH] cfg: ru_lang.cfg: translated new strings --- cfg/addons/yapb/conf/lang/ru_lang.cfg | 24 ++++++++++++++++++++++++ src/control.cpp | 6 +++--- 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/cfg/addons/yapb/conf/lang/ru_lang.cfg b/cfg/addons/yapb/conf/lang/ru_lang.cfg index 23b4112..65e12a1 100644 --- a/cfg/addons/yapb/conf/lang/ru_lang.cfg +++ b/cfg/addons/yapb/conf/lang/ru_lang.cfg @@ -1013,12 +1013,24 @@ Unable to save POD-Bot Format waypoint file. Number of nodes exceeds 1024. [TRANSLATED] Невозможно сохранить вэйпоинт файл в формате POD-Bot. Количество точек превышает 1024. +[ORIGINAL] +Graph successfully saved. + +[TRANSLATED] +Граф успешно сохранён. + [ORIGINAL] Graph successfully loaded. [TRANSLATED] Граф успешно загружен. +[ORIGINAL] +Could not save Graph. See console... + +[TRANSLATED] +Невозможно сохранить граф. Смотри консоль... + [ORIGINAL] Could not load Graph. See console... @@ -1073,6 +1085,18 @@ Debug goal is disabled. [TRANSLATED] Отладка цели отключена. +[ORIGINAL] +Noclip mode disabled. + +[TRANSLATED] +Режим полёта выключен. + +[ORIGINAL] +Noclip mode enabled. + +[TRANSLATED] +Режим полёта включён. + [ORIGINAL] You're dead, and have no access to this menu diff --git a/src/control.cpp b/src/control.cpp index 168510f..2296e7e 100644 --- a/src/control.cpp +++ b/src/control.cpp @@ -1316,7 +1316,7 @@ int BotControl::menuGraphPage2 (int item) { case 4: if (graph.checkNodes (true)) { graph.saveGraphData (); - msg ("Graph saved."); + msg ("Graph successfully saved."); } else { msg ("Graph not saved. There are errors, see console..."); @@ -1326,7 +1326,7 @@ int BotControl::menuGraphPage2 (int item) { case 5: if (graph.saveGraphData ()) { - msg ("Graph saved."); + msg ("Graph successfully saved."); } else { msg ("Could not save Graph. See console..."); @@ -1336,7 +1336,7 @@ int BotControl::menuGraphPage2 (int item) { case 6: if (graph.loadGraphData ()) { - msg ("Graph loaded."); + msg ("Graph successfully loaded."); } else { msg ("Could not load Graph. See console...");