Files
authentik/web/types/locale.d.ts
Teffen Ellis fe7a8894d3 web/i18n: Locale Context Merge Branch (#18426)
* 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.
2025-12-03 06:30:07 +00:00

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;
}