You are here

function _zopim_get_languages in Zopim Live Chat 6.2

1 call to _zopim_get_languages()
zopim_admin_settings_form in includes/zopim-customize.admin.inc
Implementation of hook_admin_settings() for configuring the module

File

includes/zopim-customize.admin.inc, line 211
Administrative page callbacks for the zopim module.

Code

function _zopim_get_languages() {
  $languages = array(
    '--' => t('Auto-Detect'),
    'ar' => t('Arabic'),
    'bg' => t('Bulgarian'),
    'cs' => t('Czech'),
    'da' => t('Danish'),
    'de' => t('German'),
    'es' => t('Spanish; Castilian'),
    'fa' => t('Persian'),
    'fo' => t('Faroese'),
    'fr' => t('French'),
    'he' => t('Hebrew'),
    'hr' => t('Croatian'),
    'id' => t('Indonesian'),
    'it' => t('Italian'),
    'ja' => t('Japanese'),
    'ko' => t('Korean'),
    'ms' => t('Malay'),
    'nb' => t('Norwegian Bokmal'),
    'nl' => t('Dutch; Flemish'),
    'pl' => t('Polish'),
    'pt' => t('Portuguese'),
    'ru' => t('Russian'),
    'sk' => t('Slovak'),
    'sl' => t('Slovenian'),
    'sv' => t('Swedish'),
    'th' => t('Thai'),
    'tr' => t('Turkish'),
    'ur' => t('Urdu'),
    'vi' => t('Vietnamese'),
    'zh_CN' => t('Chinese (China)'),
  );
  return $languages;
}