diff --git a/kdb-bot/src/bot/translation/de.json b/kdb-bot/src/bot/translation/de.json index ea3b84f3..e8d784d8 100644 --- a/kdb-bot/src/bot/translation/de.json +++ b/kdb-bot/src/bot/translation/de.json @@ -189,6 +189,10 @@ "general_error": "Bei der Ausführung dieses Befehls kam es zu einen Fehler :(" } }, + "remove": { + "xp": "Die {} von {} wurden entfernt", + "ontime": "Die {} von {} wurden entfernt" + }, "error": { "atr_not_found": "Das Attribut {} konnte nicht gefunden werden :(" } diff --git a/kdb-bot/src/modules/base/command/user_group.py b/kdb-bot/src/modules/base/command/user_group.py index 6ce8f72f..3d0d12c5 100644 --- a/kdb-bot/src/modules/base/command/user_group.py +++ b/kdb-bot/src/modules/base/command/user_group.py @@ -243,14 +243,12 @@ class UserGroup(DiscordCommandABC): return case other: - # ToDo: Move atr_not_found await self._message_service.send_interaction_msg(ctx.interaction, self._t.transform('modules.base.user.error.atr_not_found').format(atr)) return - # ToDo: Add text for it await self._message_service.send_interaction_msg( ctx.interaction, - self._t.transform(f'modules.base.user.remove.{atr}').format(member.mention, value) + self._t.transform(f'modules.base.user.remove.{atr}').format(value, member.mention) ) @remove.autocomplete('atr')