From 23e73814d0df1c09fcca53cd326751084143a7bb Mon Sep 17 00:00:00 2001 From: tosmers Date: Sun, 15 Feb 2015 16:43:00 +0000 Subject: [PATCH] =?UTF-8?q?[UPDATE]=20In=20der=20Klasse=20ccm-navigation/s?= =?UTF-8?q?rc/com/arsdigita/navigation/ui/admin/QuickLinkForm.java=20die?= =?UTF-8?q?=20FormProcessException=20in=20der=20Zeile=20157=20umgebaut=20u?= =?UTF-8?q?nd=20den=20key=20canceled=20den=20Properties=20hinzugef=C3=BCgt?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.libreccm.org/ccm/trunk@3189 8810af33-2d31-482b-a856-94f89814c4df --- .../com/arsdigita/navigation/NavigationResources.properties | 1 + .../com/arsdigita/navigation/NavigationResources_de.properties | 1 + .../src/com/arsdigita/navigation/ui/admin/QuickLinkForm.java | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ccm-navigation/src/com/arsdigita/navigation/NavigationResources.properties b/ccm-navigation/src/com/arsdigita/navigation/NavigationResources.properties index 21a93891e..d3780bf09 100644 --- a/ccm-navigation/src/com/arsdigita/navigation/NavigationResources.properties +++ b/ccm-navigation/src/com/arsdigita/navigation/NavigationResources.properties @@ -16,3 +16,4 @@ portlet.ui.cannot_find_object_type=Can not find object type {0}. portlet.ui.not_a_subtype=The type {0} is not a subtype of {1}. portlet.ui.type_does_not_have_property=The type {0} does not a have a property {1}. ui.admin.template_already_exists=A template already exists for dispatcher context {0} and use context {1} +ui.admin.canceled=Canceled diff --git a/ccm-navigation/src/com/arsdigita/navigation/NavigationResources_de.properties b/ccm-navigation/src/com/arsdigita/navigation/NavigationResources_de.properties index d5c69cb3e..298a79df0 100644 --- a/ccm-navigation/src/com/arsdigita/navigation/NavigationResources_de.properties +++ b/ccm-navigation/src/com/arsdigita/navigation/NavigationResources_de.properties @@ -16,3 +16,4 @@ portlet.ui.cannot_find_object_type=Kann Typ '{0}' nicht finden. portlet.ui.not_a_subtype=Der Typ '{0}' ist kein Untertyp von '{1}'. portlet.ui.type_does_not_have_property=Der Typ '{0}' hat keine Eigenschaft '{1}'. ui.admin.template_already_exists=Eine Vorlage existiert bereits f\u00fcr den dispatcher context {0} und use context {1} +ui.admin.canceled=Abgebrochen diff --git a/ccm-navigation/src/com/arsdigita/navigation/ui/admin/QuickLinkForm.java b/ccm-navigation/src/com/arsdigita/navigation/ui/admin/QuickLinkForm.java index 4a77a612d..87ff746ee 100755 --- a/ccm-navigation/src/com/arsdigita/navigation/ui/admin/QuickLinkForm.java +++ b/ccm-navigation/src/com/arsdigita/navigation/ui/admin/QuickLinkForm.java @@ -154,7 +154,8 @@ public class QuickLinkForm extends Form { if (m_buttons.getCancelButton().isSelected(state)) { fireCompletionEvent(state); - throw new FormProcessException("cancelled"); + throw new FormProcessException(NavigationGlobalizationUtil.globalize( + "ui.admin.canceled")); } }