Continue Frontend localization (#9909)

Translation more content on the frontend
This commit is contained in:
Félix Malfait
2025-01-29 17:36:28 +01:00
committed by GitHub
parent ce0a6c1b17
commit 9d32e63111
56 changed files with 3187 additions and 1366 deletions

View File

@ -8019,7 +8019,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery =
type: 'UUID',
name: 'linkedObjectMetadataId',
label: 'Linked Object Metadata Id',
description: 'inked Object Metadata Id',
description: 'Linked Object Metadata Id',
icon: 'IconAbc',
isCustom: false,
isActive: true,

View File

@ -1,4 +1,5 @@
import { TableMetadata } from '@/ui/layout/table/types/TableMetadata';
import { msg } from '@lingui/core/macro';
export type MockedTableType = {
labelPlural: string;
@ -12,13 +13,13 @@ export const mockedTableMetadata: TableMetadata<MockedTableType> = {
fieldName: 'labelPlural',
fieldType: 'string',
align: 'left',
fieldLabel: 'Name',
fieldLabel: msg`Name`,
},
{
fieldName: 'fieldsCount',
fieldType: 'number',
align: 'right',
fieldLabel: 'Fields Count',
fieldLabel: msg`Fields Count`,
},
],
};