A corporation manager and dashboard for EVE Online
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

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