All Projects â†’ dleitee â†’ crates

dleitee / crates

Licence: other
🌎 A tool to generate your locale files compatible with i18n.

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to crates

cldr-engine
Internationalization and localization in Typescript with Unicode CLDR, batteries included
Stars: ✭ 34 (-34.62%)
Mutual labels:  i18n, internationalization, locale
rosetta
A blazing fast internationalization (i18n) library for Crystal with compile-time key lookup.
Stars: ✭ 23 (-55.77%)
Mutual labels:  i18n, internationalization, locale
go-locale
GoLang library used to retrieve the current locale(s) of the operating system.
Stars: ✭ 16 (-69.23%)
Mutual labels:  i18n, locale
grunt-assemble-i18n
Assemble middleware for adding i18n support to projects.
Stars: ✭ 25 (-51.92%)
Mutual labels:  i18n, internationalization
inlang
Open Source Localization Solution for Software.
Stars: ✭ 160 (+207.69%)
Mutual labels:  i18n, internationalization
django-i18nfield
Store internationalized strings in Django models with full forms support
Stars: ✭ 32 (-38.46%)
Mutual labels:  i18n, internationalization
ar-variation
Variation behavior for ActiveRecord
Stars: ✭ 46 (-11.54%)
Mutual labels:  i18n, internationalization
pydantic-i18n
pydantic-i18n is an extension to support an i18n for the pydantic error messages.
Stars: ✭ 32 (-38.46%)
Mutual labels:  i18n, internationalization
tr4n5l4te
Use Google Translate without an API key.
Stars: ✭ 32 (-38.46%)
Mutual labels:  i18n, internationalization
wlc
Weblate command line client
Stars: ✭ 22 (-57.69%)
Mutual labels:  i18n, internationalization
GetCurrency
List all currencies available in NSLocale programmatically using swift 3
Stars: ✭ 18 (-65.38%)
Mutual labels:  i18n, internationalization
frontend-platform
A framework for Open edX micro-frontend applications.
Stars: ✭ 17 (-67.31%)
Mutual labels:  i18n, internationalization
cosmopolite
Typesafe internationalization for Scala
Stars: ✭ 15 (-71.15%)
Mutual labels:  i18n, internationalization
i18n.cr
Internationalization API ( i18n ) for Crystal!
Stars: ✭ 36 (-30.77%)
Mutual labels:  i18n, internationalization
fluent-vue
Internationalization plugin for Vue.js
Stars: ✭ 137 (+163.46%)
Mutual labels:  i18n, internationalization
i18n
internationalize projects to Arabic
Stars: ✭ 67 (+28.85%)
Mutual labels:  i18n, internationalization
lisan
🌈i18n, Reimagined! 🚀A blazing fast and super small i18n library for Javascript
Stars: ✭ 85 (+63.46%)
Mutual labels:  i18n, internationalization
mobx-react-intl
A connector between mobx-react and react-intl
Stars: ✭ 32 (-38.46%)
Mutual labels:  i18n, internationalization
Angular-Gulp-Boilerplate
Clean but full-featured AngularJS boilerplate using Gulp workflow and best practices
Stars: ✭ 30 (-42.31%)
Mutual labels:  i18n, internationalization
jekyll-skeleton
Scaffolding to start with a Jekyll website
Stars: ✭ 27 (-48.08%)
Mutual labels:  i18n, internationalization

Crates

Crates is a library that allows you to generate internationalization's files for any language you need using only a command.

It's perfect for sites that need to be translated into another language, you only need to call the crates' function adding the desired words and then execute the CLI command.

The crates' function is used as a marker for the library and just returns the string passed as an argument.

Install

With npm:

$ npm install --save crates

With Yarn:

$ yarn add crates

How it works

First, you need to check which words you want to translate and then you can use the crates' function like in the code below:

import _ from 'crates'

console.log(_('Hello World'))

If you run this code, it will print:

$ node code.js
Hello World

That means the function by itself don't do anything, only returns its first argument.

But, after executing the CLI as shown below:

$ npx crates create --lang 'es,pt' --glob '**/*.js'

The library will create the internationalization files into the /translations directory.

$ l translations
total 32
drwxr-xr-x  6 danieloliveira  staff   192B Feb 22 08:35 .
drwxr-xr-x  7 danieloliveira  staff   224B Feb 20 21:56 ..
-rw-r--r--  1 danieloliveira  staff   154B Feb 22 08:35 translation.es.json
-rw-r--r--  1 danieloliveira  staff   129B Feb 22 08:35 translation.pt.json

$ cat translations/translation.es.json
{
	"Hello World": "Hello World"
}

These files are compatible with those plugins:

Plugin Link
i18next Github
i18n-webpack-plugin Github
rollup-plugin-i18n Github
gulp-i18n Github

If you know some another plugin, please, let me know.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :)

or

Feel free to open an issue.

License

The MIT License (MIT)

Copyright (c) 2018 Daniel Leite de Oliveira

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].