Re-use existing string
This commit is contained in:
parent
ef62ba267d
commit
65789a26ed
2 changed files with 1 additions and 2 deletions
|
@ -1056,7 +1056,6 @@
|
|||
"Edit existing claim instead": "Edit existing claim instead",
|
||||
"You already have a claim at %existing_uri%. Publishing will update (overwrite) your existing claim.": "You already have a claim at %existing_uri%. Publishing will update (overwrite) your existing claim.",
|
||||
"You already have a pending upload at %existing_uri%.": "You already have a pending upload at %existing_uri%.",
|
||||
"You already have an upload with that name.": "You already have an upload with that name.",
|
||||
"Save": "Save",
|
||||
"Saved": "Saved",
|
||||
"Saving...": "Saving...",
|
||||
|
|
|
@ -69,7 +69,7 @@ function NameHelpText(props: Props) {
|
|||
</React.Fragment>
|
||||
);
|
||||
} else if (uri && myClaimForUriCaseInsensitive) {
|
||||
nameHelpText = <div className="error__text">{__('You already have an upload with that name.')}</div>;
|
||||
nameHelpText = <div className="error__text">{__('You already have a claim with this name.')}</div>;
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue