Changeset 2616 in subversion
- Timestamp:
- Jun 5, 2009 12:24:10 PM (4 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 8 edited
-
config/main.inc.php.dist (modified) (1 diff)
-
program/localization/en_GB/labels.inc (modified) (1 diff)
-
program/localization/en_GB/messages.inc (modified) (1 diff)
-
program/localization/en_US/labels.inc (modified) (1 diff)
-
program/localization/en_US/messages.inc (modified) (1 diff)
-
program/localization/pl_PL/labels.inc (modified) (1 diff)
-
program/localization/pl_PL/messages.inc (modified) (1 diff)
-
program/steps/mail/func.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/config/main.inc.php.dist
r2537 r2616 414 414 $rcmail_config['read_when_deleted'] = TRUE; 415 415 416 // When a Trash folder is not present and a message is deleted, flag 417 // the message for deletion rather than deleting it immediately. Setting this to 418 // false causes deleted messages to be permanantly removed if there is no Trash folder 416 // Set to TRUE to newer delete messages immediately 417 // Use 'Purge' to remove messages marked as deleted 419 418 $rcmail_config['flag_for_deletion'] = FALSE; 420 419 -
trunk/roundcubemail/program/localization/en_GB/labels.inc
r2581 r2616 123 123 $labels['flagged'] = 'Flagged'; 124 124 $labels['unanswered'] = 'Unanswered'; 125 $labels['deleted'] = 'Deleted'; 125 126 $labels['invert'] = 'Invert'; 126 127 $labels['filter'] = 'Filter'; -
trunk/roundcubemail/program/localization/en_GB/messages.inc
r2493 r2616 47 47 $messages['errormoving'] = 'Could not move the message'; 48 48 $messages['errordeleting'] = 'Could not delete the message'; 49 $messages['errormarking'] = 'Could not mark the message'; 49 50 $messages['deletecontactconfirm'] = 'Do you really want to delete the selected contact(s)?'; 50 51 $messages['deletemessagesconfirm'] = 'Do you really want to delete the selected message(s)?'; -
trunk/roundcubemail/program/localization/en_US/labels.inc
r2581 r2616 151 151 $labels['flagged'] = 'Flagged'; 152 152 $labels['unanswered'] = 'Unanswered'; 153 $labels['deleted'] = 'Deleted'; 153 154 $labels['invert'] = 'Invert'; 154 155 $labels['filter'] = 'Filter'; -
trunk/roundcubemail/program/localization/en_US/messages.inc
r2493 r2616 47 47 $messages['errormoving'] = 'Could not move the message'; 48 48 $messages['errordeleting'] = 'Could not delete the message'; 49 $messages['errormarking'] = 'Could not mark the message'; 49 50 $messages['deletecontactconfirm'] = 'Do you really want to delete the selected contact(s)?'; 50 51 $messages['deletemessagesconfirm'] = 'Do you really want to delete the selected message(s)?'; -
trunk/roundcubemail/program/localization/pl_PL/labels.inc
r2581 r2616 145 145 $labels['flagged'] = 'Oznaczone'; 146 146 $labels['unanswered'] = 'Bez odpowiedzi'; 147 $labels['deleted'] = 'UsuniÄte'; 147 148 $labels['invert'] = 'OdwróÄ'; 148 149 $labels['filter'] = 'Filtr'; -
trunk/roundcubemail/program/localization/pl_PL/messages.inc
r2512 r2616 65 65 $messages['errordeleting'] = 'Nie moÅŒna usunÄ 66 66 Ä wiadomoÅci!'; 67 $messages['errormarking'] = 'Nie moÅŒna oznaczyÄ wiadomoÅci!'; 67 68 $messages['deletecontactconfirm'] = 'Czy na pewno chcesz usunÄ 68 69 Ä wybrane kontakty?'; -
trunk/roundcubemail/program/steps/mail/func.inc
r2615 r2616 1447 1447 function rcmail_search_filter($attrib) 1448 1448 { 1449 global $OUTPUT ;1449 global $OUTPUT, $CONFIG; 1450 1450 1451 1451 if (!strlen($attrib['id'])) … … 1467 1467 $select_filter->add(rcube_label('flagged'), 'FLAGGED'); 1468 1468 $select_filter->add(rcube_label('unanswered'), 'UNANSWERED'); 1469 if (!$CONFIG['skip_deleted']) 1470 $select_filter->add(rcube_label('deleted'), 'DELETED'); 1469 1471 1470 1472 $out = $select_filter->show($_SESSION['search_filter']);
Note: See TracChangeset
for help on using the changeset viewer.
