[UPDATE]
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-94f89814c4dfmaster
parent
5a45f4a54e
commit
91e2ca2bc5
|
|
@ -69,3 +69,4 @@ formbuilder.ui.cancel_msg=Submission Cancelled
|
||||||
formbuilder.ui.no_widgetLabel_found=Cannot find WidgetLabel for
|
formbuilder.ui.no_widgetLabel_found=Cannot find WidgetLabel for
|
||||||
formbuilder.ui.editors.cannot_find_form=Cannot find form
|
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_widget=Cannot find persistent widget {0}
|
||||||
|
formbuilder.ui.editors.cannot_find_persistent_process_listener=Cannot find persistent process listener {0}
|
||||||
|
|
|
||||||
|
|
@ -69,3 +69,4 @@ formbuilder.ui.cancel_msg=Bearbeitung abgebrochen
|
||||||
formbuilder.ui.no_widgetLabel_found=Finde kein Label f\u00fcr Widget
|
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_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_widget=Kann nicht das persistente Widget {0} finden
|
||||||
|
formbuilder.ui.editors.cannot_find_persistent_process_listener=Kann nicht den persistenten Prozess Listener {0} finden
|
||||||
|
|
|
||||||
|
|
@ -61,3 +61,4 @@ formbuilder.ui.cancel_msg=Submission Cancelled
|
||||||
formbuilder.ui.no_widgetLabel_found=Cannot find WidgetLabel for
|
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_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_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}
|
||||||
|
|
|
||||||
|
|
@ -157,7 +157,8 @@ public abstract class ProcessListenerForm extends PropertiesForm {
|
||||||
try {
|
try {
|
||||||
widget = getProcessListener(action);
|
widget = getProcessListener(action);
|
||||||
} catch (DataObjectNotFoundException ex) {
|
} 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);
|
initWidgets(e, widget);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue