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-94f89814c4df
master
tosmers 2015-02-18 20:33:47 +00:00
parent ce4a5099a0
commit fd0be3abb4
5 changed files with 6 additions and 2 deletions

View File

@ -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.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.lifecycle.publish.not_possible_abstract_category\ =
cms.ui.authoring.couldnt_create_item=Couldn't create new Item cms.ui.authoring.couldnt_create_item=Couldn't create new Item
cms.ui.type.content_editing_failed=Failed to edit the content type: {0}

View File

@ -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.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.lifecycle.publish.not_possible_abstract_category\ =
cms.ui.authoring.couldnt_create_item=Konnte ein neues Element nicht erstellen cms.ui.authoring.couldnt_create_item=Konnte ein neues Element nicht erstellen
cms.ui.type.content_editing_failed=Bearbeitung des Dokumenttyps: {0} ist fehlgeschlagen

View File

@ -146,3 +146,4 @@ cms.ui.authoring.couldnt_convert_inso_failed=
cms.ui.authoring.html_file_missing_body_tags= cms.ui.authoring.html_file_missing_body_tags=
cms.ui.lifecycle.publish.not_possible_abstract_category\ = cms.ui.lifecycle.publish.not_possible_abstract_category\ =
cms.ui.authoring.couldnt_create_item= cms.ui.authoring.couldnt_create_item=
cms.ui.type.content_editing_failed=

View File

@ -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.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.lifecycle.publish.not_possible_abstract_category\ =
cms.ui.authoring.couldnt_create_item=Impossible de cr\u00e9er un nouveau \u00e9l\u00e9ment 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}

View File

@ -234,8 +234,8 @@ public class EditType extends CMSForm
} catch (DataObjectNotFoundException e) { } catch (DataObjectNotFoundException e) {
s_log.error("Can't find ContentType with key " + key, e); s_log.error("Can't find ContentType with key " + key, e);
throw new FormProcessException( throw new FormProcessException(GlobalizationUtil.globalize(
"Failed to edit the content type: " + key + " " + e.getMessage(), e); "cms.ui.type.content_editing_failed", new Object[]{key}));
} }
type.setName(label); type.setName(label);