翻译成英文提示

main
Ycc 1 month ago
parent 2a6c5ecf9f
commit b3bac86be5

@ -190,14 +190,14 @@ export const ImageUploader = props => {
removeIcon: file => {
return (
<Popconfirm
title="删除"
description="是否要删除文件?"
title="Delete"
description="Are you sure you want to delete the file?"
onConfirm={() => {
handleDelete(file);
}}
onCancel={() => setFileList([...fileList])}
okText=""
cancelText="">
okText="Yes"
cancelText="No">
<DeleteOutlined />
</Popconfirm>
);
@ -205,7 +205,7 @@ export const ImageUploader = props => {
}}>
<div>
<UploadOutlined />
<div style={{ marginTop: 8 }}>Upload</div>
<div style={{ marginTop: 8 }}>Select File</div>
</div>
</Upload>
<List loading={isLoading} dataSource={fileList} />

Loading…
Cancel
Save