[fix] to localstring on chat

This commit is contained in:
kwaroran
2023-12-31 22:28:38 +09:00
parent fa7da4c9e6
commit 151c7450d3

View File

@@ -26,8 +26,8 @@
const markdown = `
# Happy New Year!
You've had:
- Sent over ${db.statistics.newYear2024.messages} messages
- Played over ${db.statistics.newYear2024.chats} chats
- Sent over ${db.statistics.newYear2024.messages.toLocaleString()} messages
- Played over ${db.statistics.newYear2024.chats.toLocaleString()} chats
*Statistics are approximate*
`
alertMd(markdown)
@@ -42,8 +42,8 @@ You've had:
const markdown = `
# Happy New Year!
You've had:
- Sent over ${messages} messages
- Played over ${chats} chats
- Sent over ${messages.toLocaleString()} messages
- Played over ${chats.toLocaleString()} chats
*Statistics are approximate*
`
db.statistics.newYear2024 = {