Adding translations

This commit is contained in:
okbel
2018-05-29 13:00:24 -03:00
parent 6f06ac760c
commit 4f76163541
2 changed files with 15 additions and 10 deletions
@@ -72,16 +72,20 @@ class RejectUsernameDialog extends React.Component {
className={styles.radioGroup}
>
<Radio value={flagReason.offensive}>
{t('flag_reasons.offensive')}
{t('flag_reasons.username.offensive')}
</Radio>
<Radio value={flagReason.nolike}>
{t('flag_reasons.nolike')}
{t('flag_reasons.username.nolike')}
</Radio>
<Radio value={flagReason.impersonating}>
{t('flag_reasons.impersonating')}
{t('flag_reasons.username.impersonating')}
</Radio>
<Radio value={flagReason.spam}>
{t('flag_reasons.username.spam')}
</Radio>
<Radio value={flagReason.other}>
{t('flag_reasons.username.other')}
</Radio>
<Radio value={flagReason.spam}>{t('flag_reasons.spam')}</Radio>
<Radio value={flagReason.other}>{t('flag_reasons.other')}</Radio>
</RadioGroup>
{reason === flagReason.other && (
<fieldset>
+6 -5
View File
@@ -11,11 +11,12 @@ en:
cancel: "Cancel"
reject_username: "Reject Username"
flag_reasons:
offensive: "This username is offensive"
nolike: "I dont likes this username"
impersonating: "This username is offensive"
spam: "This username is offensive"
other: "Other"
username:
offensive: "This username is offensive"
nolike: "I dont likes this username"
impersonating: "This username is offensive"
spam: "This username is offensive"
other: "Other"
bandialog:
are_you_sure: "Are you sure you would like to ban {0}?"
ban_user: "Ban User?"