A corporation manager and dashboard for EVE Online
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
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.")