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

Add actions words for Merge Readiness CTAs #515

Merged
merged 1 commit into from
Jun 30, 2022
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
24 changes: 12 additions & 12 deletions src/intl/compiled/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@
"value": "Configure the Java Web"
}
],
"/FpD8O": [
{
"type": 0,
"value": "Do this after TTD client releases"
}
],
"/QPc9s": [
{
"type": 0,
Expand Down Expand Up @@ -5821,6 +5827,12 @@
"value": "Does the contract have a large balance?"
}
],
"ouMFoC": [
{
"type": 0,
"value": "Do this now"
}
],
"ouW9ov": [
{
"type": 0,
Expand Down Expand Up @@ -6287,12 +6299,6 @@
"value": "What should the address be?"
}
],
"tgvES0": [
{
"type": 0,
"value": "Now"
}
],
"tigMuZ": [
{
"type": 0,
Expand Down Expand Up @@ -6523,12 +6529,6 @@
"value": "Proceed with caution. Our on-chain data source is down and we are unable to flag any double deposits."
}
],
"vUxy+H": [
{
"type": 0,
"value": "After TTD client releases"
}
],
"vV6ua0": [
{
"type": 0,
Expand Down
12 changes: 6 additions & 6 deletions src/intl/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
"/E/Zm8": {
"message": "Configure the Java Web"
},
"/FpD8O": {
"message": "Do this after TTD client releases"
},
"/QPc9s": {
"message": "You can signal your intent to stop validating by signing a voluntary exit message with your validator."
},
Expand Down Expand Up @@ -2226,6 +2229,9 @@
"orczlb": {
"message": "Does the contract have a large balance?"
},
"ouMFoC": {
"message": "Do this now"
},
"ouW9ov": {
"message": "Your validators"
},
Expand Down Expand Up @@ -2407,9 +2413,6 @@
"teyxVk": {
"message": "What should the address be?"
},
"tgvES0": {
"message": "Now"
},
"tigMuZ": {
"message": "Wait at least 30 minutes before trying to resubmit a transaction with this {depositData} file. This will give our on-chain data source time to flag any duplicate deposits."
},
Expand Down Expand Up @@ -2500,9 +2503,6 @@
"vJez0K": {
"message": "Proceed with caution. Our on-chain data source is down and we are unable to flag any double deposits."
},
"vUxy+H": {
"message": "After TTD client releases"
},
"vV6ua0": {
"message": "Step 1: Download the Wagyu Key Gen app for your operating system"
},
Expand Down
10 changes: 7 additions & 3 deletions src/pages/MergeReadiness/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,20 +131,24 @@ export const MergeReadiness = () => {
const sections = [
{
heading: <FormattedMessage defaultMessage="Task 1" />,
timing: <FormattedMessage defaultMessage="Now" />,
timing: <FormattedMessage defaultMessage="Do this now" />,
title: <FormattedMessage defaultMessage="Both layers required" />,
id: 'el-plus-cl',
},
{
heading: <FormattedMessage defaultMessage="Task 2" />,
timing: <FormattedMessage defaultMessage="After TTD client releases" />,
timing: (
<FormattedMessage defaultMessage="Do this after TTD client releases" />
),
title: <FormattedMessage defaultMessage="Authenticate Engine API" />,
id: 'authenticate',
pending: true,
},
{
heading: <FormattedMessage defaultMessage="Task 3" />,
timing: <FormattedMessage defaultMessage="After TTD client releases" />,
timing: (
<FormattedMessage defaultMessage="Do this after TTD client releases" />
),
title: <FormattedMessage defaultMessage="Set fee recipient" />,
id: 'fee-recipient',
pending: true,
Expand Down