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

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

View File

@ -71,3 +71,4 @@ 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} formbuilder.ui.editors.cannot_find_persistent_process_listener=Cannot find persistent process listener {0}
formbuilder.actions.cannot_sent_message=cannot send message formbuilder.actions.cannot_sent_message=cannot send message
formbuilder.ui.editors.cannot_find_option=Cannot find option

View File

@ -71,3 +71,4 @@ 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 formbuilder.ui.editors.cannot_find_persistent_process_listener=Kann nicht den persistenten Prozess Listener {0} finden
formbuilder.actions.cannot_sent_message=Kann die Nachricht nicht senden formbuilder.actions.cannot_sent_message=Kann die Nachricht nicht senden
formbuilder.ui.editors.cannot_find_option=Kann die Option nicht finden

View File

@ -63,3 +63,4 @@ 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} formbuilder.ui.editors.cannot_find_persistent_process_listener=Ne peut pas trouver processus persistant auditeur {0}
formbuilder.actions.cannot_sent_message=Ne peut pas envoyer le message formbuilder.actions.cannot_sent_message=Ne peut pas envoyer le message
formbuilder.ui.editors.cannot_find_option=Ne peut pas trouver l'option

View File

@ -200,7 +200,8 @@ public abstract class OptionEditor extends FormSection {
try { try {
option = new PersistentOption(id); option = new PersistentOption(id);
} catch (DataObjectNotFoundException ex) { } catch (DataObjectNotFoundException ex) {
throw new FormProcessException("cannot find option", ex); throw new FormProcessException(GlobalizationUtil.globalize(
"formbuilder.ui.editors.cannot_find_option"));
} }
} }