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>
95 lines
2.9 KiB
TypeScript
95 lines
2.9 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { getTranslations, setRequestLocale } from 'next-intl/server'
|
|
import { redirect, Link } from '@/i18n/navigation'
|
|
import { getSession } from '@/lib/session'
|
|
import { getGameCharacters } from '@/lib/characters'
|
|
import { PageShell } from '@/components/PageShell'
|
|
import { ServiceBox } from '@/components/ServiceBox'
|
|
import { TradePointsForm } from '@/components/TradePointsForm'
|
|
|
|
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: 'Points' })
|
|
return { title: t('trade.title') }
|
|
}
|
|
|
|
export default async function TradePointsPage({ params }: { params: Promise<{ locale: string }> }) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
const t = await getTranslations('Points')
|
|
|
|
const session = await getSession()
|
|
if (!session.bnetId) redirect({ href: '/login', locale })
|
|
if (!session.username) redirect({ href: '/select-account', locale })
|
|
|
|
const chars = await getGameCharacters(session.accountId!)
|
|
|
|
return (
|
|
<PageShell title={t('trade.title')}>
|
|
<ServiceBox>
|
|
<br />
|
|
<p>
|
|
{t.rich('trade.intro1', { s: (c) => <span>{c}</span> })}
|
|
</p>
|
|
<br />
|
|
<p>{t('trade.intro2')}</p>
|
|
<p>
|
|
{t('trade.intro3')}
|
|
</p>
|
|
<br />
|
|
<div className="trade-information">
|
|
<h2>{t('trade.sellTitle')}</h2>
|
|
<p>{t('trade.sell1')}</p>
|
|
<p>{t('trade.sell2')}</p>
|
|
<p>{t('trade.sell3')}</p>
|
|
<p>{t('trade.sell4')}</p>
|
|
<p>{t('trade.sell5')}</p>
|
|
<p>{t('trade.sell6')}</p>
|
|
<br />
|
|
</div>
|
|
<div className="trade-information">
|
|
<h2>{t('trade.buyTitle')}</h2>
|
|
<p>{t('trade.buy1')}</p>
|
|
<p>{t('trade.buy2')}</p>
|
|
<p>{t('trade.buy3')}</p>
|
|
<p>{t('trade.buy4')}</p>
|
|
<p>{t('trade.buy5')}</p>
|
|
<p>{t('trade.buy6')}</p>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
<p>{t('trade.duration')}</p>
|
|
<p>{t('trade.onceRedeemed')}</p>
|
|
<p>{t('trade.redeemed1')}</p>
|
|
<p>{t('trade.redeemed2')}</p>
|
|
<p>{t('trade.redeemed3')}</p>
|
|
<br />
|
|
<p>{t('trade.lockNote')}</p>
|
|
<br />
|
|
<p>
|
|
{t.rich('trade.tokenHelp', {
|
|
link: (c) => (
|
|
<Link href="/security-token" target="_blank">
|
|
{c}
|
|
</Link>
|
|
),
|
|
})}
|
|
</p>
|
|
<br />
|
|
<fieldset>
|
|
<legend>{t('trade.note')}</legend>
|
|
<div className="separate2">
|
|
<p>
|
|
{t('trade.noteText')}
|
|
</p>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<TradePointsForm characters={chars.map((c) => ({ name: c.name, classCss: c.classCss }))} />
|
|
</ServiceBox>
|
|
</PageShell>
|
|
)
|
|
}
|