function _i18n_content_language_options in Internationalization 6
List of language support modes for content.
1 call to _i18n_content_language_options()
- i18n_form_alter in ./
i18n.module - Implementation of hook_form_alter();
File
- ./
i18n.module, line 969 - Internationalization (i18n) module.
Code
function _i18n_content_language_options() {
return array(
LANGUAGE_SUPPORT_NORMAL => t('Normal - All enabled languages will be allowed.'),
LANGUAGE_SUPPORT_EXTENDED => t('Extended - All defined languages will be allowed.'),
LANGUAGE_SUPPORT_EXTENDED_NOT_DISPLAYED => t('Extended, but not displayed - All defined languages will be allowed for input, but not displayed in links.'),
);
}