function i18n_block_block_delete_submit(&$form, $form_state) {
$delta = $form_state['values']['delta'];
// Delete stored strings for the title and content fields.
- i18n_string_remove_string("blocks:block:$delta:title");
- i18n_string_remove_string("blocks:block:$delta:body");
+ i18n_string_remove("blocks:block:$delta:title");
+ i18n_string_remove("blocks:block:$delta:body");
}
/**
*/
function i18n_contact_form_contact_category_delete_form_submit(&$form, $form_state) {
$contact = $form['contact']['#value']['cid'];
- i18n_string_remove_string("contact:category:$contact:category");
- i18n_string_remove_string("contact:category:$contact:reply");
+ i18n_string_remove("contact:category:$contact:category");
+ i18n_string_remove("contact:category:$contact:reply");
}
/**