Changeset 375 in subversion
- Timestamp:
- Nov 21, 2006 3:18:29 AM (7 years ago)
- Location:
- trunk/roundcubemail/program
- Files:
-
- 4 edited
-
js/app.js (modified) (1 diff)
-
js/list.js (modified) (2 diffs)
-
localization/en_US/messages.inc (modified) (1 diff)
-
steps/mail/func.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/js/app.js
r374 r375 1343 1343 // if there is a trash mailbox defined and we're not currently in it: 1344 1344 if (this.env.trash_mailbox && String(this.env.mailbox).toLowerCase()!=String(this.env.trash_mailbox).toLowerCase()) 1345 this.move_messages(this.env.trash_mailbox); 1345 // if shift was pressed delete it immediately 1346 if (this.message_list.shiftkey) 1347 { 1348 if (confirm(this.get_label('deletemessagesconfirm'))) 1349 this.permanently_remove_messages(); 1350 } 1351 else 1352 this.move_messages(this.env.trash_mailbox); 1346 1353 // if there is a trash mailbox defined but we *are* in it: 1347 1354 else if (this.env.trash_mailbox && String(this.env.mailbox).toLowerCase() == String(this.env.trash_mailbox).toLowerCase()) -
trunk/roundcubemail/program/js/list.js
r354 r375 33 33 this.selection = []; 34 34 35 this.shiftkey = false; 36 35 37 this.multiselect = false; 36 38 this.draggable = false; … … 505 507 return true; 506 508 509 this.shiftkey = e.shiftKey; 510 507 511 var keyCode = document.layers ? e.which : document.all ? event.keyCode : document.getElementById ? e.keyCode : 0; 508 512 var mod_key = rcube_event.get_modifier(e); -
trunk/roundcubemail/program/localization/en_US/messages.inc
r344 r375 69 69 $messages['deletecontactconfirm'] = 'Do you really want to delete the selected contact(s)?'; 70 70 71 $messages['deletemessagesconfirm'] = 'Do you really want to delete the selected message(s)?'; 72 71 73 $messages['deletefolderconfirm'] = 'Do you really want to delete this folder?'; 72 74 -
trunk/roundcubemail/program/steps/mail/func.inc
r370 r375 80 80 // add some labels to client 81 81 rcube_add_label('purgefolderconfirm'); 82 rcube_add_label('deletemessagesconfirm'); 82 83 83 84 // $mboxlist_start = rcube_timer();
Note: See TracChangeset
for help on using the changeset viewer.
