From f0040a5e3f5f05b85ecfee967c32c9952a4b5180 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:32:59 +0200 Subject: [PATCH 01/48] Update account.js --- account.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/account.js b/account.js index d21e8337..8500ee1c 100644 --- a/account.js +++ b/account.js @@ -189,6 +189,8 @@ function updateModControls() { }); addModControlsButton(localizedMessages.modSettings.actions.ban.label, () => adminPlayerAction('ban', localizedMessages.modSettings.actions.ban.playerPrompt, getMassagedLabel(localizedMessages.context.admin.ban.success, true), 'ban')); + addModControlsButton(localizedMessages.modSettings.actions.tempban.label, + () => adminPlayerAction('tempban', localizedMessages.modSettings.actions.tempban.playerPrompt, getMassagedLabel(localizedMessages.context.admin.tempban.success, true), 'ban')); addModControlsButton(localizedMessages.modSettings.actions.unban.label, () => adminPlayerAction('unban', localizedMessages.modSettings.actions.unban.playerPrompt, getMassagedLabel(localizedMessages.context.admin.unban.success, true), 'info')); addModControlsButton(localizedMessages.modSettings.actions.mute.label, From 77f5d201a20701055827fe3550d1a8db21430bca Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:01:22 +0200 Subject: [PATCH 02/48] Update account.js --- account.js | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/account.js b/account.js index 8500ee1c..a84d14f7 100644 --- a/account.js +++ b/account.js @@ -189,8 +189,25 @@ function updateModControls() { }); addModControlsButton(localizedMessages.modSettings.actions.ban.label, () => adminPlayerAction('ban', localizedMessages.modSettings.actions.ban.playerPrompt, getMassagedLabel(localizedMessages.context.admin.ban.success, true), 'ban')); - addModControlsButton(localizedMessages.modSettings.actions.tempban.label, - () => adminPlayerAction('tempban', localizedMessages.modSettings.actions.tempban.playerPrompt, getMassagedLabel(localizedMessages.context.admin.tempban.success, true), 'ban')); + addModControlsButton(localizedMessages.modSettings.actions.tempBan.label, + () => { + const playerName = prompt(localizedMessages.modSettings.actions.tempBan.playerPrompt); + if (!playerName) + return; + const duration = prompt(localizedMessages.modSettings.actions.tempBan.durationPrompt.replace('{PLAYER}', playerName)); + if (!duration) + return; + apiFetch(`changeusername?user=${playerName}&duration=${duration}`, true) + .then(response => { + if (!response.ok) { + showToastMessage(getMassagedLabel(localizedMessages.modSettings.actions.tempBan.error, true).replace('{PLAYER}', playerName)); + throw new Error(response.statusText); + } + return response.text(); + }) + .then(_ => showToastMessage(getMassagedLabel(localizedMessages.modSettings.actions.tempBan.success, true).replace('{PLAYER}', playerName).replace('{DURATION}', duration), 'info', true, null, true)) + .catch(err => console.error(err)); + }); addModControlsButton(localizedMessages.modSettings.actions.unban.label, () => adminPlayerAction('unban', localizedMessages.modSettings.actions.unban.playerPrompt, getMassagedLabel(localizedMessages.context.admin.unban.success, true), 'info')); addModControlsButton(localizedMessages.modSettings.actions.mute.label, From aef8ee845e0de3656e910b4c350f686b335a80dd Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:05:05 +0200 Subject: [PATCH 03/48] Update account.js --- account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account.js b/account.js index a84d14f7..96a4cb91 100644 --- a/account.js +++ b/account.js @@ -197,7 +197,7 @@ function updateModControls() { const duration = prompt(localizedMessages.modSettings.actions.tempBan.durationPrompt.replace('{PLAYER}', playerName)); if (!duration) return; - apiFetch(`changeusername?user=${playerName}&duration=${duration}`, true) + apiFetch(`temporaryban?user=${playerName}&duration=${duration}`, true) .then(response => { if (!response.ok) { showToastMessage(getMassagedLabel(localizedMessages.modSettings.actions.tempBan.error, true).replace('{PLAYER}', playerName)); From a480c8605539768ef85701baffa0aa82852c63aa Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:56:37 +0200 Subject: [PATCH 04/48] Update en.json --- lang/en.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/en.json b/lang/en.json index b5ae3310..8673fdb4 100644 --- a/lang/en.json +++ b/lang/en.json @@ -1080,6 +1080,13 @@ "label": "Ban a Player", "playerPrompt": "Enter the name of the account to ban" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Unban a Player", "playerPrompt": "Enter the name of the account to unban" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From 93f8b5e468dce4d0a3900a059bf6ba660b85cfdb Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:57:25 +0200 Subject: [PATCH 05/48] Update ar.json --- lang/ar.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/ar.json b/lang/ar.json index 4b73102c..b9952859 100644 --- a/lang/ar.json +++ b/lang/ar.json @@ -1080,6 +1080,13 @@ "label": "حظر لاعب", "playerPrompt": "أدخل اسم الحساب المراد حظره" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "إلغاء حظر لاعب", "playerPrompt": "أدخل اسم الحساب المطلوب إلغاء حظره" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From 88447d3d7d2bcbb065699c1e65bd6c0e17296913 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:57:40 +0200 Subject: [PATCH 06/48] Update de.json --- lang/de.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/de.json b/lang/de.json index 88750479..491431fa 100644 --- a/lang/de.json +++ b/lang/de.json @@ -1080,6 +1080,13 @@ "label": "Ban a Player", "playerPrompt": "Enter the name of the account to ban" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Unban a Player", "playerPrompt": "Enter the name of the account to unban" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From fbc4ba24a7fc886249a0636cca2fcd1af9063305 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:58:24 +0200 Subject: [PATCH 07/48] Update eo.json --- lang/eo.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/eo.json b/lang/eo.json index 9d89541c..251daecd 100644 --- a/lang/eo.json +++ b/lang/eo.json @@ -1079,6 +1079,13 @@ "label": "Forbari Ludanton", "playerPrompt": "Entajpi la nomon de la konto por forbari" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Malforbari Ludanton", "playerPrompt": "Entajpi la nomon de la konto por malforbari" @@ -1102,4 +1109,4 @@ } } } -} \ No newline at end of file +} From 7c6bd28a01912eddc1b4f0ed61addaabb69f781c Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:58:46 +0200 Subject: [PATCH 08/48] Update es.json --- lang/es.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/es.json b/lang/es.json index 97f7da5d..27d7cfeb 100644 --- a/lang/es.json +++ b/lang/es.json @@ -1080,6 +1080,13 @@ "label": "Banear Jugador", "playerPrompt": "Ingrese el nombre de la cuenta a banear" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Desbanear Jugador", "playerPrompt": "Ingrese el nombre de la cuenta a desbanear" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From 1643c329e9fd50f5c7272ff6dd4190163e7587e1 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:58:59 +0200 Subject: [PATCH 09/48] Update fr.json --- lang/fr.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lang/fr.json b/lang/fr.json index 82e9d701..3a2cdfb6 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -1080,6 +1080,13 @@ "label": "Bannir un Joueur", "playerPrompt": "Entrez le nom du compte à bannir" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Débannir un Joueur", "playerPrompt": "Entrez le nom du compte à débannir" From 83a707cf0b1b98027ac0c953c2d46f5cef2acaad Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:59:12 +0200 Subject: [PATCH 10/48] Update it.json --- lang/it.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/it.json b/lang/it.json index 7ebeb9e5..5dc42e15 100644 --- a/lang/it.json +++ b/lang/it.json @@ -1080,6 +1080,13 @@ "label": "Banna un Giocatore", "playerPrompt": "Inserisci il nome dell'account che vuoi bannare" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Unbanna un Giocatore", "playerPrompt": "Inserisci il nome dell'account che vuoi unbannare" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From 252a19da55bbed3ba56a2dff0f8f20614398ea0b Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:59:26 +0200 Subject: [PATCH 11/48] Update ja.json --- lang/ja.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lang/ja.json b/lang/ja.json index 681b60eb..d451a2ec 100644 --- a/lang/ja.json +++ b/lang/ja.json @@ -1080,6 +1080,13 @@ "label": "プレイヤーのBAN", "playerPrompt": "BANするアカウントの名前を入力してください。" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "プレイヤーのBAN解除", "playerPrompt": "BAN解除するアカウントの名前を入力してください。" From 299cf3a1e1194fb226894e21dbaf1ab70a11398f Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:59:46 +0200 Subject: [PATCH 12/48] Update ko.json --- lang/ko.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/ko.json b/lang/ko.json index 94274ccc..8f87e5d9 100644 --- a/lang/ko.json +++ b/lang/ko.json @@ -1080,6 +1080,13 @@ "label": "플레이어 차단 설정", "playerPrompt": "차단할 플레이어의 닉네임을 입력해주세요" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "플레이어 차단 해제", "playerPrompt": "차단 해제할 플레이어의 닉네임을 입력해주세요" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From 7af42c7904307e7c52b08a7645907ced81cacfbc Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:59:58 +0200 Subject: [PATCH 13/48] Update pl.json --- lang/pl.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/pl.json b/lang/pl.json index 4c4625c2..e996dd15 100644 --- a/lang/pl.json +++ b/lang/pl.json @@ -1080,6 +1080,13 @@ "label": "Zbanuj gracza", "playerPrompt": "Podaj nazwę gracza do zbanowania" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Odbanuj gracza", "playerPrompt": "Podaj nazwę gracza do odbanowania" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From c86c89942439dac3a4aaa38670bd8480f00b2798 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:00:20 +0200 Subject: [PATCH 14/48] Update pt.json --- lang/pt.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/pt.json b/lang/pt.json index 9e45b215..4df36596 100644 --- a/lang/pt.json +++ b/lang/pt.json @@ -1080,6 +1080,13 @@ "label": "Banir um Jogador", "playerPrompt": "Digite o nome da conta para banir" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Desbanir um Jogador", "playerPrompt": "Digite o nome da conta para desbanir" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From 1396c9e26a8e3990f9d4f36924042916d04ed33e Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:00:35 +0200 Subject: [PATCH 15/48] Update ro.json --- lang/ro.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/ro.json b/lang/ro.json index cc859c73..0c6ec51f 100644 --- a/lang/ro.json +++ b/lang/ro.json @@ -1080,6 +1080,13 @@ "label": "Ban a Player", "playerPrompt": "Enter the name of the account to ban" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "namePrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Unban a Player", "playerPrompt": "Enter the name of the account to unban" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From c7bfb41a4b7527ce0c2fd118d61cd161b24b7c54 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:01:37 +0200 Subject: [PATCH 16/48] Update ro.json --- lang/ro.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ro.json b/lang/ro.json index 0c6ec51f..ec0071b3 100644 --- a/lang/ro.json +++ b/lang/ro.json @@ -1072,7 +1072,7 @@ "changeUsername": { "label": "Change a Username", "playerPrompt": "Enter the name of the account to change the username for", - "namePrompt": "Enter the new username for {PLAYER}", + "durationPrompt": "Enter the new username for {PLAYER}", "success": "Username for {PLAYER} has been changed to {NAME}", "error": "Failed to change username for {PLAYER}; the specified name may already be in use" }, From adb5efa827946841a3c943fd7fbf3cd5cd10e74b Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:01:52 +0200 Subject: [PATCH 17/48] Update pt.json --- lang/pt.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/pt.json b/lang/pt.json index 4df36596..9a46ecb3 100644 --- a/lang/pt.json +++ b/lang/pt.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 911ede435642cb292ec800c5e2ba0b76ab8c7fa5 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:02:06 +0200 Subject: [PATCH 18/48] Update pl.json --- lang/pl.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/pl.json b/lang/pl.json index e996dd15..15a5d7e9 100644 --- a/lang/pl.json +++ b/lang/pl.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From e88c072fbbff308caf74658531e667c179962089 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:02:21 +0200 Subject: [PATCH 19/48] Update ko.json --- lang/ko.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ko.json b/lang/ko.json index 8f87e5d9..280de845 100644 --- a/lang/ko.json +++ b/lang/ko.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From e8f6972e977f177ba11347fe2513286e10191809 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:02:37 +0200 Subject: [PATCH 20/48] Update ja.json --- lang/ja.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ja.json b/lang/ja.json index d451a2ec..a618cf5b 100644 --- a/lang/ja.json +++ b/lang/ja.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 3b5ef47ade28d5e54c311b330bd2ab7df1043c93 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:03:06 +0200 Subject: [PATCH 21/48] Update it.json --- lang/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/it.json b/lang/it.json index 5dc42e15..f91e1aa2 100644 --- a/lang/it.json +++ b/lang/it.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From a941fd69b2bad20c227320715b2b6c8681136d31 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:03:21 +0200 Subject: [PATCH 22/48] Update fr.json --- lang/fr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/fr.json b/lang/fr.json index 3a2cdfb6..9b5f03d7 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From e65c976e21e6dbb8a9eb0580b5023be87d95846a Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:03:37 +0200 Subject: [PATCH 23/48] Update es.json --- lang/es.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/es.json b/lang/es.json index 27d7cfeb..60989f86 100644 --- a/lang/es.json +++ b/lang/es.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From fcb4c31bdf89c83ec4f2817f0d3dd2aece1536bc Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:03:49 +0200 Subject: [PATCH 24/48] Update eo.json --- lang/eo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/eo.json b/lang/eo.json index 251daecd..b495bd65 100644 --- a/lang/eo.json +++ b/lang/eo.json @@ -1082,7 +1082,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 0bb7b108a754445ecb4f270ae79a6c9dab14fe72 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:04:01 +0200 Subject: [PATCH 25/48] Update en.json --- lang/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/en.json b/lang/en.json index 8673fdb4..9a41874d 100644 --- a/lang/en.json +++ b/lang/en.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From e9e9a5392dd0234fba93b88c70084d169b49f67e Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:04:19 +0200 Subject: [PATCH 26/48] Update de.json --- lang/de.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/de.json b/lang/de.json index 491431fa..138b82ea 100644 --- a/lang/de.json +++ b/lang/de.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 3fa309c0f771baf7d448eaa3f1ca69869c5ffc66 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:04:38 +0200 Subject: [PATCH 27/48] Update ar.json --- lang/ar.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ar.json b/lang/ar.json index b9952859..78edd08c 100644 --- a/lang/ar.json +++ b/lang/ar.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 0c677cf3ac36204cc8fff48d00821a57171c5a2e Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:04:49 +0200 Subject: [PATCH 28/48] Update zh.json --- lang/zh.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lang/zh.json b/lang/zh.json index 1f38152c..cb07de8a 100644 --- a/lang/zh.json +++ b/lang/zh.json @@ -1080,6 +1080,13 @@ "label": "封禁玩家", "playerPrompt": "请输入淘气鬼的用户名" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "durationPrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "解封玩家", "playerPrompt": "请输入要宽恕的用户名" From 3a6ffbe961c2b53affb8b4547745902e7637613c Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:05:05 +0200 Subject: [PATCH 29/48] Update vi.json --- lang/vi.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lang/vi.json b/lang/vi.json index 91b218b6..30d1d0f7 100644 --- a/lang/vi.json +++ b/lang/vi.json @@ -1080,6 +1080,13 @@ "label": "Ban Người chơi", "playerPrompt": "Nhập tên người chơi để ban" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "durationPrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Bỏ ban Người chơi", "playerPrompt": "Nhập tên người chơi để bỏ ban" From ed533e364d31a5c048af76490681bcad81a1164e Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:05:18 +0200 Subject: [PATCH 30/48] Update tr.json --- lang/tr.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/tr.json b/lang/tr.json index dc026e54..068404ca 100644 --- a/lang/tr.json +++ b/lang/tr.json @@ -1080,6 +1080,13 @@ "label": "Bir Kullanıcı Banla", "playerPrompt": "Banlamak için hesabın adını girin" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "durationPrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Bir Kullanıcı Banı Kaldır", "playerPrompt": "Ban kaldırmak için hesabın adını girin" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From 3cf2251aa38fb2c74612f9738fba91b2878bbf38 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:05:29 +0200 Subject: [PATCH 31/48] Update ru.json --- lang/ru.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/ru.json b/lang/ru.json index 789baaf3..1915db69 100644 --- a/lang/ru.json +++ b/lang/ru.json @@ -1080,6 +1080,13 @@ "label": "Забанить игрока", "playerPrompt": "Введите имя аккаунта, что необходимо забанить" }, + "tempBan": { + "label": "Temporarily ban a Player", + "playerPrompt": "Enter the name of the account to ban", + "durationPrompt": "Enter the duration to ban {PLAYER} for", + "success": "{PLAYER} has been banned for {DURATION}", + "error": "Failed to ban {PLAYER}" + }, "unban": { "label": "Разбанить игрока", "playerPrompt": "Введите имя аккаунта, что необходимо разбанить" @@ -1103,4 +1110,4 @@ } } } -} \ No newline at end of file +} From 0a49409bee3e1dba0015eac7811efa4901fcb8d5 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:07:35 +0200 Subject: [PATCH 32/48] Update ro.json --- lang/ro.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/ro.json b/lang/ro.json index ec0071b3..f0a426c0 100644 --- a/lang/ro.json +++ b/lang/ro.json @@ -1072,7 +1072,7 @@ "changeUsername": { "label": "Change a Username", "playerPrompt": "Enter the name of the account to change the username for", - "durationPrompt": "Enter the new username for {PLAYER}", + "namePrompt": "Enter the new username for {PLAYER}", "success": "Username for {PLAYER} has been changed to {NAME}", "error": "Failed to change username for {PLAYER}; the specified name may already be in use" }, @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "namePrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From b559c8bb2aeb103b44658cd777a6d2677ca55f6e Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:15:34 +0200 Subject: [PATCH 33/48] Update ar.json --- lang/ar.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ar.json b/lang/ar.json index 4636aeb4..71547885 100644 --- a/lang/ar.json +++ b/lang/ar.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From ad72145eda86cfe1c672e207112a44c961cb98ae Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:15:58 +0200 Subject: [PATCH 34/48] Update de.json --- lang/de.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/de.json b/lang/de.json index 9cc56305..00a27573 100644 --- a/lang/de.json +++ b/lang/de.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 156a3ab40cccd41fd1ad25344363cecad05c427e Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:16:12 +0200 Subject: [PATCH 35/48] Update en.json --- lang/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/en.json b/lang/en.json index 696c38c4..ec6be481 100644 --- a/lang/en.json +++ b/lang/en.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From dc8ab07bb34602ffd554e0ab588b36a764892db2 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:16:26 +0200 Subject: [PATCH 36/48] Update eo.json --- lang/eo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/eo.json b/lang/eo.json index e35ddb9d..bff0a108 100644 --- a/lang/eo.json +++ b/lang/eo.json @@ -1083,7 +1083,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 6fa99053f6fb886fc954c233f18a8c36f78d72bd Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:16:40 +0200 Subject: [PATCH 37/48] Update es.json --- lang/es.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/es.json b/lang/es.json index b0d68f5f..727693b0 100644 --- a/lang/es.json +++ b/lang/es.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From cb35a5661bb2c0f3634cac277f9d278aca9612d5 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:16:56 +0200 Subject: [PATCH 38/48] Update fr.json --- lang/fr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/fr.json b/lang/fr.json index 567bf49a..897d827a 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 5ef5f972a6d6149562b3a995958133c6e42584dd Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:17:09 +0200 Subject: [PATCH 39/48] Update it.json --- lang/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/it.json b/lang/it.json index 91e893a2..0b0d7be7 100644 --- a/lang/it.json +++ b/lang/it.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 2835f78c9766eda004d9b070b263af06698d61c5 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:17:24 +0200 Subject: [PATCH 40/48] Update ja.json --- lang/ja.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ja.json b/lang/ja.json index 987d7917..82664f26 100644 --- a/lang/ja.json +++ b/lang/ja.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 0824378f9f6112c3b060cc0469ed11153629a6de Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:17:36 +0200 Subject: [PATCH 41/48] Update ko.json --- lang/ko.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ko.json b/lang/ko.json index 4d580c84..e73fd99e 100644 --- a/lang/ko.json +++ b/lang/ko.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 051bca0ff2ff075e9e0157cdbd64c44e38aea8db Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:17:49 +0200 Subject: [PATCH 42/48] Update pl.json --- lang/pl.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/pl.json b/lang/pl.json index 0bc018aa..3c7fea6c 100644 --- a/lang/pl.json +++ b/lang/pl.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 8e645671d63464b107515fe04a0c957562dd88e7 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:18:01 +0200 Subject: [PATCH 43/48] Update pt.json --- lang/pt.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/pt.json b/lang/pt.json index a467c2f0..dacb60fa 100644 --- a/lang/pt.json +++ b/lang/pt.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 57dbbbdd2cdbdb48f35f1718260fc6188494daf1 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:18:13 +0200 Subject: [PATCH 44/48] Update ro.json --- lang/ro.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ro.json b/lang/ro.json index d3a9ba10..d5f3b8bb 100644 --- a/lang/ro.json +++ b/lang/ro.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From c64efa05c07da7f1af0f6a6b7050942daa78013e Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:18:28 +0200 Subject: [PATCH 45/48] Update ru.json --- lang/ru.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ru.json b/lang/ru.json index d9fc0141..88fda634 100644 --- a/lang/ru.json +++ b/lang/ru.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From b27acd416f777e45f08c8a013cbc557fa034be89 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:18:44 +0200 Subject: [PATCH 46/48] Update tr.json --- lang/tr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/tr.json b/lang/tr.json index ea6c8ce3..f4ac1ff3 100644 --- a/lang/tr.json +++ b/lang/tr.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 414bfa2b1087049b288ddb2671efd8a7a2fe2caa Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:18:55 +0200 Subject: [PATCH 47/48] Update vi.json --- lang/vi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/vi.json b/lang/vi.json index 54578e75..4a523669 100644 --- a/lang/vi.json +++ b/lang/vi.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" }, From 9cda32b3ff103539bcc519f639e12bee43c13a13 Mon Sep 17 00:00:00 2001 From: krossower1 <121849382+krossower1@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:19:08 +0200 Subject: [PATCH 48/48] Update zh.json --- lang/zh.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/zh.json b/lang/zh.json index 1477525b..ab1084d9 100644 --- a/lang/zh.json +++ b/lang/zh.json @@ -1084,7 +1084,7 @@ "tempBan": { "label": "Temporarily ban a Player", "playerPrompt": "Enter the name of the account to ban", - "durationPrompt": "Enter the duration to ban {PLAYER} for", + "durationPrompt": "Enter the duration in minutes to ban {PLAYER} for", "success": "{PLAYER} has been banned for {DURATION}", "error": "Failed to ban {PLAYER}" },