1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

Extract leftover strings

Extracts strings that were missed previously in:
- Dashboard page of admin interface.
- Edit Custom CSS modal of admin interface.
- Settings modal of admin interface.
- Post activity list on user page of forum UI.
Hopefully there aren't any more!
This commit is contained in:
dcsjapan
2015-11-28 17:14:22 +09:00
parent b3a5822ddb
commit 4bfbf68bca
4 changed files with 6 additions and 6 deletions

View File

@@ -65,7 +65,7 @@ export default class PostsUserPage extends UserPage {
{this.posts.map(post => (
<li>
<div className="PostsUserPage-discussion">
In <a href={app.route.post(post)} config={m.route}>{post.discussion().title()}</a>
{app.translator.trans('core.forum.user.in_discussion_text', {discussion: <a href={app.route.post(post)} config={m.route}>{post.discussion().title()}</a>})}
</div>
{CommentPost.component({post, showDiscussionTitle: true})}
</li>