i18n update

- Screen readers will announce an <img> tag as that, so no need to say "image" again in the `alt` text.
This commit is contained in:
infinite-persistence 2021-06-07 09:02:05 +08:00
parent f1bf067ebd
commit fae90c4ba1
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0
2 changed files with 6 additions and 4 deletions

View file

@ -645,7 +645,7 @@
"Claim Channels": "Claim Channels",
"Say something about this...": "Say something about this...",
"Update email preferences": "Update email preferences",
"An account with lbry.tv allows you to earn rewards and backup your data.": "An account with lbry.tv allows you to earn rewards and backup your data.",
"An account allows you to earn rewards and backup your data.": "An account allows you to earn rewards and backup your data.",
"Backup your account and wallet data.": "Backup your account and wallet data.",
"Sign in": "Sign in",
"We just sent an email to %email% with a link for you to %verify_text%. Remember to check other email folders like spam or promotions.": "We just sent an email to %email% with a link for you to %verify_text%. Remember to check other email folders like spam or promotions.",
@ -1384,6 +1384,7 @@
"An account with %domain% allows you to earn rewards and backup your data.": "An account with %domain% allows you to earn rewards and backup your data.",
"Sync my YouTube channel": "Sync my YouTube channel",
"Log in to %SITE_NAME%": "Log in to %SITE_NAME%",
"Log in": "Log in",
"Not Yet": "Not Yet",
"Preparing...": "Preparing...",
"Confirm Upload": "Confirm Upload",
@ -1518,7 +1519,7 @@
"Free Credits?": "Free Credits?",
"You missed out on the daily view reward, sign up for our rewards program!": "You missed out on the daily view reward, sign up for our rewards program!",
"A Welcome 🎁": "A Welcome 🎁",
"Receive free credits for using LBRY": "Receive free credits for using LBRY",
"Receive free Credits just for doing what you're already doing": "Receive free Credits just for doing what you're already doing",
"Watch more content to get to the next level.": "Watch more content to get to the next level.",
"Follow more channels to reach the next level.": "Follow more channels to reach the next level.",
"You need to improve the cool-aid (gain more followers) to get to the next level.": "You need to improve the cool-aid (gain more followers) to get to the next level.",
@ -1708,6 +1709,7 @@
"Stay up to date on the latest content from your favorite creators.": "Stay up to date on the latest content from your favorite creators.",
"Receive tutorial emails related to LBRY ": "Receive tutorial emails related to LBRY ",
"Create A LiveStream": "Create A LiveStream",
"%channel% has disabled chat for this stream. Enjoy the stream!": "%channel% has disabled chat for this stream. Enjoy the stream!",
"%channel% isn't live right now, but the chat is! Check back later to watch the stream.": "%channel% isn't live right now, but the chat is! Check back later to watch the stream.",
"Right now": "Right now",
"%viewer_count% currently watching": "%viewer_count% currently watching",
@ -1914,6 +1916,6 @@
"Now": "Now",
"Set to current date and time": "Set to current date and time",
"Remove custom release date": "Remove custom release date",
"%SITE_NAME% login image": "%SITE_NAME% login image",
"%SITE_NAME% login": "%SITE_NAME% login",
"--end--": "--end--"
}

View file

@ -31,7 +31,7 @@ function LoginGraphic(props: any) {
return (
<div className="signup-image" ref={containerRef}>
<img alt={__('%SITE_NAME% login image', { SITE_NAME })} src={src} onError={() => setError(true)} />
<img alt={__('%SITE_NAME% login', { SITE_NAME })} src={src} onError={() => setError(true)} />
</div>
);
}