chore: fix some locales #68

Merged
Anri merged 2 commits from fix/loc-string into main 2023-02-13 16:54:37 +01:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 142d1099d8 - Show all commits

View file

@ -76,7 +76,6 @@
"c_reminder15": "Message envoyé en DM car vous avez quitté",
"c_reminder16": "Message envoyé en DM car le serveur Discord n'est plus disponible.",
"c_reminder17": "Message d'il y a",
"c_reminder18": "Pas de message",
"c_play_name": "play",
"c_play_desc": "Joue une chanson/playlist, pas de requête affiche la chanson en cours actuellement",

View file

@ -128,7 +128,7 @@ export const sendReminder = (client: Client, info: infoReminder, option: OptionR
// TODO: Embed
let message: string;
if (info.message === null) {
message = loc.get("c_reminder18");
message = loc.get("c_reminder7");
} else {
message = cleanCodeBlock(info.message);
}