Skip to content

Commit

Permalink
Update jse_autosave.sp
Browse files Browse the repository at this point in the history
  • Loading branch information
LapplandBro committed Sep 3, 2023
1 parent c098abf commit 9fb01f7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripting/jse_autosave.sp
Original file line number Diff line number Diff line change
Expand Up @@ -480,26 +480,26 @@ void SendConfirmationPanel(int iClient, ArrayList hCheckpoint, int iIndex) {
}

Panel hPanel = new Panel();
hPanel.SetTitle("Teleport to autosave?");
hPanel.SetTitle("Телепортироваться?");

hPanel.DrawText(" ");

DrawCheckpointInfo(hPanel, eCheckpoint.GetCourseNumber(), eCheckpoint.GetJumpNumber(), eCheckpoint.IsControlPoint(), eCheckpoint.iArrivalTime);

hPanel.DrawText(" ");

hPanel.DrawItem("Yes");
hPanel.DrawItem("No");
hPanel.DrawItem("Да");
hPanel.DrawItem("Нет");

hPanel.DrawText(" ");

hPanel.CurrentKey = 4;
hPanel.DrawItem("Delete");
hPanel.DrawItem("Удалить");

if (hCheckpoint.Length > 1) {
hPanel.DrawText(" ");
hPanel.CurrentKey = 8;
hPanel.DrawItem("Back");
hPanel.DrawItem("Назад");
}

hPanel.Send(iClient, MenuHandler_Confirmation, 0);
Expand Down

0 comments on commit 9fb01f7

Please sign in to comment.