[fix] to localstring on chat
This commit is contained in:
@@ -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 = {
|
||||||
|
|||||||
Reference in New Issue
Block a user