From 5746967a9e6e80267397f27612961caea25a60a5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?L=C3=A9o=20Banno-Cloutier?=
 <leo.banno-cloutier@savoirfairelinux.com>
Date: Thu, 13 Jul 2023 16:59:52 -0400
Subject: [PATCH] Blueprint: upload label in lowercase in translation files

Change-Id: I79c630d7564dc79443d65a8685dfdd197d3cb0b8
---
 jams-react-client/src/views/Blueprint/EditBlueprintUiForm.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/jams-react-client/src/views/Blueprint/EditBlueprintUiForm.js b/jams-react-client/src/views/Blueprint/EditBlueprintUiForm.js
index 5d72abf3..70c70539 100644
--- a/jams-react-client/src/views/Blueprint/EditBlueprintUiForm.js
+++ b/jams-react-client/src/views/Blueprint/EditBlueprintUiForm.js
@@ -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) => {
-- 
GitLab