Adds Narrative for Feature Request on Help Page and Report Page

This commit is contained in:
Patrick Bentley 2018-06-05 17:51:49 +03:00
parent 850e187d4b
commit 1a8c1c5955
3 changed files with 16622 additions and 6 deletions

16614
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -109,13 +109,15 @@ class HelpPage extends React.PureComponent {
</section>
<section className="card card--section">
<div className="card__title">{__('Report a Bug')}</div>
<p className="card__subtitle">{__('Did you find something wrong?')}</p>
<div className="card__title">{__('Report a Bug or Suggest a New Feature')}</div>
<p className="card__subtitle">
{__('Did you find something wrong? Think LBRY could add something useful and cool?')}
</p>
<div className="card__actions">
<Button
navigate="/report"
label={__('Submit a Bug Report')}
label={__('Submit a Bug Report/Feature Request')}
icon={icons.REPORT}
button="primary"
/>

View file

@ -49,10 +49,10 @@ class ReportPage extends React.Component {
<Page>
<section className="card card--section">
<div className="card__content">
<div className="card__title">{__('Report an Issue')}</div>
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
<p>
{__(
'Please describe the problem you experienced and any information you think might be useful to us. Links to screenshots are great!'
'Please describe the problem you experienced or the feature you want to see and any information you think might be useful to us. Links to screenshots are great!'
)}
</p>
<FormRow>
@ -65,7 +65,7 @@ class ReportPage extends React.Component {
onChange={event => {
this.onMessageChange(event);
}}
placeholder={__('Description of your issue')}
placeholder={__('Description of your issue or feature request')}
/>
</FormRow>
<div className="card__actions">