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

@@ -258,7 +258,10 @@ namespace NadekoBot.Modules.Utility
.AddField(GetText(strs.uptime), _stats.GetUptimeString("\n"), true)
.AddField(GetText(strs.presence),
GetText(strs.presence_txt(
_coord.GetGuildCount(), _stats.TextChannels, _stats.VoiceChannels)), true))
_coord.GetGuildCount(),
_stats.TextChannels,
_stats.VoiceChannels)),
true))
.ConfigureAwait(false);
}