Add translation for deleted tags

This commit is contained in:
Toby Zerner 2015-07-29 09:29:50 +09:30
parent 5ba4934105
commit d63b442227
3 changed files with 4 additions and 2 deletions

View File

@ -25,7 +25,7 @@ export default function tagLabel(tag, attrs = {}) {
return ( return (
m((link ? 'a' : 'span'), attrs, m((link ? 'a' : 'span'), attrs,
<span className="TagLabel-text"> <span className="TagLabel-text">
{tag ? tag.name() : app.trans('tags.untagged')} {tag ? tag.name() : app.trans('tags.deleted')}
</span> </span>
) )
); );

View File

@ -11,3 +11,4 @@ tags:
confirm: Confirm confirm: Confirm
more: More... more: More...
tag_cloud_title: Tags tag_cloud_title: Tags
deleted: Deleted

View File

@ -38,7 +38,8 @@ class AddClientAssets
'tags.discussion_tags_placeholder', 'tags.discussion_tags_placeholder',
'tags.confirm', 'tags.confirm',
'tags.more', 'tags.more',
'tags.tag_cloud_title' 'tags.tag_cloud_title',
'tags.deleted'
]); ]);
} }