Localized strings

This commit is contained in:
Tomas Bures 2018-12-23 19:46:49 +00:00
parent 3d956ec141
commit 19fe5331d2
13 changed files with 123 additions and 80 deletions

View file

@ -473,7 +473,7 @@ export default class CUD extends Component {
<AlignedRow>
<div className="help-block">
<small>
{t('Note: These links are solely for a quick preview. To get the address of the subscription form, go to the list\'s subscribers and click on "Subscription Form".')}
{t('noteTheseLinksAreSolelyForAQuickPreview')}
</small>
</div>
<p>
@ -504,7 +504,7 @@ export default class CUD extends Component {
<div className={this.state.previewFullscreen ? formsStyles.editorFullscreen : formsStyles.editor}>
<div className={formsStyles.navbar}>
{this.state.fullscreen && <img className={formsStyles.logo} src={getTrustedUrl('static/mailtrain-notext.png')}/>}
<div className={formsStyles.title}>{t('Form preview:') + ' ' + this.state.previewLabel}</div>
<div className={formsStyles.title}>{t('formPreview') + ' ' + this.state.previewLabel}</div>
<a className={formsStyles.btn} onClick={() => this.setState({previewContents: null, previewFullscreen: false})}><Icon icon="remove"/></a>
<a className={formsStyles.btn} onClick={() => this.setState({previewFullscreen: !this.state.previewFullscreen})}><Icon icon="fullscreen"/></a>
</div>