function locale_translate_export_screen
Same name and namespace in other branches
- 7.x drupal-7.x/modules/locale/locale.admin.inc \locale_translate_export_screen()
User interface for the translation export screen.
Related topics
1 string reference to 'locale_translate_export_screen'
- locale_menu in drupal-6.x/
modules/ locale/ locale.module - Implementation of hook_menu().
Archivo
- drupal-6.x/
includes/ locale.inc, line 704 - Administration functions for locale.module.
Código
function locale_translate_export_screen() {
// Get all languages, except English
$names = locale_language_list('name', TRUE);
unset($names['en']);
$output = '';
// Offer translation export if any language is set up.
if (count($names)) {
$output = drupal_get_form('locale_translate_export_po_form', $names);
}
$output .= drupal_get_form('locale_translate_export_pot_form');
return $output;
}