You are here

function i18n_string_locale_translate_seek_screen in Internationalization 7

String search & translate screen.

Almost exactly the same as the core locale module's implementation, but taking i18n_string_source_language into account for the languages column.

1 string reference to 'i18n_string_locale_translate_seek_screen'
i18n_string_menu_alter in i18n_string/i18n_string.module
Implements hook_menu_alter().

File

i18n_string/i18n_string.pages.inc, line 469
Internationalization (i18n) package - translatable strings reusable admin UI.

Code

function i18n_string_locale_translate_seek_screen() {

  // Add CSS.
  drupal_add_css(drupal_get_path('module', 'locale') . '/locale.css');
  $elements = drupal_get_form('locale_translation_filter_form');
  $output = drupal_render($elements);
  $output .= _i18n_string_locale_translate_seek();
  return $output;
}