Are there in the world any I18n alternatives?
I just do not like the way I18n stores the translation keys. I would like to store and use them just as Magento does - key is simply a string that i want to show using English locale, for example.
So when i want to translate it i just provide the file with the proper locale name (nl_NL.csv) with the simple key-value format, where the key is my English string i want to translate to Dutch (in the case of nl_NL locale) and the value is the Dutch analogue for my phrase. And if Magento does not finds either the translation file or the translation key - it displays the key itself. And whilst the key is the English phrase, my HTMl shall "fall back" to the English locale.
I've seen some ways to override the default I18n behavior (fast-gettext gem or custom I18n backend), but are there no gems as i described above?