Popularity
2.4
Declining
Activity
0.0
Stable
7
2
1
Programming language: Crystal
License: MIT License
Tags:
Misc
crystal-i18n alternatives and similar shards
Based on the "Misc" category.
Alternatively, view crystal-i18n alternatives based on common mentions on social networks and blogs.
-
sentry
Build/Runs your crystal application, watches files, and rebuilds/restarts app on file changes -
wikicr
Wiki in crystal, using Markdown and Git, inspired by dokuwiki. Last features to build are pretty hard, if you have some time to help... :) -
burocracia.cr
👔 Zero-dependency Crystal shard to validate, generate and format Brazilian burocracias (CPF, CNPJ, CEP) -
defined
This shard provides facilities for checking whether a constant exists at compile time, and for a variety of different conditional compilation options. Code can be conditionally compiled based on the existence of a constant, version number constraints, or whether an environment variable is set truthy or not.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of crystal-i18n or a related project?
README
i18n
Installation
Add this to your application's shard.yml
:
dependencies:
i18n:
github: whity/crystal-i18n
Usage
require "i18n/backend/yaml"
# create a i18n object
i18n = I18n.from_yaml_files("[folder where the locale files are located]")
# simple translation
i18n.translate("hello")
# pluralization
i18n.translate("new_message", count: 2)
# number format
i18n.number(123.to_s)
# currency format
i18n.currency(12345.to_s)
# time format
i18n.time(Time.now)
# date format
i18n.date(Time.now, format: "long")
Contributing
- Fork it ( https://github.com/[your-github-name]/i18n/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- whity(https://github.com/whity) André Brás - creator, maintainer