81e1450e6b
Los <title> estáticos estaban en español fijo. Se migran 31 páginas a generateMetadata reutilizando la clave de título ya traducida de cada página (o del <h1>). Se traducen además los PageShell title hardcodeados de las 6 páginas CharServiceB y los títulos de download-client y changelogs (+ su mensaje de error). tsc/build OK, paridad es/en, <title> cambia por idioma. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
72 lines
2.4 KiB
TypeScript
72 lines
2.4 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { getTranslations, setRequestLocale } from 'next-intl/server'
|
|
import { redirect } from '@/i18n/navigation'
|
|
import { getSession } from '@/lib/session'
|
|
import { getGameCharacters } from '@/lib/characters'
|
|
import { getCustomizePrice } from '@/lib/prices'
|
|
import { PageShell } from '@/components/PageShell'
|
|
import { ServiceBox } from '@/components/ServiceBox'
|
|
import { PaidServiceForm } from '@/components/PaidServiceForm'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export async function generateMetadata({ params }: { params: Promise<{ locale: string }> }): Promise<Metadata> {
|
|
const { locale } = await params
|
|
const t = await getTranslations({ locale, namespace: 'CharServiceB.customize' })
|
|
return { title: t('title') }
|
|
}
|
|
|
|
export default async function CustomizeCharacterPage({ params }: { params: Promise<{ locale: string }> }) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
|
|
const session = await getSession()
|
|
if (!session.bnetId) redirect({ href: '/login', locale })
|
|
if (!session.username) redirect({ href: '/select-account', locale })
|
|
|
|
const [chars, price] = await Promise.all([getGameCharacters(session.accountId!), getCustomizePrice()])
|
|
|
|
const t = await getTranslations('CharServiceB.customize')
|
|
|
|
return (
|
|
<PageShell title={t('title')}>
|
|
<ServiceBox>
|
|
<br />
|
|
<p>{t.rich('intro', { s: (c) => <span>{c}</span> })}</p>
|
|
<p>{t('aspect1')}</p>
|
|
<p>{t('aspect2')}</p>
|
|
<p>{t('aspect3')}</p>
|
|
<p>{t('aspect4')}</p>
|
|
<p>{t('aspect5')}</p>
|
|
<p>{t('alsoRename')}</p>
|
|
<br />
|
|
<p>{t('instructions')}</p>
|
|
<p>{t('iconInfo')}</p>
|
|
<p>{t('iconClick')}</p>
|
|
<br />
|
|
<fieldset>
|
|
<legend>{t('noteLegend')}</legend>
|
|
<div className="separate2">
|
|
<p>{t('noteConfirm')}</p>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<div className="centered">
|
|
<br />
|
|
<br />
|
|
<p>{t.rich('requires', { price, s: (c) => <span>{c}</span>, y: (c) => <span className="yellow-info">{c}</span> })}</p>
|
|
</div>
|
|
|
|
<PaidServiceForm
|
|
characters={chars.map((c) => ({ name: c.name, classCss: c.classCss }))}
|
|
checkoutEndpoint="/api/character/customize/checkout"
|
|
payLabel={t('payLabel')}
|
|
buttonClass="customize-button"
|
|
provider="sumup"
|
|
confirmText={t('confirm', { price })}
|
|
/>
|
|
</ServiceBox>
|
|
</PageShell>
|
|
)
|
|
}
|