我该如何本地化colorbox?

时间:2012-08-22 11:08:53

标签: javascript ruby-on-rails localization coffeescript colorbox

我在我的ROR应用程序中安装了Colorbox。但我需要本地化。在脚本中我有:

file images.js.coffee

$(document).ready ->
          $(".group1").colorbox({rel:'group1',
 transition:"none", maxWidth:"85%", maxHeight:"85%",
 current: "{current} <%= t('views.image.of') %> {total}"})

其中{current}是当前图像,{total}是总图像。

如何从yml文件中粘贴数据(app / config / locales / **。yml)?

2 个答案:

答案 0 :(得分:7)

您正在翻译jQuery插件。在vendor目录中进行,而不是在应用程序区域设置中。

jQuery ColorBox维护一个带有翻译的i18n目录: https://github.com/jackmoore/colorbox/tree/master/i18n

实施例

/*
  jQuery ColorBox language configuration
    language: Spanish (es)
    translated by: migolo
*/
jQuery.extend(jQuery.colorbox.settings, {
    current: "Imagen {current} de {total}",
    previous: "Anterior",
    next: "Siguiente",
    close: "Cerrar",
    xhrError: "Error en la carga del contenido.",
    imgError: "Error en la carga de la imagen."
});

您可以下载一个并将其包含在colorbox之后(如果您使用git submodules则可获得奖励积分。)

Rails >= 3.1

的示例
//= require jquery.colorbox
//= require jquery.colorbox-es

答案 1 :(得分:0)

我用的是宝石 https://github.com/fnando/i18n-js

这是有效的!

$(document).ready ->
      $(".group1").colorbox({rel:'group1',
          transition:"none", maxWidth:"85%", maxHeight:"85%",
           current: "{current} <%= I18n.t('views.image.of') %> {total}"})