mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 09:57:31 +02:00
* web: Update fonts to Patternfly 5 variants. * Fix order of heading override. * web: Flesh out locale context. * Fix Han pattern. * Remove comment. * Add additional regional codes. * Clarify comment. * Fix typos. * web/i18n: Add locale-specific font overrides. * Fix stale session in locale lifecycle. * core, web: Fix Han language codes. * Fix warnings about invalid BCP language code. * Build translations. * Add locale relative labels. * Add locale translations for Finnish and Portuguese. * Fix XLIFF errors. * Clean up labels. * Tidy regions. * Match region comment. * Update extracted values. * Fix locale switch not triggering on source language. * Split labels. * Clean up labels.
19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
/**
|
|
* This module is used to satisfy imports from `#locales/*` which have either
|
|
* not yet been generated, or are missing.
|
|
*
|
|
* ```sh
|
|
* npm run build-locales
|
|
* ```
|
|
*/
|
|
|
|
declare module "#locales/*" {
|
|
/**
|
|
* If you see this, try running `npm run build-locales` to generate locale files.
|
|
*/
|
|
type MissingLocale = symbol & { readonly __brand?: never };
|
|
|
|
const missingLocale: MissingLocale;
|
|
export const templates: MissingLocale;
|
|
}
|