* [refac] modify lang items.
This commit is contained in:
Vendored
+8
-2
@@ -1,8 +1,10 @@
|
||||
<?php
|
||||
$lang->cache->clear = 'Clear Cache';
|
||||
$lang->cache->clearSuccess = 'Cache cleared successfully.';
|
||||
$lang->cache->type = 'Cache Type';
|
||||
$lang->cache->status = 'Status';
|
||||
$lang->cache->driver = 'Cache Type';
|
||||
$lang->cache->namespace = 'Namespace';
|
||||
$lang->cache->scope = 'Scope';
|
||||
$lang->cache->memory = 'Memory';
|
||||
$lang->cache->usedMemory = 'Total %s, used %s';
|
||||
|
||||
@@ -12,6 +14,9 @@ $lang->cache->statusList[0] = 'Off';
|
||||
$lang->cache->driverList['apcu'] = 'APCu';
|
||||
$lang->cache->driverList['redis'] = 'Redis';
|
||||
|
||||
$lang->cache->scopeList['private'] = 'Exclusively for this application';
|
||||
$lang->cache->scopeList['shared'] = 'Shared by multiple applications';
|
||||
|
||||
$lang->cache->apcu = new stdClass();
|
||||
$lang->cache->apcu->notice = 'To use APCu cache, you need to load the APCu extension first.';
|
||||
$lang->cache->apcu->notLoaded = 'Please load the APCu extension before enabling cache.';
|
||||
@@ -35,4 +40,5 @@ $lang->cache->redis->tips->host = 'Fill in the domain name or IP address,
|
||||
$lang->cache->redis->tips->serializer = 'Data needs to be serialized and cached. Changing the serializer will clear the cached data.';
|
||||
|
||||
$lang->cache->tips = new stdClass();
|
||||
$lang->cache->tips->namespace = 'Namespaces are used to prevent cache data conflicts between different applications. Changing the namespace will clear the cache data.';
|
||||
$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.';
|
||||
$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".';
|
||||
|
||||
Vendored
+8
-2
@@ -1,8 +1,10 @@
|
||||
<?php
|
||||
$lang->cache->clear = 'Clear Cache';
|
||||
$lang->cache->clearSuccess = 'Cache cleared successfully.';
|
||||
$lang->cache->type = 'Cache Type';
|
||||
$lang->cache->status = 'Status';
|
||||
$lang->cache->driver = 'Cache Type';
|
||||
$lang->cache->namespace = 'Namespace';
|
||||
$lang->cache->scope = 'Scope';
|
||||
$lang->cache->memory = 'Memory';
|
||||
$lang->cache->usedMemory = 'Total %s, used %s';
|
||||
|
||||
@@ -12,6 +14,9 @@ $lang->cache->statusList[0] = 'Off';
|
||||
$lang->cache->driverList['apcu'] = 'APCu';
|
||||
$lang->cache->driverList['redis'] = 'Redis';
|
||||
|
||||
$lang->cache->scopeList['private'] = 'Exclusively for this application';
|
||||
$lang->cache->scopeList['shared'] = 'Shared by multiple applications';
|
||||
|
||||
$lang->cache->apcu = new stdClass();
|
||||
$lang->cache->apcu->notice = 'To use APCu cache, you need to load the APCu extension first.';
|
||||
$lang->cache->apcu->notLoaded = 'Please load the APCu extension before enabling cache.';
|
||||
@@ -35,4 +40,5 @@ $lang->cache->redis->tips->host = 'Fill in the domain name or IP address,
|
||||
$lang->cache->redis->tips->serializer = 'Data needs to be serialized and cached. Changing the serializer will clear the cached data.';
|
||||
|
||||
$lang->cache->tips = new stdClass();
|
||||
$lang->cache->tips->namespace = 'Namespaces are used to prevent cache data conflicts between different applications. Changing the namespace will clear the cache data.';
|
||||
$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.';
|
||||
$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".';
|
||||
|
||||
Vendored
+8
-2
@@ -1,8 +1,10 @@
|
||||
<?php
|
||||
$lang->cache->clear = 'Clear Cache';
|
||||
$lang->cache->clearSuccess = 'Cache cleared successfully.';
|
||||
$lang->cache->type = 'Cache Type';
|
||||
$lang->cache->status = 'Status';
|
||||
$lang->cache->driver = 'Cache Type';
|
||||
$lang->cache->namespace = 'Namespace';
|
||||
$lang->cache->scope = 'Scope';
|
||||
$lang->cache->memory = 'Memory';
|
||||
$lang->cache->usedMemory = 'Total %s, used %s';
|
||||
|
||||
@@ -12,6 +14,9 @@ $lang->cache->statusList[0] = 'Off';
|
||||
$lang->cache->driverList['apcu'] = 'APCu';
|
||||
$lang->cache->driverList['redis'] = 'Redis';
|
||||
|
||||
$lang->cache->scopeList['private'] = 'Exclusively for this application';
|
||||
$lang->cache->scopeList['shared'] = 'Shared by multiple applications';
|
||||
|
||||
$lang->cache->apcu = new stdClass();
|
||||
$lang->cache->apcu->notice = 'To use APCu cache, you need to load the APCu extension first.';
|
||||
$lang->cache->apcu->notLoaded = 'Please load the APCu extension before enabling cache.';
|
||||
@@ -35,4 +40,5 @@ $lang->cache->redis->tips->host = 'Fill in the domain name or IP address,
|
||||
$lang->cache->redis->tips->serializer = 'Data needs to be serialized and cached. Changing the serializer will clear the cached data.';
|
||||
|
||||
$lang->cache->tips = new stdClass();
|
||||
$lang->cache->tips->namespace = 'Namespaces are used to prevent cache data conflicts between different applications. Changing the namespace will clear the cache data.';
|
||||
$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.';
|
||||
$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".';
|
||||
|
||||
Vendored
+3
-3
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
$lang->cache->clear = '清除缓存';
|
||||
$lang->cache->clearSuccess = '清除成功';
|
||||
$lang->cache->status = '状态';
|
||||
$lang->cache->type = '服务';
|
||||
$lang->cache->status = '缓存状态';
|
||||
$lang->cache->driver = '缓存服务';
|
||||
$lang->cache->namespace = '命名空间';
|
||||
$lang->cache->scope = '服务范围';
|
||||
$lang->cache->memory = '内存使用';
|
||||
@@ -40,5 +40,5 @@ $lang->cache->redis->tips->host = '填写域名或 IP 地址,无需填
|
||||
$lang->cache->redis->tips->serializer = '数据需要序列化后缓存。更改序列化器会清空缓存数据。';
|
||||
|
||||
$lang->cache->tips = new stdClass();
|
||||
$lang->cache->tips->namespace = '命名空间用来防止不同应用间缓存数据冲突。更改命名空间会清空缓存数据。';
|
||||
$lang->cache->tips->namespace = '命名空间用来防止不同应用间缓存数据冲突。启用缓存后更改命名空间会清空缓存数据。';
|
||||
$lang->cache->tips->scope = '如果缓存服务只有本应用使用请选择『本应用独享』,否则选择『多应用共享』。';
|
||||
|
||||
Reference in New Issue
Block a user