<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -10,6 +10,7 @@ DOWNLOAD_PATH = &quot;http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}&quot;
 EXTRA_DEPENDENCIES = [
   'activesupport',
   'activerecord',
+  'locale',
   'gettext',
   ['picnic', '&gt;= 0.8.1']
 ]    # An array of rubygem dependencies [name, version]</diff>
      <filename>config/hoe.rb</filename>
    </modified>
    <modified>
      <diff>@@ -114,21 +114,21 @@ module CASServer::CAS
   
     success = false
     if ticket.nil?
-      error = &quot;Your login request did not include a login ticket. There may be a problem with the authentication system.&quot;
-      $LOG.warn(&quot;Missing login ticket.&quot;)
+      error = _(&quot;Your login request did not include a login ticket. There may be a problem with the authentication system.&quot;)
+      $LOG.warn &quot;Missing login ticket.&quot;
     elsif lt = LoginTicket.find_by_ticket(ticket)
       if lt.consumed?
-        error = &quot;The login ticket you provided has already been used up. Please try logging in again.&quot;
-        $LOG.warn(&quot;Login ticket '#{ticket}' previously used up&quot;)
+        error = _(&quot;The login ticket you provided has already been used up. Please try logging in again.&quot;)
+        $LOG.warn &quot;Login ticket '#{ticket}' previously used up&quot;
       elsif Time.now - lt.created_on &lt; $CONF.maximum_unused_login_ticket_lifetime
-        $LOG.info(&quot;Login ticket '#{ticket}' successfully validated&quot;)
+        $LOG.info &quot;Login ticket '#{ticket}' successfully validated&quot;
       else
-        error = &quot;You took too long to log in (your login ticket has expired). Please try logging in again.&quot;
-        $LOG.warn(&quot;Expired login ticket '#{ticket}'&quot;)
+        error = _(&quot;You took too long to enter your credentials. Please try again.&quot;)
+        $LOG.warn &quot;Expired login ticket '#{ticket}'&quot;
       end
     else
-      error = &quot;The login ticket you provided is invalid. Please try logging in again.&quot;
-      $LOG.warn(&quot;Invalid login ticket '#{ticket}'&quot;)
+      error = _(&quot;The login ticket you provided is invalid. There may be a problem with the authentication system.&quot;)
+      $LOG.warn &quot;Invalid login ticket '#{ticket}'&quot;
     end
     
     lt.consume! if lt
@@ -141,13 +141,13 @@ module CASServer::CAS
   
     if ticket.nil?
       error = &quot;No ticket granting ticket given.&quot;
-      $LOG.debug(error)
+      $LOG.debug error
     elsif tgt = TicketGrantingTicket.find_by_ticket(ticket)
       if $CONF.expire_sessions &amp;&amp; Time.now - tgt.created_on &gt; $CONF.ticket_granting_ticket_expiry
         error = &quot;Your session has expired. Please log in again.&quot;
-        $LOG.info(&quot;Ticket granting ticket '#{ticket}' for user '#{tgt.username}' expired.&quot;)
+        $LOG.info &quot;Ticket granting ticket '#{ticket}' for user '#{tgt.username}' expired.&quot;
       else
-        $LOG.info(&quot;Ticket granting ticket '#{ticket}' for user '#{tgt.username}' successfully validated.&quot;)
+        $LOG.info &quot;Ticket granting ticket '#{ticket}' for user '#{tgt.username}' successfully validated.&quot;
       end
     else
       error = &quot;Invalid ticket granting ticket '#{ticket}' (no matching ticket found in the database).&quot;
@@ -158,25 +158,25 @@ module CASServer::CAS
   end
 
   def validate_service_ticket(service, ticket, allow_proxy_tickets = false)
-    $LOG.debug(&quot;Validating service/proxy ticket '#{ticket}' for service '#{service}'&quot;)
+    $LOG.debug &quot;Validating service/proxy ticket '#{ticket}' for service '#{service}'&quot;
   
     if service.nil? or ticket.nil?
       error = Error.new(:INVALID_REQUEST, &quot;Ticket or service parameter was missing in the request.&quot;)
