mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
Merge pull request #4067 from fantasticfears/translation
FIX: Add missing translation in groups page
This commit is contained in:
commit
cf140aaaec
@ -4,6 +4,11 @@ var Tab = Em.Object.extend({
|
|||||||
@computed('name')
|
@computed('name')
|
||||||
location(name) {
|
location(name) {
|
||||||
return 'group.' + name;
|
return 'group.' + name;
|
||||||
|
},
|
||||||
|
|
||||||
|
@computed('name')
|
||||||
|
message(name) {
|
||||||
|
return I18n.t('groups.' + name);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<ul class='action-list nav-stacked'>
|
<ul class='action-list nav-stacked'>
|
||||||
{{#each tabs as |tab|}}
|
{{#each tabs as |tab|}}
|
||||||
<li class="{{if tab.active 'active'}}">
|
<li class="{{if tab.active 'active'}}">
|
||||||
{{#link-to tab.location model}}
|
{{#link-to tab.location model title=tab.message}}
|
||||||
{{tab.name}}
|
{{tab.message}}
|
||||||
{{#if tab.count}}<span class='count'>({{tab.count}})</span>{{/if}}
|
{{#if tab.count}}<span class='count'>({{tab.count}})</span>{{/if}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</li>
|
</li>
|
||||||
|
@ -364,7 +364,10 @@ en:
|
|||||||
one: "group"
|
one: "group"
|
||||||
other: "groups"
|
other: "groups"
|
||||||
members: "Members"
|
members: "Members"
|
||||||
|
topics: "Topics"
|
||||||
posts: "Posts"
|
posts: "Posts"
|
||||||
|
mentions: "Mentions"
|
||||||
|
messages: "Messages"
|
||||||
alias_levels:
|
alias_levels:
|
||||||
title: "Who can message and @mention this group?"
|
title: "Who can message and @mention this group?"
|
||||||
nobody: "Nobody"
|
nobody: "Nobody"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user