From 5aab8e24e651cbc8505fe7a770c8fc8ccb092ae3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Vit=C3=A1sek?= Date: Tue, 18 Mar 2025 14:37:34 +0100 Subject: [PATCH] fix: restore missing translations in scaffolderReactTranslationRef MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ladislav Vitásek --- plugins/scaffolder-react/report-alpha.api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/scaffolder-react/report-alpha.api.md b/plugins/scaffolder-react/report-alpha.api.md index fbd539f96e..ad9f31480a 100644 --- a/plugins/scaffolder-react/report-alpha.api.md +++ b/plugins/scaffolder-react/report-alpha.api.md @@ -332,10 +332,9 @@ export type ScaffolderReactTemplateCategoryPickerClassKey = 'root' | 'label'; export const scaffolderReactTranslationRef: TranslationRef< 'scaffolder-react', { - readonly 'workflow.noDescription': 'No description'; readonly 'passwordWidget.content': 'This widget is insecure. Please use [`ui:field: Secret`](https://backstage.io/docs/features/software-templates/writing-templates/#using-secrets) instead of `ui:widget: password`'; - readonly 'scaffolderPageContextMenu.createLabel': 'Create'; readonly 'scaffolderPageContextMenu.moreLabel': 'more'; + readonly 'scaffolderPageContextMenu.createLabel': 'Create'; readonly 'scaffolderPageContextMenu.editorLabel': 'Manage Templates'; readonly 'scaffolderPageContextMenu.actionsLabel': 'Installed Actions'; readonly 'scaffolderPageContextMenu.tasksLabel': 'Task List'; @@ -349,6 +348,7 @@ export const scaffolderReactTranslationRef: TranslationRef< readonly 'templateCard.chooseButtonText': 'Choose'; readonly 'cardHeader.detailBtnTitle': 'Show template entity details'; readonly 'templateOutputs.title': 'Text Output'; + readonly 'workflow.noDescription': 'No description'; } >;