function locale_translate_export_pot_form

Translation template export form.

Related topics

1 string reference to 'locale_translate_export_pot_form'
locale_translate_export_screen in modules/locale/locale.admin.inc
User interface for the translation export screen.

File

modules/locale/locale.admin.inc, line 1062

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.