Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correction and redirection #3039

Merged
merged 3 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions static/app-strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -764,8 +764,8 @@
"Get Validated": "Get Validated",
"other rewards": "other rewards",
"This step is not mandatory and not required in order for you to use %SITE_NAME%.": "This step is not mandatory and not required in order for you to use %SITE_NAME%.",
"A moderator can approve you within our discord server. Please review the instructions within #rewards-approval carefully.": "A moderator can approve you within our discord server. Please review the instructions within #rewards-approval carefully.",
"You will be asked to provide proof of identity.": "You will be asked to provide proof of identity.",
"You can request verification of your Odysee account by sending an email to [email protected]": "You can request verification of your Odysee account by sending an email to [email protected]",
"Verification requests can take a few hours to be approved.": "Verification requests can take a few hours to be approved.",
"Skip": "Skip",
"Verifying is optional. If you skip this, it just means you can't earn LBRY Credits from our rewards system.": "Verifying is optional. If you skip this, it just means you can't earn LBRY Credits from our rewards system.",
"Continue Without Verifying": "Continue Without Verifying",
Expand Down
17 changes: 4 additions & 13 deletions ui/component/userVerify/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,25 +120,16 @@ class UserVerify extends React.PureComponent<Props> {
</div>

<Card
icon={ICONS.CHAT}
title={__('Verify via chat')}
icon={ICONS.HELP}
title={__('Verify via email')}
subtitle={
<>
<p>
{__(
'A moderator can approve you within our discord server. Please review the instructions within #rewards-approval carefully.'
)}
{__('You can request verification of your Odysee account by sending an email to [email protected]')}
</p>
<p>{__('You will be asked to provide proof of identity.')}</p>
<p>{__('Verification requests can take a few hours to be approved.')}</p>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@michaelmitnick please add this to the app-strings.json

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

meant "'Verification requests can take a few hours to be approved." string to app-strings.json. Let me know if you wanna take another shot.

Notice you also added back: 'You will be asked to provide proof of identity.' - that's not what I meant, and probably can be removed?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, that's right, the app-strings.json was not edited. I'll correct it, sorry.

</>
}
actions={
<Button
href="https://verification.odysee.com"
button="primary"
label={__('Join the Odysee Rewards Discord')}
/>
}
/>

{/*
Expand Down
Loading