mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 21:04:37 +03:00
Update zh-tw strings & fix various hard strings (#1666)
* Update unlocalized strings & fix various hard strings * Fix incorrect placement of ignore_organized in en-US * Add missing strings * Fix hard string in PerformerList
This commit is contained in:
@@ -36,7 +36,9 @@ export const ImageInput: React.FC<IImageInput> = ({
|
||||
// just return the file input
|
||||
return (
|
||||
<Form.Label className="image-input">
|
||||
<Button variant="secondary">{text ?? "Browse for image..."}</Button>
|
||||
<Button variant="secondary">
|
||||
{text ?? intl.formatMessage({ id: "actions.browse_for_image" })}
|
||||
</Button>
|
||||
<Form.Control
|
||||
type="file"
|
||||
onChange={onImageChange}
|
||||
@@ -61,7 +63,10 @@ export const ImageInput: React.FC<IImageInput> = ({
|
||||
show={!!isShowDialog}
|
||||
onHide={() => setIsShowDialog(false)}
|
||||
header={intl.formatMessage({ id: "dialogs.set_image_url_title" })}
|
||||
accept={{ onClick: onConfirmURL, text: "Confirm" }}
|
||||
accept={{
|
||||
onClick: onConfirmURL,
|
||||
text: intl.formatMessage({ id: "actions.confirm" }),
|
||||
}}
|
||||
>
|
||||
<div className="dialog-content">
|
||||
<Form.Group controlId="url" as={Row}>
|
||||
|
||||
Reference in New Issue
Block a user