trailsjs/trails

View on GitHub
archetype/config/i18n.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Internationalization / Localization Settings
 * (app.config.i18n)
 *
 * If your app will touch people from all over the world, i18n (or internationalization)
 * may be an important part of your international strategy.
 *
 * @see http://trailsjs.io/doc/config/i18n
 */

module.exports = {

  /**
   * The default locale
   */
  lng: 'en',

  /**
   * The path to the locales
   */
  resources: {
    en: require('./locales/en.json')
  }

}