rex

A simple i18n adapter interface for Crystal i18n l10n
0.1.0 released

Rex

Rex is a simple i18n adapter interface for Crystal. It allows a shard to define translatable text, enabling apps that require the shard to use any i18n shard of choice as backend.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      rex:
        github: GrottoPress/rex
    
  2. Run shards update

  3. Require Rex:

    # ...
    require "rex"
    # ...
    

Usage

  1. Call the i18n helpers in your shard as required:

    # Translation
    Rex.t(:some_text, name: "Ama")
    Rex.t("some_text", {name: "John"})
    Rex.t("some.text", 45, "Judith")
    Rex.t(:another_text)
    
    # Localization
    Rex.l(Time.utc)
    Rex.l(123_456, :arg)
    
  2. The consumer application defines their adapter:

    # ->>> src/config/i18n.cr
    
    require "some_i18n_shard"
    
    struct SomeAppI18nAdapter
      include Rex::Adapter
    
      def translate(text : String | Symbol, *args) : String
        # You may use any i18n shard as backend
        Somei18nShard.translate(text, *args)
      end
    
      def localize(value, *args) : String
        # You may use any i18n shard as backend
        Somei18nShard.localize(value, *args)
      end
    end
    
  3. The consumer application then configures Rex to use this adapter:

    # ->>> src/config/i18n.cr
    
    Rex.configure do |settings|
      settings.adapter = SomeAppI18nAdapter.new
    end
    

    The consumer application sets up translations according to whatever backend they are using.

Testing

Rex comes with Rex::DevAdapter which may be used for tests:

# ->>> spec/my_app/some_spec.cr

Rex.temp_config(adapter: Rex::DevAdapter.new) do
  # ...
  # `Rex::DevAdapter` returns the text passed to `Rex.t` unchanged
  Rex.t(:some_text, {name: "Kwame"}).should(eq "some_text")
  # ...
end

Development

Run tests with crystal spec.

Contributing

  1. Fork it
  2. Switch to the master branch: git checkout master
  3. Create your feature branch: git checkout -b my-new-feature
  4. Make your changes, updating changelog and documentation as appropriate.
  5. Commit your changes: git commit
  6. Push to the branch: git push origin my-new-feature
  7. Submit a new Pull Request against the GrottoPress:master branch.
rex:
  github: GrottoPress/rex
  version: ~> 0.1.0
License MIT
Crystal ~> 1.0

Authors

Dependencies 1

  • habitat ~> 0.4.7
    {'github' => 'luckyframework/habitat', 'version' => '~> 0.4.7'}

Development Dependencies 0

Dependents 1

Last synced .
search fire star recently