#!/usr/bin/env node

/**
 * Bud file for locale
 * Executing this file renders locale resources.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{pkg.name}}.
 *
 * @see https://github.com/coz-repo/coz
 */

"use strict";

const apemanBudLocale = require('apeman-bud-locale');

module.exports = apemanBudLocale({
    /** Languages to render */
    lang: ['en', 'ja'],
    /** Namespaces inside each locales */
    namespace: [
{{#each params.namespace}}        '{{{this}}}'{{#if @last}}{{else}},{{/if}}
{{/each}}
    ]
});

{{{read _render}}}
