Login:Src:Utils: add new constants for Wizard

This commit is contained in:
Darya Umrikhina 2024-07-11 12:07:34 +04:00
parent b1b71365b5
commit c0e3ad7bdc

View File

@ -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}}</1> is already registered in this {{productName}}, enter your password or go back to continue with another email.";
export const DEFAULT_ROOM_TEXT =
"<strong>{{firstName}} {{lastName}}</strong> invites you to join the room <strong>{{roomName}}</strong> for secure document collaboration.";
export const DEFAULT_PORTAL_TEXT =
"<strong>{{firstName}} {{lastName}}</strong> invites you to join the room <strong>{{roomName}}</strong> 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";