test(ci): add exporter heading levels and a11y typography smoke; update MAIN_PLAN
CI / test (pull_request) Has been cancelled

This commit is contained in:
2025-11-14 16:40:45 +09:00
parent aaa624a046
commit cd6a6ea069
93 changed files with 8543 additions and 13 deletions
+8
View File
@@ -0,0 +1,8 @@
import 'server-only'
import { locales, type AppLocale } from '@/lib/i18n/locales'
export async function getMessages(locale: AppLocale) {
const loc = locales.includes(locale) ? locale : 'en'
const messages = (await import(`@/messages/${loc}.json`)).default
return messages as Record<string, string>
}