/**
 * Exports locale settings{{#if name}} for {{name}}{{/if}}.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{ pkg.name }}.
 *
 * @see https://github.com/apeman-labo/apemanlocale
 */

'use strict'

const apemanlocale = require('apemanlocale')

let locales = apemanlocale(__dirname, {
  default: '{{default}}',
  buildin: true // Use buildin messages as fallback
})

// Check consistency.
locales.validate()


module.exports = locales

if (!module.parent) {
  // Print settings to stdout.
  // locales.print()
}
