Sha256: 69e900ef6d61430b32d6b09ac89f5f7cd694b17002fd8d7edd5a6756724c5c46

Contents?: true

Size: 1014 Bytes

Versions: 3

Compression:

Stored size: 1014 Bytes

Contents

# Locale JS

  A fairly simple rails engine that takes your Rails locale and makes it available
  in your Javascript.
  All you have to do is add this to your Gemfile, mount the engine and include the javascript locale in
  your page.

## Examples

  add the gem to your Gemfile

  ```
  gem 'locale_js'
  ```

  mount the engine in our routes.rb

  ```
  mount LocaleJs::Engine => '/i18n'
  ```

  then add this to your application layout

  ```
  <script src="/i18n/locale/<%= I18n.locale %>.js"></script>
  ```

  Populate your locale file as normal..

  ```
  en:
    hello: "Hello World"
    foo: "%{foo} test"
    bar:
      baz: "The craic is %{craic}"
  ```

  You can then translate strings in your JS just like I18n...

  ```
  I18n.t('hello')
  => 'Hello World'

  I18n.t('foo', {foo: 'bar'})
  => 'bar test'

  I18n.t('bar.baz', {craic: 'mighty!'})
  => 'The craic is mighty!'
  ```

## Requirements
  
  Rails 3.0 or greater

## Copyright

Copyright (c) 2012 John Butler

See LICENSE.txt for details.

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
locale_js-0.2.2 README.markdown
locale_js-0.2.1 README.markdown
locale_js-0.2.0 README.markdown