(js) Localized inbox label

Fixes #4040
pull/234/head
Francis Lachapelle 2017-02-17 21:22:10 -05:00
parent fc68709956
commit b1e8f30138
2 changed files with 4 additions and 3 deletions

5
NEWS
View File

@ -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)

View File

@ -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')