In der Klasse com/arsdigita/cms/ui/type/AddContentItemElement.jav die FormProcessException in der Zeile 92 umgebaut. Entsprechenden Eintrag in der Property um die franzäsische Übersetzung erweitert.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3150 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-13 20:33:42 +00:00
parent 3e661945a2
commit 52b3a88ce6
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

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