You are here

function _i18n_selection_mode in Internationalization 6

Same name and namespace in other branches
  1. 5.3 i18n.module \_i18n_selection_mode()
  2. 5 i18n.module \_i18n_selection_mode()
  3. 5.2 i18n.module \_i18n_selection_mode()
1 call to _i18n_selection_mode()
i18n_admin_settings in ./i18n.admin.inc
Form builder function.

File

./i18n.admin.inc, line 53
Extended multilanguage administration and module settings UI.

Code

function _i18n_selection_mode() {
  return array(
    'simple' => t('Current language and language neutral.'),
    'mixed' => t('Mixed current language (if available) or default language (if not) and language neutral.'),
    'default' => t('Only default language and language neutral.'),
    'strict' => t('Only current language.'),
    'off' => t('All content. No language conditions apply.'),
  );
}