From 63e744c5febdaca72809d7eeb0b044a04c4eb5bb Mon Sep 17 00:00:00 2001 From: Peter Mathis Date: Fri, 8 Jul 2022 11:17:50 +0200 Subject: [PATCH 1/2] fix wrong msgid in button translation --- plone/app/workflow/browser/sharing.pt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plone/app/workflow/browser/sharing.pt b/plone/app/workflow/browser/sharing.pt index 662d03c..b3518d9 100644 --- a/plone/app/workflow/browser/sharing.pt +++ b/plone/app/workflow/browser/sharing.pt @@ -161,11 +161,11 @@ class="btn btn-primary" type="submit" name="form.button.Save" - i18n:translate="value label_save">Save + i18n:translate="label_save">Save + i18n:translate="label_cancel">Cancel @@ -175,4 +175,4 @@ - \ No newline at end of file + From 4d6674023b75b09d31646f1bac7ca507b636af4b Mon Sep 17 00:00:00 2001 From: Peter Mathis Date: Fri, 8 Jul 2022 11:20:29 +0200 Subject: [PATCH 2/2] changenote --- news/33.bugfix | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 news/33.bugfix diff --git a/news/33.bugfix b/news/33.bugfix new file mode 100644 index 0000000..dcd3297 --- /dev/null +++ b/news/33.bugfix @@ -0,0 +1,2 @@ +Fix translation of `sharing` buttons. +[petschki]