@designcrowd/fe-shared-lib 1.6.1 → 1.6.3-eng-4039-freemode

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/docs/plans/DY-957-plan-phase-2-fe-shared-lib.md +382 -0
  2. package/index.js +1 -0
  3. package/package.json +1 -1
  4. package/src/atoms/components/Carousel/Carousel.vue +6 -0
  5. package/src/atoms/components/Icon/Icon.vue +4 -0
  6. package/src/atoms/components/Icon/icons/history.vue +12 -0
  7. package/src/atoms/components/Icon/icons/save.vue +6 -0
  8. package/src/experiences/clients/brand-crowd-api.client.js +18 -0
  9. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.stories.js +49 -0
  10. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +28 -0
  11. package/src/experiences/components/UploadYourLogoOnBoarding/LogoKeywords.stories.js +65 -0
  12. package/src/experiences/components/UploadYourLogoOnBoarding/LogoKeywords.vue +156 -0
  13. package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +61 -9
  14. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.de-DE.json +34 -31
  15. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.es-ES.json +34 -31
  16. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-CA.json +34 -31
  17. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-FR.json +34 -31
  18. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.json +3 -1
  19. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-BR.json +34 -31
  20. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-PT.json +34 -31
  21. package/src/experiences/constants/api.js +1 -0
@@ -0,0 +1,156 @@
1
+ <template>
2
+ <div class="tw-w-full tw-flex tw-flex-col tw-h-full lg:tw-h-auto">
3
+ <div class="tw-h-full tw-pb-24 lg:tw-pb-0">
4
+ <div class="tw-pb-8">
5
+ <p class="tw-text-grayscale-600 tw-font-bold tw-text-xs tw-mb-2 tw-uppercase">
6
+ {{ progressLabel }}
7
+ </p>
8
+ <h2 class="tw-mb-4 tw-text-4xl tw-text-black tw-font-bold">{{ uploadYourLogoTr('keywords') }}</h2>
9
+ <p class="tw-mt-0">{{ uploadYourLogoTr('keywordsDescription') }}</p>
10
+ </div>
11
+
12
+ <div class="tw-pb-8 tw-px-8">
13
+ <div class="tw-relative">
14
+ <input
15
+ v-model="keywordsText"
16
+ :disabled="isLoading"
17
+ class="tw-w-full tw-py-3.5 tw-px-4 tw-rounded tw-box-border tw-border tw-border-solid tw-border-grayscale-500 tw-text-grayscale-600"
18
+ @keyup="onKeywordsKeyUp"
19
+ />
20
+ <div
21
+ v-if="isLoading"
22
+ class="tw-absolute tw-inset-0 tw-flex tw-items-center tw-justify-center tw-bg-white/50 tw-rounded"
23
+ >
24
+ <div class="tw-animate-spin tw-h-5 tw-w-5 tw-border-2 tw-border-grayscale-500 tw-border-t-transparent tw-rounded-full" />
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </div>
29
+
30
+ <div
31
+ class="tw-fixed tw-rounded-b tw-bottom-0 tw-left-0 tw-z-10 tw-bg-grayscale-200 lg:tw-static tw-flex tw-w-full tw-items-center tw-justify-center tw-border-0 tw-border-t tw-border-black/10 tw-border-solid tw-py-4 tw-px-8 tw-box-border"
32
+ >
33
+ <Button
34
+ :label="uploadYourLogoTr('back')"
35
+ size="large"
36
+ variant="outline"
37
+ container-classes="tw-mx-2"
38
+ data-test-back-btn
39
+ @on-click="back"
40
+ />
41
+ <Button
42
+ :label="uploadYourLogoTr('continue')"
43
+ size="large"
44
+ variant="primary-with-icon"
45
+ icon="chevron-right-wide"
46
+ container-classes="tw-mx-2"
47
+ data-test-continue-btn
48
+ :disabled="isLoading"
49
+ @on-click="save"
50
+ />
51
+ </div>
52
+ </div>
53
+ </template>
54
+ <script>
55
+ import Button from '../../../atoms/components/Button/Button.vue';
56
+ import brandCrowdClient from '../../clients/brand-crowd-api.client';
57
+ import trackEvent from '../../helpers/tracking';
58
+ import { uploadYourLogoTr } from '../../../useSharedLibTranslate';
59
+
60
+ export default {
61
+ components: {
62
+ Button,
63
+ },
64
+ props: {
65
+ progressLabel: {
66
+ type: String,
67
+ required: true,
68
+ },
69
+ eventCategory: {
70
+ type: String,
71
+ required: true,
72
+ },
73
+ savedKeywords: {
74
+ type: String,
75
+ required: false,
76
+ default: null,
77
+ },
78
+ businessName: {
79
+ type: String,
80
+ required: false,
81
+ default: '',
82
+ },
83
+ templateType: {
84
+ type: String,
85
+ required: true,
86
+ },
87
+ antiForgeryToken: {
88
+ type: String,
89
+ required: true,
90
+ },
91
+ refreshAntiForgeryToken: {
92
+ type: Function,
93
+ required: false,
94
+ default: null,
95
+ },
96
+ },
97
+ setup() {
98
+ return {
99
+ uploadYourLogoTr,
100
+ };
101
+ },
102
+ data() {
103
+ return {
104
+ keywordsText: '',
105
+ isLoading: false,
106
+ };
107
+ },
108
+ async mounted() {
109
+ if (this.savedKeywords !== null) {
110
+ this.keywordsText = this.savedKeywords;
111
+ return;
112
+ }
113
+ if (!this.businessName) {
114
+ return;
115
+ }
116
+ this.isLoading = true;
117
+ try {
118
+ const token = this.refreshAntiForgeryToken ? await this.refreshAntiForgeryToken() : this.antiForgeryToken;
119
+ const result = await brandCrowdClient.getKeywordSuggestionsAsync({
120
+ businessName: this.businessName,
121
+ templateType: this.templateType,
122
+ antiForgeryToken: token,
123
+ });
124
+ if (result && result.keywords && result.keywords.length > 0) {
125
+ this.keywordsText = result.keywords.join(', ');
126
+ }
127
+ } finally {
128
+ this.isLoading = false;
129
+ }
130
+ },
131
+ methods: {
132
+ back() {
133
+ this.$emit('on-go-back');
134
+ },
135
+ save() {
136
+ if (this.isLoading) return;
137
+
138
+ trackEvent({
139
+ eventCategory: this.eventCategory,
140
+ eventAction: 'keywords',
141
+ eventLabel: 'Clicked_Continue',
142
+ event: 'click',
143
+ });
144
+
145
+ this.$emit('on-save', {
146
+ keywords: this.keywordsText,
147
+ });
148
+ },
149
+ onKeywordsKeyUp(e) {
150
+ if (e.key === 'Enter' && !this.isLoading) {
151
+ this.save();
152
+ }
153
+ },
154
+ },
155
+ };
156
+ </script>
@@ -55,13 +55,26 @@
55
55
  @on-save="onSaveBusinessText"
