function _i18n_content_languages in Internationalization 5
Same name and namespace in other branches
- 5.3 i18n.module \_i18n_content_languages()
- 5.2 i18n.module \_i18n_content_languages()
1 call to _i18n_content_languages()
- i18n_form_alter in ./
i18n.module - Implementation of hook_form_alter
File
- ./
i18n.module, line 647 - Internationalization (i18n) module
Code
function _i18n_content_languages() {
return array(
LANGUAGE_SUPPORT_NONE => t('Disabled'),
LANGUAGE_SUPPORT_NORMAL => t('Normal - All enabled languages will be allowed.'),
LANGUAGE_SUPPORT_EXTENDED => t('Extended - All defined languages will be allowed.'),
);
}