Remove unnecessary variables and strings for translation.
-- "/wallet" -- I believe this is a link and comes from redux, and shouldn't be translated. -- "%message%" -- No point sending a variable-only to the translators -- the intended replacements are translated correctly. -- "%name%" -- Unused. -- "Something something something..." --- Unused. -- Obsolete strings (replaced by better string) -- "You are not able to see those stats right now. Make sure you are signed in with the correct email and have data sharing turned on." "You are not able to see this channel's stats right now. Make sure you are signed in with the correct email and have data sharing turned on." "There are no stats for this channel. Make sure you are signed in with the correct email and have data sharing turned on."
This commit is contained in:
parent
3d352593f3
commit
cbb6fc8305
2 changed files with 1 additions and 7 deletions
|
@ -960,7 +960,6 @@
|
|||
"LBC Details": "LBC Details",
|
||||
"Publish Amount": "Publish Amount",
|
||||
"Supports and Tips": "Supports and Tips",
|
||||
"%name%": "%name%",
|
||||
"Amount must be a number": "Amount must be a number",
|
||||
"Amount cannot be blank": "Amount cannot be blank",
|
||||
"Amount cannot be more than available": "Amount cannot be more than available",
|
||||
|
@ -1035,7 +1034,6 @@
|
|||
"Use Magic Link": "Use Magic Link",
|
||||
"No recent publishes": "No recent publishes",
|
||||
"Error Fetching Stats": "Error Fetching Stats",
|
||||
"Something something something. Make sure you are signed in with the correct email and have data sharing on.": "Something something something. Make sure you are signed in with the correct email and have data sharing on.",
|
||||
"%follower_count_weekly_change% this week": "%follower_count_weekly_change% this week",
|
||||
"%all_content_views% views": "%all_content_views% views",
|
||||
"+ %all_content_views_weekly_change% this week": "+ %all_content_views_weekly_change% this week",
|
||||
|
@ -1046,15 +1044,11 @@
|
|||
"Most Viewed Content": "Most Viewed Content",
|
||||
"%all_time_top_views% views - %all_time_views_weekly_change% this week": "%all_time_top_views% views - %all_time_views_weekly_change% this week",
|
||||
"Successfully abandoned your support.": "Successfully abandoned your support.",
|
||||
"/wallet": "/wallet",
|
||||
"Send a tip to %url%": "Send a tip to %url%",
|
||||
"You sent %amount% LBC as a tip, Mahalo!": "You sent %amount% LBC as a tip, Mahalo!",
|
||||
"No Stats Found": "No Stats Found",
|
||||
"Sorry about that. Try refreshing or something else.": "Sorry about that. Try refreshing or something else.",
|
||||
"You are not able to see those stats right now. Make sure you are signed in with the correct email and have data sharing turned on.": "You are not able to see those stats right now. Make sure you are signed in with the correct email and have data sharing turned on.",
|
||||
"You are not able to see this channel's stats right now. Make sure you are signed in with the correct email and have data sharing turned on.": "You are not able to see this channel's stats right now. Make sure you are signed in with the correct email and have data sharing turned on.",
|
||||
"You are not able to see this channel's stats. Make sure you are signed in with the correct email and have data sharing turned on.": "You are not able to see this channel's stats. Make sure you are signed in with the correct email and have data sharing turned on.",
|
||||
"There are no stats for this channel. Make sure you are signed in with the correct email and have data sharing turned on.": "There are no stats for this channel. Make sure you are signed in with the correct email and have data sharing turned on.",
|
||||
"%follower_count% followers": "%follower_count% followers",
|
||||
"%lbc_received% LBC Earned": "%lbc_received% LBC Earned",
|
||||
"Sign Up": "Sign Up",
|
||||
|
|
|
@ -110,7 +110,7 @@ const SupportsLiquidate = (props: Props) => {
|
|||
body={
|
||||
abandonClaimError ? (
|
||||
<div className="error__wrapper--no-overflow">
|
||||
<ErrorText>{__('%message%', { message: abandonClaimError })}</ErrorText>
|
||||
<ErrorText>{abandonClaimError}</ErrorText>
|
||||
</div>
|
||||
) : (
|
||||
<>
|
||||
|
|
Loading…
Reference in a new issue