errors.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. declare(strict_types=1);
  3. return [
  4. 'forbidden' => [
  5. 'access' => 'Detected unknown IP or proxy access, access denied',
  6. 'bots' => 'Detected bot access, access denied',
  7. 'china' => 'Detected China IP or proxy access, access denied',
  8. 'oversea' => 'Detected overseas IP or proxy access, access denied',
  9. 'unknown' => 'Unknown forbidden access mode! Please modify the [Access Restriction] in the system settings!',
  10. 'redirect' => 'Detected (:ip :url) accessing through a subscription link, forcing a redirect.',
  11. ],
  12. 'log' => 'Log',
  13. 'refresh' => 'Refresh',
  14. 'refresh_page' => 'Please refresh the page and try again',
  15. 'report' => 'The error carried a report: ',
  16. 'safe_enter' => 'Safe Entrance',
  17. 'safe_code' => 'Please enter the safe code',
  18. 'title' => '⚠️ Error Triggered',
  19. 'unsafe_enter' => 'Unsafe Entrance',
  20. 'visit' => 'Please visit',
  21. 'whoops' => 'Whoops!',
  22. 'get_ip' => 'Failed to retrieve IP information',
  23. 'subscribe' => [
  24. 'unknown' => 'Invalid subscription link! Please obtain a new one!',
  25. 'sub_banned' => 'Subscription banned! Visit the website for details',
  26. 'user' => 'Invalid URL, account does not exist!',
  27. 'user_disabled' => 'Account Disabled! Contact Support!',
  28. 'banned_until' => 'Account banned until :time, please wait for unlock!',
  29. 'out' => 'OUT OF DATA! Please purchase more or reset data!',
  30. 'expired' => 'Account expired! Please renew your subscription!',
  31. 'question' => 'Account issues!? Visit the website for details',
  32. 'none' => 'No available nodes',
  33. ],
  34. ];