using System.Collections.Generic; using System.Threading.Tasks; using Discord.Commands; namespace Geekbot.net.Lib.Localization { public interface ITranslationHandler { Task GetString(ulong guildId, string command, string stringName); Task> GetDict(ICommandContext context); Task> GetDict(ICommandContext context, string command); Task SetLanguage(ulong guildId, string language); List SupportedLanguages { get; } } }