locale_translate_export_pot_form

6 locale.inc locale_translate_export_pot_form()
7 locale.admin.inc locale_translate_export_pot_form()

Translation template export form.

Related topics

1 string reference to 'locale_translate_export_pot_form'

File

modules/locale/locale.admin.inc, line 1062
Administration functions for locale.module.

Code

function locale_translate_export_pot_form() {
  // Complete template export of the strings
  $form['export_title'] = array(
    '#type' => 'item', 
    '#title' => t('Export template'), 
    '#description' => t('Generate a Gettext Portable Object Template (<em>.pot</em>) file with all strings from the Drupal locale database.'),
  );
  $form['group'] = array(
    '#type' => 'radios', 
    '#title' => t('Text group'), 
    '#default_value' => 'default', 
    '#options' => module_invoke_all('locale', 'groups'),
  );
  $form['actions'] = array('#type' => 'actions');
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Export'),
  );
  // Reuse PO export submission callback.
  $form['#submit'][] = 'locale_translate_export_po_form_submit';
  return $form;
}
Login or register to post comments