diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-19 23:09:20 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-19 23:09:20 +0000 |
| commit | d4251dabace59bf938fb4fcd445286935820a914 (patch) | |
| tree | 6f8744e05ba1638155f6f6b4afbd12ed684105f2 /roundcubemail/program/include | |
| parent | 68955361dd404a1eb0fdca648f14ed1aefee29d9 (diff) | |
Localize folder name in page title (#1484785)
git-svn-id: https://svn.roundcube.net/trunk@1119 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/main.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 2d28090c7..06cf706ea 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -1844,4 +1844,20 @@ function rcmail_folder_classname($folder_id) } +/** + * Try to localize the given IMAP folder name. + * UTF-7 decode it in case no localized text was found + * + * @param string Folder name + * @return string Localized folder name in UTF-8 encoding + */ +function rcmail_localize_foldername($name) +{ + if ($folder_class = rcmail_folder_classname($name)) + return rcube_label($folder_class); + else + return rcube_charset_convert($name, 'UTF-7'); +} + + ?> |
