mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-13 18:58:27 -04:00
Changed (almost) all responses to make them use the new system instead of raw strings
- Fixed many invalid string keys
This commit is contained in:
@@ -42,7 +42,7 @@ namespace NadekoBot.Modules.Gambling
|
||||
{
|
||||
try
|
||||
{
|
||||
await ReplyErrorLocalizedAsync("no_more_cards").ConfigureAwait(false);
|
||||
await ReplyErrorLocalizedAsync(strs.no_more_cards).ConfigureAwait(false);
|
||||
}
|
||||
catch
|
||||
{
|
||||
@@ -117,7 +117,7 @@ namespace NadekoBot.Modules.Gambling
|
||||
return c;
|
||||
});
|
||||
|
||||
await ReplyConfirmLocalizedAsync("deck_reshuffled").ConfigureAwait(false);
|
||||
await ReplyConfirmLocalizedAsync(strs.deck_reshuffled).ConfigureAwait(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user