Translate boss table

This commit is contained in:
Sakura Knoll
2022-07-21 20:53:17 +09:00 Unverified
parent f798689316
commit 5608266c9d
6 changed files with 38 additions and 5 deletions
+6 -4
View File
@@ -1,4 +1,5 @@
import { addDays } from 'date-fns'
import { useTranslation } from 'next-i18next'
import { Box, Flex, Image, Text } from 'theme-ui'
import { assetsBucketBaseUrl } from '../../lib/consts'
import { VersionData } from '../../lib/honkai3rd/versions'
@@ -9,6 +10,7 @@ interface BossTableProps {
}
const BossTable = ({ versionData, today }: BossTableProps) => {
const { t } = useTranslation()
const versionStartDate = new Date(versionData.duration[0])
return (
<Flex>
@@ -26,7 +28,7 @@ const BossTable = ({ versionData, today }: BossTableProps) => {
borderBottom: 'default',
}}
>
Super String
{t('versions.super-string')}
</Box>
{versionData.superstring.map(([first, second], index) => {
const firstDuration = [
@@ -75,7 +77,7 @@ const BossTable = ({ versionData, today }: BossTableProps) => {
borderBottom: 'default',
}}
>
Memorial Arena
{t('versions.memorial-arena')}
</Box>
{versionData.ma.map(([first, second, third], index) => {
const durations = [
@@ -140,11 +142,11 @@ const BossCard = ({
>
<Text
sx={{
lineHeight: '10px',
lineHeight: '14px',
fontWeight: 700,
py: 0,
px: 1,
fontSize: '10px',
fontSize: '14px',
color: 'white',
}}
>
+1 -1
View File
@@ -141,7 +141,7 @@ const VersionIndexPage = ({
</Box>
<Heading as='h3' mb={2}>
Bosses
{t('versions.weekly-bosses')}
</Heading>
<Box sx={{ mb: 3 }}>
+11
View File
@@ -21,6 +21,17 @@ export function listVersionData(locale?: string): VersionData[] {
return {
...omit(['krName'], version),
name: locale === 'ko-KR' ? version.krName : version.name,
superstring: version.superstring.map((row: any[]) => {
return row.map((stage: any) => {
return {
...stage,
label:
locale === 'ko-KR' && stage.krLabel != null
? stage.krLabel
: stage.label,
}
})
}),
}
})
.sort((a: any, b: any) => {