Revert back to using strings in stead of arrays in the translations
This commit is contained in:
parent
e0e76d7c27
commit
53f894676c
4 changed files with 120 additions and 226 deletions
|
@ -7,7 +7,7 @@ namespace Geekbot.net.Lib.Localization
|
|||
public interface ITranslationHandler
|
||||
{
|
||||
Task<string> GetString(ulong guildId, string command, string stringName);
|
||||
List<string> GetStrings(string language, string command, string stringName);
|
||||
string GetString(string language, string command, string stringName);
|
||||
Task<Dictionary<string, string>> GetDict(ICommandContext context, string command);
|
||||
Task<TranslationGuildContext> GetGuildContext(ICommandContext context);
|
||||
Task<bool> SetLanguage(ulong guildId, string language);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue