In der Klasse ccm-cms/src/com/arsdigita/cms/contenttypes/ui/AbstractTextUploadForm.java die FormProcessException in der Zeile 236 umgebaut und den key connot_load_files_into_article_body den Properties hinzugefügt

git-svn-id: https://svn.libreccm.org/ccm/trunk@3185 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-15 16:05:08 +00:00
parent 2665dc757c
commit 8dabe6b043
5 changed files with 7 additions and 2 deletions

View File

@ -1106,3 +1106,4 @@ cms.ui.authoring.invalid_file_type=Files with invalide type connot be loaded int
cms.ui.authoring.couldnt_convert_missing_inso=Could not convert to html format because interMedia INSO filter is not installed
cms.ui.authoring.couldnt_convert_inso_failed=Could not convert to html format because interMedia INSO filter conversion failed
cms.ui.authoring.html_file_missing_body_tags=The file (which should be type HTML) is missing the <body> or </body> tag.
cms.contenttypes.ui.cannot_load_files_into_article_body=Cannot load files of type {0} into the article body

View File

@ -1100,3 +1100,4 @@ cms.ui.authoring.invalid_file_type=Dateien mit ung\u00fcltigem Typ k\u00f6nnen n
cms.ui.authoring.couldnt_convert_missing_inso=Konnte nicht ins html Format umgewandelt werden, da der interMedia INSO Filter nicht installiert ist
cms.ui.authoring.couldnt_convert_inso_failed=Konnte nicht ins html Format umgewandelt werden, da die interMedia INSO Umwandlung fehlschlug
cms.ui.authoring.html_file_missing_body_tags=Der Datei (vom Type HTML) fehlt der <body> oder </body> Tag
cms.contenttypes.ui.cannot_load_files_into_article_body=Dateine vom Typ {0} k\u00f6nnen nicht in den Artikel-K\u00f6rper geladen werden

View File

@ -144,3 +144,4 @@ cms.ui.authoring.invalid_file_type=
cms.ui.authoring.couldnt_convert_missing_inso=
cms.ui.authoring.couldnt_convert_inso_failed=
cms.ui.authoring.html_file_missing_body_tags=
cms.contenttypes.ui.cannot_load_files_into_article_body=

View File

@ -616,3 +616,4 @@ cms.ui.authoring.invalid_file_type=Fichiers de type invalide connot \u00eatre ch
cms.ui.authoring.couldnt_convert_missing_inso=Impossible de convertir au format HTML car le filtre interMedia INSO n'est pas install\u00e9
cms.ui.authoring.couldnt_convert_inso_failed=Impossible de convertir au format HTML car la conversion de filtre interMedia INSO a \u00e9chou\u00e9
cms.ui.authoring.html_file_missing_body_tags=Le fichier (qui devrait \u00eatre de type HTML) est absent de la <body> ou </ body>
cms.contenttypes.ui.cannot_load_files_into_article_body=Impossible de charger les fichiers de type {0} dans le corps de l'article

View File

@ -233,8 +233,9 @@ public abstract class AbstractTextUploadForm
allowINSOConvert().booleanValue());
if (!validType) {
throw new FormProcessException("Cannot load " + "files of type " + mime.
getMimeType() + " into the article body.");
throw new FormProcessException(GlobalizationUtil.globalize(
"cms.contenttypes.ui.cannot_load_files_into_article_body", new Object[]{mime.
getMimeType()}));
} else {
boolean insoWorks = MimeTypeStatus.getMimeTypeStatus().
getInsoFilterWorks().intValue() == 1;