mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 21:13:23 +01:00
Fix confirmation dialog messages for move/copy mail
This commit is contained in:
parent
cfc56a6241
commit
6e96b74e5d
@ -1561,7 +1561,7 @@ app.classes.mail = AppJS.extend(
|
||||
{text: this.egw.lang("Yes"), id: "all", class: "ui-priority-primary", "default": true},
|
||||
{text: this.egw.lang("Cancel"), id:"cancel"}
|
||||
];
|
||||
var messageToDisplay = this.egw.lang("Do you really want to apply %1 to ALL messages in current view?",this.egw.lang(_action.id))+" ";
|
||||
var messageToDisplay = '';
|
||||
switch (_action.id)
|
||||
{
|
||||
case "unlabel":
|
||||
@ -1573,10 +1573,21 @@ app.classes.mail = AppJS.extend(
|
||||
case "flagged":
|
||||
case "read":
|
||||
case "undelete":
|
||||
messageToDisplay = this.egw.lang("Do you really want to toggle flag %1 for ALL messages in current view?",this.egw.lang(_action.id))+" ";
|
||||
messageToDisplay = this.egw.lang("Do you really want to toggle flag %1 for ALL messages in the current view?",this.egw.lang(_action.id))+" ";
|
||||
break;
|
||||
default:
|
||||
var type = null;
|
||||
if (_action.id.substr(0,4)=='move' || _action.id === "drop_move_mail")
|
||||
{
|
||||
type = 'Move';
|
||||
}
|
||||
if (_action.id.substr(0,4)=='copy' || _action.id === "drop_copy_mail")
|
||||
{
|
||||
type = 'Copy';
|
||||
}
|
||||
messageToDisplay = this.egw.lang("Do you really want to apply %1 to ALL messages in the current view?",this.egw.lang(type?type:_action.id))+" ";
|
||||
}
|
||||
return et2_dialog.show_dialog(function(_button_id, _value) {
|
||||
return et2_dialog.show_dialog(function(_button_id) {
|
||||
var rv = false;
|
||||
switch (_button_id)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user