Fix Bug 67319 - Settings: Data Import. When the migration is completed, you receive an invite letter, not a welcome letter.

This commit is contained in:
Elyor Djalilov 2024-04-13 13:54:48 +05:00
parent f0d84c0e81
commit 12a82f3b04
4 changed files with 8 additions and 8 deletions

View File

@ -228,7 +228,7 @@
"SelectUserTypes": "Select user types",
"SelectUserTypesDescription": "Select DocSpace roles for the imported users: <1>DocSpace admin</1>, <1>Room admin</1> or <1>Power user</1>. By default, Power user role is selected for each user. You can manage the roles after the import.",
"SendNotificationAboutRestoring": "Send notification about space restoring to users",
"SendWelcomeLetter": "Send welcome letter",
"SendInviteLetter": "Send invite letter",
"ServerSideEncryptionMethod": "Server Side Encryption Method",
"ServiceUrl": "Service URL",
"SessionLifetime": "Session Lifetime",
@ -300,7 +300,7 @@
"UseUpperCase": "Use capital letters",
"WantToCancelDataImport": "Do you want to cancel data import?",
"WantToCancelUpload": "Do you want to cancel the upload?",
"WelcomeLetterTooltip": "If checked, all new users will receive a welcome letter with authorization details.",
"InviteLetterTooltip": "If checked, all new users will receive a invite letter with authorization details.",
"WhiteLabel": "Logo settings",
"WhiteLabelHelper": "Use images with a transparent background. (PNG, SVG, JPG)",
"WhiteLabelSubtitle": "Enter your company name, upload the logo, and customize the styling to match your branding.",

View File

@ -148,7 +148,7 @@ const ImportCompleteStep = ({
<Wrapper>
<Checkbox
label={t("Settings:SendWelcomeLetter")}
label={t("Settings:SendInviteLetter")}
isChecked={isChecked}
onChange={onChangeCheckbox}
/>
@ -157,7 +157,7 @@ const ImportCompleteStep = ({
offsetRight={0}
style={{ margin: "0px 5px" }}
tooltipContent={
<Text fontSize="12px">{t("Settings:WelcomeLetterTooltip")}</Text>
<Text fontSize="12px">{t("Settings:InviteLetterTooltip")}</Text>
}
/>
</Wrapper>

View File

@ -135,7 +135,7 @@ const ImportCompleteStep = ({
<div className="sendLetterBlockWrapper">
<Checkbox
label={t("Settings:SendWelcomeLetter")}
label={t("Settings:SendInviteLetter")}
isChecked={isChecked}
onChange={onChangeCheckbox}
/>
@ -144,7 +144,7 @@ const ImportCompleteStep = ({
offsetRight={0}
style={{ margin: "0px 5px" }}
tooltipContent={
<Text fontSize="12px">{t("Settings:WelcomeLetterTooltip")}</Text>
<Text fontSize="12px">{t("Settings:InviteLetterTooltip")}</Text>
}
/>
</div>

View File

@ -148,7 +148,7 @@ const ImportCompleteStep = ({
<Wrapper>
<Checkbox
label={t("Settings:SendWelcomeLetter")}
label={t("Settings:SendInviteLetter")}
isChecked={isChecked}
onChange={onChangeCheckbox}
/>
@ -157,7 +157,7 @@ const ImportCompleteStep = ({
offsetRight={0}
style={{ margin: "0px 5px" }}
tooltipContent={
<Text fontSize="12px">{t("Settings:WelcomeLetterTooltip")}</Text>
<Text fontSize="12px">{t("Settings:InviteLetterTooltip")}</Text>
}
/>
</Wrapper>