From 52b3a88ce69092a16cbb201a34b86e14e0f3719c Mon Sep 17 00:00:00 2001 From: tosmers Date: Fri, 13 Feb 2015 20:33:42 +0000 Subject: [PATCH] =?UTF-8?q?[UPDATE]=20In=20der=20Klasse=20com/arsdigita/cm?= =?UTF-8?q?s/ui/type/AddContentItemElement.jav=20die=20FormProcessExceptio?= =?UTF-8?q?n=20in=20der=20Zeile=2092=20umgebaut.=20Entsprechenden=20Eintra?= =?UTF-8?q?g=20in=20der=20Property=20um=20die=20franz=C3=A4sische=20=C3=9C?= =?UTF-8?q?bersetzung=20erweitert.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.libreccm.org/ccm/trunk@3150 8810af33-2d31-482b-a856-94f89814c4df --- ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties | 1 + .../src/com/arsdigita/cms/ui/type/AddContentItemElement.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties b/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties index 1dd6ad9b4..3aee11b71 100755 --- a/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties +++ b/ccm-cms/src/com/arsdigita/cms/CMSResources_fr.properties @@ -602,3 +602,4 @@ cms.ui.workflow.task.approval_or_reject_required=Approval or rejection is requir cms.ui.type.name_not_unique=Ce type de contenu a d\u00e9ja un \u00e9l\u00e9ment avec le nom cms.ui.type.cancelled=Annul\u00e9 cms.ui.role.name_not_unique=Ce type de contenu a d\u00e9ja un \u00e9l\u00e9ment avec le nom +cms.ui.type.invalid=Invalide diff --git a/ccm-cms/src/com/arsdigita/cms/ui/type/AddContentItemElement.java b/ccm-cms/src/com/arsdigita/cms/ui/type/AddContentItemElement.java index df68f0353..79e562a1d 100755 --- a/ccm-cms/src/com/arsdigita/cms/ui/type/AddContentItemElement.java +++ b/ccm-cms/src/com/arsdigita/cms/ui/type/AddContentItemElement.java @@ -89,7 +89,7 @@ public class AddContentItemElement extends ElementAddForm { try { itemType = new ContentType(itemTypeID); } catch (DataObjectNotFoundException ex) { - throw new FormProcessException((String) GlobalizationUtil.globalize("cms.ui.type.invalid").localize()); + throw new FormProcessException(GlobalizationUtil.globalize("cms.ui.type.invalid")); } return itemType; }