Skip to content

Commit

Permalink
(js) Localized inbox label
Browse files Browse the repository at this point in the history
Fixes #4040
  • Loading branch information
cgx committed Feb 18, 2017
1 parent fc68709 commit b1e8f30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions NEWS
Expand Up @@ -8,8 +8,9 @@ Enhancements
-

Bug fixes
- [web] fix ACL editor in admin module for Safari (#4036)
- [web] fix function call when removing contact category (#4039)
- [web] fixed ACL editor in admin module for Safari (#4036)
- [web] fixed function call when removing contact category (#4039)
- [web] localized inbox label (#4040)


3.2.7 (2017-02-14)
Expand Down
2 changes: 1 addition & 1 deletion UI/WebServerResources/js/Mailer/MailboxesController.js
Expand Up @@ -391,7 +391,7 @@

function metadataForFolder(folder) {
if (folder.type == 'inbox')
return {name: folder.name, icon:'inbox', special: true};
return {name: l('InboxFolderName'), icon:'inbox', special: true};
else if (folder.type == 'draft')
return {name: l('DraftsFolderName'), icon: 'drafts', special: true};
else if (folder.type == 'sent')
Expand Down

0 comments on commit b1e8f30

Please sign in to comment.