Skip to content
Snippets Groups Projects
Commit a770e418 authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

translate wizard too

parent 9d7b6c5e
No related branches found
No related tags found
No related merge requests found
......@@ -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())
......
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