56
56
  />
57
57
 
58
+ <LogoKeywords
59
+ v-if="showKeywordsStep && !isAttemptingToExit && currentStep === 4 && uploadedLogoData"
60
+ :progress-label="currentStepProgressLabel"
61
+ :event-category="eventCategory"
62
+ :saved-keywords="savedKeywords"
63
+ :business-name="(savedBusinessText && savedBusinessText.businessText) || ''"
64
+ :template-type="templateType"
65
+ :anti-forgery-token="antiForgeryToken"
66
+ :refresh-anti-forgery-token="refreshAntiForgeryToken"
67
+ @on-go-back="onGoBackToBusinessText"
68
+ @on-save="onSaveKeywords"
69
+ />
70
+
58
71
  <LogoBusinessBrandColours
59
- v-if="!isAttemptingToExit && currentStep === 4 && uploadedLogoData && !isCurrentlySaving"
72
+ v-if="!isAttemptingToExit && currentStep === brandColoursStep && uploadedLogoData && !isCurrentlySaving"
60
73
  :logo-data="uploadedLogoData"
61
74
  :cropped-logo-image="croppedImageBoxDataUrl"
62
75
  :total-num-steps="totalNumSteps"
63
76
  :event-category="eventCategory"
64
- @on-go-back="onGoBackToBusinessText"
77
+ @on-go-back="onGoBackFromBrandColours"
65
78
  @on-save="onBrandColoursSave"
66
79
  />
67
80
 
@@ -102,6 +115,7 @@ import LogoCropper from './LogoCropper.vue';
102
115
  import LogoPreview from './LogoPreview.vue';
103
116
  import LogoBusinessText from './LogoBusinessText.vue';
104
117
  import LogoBusinessBrandColours from './LogoBusinessBrandColours.vue';
118
+ import LogoKeywords from './LogoKeywords.vue';
105
119
  import LogoUploadingLoader from './LogoUploadingLoader.vue';
106
120
 
