hey there,

the Quiz module features multi-step forms (quizzes) in which every page has a question. there's a button at the bottom which says either "Next" or "Finish", wether the user is on the last page or not.

now those buttons' captions are wrapped in t() but they can't be translated.

here's the relevant code:

  // Add navigation at the bottom:
  $form['navigation']['submit'] = array(
    '#type' => 'submit',
    '#value' => $is_last ? t('Finish') : t('Next'),
  );

I visited admin/config/regional/translate/i18n_string and refreshed strings for all text groups - multiple times. no joy.

if you need more info, please let me know. thanks!

cheers,
Luciano

Comments

Jose Reyero’s picture

Project: Internationalization » Quiz
Version: 7.x-1.7 » 7.x-5.x-dev
Component: Strings » User interface

The way to translate this is using t() so it may be some (maybe caching?) issue with Quiz module. It doesn't make sense to use i18n strings for it.

Moving to that module.

luco’s picture

got it!

the string was being indicated as belonging to modules/locale/locale.datepicker.js.

I translated it anyway and it worked for the Quiz module.

why did this "merge" happen?

ezraw’s picture

Issue summary: View changes
Status: Active » Postponed (maintainer needs more info)
djdevin’s picture

Category: Bug report » Support request
Status: Postponed (maintainer needs more info) » Closed (fixed)