diff --git a/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources.properties b/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources.properties index df2ba551f..86458d0c5 100755 --- a/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources.properties +++ b/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources.properties @@ -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} diff --git a/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources_de.properties b/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources_de.properties index d8286af41..a85fec0f5 100644 --- a/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources_de.properties +++ b/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources_de.properties @@ -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 diff --git a/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources_fr.properties b/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources_fr.properties index 48a0cf36a..317e96072 100755 --- a/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources_fr.properties +++ b/ccm-core/src/com/arsdigita/formbuilder/FormbuilderResources_fr.properties @@ -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} diff --git a/ccm-core/src/com/arsdigita/formbuilder/ui/editors/ProcessListenerForm.java b/ccm-core/src/com/arsdigita/formbuilder/ui/editors/ProcessListenerForm.java index 6e6f3acce..7c884c6fe 100755 --- a/ccm-core/src/com/arsdigita/formbuilder/ui/editors/ProcessListenerForm.java +++ b/ccm-core/src/com/arsdigita/formbuilder/ui/editors/ProcessListenerForm.java @@ -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); }