
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
adonis-antl
Advanced tools
:pray: This repository makes it easy to internationalize your AdonisJs applications.
AdonisJs Internalization is an addon to add support for multiple languages. It ships Views Helpers to format dates, numbers, string messages and currency.
Installing AdonisJs Internalization (adonis-antl) is a pretty simple process.
npm i --save adonis-antl
Providers are defined inside bootstrap/app.js
file.
const providers = [
'...',
'adonis-antl/providers/AntlProvider'
]
Aliases are also defined inside bootstrap/app.js
file.
const aliases = {
Antl: 'Adonis/Addons/Antl',
Formats: 'Adonis/Addons/AntlFormats'
}
That's all and you are good to go.
Configuration for adonis-antl
is supposed to be merged inside config/app.js
file. You can grab the sample configuration from examples
Once the installation process has been completed, you are good to make use of the Antl
alias inside your app.
const Antl = use('Antl')
Antl.formatAmount('1000', 'USD') // return $1,000.00
// Runtime locale
Antl.for('fr').formatAmount('1000', 'USD') // return 1 000.00 $US
Read more about drivers, formatting messages and available methods at official documentation
In favor of active development we accept contributions for everyone. You can contribute by submitting a bug, creating pull requests or even improving documentation.
You can find a complete guide to be followed strictly before submitting your pull requests in the Official Documentation.
FAQs
Localization for adonisjs app
We found that adonis-antl 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.