diff options
Diffstat (limited to 'src/include/ux_locales.h')
-rw-r--r-- | src/include/ux_locales.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/include/ux_locales.h b/src/include/ux_locales.h new file mode 100644 index 0000000000..1affd925d1 --- /dev/null +++ b/src/include/ux_locales.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef _UX_LOCALES_H_ +#define _UX_LOCALES_H_ + +#include <types.h> + +/* Unmap the preram_locales if it has been mapped. No-op otherwise. */ +void ux_locales_unmap(void); + +/* + * Get the localized text for a given string name. + * This function will try to read the language ID from vboot API, and search the + * corresponding translation from CBFS preram_locales. + */ +const char *ux_locales_get_text(const char *name); + +#endif // _UX_LOCALES_H_ |