translations = {
"en": {"name": "Hello", "description": "Says hello"},
"ru": {"name": "Привет", "description": "Говорит привет"}
}
@bot.slash_command(
name_localizations={disnake.Locale.en: translations["en"]["name"], disnake.Locale.ru: translations["ru"]["name"]},
description_localizations={disnake.Locale.en: translations["en"]["description"], disnake.Locale.ru: translations["ru"]["description"]}
)
async def test Далее команда...