diff --git a/client/coral-plugin-comment-count/translations.json b/client/coral-plugin-comment-count/translations.json
index bf2522a47..f212810e9 100644
--- a/client/coral-plugin-comment-count/translations.json
+++ b/client/coral-plugin-comment-count/translations.json
@@ -1,7 +1,7 @@
{
"en": {
"comment": "Comment",
- "comment-plural": "Comments",
+ "comment-plural": "Comments"
},
"es": {
"comment": "Comentario",
diff --git a/client/coral-plugin-commentbox/CommentBox.js b/client/coral-plugin-commentbox/CommentBox.js
index 349a589a6..bd44d34d1 100644
--- a/client/coral-plugin-commentbox/CommentBox.js
+++ b/client/coral-plugin-commentbox/CommentBox.js
@@ -1,6 +1,6 @@
import React, {Component, PropTypes} from 'react';
import {I18n} from '../coral-framework';
-import translations from './translations.json'
+import translations from './translations.json';
const name = 'coral-plugin-commentbox';
diff --git a/client/coral-plugin-commentbox/translations.json b/client/coral-plugin-commentbox/translations.json
index 86e9ade54..eee577b2a 100644
--- a/client/coral-plugin-commentbox/translations.json
+++ b/client/coral-plugin-commentbox/translations.json
@@ -2,7 +2,7 @@
"en": {
"post": "Post",
"reply": "Reply",
- "comment": "Comment",
+ "comment": "Comment"
},
"es": {
"post": "Publicar",
diff --git a/client/coral-plugin-flags/FlagButton.js b/client/coral-plugin-flags/FlagButton.js
index a920edc33..94cc02d5f 100644
--- a/client/coral-plugin-flags/FlagButton.js
+++ b/client/coral-plugin-flags/FlagButton.js
@@ -22,8 +22,8 @@ const FlagButton = ({flag, id, postAction, addItem, updateItem, addNotification}
aria-hidden={true}>flag
{
flagged
- ? lang.t('flag')
- : lang.t('flagged')
+ ? {lang.t('flag')}
+ : {lang.t('flagged')}
}
;