Adds Narrative for Feature Request on Help Page and Report Page Addresses Issue #1537 #1551

Merged
Bentley912 merged 4 commits from feature_request into master 2018-06-08 06:35:26 +02:00
3 changed files with 16622 additions and 6 deletions
Showing only changes of commit 1a8c1c5955 - Show all commits

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">