mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-29 15:19:00 +03:00
* i18n improvements for settings UI - deduplicate shared detector translation keys and centralize config translation resolution - add missing i18n keys * formatting
20 lines
405 B
TypeScript
20 lines
405 B
TypeScript
/**
|
|
* Config form theme utilities
|
|
*/
|
|
|
|
export {
|
|
buildTranslationPath,
|
|
resolveConfigTranslation,
|
|
getFilterObjectLabel,
|
|
humanizeKey,
|
|
getDomainFromNamespace,
|
|
} from "./i18n";
|
|
|
|
export { getOverrideAtPath, hasOverrideAtPath } from "./overrides";
|
|
export {
|
|
deepNormalizeValue,
|
|
normalizeFieldValue,
|
|
isSubtreeModified,
|
|
} from "./overrides";
|
|
export { getSizedFieldClassName } from "./fieldSizing";
|