diff options
| -rw-r--r-- | inbox_settings.php | 3 | ||||
| -rw-r--r-- | localization/en_US.inc | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/inbox_settings.php b/inbox_settings.php index d89cf7e..55067cf 100644 --- a/inbox_settings.php +++ b/inbox_settings.php @@ -79,6 +79,9 @@ class inbox_settings extends rcube_plugin { '%sa' => $fwd_addr ]); } + + $this->rcmail->output->command( + 'display_message', $this->gettext('settings_saved'), 'notice'); } function render_settings_ui() { diff --git a/localization/en_US.inc b/localization/en_US.inc index 118dbc4..e92e1d0 100644 --- a/localization/en_US.inc +++ b/localization/en_US.inc @@ -6,6 +6,7 @@ $labels['encrypt_inbox'] = 'Encrypt incoming mail to my inbox'; $labels['forwarding'] = 'Forwarding'; $labels['fwd_addr'] = 'Forward mail to this address'; $labels['inbox_keys'] = 'Encryption Keys'; +$labels['settings_saved'] = 'Inbox settings saved'; $labels['no_query'] = 'One or more database queries are not yet configured'; $labels['no_db'] = 'Failed to connect to the database'; $labels['sql_error'] = 'Encountered an error while performing the operation; please check your SQL syntax and database DSN'; |
