From a770e418cdb9748083f78aebf84512814ad696a1 Mon Sep 17 00:00:00 2001 From: Guillaume Rousse <guillaume.rousse@renater.fr> Date: Fri, 23 Feb 2018 16:57:48 +0100 Subject: [PATCH] translate wizard too --- templates/web/fr/select_sp.tt2.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/templates/web/fr/select_sp.tt2.html b/templates/web/fr/select_sp.tt2.html index d574f0c..bc84f48 100644 --- a/templates/web/fr/select_sp.tt2.html +++ b/templates/web/fr/select_sp.tt2.html @@ -9,6 +9,10 @@ jQuery(document).ready(function($){ bodyTag: "fieldset", stepsOrientation: "vertical", transitionEffect: "slideLeft", + labels: { + next: "Suivant", + previous: "Précédent", + }, //saveState: true, onStepChanging: function (event, currentIndex, newIndex) { @@ -19,7 +23,7 @@ jQuery(document).ready(function($){ { form.steps("remove", 1); form.steps("insert", 1, { - title: "Select your email address", + title: "Sélectionnez votre adresse e-mail", contentMode: "async", contentUrl: "[% app.url %]?action=select_email&entityid="+ encodeURIComponent($('#entityid').val()) @@ -32,7 +36,7 @@ jQuery(document).ready(function($){ { form.steps("remove", 2); form.steps("insert", 2, { - title: "Complete email challenge", + title: "Validez le challenge e-mail", contentMode: "async", contentUrl: "[% app.url %]?action=complete_challenge&entityid="+ encodeURIComponent($('#entityid').val())+"&email="+encodeURIComponent($("input:checked[name='email']").val()) -- GitLab