$result = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Db')->create('horde', 'signup')->selectOne($query, $values);
if (empty($result)) {
- throw new Horde_Exception(sprintf($this->_coreDict->t("User \"%s\" does not exist."), $username));
+ throw new Horde_Exception(sprintf(Horde_Core_Translation::t("User \"%s\" does not exist."), $username));
}
$object = new Horde_Core_Auth_Signup_SqlObject($data['user_name']);
$object->setData($data);
$checkedValues = $var->getValue($vars);
$actions = $this->_getActionScripts($form, $var);
$function_name = 'select' . $form_name . $var->getVarName();
- $enable = $this->_coreDict->t("Select all");
- $disable = $this->_coreDict->t("Select none");
- $invert = $this->_coreDict->t("Invert selection");
+ $enable = Horde_Core_Translation::t("Select all");
+ $disable = Horde_Core_Translation::t("Select none");
+ $invert = Horde_Core_Translation::t("Invert selection");
Horde::addScriptFile('tables.js', 'horde');