Add missing translation for userinfo

This commit is contained in:
2022-06-29 21:06:54 +07:00
parent c3bf7891e9
commit 8252f4e2a3
4 changed files with 11 additions and 5 deletions
+2 -2
View File
@@ -117,11 +117,11 @@ const EMBEDS = {
${activity.state === null ? '' : activity.state}
${
startTime
? `Since <t:${Math.round(startTime.getTime() / 1000)}:R>`
? `${locale.__('userinfo.since', {TIME: `<t:${Math.round(startTime.getTime() / 1000)}:R>` })}`
: ''
}${
endTime
? `\nEnd <t:${Math.round(endTime.getTime() / 1000)}:R>`
? `\n${locale.__('userinfo.end', {TIME: `<t:${Math.round(endTime.getTime() / 1000)}:R>` })}`
: ''
}
\u200b`,