diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-12-08 11:46:16 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-12-08 11:46:16 +0000 |
| commit | a7d8cc5d0dacee3f6a7f14e9c272c89d65eabfb8 (patch) | |
| tree | 75a4e476a0fd930fbdfb63cb1533940b2fd2cf82 | |
| parent | c4722bb337f8a059a04e853065524dcca3fe678a (diff) | |
- Fix displaying of foldersubscribing/folderunsubscribing labels
git-svn-id: https://svn.roundcube.net/trunk@4320 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index c7e46e69f..e88e19f69 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -4239,7 +4239,7 @@ function rcube_webmail() this.subscribe = function(folder) { if (folder) { - var lock = this.display_message('foldersubscribing', 'loading'); + var lock = this.display_message(this.get_label('foldersubscribing'), 'loading'); this.http_post('subscribe', '_mbox='+urlencode(folder), lock); } }; @@ -4247,7 +4247,7 @@ function rcube_webmail() this.unsubscribe = function(folder) { if (folder) { - var lock = this.display_message('folderunsubscribing', 'loading'); + var lock = this.display_message(this.get_label('folderunsubscribing'), 'loading'); this.http_post('unsubscribe', '_mbox='+urlencode(folder), lock); } }; |
