You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

adonis-antl

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adonis-antl

Localization for adonisjs app

1.0.5
latest
npmnpm
Version published
Weekly downloads
8
-20%
Maintainers
1
Weekly downloads
 
Created
Source

AdonisJS Internalization

Gitter Trello Version Build Status Coverage Status Downloads License

: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.

Table of Contents

Features

  • Has support for Intl and ICU Messaging Format
  • Ships with file and database drivers.
  • Ability to extend drivers.
  • Formatting for relative time, datetime, currency and numbers.
  • Auto detects user locale.
  • Support for named formats.

Installation

Installing AdonisJs Internalization (adonis-antl) is a pretty simple process.

Npm install

npm i --save adonis-antl

Setting up provider

Providers are defined inside bootstrap/app.js file.

const providers = [
  '...',
  'adonis-antl/providers/AntlProvider'
]

Registering Aliases

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.

Config

Configuration for adonis-antl is supposed to be merged inside config/app.js file. You can grab the sample configuration from examples

Usage

Once the installation process has been completed, you are good to make use of the Antl alias inside your app.

Using Locales

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

Official Documentation

Read more about drivers, formatting messages and available methods at official documentation

Contribution Guidelines

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.

Keywords

adonis

FAQs

Package last updated on 12 Dec 2016

Did you know?

Socket

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.

Install

Related posts