#824 - Field actions

This commit is contained in:
Elio Struyf
2024-06-28 09:23:26 +02:00
parent 0e6e776f70
commit b03d972d31
15 changed files with 347 additions and 238 deletions
+1
View File
@@ -1 +1,2 @@
export * from './localization.enum';
export * from './localize';
+8
View File
@@ -1416,6 +1416,14 @@ export enum LocalizationKey {
* Unkown field type: {0}
*/
panelFieldsWrapperFieldUnknown = 'panel.fields.wrapperField.unknown',
/**
* Custom action
*/
panelFieldsFieldCustomActionButtonTitle = 'panel.fields.fieldCustomAction.button.title',
/**
* Executing field action...
*/
panelFieldsFieldCustomActionExecuting = 'panel.fields.fieldCustomAction.executing',
/**
* Actions
*/
+5
View File
@@ -0,0 +1,5 @@
import * as l10n from '@vscode/l10n';
export const localize = (key: string, ...args: any[]): string => {
return l10n.t(key, ...args);
};