fix(dashboard): import products labels (#9001)

FIXES CC-337
This commit is contained in:
Frane Polić
2024-09-04 18:24:41 +02:00
committed by GitHub
parent b9ea116697
commit 13e4f4aeb5
2 changed files with 4 additions and 2 deletions

View File

@@ -398,6 +398,8 @@
},
"import": {
"header": "Import Product List",
"uploadLabel": "Import Products",
"uploadHint": "Drag and drop a CSV file or click to upload",
"description": "Import products by providing a CSV file in a pre-defined format",
"template": {
"title": "Unsure about how to arrange your list?",

View File

@@ -36,8 +36,8 @@ export const UploadImport = ({
return (
<div className="flex flex-col gap-y-4">
<FileUpload
label={t("products.media.uploadImagesLabel")}
hint={t("products.media.uploadImagesHint")}
label={t("products.import.uploadLabel")}
hint={t("products.import.uploadHint")}
multiple={false}
hasError={!!error}
formats={SUPPORTED_FORMATS}