Skip to content

Commit

Permalink
Merge pull request #7582 from ccfang/fix-admin-roomlist-i18n-type
Browse files Browse the repository at this point in the history
[FIX] Fix admin room list show the correct i18n type
  • Loading branch information
rodrigok authored Jul 27, 2017
2 parents 0ba18f1 + 4d5f35c commit 513401a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/rocketchat-ui-admin/client/rooms/adminRooms.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ Template.adminRooms.helpers({
if (this.t === 'c') {
return TAPi18n.__('Channel');
} else if (this.t === 'd') {
return TAPi18n.__('Direct Message');
return TAPi18n.__('Direct_Messages');
}
if (this.t === 'p') {
return TAPi18n.__('Private Group');
return TAPi18n.__('Private_Groups');
}
},
'default'() {
Expand Down

0 comments on commit 513401a

Please sign in to comment.