entity->vid) && module_exists('i18n_taxonomy')) { $mode = i18n_taxonomy_vocabulary_mode($this->entity->vid); // We support also terms having no translation enabled, since they can // just be language-aware. if ($mode == I18N_MODE_NONE || $mode == I18N_MODE_ENTITY_TRANSLATION) { $translations = $this->getTranslations(); if (!empty($translations->original)) { return $translations->original; } } } return parent::getLanguage(); } /** * @see EntityTranslationDefaultHandler::entityForm() */ public function entityForm(&$form, &$form_state) { parent::entityForm($form, $form_state); // Remove the translation fieldset when the deletion confirm form is being // displayed. if (isset($form_state['confirm_delete'])) { unset( $form[$this->getLanguageKey()], $form['source_language'], $form['translation'], $form['actions']['delete_translation'] ); } } }