function locale_translate_english

Checks whether locale translates to English.

Return value

bool Returns TRUE if content should be translated to English, FALSE otherwise.

6 calls to locale_translate_english()
2 string references to 'locale_translate_english'

File

drupal/core/modules/locale/locale.module, line 752
Enables the translation of the user interface to languages other than English.

Code

function locale_translate_english() {
  return variable_get('locale_translate_english', FALSE);
}