summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Carter <dpc22@cam.ac.uk>2013-05-29 09:31:42 +0100
committerDavid Carter <dpc22@cam.ac.uk>2013-05-29 09:31:42 +0100
commit149f8a00cc51c87fef3afe2fbb51822a3582c583 (patch)
tree90ea2d4694e06f7290a473bf276a45d4b25923cc
parent52deb18d9646116114f9649c87ffc4f0bc378db1 (diff)
Change show_actual_foldernames to be show_real_foldernames.
Change requested by alec@alec.pl.
-rw-r--r--config/main.inc.php.dist2
-rw-r--r--program/include/rcmail.php6
-rw-r--r--program/localization/en_GB/labels.inc2
-rw-r--r--program/steps/settings/func.inc14
-rw-r--r--program/steps/settings/save_prefs.inc4
5 files changed, 14 insertions, 14 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 168702611..281cf4bbf 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -470,7 +470,7 @@ $rcmail_config['trash_mbox'] = 'Trash';
$rcmail_config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
// Disable localization of the four default folder names listed above
-$rcmail_config['show_actual_foldernames'] = false;
+$rcmail_config['show_real_foldernames'] = false;
// automatically create the above listed default folders on first login
$rcmail_config['create_default_folders'] = false;
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index 76edfab0b..a0bc03633 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -1326,7 +1326,7 @@ class rcmail extends rcube
$msgcounts = $this->storage->get_cache('messagecount');
$collapsed = $this->config->get('collapsed_folders');
- if ($this->config->get('show_actual_foldernames'))
+ if ($this->config->get('show_real_foldernames'))
$realnames = true;
$out = '';
@@ -1494,7 +1494,7 @@ class rcmail extends rcube
if ($count > 1) {
for ($i = 0; $i < $count; $i++) {
$folder = implode($delimiter, array_slice($path, 0, -$i));
- if (!$this->config->get('show_actual_foldernames') &&
+ if (!$this->config->get('show_real_foldernames') &&
($folder_class = $this->folder_classname($folder))) {
$name = implode($delimiter, array_slice($path, $count - $i));
return $this->gettext($folder_class) . $delimiter . rcube_charset::convert($name, 'UTF7-IMAP');
@@ -1503,7 +1503,7 @@ class rcmail extends rcube
}
}
- if (!$this->config->get('show_actual_foldernames') &&
+ if (!$this->config->get('show_real_foldernames') &&
($folder_class = $this->folder_classname($name))) {
return $this->gettext($folder_class);
}
diff --git a/program/localization/en_GB/labels.inc b/program/localization/en_GB/labels.inc
index 9052d2d4d..88e4cfd9c 100644
--- a/program/localization/en_GB/labels.inc
+++ b/program/localization/en_GB/labels.inc
@@ -37,7 +37,7 @@ $labels['drafts'] = 'Drafts';
$labels['sent'] = 'Sent';
$labels['trash'] = 'Deleted Items';
$labels['junk'] = 'Junk';
-$labels['show_actual_foldernames'] = 'Show actual names for special folders';
+$labels['show_real_foldernames'] = 'Show real names for special folders';
// message listing
$labels['subject'] = 'Subject';
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc
index 62857ac88..2cbfed16c 100644
--- a/program/steps/settings/func.inc
+++ b/program/steps/settings/func.inc
@@ -771,16 +771,16 @@ function rcmail_user_prefs($current=null)
);
- if (!isset($no_override['show_actual_foldernames'])) {
- $field_id = 'show_actual_foldernames';
- $input_show_actual_foldernames =
- new html_checkbox(array('name' => '_show_actual_foldernames',
+ if (!isset($no_override['show_real_foldernames'])) {
+ $field_id = 'show_real_foldernames';
+ $input_show_real_foldernames =
+ new html_checkbox(array('name' => '_show_real_foldernames',
'id' => $field_id, 'value' => 1));
- $blocks['main']['options']['show_actul_foldernames'] = array(
+ $blocks['main']['options']['show_real_foldernames'] = array(
'title' => html::label($field_id,
- Q(rcube_label('show_actual_foldernames'))),
- 'content' => $input_show_actual_foldernames->show($config['show_actual_foldernames']?1:0),
+ Q(rcube_label('show_real_foldernames'))),
+ 'content' => $input_show_real_foldernames->show($config['show_real_foldernames']?1:0),
);
}
// Configure special folders
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc
index b471489a5..caaf6466c 100644
--- a/program/steps/settings/save_prefs.inc
+++ b/program/steps/settings/save_prefs.inc
@@ -119,8 +119,8 @@ switch ($CURR_SECTION)
case 'folders':
$a_user_prefs = array(
- 'show_actual_foldernames' =>
- isset($_POST['_show_actual_foldernames']) ? TRUE : FALSE,
+ 'show_real_foldernames' =>
+ isset($_POST['_show_real_foldernames']) ? TRUE : FALSE,
'drafts_mbox' => get_input_value('_drafts_mbox', RCUBE_INPUT_POST, true),
'sent_mbox' => get_input_value('_sent_mbox', RCUBE_INPUT_POST, true),
'junk_mbox' => get_input_value('_junk_mbox', RCUBE_INPUT_POST, true),