Just a little fix to allow the "Logged in via CAS as" string to be translated :

Replace :
drupal_set_message("Logged in via CAS as " . $user->name . ".");

With :
drupal_set_message(t("Logged in via CAS as %cas_username.", array('%cas_username' => $user->name)));

Comments

metzlerd’s picture

Status: Reviewed & tested by the community » Fixed

Fixed in HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)