diff --git a/packages/login/src/utils/constants.ts b/packages/login/src/utils/constants.ts index cf211199d2..615a0e8f36 100644 --- a/packages/login/src/utils/constants.ts +++ b/packages/login/src/utils/constants.ts @@ -24,9 +24,25 @@ // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode +import { TCulturesOption, TTimeZoneOption } from "@/types"; +import EnUSReactSvgUrl from "PUBLIC_DIR/images/flags/en-US.react.svg?url"; + export const DEFAULT_EMAIL_TEXT = "User <1>{{email}} is already registered in this {{productName}}, enter your password or go back to continue with another email."; export const DEFAULT_ROOM_TEXT = "{{firstName}} {{lastName}} invites you to join the room {{roomName}} for secure document collaboration."; export const DEFAULT_PORTAL_TEXT = "{{firstName}} {{lastName}} invites you to join the room {{roomName}} for secure document collaboration."; + +export const DEFAULT_SELECT_TIMEZONE: TTimeZoneOption = { + key: "UTC", + label: "(UTC) Coordinated Universal Time", +}; + +export const DEFAULT_SELECT_LANGUAGE: TCulturesOption = { + key: "en-US", + label: "English (United States)", + icon: EnUSReactSvgUrl, +}; + +export const URL_LICENSE = "https://gnu.org/licenses/gpl-3.0.html";