You are here

function locale_string_delete_form_submit in Localization client 5

Process string deletion submissions.

File

locale/locale.module, line 445
Enables administrators to manage the site interface languages.

Code

function locale_string_delete_form_submit($form_id, $form_values) {
  include_once './includes/locale.inc';
  _locale_string_delete($form_values['lid']);
}