From 88fac1b30b7b70a5a1f01a02c22cbbff30538087 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Tue, 25 Aug 2020 13:40:39 -0400 Subject: [PATCH] copy changes --- static/app-strings.json | 5 +---- ui/component/inviteNew/view.jsx | 12 ++++++------ ui/component/userEmailVerify/view.jsx | 2 +- ui/page/invite/view.jsx | 3 +-- ui/page/signInVerify/view.jsx | 1 + 5 files changed, 10 insertions(+), 13 deletions(-) diff --git a/static/app-strings.json b/static/app-strings.json index d523a1e82..2c2ae5db2 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -508,7 +508,6 @@ "Follow New Tags": "Follow New Tags", "Log In": "Log In", "Go Back": "Go Back", - "Log In To LBRY": "Log In To LBRY", "Create a new account or sign in.": "Create a new account or sign in.", "Terms of Service": "Terms of Service", "Learn More": "Learn More", @@ -597,7 +596,6 @@ "Sign Out": "Sign Out", "Portuguese": "Portuguese", "Follow more tags": "Follow more tags", - "Log In to LBRY": "Log In to LBRY", "Check Your Email": "Check Your Email", "Resend link": "Resend link", "Sync your balance and preferences across devices.": "Sync your balance and preferences across devices.", @@ -766,7 +764,7 @@ "Get The App": "Get The App", "You need more credits to purchase this.": "You need more credits to purchase this.", "Open Rewards": "Open Rewards", - "Earn %rewards_link% for inviting your friends. Read our %referral_faq_link% to learn more.": "Earn %rewards_link% for inviting your friends. Read our %referral_faq_link% to learn more.", + "Read our %referral_faq_link% to learn more about rewards.": "Read our %referral_faq_link% to learn more about rewards.", "Recommended ratio is 1:1": "Recommended ratio is 1:1", "Recommended ratio is 6.25:1": "Recommended ratio is 6.25:1", "Tags Selected": "Tags Selected", @@ -775,7 +773,6 @@ "There was an error. Try %refreshing_the_app_link% to fix it. If that doesn't work, try pressing Ctrl+R/Cmd+R.": "There was an error. Try %refreshing_the_app_link% to fix it. If that doesn't work, try pressing Ctrl+R/Cmd+R.", "You are not currently sharing diagnostic data so this error was not reported.": "You are not currently sharing diagnostic data so this error was not reported.", "Find Channels to Follow": "Find Channels to Follow", - "Log in with lbry.tv to receive notifications about new content.": "Log in with lbry.tv to receive notifications about new content.", "Find new channels to follow": "Find new channels to follow", "%SITE_NAME% is more fun if you're following channels": "%SITE_NAME% is more fun if you're following channels", "Saved zip archive to %outputPath%": "Saved zip archive to %outputPath%", diff --git a/ui/component/inviteNew/view.jsx b/ui/component/inviteNew/view.jsx index 682ebe975..cd9dd1557 100644 --- a/ui/component/inviteNew/view.jsx +++ b/ui/component/inviteNew/view.jsx @@ -1,10 +1,10 @@ // @flow +import { URL, SITE_NAME } from 'config'; import React, { useEffect, useState } from 'react'; import Button from 'component/button'; import { Form, FormField } from 'component/common/form'; import CopyableText from 'component/copyableText'; import Card from 'component/common/card'; -import { URL } from 'config'; import SelectChannel from 'component/selectChannel'; import analytics from 'analytics'; import I18nMessage from 'component/i18nMessage'; @@ -72,7 +72,7 @@ function InviteNew(props: Props) { return (
@@ -92,7 +92,7 @@ function InviteNew(props: Props) { referral_faq_link:

{ {!authenticated ? ( ) : ( @@ -41,7 +41,6 @@ class InvitePage extends React.PureComponent { {!isPending && isFailed && {__('Failed to retrieve invite status.')}} {!isPending && !isFailed && ( - {' '} diff --git a/ui/page/signInVerify/view.jsx b/ui/page/signInVerify/view.jsx index 6f3ca2021..77b78390c 100644 --- a/ui/page/signInVerify/view.jsx +++ b/ui/page/signInVerify/view.jsx @@ -1,4 +1,5 @@ // @flow +import { SITE_NAME } from 'config'; import * as PAGES from 'constants/pages'; import React, { useState } from 'react'; import { withRouter } from 'react-router';