i18nliner
i18nliner copied to clipboard
I18n made simple
since i18nliner and i18nliner-js can both use the same .i18nignore file, it might also be nice to share the .i18nrc file this way you could easily set things like inferred_key_format,...
[like this](https://github.com/instructure/canvas-lms/blob/stable/lib/tasks/i18n.rake#L398), but only what's needed
it needs a better name, because 1. it's not clear what it does and 2. it overrides the built-in `t!`
right now this just calls `I18n.backend.send(:translations)[I18n.default_locale]` 1. it should support additional backends 2. it would be nice to have a config option or something to exclude certain things. for example,...
every time I18n.translate is called without a key, it is inferred from the default (unless you're using the literal default as the key). really this should only happen once per...