https://github.com/fnando/i18n-dot_lookup
Allow interpolation to be performed on a object's attribute, e.g. %{user.name}
https://github.com/fnando/i18n-dot_lookup
i18n interpolation ruby
Last synced: over 1 year ago
JSON representation
Allow interpolation to be performed on a object's attribute, e.g. %{user.name}
- Host: GitHub
- URL: https://github.com/fnando/i18n-dot_lookup
- Owner: fnando
- License: mit
- Created: 2015-08-10T01:31:35.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2020-09-24T22:51:26.000Z (almost 6 years ago)
- Last Synced: 2025-03-02T06:51:49.247Z (over 1 year ago)
- Topics: i18n, interpolation, ruby
- Language: Ruby
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# i18n-dot_lookup
[](https://travis-ci.org/fnando/i18n-dot_lookup)
[](https://codeclimate.com/github/fnando/i18n-dot_lookup)
[](https://rubygems.org/gems/i18n-dot_lookup)
[](https://rubygems.org/gems/i18n-dot_lookup)
Ever wanted to get properties from an object, like `%{user.name}`? Now you can!
## Installation
Add this line to your application's Gemfile:
```ruby
gem "i18n-dot_lookup"
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install i18n-dot_lookup
## Usage
```ruby
require "i18n-dot_lookup"
require "ostruct"
# You don't need to do this, but can use it to test on your console.
I18n.backend.store_translations :en, {hello: "hello %{user.name}"}
# The user object will probably come from your database
I18n.t :hello, user: OpenStruct.new(name: "john")
#=> hello john
```
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run
`rake test` to run the tests. You can also run `bin/console` for an interactive
prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To
release a new version, update the version number in `version.rb`, and then run
`bundle exec rake release`, which will create a git tag for the version, push
git commits and tags, and push the `.gem` file to
[rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at
https://github.com/fnando/i18n-dot_lookup. This project is intended to be a
safe, welcoming space for collaboration, and contributors are expected to adhere
to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## License
The gem is available as open source under the terms of the
[MIT License](http://opensource.org/licenses/MIT).