Collaborative Editor:

- Remove "Keep unsaved changes and close" option on close action
- Fix some of phrases
- Fix discard icon
This commit is contained in:
Hadi Nategh 2017-07-21 10:55:31 +02:00
parent 4deaf6c09a
commit 65eb26d7ea

View File

@ -161,9 +161,8 @@ app.classes.filemanager = app.classes.filemanager.extend({
if (_isLastMember) if (_isLastMember)
{ {
var buttons = [ var buttons = [
{"button_id": 3,"text": 'save and close', id: 'save', image: 'check' }, {"button_id": 2,"text": 'save and close', id: 'save', image: 'check' },
{"button_id": 2,"text": 'keep unsaved changes and leave', id: 'leave', image: 'close' }, {"button_id": 1,"text": 'discard unsaved changes', id: 'discard', image: 'discard' },
{"button_id": 1,"text": 'discard all unsaved changes', id: 'discard', image: 'delete' },
{"button_id": 0,"text": 'cancel', id: 'cancel', image: 'cancel', "default":true} {"button_id": 0,"text": 'cancel', id: 'cancel', image: 'cancel', "default":true}
]; ];
et2_dialog.show_dialog( et2_dialog.show_dialog(
@ -176,9 +175,6 @@ app.classes.filemanager = app.classes.filemanager.extend({
leave(); leave();
}); });
break; break;
case 'leave':
leave();
break;
case 'discard': case 'discard':
self.editor_discard(); self.editor_discard();
break; break;
@ -186,7 +182,7 @@ app.classes.filemanager = app.classes.filemanager.extend({
} }
}, },
egw.lang('You are the last one on this session. What would you like to do with all changes in this document?'), egw.lang('You are the last one on this session. What would you like to do with all unsaved changes in this document?'),
'Closing session', 'Closing session',
null, null,
buttons, buttons,
@ -558,7 +554,7 @@ app.classes.filemanager = app.classes.filemanager.extend({
{ {
var self = this; var self = this;
var buttons = [ var buttons = [
{"button_id": 1,"text": 'discard', id: 'discard', image: 'check' }, {"button_id": 1,"text": 'discard', id: 'discard', image: 'discard' },
{"button_id": 0,"text": 'cancel', id: 'cancel', image: 'cancel', "default":true} {"button_id": 0,"text": 'cancel', id: 'cancel', image: 'cancel', "default":true}
]; ];
et2_dialog.show_dialog( et2_dialog.show_dialog(
@ -572,7 +568,7 @@ app.classes.filemanager = app.classes.filemanager.extend({
}).sendRequest(); }).sendRequest();
} }
}, },
egw.lang('You are about to discard all modifications applied to this document by you and other participants. Be aware this will affect all participants and their changes on this document too.'), egw.lang('Are you sure that you want to discard all modifications applied to this document by you and other participants?'),
'Discard all changes', 'Discard all changes',
null, null,
buttons, buttons,