UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

44 lines (39 loc) 1.66 kB
'use strict'; var get = require('../get.js'); var merge = require('../merge.js'); const REPLACE_REGEX = /{([^}]*)}/g; class I18n { /** * @param translation A locale object or array of locale objects that overrides default translations. If specifying an array then your desired language dictionary should come first, followed by your fallback language dictionaries */ constructor(translation) { this.translation = {}; // slice the array to make a shallow copy of it, so we don't accidentally // modify the original translation array this.translation = Array.isArray(translation) ? merge.merge(...translation.slice().reverse()) : translation; } translate(id, replacements) { const text = get.get(this.translation, id, ''); if (!text) { return ''; } if (replacements) { return text.replace(REPLACE_REGEX, match => { const replacement = match.substring(1, match.length - 1); if (replacements[replacement] === undefined) { const replacementData = JSON.stringify(replacements); throw new Error(`Error in translation for key '${id}'. No replacement found for key '${replacement}'. The following replacements were passed: '${replacementData}'`); } // This could be a string or a number, but JS doesn't mind which it gets // and can handle that cast internally. So let it, to save us calling // toString() on what's already a string in 90% of cases. return replacements[replacement]; }); } return text; } translationKeyExists(path) { return Boolean(get.get(this.translation, path)); } } exports.I18n = I18n;