From 2f331cefae35bc1d3a1a850bfabe3ca7fc4d0cdd Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 4 Sep 2024 16:10:26 +1000 Subject: [PATCH] fix: add constants.ts back --- ts/localization/constants.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ts/localization/constants.ts diff --git a/ts/localization/constants.ts b/ts/localization/constants.ts new file mode 100644 index 0000000000..16052a711a --- /dev/null +++ b/ts/localization/constants.ts @@ -0,0 +1,7 @@ +export enum LOCALE_DEFAULTS { + app_name = 'Session', + session_download_url = 'https://getsession.org/download', + gif = 'GIF', +} + +export const rtlLocales = ['ar', 'fa', 'he', 'ps', 'ur'] as const;