mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 21:41:59 +01:00
gui fixes
This commit is contained in:
parent
01357374ba
commit
0809b5a514
@ -37,6 +37,7 @@ server {
|
||||
rewrite /audit-helper.php /index.php?route=audit/helper;
|
||||
rewrite /message.php /index.php?route=message/view;
|
||||
rewrite /bulkrestore.php /index.php?route=message/bulkrestore;
|
||||
rewrite /bulkpdf.php /index.php?route=message/bulkpdf;
|
||||
rewrite /folders.php /index.php?route=folder/list&;
|
||||
rewrite /settings.php /index.php?route=user/settings;
|
||||
rewrite /login.php /index.php?route=login/login;
|
||||
|
@ -39,7 +39,7 @@ $_['text_branding_logo'] = "Branding logo";
|
||||
$_['text_branding_text'] = "Branding text";
|
||||
$_['text_branding_url'] = "Branding URL";
|
||||
$_['text_bulk_edit_selected_uids'] = "Bulk edit selected uids";
|
||||
$_['text_bulk_restore_selected_emails'] = "Bulk restore selected emails";
|
||||
$_['text_bulk_restore_selected_emails'] = "Bulk restore selected";
|
||||
$_['text_bulk_update_selected_uids'] = "Bulk update selected uids";
|
||||
|
||||
$_['text_cancel'] = "Cancel";
|
||||
@ -90,10 +90,10 @@ $_['text_dn_asterisk_means_skip_sync'] = "Asterisk (*) means this user entry wil
|
||||
$_['text_domain'] = "Domain";
|
||||
$_['text_domains'] = "Domain(s)";
|
||||
$_['text_domainname'] = "Domain name";
|
||||
$_['text_download_all_hits_as_eml'] = "Download all as EML";
|
||||
$_['text_download_selected_hits_as_pdf'] = "Download selected as PDF";
|
||||
$_['text_download_all_hits_as_eml'] = "Download all (EML)";
|
||||
$_['text_download_selected_hits_as_pdf'] = "Download selected (PDF)";
|
||||
$_['text_download_attachment2'] = "download attachment";
|
||||
$_['text_download_message'] = "Download message (EML)";
|
||||
$_['text_download_message'] = "Download (EML)";
|
||||
$_['text_download_message2'] = "download message";
|
||||
|
||||
$_['text_edit'] = "Edit";
|
||||
@ -286,7 +286,7 @@ $_['text_reset_counters'] = "Reset counters";
|
||||
$_['text_restore'] = "Restore";
|
||||
$_['text_restored'] = "Restored";
|
||||
$_['text_restore_message'] = "restore message";
|
||||
$_['text_restore_to_mailbox'] = "Restore message to mailbox";
|
||||
$_['text_restore_to_mailbox'] = "Restore to mailbox";
|
||||
$_['text_result'] = "Result";
|
||||
$_['text_retention_days'] = "Retention days";
|
||||
$_['text_retention_rules'] = "Retention rules";
|
||||
|
@ -144,7 +144,7 @@
|
||||
.sleek { margin:0; padding:0; }
|
||||
.with20margin{ margin-left:20%; margin-right:20%; }
|
||||
|
||||
#notesbox { position:absolute; top: 8px; right: 8px; }
|
||||
#notesbox { position:absolute; top: 3px; right: 3px; }
|
||||
.messageheader { margin-left: 5px; }
|
||||
.messagecontents { background-color:#fff; padding:8px; font-size:14px; font-family: "Trebuchet MS", Arial, Verdana; }
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
<?php if($message['has_journal'] == 1 && Registry::get('auditor_user') == 1 && SHOW_ENVELOPE_JOURNAL == 1) { ?>
|
||||
| <a class="messagelink" href="#" onclick="Piler.view_journal(<?php print $id; ?>);"><i class="icon-envelope"></i> <?php print $text_view_journal_envelope; ?></a>
|
||||
<?php } ?>
|
||||
| <a href="#" onclick="Piler.print_div('messageblock');"><i class="icon-print"></i> <?php print $text_print_message; ?></a>
|
||||
| <a class="messagelink" href="#" onclick="Piler.print_div('messageblock');"><i class="icon-print"></i> <?php print $text_print_message; ?></a>
|
||||
|
||||
<?php if(ENABLE_ON_THE_FLY_VERIFICATION == 0) {
|
||||
if ($message['verification'] == 1) { ?><?php print $text_verified_flag; ?> <i class="verified icon-ok-sign icon-large" title="<?php print $text_verified_flag; ?>"></i><?php } else { ?><?php print $text_unverified_flag; ?> <i class="unverified icon-remove-sign icon-large" title="<?php print $text_unverified_flag; ?>"></i><?php }
|
||||
|
@ -105,7 +105,9 @@
|
||||
<?php } else { ?> <?php } ?>
|
||||
<?php if(ENABLE_DOWNLOADING_ALL_SEARCH_HITS == 1) { ?>
|
||||
<button id="download_all_search_hits_as_eml" name="download_all_search_hits_as_eml" class="btn btn-custom btn-inverse" onclick="Piler.download_all_search_hits();"><?php print $text_download_all_hits_as_eml; ?></button>
|
||||
<button id="download_all_search_hits_as_pdf" name="download_all_search_hits_as_pdf" class="btn btn-custom btn-warning" onclick="Piler.download_selected_as_pdf(); return false;"><?php print $text_download_selected_hits_as_pdf; ?></button>
|
||||
<?php if(MOBILE_DEVICE == 0) { ?>
|
||||
<button id="download_all_search_hits_as_pdf" name="download_all_search_hits_as_pdf" class="btn btn-custom btn-warning" onclick="Piler.download_selected_as_pdf();"><?php print $text_download_selected_hits_as_pdf; ?></button>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
|
||||
<?php if(SMARTHOST || ENABLE_IMAP_AUTH == 1) { ?>
|
||||
|
Loading…
Reference in New Issue
Block a user