Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Super lightweight yet powerful i18n library
Only 20 lines of code to get i18n with internal references (translations in your translations) and simple plurals such as in English or in French. No dependencies.
npm install intljulep
import { i18n } from 'intljulep'
Intljulep uses ES modules, widely supported in browsers nowadays. Import the i18n
function from the intljulep.min.js
file. This file can be located in a CDN (example below) or copied in any directory of your website (for better performance and to be GDPR compliant, since you don’t have to connect to a third party server).
<script type="module">
import { i18n } from 'https://cdn.jsdelivr.net/npm/intljulep@0.2.3/intljulep.min.js'
</script>
i18n.addLocale('en', {
foo: "the bar",
plurals: {
msg: ["message", "messages"],
man: ["man", "men"],
woman: ["woman", "women"]
},
email: {
hey: "Hey!",
// Note the `@` prefix to use other translations in your translation
info: "Hi {name}. {@email.hey} You have {number} {@plurals.msg(number)}."
}
})
i18n.setLocale('en')
i18n('foo') // "the bar"
i18n('email.baz') // "email.baz"
i18n('plurals.msg', 0) // "messages"
i18n('plurals.msg', 1) // "message"
i18n('plurals.msg', 2) // "messages"
i18n('plurals.msg', 3) // "messages"
i18n('email.info', { name: "Laurent", number: 0 }) // "Hi Laurent. Hey! You have 0 messages."
i18n('email.info', { name: "Laurent", number: 1 }) // "Hi Laurent. Hey! You have 1 message."
i18n('email.info', { name: "Laurent", number: 2 }) // "Hi Laurent. Hey! You have 2 messages."
i18n('email.info', { name: "Laurent", number: 3 }) // "Hi Laurent. Hey! You have 3 messages."
i18n.addLocale('fr', {
foo: "le bar"
})
i18n.setLocale('fr')
i18n('foo') // "le bar"
i18n.setLocale('en')
i18n('foo') // "the bar"
Note that you don’t have to use the plurals
key specifically as nothing is hardcoded. You could use a single character key like s
for convenience:
i18n.addLocale('en', {
s: {
msg: ["message", "messages"],
man: ["man", "men"],
woman: ["woman", "women"]
},
})
i18n.setLocale('en')
i18n('s.man', 3) // "men"
FAQs
Super lightweight yet powerful i18n library
The npm package intljulep receives a total of 10 weekly downloads. As such, intljulep popularity was classified as not popular.
We found that intljulep 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.