wip strings rework, experimenting, nothing works

This commit is contained in:
Kwoth
2021-07-25 19:25:48 +02:00
parent 70288f7670
commit 9d375dccee
53 changed files with 211 additions and 187 deletions

View File

@@ -114,10 +114,10 @@ namespace NadekoBot.Modules.Games.Common
if (_phase == Phase.Ended)
embed.WithFooter(GetText(strs.ttt_no_moves));
else
embed.WithFooter(GetText("ttt_users_move", _users[_curUserIndex]));
embed.WithFooter(GetText(strs.ttt_users_move, _users[_curUserIndex]));
}
else
embed.WithFooter(GetText("ttt_has_won", _winner));
embed.WithFooter(GetText(strs.ttt_has_won, _winner));
return embed;
}