A few strings where using -.

This commit is contained in:
gaba
2017-05-23 12:53:48 -04:00
parent a184837ff8
commit 259b24faaa
4 changed files with 11 additions and 11 deletions
@@ -50,7 +50,7 @@ const People = ({commenters, searchValue, onSearchChange, ...props}) => {
commenters={commenters}
onHeaderClickHandler={props.onHeaderClickHandler}
/>
: <EmptyCard>{t('community.no-results')}</EmptyCard>
: <EmptyCard>{t('community.no_results')}</EmptyCard>
}
<Pager
totalPages={props.totalPages}
@@ -81,7 +81,7 @@ const ModerationSettings = ({settings, updateSettings, onChangeWordlist}) => {
<Card className={styles.configSetting}>
<div className={styles.settingsHeader}>{t('configure.edit_comment_timeframe_heading')}</div>
<p>
{t('configure.edit-comment-timeframe-text-pre')}
{t('configure.edit_comment_timeframe_text_pre')}
&nbsp;
<input
style={{width: '3em'}}
@@ -94,7 +94,7 @@ const ModerationSettings = ({settings, updateSettings, onChangeWordlist}) => {
pattern='[0-9]+([\.][0-9]*)?'
/>
&nbsp;
{t('configure.edit-comment-timeframe-text-post')}
{t('configure.edit_comment_timeframe_text_post')}
</p>
</Card>
</div>