From b66fa17d598772bed22dcb46bdb2ce9d26e1c617 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 4 May 2022 10:07:26 -0500 Subject: [PATCH] Use yes and no locale strings for test prompt --- scripts/server/developer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/developer.js b/scripts/server/developer.js index 6b54fa26..3a9c86e3 100644 --- a/scripts/server/developer.js +++ b/scripts/server/developer.js @@ -399,7 +399,7 @@ function testPromptGUICommand(command, params, client) { return false; } - showPlayerPromptGUI(targetClient, "Testing the two button prompt GUI", "Testing", "Yes", "No") + showPlayerPromptGUI(targetClient, "Testing the two button prompt GUI", "Testing", getLocaleString(client, "Yes"), getLocaleString(client, "No")) return true; }