Changed last few usages of old string based gettext. All strings now use new system. Needs testing

This commit is contained in:
Kwoth
2021-07-31 23:39:19 +02:00
parent 919bedeae6
commit 565c1132fa
4 changed files with 14 additions and 14 deletions

View File

@@ -305,9 +305,6 @@ namespace NadekoBot.Modules.Music.Services
return Array.Empty<(string, string)>();
}
private string GetText(ulong guildId, string key, params object[] args)
=> _strings.GetText(key, guildId, args);
private string GetText(ulong guildId, LocStr str)
=> _strings.GetText(str, guildId);