@@ -379,6 +379,8 @@ The `FormDialog` component uses the following keys for internationalization:
379379| ` [INSTANCE_ID].seeButton ` | Label for the “see details” action button | Table row action | - |
380380| ` [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].ConfirmationDialog ` | Base translation scope for the ConfirmationDialog | Page dialog section | - |
383+ | ` [INSTANCE_ID].LinidSmartFilter ` | Base translation scope for the LinidSmartFilter | Page search section | - |
382384| ` [INSTANCE_ID].[FIELD_LABEL] ` | Label displayed for a table column header | Table column header | - |
383385
384386** Example:**
@@ -398,6 +400,18 @@ The `FormDialog` component uses the following keys for internationalization:
398400 "noData" : " No data available" ,
399401 "rowsPerPage" : " Rows per page:" ,
400402 "paginationLabel" : " {start}-{end} of {total}"
403+ },
404+ "ConfirmationDialog" : {
405+ "title" : " Delete a favorite?" ,
406+ "content" : " Confirm to delete favorite \" {label}\" ?" ,
407+ "ButtonsCard" : {
408+ "confirm" : " Save" ,
409+ "cancel" : " Cancel" ,
410+ "confirmLoading" : " Saving..."
411+ }
412+ },
413+ "LinidSmartFilter" : {
414+ //(...) see next section
401415 }
402416 }
403417}
@@ -755,6 +769,97 @@ export default {
755769 rowsPerPage: ' Rows per page:' ,
756770 paginationLabel: ' {start}-{end} of {total}' ,
757771 },
772+ ConfirmationDialog: {
773+ title: ' Delete a favorite?' ,
774+ content: ' Confirm to delete favorite "{label}"?' ,
775+ ButtonsCard: {
776+ confirm: ' Save' ,
777+ cancel: ' Cancel' ,
778+ confirmLoading: ' Saving...' ,
779+ },
780+ },
781+ LinidSmartFilter: {
782+ label: ' Search' ,
783+ hint: ' Enter your search criteria' ,
784+ prefix: ' ' ,
785+ suffix: ' ' ,
786+ LinidFilterChip: {
787+ [FILTER ]: {
788+ type: ' Filter name' ,
789+ separator: ' or' ,
790+ },
791+ },
792+ LinidFilterPanel: {
793+ title: ' Filter By' ,
794+ },
795+ LinidFavoritePanel: {
796+ title: ' Favorites' ,
797+ noData: ' No available favorites' ,
798+ createFavorite: ' Create Favorite' ,
799+ overrideFavorite: ' Override Favorite' ,
800+ deleteButton: ' Delete' ,
801+ },
802+ TextSearchFilterPanel: {
803+ inputLabel: ' Value' ,
804+ inputHint: ' Enter a value to search' ,
805+ inputPrefix: ' ~' ,
806+ inputSuffix: ' *' ,
807+ negateLabel: ' Negate' ,
808+ searchButton: ' Search' ,
809+ operators: {
810+ contains: ' contains' ,
811+ startsWith: ' startsWith' ,
812+ endsWith: ' endsWith' ,
813+ equals: ' equals' ,
814+ notContains: ' not contains' ,
815+ notStartsWith: ' not startsWith' ,
816+ notEndsWith: ' not endsWith' ,
817+ notEquals: ' not equals' ,
818+ },
819+ },
820+ NumberSearchFilterPanel: {
821+ inputLabel: ' Value' ,
822+ inputHint: ' Enter a number to search' ,
823+ inputPrefix: ' $' ,
824+ inputSuffix: ' kg' ,
825+ negateLabel: ' Negate' ,
826+ searchButton: ' Search' ,
827+ operators: {
828+ inferior: ' inferior' ,
829+ superior: ' superior' ,
830+ equals: ' equals' ,
831+ notInferior: ' not inferior' ,
832+ notSuperior: ' not superior' ,
833+ notEquals: ' not equals' ,
834+ },
835+ },
836+ TreeSearchFilterPanel: {
837+ searchButton: ' Search' ,
838+ },
839+ ListSearchFilterPanel: {
840+ searchButton: ' Search' ,
841+ },
842+ DateSearchFilterPanel: {
843+ inputLabel: ' Date' ,
844+ inputHint: ' Select or enter a date' ,
845+ inputPrefix: ' ≥' ,
846+ inputSuffix: ' (UTC)' ,
847+ negateLabel: ' Negate' ,
848+ close: ' Close' ,
849+ searchButton: ' Search' ,
850+ operators: {
851+ inferior: ' inferior' ,
852+ superior: ' superior' ,
853+ equals: ' equals' ,
854+ notInferior: ' not inferior' ,
855+ notSuperior: ' not superior' ,
856+ notEquals: ' not equals' ,
857+ },
858+ validation: {
859+ invalidDate: ' Invalid date. Expected format: {format}' ,
860+ },
861+ },
862+ },
758863 },
759864};
760865```
0 commit comments