Skip to content
Snippets Groups Projects
Commit 5746967a authored by Léo Banno-Cloutier's avatar Léo Banno-Cloutier
Browse files

Blueprint: upload label in lowercase in translation files

Change-Id: I79c630d7564dc79443d65a8685dfdd197d3cb0b8
parent 35f8ee9f
No related branches found
No related tags found
No related merge requests found
......@@ -270,7 +270,7 @@ const CustomBackgroundForm = ({
onDrop={(files) => {
handleImgDrop(files, "background");
}}
label={i18next.t("upload_an_image", "UPLOAD AN IMAGE")}
label={i18next.t("upload_an_image", "Upload an image").toUpperCase()}
file={bgFile}
setFile={setBgFile}
handleDelete={(e) => {
......@@ -329,7 +329,7 @@ const LogoForm = ({
<FormGroup row style={{ padding: "10px 0" }}>
<CustomImgDropZone
onDrop={(files) => handleImgDrop(files, "logo")}
label={i18next.t("upload_a_logotype", "UPLOAD A LOGOTYPE")}
label={i18next.t("upload_a_logotype", "Upload a logotype").toUpperCase()}
file={logoFile}
setFile={setLogoFile}
handleDelete={(e) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment