A corporation manager and dashboard for EVE Online
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

18 linhas
583 B

  1. # -*- coding: utf-8 -*-
  2. __all__ = ["Messages"]
  3. class Messages:
  4. """Namespace for user interface message strings."""
  5. # success
  6. LOGGED_IN = "Logged in."
  7. LOGGED_OUT = "Logged out."
  8. # error
  9. LOG_IN_FIRST = "You need to log in to access that page."
  10. ACCESS_DENIED = "Your character is not permitted to access this site."
  11. SESSION_EXPIRED = "Session expired. You need to log in again."
  12. LOGIN_FAILED = "Login failed."
  13. EVE_API_ERROR = ("There was an error communicating with EVE's servers. "
  14. "Please wait a while and try again.")