-      $LOG.warn(&quot;#{error.code} - #{error.message}&quot;)
+      $LOG.warn &quot;#{error.code} - #{error.message}&quot;
     elsif st = ServiceTicket.find_by_ticket(ticket)
       if st.consumed?
         error = Error.new(:INVALID_TICKET, &quot;Ticket '#{ticket}' has already been used up.&quot;)
-        $LOG.warn(&quot;#{error.code} - #{error.message}&quot;)
+        $LOG.warn &quot;#{error.code} - #{error.message}&quot;
       elsif st.kind_of?(CASServer::Models::ProxyTicket) &amp;&amp; !allow_proxy_tickets
         error = Error.new(:INVALID_TICKET, &quot;Ticket '#{ticket}' is a proxy ticket, but only service tickets are allowed here.&quot;)
-        $LOG.warn(&quot;#{error.code} - #{error.message}&quot;)
+        $LOG.warn &quot;#{error.code} - #{error.message}&quot;
       elsif Time.now - st.created_on &gt; $CONF.maximum_unused_service_ticket_lifetime
         error = Error.new(:INVALID_TICKET, &quot;Ticket '#{ticket}' has expired.&quot;)
-        $LOG.warn(&quot;Ticket '#{ticket}' has expired.&quot;)
+        $LOG.warn &quot;Ticket '#{ticket}' has expired.&quot;
       elsif !st.matches_service? service
         error = Error.new(:INVALID_SERVICE, &quot;The ticket '#{ticket}' belonging to user '#{st.username}' is valid,&quot;+
           &quot; but the requested service '#{service}' does not match the service '#{st.service}' associated with this ticket.&quot;)
-        $LOG.warn(&quot;#{error.code} - #{error.message}&quot;)
+        $LOG.warn &quot;#{error.code} - #{error.message}&quot;
       else
         $LOG.info(&quot;Ticket '#{ticket}' for service '#{service}' for user '#{st.username}' successfully validated.&quot;)
       end</diff>
      <filename>lib/casserver/cas.rb</filename>
    </modified>
    <modified>
      <diff>@@ -12,14 +12,32 @@ module CASServer
   end
   
   def determine_locale
-    lang = ($CONF[:default_locale] || &quot;en&quot;)
-    lang = @input['lang'] unless @input['lang'].blank? 
-    lang ||= @cookies['lang'] unless @cookies['lang'].blank? 
-    lang ||= @env.HTTP_ACCEPT_LANGUAGE unless @env.HTTP_ACCEPT_LANGUAGE.blank?
-    lang ||= @env.HTTP_USER_AGENT =~ /[^a-z]([a-z]{2}(-[a-z]{2})?)[^a-z]/i &amp;&amp; 
-              lang = $~[1] unless @env.HTTP_USER_AGENT.blank?
-    @cookies['lang'] = lang
-    
+
+    source = nil
+    lang = case
+    when !input['lang'].blank?
+      source = &quot;'lang' request variable&quot;
+      cookies['lang'] = input['lang']
+      input['lang']
+    when !cookies['lang'].blank?
+      source = &quot;'lang' cookie&quot;
+      cookies['lang']
+    when !@env['HTTP_ACCEPT_LANGUAGE'].blank?
+      source = &quot;'HTTP_ACCEPT_LANGUAGE' header&quot;
+      lang = @env['HTTP_ACCEPT_LANGUAGE']
+    when !@env['HTTP_USER_AGENT'].blank? &amp;&amp; @env['HTTP_USER_AGENT'] =~ /[^a-z]([a-z]{2}(-[a-z]{2})?)[^a-z]/i
+      source = &quot;'HTTP_USER_AGENT' header&quot;
+      $~[1]
+    when !$CONF['default_locale'].blank?
+      source = &quot;'default_locale' config option&quot;
+      $CONF[:default_locale]
+    else
+      source = &quot;default&quot;
+      &quot;en&quot;
+    end
+
+    $LOG.debug &quot;Detected locale is #{lang.inspect} (from #{source})&quot;
+
     lang.gsub!('_','-')
     
     # TODO: Need to confirm that this method of splitting the accepted
@@ -52,6 +70,8 @@ module CASServer
     end
     
     chosen_lang = &quot;en&quot; if chosen_lang.blank?
+
+    $LOG.debug &quot;Chosen locale is #{chosen_lang.inspect}&quot;
     
     return chosen_lang
   end</diff>
      <filename>lib/casserver/localization.rb</filename>
    </modified>
    <modified>
      <diff>@@ -6,8 +6,8 @@
 #
 msgid &quot;&quot;
 msgstr &quot;&quot;
-&quot;Project-Id-Version: RubyCAS-Server \n&quot;
-&quot;POT-Creation-Date: 2008-11-12 11:43-0500\n&quot;
+&quot;Project-Id-Version: rubycas-server \n&quot;
+&quot;POT-Creation-Date: 2009-05-06 18:16-0400\n&quot;
 &quot;PO-Revision-Date: 2008-11-12 12:49-0500\n&quot;
 &quot;Last-Translator: Matt Zukowski &lt;mzukowski@urbacon.net&gt;\n&quot;
 &quot;Language-Team: German\n&quot;
@@ -16,76 +16,104 @@ msgstr &quot;&quot;
 &quot;Content-Transfer-Encoding: 8bit\n&quot;
 &quot;Plural-Forms: nplurals=2; plural=(n != 1);\n&quot;
 
+#: lib/casserver/cas.rb:117
+msgid &quot;&quot;
+&quot;Your login request did not include a login ticket. There may be a problem &quot;
+&quot;with the authentication system.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:121
+msgid &quot;&quot;
+&quot;The login ticket you provided has already been used up. Please try logging &quot;
+&quot;in again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:126
+msgid &quot;You took too long to enter your credentials. Please try again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:130
+msgid &quot;&quot;
+&quot;The login ticket you provided is invalid. There may be a problem with the &quot;
+&quot;authentication system.&quot;
+msgstr &quot;&quot;
+
 #: lib/casserver/controllers.rb:32
 msgid &quot;&quot;
 &quot;You are currently logged in as '%s'. If this is not you, please log in below.&quot;
 msgstr &quot;&quot;
-&quot;Sie sind derzeit angemeldet als '%s'. Sollten dies nicht Sie sein, melden Sie sich bitte unten an.&quot;
+&quot;Sie sind derzeit angemeldet als '%s'. Sollten dies nicht Sie sein, melden &quot;
+&quot;Sie sich bitte unten an.&quot;
 
 #: lib/casserver/controllers.rb:37
 msgid &quot;&quot;
 &quot;The client and server are unable to negotiate authentication. Please try &quot;
 &quot;logging in again later.&quot;
 msgstr &quot;&quot;
-&quot;Client und Server sind nicht in der Lage eine Authentifizierung auszuhandeln. Bitte versuchen &quot;
-&quot;Sie, sich zu einem sp&#228;teren Zeitpunkt erneut anzumelden.&quot;
+&quot;Client und Server sind nicht in der Lage eine Authentifizierung &quot;
+&quot;auszuhandeln. Bitte versuchen Sie, sich zu einem sp&#228;teren Zeitpunkt erneut &quot;
+&quot;anzumelden.&quot;
 
 #: lib/casserver/controllers.rb:54
 msgid &quot;&quot;
 &quot;The server cannot fulfill this gateway request because no service parameter &quot;
 &quot;was given.&quot;
 msgstr &quot;&quot;
-&quot;Der Server kann diese Gateway-Anfrage nicht erf&#252;llen, da keine Service-Parameter &#252;bergeben &quot;
-&quot;wurden.&quot;
+&quot;Der Server kann diese Gateway-Anfrage nicht erf&#252;llen, da keine Service-&quot;
+&quot;Parameter &#252;bergeben wurden.&quot;
 
 #: lib/casserver/controllers.rb:59 lib/casserver/controllers.rb:195
 msgid &quot;&quot;
 &quot;The target service your browser supplied appears to be invalid. Please &quot;
 &quot;contact your system administrator for help.&quot;
 msgstr &quot;&quot;
-&quot;Das Ziel-Service, welches Ihr Browsers geliefert hat, scheint ung&#252;ltig zu sein. Bitte &quot;
-&quot;wenden Sie sich an Ihren Systemadministrator, um Hilfe zu erhalten.&quot;
+&quot;Das Ziel-Service, welches Ihr Browsers geliefert hat, scheint ung&#252;ltig zu &quot;
+&quot;sein. Bitte wenden Sie sich an Ihren Systemadministrator, um Hilfe zu &quot;
+&quot;erhalten.&quot;
 
 #: lib/casserver/controllers.rb:88
 msgid &quot;&quot;
 &quot;Could not guess the CAS login URI. Please supply a submitToURI parameter &quot;
 &quot;with your request.&quot;
 msgstr &quot;&quot;
-&quot;Der CAS-Login-URI konnte nicht erraten werden. Bitte erg&#228;nzen Sie Ihre Anfrage &quot;
-&quot; um einen submitToURI Parameter.&quot;
+&quot;Der CAS-Login-URI konnte nicht erraten werden. Bitte erg&#228;nzen Sie Ihre &quot;
+&quot;Anfrage  um einen submitToURI Parameter.&quot;
 
 #: lib/casserver/controllers.rb:184
 msgid &quot;You have successfully logged in.&quot;
-msgstr &quot;Sie haben sich erfolgreich am Central Authentication Service angemeldet.&quot;
+msgstr &quot;&quot;
+&quot;Sie haben sich erfolgreich am Central Authentication Service angemeldet.&quot;
 
 #: lib/casserver/controllers.rb:200
 msgid &quot;Incorrect username or password.&quot;
 msgstr &quot;Falscher Benutzername oder Passwort.&quot;
 
-#: lib/casserver/controllers.rb:259
+#: lib/casserver/controllers.rb:257
 msgid &quot;You have successfully logged out.&quot;
-msgstr &quot;Sie haben sich erfolgreich vom Central Authentication Service abgemeldet.&quot;
+msgstr &quot;&quot;
+&quot;Sie haben sich erfolgreich vom Central Authentication Service abgemeldet.&quot;
 
-#: lib/casserver/controllers.rb:262
+#: lib/casserver/controllers.rb:260
 msgid &quot; Please click on the following link to continue:&quot;
 msgstr &quot; Bitte klicken Sie auf den folgenden Link, um fortzufahren:&quot;
 
-#: lib/casserver/controllers.rb:412
+#: lib/casserver/controllers.rb:410
 msgid &quot;To generate a login ticket, you must make a POST request.&quot;
-msgstr &quot;F&#252;r die Generierung eines Login-Tickets, ist eine POST-Anfrage erforderlich.&quot;
+msgstr &quot;&quot;
+&quot;F&#252;r die Generierung eines Login-Tickets, ist eine POST-Anfrage erforderlich.&quot;
 
-#: lib/casserver/views.rb:41 lib/casserver/views.rb:111
+#: lib/casserver/views.rb:43 lib/casserver/views.rb:113
 msgid &quot; Central Login&quot;
 msgstr &quot; Zentrales Login&quot;
 
-#: lib/casserver/views.rb:71
+#: lib/casserver/views.rb:73
 msgid &quot;Username&quot;
 msgstr &quot;Benutzername&quot;
 
-#: lib/casserver/views.rb:80
+#: lib/casserver/views.rb:82
 msgid &quot;Password&quot;
 msgstr &quot;Passwort&quot;
 
-#: lib/casserver/views.rb:92
+#: lib/casserver/views.rb:94
 msgid &quot;LOGIN&quot;
 msgstr &quot;ANMELDEN&quot;</diff>
      <filename>po/de_DE/rubycas-server.po</filename>
    </modified>
    <modified>
      <diff>@@ -6,8 +6,8 @@
 #
 msgid &quot;&quot;
 msgstr &quot;&quot;
-&quot;Project-Id-Version: RubyCAS-Server \n&quot;
-&quot;POT-Creation-Date: 2008-11-12 11:43-0500\n&quot;
+&quot;Project-Id-Version: rubycas-server \n&quot;
+&quot;POT-Creation-Date: 2009-05-06 18:16-0400\n&quot;
 &quot;PO-Revision-Date: 2008-11-12 12:30-0500\n&quot;
 &quot;Last-Translator: Matt Zukowski &lt;mzukowski@urbacon.net&gt;\n&quot;
 &quot;Language-Team: Spanish\n&quot;
@@ -16,25 +16,49 @@ msgstr &quot;&quot;
 &quot;Content-Transfer-Encoding: 8bit\n&quot;
 &quot;Plural-Forms: nplurals=2; plural=(n != 1);\n&quot;
 
+#: lib/casserver/cas.rb:117
+msgid &quot;&quot;
+&quot;Your login request did not include a login ticket. There may be a problem &quot;
+&quot;with the authentication system.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:121
+msgid &quot;&quot;
+&quot;The login ticket you provided has already been used up. Please try logging &quot;
+&quot;in again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:126
+msgid &quot;You took too long to enter your credentials. Please try again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:130
+msgid &quot;&quot;
+&quot;The login ticket you provided is invalid. There may be a problem with the &quot;
+&quot;authentication system.&quot;
+msgstr &quot;&quot;
+
 #: lib/casserver/controllers.rb:32
 msgid &quot;&quot;
 &quot;You are currently logged in as '%s'. If this is not you, please log in below.&quot;
 msgstr &quot;&quot;
-&quot;Usted est&#225; conectado como '%s'. Si no lo es usted, por favor, acceda a continuaci&#243;n.&quot;
+&quot;Usted est&#225; conectado como '%s'. Si no lo es usted, por favor, acceda a &quot;
+&quot;continuaci&#243;n.&quot;
 
 #: lib/casserver/controllers.rb:37
 msgid &quot;&quot;
 &quot;The client and server are unable to negotiate authentication. Please try &quot;
 &quot;logging in again later.&quot;
 msgstr &quot;&quot;
-&quot;El cliente y el servidor no est&#225;n en condiciones de negociar la autenticaci&#243;n. Por favor, &quot;
-&quot;intente acceder de nuevo m&#225;s tarde.&quot;
+&quot;El cliente y el servidor no est&#225;n en condiciones de negociar la &quot;
+&quot;autenticaci&#243;n. Por favor, intente acceder de nuevo m&#225;s tarde.&quot;
 
 #: lib/casserver/controllers.rb:54
 msgid &quot;&quot;
 &quot;The server cannot fulfill this gateway request because no service parameter &quot;
 &quot;was given.&quot;
-msgstr &quot;El servidor no puede cumplir con esta petici&#243;n, porque no fue par&#225;metro de &quot;
+msgstr &quot;&quot;
+&quot;El servidor no puede cumplir con esta petici&#243;n, porque no fue par&#225;metro de &quot;
 &quot;servicio prestado.&quot;
 
 #: lib/casserver/controllers.rb:59 lib/casserver/controllers.rb:195
@@ -42,8 +66,9 @@ msgid &quot;&quot;
 &quot;The target service your browser supplied appears to be invalid. Please &quot;
 &quot;contact your system administrator for help.&quot;
 msgstr &quot;&quot;
-&quot;El objetivo de su navegador de servicios ofrecidos parece ser nula. Por favor, &quot;
-&quot;p&#243;ngase en contacto con el administrador del sistema para obtener ayuda.&quot;
+&quot;El objetivo de su navegador de servicios ofrecidos parece ser nula. Por &quot;
+&quot;favor, p&#243;ngase en contacto con el administrador del sistema para obtener &quot;
+&quot;ayuda.&quot;
 
 #: lib/casserver/controllers.rb:88
 msgid &quot;&quot;
@@ -61,30 +86,30 @@ msgstr &quot;Inicio de sesi&#243;n satisfactorio.&quot;
 msgid &quot;Incorrect username or password.&quot;
 msgstr &quot;Incorrecto nombre de usuario o contrase&#241;a.&quot;
 
-#: lib/casserver/controllers.rb:259
+#: lib/casserver/controllers.rb:257
 msgid &quot;You have successfully logged out.&quot;
 msgstr &quot;Cierre de sesi&#243;n satisfactorio.&quot;
 
-#: lib/casserver/controllers.rb:262
+#: lib/casserver/controllers.rb:260
 msgid &quot; Please click on the following link to continue:&quot;
 msgstr &quot; Por favor, haga clic en el v&#237;nculo siguiente para continuar:&quot;
 
-#: lib/casserver/controllers.rb:412
+#: lib/casserver/controllers.rb:410
 msgid &quot;To generate a login ticket, you must make a POST request.&quot;
 msgstr &quot;Para generar un ticket de acceso, usted debe hacer una petici&#243;n POST.&quot;
 
-#: lib/casserver/views.rb:41 lib/casserver/views.rb:111
+#: lib/casserver/views.rb:43 lib/casserver/views.rb:113
 msgid &quot; Central Login&quot;
 msgstr &quot; Servicio de Autenticaci&#243;n Central&quot;
 
-#: lib/casserver/views.rb:71
+#: lib/casserver/views.rb:73
 msgid &quot;Username&quot;
 msgstr &quot;Usuario&quot;
 
-#: lib/casserver/views.rb:80
+#: lib/casserver/views.rb:82
 msgid &quot;Password&quot;
 msgstr &quot;Contrase&#241;a&quot;
 
-#: lib/casserver/views.rb:92
+#: lib/casserver/views.rb:94
 msgid &quot;LOGIN&quot;
 msgstr &quot;INICIAR SESI&#211;N&quot;</diff>
      <filename>po/es_ES/rubycas-server.po</filename>
    </modified>
    <modified>
      <diff>@@ -6,8 +6,8 @@
 #
 msgid &quot;&quot;
 msgstr &quot;&quot;
-&quot;Project-Id-Version: RubyCAS-Server \n&quot;
-&quot;POT-Creation-Date: 2008-11-12 11:43-0500\n&quot;
+&quot;Project-Id-Version: rubycas-server \n&quot;
+&quot;POT-Creation-Date: 2009-05-06 18:16-0400\n&quot;
 &quot;PO-Revision-Date: 2008-11-12 11:53-0500\n&quot;
 &quot;Last-Translator: Matt Zukowski &lt;mzukowski@urbacon.net&gt;\n&quot;
 &quot;Language-Team: French\n&quot;
@@ -16,26 +16,50 @@ msgstr &quot;&quot;
 &quot;Content-Transfer-Encoding: 8bit\n&quot;
 &quot;Plural-Forms: nplurals=2; plural=(n &gt; 1);\n&quot;
 
+#: lib/casserver/cas.rb:117
+msgid &quot;&quot;
+&quot;Your login request did not include a login ticket. There may be a problem &quot;
+&quot;with the authentication system.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:121
+msgid &quot;&quot;
+&quot;The login ticket you provided has already been used up. Please try logging &quot;
+&quot;in again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:126
+msgid &quot;You took too long to enter your credentials. Please try again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:130
+msgid &quot;&quot;
+&quot;The login ticket you provided is invalid. There may be a problem with the &quot;
+&quot;authentication system.&quot;
+msgstr &quot;&quot;
+
 #: lib/casserver/controllers.rb:32
 msgid &quot;&quot;
 &quot;You are currently logged in as '%s'. If this is not you, please log in below.&quot;
 msgstr &quot;&quot;
-&quot;Vous &#234;tes actuellement connect&#233; en tant que '% s'. Si ce n'est pas vous, s'il vous pla&#238;t connectez-vous ci-dessous.&quot;
+&quot;Vous &#234;tes actuellement connect&#233; en tant que '% s'. Si ce n'est pas vous, &quot;
+&quot;s'il vous pla&#238;t connectez-vous ci-dessous.&quot;
 
 #: lib/casserver/controllers.rb:37
 msgid &quot;&quot;
 &quot;The client and server are unable to negotiate authentication. Please try &quot;
 &quot;logging in again later.&quot;
 msgstr &quot;&quot;
-&quot;Le client et le serveur sont incapables de n&#233;gocier l'authentification. S'il vous &quot;
-&quot;pla&#238;t essayez de vous connecter &#224; nouveau plus tard.&quot;
+&quot;Le client et le serveur sont incapables de n&#233;gocier l'authentification. S'il &quot;
+&quot;vous pla&#238;t essayez de vous connecter &#224; nouveau plus tard.&quot;
 
 #: lib/casserver/controllers.rb:54
 msgid &quot;&quot;
 &quot;The server cannot fulfill this gateway request because no service parameter &quot;
 &quot;was given.&quot;
 msgstr &quot;&quot;
-&quot;Le serveur ne peut pas r&#233;pondre &#224; cette demande (pas de 'service' param&#232;tre a &#233;t&#233; donn&#233;).&quot;
+&quot;Le serveur ne peut pas r&#233;pondre &#224; cette demande (pas de 'service' param&#232;tre &quot;
+&quot;a &#233;t&#233; donn&#233;).&quot;
 
 #: lib/casserver/controllers.rb:59 lib/casserver/controllers.rb:195
 msgid &quot;&quot;
@@ -50,41 +74,43 @@ msgid &quot;&quot;
 &quot;Could not guess the CAS login URI. Please supply a submitToURI parameter &quot;
 &quot;with your request.&quot;
 msgstr &quot;&quot;
-&quot;Impossible de deviner le CAS de connexion URI. S'il vous pla&#238;t fournir une submitToURI param&#232;tre  &quot;
-&quot;&#224; votre demande.&quot;
+&quot;Impossible de deviner le CAS de connexion URI. S'il vous pla&#238;t fournir une &quot;
+&quot;submitToURI param&#232;tre  &#224; votre demande.&quot;
 
 #: lib/casserver/controllers.rb:184
 msgid &quot;You have successfully logged in.&quot;
-msgstr &quot;Vous vous &#234;tes authentifi&#233;(e) aupr&#232;s du Service Central d'Authentification.&quot;
+msgstr &quot;&quot;
+&quot;Vous vous &#234;tes authentifi&#233;(e) aupr&#232;s du Service Central d'Authentification.&quot;
 
 #: lib/casserver/controllers.rb:200
 msgid &quot;Incorrect username or password.&quot;
 msgstr &quot;Les informations transmises n'ont pas permis de vous authentifier&quot;
 
-#: lib/casserver/controllers.rb:259
+#: lib/casserver/controllers.rb:257
 msgid &quot;You have successfully logged out.&quot;
 msgstr &quot;Vous vous &#234;tes d&#233;connect&#233;(e) du Service Central d'Authentification.&quot;
 
-#: lib/casserver/controllers.rb:262
+#: lib/casserver/controllers.rb:260
 msgid &quot; Please click on the following link to continue:&quot;
 msgstr &quot; S'il vous pla&#238;t cliquer sur le lien suivant pour continuer:&quot;
 
-#: lib/casserver/controllers.rb:412
+#: lib/casserver/controllers.rb:410
 msgid &quot;To generate a login ticket, you must make a POST request.&quot;
-msgstr &quot;Pour g&#233;n&#233;rer un ticket de connexion, vous devez faire une requ&#234;te POST.&quot;
+msgstr &quot;&quot;
+&quot;Pour g&#233;n&#233;rer un ticket de connexion, vous devez faire une requ&#234;te POST.&quot;
 
-#: lib/casserver/views.rb:41 lib/casserver/views.rb:111
+#: lib/casserver/views.rb:43 lib/casserver/views.rb:113
 msgid &quot; Central Login&quot;
 msgstr &quot; Service Central d'Authentification.&quot;
 
-#: lib/casserver/views.rb:71
+#: lib/casserver/views.rb:73
 msgid &quot;Username&quot;
 msgstr &quot;Identifiant&quot;
 
-#: lib/casserver/views.rb:80
+#: lib/casserver/views.rb:82
 msgid &quot;Password&quot;
 msgstr &quot;Mot de passe&quot;
 
-#: lib/casserver/views.rb:92
+#: lib/casserver/views.rb:94
 msgid &quot;LOGIN&quot;
 msgstr &quot;SE CONNECTER&quot;</diff>
      <filename>po/fr_FR/rubycas-server.po</filename>
    </modified>
    <modified>
      <diff>@@ -6,8 +6,8 @@
 #
 msgid &quot;&quot;
 msgstr &quot;&quot;
-&quot;Project-Id-Version: RubyCAS-Server \n&quot;
-&quot;POT-Creation-Date: 2008-11-12 11:43-0500\n&quot;
+&quot;Project-Id-Version: rubycas-server \n&quot;
+&quot;POT-Creation-Date: 2009-05-06 18:16-0400\n&quot;
 &quot;PO-Revision-Date: 2008-11-12 13:04-0500\n&quot;
 &quot;Last-Translator: Matt Zukowski &lt;mzukowski@urbacon.net&gt;\n&quot;
 &quot;Language-Team: Japanese\n&quot;
@@ -16,44 +16,70 @@ msgstr &quot;&quot;
 &quot;Content-Transfer-Encoding: 8bit\n&quot;
 &quot;Plural-Forms: nplurals=1; plural=0;\n&quot;
 
+#: lib/casserver/cas.rb:117
+msgid &quot;&quot;
+&quot;Your login request did not include a login ticket. There may be a problem &quot;
+&quot;with the authentication system.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:121
+msgid &quot;&quot;
+&quot;The login ticket you provided has already been used up. Please try logging &quot;
+&quot;in again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:126
+msgid &quot;You took too long to enter your credentials. Please try again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:130
+msgid &quot;&quot;
+&quot;The login ticket you provided is invalid. There may be a problem with the &quot;
+&quot;authentication system.&quot;
+msgstr &quot;&quot;
+
 # THIS IS MACHINE-TRANSLATED AND PROBABLY MAKES VERY LITTLE SENSE IN JAPANESE :)
 # HELP IN CORRECTING THIS WOULD BE GREATLY APPRECIATED.
 # &#12371;&#12398;&#27231;&#26800;&#30340;&#12395;&#32763;&#35379;&#12377;&#12427;&#12392;&#12289;&#12362;&#12381;&#12425;&#12367;&#12411;&#12392;&#12435;&#12393;&#24847;&#21619;&#12391;&#12377;&#26085;&#26412;&#35486; :)
 # &#12371;&#12428;&#12434;&#20462;&#27491;&#12377;&#12427;&#12398;&#12395;&#24441;&#31435;&#12388;&#39640;&#12367;&#35413;&#20385;&#12373;&#12428;&#12427;&#12384;&#12429;&#12358;&#12290;
-
 #: lib/casserver/controllers.rb:32
 msgid &quot;&quot;
 &quot;You are currently logged in as '%s'. If this is not you, please log in below.&quot;
 msgstr &quot;&quot;
-&quot;'%s'&#12392;&#12375;&#12390;&#12525;&#12464;&#12452;&#12531;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#36949;&#12358;&#12518;&#12540;&#12470;&#12540;&#12391;&#12525;&#12464;&#12452;&#12531;&#12377;&#12427;&#12395;&#12399;&#19979;&#12395;&#20837;&#21147;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&quot;
+&quot;'%s'&#12392;&#12375;&#12390;&#12525;&#12464;&#12452;&#12531;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#36949;&#12358;&#12518;&#12540;&#12470;&#12540;&#12391;&#12525;&#12464;&#12452;&#12531;&#12377;&#12427;&#12395;&#12399;&#19979;&#12395;&#20837;&#21147;&#12375;&#12390;&#12367;&#12384;&quot;
+&quot;&#12373;&#12356;&#12290;&quot;
 
 #: lib/casserver/controllers.rb:37
 msgid &quot;&quot;
 &quot;The client and server are unable to negotiate authentication. Please try &quot;
 &quot;logging in again later.&quot;
 msgstr &quot;&quot;
-&quot;&#12463;&#12521;&#12452;&#12450;&#12531;&#12488;&#12392;&#12469;&#12540;&#12496;&#12540;&#38291;&#12391;&#35469;&#35388;&#12364;&#12391;&#12365;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;&#12375;&#12400;&#12425;&#12367;&#12375;&#12390;&#12363;&#12425;&#20877;&#24230;&#12525;&#12464;&#12452;&#12531;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&quot;
+&quot;&#12463;&#12521;&#12452;&#12450;&#12531;&#12488;&#12392;&#12469;&#12540;&#12496;&#12540;&#38291;&#12391;&#35469;&#35388;&#12364;&#12391;&#12365;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;&#12375;&#12400;&#12425;&#12367;&#12375;&#12390;&#12363;&#12425;&#20877;&#24230;&#12525;&#12464;&#12452;&quot;
+&quot;&#12531;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&quot;
 
 #: lib/casserver/controllers.rb:54
 msgid &quot;&quot;
 &quot;The server cannot fulfill this gateway request because no service parameter &quot;
 &quot;was given.&quot;
 msgstr &quot;&quot;
-&quot;&#12469;&#12540;&#12499;&#12473;&#12497;&#12521;&#12513;&#12540;&#12479;&#12540;&#12364;&#25351;&#23450;&#12373;&#12428;&#12390;&#12356;&#12394;&#12356;&#12398;&#12391;&#12289;&#12469;&#12540;&#12496;&#12540;&#12399;&#12466;&#12540;&#12488;&#12454;&#12455;&#12452;&#12522;&#12463;&#12456;&#12473;&#12488;&#12434;&#28288;&#12383;&#12377;&#20107;&#12364;&#12391;&#12365;&#12414;&#12379;&#12435;&#12290;&quot;
+&quot;&#12469;&#12540;&#12499;&#12473;&#12497;&#12521;&#12513;&#12540;&#12479;&#12540;&#12364;&#25351;&#23450;&#12373;&#12428;&#12390;&#12356;&#12394;&#12356;&#12398;&#12391;&#12289;&#12469;&#12540;&#12496;&#12540;&#12399;&#12466;&#12540;&#12488;&#12454;&#12455;&#12452;&#12522;&#12463;&#12456;&#12473;&#12488;&quot;
+&quot;&#12434;&#28288;&#12383;&#12377;&#20107;&#12364;&#12391;&#12365;&#12414;&#12379;&#12435;&#12290;&quot;
 
 #: lib/casserver/controllers.rb:59 lib/casserver/controllers.rb:195
 msgid &quot;&quot;
 &quot;The target service your browser supplied appears to be invalid. Please &quot;
 &quot;contact your system administrator for help.&quot;
 msgstr &quot;&quot;
-&quot;&#12502;&#12521;&#12454;&#12470;&#12364;&#31034;&#12377;&#23550;&#35937;&#12469;&#12540;&#12499;&#12473;&#12399;&#28961;&#21177;&#12398;&#12424;&#12358;&#12391;&#12377;&#12290;&#12471;&#12473;&#12486;&#12512;&#31649;&#29702;&#32773;&#12395;&#36899;&#32097;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&quot;
+&quot;&#12502;&#12521;&#12454;&#12470;&#12364;&#31034;&#12377;&#23550;&#35937;&#12469;&#12540;&#12499;&#12473;&#12399;&#28961;&#21177;&#12398;&#12424;&#12358;&#12391;&#12377;&#12290;&#12471;&#12473;&#12486;&#12512;&#31649;&#29702;&#32773;&#12395;&#36899;&#32097;&#12375;&#12390;&#12367;&#12384;&#12373;&quot;
+&quot;&#12356;&#12290;&quot;
 
 #: lib/casserver/controllers.rb:88
 msgid &quot;&quot;
 &quot;Could not guess the CAS login URI. Please supply a submitToURI parameter &quot;
 &quot;with your request.&quot;
 msgstr &quot;&quot;
-&quot;CAS&#12398;URI&#12434;&#25512;&#28204;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;&#12522;&#12463;&#12456;&#12473;&#12488;&#12395;submitToURI&#12497;&#12521;&#12513;&#12540;&#12479;&#12434;&#25351;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&quot;
+&quot;CAS&#12398;URI&#12434;&#25512;&#28204;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;&#12522;&#12463;&#12456;&#12473;&#12488;&#12395;submitToURI&#12497;&#12521;&#12513;&#12540;&#12479;&#12434;&quot;
+&quot;&#25351;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&quot;
 
 #: lib/casserver/controllers.rb:184
 msgid &quot;You have successfully logged in.&quot;
@@ -63,30 +89,30 @@ msgstr &quot;&#12525;&#12464;&#12452;&#12531;&#12375;&#12414;&#12375;&#12383;&quot;
 msgid &quot;Incorrect username or password.&quot;
 msgstr &quot;&#12518;&#12540;&#12470;&#12540;&#21517;&#12414;&#12383;&#12399;&#12497;&#12473;&#12527;&#12540;&#12489;&#12364;&#38291;&#36949;&#12387;&#12390;&#12356;&#12414;&#12377;&quot;
 
-#: lib/casserver/controllers.rb:259
+#: lib/casserver/controllers.rb:257
 msgid &quot;You have successfully logged out.&quot;
 msgstr &quot;&#12525;&#12464;&#12450;&#12454;&#12488;&#12375;&#12414;&#12375;&#12383;&#12290;&quot;
 
-#: lib/casserver/controllers.rb:262
+#: lib/casserver/controllers.rb:260
 msgid &quot; Please click on the following link to continue:&quot;
 msgstr &quot; &#32153;&#32154;&#12377;&#12427;&#12395;&#12399;&#12289;&#20197;&#19979;&#12398;&#12522;&#12531;&#12463;&#12434;&#12463;&#12522;&#12483;&#12463;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#65306;&quot;
 
-#: lib/casserver/controllers.rb:412
+#: lib/casserver/controllers.rb:410
 msgid &quot;To generate a login ticket, you must make a POST request.&quot;
 msgstr &quot;&#12525;&#12464;&#12452;&#12531;&#12481;&#12465;&#12483;&#12488;&#12434;&#30330;&#34892;&#12377;&#12427;&#12395;&#12399;&#12289;POST&#12522;&#12463;&#12456;&#12473;&#12488;&#12434;&#36865;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&quot;
 
-#: lib/casserver/views.rb:41 lib/casserver/views.rb:111
+#: lib/casserver/views.rb:43 lib/casserver/views.rb:113
 msgid &quot; Central Login&quot;
 msgstr &quot; &#32113;&#21512;&#12525;&#12464;&#12452;&#12531;&quot;
 
-#: lib/casserver/views.rb:71
+#: lib/casserver/views.rb:73
 msgid &quot;Username&quot;
 msgstr &quot;&#12518;&#12540;&#12470;&#12540;&#21517;&quot;
 
-#: lib/casserver/views.rb:80
+#: lib/casserver/views.rb:82
 msgid &quot;Password&quot;
 msgstr &quot;&#12497;&#12473;&#12527;&#12540;&#12489;&quot;
 
-#: lib/casserver/views.rb:92
+#: lib/casserver/views.rb:94
 msgid &quot;LOGIN&quot;
 msgstr &quot;&#12525;&#12464;&#12452;&#12531;&quot;</diff>
      <filename>po/ja_JP/rubycas-server.po</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 msgid &quot;&quot;
 msgstr &quot;&quot;
 &quot;Project-Id-Version: rubycas-server \n&quot;
-&quot;POT-Creation-Date: 2008-11-12 11:43-0500\n&quot;
+&quot;POT-Creation-Date: 2009-05-06 18:16-0400\n&quot;
 &quot;PO-Revision-Date: 2008-11-12 11:03-0500\n&quot;
 &quot;Last-Translator: Matt Zukowski &lt;mzukowski@urbacon.net&gt;\n&quot;
 &quot;Language-Team: Polish\n&quot;
@@ -17,6 +17,28 @@ msgstr &quot;&quot;
 &quot;Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10&gt;=2 &amp;&amp; n%10&lt;=4 &amp;&amp; (n%100&lt;10 &quot;
 &quot;|| n%100&gt;=20) ? 1 : 2);\n&quot;
 
+#: lib/casserver/cas.rb:117
+msgid &quot;&quot;
+&quot;Your login request did not include a login ticket. There may be a problem &quot;
+&quot;with the authentication system.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:121
+msgid &quot;&quot;
+&quot;The login ticket you provided has already been used up. Please try logging &quot;
+&quot;in again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:126
+msgid &quot;You took too long to enter your credentials. Please try again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:130
+msgid &quot;&quot;
+&quot;The login ticket you provided is invalid. There may be a problem with the &quot;
+&quot;authentication system.&quot;
+msgstr &quot;&quot;
+
 #: lib/casserver/controllers.rb:32
 msgid &quot;&quot;
 &quot;You are currently logged in as '%s'. If this is not you, please log in below.&quot;
@@ -62,32 +84,32 @@ msgstr &quot;Jeste&#347; zalogowany.&quot;
 
 #: lib/casserver/controllers.rb:200
 msgid &quot;Incorrect username or password.&quot;
-msgstr &quot;Niepoprawna u&#380;ytkownik lub has&#322;o.&quot;
+msgstr &quot;Niepoprawny u&#380;ytkownik lub has&#322;o.&quot;
 
-#: lib/casserver/controllers.rb:259
+#: lib/casserver/controllers.rb:257
 msgid &quot;You have successfully logged out.&quot;
 msgstr &quot;Jeste&#347; wylogowany.&quot;
 
-#: lib/casserver/controllers.rb:262
+#: lib/casserver/controllers.rb:260
 msgid &quot; Please click on the following link to continue:&quot;
 msgstr &quot; Prosz&#281; klikn&#261;&#263; na poni&#380;szy link, aby kontynuowa&#263;:&quot;
 
-#: lib/casserver/controllers.rb:412
+#: lib/casserver/controllers.rb:410
 msgid &quot;To generate a login ticket, you must make a POST request.&quot;
 msgstr &quot;Aby wygenerowa&#263; login bilet, musisz z&#322;o&#380;y&#263; &#380;&#261;danie POST.&quot;
 
-#: lib/casserver/views.rb:41 lib/casserver/views.rb:111
+#: lib/casserver/views.rb:43 lib/casserver/views.rb:113
 msgid &quot; Central Login&quot;
 msgstr &quot; Centralna Us&#322;uga Uwierzytelniania&quot;
 
-#: lib/casserver/views.rb:71
+#: lib/casserver/views.rb:73
 msgid &quot;Username&quot;
 msgstr &quot;U&#380;ytkownik&quot;
 
-#: lib/casserver/views.rb:80
+#: lib/casserver/views.rb:82
 msgid &quot;Password&quot;
 msgstr &quot;Has&#322;o&quot;
 
-#: lib/casserver/views.rb:92
+#: lib/casserver/views.rb:94
 msgid &quot;LOGIN&quot;
 msgstr &quot;ZALOGUJ&quot;</diff>
      <filename>po/pl_PL/rubycas-server.po</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 msgid &quot;&quot;
 msgstr &quot;&quot;
 &quot;Project-Id-Version: rubycas-server \n&quot;
-&quot;POT-Creation-Date: 2009-03-17 11:43-0500\n&quot;
+&quot;POT-Creation-Date: 2009-05-06 18:16-0400\n&quot;
 &quot;PO-Revision-Date: 2009-03-17 20:55+0200\n&quot;
 &quot;Last-Translator: Kivanio Barbosa &lt;kivanio@gmail.com&gt;\n&quot;
 &quot;Language-Team: Brazil\n&quot;
@@ -16,40 +16,66 @@ msgstr &quot;&quot;
 &quot;Content-Transfer-Encoding: 8bit\n&quot;
 &quot;Plural-Forms: nplurals=2; plural=(n &gt; 1);\n&quot;
 
+#: lib/casserver/cas.rb:117
+msgid &quot;&quot;
+&quot;Your login request did not include a login ticket. There may be a problem &quot;
+&quot;with the authentication system.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:121
+msgid &quot;&quot;
+&quot;The login ticket you provided has already been used up. Please try logging &quot;
+&quot;in again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:126
+msgid &quot;You took too long to enter your credentials. Please try again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:130
+msgid &quot;&quot;
+&quot;The login ticket you provided is invalid. There may be a problem with the &quot;
+&quot;authentication system.&quot;
+msgstr &quot;&quot;
+
 #: lib/casserver/controllers.rb:32
 msgid &quot;&quot;
 &quot;You are currently logged in as '%s'. If this is not you, please log in below.&quot;
-msgstr &quot;Voc&#234; est&#225; logado como '%s'. Se este n&#227;o for voc&#234;, Por favor, fa&#231;a o login a baixo.&quot;
+msgstr &quot;&quot;
+&quot;Voc&#234; est&#225; logado como '%s'. Se este n&#227;o for voc&#234;, Por favor, fa&#231;a o login a &quot;
+&quot;baixo.&quot;
 
 #: lib/casserver/controllers.rb:37
 msgid &quot;&quot;
 &quot;The client and server are unable to negotiate authentication. Please try &quot;
 &quot;logging in again later.&quot;
 msgstr &quot;&quot;
-&quot;O cliente e o servidor n&#227;o puderam efetuar a autentica&#231;&#227;o. Por favor, &quot;
-&quot;tente novamente mais tarde.&quot;
+&quot;O cliente e o servidor n&#227;o puderam efetuar a autentica&#231;&#227;o. Por favor, tente &quot;
+&quot;novamente mais tarde.&quot;
 
 #: lib/casserver/controllers.rb:54
 msgid &quot;&quot;
 &quot;The server cannot fulfill this gateway request because no service parameter &quot;
 &quot;was given.&quot;
-msgstr &quot;O servidor n&#227;o pode completar a solicita&#231;&#227;o porque n&#227;o foi enviado o param&#234;tro do servi&#231;o.&quot;
+msgstr &quot;&quot;
+&quot;O servidor n&#227;o pode completar a solicita&#231;&#227;o porque n&#227;o foi enviado o &quot;
+&quot;param&#234;tro do servi&#231;o.&quot;
 
 #: lib/casserver/controllers.rb:59 lib/casserver/controllers.rb:195
 msgid &quot;&quot;
 &quot;The target service your browser supplied appears to be invalid. Please &quot;
 &quot;contact your system administrator for help.&quot;
 msgstr &quot;&quot;
-&quot;O seu navegador est&#225; aparentemente com problemas. Por favor, &quot;
-&quot;contate o administrador do sistema para obter ajuda.&quot;
+&quot;O seu navegador est&#225; aparentemente com problemas. Por favor, contate o &quot;
+&quot;administrador do sistema para obter ajuda.&quot;
 
 #: lib/casserver/controllers.rb:88
 msgid &quot;&quot;
 &quot;Could not guess the CAS login URI. Please supply a submitToURI parameter &quot;
 &quot;with your request.&quot;
 msgstr &quot;&quot;
-&quot;N&#227;o encontramos a URI de acesso ao CAS. Por favor, informe corretamente no submitToURI &quot;
-&quot;com sua solicita&#231;&#227;o.&quot;
+&quot;N&#227;o encontramos a URI de acesso ao CAS. Por favor, informe corretamente no &quot;
+&quot;submitToURI com sua solicita&#231;&#227;o.&quot;
 
 #: lib/casserver/controllers.rb:184
 msgid &quot;You have successfully logged in.&quot;
@@ -59,30 +85,31 @@ msgstr &quot;Login efetuado com sucesso.&quot;
 msgid &quot;Incorrect username or password.&quot;
 msgstr &quot;Usu&#225;rio ou Senha est&#225; incorreto.&quot;
 
-#: lib/casserver/controllers.rb:259
+#: lib/casserver/controllers.rb:257
 msgid &quot;You have successfully logged out.&quot;
 msgstr &quot;Voc&#234; saiu do sistema com sucesso.&quot;
 
-#: lib/casserver/controllers.rb:262
+#: lib/casserver/controllers.rb:260
 msgid &quot; Please click on the following link to continue:&quot;
 msgstr &quot; Por favor, clique no seguinte link para continuar:&quot;
 
-#: lib/casserver/controllers.rb:412
+#: lib/casserver/controllers.rb:410
 msgid &quot;To generate a login ticket, you must make a POST request.&quot;
-msgstr &quot;Para gerar um ticket de acceso, voc&#234; deve fazer uma requisi&#231;&#227;o via POST.&quot;
+msgstr &quot;&quot;
+&quot;Para gerar um ticket de acceso, voc&#234; deve fazer uma requisi&#231;&#227;o via POST.&quot;
 
-#: lib/casserver/views.rb:41 lib/casserver/views.rb:111
+#: lib/casserver/views.rb:43 lib/casserver/views.rb:113
 msgid &quot; Central Login&quot;
 msgstr &quot; Central de Autentica&#231;&#227;o&quot;
 
-#: lib/casserver/views.rb:71
+#: lib/casserver/views.rb:73
 msgid &quot;Username&quot;
 msgstr &quot;Usu&#225;rio&quot;
 
-#: lib/casserver/views.rb:80
+#: lib/casserver/views.rb:82
 msgid &quot;Password&quot;
 msgstr &quot;Senha&quot;
 
-#: lib/casserver/views.rb:92
+#: lib/casserver/views.rb:94
 msgid &quot;LOGIN&quot;
 msgstr &quot;ENTRAR&quot;</diff>
      <filename>po/pt_BR/rubycas-server.po</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 msgid &quot;&quot;
 msgstr &quot;&quot;
 &quot;Project-Id-Version: rubycas-server \n&quot;
-&quot;POT-Creation-Date: 2008-11-12 11:43-0500\n&quot;
+&quot;POT-Creation-Date: 2009-05-06 18:16-0400\n&quot;
 &quot;PO-Revision-Date: 2008-11-04 12:32+0200\n&quot;
 &quot;Last-Translator: Antono Vasiljev &lt;antono.vasiljev@gmail.com&gt;\n&quot;
 &quot;Language-Team: Russian &lt;ru@li.org&gt;\n&quot;
@@ -15,6 +15,28 @@ msgstr &quot;&quot;
 &quot;Content-Transfer-Encoding: 8bit\n&quot;
 &quot;Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n&quot;
 
+#: lib/casserver/cas.rb:117
+msgid &quot;&quot;
+&quot;Your login request did not include a login ticket. There may be a problem &quot;
+&quot;with the authentication system.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:121
+msgid &quot;&quot;
+&quot;The login ticket you provided has already been used up. Please try logging &quot;
+&quot;in again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:126
+msgid &quot;You took too long to enter your credentials. Please try again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:130
+msgid &quot;&quot;
+&quot;The login ticket you provided is invalid. There may be a problem with the &quot;
+&quot;authentication system.&quot;
+msgstr &quot;&quot;
+
 #: lib/casserver/controllers.rb:32
 msgid &quot;&quot;
 &quot;You are currently logged in as '%s'. If this is not you, please log in below.&quot;
@@ -59,30 +81,30 @@ msgstr &quot;&#1042;&#1099; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086; &#1074;&#1086;&#1096;&#1083;&#1080;.&quot;
 msgid &quot;Incorrect username or password.&quot;
 msgstr &quot;&#1053;&#1077;&#1074;&#1077;&#1088;&#1085;&#1086;&#1077; &#1080;&#1084;&#1103; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1080;&#1083;&#1080; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100;.&quot;
 
-#: lib/casserver/controllers.rb:259
+#: lib/casserver/controllers.rb:257
 msgid &quot;You have successfully logged out.&quot;
 msgstr &quot;&#1042;&#1099; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086; &#1074;&#1099;&#1096;&#1083;&#1080;.&quot;
 
-#: lib/casserver/controllers.rb:262
+#: lib/casserver/controllers.rb:260
 msgid &quot; Please click on the following link to continue:&quot;
 msgstr &quot; &#1055;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077; &#1087;&#1086; &#1089;&#1089;&#1099;&#1083;&#1082;&#1077; &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1080;&#1090;&#1100;: &quot;
 
-#: lib/casserver/controllers.rb:412
+#: lib/casserver/controllers.rb:410
 msgid &quot;To generate a login ticket, you must make a POST request.&quot;
 msgstr &quot;&#1063;&#1090;&#1086;&#1073;&#1099; &#1089;&#1075;&#1077;&#1085;&#1077;&#1088;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100; &#1074;&#1093;&#1086;&#1076;&#1085;&#1086;&#1081; &#1073;&#1080;&#1083;&#1077;&#1090; &#1074;&#1099; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1076;&#1077;&#1083;&#1072;&#1090;&#1100; POST &#1079;&#1072;&#1087;&#1088;&#1086;&#1089;.&quot;
 
-#: lib/casserver/views.rb:41 lib/casserver/views.rb:111
+#: lib/casserver/views.rb:43 lib/casserver/views.rb:113
 msgid &quot; Central Login&quot;
 msgstr &quot; &#1062;&#1077;&#1085;&#1090;&#1088;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1074;&#1093;&#1086;&#1076;&quot;
 
-#: lib/casserver/views.rb:71
+#: lib/casserver/views.rb:73
 msgid &quot;Username&quot;
 msgstr &quot;&#1051;&#1086;&#1075;&#1080;&#1085;&quot;
 
-#: lib/casserver/views.rb:80
+#: lib/casserver/views.rb:82
 msgid &quot;Password&quot;
 msgstr &quot;&#1055;&#1072;&#1088;&#1086;&#1083;&#1100;&quot;
 
-#: lib/casserver/views.rb:92
+#: lib/casserver/views.rb:94
 msgid &quot;LOGIN&quot;
 msgstr &quot;&#1042;&#1086;&#1081;&#1090;&#1080;&quot;</diff>
      <filename>po/ru_RU/rubycas-server.po</filename>
    </modified>
    <modified>
      <diff>@@ -1,13 +1,13 @@
 # SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR &lt;EMAIL@ADDRESS&gt;, YEAR.
+# Copyright (C) 2009 of The Contributors (see project history on github.com)
+# This file is distributed under the same license as the RubyCAS-Server package.
+# Matt Zukowski, 2009.
 #
 #, fuzzy
 msgid &quot;&quot;
 msgstr &quot;&quot;
 &quot;Project-Id-Version: rubycas-server \n&quot;
-&quot;POT-Creation-Date: 2008-11-12 11:43-0500\n&quot;
+&quot;POT-Creation-Date: 2009-05-06 18:16-0400\n&quot;
 &quot;PO-Revision-Date: 2008-10-29 20:55+0200\n&quot;
 &quot;Last-Translator: FULL NAME &lt;EMAIL@ADDRESS&gt;\n&quot;
 &quot;Language-Team: LANGUAGE &lt;LL@li.org&gt;\n&quot;
@@ -16,6 +16,28 @@ msgstr &quot;&quot;
 &quot;Content-Transfer-Encoding: 8bit\n&quot;
 &quot;Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n&quot;
 
+#: lib/casserver/cas.rb:117
+msgid &quot;&quot;
+&quot;Your login request did not include a login ticket. There may be a problem &quot;
+&quot;with the authentication system.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:121
+msgid &quot;&quot;
+&quot;The login ticket you provided has already been used up. Please try logging &quot;
+&quot;in again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:126
+msgid &quot;You took too long to enter your credentials. Please try again.&quot;
+msgstr &quot;&quot;
+
+#: lib/casserver/cas.rb:130
+msgid &quot;&quot;
+&quot;The login ticket you provided is invalid. There may be a problem with the &quot;
+&quot;authentication system.&quot;
+msgstr &quot;&quot;
+
 #: lib/casserver/controllers.rb:32
 msgid &quot;&quot;
 &quot;You are currently logged in as '%s'. If this is not you, please log in below.&quot;
@@ -53,30 +75,30 @@ msgstr &quot;&quot;
 msgid &quot;Incorrect username or password.&quot;
 msgstr &quot;&quot;
 
-#: lib/casserver/controllers.rb:259
+#: lib/casserver/controllers.rb:257
 msgid &quot;You have successfully logged out.&quot;
 msgstr &quot;&quot;
 
-#: lib/casserver/controllers.rb:262
+#: lib/casserver/controllers.rb:260
 msgid &quot; Please click on the following link to continue:&quot;
 msgstr &quot;&quot;
 
-#: lib/casserver/controllers.rb:412
+#: lib/casserver/controllers.rb:410
 msgid &quot;To generate a login ticket, you must make a POST request.&quot;
 msgstr &quot;&quot;
 
-#: lib/casserver/views.rb:41 lib/casserver/views.rb:111
+#: lib/casserver/views.rb:43 lib/casserver/views.rb:113
 msgid &quot; Central Login&quot;
 msgstr &quot;&quot;
 
-#: lib/casserver/views.rb:71
+#: lib/casserver/views.rb:73
 msgid &quot;Username&quot;
 msgstr &quot;&quot;
 
-#: lib/casserver/views.rb:80
+#: lib/casserver/views.rb:82
 msgid &quot;Password&quot;
 msgstr &quot;&quot;
 
-#: lib/casserver/views.rb:92
+#: lib/casserver/views.rb:94
 msgid &quot;LOGIN&quot;
 msgstr &quot;&quot;</diff>
      <filename>po/rubycas-server.pot</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>da04ff6542f68644089d27984e2d077da43ca518</id>
    </parent>
  </parents>
  <author>
    <name>zuk</name>
    <email>zuk@roughest.net</email>
  </author>
  <url>http://github.com/gunark/rubycas-server/commit/3e04b57e6dabd024f302dc4e381c0474795aa1bf</url>
  <id>3e04b57e6dabd024f302dc4e381c0474795aa1bf</id>
  <committed-date>2009-05-06T15:22:06-07:00</committed-date>
  <authored-date>2009-05-06T15:22:06-07:00</authored-date>
  <message>localization should be working again</message>
  <tree>abbe3f2d93d82a353114e4c08b4b3cfa870b6be4</tree>
  <committer>
    <name>zuk</name>
    <email>zuk@roughest.net</email>
  </committer>
</commit>
