mirror of
https://github.com/wassname/talk.git
synced 2026-07-21 12:51:03 +08:00
Addressing formatting errors.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"en": {
|
||||
"comment": "Comment",
|
||||
"comment-plural": "Comments",
|
||||
"comment-plural": "Comments"
|
||||
},
|
||||
"es": {
|
||||
"comment": "Comentario",
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"en": {
|
||||
"post": "Post",
|
||||
"reply": "Reply",
|
||||
"comment": "Comment",
|
||||
"comment": "Comment"
|
||||
},
|
||||
"es": {
|
||||
"post": "Publicar",
|
||||
|
||||
@@ -22,8 +22,8 @@ const FlagButton = ({flag, id, postAction, addItem, updateItem, addNotification}
|
||||
aria-hidden={true}>flag</i>
|
||||
{
|
||||
flagged
|
||||
? <span className={`${name}-button-text`}>lang.t('flag')</span>
|
||||
: <span className={`${name}-button-text`}>lang.t('flagged')</span>
|
||||
? <span className={`${name}-button-text`}>{lang.t('flag')}</span>
|
||||
: <span className={`${name}-button-text`}>{lang.t('flagged')}</span>
|
||||
}
|
||||
</button>
|
||||
</div>;
|
||||
|
||||
Reference in New Issue
Block a user