In der Klasse ccm-core/src/com/arsdigita/formbuilder/ui/editors/ProcessListenerForm.java die FormProcessException in der Zeile 160 umgebaut und den key formbuilder.ui.editors.cannot_find_persistent_process_listener den Properties hinzugefügt.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3241 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-18 21:09:18 +00:00
parent 5a45f4a54e
commit 91e2ca2bc5
4 changed files with 5 additions and 1 deletions

View File

@ -69,3 +69,4 @@ formbuilder.ui.cancel_msg=Submission Cancelled
formbuilder.ui.no_widgetLabel_found=Cannot find WidgetLabel for
formbuilder.ui.editors.cannot_find_form=Cannot find form
formbuilder.ui.editors.cannot_find_persistent_widget=Cannot find persistent widget {0}
formbuilder.ui.editors.cannot_find_persistent_process_listener=Cannot find persistent process listener {0}

View File

@ -69,3 +69,4 @@ formbuilder.ui.cancel_msg=Bearbeitung abgebrochen
formbuilder.ui.no_widgetLabel_found=Finde kein Label f\u00fcr Widget
formbuilder.ui.editors.cannot_find_form=Kann die Form nicht finden
formbuilder.ui.editors.cannot_find_persistent_widget=Kann nicht das persistente Widget {0} finden
formbuilder.ui.editors.cannot_find_persistent_process_listener=Kann nicht den persistenten Prozess Listener {0} finden

View File

@ -61,3 +61,4 @@ formbuilder.ui.cancel_msg=Submission Cancelled
formbuilder.ui.no_widgetLabel_found=Cannot find WidgetLabel for
formbuilder.ui.editors.cannot_find_form=Ne peut pas trouver la forme
formbuilder.ui.editors.cannot_find_persistent_widget=Ne peut pas trouver le widget persistente {0}
formbuilder.ui.editors.cannot_find_persistent_process_listener=Ne peut pas trouver processus persistant auditeur {0}

View File

@ -157,7 +157,8 @@ public abstract class ProcessListenerForm extends PropertiesForm {
try {
widget = getProcessListener(action);
} catch (DataObjectNotFoundException ex) {
throw new FormProcessException("cannot find persistent process listener " + action, ex);
throw new FormProcessException(GlobalizationUtil.globalize(
"formbuilder.ui.editors.cannot_find_persistent_process_listener", new Object[]{action});
}
initWidgets(e, widget);
}