From 41bc2223dc32dee0da43459140891d398da30a67 Mon Sep 17 00:00:00 2001
From: "Rob Swindell (on Debian Linux)" <rob@synchro.net>
Date: Sat, 23 Sep 2023 21:49:35 -0700
Subject: [PATCH] Use the word Only from the text.dat (for localization)

---
 exec/user_settings.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exec/user_settings.js b/exec/user_settings.js
index 2e9bd87fcc..d03449b08d 100644
--- a/exec/user_settings.js
+++ b/exec/user_settings.js
@@ -38,7 +38,7 @@ function on_or_off(on)
 
 function display_menu(thisuser) {
 	const curspin = (thisuser.settings & USER_SPIN) ? bbs.text(On)
-		: (thisuser.settings & USER_NOPAUSESPIN) ? bbs.text(Off) : "Pause Prompt Only";
+		: (thisuser.settings & USER_NOPAUSESPIN) ? bbs.text(Off) : "Pause Prompt " + bbs.text(Only);
 	for (var i = 0; i < main_cfg.shell.length; i++) {
 		if (main_cfg.shell[i].code === thisuser.command_shell.toUpperCase()) {
 			const cmdshell = main_cfg.shell[i].name;
-- 
GitLab