0

我无法翻译我的标题和内容,这是我的 (locales/fr.yml) 代码:

fr:
 select: Sélectionnez votre contenu
 content: Choisissez des photos au format paysage pour un meilleur. 

对于我的 js:

var tour = new Tour({
  smartPlacement: false, // does NOT work every time
  backdrop: true,
  steps: [{
      element: ".tuto1",
      placement: 'bottom',
      title: "<%= I18n.t('select') %>",
      content: "<%= I18n.t('content') %>" 
  }]
});


function startTour() {
  // Initialize the tour
  tour.init();
  // Restart from begining
  tour.restart();
  // Start the tour
  tour.start(true);
 }
4

0 回答 0