Is it possible to use the NameLocalizations functions in Discord.Interactions? I would like to know how to implement it in a command.
The command base I use:
using Discord;
using Discord.Interactions;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
public class ExampleModule : InteractionModuleBase<SocketInteractionContext>
{
[SlashCommand("hello", "Sends a greeting message.")]
public async Task HelloCommand()
{
await RespondAsync("Hello!");
}
}```