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:
@ -3,17 +3,18 @@ import { SettingsLabContent } from '@/settings/lab/components/SettingsLabContent
|
||||
import { SettingsPath } from '@/types/SettingsPath';
|
||||
import { SubMenuTopBarContainer } from '@/ui/layout/page/components/SubMenuTopBarContainer';
|
||||
import { getSettingsPath } from '~/utils/navigation/getSettingsPath';
|
||||
import { t } from '@lingui/core/macro';
|
||||
|
||||
export const SettingsLab = () => {
|
||||
return (
|
||||
<SubMenuTopBarContainer
|
||||
title="Lab"
|
||||
title={t`Lab`}
|
||||
links={[
|
||||
{
|
||||
children: 'Other',
|
||||
children: t`Other`,
|
||||
href: getSettingsPath(SettingsPath.Lab),
|
||||
},
|
||||
{ children: 'Lab' },
|
||||
{ children: t`Lab` },
|
||||
]}
|
||||
>
|
||||
<SettingsPageContainer>
|
||||
|
||||
Reference in New Issue
Block a user