diff --git a/src/app/features/administration/stepper/stepper.component.html b/src/app/features/administration/stepper/stepper.component.html
index a31f5ee7..f21a515a 100644
--- a/src/app/features/administration/stepper/stepper.component.html
+++ b/src/app/features/administration/stepper/stepper.component.html
@@ -76,10 +76,12 @@
{{ pollService.form.value.title }}
- (Aucun titre)
+ {{ 'nav.no_title' | translate }}
- Étape {{ step_current }} sur {{ step_max }}
+ {{ 'nav.step' | translate }} {{ step_current }} {{ 'nav.on' | translate }} {{ step_max }}
+
@@ -132,10 +134,10 @@
class="button is-primary is-fullwidth cancel-button-reject-bottom pull-right"
(click)="goToHome()"
>
- Oui, annuler sondage
+ {{ 'popup.cancel.validate' | translate }}
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 807580ae..60e804a0 100755
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -15,6 +15,9 @@
"leave": "Leave",
"previous": "Previous",
"next": "Next",
+ "step": "Step",
+ "on": "on",
+ "no_title": "(no title)",
"save": "Save"
},
"PAGE_NOT_FOUND": {
@@ -61,7 +64,9 @@
"popup": {
"cancel": {
"title": "You will cancel your poll creation",
- "main": "Do you really want to leave the poll creation ?"
+ "main": "Do you really want to leave the poll creation ?",
+ "validate": "Yes, cancel poll",
+ "reject": "No",
}
},
"dates": {
diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json
index f9f7877e..dee777e1 100755
--- a/src/assets/i18n/fr.json
+++ b/src/assets/i18n/fr.json
@@ -14,6 +14,9 @@
"nav": {
"leave": "Quitter",
"previous": "Précédent",
+ "step": "Étape",
+ "on": "sur",
+ "no_title": "(aucun titre)",
"next": "Suivant",
"save": "Enregistrer"
},