function locale_string_search in Localization client 5
Page handler for the string search.
1 string reference to 'locale_string_search'
- locale_menu in locale/
locale.module - Implementation of hook_menu().
File
- locale/
locale.module, line 399 - Enables administrators to manage the site interface languages.
Code
function locale_string_search() {
include_once './includes/locale.inc';
$output = _locale_string_seek();
$output .= drupal_get_form('_locale_string_seek_form');
return $output;
}