From b24b405d911ea7213f394236658a40d4bf843f5b Mon Sep 17 00:00:00 2001 From: WhatDidYouExpect <89535984+WhatDidYouExpect@users.noreply.github.com> Date: Sun, 16 Mar 2025 23:55:07 +0100 Subject: [PATCH] fixed borked up translation keys --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 53b4c07..d855999 100644 --- a/bot.py +++ b/bot.py @@ -406,10 +406,10 @@ async def retrain(ctx): with open(MEMORY_FILE, 'r') as f: memory = json.load(f) except FileNotFoundError: - await send_message(ctx, f"{get_translation(LOCALE, 'command_memory_not_found')}") + await send_message(ctx, f"{get_translation(LOCALE, 'command_markov_memory_not_found')}") return except json.JSONDecodeError: - await send_message(ctx, f"{get_translation(LOCALE, 'command_memory_is_corrupt')}") + await send_message(ctx, f"{get_translation(LOCALE, 'command_markov_memory_is_corrupt')}") return data_size = len(memory) processed_data = 0