en.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. $lang->cache->setting = 'Cache Setting';
  3. $lang->cache->clear = 'Clear Cache';
  4. $lang->cache->clearSuccess = 'Cache cleared successfully.';
  5. $lang->cache->status = 'Status';
  6. $lang->cache->driver = 'Cache Type';
  7. $lang->cache->namespace = 'Namespace';
  8. $lang->cache->scope = 'Scope';
  9. $lang->cache->memory = 'Memory';
  10. $lang->cache->usedMemory = 'Total %s, used %s';
  11. $lang->cache->statusList[1] = 'On';
  12. $lang->cache->statusList[0] = 'Off';
  13. $lang->cache->driverList['apcu'] = 'APCu';
  14. $lang->cache->driverList['redis'] = 'Redis';
  15. $lang->cache->scopeList['private'] = 'Exclusively for this application';
  16. $lang->cache->scopeList['shared'] = 'Shared by multiple applications';
  17. $lang->cache->apcu = new stdClass();
  18. $lang->cache->apcu->notice = 'To use APCu cache, you need to load the APCu extension first.';
  19. $lang->cache->apcu->notLoaded = 'Please load the APCu extension before enabling cache.';
  20. $lang->cache->apcu->notEnabled = 'Please enable the apc.enabled option before enabling cach.';
  21. $lang->cache->redis = new stdClass();
  22. $lang->cache->redis->host = 'Redis Host';
  23. $lang->cache->redis->port = 'Redis Port';
  24. $lang->cache->redis->username = 'Redis User';
  25. $lang->cache->redis->password = 'Redis Password';
  26. $lang->cache->redis->database = 'Redis Database';
  27. $lang->cache->redis->serializer = 'Redis Serializer';
  28. $lang->cache->redis->notice = 'To use Redis cache, you need to load the Redis extension first.';
  29. $lang->cache->redis->notLoaded = 'Please load the Redis extension before enabling cach.';
  30. $lang->cache->redis->igbinaryNotLoaded = 'Please load the igbinary extension before enabling cach.';
  31. $lang->cache->redis->igbinaryNotSupported = 'Redis does not support igbinary. Please change the serializer.';
  32. $lang->cache->redis->serializerList['php'] = 'PHP Serialize';
  33. $lang->cache->redis->serializerList['igbinary'] = 'igbinary';
  34. $lang->cache->redis->tips = new stdClass();
  35. $lang->cache->redis->tips->host = 'Fill in the domain name or IP address, and do not need to fill in the protocol and port number.';
  36. $lang->cache->redis->tips->database = 'Fill in the number of the Redis database, the default is 0.';
  37. $lang->cache->redis->tips->serializer = 'Data needs to be serialized and cached. Changing the serializer will clear the cached data.';
  38. $lang->cache->tips = new stdClass();
  39. $lang->cache->tips->namespace = 'Namespaces are used to prevent cache data conflicts between different applications. Changing the namespace after caching is enabled will clear the cache data.';
  40. $lang->cache->tips->scope = 'If the cache service is only used by this application, please select "Exclusively for this application", otherwise select "Shared by multiple applications".';