@@ -372,17 +372,18 @@ The `FormDialog` component uses the following keys for internationalization:
372372
373373** File:** apps/catalog-ui/src/pages/GenericTablePage.vue
374374
375- | Key | Description | Usage | Parameters |
376- | ----------------------------------- | ---------------------------------------------------------------------- | -------------------- | ---------- |
377- | ` [INSTANCE_ID].title ` | Title displayed at the top of the page (if present) | Page header | - |
378- | ` [INSTANCE_ID].error ` | Error message when data loading fails. | Page toaster | - |
379- | ` [INSTANCE_ID].seeButton ` | Label for the “see details” action button | Table row action | - |
380- | ` [INSTANCE_ID].ButtonsCard ` | Base translation scope for the actions card (e.g. create button label) | Page actions section | - |
375+ | Key | Description | Usage | Parameters |
376+ | ---------------------------------- | ---------------------------------------------------------------------- | -------------------- | ---------- |
377+ | ` [INSTANCE_ID].title ` | Title displayed at the top of the page (if present) | Page header | - |
378+ | ` [INSTANCE_ID].error ` | Error message when data loading fails. | Page toaster | - |
379+ | ` [INSTANCE_ID].seeButton ` | Label for the “see details” action button | Table row action | - |
380+ | ` [INSTANCE_ID].ButtonsCard ` | Base translation scope for the actions card (e.g. create button label) | Page actions section | - |
381381| ` [INSTANCE_ID].GenericEntityTable ` | Base translation scope for the GenericEntityTable | Page table section | - |
382- | ` [INSTANCE_ID].DeleteDialog ` | Base translation scope for the delete-favorite ConfirmationDialog | Page dialog section | - |
383- | ` [INSTANCE_ID].OverrideDialog ` | Base translation scope for the override-favorite FormDialog | Page dialog section | - |
384- | ` [INSTANCE_ID].LinidSmartFilter ` | Base translation scope for the LinidSmartFilter | Page search section | - |
385- | ` [INSTANCE_ID].[FIELD_LABEL] ` | Label displayed for a table column header | Table column header | - |
382+ | ` [INSTANCE_ID].DeleteDialog ` | Base translation scope for the delete-favorite ConfirmationDialog | Page dialog section | - |
383+ | ` [INSTANCE_ID].OverrideDialog ` | Base translation scope for the override-favorite FormDialog | Page dialog section | - |
384+ | ` [INSTANCE_ID].CreateDialog ` | Base translation scope for the create-favorite FormDialog | Page dialog section | - |
385+ | ` [INSTANCE_ID].LinidSmartFilter ` | Base translation scope for the LinidSmartFilter | Page search section | - |
386+ | ` [INSTANCE_ID].[FIELD_LABEL] ` | Label displayed for a table column header | Table column header | - |
386387
387388** Example:**
388389
@@ -425,6 +426,16 @@ The `FormDialog` component uses the following keys for internationalization:
425426 }
426427 }
427428 },
429+ "CreateDialog" : {
430+ "title" : " Create a favorite?" ,
431+ "content" : " Name of the favorite." ,
432+ "duplicateName" : " A favorite with the name \" {name}\" already exists." ,
433+ "ButtonsCard" : {
434+ "cancel" : " Cancel" ,
435+ "confirm" : " Create" ,
436+ "confirmLoading" : " Creating..."
437+ }
438+ },
428439 "LinidSmartFilter" : {
429440 //(...) see next section
430441 }
@@ -807,6 +818,16 @@ export default {
807818 },
808819 },
809820 },
821+ CreateDialog: {
822+ title: ' Create a favorite?' ,
823+ content: ' Name of the favorite.' ,
824+ duplicateName: ' A favorite with the name "{name}" already exists.' ,
825+ ButtonsCard: {
826+ cancel: ' Cancel' ,
827+ confirm: ' Create' ,
828+ confirmLoading: ' Creating...' ,
829+ },
830+ },
810831 LinidSmartFilter: {
811832 label: ' Search' ,
812833 hint: ' Enter your search criteria' ,
0 commit comments