651d8deafc
Se externaliza el texto español hardcodeado de ~55 archivos a next-intl y se añaden traducciones al inglés, con paridad de claves es/en. Nuevos namespaces: History, CharService, CharServiceB, Points, Legal, UI, Misc (+ altas en Common/Admin). - Historiales (PD/PV, transacciones, sanciones, seguridad), servicios de personaje (transfer, send-gift, quest, restore-*, change-*, customize, level-up, gold, rename), PD/pagos (d-points, trade, promo, transfer-dp, rename-guild, DPointsTabs), páginas legales (cookies, privacidad, términos, reembolsos, aviso legal, contacto), layout (cabecera, footer, cookies, 2FA, descargas, jugadores, recluta) y páginas varias (home, reino, ayuda, addons, 2falogin). - Textos con markup inline via t.rich; interpolación con ICU. - Componente <NoteLegend/> para la leyenda NOTA/NOTE compartida. - payLabel/confirmText de los servicios de pago traducidos. - Verificado: tsc OK, next build OK, todas las claves t() resuelven en es y en, todos los t.rich casan etiquetas, páginas 200 en /es/ y /en/ sin claves crudas. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
67 lines
2.3 KiB
TypeScript
67 lines
2.3 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 { getChangeRacePrice } from '@/lib/prices'
|
|
import { PageShell } from '@/components/PageShell'
|
|
import { ServiceBox } from '@/components/ServiceBox'
|
|
import { PaidServiceForm } from '@/components/PaidServiceForm'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export const metadata: Metadata = { title: 'Cambiar raza del personaje' }
|
|
|
|
export default async function ChangeRaceCharacterPage({ 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!), getChangeRacePrice()])
|
|
|
|
const t = await getTranslations('CharServiceB.changeRace')
|
|
|
|
return (
|
|
<PageShell title="Cambiar raza del personaje">
|
|
<ServiceBox>
|
|
<br />
|
|
<p className="red-info2 h2">
|
|
<i className="fas fa-exclamation-triangle"></i> {t('warning')}{' '}
|
|
<i className="fas fa-exclamation-triangle"></i>
|
|
</p>
|
|
<p>{t.rich('intro', { s: (c) => <span>{c}</span> })}</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/change-race/checkout"
|
|
payLabel={t('payLabel')}
|
|
buttonClass="change-race-button"
|
|
provider="sumup"
|
|
confirmText={t('confirm', { price })}
|
|
/>
|
|
</ServiceBox>
|
|
</PageShell>
|
|
)
|
|
}
|