Rename the key for the "Hidden" badge tooltip

- Shortens the key name for consistency with `badge:` namespace.
- Revised YAML to follow.
This commit is contained in:
dcsjapan 2015-10-22 09:31:13 +09:00
parent ee7bfddd4b
commit c260d3557f

View File

@ -86,7 +86,7 @@ Object.assign(Discussion.prototype, {
const items = new ItemList(); const items = new ItemList();
if (this.isHidden()) { if (this.isHidden()) {
items.add('hidden', <Badge type="hidden" icon="trash" label={app.translator.trans('core.lib.badge.hidden_discussion_tooltip')}/>); items.add('hidden', <Badge type="hidden" icon="trash" label={app.translator.trans('core.lib.badge.hidden_tooltip')}/>);
} }
return items; return items;