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; }