summaryrefslogtreecommitdiff
path: root/program/steps/settings
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2006-11-21 10:09:04 +0000
committersvncommit <devs@roundcube.net>2006-11-21 10:09:04 +0000
commitb6677bf9cf2f0bba267c1c1196bea48d78e80fdc (patch)
tree2f4f37d0c2a5240d89b6c7bd5650fef0f10debfb /program/steps/settings
parentcf87c1f2ed06ff44bd51975549d0087fc41ff354 (diff)
- Add missing nl_NL translations
- Translate foldernames in folder form (closes #1484113)
Diffstat (limited to 'program/steps/settings')
-rw-r--r--program/steps/settings/manage_folders.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/program/steps/settings/manage_folders.inc b/program/steps/settings/manage_folders.inc
index e938908cf..33f7ee001 100644
--- a/program/steps/settings/manage_folders.inc
+++ b/program/steps/settings/manage_folders.inc
@@ -165,6 +165,8 @@ function rcube_subscription_form($attrib)
$subscribed = in_array($folder, $a_subscribed);
$protected = ($CONFIG['protect_default_folders'] == TRUE && in_array($folder,$CONFIG['default_imap_folders']));
$zebra_class = $i%2 ? 'even' : 'odd';
+ if (in_array($folder, $CONFIG['default_imap_folders']))
+ $folder = rcube_label(strtolower($folder));
$folder_js = rep_specialchars_output($folder, 'js');
$folder_js_enc = rep_specialchars_output(rcube_charset_convert($folder, 'UTF-7'), 'js');