Source: i18n.js

/*! util-web-test/modules/i18n */
/*jslint
    browser, long, unordered
*/
/*global
*/
/**
 * i18n resources for test web application.
 *
 * @module util-web-test/modules/i18n
 */
export default Object.freeze({
    en: {
        translation: {
            text: "This is a text.",
            text_html: "This is a <strong>strong</strong> text with HTML. It's <code>23:30</code> πŸ• âÀü<ul><li>Hello</li></ul>",
            text_with_options_one: "There is a single text for {{name}}.",
            text_with_options_other: "There are {{count}} texts for {{name}}.",
            user_custom_error: "Please enter a valid greeting starting with 'Hello'"
        }
    }
});