[gen] Ref field improved.
This commit is contained in:
parent
b9bfee9615
commit
977cd0a225
|
@ -31,7 +31,7 @@ class Action(Field):
|
||||||
label=_(field.labelId)"
|
label=_(field.labelId)"
|
||||||
id=":formId" action=":ztool.absolute_url() + '/do'">
|
id=":formId" action=":ztool.absolute_url() + '/do'">
|
||||||
<input type="hidden" name="action" value="ExecuteAppyAction"/>
|
<input type="hidden" name="action" value="ExecuteAppyAction"/>
|
||||||
<input type="hidden" name="objectUid" value=":zobj.UID()"/>
|
<input type="hidden" name="objectUid" value=":zobj.id"/>
|
||||||
<input type="hidden" name="fieldName" value=":name"/>
|
<input type="hidden" name="fieldName" value=":name"/>
|
||||||
<input if="field.confirm" type="button" class="button"
|
<input if="field.confirm" type="button" class="button"
|
||||||
var="labelConfirm=_(field.labelId + '_confirm')"
|
var="labelConfirm=_(field.labelId + '_confirm')"
|
||||||
|
|
|
@ -978,6 +978,7 @@ class Ref(Field):
|
||||||
unlink_many, delete_many).'''
|
unlink_many, delete_many).'''
|
||||||
action = rq['linkAction']
|
action = rq['linkAction']
|
||||||
tool = obj.getTool()
|
tool = obj.getTool()
|
||||||
|
msg = None
|
||||||
if not action.endswith('_many'):
|
if not action.endswith('_many'):
|
||||||
# "link" or "unlink"
|
# "link" or "unlink"
|
||||||
tied = tool.getObject(rq['targetUid'])
|
tied = tool.getObject(rq['targetUid'])
|
||||||
|
@ -1012,23 +1013,25 @@ class Ref(Field):
|
||||||
# Collect this object
|
# Collect this object
|
||||||
target = not isObj and tool.getObject(value) or value.o
|
target = not isObj and tool.getObject(value) or value.o
|
||||||
targets.append(target)
|
targets.append(target)
|
||||||
# Perform the action on every target. Count the number of failed
|
if not targets:
|
||||||
# operations.
|
msg = obj.translate('action_null')
|
||||||
mustDelete = action == 'delete_many'
|
else:
|
||||||
failed = 0
|
# Perform the action on every target. Count the number of failed
|
||||||
for target in targets:
|
# operations.
|
||||||
if mustDelete:
|
failed = 0
|
||||||
# Delete
|
mustDelete = action == 'delete_many'
|
||||||
if target.mayDelete(): target.delete()
|
for target in targets:
|
||||||
else: failed += 1
|
if mustDelete:
|
||||||
else:
|
# Delete
|
||||||
# Link or unlink
|
if target.mayDelete(): target.delete()
|
||||||
exec 'self.%sObject(obj, target)' % action.split('_')[0]
|
else: failed += 1
|
||||||
|
else:
|
||||||
|
# Link or unlink
|
||||||
|
exec 'self.%sObject(obj, target)' % action.split('_')[0]
|
||||||
|
if failed:
|
||||||
|
msg = obj.translate('action_partial', mapping={'nb':failed})
|
||||||
urlBack = obj.getUrl(rq['HTTP_REFERER'])
|
urlBack = obj.getUrl(rq['HTTP_REFERER'])
|
||||||
if not failed:
|
if not msg: msg = obj.translate('action_done')
|
||||||
msg = obj.translate('action_done')
|
|
||||||
else:
|
|
||||||
msg = obj.translate('action_partial', mapping={'nb':failed})
|
|
||||||
obj.say(msg)
|
obj.say(msg)
|
||||||
tool.goto(urlBack)
|
tool.goto(urlBack)
|
||||||
|
|
||||||
|
|
|
@ -1175,7 +1175,7 @@ class BaseMixin:
|
||||||
if not msg:
|
if not msg:
|
||||||
# Use the default i18n messages
|
# Use the default i18n messages
|
||||||
suffix = 'ko'
|
suffix = 'ko'
|
||||||
if successfull: suffix = 'ok'
|
if successfull: suffix = 'done'
|
||||||
msg = self.translate('action_%s' % suffix)
|
msg = self.translate('action_%s' % suffix)
|
||||||
if (resultType == 'computation') or not successfull:
|
if (resultType == 'computation') or not successfull:
|
||||||
self.say(msg)
|
self.say(msg)
|
||||||
|
|
|
@ -43,6 +43,10 @@ msgstr ""
|
||||||
msgid "appy_title"
|
msgid "appy_title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "Ok"
|
||||||
|
msgid "appy_ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Data change"
|
#. Default: "Data change"
|
||||||
msgid "data_change"
|
msgid "data_change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -91,14 +95,6 @@ msgstr ""
|
||||||
msgid "selected_objects"
|
msgid "selected_objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "The action has been successfully executed."
|
|
||||||
msgid "action_ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Default: "A problem occurred while executing the action."
|
|
||||||
msgid "action_ko"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Default: "Move up"
|
#. Default: "Move up"
|
||||||
msgid "move_up"
|
msgid "move_up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -227,10 +223,18 @@ msgstr ""
|
||||||
msgid "action_done"
|
msgid "action_done"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "A problem occurred while executing the action."
|
||||||
|
msgid "action_ko"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Action could not be performed on ${nb} element(s)."
|
#. Default: "Action could not be performed on ${nb} element(s)."
|
||||||
msgid "action_partial"
|
msgid "action_partial"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "Action had no effect."
|
||||||
|
msgid "action_null"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Go to top"
|
#. Default: "Go to top"
|
||||||
msgid "goto_first"
|
msgid "goto_first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
20
gen/tr/ar.po
20
gen/tr/ar.po
|
@ -43,6 +43,10 @@ msgstr ""
|
||||||
msgid "appy_title"
|
msgid "appy_title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "Ok"
|
||||||
|
msgid "appy_ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Data change"
|
#. Default: "Data change"
|
||||||
msgid "data_change"
|
msgid "data_change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -91,14 +95,6 @@ msgstr ""
|
||||||
msgid "selected_objects"
|
msgid "selected_objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "The action has been successfully executed."
|
|
||||||
msgid "action_ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Default: "A problem occurred while executing the action."
|
|
||||||
msgid "action_ko"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Default: "Move up"
|
#. Default: "Move up"
|
||||||
msgid "move_up"
|
msgid "move_up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -227,10 +223,18 @@ msgstr ""
|
||||||
msgid "action_done"
|
msgid "action_done"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "A problem occurred while executing the action."
|
||||||
|
msgid "action_ko"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Action could not be performed on ${nb} element(s)."
|
#. Default: "Action could not be performed on ${nb} element(s)."
|
||||||
msgid "action_partial"
|
msgid "action_partial"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "Action had no effect."
|
||||||
|
msgid "action_null"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Go to top"
|
#. Default: "Go to top"
|
||||||
msgid "goto_first"
|
msgid "goto_first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
22
gen/tr/de.po
22
gen/tr/de.po
|
@ -43,6 +43,10 @@ msgstr ""
|
||||||
msgid "appy_title"
|
msgid "appy_title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
|
#. Default: "Ok"
|
||||||
|
msgid "appy_ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Data change"
|
#. Default: "Data change"
|
||||||
msgid "data_change"
|
msgid "data_change"
|
||||||
msgstr "Änderung der Angaben"
|
msgstr "Änderung der Angaben"
|
||||||
|
@ -91,14 +95,6 @@ msgstr ""
|
||||||
msgid "selected_objects"
|
msgid "selected_objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "The action has been successfully executed."
|
|
||||||
msgid "action_ok"
|
|
||||||
msgstr "Der Auftrag wird ausgeführt."
|
|
||||||
|
|
||||||
#. Default: "A problem occurred while executing the action."
|
|
||||||
msgid "action_ko"
|
|
||||||
msgstr "Ein Problem ist aufgetreten."
|
|
||||||
|
|
||||||
#. Default: "Move up"
|
#. Default: "Move up"
|
||||||
msgid "move_up"
|
msgid "move_up"
|
||||||
msgstr "Nach oben verschieben"
|
msgstr "Nach oben verschieben"
|
||||||
|
@ -225,12 +221,20 @@ msgstr ""
|
||||||
|
|
||||||
#. Default: "The action has been performed."
|
#. Default: "The action has been performed."
|
||||||
msgid "action_done"
|
msgid "action_done"
|
||||||
msgstr ""
|
msgstr "Der Auftrag wird ausgeführt."
|
||||||
|
|
||||||
|
#. Default: "A problem occurred while executing the action."
|
||||||
|
msgid "action_ko"
|
||||||
|
msgstr "Ein Problem ist aufgetreten."
|
||||||
|
|
||||||
#. Default: "Action could not be performed on ${nb} element(s)."
|
#. Default: "Action could not be performed on ${nb} element(s)."
|
||||||
msgid "action_partial"
|
msgid "action_partial"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "Action had no effect."
|
||||||
|
msgid "action_null"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Go to top"
|
#. Default: "Go to top"
|
||||||
msgid "goto_first"
|
msgid "goto_first"
|
||||||
msgstr "Zurück zum Anfang"
|
msgstr "Zurück zum Anfang"
|
||||||
|
|
26
gen/tr/en.po
26
gen/tr/en.po
|
@ -44,6 +44,10 @@ msgstr "Owner"
|
||||||
msgid "appy_title"
|
msgid "appy_title"
|
||||||
msgstr "Title"
|
msgstr "Title"
|
||||||
|
|
||||||
|
#. Default: "Ok"
|
||||||
|
msgid "appy_ok"
|
||||||
|
msgstr "Ok"
|
||||||
|
|
||||||
#. Default: "Data change"
|
#. Default: "Data change"
|
||||||
msgid "data_change"
|
msgid "data_change"
|
||||||
msgstr "Data change"
|
msgstr "Data change"
|
||||||
|
@ -92,14 +96,6 @@ msgstr "Selectable elements"
|
||||||
msgid "selected_objects"
|
msgid "selected_objects"
|
||||||
msgstr "Inserted elements"
|
msgstr "Inserted elements"
|
||||||
|
|
||||||
#. Default: "The action has been successfully executed."
|
|
||||||
msgid "action_ok"
|
|
||||||
msgstr "The action has been successfully executed."
|
|
||||||
|
|
||||||
#. Default: "A problem occurred while executing the action."
|
|
||||||
msgid "action_ko"
|
|
||||||
msgstr "A problem occurred while executing the action."
|
|
||||||
|
|
||||||
#. Default: "Move up"
|
#. Default: "Move up"
|
||||||
msgid "move_up"
|
msgid "move_up"
|
||||||
msgstr "Move up"
|
msgstr "Move up"
|
||||||
|
@ -202,7 +198,7 @@ msgstr "Unlink"
|
||||||
|
|
||||||
#. Default: "Remove selection"
|
#. Default: "Remove selection"
|
||||||
msgid "object_unlink_many"
|
msgid "object_unlink_many"
|
||||||
msgstr ""
|
msgstr "Remove selection"
|
||||||
|
|
||||||
#. Default: "Insert"
|
#. Default: "Insert"
|
||||||
msgid "object_link"
|
msgid "object_link"
|
||||||
|
@ -222,16 +218,24 @@ msgstr "Unlock"
|
||||||
|
|
||||||
#. Default: "Are you sure?"
|
#. Default: "Are you sure?"
|
||||||
msgid "action_confirm"
|
msgid "action_confirm"
|
||||||
msgstr ""
|
msgstr "Are you sure?"
|
||||||
|
|
||||||
#. Default: "The action has been performed."
|
#. Default: "The action has been performed."
|
||||||
msgid "action_done"
|
msgid "action_done"
|
||||||
msgstr ""
|
msgstr "The action has been performed."
|
||||||
|
|
||||||
|
#. Default: "A problem occurred while executing the action."
|
||||||
|
msgid "action_ko"
|
||||||
|
msgstr "A problem occurred while executing the action."
|
||||||
|
|
||||||
#. Default: "Action could not be performed on ${nb} element(s)."
|
#. Default: "Action could not be performed on ${nb} element(s)."
|
||||||
msgid "action_partial"
|
msgid "action_partial"
|
||||||
msgstr "Action could not be performed on ${nb} element(s)."
|
msgstr "Action could not be performed on ${nb} element(s)."
|
||||||
|
|
||||||
|
#. Default: "Action had no effect."
|
||||||
|
msgid "action_null"
|
||||||
|
msgstr "Action had no effect."
|
||||||
|
|
||||||
#. Default: "Go to top"
|
#. Default: "Go to top"
|
||||||
msgid "goto_first"
|
msgid "goto_first"
|
||||||
msgstr "Go to top"
|
msgstr "Go to top"
|
||||||
|
|
22
gen/tr/es.po
22
gen/tr/es.po
|
@ -43,6 +43,10 @@ msgstr ""
|
||||||
msgid "appy_title"
|
msgid "appy_title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
|
#. Default: "Ok"
|
||||||
|
msgid "appy_ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Data change"
|
#. Default: "Data change"
|
||||||
msgid "data_change"
|
msgid "data_change"
|
||||||
msgstr "Cambio de datos"
|
msgstr "Cambio de datos"
|
||||||
|
@ -91,14 +95,6 @@ msgstr ""
|
||||||
msgid "selected_objects"
|
msgid "selected_objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "The action has been successfully executed."
|
|
||||||
msgid "action_ok"
|
|
||||||
msgstr "La acción ha sido efectuada."
|
|
||||||
|
|
||||||
#. Default: "A problem occurred while executing the action."
|
|
||||||
msgid "action_ko"
|
|
||||||
msgstr "Ha surgido un problema."
|
|
||||||
|
|
||||||
#. Default: "Move up"
|
#. Default: "Move up"
|
||||||
msgid "move_up"
|
msgid "move_up"
|
||||||
msgstr "Mueva hacia arriba"
|
msgstr "Mueva hacia arriba"
|
||||||
|
@ -225,12 +221,20 @@ msgstr "¿Está seguro?"
|
||||||
|
|
||||||
#. Default: "The action has been performed."
|
#. Default: "The action has been performed."
|
||||||
msgid "action_done"
|
msgid "action_done"
|
||||||
msgstr ""
|
msgstr "La acción ha sido efectuada."
|
||||||
|
|
||||||
|
#. Default: "A problem occurred while executing the action."
|
||||||
|
msgid "action_ko"
|
||||||
|
msgstr "Ha surgido un problema."
|
||||||
|
|
||||||
#. Default: "Action could not be performed on ${nb} element(s)."
|
#. Default: "Action could not be performed on ${nb} element(s)."
|
||||||
msgid "action_partial"
|
msgid "action_partial"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "Action had no effect."
|
||||||
|
msgid "action_null"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Go to top"
|
#. Default: "Go to top"
|
||||||
msgid "goto_first"
|
msgid "goto_first"
|
||||||
msgstr "Ir al inicio"
|
msgstr "Ir al inicio"
|
||||||
|
|
20
gen/tr/fr.po
20
gen/tr/fr.po
|
@ -44,6 +44,10 @@ msgstr "Propriétaire"
|
||||||
msgid "appy_title"
|
msgid "appy_title"
|
||||||
msgstr "Titre"
|
msgstr "Titre"
|
||||||
|
|
||||||
|
#. Default: "Ok"
|
||||||
|
msgid "appy_ok"
|
||||||
|
msgstr "Ok"
|
||||||
|
|
||||||
#. Default: "Data change"
|
#. Default: "Data change"
|
||||||
msgid "data_change"
|
msgid "data_change"
|
||||||
msgstr "Changement de données"
|
msgstr "Changement de données"
|
||||||
|
@ -92,14 +96,6 @@ msgstr "Éléments sélectionnables"
|
||||||
msgid "selected_objects"
|
msgid "selected_objects"
|
||||||
msgstr "Éléments insérés"
|
msgstr "Éléments insérés"
|
||||||
|
|
||||||
#. Default: "The action has been successfully executed."
|
|
||||||
msgid "action_ok"
|
|
||||||
msgstr "L'action a été effectuée."
|
|
||||||
|
|
||||||
#. Default: "A problem occurred while executing the action."
|
|
||||||
msgid "action_ko"
|
|
||||||
msgstr "Un problème est survenu."
|
|
||||||
|
|
||||||
#. Default: "Move up"
|
#. Default: "Move up"
|
||||||
msgid "move_up"
|
msgid "move_up"
|
||||||
msgstr "Déplacer vers le haut"
|
msgstr "Déplacer vers le haut"
|
||||||
|
@ -228,10 +224,18 @@ msgstr "Êtes-vous sûr?"
|
||||||
msgid "action_done"
|
msgid "action_done"
|
||||||
msgstr "L'action a été réalisée."
|
msgstr "L'action a été réalisée."
|
||||||
|
|
||||||
|
#. Default: "A problem occurred while executing the action."
|
||||||
|
msgid "action_ko"
|
||||||
|
msgstr "Un problème est survenu."
|
||||||
|
|
||||||
#. Default: "Action could not be performed on ${nb} element(s)."
|
#. Default: "Action could not be performed on ${nb} element(s)."
|
||||||
msgid "action_partial"
|
msgid "action_partial"
|
||||||
msgstr "L'action n'a pu être réalisée pour ${nb} élément(s)."
|
msgstr "L'action n'a pu être réalisée pour ${nb} élément(s)."
|
||||||
|
|
||||||
|
#. Default: "Action had no effect."
|
||||||
|
msgid "action_null"
|
||||||
|
msgstr "L'action n'a eu aucun effet."
|
||||||
|
|
||||||
#. Default: "Go to top"
|
#. Default: "Go to top"
|
||||||
msgid "goto_first"
|
msgid "goto_first"
|
||||||
msgstr "Aller au début"
|
msgstr "Aller au début"
|
||||||
|
|
22
gen/tr/it.po
22
gen/tr/it.po
|
@ -43,6 +43,10 @@ msgstr ""
|
||||||
msgid "appy_title"
|
msgid "appy_title"
|
||||||
msgstr "Qualifica"
|
msgstr "Qualifica"
|
||||||
|
|
||||||
|
#. Default: "Ok"
|
||||||
|
msgid "appy_ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Data change"
|
#. Default: "Data change"
|
||||||
msgid "data_change"
|
msgid "data_change"
|
||||||
msgstr "Revisione dati"
|
msgstr "Revisione dati"
|
||||||
|
@ -91,14 +95,6 @@ msgstr ""
|
||||||
msgid "selected_objects"
|
msgid "selected_objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "The action has been successfully executed."
|
|
||||||
msgid "action_ok"
|
|
||||||
msgstr "L'operazione è stata eseguita con successo"
|
|
||||||
|
|
||||||
#. Default: "A problem occurred while executing the action."
|
|
||||||
msgid "action_ko"
|
|
||||||
msgstr "Si è manifestato un problema"
|
|
||||||
|
|
||||||
#. Default: "Move up"
|
#. Default: "Move up"
|
||||||
msgid "move_up"
|
msgid "move_up"
|
||||||
msgstr "Su"
|
msgstr "Su"
|
||||||
|
@ -225,12 +221,20 @@ msgstr "È sicuro?"
|
||||||
|
|
||||||
#. Default: "The action has been performed."
|
#. Default: "The action has been performed."
|
||||||
msgid "action_done"
|
msgid "action_done"
|
||||||
msgstr ""
|
msgstr "L'operazione è stata eseguita con successo"
|
||||||
|
|
||||||
|
#. Default: "A problem occurred while executing the action."
|
||||||
|
msgid "action_ko"
|
||||||
|
msgstr "Si è manifestato un problema"
|
||||||
|
|
||||||
#. Default: "Action could not be performed on ${nb} element(s)."
|
#. Default: "Action could not be performed on ${nb} element(s)."
|
||||||
msgid "action_partial"
|
msgid "action_partial"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "Action had no effect."
|
||||||
|
msgid "action_null"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Go to top"
|
#. Default: "Go to top"
|
||||||
msgid "goto_first"
|
msgid "goto_first"
|
||||||
msgstr "Andare all'inizio"
|
msgstr "Andare all'inizio"
|
||||||
|
|
22
gen/tr/nl.po
22
gen/tr/nl.po
|
@ -43,6 +43,10 @@ msgstr "Eigenaar"
|
||||||
msgid "appy_title"
|
msgid "appy_title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
|
#. Default: "Ok"
|
||||||
|
msgid "appy_ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Data change"
|
#. Default: "Data change"
|
||||||
msgid "data_change"
|
msgid "data_change"
|
||||||
msgstr "Wijziging van de gegevens"
|
msgstr "Wijziging van de gegevens"
|
||||||
|
@ -91,14 +95,6 @@ msgstr ""
|
||||||
msgid "selected_objects"
|
msgid "selected_objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "The action has been successfully executed."
|
|
||||||
msgid "action_ok"
|
|
||||||
msgstr "De opdracht werd uitgevoerd."
|
|
||||||
|
|
||||||
#. Default: "A problem occurred while executing the action."
|
|
||||||
msgid "action_ko"
|
|
||||||
msgstr "Er heeft zich een probleem voorgedaan."
|
|
||||||
|
|
||||||
#. Default: "Move up"
|
#. Default: "Move up"
|
||||||
msgid "move_up"
|
msgid "move_up"
|
||||||
msgstr "Verplaats naar boven"
|
msgstr "Verplaats naar boven"
|
||||||
|
@ -225,12 +221,20 @@ msgstr ""
|
||||||
|
|
||||||
#. Default: "The action has been performed."
|
#. Default: "The action has been performed."
|
||||||
msgid "action_done"
|
msgid "action_done"
|
||||||
msgstr ""
|
msgstr "De opdracht werd uitgevoerd."
|
||||||
|
|
||||||
|
#. Default: "A problem occurred while executing the action."
|
||||||
|
msgid "action_ko"
|
||||||
|
msgstr "Er heeft zich een probleem voorgedaan."
|
||||||
|
|
||||||
#. Default: "Action could not be performed on ${nb} element(s)."
|
#. Default: "Action could not be performed on ${nb} element(s)."
|
||||||
msgid "action_partial"
|
msgid "action_partial"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. Default: "Action had no effect."
|
||||||
|
msgid "action_null"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Default: "Go to top"
|
#. Default: "Go to top"
|
||||||
msgid "goto_first"
|
msgid "goto_first"
|
||||||
msgstr "Ga naar het begin"
|
msgstr "Ga naar het begin"
|
||||||
|
|
|
@ -549,6 +549,11 @@ function onLinkMany(action, id) {
|
||||||
for (var uid in statuses) uids += uid + ',';
|
for (var uid in statuses) uids += uid + ',';
|
||||||
// Get the array semantics
|
// Get the array semantics
|
||||||
var semantics = node['_appy_' + elems[2] + '_sem'];
|
var semantics = node['_appy_' + elems[2] + '_sem'];
|
||||||
|
// Show an error messagge if non element is selected.
|
||||||
|
if ((semantics == 'checked') && (Object.keys(statuses).length == 0)) {
|
||||||
|
openPopup('alertPopup', no_elem_selected);
|
||||||
|
return;
|
||||||
|
}
|
||||||
// Fill the form and ask for a confirmation
|
// Fill the form and ask for a confirmation
|
||||||
f = document.getElementById('linkForm');
|
f = document.getElementById('linkForm');
|
||||||
f.linkAction.value = action + '_many';
|
f.linkAction.value = action + '_many';
|
||||||
|
@ -666,7 +671,8 @@ function protectAppyForm() {
|
||||||
function openPopup(popupId, msg) {
|
function openPopup(popupId, msg) {
|
||||||
// Put the message into the popup
|
// Put the message into the popup
|
||||||
if (msg) {
|
if (msg) {
|
||||||
var confirmElem = document.getElementById('appyConfirmText');
|
var msgHook = (popupId == 'alertPopup')? 'appyAlertText': 'appyConfirmText';
|
||||||
|
var confirmElem = document.getElementById(msgHook);
|
||||||
confirmElem.innerHTML = msg;
|
confirmElem.innerHTML = msg;
|
||||||
}
|
}
|
||||||
// Open the popup
|
// Open the popup
|
||||||
|
|
|
@ -156,6 +156,16 @@ class AbstractWrapper(object):
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Popup for displaying an error message (~JS alert()) -->
|
||||||
|
<div id="alertPopup" class="popup">
|
||||||
|
<img src=":url('warningBig')" align=":dleft" style="margin-right: 10px"/>
|
||||||
|
<p id="appyAlertText" style="margin-bottom: 15px"></p>
|
||||||
|
<div align="center">
|
||||||
|
<input type="button" onclick="closePopup('alertPopup')"
|
||||||
|
value=":_('appy_ok')"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<table class="main" align="center" cellpadding="0">
|
<table class="main" align="center" cellpadding="0">
|
||||||
<tr class="top">
|
<tr class="top">
|
||||||
<!-- Top banner -->
|
<!-- Top banner -->
|
||||||
|
|
Loading…
Reference in a new issue