using System.Collections.Generic; using Discord.Commands; namespace Geekbot.net.Lib.Localization { public interface ITranslationHandler { string GetString(ulong guildId, string command, string stringName); Dictionary GetDict(ICommandContext context); Dictionary GetDict(ICommandContext context, string command); bool SetLanguage(ulong guildId, string language); List GetSupportedLanguages(); } }