Skip to content

Commit bafd0f0

Browse files
committed
Modify merge into new way of implementation since API 1.1.9
1 parent ebbbafe commit bafd0f0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/content/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
</div>
165165
<div class="mdui-textfield">
166166
<i class="mdui-icon material-icons">storage</i>
167-
<label class="mdui-textfield-label i18n">{{enableYukiHookModulePrefsCache}}</label>
167+
<label class="mdui-textfield-label i18n">{{enableYukiHookPrefsBridgeCache}}</label>
168168
<select class="mdui-select" id="enable_yprefs_cache_select">
169169
<option class="i18n" value="0">{{notConfigureDefYes}}</option>
170170
<option class="i18n" value="1">{{yesOfConfigure}}</option>

src/libs/locale.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const locale = {
124124
"debugLogTagName": "Debug log TAG name (Default is YukiHookAPI)",
125125
"enableDebugMode": "Enable debug mode",
126126
"enableDebugLog": "Enable debug log output",
127-
"enableYukiHookModulePrefsCache": "Enable YukiHookModulePrefs key-value caching",
127+
"enableYukiHookPrefsBridgeCache": "Enable YukiHookPrefsBridge key-value caching",
128128
"enableModuleResourcesCache": "Enable module Resources caching",
129129
"enableModuleStatus": "Enable module activation status listening",
130130
"enableYukiHookDataChannel": "Enable YukiHookDataChannel feature",
@@ -259,7 +259,7 @@ const locale = {
259259
"debugLogTagName": "调试日志 TAG 名称 (不填默认为 YukiHookAPI)",
260260
"enableDebugMode": "启用 Debug 模式",
261261
"enableDebugLog": "启用调试日志输出功能",
262-
"enableYukiHookModulePrefsCache": "启用 YukiHookModulePrefs 键值缓存功能",
262+
"enableYukiHookPrefsBridgeCache": "启用 YukiHookPrefsBridge 键值缓存功能",
263263
"enableModuleResourcesCache": "启用模块 Resources 缓存功能",
264264
"enableModuleStatus": "启用模块激活状态监听功能",
265265
"enableYukiHookDataChannel": "启用 YukiHookDataChannel 功能",
@@ -394,7 +394,7 @@ const locale = {
394394
"debugLogTagName": "デバッググロタグ名(デフォルトはYukiHookAPI)",
395395
"enableDebugMode": "デバッグモードを有効にする",
396396
"enableDebugLog": "デバッグログ出力を有効にする",
397-
"enableYukiHookModulePrefsCache": "YukiHookModulePrefsのKey-Valueキャッシングを有効にする",
397+
"enableYukiHookPrefsBridgeCache": "YukiHookPrefsBridgeのKey-Valueキャッシングを有効にする",
398398
"enableModuleResourcesCache": "モジュールリソースのキャッシュを有効にする",
399399
"enableModuleStatus": "モジュールのアクティブ化ステータスの監視を有効にする",
400400
"enableYukiHookDataChannel": "YukiHookDataChannel機能を有効にする",

src/transaction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const transaction = {
215215
enable: (isEnabled) => 'isEnable = ' + (isEnabled ? 'true' : 'false')
216216
},
217217
enableDebug: (isEnabled) => 'isDebug = ' + (isEnabled ? 'true' : 'false'),
218-
enableYPrefsCache: (isEnabled) => 'isEnableModulePrefsCache = ' + (isEnabled ? 'true' : 'false'),
218+
enableYPrefsCache: (isEnabled) => 'isEnablePrefsBridgeCache = ' + (isEnabled ? 'true' : 'false'),
219219
enableResourcesCache: (isEnabled) => 'isEnableModuleAppResourcesCache = ' + (isEnabled ? 'true' : 'false'),
220220
enableModuleStatus: (isEnabled) => 'isEnableHookModuleStatus = ' + (isEnabled ? 'true' : 'false'),
221221
enableYChannel: (isEnabled) => 'isEnableDataChannel = ' + (isEnabled ? 'true' : 'false'),

0 commit comments

Comments
 (0)