translate()

in components/localization/src/localization.js [80:87]


  translate(text, interpolationObject, numberForPlurals, context) {
    const currentTranslation = this.getTranslationString(
      text, numberForPlurals, context
    );
    return this.interpolate(
      currentTranslation || text, interpolationObject
    );
  }