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