You are here

function _i18n_content_languages in Internationalization 5.3

Same name and namespace in other branches
  1. 5 i18n.module \_i18n_content_languages()
  2. 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 693
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.'),
  );
}