locale_translate_export_screen
- Versions
- 6 – 7
locale_translate_export_screen()
User interface for the translation export screen.
Related topics
Code
includes/locale.inc, line 685
<?php
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;
}
?>Login or register to post comments 