67b906cc96
- Load the language files correctly when language is changed - Save user language in localstorage so that we can have it even if disconnected (but still load it from user settings eventually since user might be on a different device) - Load all locales from Cldr with Gettext - Fix pt-PT -> pt-BR - Clean some obsolete config.exs comments Later changes will allow to set the language without an account https://framagit.org/framasoft/mobilizon/-/issues/375 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
8 lines
350 B
TypeScript
8 lines
350 B
TypeScript
export const AUTH_ACCESS_TOKEN = "auth-access-token";
|
|
export const AUTH_REFRESH_TOKEN = "auth-refresh-token";
|
|
export const AUTH_USER_ID = "auth-user-id";
|
|
export const AUTH_USER_EMAIL = "auth-user-email";
|
|
export const AUTH_USER_ACTOR_ID = "auth-user-actor-id";
|
|
export const AUTH_USER_ROLE = "auth-user-role";
|
|
export const USER_LOCALE = "user-locale";
|