
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
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.
With npm:
$ npm install --dev crates
With Yarn:
$ yarn add crates
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.
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
.
git checkout -b my-new-feature
git commit -m 'Add some feature'
git push origin my-new-feature
or
Feel free to open an issue.
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.
FAQs
A tool to generate your locale files compatible with i18n.
The npm package crates receives a total of 3 weekly downloads. As such, crates popularity was classified as not popular.
We found that crates demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.