1
0
mirror of https://github.com/flarum/core.git synced 2025-07-18 15:21:16 +02:00

Fix key names in Flags

- Fixes a few key name errors in PR #1
This commit is contained in:
dcsjapan
2015-10-21 19:32:23 +09:00
parent 5523cb5b7b
commit 6b5ac48c43
3 changed files with 4 additions and 4 deletions

View File

@@ -101,7 +101,7 @@ export default function() {
const detail = flag.reasonDetail();
return [
app.translator.trans(reason ? 'flarum-flags.forum.post.flagged_by_with_reason' : 'flarum-flags.forum.post.flagged_by', {user, reason}),
app.translator.trans(reason ? 'flarum-flags.forum.post.flagged_by_with_reason_text' : 'flarum-flags.forum.post.flagged_by_text', {user, reason}),
detail ? <span className="Post-flagged-detail">{detail}</span> : ''
];
}