You are here

function i18n_default_language in Internationalization 5.3

Same name and namespace in other branches
  1. 5 i18n.module \i18n_default_language()
  2. 5.2 i18n.module \i18n_default_language()
  3. 6 i18n.module \i18n_default_language()

Returns default language code

8 calls to i18n_default_language()
i18nstrings_admin_form in i18nstrings/i18nstrings.module
Form callback: i18nstrings_admin_form
i18nstrings_admin_overview in i18nstrings/i18nstrings.module
List of strings
i18nstrings_tt in i18nstrings/i18nstrings.module
Translate configurable string, and store for l10n client
i18n_db_rewrite_sql in ./i18n.module
Implementation of hook_db_rewrite_sql()
i18n_db_rewrite_where in ./i18n.module
Rewrites queries depending on rewriting mode

... See full list

File

./i18n.module, line 403
Internationalization (i18n) module

Code

function i18n_default_language() {
  return i18n_languages('site_default');
}