I have a JS script able to detect the default browser language ..
running fine
I can also modify the JS language, passing a global var ..
// Create a JSON Object
var myJSON = {
"lang": "fr"
};
// Pass it to the script immediately...
datePickerController.setGlobalVars(myJSON);
and it runs ... but I would like this script to use the language
selected by the rails app user :
the I18n.default_locale being modified in the rails app
any clue ?
thanks a lot ..
erwin
<%=javascript_tag "window.locale = #{I18n.locale.to_s.inspect};" %>
in your page, and then do e.g.
alert(locale);
from a script.
> --
> You received this message because you are subscribed to the Google Groups "rails-i18n" group.
> To post to this group, send email to rails...@googlegroups.com.
> To unsubscribe from this group, send email to rails-i18n+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/rails-i18n?hl=en.
>
>
I sometimes have make a controller (or abuse something like a
pages_controller) to render a js view. In this view I place all the
initializers to other scripts. I keep all serious javascript into
static files which I can minimize and cache the hell out off.
Example:
# app/views/javascripts/show.js.erb
$(function() {
// Add datepickers to every date field
$('.date input').datepicker({
changeMonth : true,
changeYear : true,
dateFormat : '<%= t('.date_format') %>',
maxDate : '0'
});
});
# config/routes.rb
map.resource :javascript
# app/controllers/javascripts_controller.rb
class JavascriptsController < ApplicationController
def show; end # just render the view
end
# app/views/layouts/application.html.haml
= javascript_include_tag "jquery", "jquery.date-picker", :cache => true
= javascript_include_tag javascript_path(:format => :js)
This might be a bit more than you asked for, but this is how I pass
translations and such to javascript.
Iain
On Tue, Feb 23, 2010 at 19:33, Erwin <yves_...@mac.com> wrote:
http://tore.darell.no/posts/introducing_babilu_rails_i18n_for_your_javascript
Justin
http://github.com/fnando/i18n-js
grimen
On Feb 24, 9:08 am, Justin MacCarthy <jus...@maccarthy.org> wrote:
> Check out this rails plugin,
>
> http://tore.darell.no/posts/introducing_babilu_rails_i18n_for_your_ja...
>
> Justin
Justin