mirror of
https://github.com/kirameki-cafe/Yumi.git
synced 2026-09-13 18:59:19 +00:00
Add missing translation for userinfo
This commit is contained in:
+3
-1
@@ -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
@@ -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
@@ -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": "สั่งพูด",
|
||||||
|
|||||||
@@ -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`,
|
||||||
|
|||||||
Reference in New Issue
Block a user