custom-translate.js 324 B

12345678910111213
  1. import translate from 'lib/i18n/translate/translate';
  2. export default function customTranslate(template, replacements) {
  3. if (template === 'Remove') {
  4. template = 'Eliminar';
  5. }
  6. if (template === 'Activate the hand tool') {
  7. template = 'Activar herramienta mano';
  8. }
  9. return translate(template, replacements);
  10. }