Add missing translations (#10414)
As per title, add ~200 missing translations in different places of app. Most places are now available for translation with AI but still some aren't available - some enums (like in MenuItemSelectColor.tsx) or values in complex types (like in SettingsNonCompositeFieldTypeConfigs.ts) or values where are injected some variables (like in SettingsDataModelFieldNumberForm.tsx) --------- Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
@ -108,7 +108,7 @@ export const SettingsSecurityApprovedAccessDomain = () => {
|
||||
>
|
||||
<SettingsPageContainer>
|
||||
<Section>
|
||||
<H2Title title="Domain" description="The name of your Domain" />
|
||||
<H2Title title={t`Domain`} description={t`The name of your Domain`} />
|
||||
<Controller
|
||||
name="domain"
|
||||
control={formConfig.control}
|
||||
@ -128,8 +128,8 @@ export const SettingsSecurityApprovedAccessDomain = () => {
|
||||
</Section>
|
||||
<Section>
|
||||
<H2Title
|
||||
title="Email verification"
|
||||
description="We will send your a link to verify domain ownership"
|
||||
title={t`Email verification`}
|
||||
description={t`We will send your a link to verify domain ownership`}
|
||||
/>
|
||||
<Controller
|
||||
name="email"
|
||||
|
||||
@ -16,6 +16,7 @@ import pick from 'lodash.pick';
|
||||
import { FormProvider, useForm } from 'react-hook-form';
|
||||
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
|
||||
import { getSettingsPath } from '~/utils/navigation/getSettingsPath';
|
||||
import { t } from '@lingui/core/macro';
|
||||
|
||||
export const SettingsSecuritySSOIdentifyProvider = () => {
|
||||
const navigate = useNavigateSettings();
|
||||
@ -55,7 +56,7 @@ export const SettingsSecuritySSOIdentifyProvider = () => {
|
||||
|
||||
return (
|
||||
<SubMenuTopBarContainer
|
||||
title="New SSO Configuration"
|
||||
title={t`New SSO Configuration`}
|
||||
actionButton={
|
||||
<SaveAndCancelButtons
|
||||
isSaveDisabled={!formConfig.formState.isValid}
|
||||
|
||||
Reference in New Issue
Block a user