summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps
diff options
context:
space:
mode:
authorrobin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-11-21 10:09:04 +0000
committerrobin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-11-21 10:09:04 +0000
commit2ba7a04b6bdd75a15b082ecaf5df305d6dec84b5 (patch)
treef17b7677a9f5495c81e4adbfd0eb50329c776238 /roundcubemail/program/steps
parent44cbeb56907f470669b0de2ff85752eb3e398da9 (diff)
- Add missing nl_NL translations
- Translate foldernames in folder form (closes #1484113) git-svn-id: https://svn.roundcube.net/trunk@378 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
-rw-r--r--roundcubemail/program/steps/settings/manage_folders.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/roundcubemail/program/steps/settings/manage_folders.inc b/roundcubemail/program/steps/settings/manage_folders.inc
index e938908cf..33f7ee001 100644
--- a/roundcubemail/program/steps/settings/manage_folders.inc
+++ b/roundcubemail/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');