to support translated strings, js must pass string by Drupal.t function.
on line 234 & 248 of js file:

      .removeClass('views_slideshow_pause')
      .text('Resume');
  }

should be:

      .removeClass('views_slideshow_pause')
      .text(Drupal.t('Resume'));
  }

Comments

fearlsgroove’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.