You are here

function i18n_string_object_translate_page in Internationalization 7

Generic translation page for i18n_strings objects.

2 calls to i18n_string_object_translate_page()
i18n_block_translate_tab_page in i18n_block/i18n_block.module
Build a translation page for the given block.
i18n_page_translate_localize in ./i18n.pages.inc
Translate object, string translation

File

i18n_string/i18n_string.module, line 924
Internationalization (i18n) package - translatable strings.

Code

function i18n_string_object_translate_page($object_type, $object_value, $language = NULL) {
  module_load_include('inc', 'i18n_string', 'i18n_string.pages');
  return i18n_string_translate_page_object($object_type, $object_value, $language);
}