[UPDATE]
In der Klasse ccm-cms/src/com/arsdigita/cms/ui/type/EditType.java die FormProcessException in der Zeile 237 umgebaut und den key content_editing_failed den Properties hinzugefügt. git-svn-id: https://svn.libreccm.org/ccm/trunk@3236 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
ce4a5099a0
commit
fd0be3abb4
|
|
@ -1108,3 +1108,4 @@ cms.ui.authoring.couldnt_convert_inso_failed=Could not convert to html format be
|
|||
cms.ui.authoring.html_file_missing_body_tags=The file (which should be type HTML) is missing the <body> or </body> tag.
|
||||
cms.ui.lifecycle.publish.not_possible_abstract_category\ =
|
||||
cms.ui.authoring.couldnt_create_item=Couldn't create new Item
|
||||
cms.ui.type.content_editing_failed=Failed to edit the content type: {0}
|
||||
|
|
|
|||
|
|
@ -1102,3 +1102,4 @@ cms.ui.authoring.couldnt_convert_inso_failed=Konnte nicht ins html Format umgewa
|
|||
cms.ui.authoring.html_file_missing_body_tags=Der Datei (vom Type HTML) fehlt der <body> oder </body> Tag
|
||||
cms.ui.lifecycle.publish.not_possible_abstract_category\ =
|
||||
cms.ui.authoring.couldnt_create_item=Konnte ein neues Element nicht erstellen
|
||||
cms.ui.type.content_editing_failed=Bearbeitung des Dokumenttyps: {0} ist fehlgeschlagen
|
||||
|
|
|
|||
|
|
@ -146,3 +146,4 @@ cms.ui.authoring.couldnt_convert_inso_failed=
|
|||
cms.ui.authoring.html_file_missing_body_tags=
|
||||
cms.ui.lifecycle.publish.not_possible_abstract_category\ =
|
||||
cms.ui.authoring.couldnt_create_item=
|
||||
cms.ui.type.content_editing_failed=
|
||||
|
|
|
|||
|
|
@ -618,3 +618,4 @@ cms.ui.authoring.couldnt_convert_inso_failed=Impossible de convertir au format H
|
|||
cms.ui.authoring.html_file_missing_body_tags=Le fichier (qui devrait \u00eatre de type HTML) est absent de la <body> ou </ body>
|
||||
cms.ui.lifecycle.publish.not_possible_abstract_category\ =
|
||||
cms.ui.authoring.couldnt_create_item=Impossible de cr\u00e9er un nouveau \u00e9l\u00e9ment
|
||||
cms.ui.type.content_editing_failed=Impossible de modifier le type de contenu: {0}
|
||||
|
|
|
|||
|
|
@ -234,8 +234,8 @@ public class EditType extends CMSForm
|
|||
} catch (DataObjectNotFoundException e) {
|
||||
s_log.error("Can't find ContentType with key " + key, e);
|
||||
|
||||
throw new FormProcessException(
|
||||
"Failed to edit the content type: " + key + " " + e.getMessage(), e);
|
||||
throw new FormProcessException(GlobalizationUtil.globalize(
|
||||
"cms.ui.type.content_editing_failed", new Object[]{key}));
|
||||
}
|
||||
|
||||
type.setName(label);
|
||||
|
|
|
|||
Loading…
Reference in New Issue