JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 16
  • Score
    100M100P100Q44357F
  • License MIT

A tool to generate your locale files compatible with i18n.

Package Exports

  • crates

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (crates) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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 needs be translated into another language, you only need 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 --dev 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:

$ ./node_modules/.bin/crates create --land '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.

Tips

Instead of use ./node_modules/.bin/crates to execute the CLI, you can create a script into package.json file.

{
  "scripts": {
    "crates": "crates create --land 'es,pt' --glob '**/*.js"
  }
}

And then run with npm run crates.

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.