Fixed translangs format?

This commit is contained in:
Kwoth 2016-08-24 23:01:39 +02:00
parent 7f20934311
commit 279e189f08

View File

@ -50,7 +50,7 @@ namespace NadekoBot.Modules.Translator
{
var channel = (ITextChannel)imsg.Channel;
await channel.SendTableAsync(GoogleTranslator.Instance.Languages, str => str, columns: 4);
await channel.SendTableAsync(GoogleTranslator.Instance.Languages, str => $"{str,-15}", columns: 3);
}
}