Mova is a translation and localization library that aims to be simple and fast.
"Мова" ['mɔwɑ] in Ukrainian and Belarusian means "language".
Because I18n code is hard to reason about.
Not tested in production. Localization part is yet to be implemented.
Add this line to your application's Gemfile and run bundle
:
gem 'mova'
require "mova"
# instantiate a translator with in-memory storage
translator = Mova::Translator.new
# store translations
translator.put(en: {hello: "world!"})
# retreive translations
translator.get("hello", :en) #=> "world!"
# wrap existing storage
require "redis-activesupport"
redis = ActiveSupport::Cache::RedisStore.new("localhost:6379/0")
translator = Mova::Translator.new(storage: redis)
translator.get(:hi_from_redis, :en) #=> "Hi!"
http://rubydoc.info/github/mova-rb/mova/master/frames
-
Translation and localization data should be decoupled.
Localization info describes how dates, numbers, currencies etc. should be rendered, and what pluralization rules and writing direction should be used. This data is rarely if ever changed during project lifetime.
On the other hand translation data is always subject to change, because you may need to adjust text length to fit it into new design, update your product title to be more SEO friendly and so on.
It is more performant to keep localization data in a static Ruby class, rather then fetch it from a translation storage each time when we want to localize a date. This still allows to modify locales on per project level.
Ruby class is also a natural place for methods and collection data types, while procs and hashes being put into a translation storage feels awkward.
-
Translations should be kept in a simple key-value storage.
Simple storage means that given a string key it should return only a string or nil if nothing found. No object serialization. No hashes as a return value.
Such limitation allows to use almost anything as a storage: Ruby hash, file storage that maps to a hash, any RDMBS, any key-value store, or any combination of them.
This also forces decoupling of translation retrieval and translation management (finding untranslated strings, providing hints to translators etc.) since not much data can be put in a key.
-
Translation framework should not be aware of any file format.
If we need to import translations from a file, hash should be used as input format. No matter which file format is used to store data on a disk, whether it be YAML or JSON, or TOML, any option should work transparently.
-
Exception should be used as a last resort when controlling flow.
Raising and catching an exception in Ruby is a very expensive operation and should be avoided whenever possible.
-
Instance is better than singleton.
You can have separate versions of translator for models and templates. You can have different storages. You can use different interpolation rules.
- mova-i18n - integrating with/replacing I18n.