107
121
  export default {
@@ -115,6 +129,7 @@ export default {
115
129
  LogoPreview,
116
130
  LogoBusinessText,
117
131
  LogoBusinessBrandColours,
132
+ LogoKeywords,
118
133
  LogoUploadingLoader,
119
134
  },
120
135
  props: {
@@ -142,6 +157,26 @@ export default {
142
157
  type: Boolean,
143
158
  default: false,
144
159
  },
160
+ showKeywordsStep: {
161
+ type: Boolean,
162
+ required: false,
163
+ default: false,
164
+ },
165
+ templateType: {
166
+ type: String,
167
+ required: false,
168
+ default: null,
169
+ },
170
+ antiForgeryToken: {
171
+ type: String,
172
+ required: false,
173
+ default: '',
174
+ },
175
+ refreshAntiForgeryToken: {
176
+ type: Function,
177
+ required: false,
178
+ default: null,
179
+ },
145
180
  },
146
181
  setup() {
147
182
  return {
@@ -152,12 +187,13 @@ export default {
152
187
  return {
153
188
  currentStep: this.useDropzone ? 0 : 1,
154
189
  includeDropzoneInModal: this.useDropzone,
155
- totalNumSteps: this.useDropzone ? 5 : 4,
190
+ totalNumSteps: 4 + (this.useDropzone ? 1 : 0) + (this.showKeywordsStep ? 1 : 0),
156
191
  errorMessage: null,
157
192
  isAttemptingToExit: false,
158
193
  uploadedLogoData: null,
159
194
  croppedImageBoxBounds: null,
160
195
  savedBusinessText: null,
196
+ savedKeywords: null,
161
197
  brandColourData: null,
162
198
  isCurrentlySaving: false,
163
199
  };
@@ -166,9 +202,9 @@ export default {
166
202
  currentStepProgressLabel() {
167
203
  if (this.includeDropzoneInModal) {
168
204
  const currentStepDisplay = this.currentStep === 0 ? 1 : this.currentStep;
169
- return this.uploadYourLogoTr('stepOf', { CURRENT: currentStepDisplay, TOTAL: 5 });
205
+ return this.uploadYourLogoTr('stepOf', { CURRENT: currentStepDisplay, TOTAL: this.totalNumSteps });
170
206
  }
171
- return this.uploadYourLogoTr('stepOf', { CURRENT: this.currentStep - 1, TOTAL: 4 });
207
+ return this.uploadYourLogoTr('stepOf', { CURRENT: this.currentStep - 1, TOTAL: this.totalNumSteps });
172
208
  },
173
209
  hasError() {
174
210
  return !!this.errorMessage;
@@ -178,11 +214,17 @@ export default {
178
214
  },
179
215
  currentStepTrackingLabel() {
180
216
  const stepTwoLabel = this.currentStep === 2 && !this.canCropImage ? 'previewLogo' : 'cropLogo';
181
-
182
- const steps = ['logoUploader', stepTwoLabel, 'businessName', 'brandColors'];
183
-
217
+ const steps = this.showKeywordsStep
218
+ ? ['logoUploader', stepTwoLabel, 'businessName', 'keywords', 'brandColors']
219
+ : ['logoUploader', stepTwoLabel, 'businessName', 'brandColors'];
184
220
  return steps[this.currentStep - 1];
185
221
  },
222
+ keywordsStep() {
223
+ return 4;
224
+ },
225
+ brandColoursStep() {
226
+ return this.showKeywordsStep ? 5 : 4;
227
+ },
186
228
  eventCategory() {
187
229
  if (this.isPostPurchaseUserUpload) {
188
230
  return 'BYO-PostPurchase';
@@ -257,10 +299,19 @@ export default {
257
299
  this.$emit('on-back', { currentStepTrackingLabel: this.currentStepTrackingLabel });
258
300
  this.currentStep = 3;
259
301
  },
302
+ onSaveKeywords(payload) {
303
+ this.$emit('on-save-keywords', { keywords: payload.keywords });
304
+ this.savedKeywords = payload.keywords;
305
+ this.currentStep = this.brandColoursStep;
306
+ },
307
+ onGoBackFromBrandColours() {
308
+ this.$emit('on-back', { currentStepTrackingLabel: this.currentStepTrackingLabel });
309
+ this.currentStep = this.showKeywordsStep ? this.keywordsStep : 3;
310
+ },
260
311
  onSaveBusinessText(payload) {
261
312
  this.$emit('on-save-business-text', { businessText: payload.businessText });
262
313
  this.savedBusinessText = payload;
263
- this.currentStep = 4;
314
+ this.currentStep = this.showKeywordsStep ? this.keywordsStep : this.brandColoursStep;
264
315
  },
265
316
  onBrandColoursSave(payload) {
266
317
  this.$emit('on-brand-colors-save', {
@@ -304,6 +355,7 @@ export default {
304
355
  this.uploadedLogoData = null;
305
356
  this.croppedImageBoxBounds = null;
306
357
  this.savedBusinessText = null;
358
+ this.savedKeywords = null;
307
359
  this.brandColourData = null;
308
360
  },
309
361
  },
@@ -1,34 +1,37 @@
1
1
  {
2
- "uploadYourLogo" : {
3
- "uploadYourLogoText" : "Laden Sie Ihr Logo hoch",
4
- "disclaimerText" : "Bitte stellen Sie sicher, dass Sie über die Nutzungsrechte für alle hochgeladenen Bilder verfügen.",
5
- "generatingDesigns" : "Designs werden erstellt ...",
6
- "uploadingAndConverting" : "Ihr Logo wird hochgeladen und konvertiert ...",
7
- "stepOf" : "Schritt {{CURRENT}} von {{TOTAL}}",
8
- "uploadError" : "Fehler beim Hochladen",
9
- "cancel" : "Abbrechen",
10
- "continue" : "Weiter",
11
- "back" : "Zurück",
12
- "no" : "Nein",
13
- "yes" : "Ja",
14
- "businessName" : "Name des Unternehmens",
15
- "businessNameDescription" : "Geben Sie Ihren Logotext oder Unternehmensnamen ein",
16
- "cropYourLogo" : "Schneiden Sie Ihr Logo zu",
17
- "cropDescription" : "Schneiden Sie Ihr Logo-Design so zu, dass es auf die Arbeitsfläche unseres Logo-Erstellers passt",
18
- "logoPreview" : "Logo-Vorschau",
19
- "logoPreviewDescription" : "Ihr Logo sieht großartig aus! Helfen Sie uns bei der Einrichtung Ihres Logos, indem Sie die nächsten Schritte ausführen.",
20
- "primaryTextColor" : "Primäre Textfarbe",
21
- "primaryTextColorDescription" : "Helfen Sie uns bei der Einrichtung Ihres Logos, indem Sie die primäre Textfarbe bestätigen. Wählen Sie aus den verfügbaren Farben oder klicken Sie auf das Plus-Symbol, um eine weitere Farbe hinzuzufügen.",
22
- "backgroundColor" : "Hintergrundfarbe",
23
- "backgroundColorDescription" : "Helfen Sie uns bei der Einrichtung Ihres Logos, indem Sie die Hintergrundfarbe bestätigen. Wählen Sie aus den verfügbaren Farben oder klicken Sie auf das Plus-Symbol, um eine weitere Farbe hinzuzufügen.",
24
- "colorsWarning" : "Ihre Text- und Hintergrundfarben sind zu ähnlich. Bitte wählen Sie eine deutlichere Paarung, um sicherzustellen, dass sie hochwertige Designs erstellen.",
25
- "exitConfirmationTitle" : "Möchten Sie die Anwendung wirklich verlassen?",
26
- "exitConfirmationDescription" : "Der Fortschritt Ihres Logo-Uploads in dieser Sitzung geht verloren",
27
- "maxByoFileErrorMessage" : "Ihre Datei überschreitet die maximale Größe von 25 MB. Bitte wählen Sie eine kleinere Datei.",
28
- "genericByoErrorMessage" : "Es ist ein unerwarteter Fehler aufgetreten. Bitte versuchen Sie es erneut.",
29
- "dropYourFileHere" : "Legen Sie Ihre Datei hier ab oder",
30
- "clickToUpload" : "Klicken zum Hochladen",
31
- "acceptedFiles" : "Wir akzeptieren PNG-, JPG-, SVG- und EPS-Dateien bis zu 25 MB.",
32
- "wrongUploadType" : "Sie können Dateien dieses Typs nicht hochladen."
2
+ "uploadYourLogo": {
3
+ "uploadYourLogoText": "Laden Sie Ihr Logo hoch",
4
+ "disclaimerText": "Bitte stellen Sie sicher, dass Sie über die Nutzungsrechte für alle hochgeladenen Bilder verfügen.",
5
+ "generatingDesigns": "Designs werden erstellt ...",
6
+ "uploadingAndConverting": "Ihr Logo wird hochgeladen und konvertiert ...",
7
+ "stepOf": "Schritt {{CURRENT}} von {{TOTAL}}",
8
+ "uploadError": "Fehler beim Hochladen",
9
+ "cancel": "Abbrechen",
10
+ "continue": "Weiter",
11
+ "back": "Zurück",
12
+ "no": "Nein",
13
+ "yes": "Ja",
14
+ "businessName": "Name des Unternehmens",
15
+ "businessNameDescription": "Geben Sie Ihren Logotext oder Unternehmensnamen ein",
16
+ "cropYourLogo": "Schneiden Sie Ihr Logo zu",
17
+ "cropDescription": "Schneiden Sie Ihr Logo-Design so zu, dass es auf die Arbeitsfläche unseres Logo-Erstellers passt",
18
+ "logoPreview": "Logo-Vorschau",
19
+ "logoPreviewDescription": "Ihr Logo sieht großartig aus! Helfen Sie uns bei der Einrichtung Ihres Logos, indem Sie die nächsten Schritte ausführen.",
20
+ "primaryTextColor": "Primäre Textfarbe",
21
+ "primaryTextColorDescription": "Helfen Sie uns bei der Einrichtung Ihres Logos, indem Sie die primäre Textfarbe bestätigen. Wählen Sie aus den verfügbaren Farben oder klicken Sie auf das Plus-Symbol, um eine weitere Farbe hinzuzufügen.",
22
+ "backgroundColor": "Hintergrundfarbe",
23
+ "backgroundColorDescription": "Helfen Sie uns bei der Einrichtung Ihres Logos, indem Sie die Hintergrundfarbe bestätigen. Wählen Sie aus den verfügbaren Farben oder klicken Sie auf das Plus-Symbol, um eine weitere Farbe hinzuzufügen.",
24
+ "colorsWarning": "Ihre Text- und Hintergrundfarben sind zu ähnlich. Bitte wählen Sie eine deutlichere Paarung, um sicherzustellen, dass sie hochwertige Designs erstellen.",
25
+ "exitConfirmationTitle": "Möchten Sie die Anwendung wirklich verlassen?",
26
+ "exitConfirmationDescription": "Der Fortschritt Ihres Logo-Uploads in dieser Sitzung geht verloren",
27
+ "maxByoFileErrorMessage": "Ihre Datei überschreitet die maximale Größe von 25 MB. Bitte wählen Sie eine kleinere Datei.",
28
+ "genericByoErrorMessage": "Es ist ein unerwarteter Fehler aufgetreten. Bitte versuchen Sie es erneut.",
29
+
30
+ "dropYourFileHere": "Legen Sie Ihre Datei hier ab oder",
31
+ "clickToUpload": "Klicken zum Hochladen",
32
+ "acceptedFiles": "Wir akzeptieren PNG-, JPG-, SVG- und EPS-Dateien bis zu 25 MB.",
33
+ "wrongUploadType": "Sie können Dateien dieses Typs nicht hochladen.",
34
+ "keywords": "Schlüsselwörter",
35
+ "keywordsDescription": "Fügen Sie Schlüsselwörter hinzu, die relevant für Ihr Unternehmen und Ihr Logo sind"
33
36
  }
34
37
  }
@@ -1,34 +1,37 @@
1
1
  {
2
- "uploadYourLogo" : {
3
- "uploadYourLogoText" : "Sube tu logo",
4
- "disclaimerText" : "Asegúrate de que tienes derecho a usar cualquier imagen que subas.",
5
- "generatingDesigns" : "Generando diseños...",
6
- "uploadingAndConverting" : "Subiendo y convirtiendo tu logo...",
7
- "stepOf" : "Paso {{CURRENT}} de {{TOTAL}}",
8
- "uploadError" : "Error de carga",
9
- "cancel" : "Cancelar",
10
- "continue" : "Continuar",
11
- "back" : "Volver",
12
- "no" : "No",
13
- "yes" : "Sí",
14
- "businessName" : "Nombre del negocio",
15
- "businessNameDescription" : "Introduce el texto de tu logo o el nombre de tu negocio",
16
- "cropYourLogo" : "Recorta tu logo",
17
- "cropDescription" : "Recorta tu diseño de logo para que encaje en nuestro lienzo del creador de logos",
18
- "logoPreview" : "Vista previa del logo",
19
- "logoPreviewDescription" : "¡Tu logo tiene un aspecto genial! Ayúdanos a configurar tu logo completando los siguientes pasos.",
20
- "primaryTextColor" : "Color principal del texto",
21
- "primaryTextColorDescription" : "Ayúdanos a configurar tu logo confirmando el color principal del texto. Elige entre los colores disponibles o haz clic en el icono de más (+) para añadir otro.",
22
- "backgroundColor" : "Color de fondo",
23
- "backgroundColorDescription" : "Ayúdanos a configurar tu logo confirmando el color de fondo. Elige entre los colores disponibles o haz clic en el icono de más (+) para añadir otro.",
24
- "colorsWarning" : "Los colores del texto y del fondo son demasiado similares. Elige una combinación más diferente para conseguir crear diseños de calidad.",
25
- "exitConfirmationTitle" : "¿Estás seguro de que quieres salir?",
26
- "exitConfirmationDescription" : "El progreso de carga de tu logo en esta sesión se perderá.",
27
- "maxByoFileErrorMessage" : "Tu archivo supera el tamaño máximo de 25 MB. Elige un archivo más pequeño.",
28
- "genericByoErrorMessage" : "Se ha producido un error inesperado. Inténtalo de nuevo.",
29
- "dropYourFileHere" : "Suelta el archivo aquí o",
30
- "clickToUpload" : "haz clic para subirlo",
31
- "acceptedFiles" : "Aceptamos archivos PNG, JPG, SVG o EPS de hasta 25 MB",
32
- "wrongUploadType" : "No puedes subir archivos de este tipo."
2
+ "uploadYourLogo": {
3
+ "uploadYourLogoText": "Sube tu logo",
4
+ "disclaimerText": "Asegúrate de que tienes derecho a usar cualquier imagen que subas.",
5
+ "generatingDesigns": "Generando diseños...",
6
+ "uploadingAndConverting": "Subiendo y convirtiendo tu logo...",
7
+ "stepOf": "Paso {{CURRENT}} de {{TOTAL}}",
8
+ "uploadError": "Error de carga",
9
+ "cancel": "Cancelar",
10
+ "continue": "Continuar",
11
+ "back": "Volver",
12
+ "no": "No",
13
+ "yes": "Sí",
14
+ "businessName": "Nombre del negocio",
15
+ "businessNameDescription": "Introduce el texto de tu logo o el nombre de tu negocio",
16
+ "cropYourLogo": "Recorta tu logo",
17
+ "cropDescription": "Recorta tu diseño de logo para que encaje en nuestro lienzo del creador de logos",
18
+ "logoPreview": "Vista previa del logo",
19
+ "logoPreviewDescription": "¡Tu logo tiene un aspecto genial! Ayúdanos a configurar tu logo completando los siguientes pasos.",
20
+ "primaryTextColor": "Color principal del texto",
21
+ "primaryTextColorDescription": "Ayúdanos a configurar tu logo confirmando el color principal del texto. Elige entre los colores disponibles o haz clic en el icono de más (+) para añadir otro.",
22
+ "backgroundColor": "Color de fondo",
23
+ "backgroundColorDescription": "Ayúdanos a configurar tu logo confirmando el color de fondo. Elige entre los colores disponibles o haz clic en el icono de más (+) para añadir otro.",
24
+ "colorsWarning": "Los colores del texto y del fondo son demasiado similares. Elige una combinación más diferente para conseguir crear diseños de calidad.",
25
+ "exitConfirmationTitle": "¿Estás seguro de que quieres salir?",
26
+ "exitConfirmationDescription": "El progreso de carga de tu logo en esta sesión se perderá.",
27
+ "maxByoFileErrorMessage": "Tu archivo supera el tamaño máximo de 25 MB. Elige un archivo más pequeño.",
28
+ "genericByoErrorMessage": "Se ha producido un error inesperado. Inténtalo de nuevo.",
29
+
30
+ "dropYourFileHere": "Suelta el archivo aquí o",
31
+ "clickToUpload": "haz clic para subirlo",
32
+ "acceptedFiles": "Aceptamos archivos PNG, JPG, SVG o EPS de hasta 25 MB",
33
+ "wrongUploadType": "No puedes subir archivos de este tipo.",
34
+ "keywords": "Palabras clave",
35
+ "keywordsDescription": "Añade palabras clave relacionadas con tu negocio y logo"
33
36
  }
34
37
  }
@@ -1,34 +1,37 @@
1
1
  {
2
- "uploadYourLogo" : {
3
- "uploadYourLogoText" : "Téléchargez votre logo",
4
- "disclaimerText" : "Veuillez vous assurer que vous avez le droit d'utiliser toute image que vous téléchargez.",
5
- "generatingDesigns" : "Génération de designs...",
6
- "uploadingAndConverting" : "Téléchargement et conversion de votre logo...",
7
- "stepOf" : "Étape {{CURRENT}} sur {{TOTAL}}",
8
- "uploadError" : "Erreur de téléchargement",
9
- "cancel" : "Annuler",
10
- "continue" : "Continuer",
11
- "back" : "Retour",
12
- "no" : "Non",
13
- "yes" : "Oui",
14
- "businessName" : "Nom de l’entreprise",
15
- "businessNameDescription" : "Saisissez le texte de votre logo ou le nom de votre entreprise",
16
- "cropYourLogo" : "Recadrez votre logo",
17
- "cropDescription" : "Recadrez votre logo pour qu'il s'adapte au canevas de notre outil de création de logos",
18
- "logoPreview" : "Aperçu du logo",
19
- "logoPreviewDescription" : "Votre logo est magnifique ! Aidez-nous à configurer votre logo en suivant les étapes suivantes.",
20
- "primaryTextColor" : "Couleur principale du texte",
21
- "primaryTextColorDescription" : "Aidez-nous à configurer votre logo en confirmant la couleur principale du texte. Choisissez parmi les couleurs disponibles ou cliquez sur l'icône plus pour en ajouter une autre.",
22
- "backgroundColor" : "Couleur d’arrière-plan",
23
- "backgroundColorDescription" : "Aidez-nous à configurer votre logo en confirmant la couleur d'arrière-plan. Choisissez parmi les couleurs disponibles ou cliquez sur l'icône plus pour en ajouter une autre.",
24
- "colorsWarning" : "Les couleurs de votre texte et de votre arrière-plan sont trop semblables. Veuillez choisir une combinaison plus distincte pour garantir un design de qualité.",
25
- "exitConfirmationTitle" : "Voulez-vous vraiment quitter ?",
26
- "exitConfirmationDescription" : "La progression du téléchargement de votre logo au cours de cette session sera perdue",
27
- "maxByoFileErrorMessage" : "Votre fichier dépasse la taille maximale de 25 Mo. Veuillez choisir un fichier plus petit.",
28
- "genericByoErrorMessage" : "Une erreur inattendue s'est produite. Veuillez réessayer.",
29
- "dropYourFileHere" : "Déposez votre fichier ici ou",
30
- "clickToUpload" : "cliquez pour télécharger",
31
- "acceptedFiles" : "Nous acceptons les fichiers PNG, JPG, SVG ou EPS jusqu'à 25 Mo",
32
- "wrongUploadType" : "Vous ne pouvez pas télécharger des fichiers de ce type."
2
+ "uploadYourLogo": {
3
+ "uploadYourLogoText": "Téléchargez votre logo",
4
+ "disclaimerText": "Veuillez vous assurer que vous avez le droit d'utiliser toute image que vous téléchargez.",
5
+ "generatingDesigns": "Génération de designs...",
6
+ "uploadingAndConverting": "Téléchargement et conversion de votre logo...",
7
+ "stepOf": "Étape {{CURRENT}} sur {{TOTAL}}",
8
+ "uploadError": "Erreur de téléchargement",
9
+ "cancel": "Annuler",
10
+ "continue": "Continuer",
11
+ "back": "Retour",
12
+ "no": "Non",
13
+ "yes": "Oui",
14
+ "businessName": "Nom de l’entreprise",
15
+ "businessNameDescription": "Saisissez le texte de votre logo ou le nom de votre entreprise",
16
+ "cropYourLogo": "Recadrez votre logo",
17
+ "cropDescription": "Recadrez votre logo pour qu'il s'adapte au canevas de notre outil de création de logos",
18
+ "logoPreview": "Aperçu du logo",
19
+ "logoPreviewDescription": "Votre logo est magnifique ! Aidez-nous à configurer votre logo en suivant les étapes suivantes.",
20
+ "primaryTextColor": "Couleur principale du texte",
21
+ "primaryTextColorDescription": "Aidez-nous à configurer votre logo en confirmant la couleur principale du texte. Choisissez parmi les couleurs disponibles ou cliquez sur l'icône plus pour en ajouter une autre.",
22
+ "backgroundColor": "Couleur d’arrière-plan",
23
+ "backgroundColorDescription": "Aidez-nous à configurer votre logo en confirmant la couleur d'arrière-plan. Choisissez parmi les couleurs disponibles ou cliquez sur l'icône plus pour en ajouter une autre.",
24
+ "colorsWarning": "Les couleurs de votre texte et de votre arrière-plan sont trop semblables. Veuillez choisir une combinaison plus distincte pour garantir un design de qualité.",
25
+ "exitConfirmationTitle": "Voulez-vous vraiment quitter ?",
26
+ "exitConfirmationDescription": "La progression du téléchargement de votre logo au cours de cette session sera perdue",
27
+ "maxByoFileErrorMessage": "Votre fichier dépasse la taille maximale de 25 Mo. Veuillez choisir un fichier plus petit.",
28
+ "genericByoErrorMessage": "Une erreur inattendue s'est produite. Veuillez réessayer.",
29
+
30
+ "dropYourFileHere": "Déposez votre fichier ici ou",
31
+ "clickToUpload": "cliquez pour télécharger",
32
+ "acceptedFiles": "Nous acceptons les fichiers PNG, JPG, SVG ou EPS jusqu'à 25 Mo",
33
+ "wrongUploadType": "Vous ne pouvez pas télécharger des fichiers de ce type.",
34
+ "keywords": "Mots-clés",
35
+ "keywordsDescription": "Ajoutez des mots-clés liés à votre entreprise et à votre logo."
33
36
  }
34
37
  }
@@ -1,34 +1,37 @@
1
1
  {
2
- "uploadYourLogo" : {
3
- "uploadYourLogoText" : "Téléchargez votre logo",
4
- "disclaimerText" : "Veuillez vous assurer que vous avez le droit d'utiliser toute image que vous téléchargez.",
5
- "generatingDesigns" : "Génération de designs...",
6
- "uploadingAndConverting" : "Téléchargement et conversion de votre logo...",
7
- "stepOf" : "Étape {{CURRENT}} sur {{TOTAL}}",
8
- "uploadError" : "Erreur de téléchargement",
9
- "cancel" : "Annuler",
10
- "continue" : "Continuer",
11
- "back" : "Retour",
12
- "no" : "Non",
13
- "yes" : "Oui",
14
- "businessName" : "Nom de l’entreprise",
15
- "businessNameDescription" : "Saisissez le texte de votre logo ou le nom de votre entreprise",
16
- "cropYourLogo" : "Recadrez votre logo",
17
- "cropDescription" : "Recadrez votre logo pour qu'il s'adapte au canevas de notre outil de création de logos",
18
- "logoPreview" : "Aperçu du logo",
19
- "logoPreviewDescription" : "Votre logo est magnifique ! Aidez-nous à configurer votre logo en suivant les étapes suivantes.",
20
- "primaryTextColor" : "Couleur principale du texte",
21
- "primaryTextColorDescription" : "Aidez-nous à configurer votre logo en confirmant la couleur principale du texte. Choisissez parmi les couleurs disponibles ou cliquez sur l'icône plus pour en ajouter une autre.",
22
- "backgroundColor" : "Couleur d’arrière-plan",
23
- "backgroundColorDescription" : "Aidez-nous à configurer votre logo en confirmant la couleur d'arrière-plan. Choisissez parmi les couleurs disponibles ou cliquez sur l'icône plus pour en ajouter une autre.",
24
- "colorsWarning" : "Les couleurs de votre texte et de votre arrière-plan sont trop semblables. Veuillez choisir une combinaison plus distincte pour garantir un design de qualité.",
25
- "exitConfirmationTitle" : "Voulez-vous vraiment quitter ?",
26
- "exitConfirmationDescription" : "La progression du téléchargement de votre logo au cours de cette session sera perdue",
27
- "maxByoFileErrorMessage" : "Votre fichier dépasse la taille maximale de 25 Mo. Veuillez choisir un fichier plus petit.",
28
- "genericByoErrorMessage" : "Une erreur inattendue s'est produite. Veuillez réessayer.",
29
- "dropYourFileHere" : "Déposez votre fichier ici ou",
30
- "clickToUpload" : "cliquez pour télécharger",
31
- "acceptedFiles" : "Nous acceptons les fichiers PNG, JPG, SVG ou EPS jusqu'à 25 Mo",
32
- "wrongUploadType" : "Vous ne pouvez pas télécharger des fichiers de ce type."
2
+ "uploadYourLogo": {
3
+ "uploadYourLogoText": "Téléchargez votre logo",
4
+ "disclaimerText": "Veuillez vous assurer que vous avez le droit d'utiliser toute image que vous téléchargez.",
5
+ "generatingDesigns": "Génération de designs...",
6
+ "uploadingAndConverting": "Téléchargement et conversion de votre logo...",
7
+ "stepOf": "Étape {{CURRENT}} sur {{TOTAL}}",
8
+ "uploadError": "Erreur de téléchargement",
9
+ "cancel": "Annuler",
10
+ "continue": "Continuer",
11
+ "back": "Retour",
12
+ "no": "Non",
13
+ "yes": "Oui",
14
+ "businessName": "Nom de l’entreprise",
15
+ "businessNameDescription": "Saisissez le texte de votre logo ou le nom de votre entreprise",
16
+ "cropYourLogo": "Recadrez votre logo",
17
+ "cropDescription": "Recadrez votre logo pour qu'il s'adapte au canevas de notre outil de création de logos",
18
+ "logoPreview": "Aperçu du logo",
19
+ "logoPreviewDescription": "Votre logo est magnifique ! Aidez-nous à configurer votre logo en suivant les étapes suivantes.",
20
+ "primaryTextColor": "Couleur principale du texte",
21
+ "primaryTextColorDescription": "Aidez-nous à configurer votre logo en confirmant la couleur principale du texte. Choisissez parmi les couleurs disponibles ou cliquez sur l'icône plus pour en ajouter une autre.",
22
+ "backgroundColor": "Couleur d’arrière-plan",
23
+ "backgroundColorDescription": "Aidez-nous à configurer votre logo en confirmant la couleur d'arrière-plan. Choisissez parmi les couleurs disponibles ou cliquez sur l'icône plus pour en ajouter une autre.",
24
+ "colorsWarning": "Les couleurs de votre texte et de votre arrière-plan sont trop semblables. Veuillez choisir une combinaison plus distincte pour garantir un design de qualité.",
25
+ "exitConfirmationTitle": "Voulez-vous vraiment quitter ?",
26
+ "exitConfirmationDescription": "La progression du téléchargement de votre logo au cours de cette session sera perdue",
27
+ "maxByoFileErrorMessage": "Votre fichier dépasse la taille maximale de 25 Mo. Veuillez choisir un fichier plus petit.",
28
+ "genericByoErrorMessage": "Une erreur inattendue s'est produite. Veuillez réessayer.",
29
+
30
+ "dropYourFileHere": "Déposez votre fichier ici ou",
31
+ "clickToUpload": "cliquez pour télécharger",
32
+ "acceptedFiles": "Nous acceptons les fichiers PNG, JPG, SVG ou EPS jusqu'à 25 Mo",
33
+ "wrongUploadType": "Vous ne pouvez pas télécharger des fichiers de ce type.",
34
+ "keywords": "Mots-clés",
35
+ "keywordsDescription": "Ajoutez des mots-clés liés à votre entreprise et à votre logo"
33
36
  }
34
37
  }
@@ -30,6 +30,8 @@
30
30
  "dropYourFileHere": "Drop your file here or",
31
31
  "clickToUpload": "click to upload",
32
32
  "acceptedFiles": "We accept PNG, JPG, SVG or EPS files up to 25MB",
33
- "wrongUploadType": "You can't upload files of this type."
33
+ "wrongUploadType": "You can't upload files of this type.",
34
+ "keywords": "Keywords",
35
+ "keywordsDescription": "Add keywords related to your business and logo"
34
36
  }
35
37
  }