Changeset 9b3d7f74 in github
- Timestamp:
- Oct 3, 2008 9:09:25 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 2b58528
- Parents:
- 8962ec0
- Files:
-
- 5 edited
-
CHANGELOG (modified) (1 diff)
-
program/localization/en_US/labels.inc (modified) (1 diff)
-
program/localization/pl_PL/labels.inc (modified) (1 diff)
-
program/steps/settings/func.inc (modified) (2 diffs)
-
program/steps/settings/save_prefs.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rabdc589 r9b3d7f74 3 3 4 4 2008/10/03 (alec) 5 ---------- 5 6 - Add support for SJIS, GB2312, BIG5 in rc_detect_encoding() 6 7 - Fix vCard file encoding detection for non-UTF-8 strings (#1485410) 8 - Add 'skip_deleted' option in User Preferences (#1485445) 7 9 8 10 2008/10/02 (alec) -
program/localization/en_US/labels.inc
r56cf503 r9b3d7f74 279 279 $labels['readwhendeleted'] = 'Mark the message as read on delete'; 280 280 $labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; 281 $labels['skipdeleted'] = 'Do not show deleted messages'; 281 282 $labels['showinlineimages'] = 'Display attached images below the message'; 282 283 $labels['autosavedraft'] = 'Automatically save draft'; -
program/localization/pl_PL/labels.inc
r56cf503 r9b3d7f74 256 256 $labels['flagfordeletion'] = 'Oznacz wiadomoÅÄ do usuniÄcia zamiast jÄ 257 257 usuwaÄ'; 258 $labels['skipdeleted'] = 'Ukryj wiadomoÅci oznaczone do usuniÄcia'; 258 259 $labels['autosavedraft'] = 'Automatyczny zapis tworzonej wiadomoÅci'; 259 260 $labels['everynminutes'] = 'co $n minut'; -
program/steps/settings/func.inc
rffae15e5 r9b3d7f74 286 286 $table->add(null, $input_flagfordeletion->show($config['flag_for_deletion']?1:0)); 287 287 } 288 288 289 // don't show deleted messages 290 if (!isset($no_override['skip_deleted'])) { 291 $field_id = 'rcmfd_skip_deleted'; 292 $input_purge = new html_checkbox(array('name' => '_skip_deleted', 'id' => $field_id, 'value' => 1)); 293 294 $table->add('title', html::label($field_id, Q(rcube_label('skipdeleted')))); 295 $table->add(null, $input_purge->show($config['skip_deleted']?1:0)); 296 } 297 289 298 // Trash purging on logout 290 299 if (!isset($no_override['logout_purge'])) { … … 295 304 $table->add(null, $input_purge->show($config['logout_purge']?1:0)); 296 305 } 297 306 298 307 // INBOX compacting on logout 299 308 if (!isset($no_override['logout_expunge'])) { -
program/steps/settings/save_prefs.inc
rffae15e5 r9b3d7f74 32 32 'preview_pane' => isset($_POST['_preview_pane']) ? TRUE : FALSE, 33 33 'read_when_deleted' => isset($_POST['_read_when_deleted']) ? TRUE : FALSE, 34 'skip_deleted' => isset($_POST['_skip_deleted']) ? TRUE : FALSE, 34 35 'flag_for_deletion' => isset($_POST['_flag_for_deletion']) ? TRUE : FALSE, 35 36 'logout_purge' => isset($_POST['_logout_purge']) ? TRUE : FALSE,
Note: See TracChangeset
for help on using the changeset viewer.
