/**
 * @ignore
 *
 * @author Alan Rodas Bonjour <alanrodas@gmail.com>
 *
 * @packageDocumentation
 */
/* eslint-disable max-len */
import { Locale } from './Locale';

export const en: Locale = {
    cli: {
        descriptions: {
            tool: 'The Gobstones Language Parser',
            version: 'Show the version information',
            help: 'Show the tool`s help',
            language: 'Select the language in which the tool works internally',
            in: 'Select the file to parse. If none given, the contents are expected inline',
            out:
                'Select the output file in which to save the results. If none given, the output is written to stdout'
        },
        errors: {
            language:
                'You specified "${lang}" as the language, but that\'s not a valid language. Select one of ${availableLangs}.',
            file: 'The file ${fileName} does not exist or cannot be read.'
        }
    }
};
