更改select2 jquery插件区域设置

时间:2014-09-26 10:35:41

标签: ruby-on-rails jquery-select2

我一直在尝试更改formatInputTooShort

的区域设置

为了找到正确的select2.js文件(因为我有几个版本的select2-rails gem),我输入了命令RAILS_ENV=production bundle exec gem list select2-rails。然后我做RAILS_ENV=production bundle exec gem env找到宝石的安装位置。

所以我改变了正确的(我认为)select2.js文件,重新启动了我的unicorn服务器,但是在minimumInputLength上没有改变语言环境。它仍然说“请输入1个或更多字符”而不是我的自定义消息。

任何线索我可能做错了什么?

注意:我使用英语。

2 个答案:

答案 0 :(得分:1)

您可以通过执行以下操作覆盖该功能来覆盖文本:

$(#my_selector).select2({
   minimumInputLength: 1, 
   formatInputLength: function(){
    return "Enter the text you want"
  }
});

答案 1 :(得分:0)

$(#my_selector).select2({
   minimumInputLength: 1, 
  formatNoMatches: function () { return "No se encontraron resultados"; },
  formatInputTooShort: function (input, min) { 
    var n = min - input.length; return "Por favor, introduzca " + n + " nombre"; 
  },
  formatInputTooLong: function (input, max) { 
    var n = input.length - max; 
    return "Por favor, elimine " + n + " car" + (n == 1? "á" : "a") + "cter" + (n == 1? "" : "es"); 
  },
  formatSelectionTooBig: function (limit) { 
    return "Sólo puede seleccionar " + limit + " elemento" + (limit == 1 ? "" : "s"); 
  },
  formatLoadMore: function (pageNumber) { 
    return "Cargando más resultados..."; 
  },
  formatSearching: function () { 
    return "Buscando..."; 
  }
});