diff --git a/ccm-cms/src/com/arsdigita/cms/CMSResources.properties b/ccm-cms/src/com/arsdigita/cms/CMSResources.properties index d239e4294..b161ee647 100755 --- a/ccm-cms/src/com/arsdigita/cms/CMSResources.properties +++ b/ccm-cms/src/com/arsdigita/cms/CMSResources.properties @@ -1094,3 +1094,4 @@ cms.ui.unique_item_name_violation=An item with this name already exists. cms.ui.item_searchwidget.submit=item search FormSection submit cms.ui.workflow.task.approval_or_reject_required=Approval or rejection is required. cms.ui.type.cancelled=Cancelled +cms.contenttypes.ui.cancelled=Cancelled diff --git a/ccm-cms/src/com/arsdigita/cms/CMSResources_de.properties b/ccm-cms/src/com/arsdigita/cms/CMSResources_de.properties index e4eee3d41..0e9ebc517 100755 --- a/ccm-cms/src/com/arsdigita/cms/CMSResources_de.properties +++ b/ccm-cms/src/com/arsdigita/cms/CMSResources_de.properties @@ -1088,3 +1088,4 @@ cms.ui.unique_item_name_violation=Ein Item mit diesem Namen existiert bereits. cms.ui.item_searchwidget.submit=item search FormSection submit cms.ui.workflow.task.approval_or_reject_required=Ablehnung oder Zustimmung ist ben\u00f6tigt cms.ui.type.cancelled=Abgebrochen +cms.contenttypes.ui.cancelled=Abgebrochen diff --git a/ccm-cms/src/com/arsdigita/cms/CMSResources_en_GB.properties b/ccm-cms/src/com/arsdigita/cms/CMSResources_en_GB.properties index e8d3ce8aa..82506be6f 100755 --- a/ccm-cms/src/com/arsdigita/cms/CMSResources_en_GB.properties +++ b/ccm-cms/src/com/arsdigita/cms/CMSResources_en_GB.properties @@ -132,3 +132,4 @@ cms.ui.item_searchwidget.submit=item search FormSection submit cms.ui.workflow.task.approval_or_reject_required=Approval or rejection is required. cms.ui.type.name_not_unique=Name not unique cms.ui.type.cancelled=cancelled +cms.contenttypes.ui.cancelled=Cancelled diff --git a/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties b/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties index 9dd902ee3..a342ec1ff 100755 --- a/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties +++ b/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties @@ -604,3 +604,4 @@ cms.ui.type.cancelled=Annul\u00e9 cms.ui.role.name_not_unique=Il y a d\u00e9ja un r\u00f4le cms.ui.type.invalid=Invalide cms.ui.category.name_not_unique=Il y a d\u00e9ja une cat\u00e9gorie avec le nom +cms.contenttypes.ui.cancelled=Annul\u00e9 diff --git a/ccm-cms/src/com/arsdigita/cms/contenttypes/ui/LinkPropertyForm.java b/ccm-cms/src/com/arsdigita/cms/contenttypes/ui/LinkPropertyForm.java index 89c810ee4..b59a14cd4 100755 --- a/ccm-cms/src/com/arsdigita/cms/contenttypes/ui/LinkPropertyForm.java +++ b/ccm-cms/src/com/arsdigita/cms/contenttypes/ui/LinkPropertyForm.java @@ -358,7 +358,7 @@ public class LinkPropertyForm extends FormSection s_log.debug("cancel in submission listener"); m_linkModel.clearSelection(e.getPageState()); init(e); - throw new FormProcessException("cancelled"); + throw new FormProcessException(GlobalizationUtil.globalize("cms.contenttypes.ui.cancelled")); } }