Skip to content

Commit

Permalink
🐛 fix: i18n placeholder & reduce blockly timeout
Browse files Browse the repository at this point in the history
Signed-off-by: SimonShiki <[email protected]>
  • Loading branch information
SimonShiki committed Oct 29, 2023
1 parent 7ee96a3 commit 58035eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/injector/inject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,5 +372,5 @@ export function inject (vm: ChibiCompatibleVM) {
const workspace = blockly.getMainWorkspace();
workspace.getToolbox().refreshSelection();
workspace.toolboxRefreshEnabled_ = true;
}, 5000);
}, 3000);
}
14 changes: 7 additions & 7 deletions src/l10n/l10n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@
"chibi.openFrontend": "打开面板",
"chibi.sideload": "从 URL 侧载扩展",
"chibi.errorIgnored": "在加载扩展扩展时出现错误。为了避免加载进程的中断,此错误已被忽略。",
"chibi.tryLoad": "🤨 项目正从 [url] 加载扩展 [extensionURL]。要加载么?",
"chibi.tryLoadInEnv": "🤨 项目正以 [env] 模式从 [url] 加载扩展 [extensionURL]。要加载么?",
"chibi.tryLoad": "🤨 项目正从 {url} 加载扩展 {extensionURL}。要加载么?",
"chibi.tryLoadInEnv": "🤨 项目正以 {env} 模式从 {url} 加载扩展 {extensionURL}。要加载么?",
"chibi.loadInSandbox": "🤨 要在沙箱模式中加载扩展么?",
"chibi.enterURL": "🌐 输入"
"chibi.enterURL": "🌐 输入 URL"
},
"en": {
"chibi.openFrontend": "Open Frontend",
"chibi.sideload": "Sideload from URL",
"chibi.errorIgnored": "Error occurred while sideloading extension. To avoid interrupting the loading process, we chose to ignore this error.",
"chibi.tryLoad": "🤨 Project is trying to sideloading [extensionURL] from [url]. Do you want to load?",
"chibi.tryLoadInEnv": "🤨 Project is trying to sideloading [extensionURL] from [url] in [env] mode. Do you want to load?",
"chibi.tryLoad": "🤨 Project is trying to sideloading {extensionURL} from {url}. Do you want to load?",
"chibi.tryLoadInEnv": "🤨 Project is trying to sideloading {extensionURL} from {url} in {env} mode. Do you want to load?",
"chibi.loadInSandbox": "🤨 Do you want to load it in the sandbox?",
"chibi.enterURL": "🌐 Enter URL"
},
"ja": {
"chibi.openFrontend": "ダッシュボードを開く",
"chibi.sideload": "URL から拡張機能を導入",
"chibi.errorIgnored": "拡張機能のサイドロード中でエラーが発生しました。ロードの中断を防ぐために、このエラーは無視しました。",
"chibi.tryLoad": "🤨 プロジェクトは [url] から [extensionURL] をサイドロードしています。ロードしますか?",
"chibi.tryLoadInEnv": "🤨 プロジェクトは [env] モードで、[url] から [extensionURL] をサイドロードしています。ロードしますか?",
"chibi.tryLoad": "🤨 プロジェクトは {url} から {extensionURL} をサイドロードしています。ロードしますか?",
"chibi.tryLoadInEnv": "🤨 プロジェクトは {env} モードで、{url} から {extensionURL} をサイドロードしています。ロードしますか?",
"chibi.loadInSandbox": "🤨 サンドボックス環境でロードしますか?",
"chibi.enterURL": "🌐 URL を入力してください。"
}
Expand Down

0 comments on commit 58035eb

Please sign in to comment.