I18n bootstrap-tour Ruby on rails

时间:2017-09-29 13:24:56

标签: ruby-on-rails rails-i18n bootstrap-tour

我无法翻译我的标题和内容这是我的代码(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);
 }

0 个答案:

没有答案