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
+3 -1
View File
@@ -35,7 +35,9 @@
"streaming_x": "Streaming {{NAME}}", "streaming_x": "Streaming {{NAME}}",
"listening_x": "Listening to {{NAME}}", "listening_x": "Listening to {{NAME}}",
"watching_x": "Watching {{NAME}}", "watching_x": "Watching {{NAME}}",
"competing_x": "Competing {{NAME}}" "competing_x": "Competing {{NAME}}",
"since": "Since {{{TIME}}}",
"end": "Ending {{{TIME}}}"
}, },
"say": { "say": {
"title": "Say", "title": "Say",
+3 -1
View File
@@ -35,7 +35,9 @@
"streaming_x": "{{NAME}}をストリーミング中", "streaming_x": "{{NAME}}をストリーミング中",
"listening_x": "{{NAME}}を再生中", "listening_x": "{{NAME}}を再生中",
"watching_x": "{{NAME}}鑑賞中", "watching_x": "{{NAME}}鑑賞中",
"competing_x": "{{NAME}}に参戦中です" "competing_x": "{{NAME}}に参戦中です",
"since": "{{{TIME}}}から",
"end": "{{{TIME}}}で終了"
}, },
"say": { "say": {
"title": "言うこと", "title": "言うこと",
+3 -1
View File
@@ -35,7 +35,9 @@
"streaming_x": "กำลังสตรีม {{NAME}}", "streaming_x": "กำลังสตรีม {{NAME}}",
"listening_x": "กำลังฟัง {{NAME}}", "listening_x": "กำลังฟัง {{NAME}}",
"watching_x": "กำลังดู {{NAME}}", "watching_x": "กำลังดู {{NAME}}",
"competing_x": "กำลังแข่งขัน {{NAME}}" "competing_x": "กำลังแข่งขัน {{NAME}}",
"since": "ตั้งแต่ {{{TIME}}}",
"end": "สิ้นสุดใน {{{TIME}}}"
}, },
"say": { "say": {
"title": "สั่งพูด", "title": "สั่งพูด",
+2 -2
View File
@@ -117,11 +117,11 @@ const EMBEDS = {
${activity.state === null ? '' : activity.state} ${activity.state === null ? '' : activity.state}
${ ${
startTime startTime
? `Since <t:${Math.round(startTime.getTime() / 1000)}:R>` ? `${locale.__('userinfo.since', {TIME: `<t:${Math.round(startTime.getTime() / 1000)}:R>` })}`
: '' : ''
}${ }${
endTime endTime
? `\nEnd <t:${Math.round(endTime.getTime() / 1000)}:R>` ? `\n${locale.__('userinfo.end', {TIME: `<t:${Math.round(endTime.getTime() / 1000)}:R>` })}`
: '' : ''
} }
\u200b`, \u200b`,