-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: SimonShiki <[email protected]>
- Loading branch information
1 parent
b325613
commit 2f5540a
Showing
11 changed files
with
509 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"app.home.install": "Install", | ||
"app.home.repo": "GitHub Repo", | ||
"app.home.slogan": "Load your Scratch extensions anywhere.", | ||
"app.home.subdescription1": "Chibi loads extensions by directly injecting them into the Scratch virtual machine, which allows you to use your favorite extensions without being restricted by the editor itself.", | ||
"app.home.subdescription2": "Chibi implements the loader independently, which means extensions have a unified implementation standard rather rely on the editor.", | ||
"app.home.subdescription3": "Chibi adds support for non-sandbox extensions and TurboWarp extensions. This means you can seamlessly sideload these extensions into your projects.", | ||
"app.home.subtitle1": "Load ANY Scratch extensions in ANY Scratch-based editors.", | ||
"app.home.subtitle2": "Write once, Run everywhere", | ||
"app.home.subtitle3": "Compatible with most popular extension loading methods", | ||
"app.home.title": "Chibi", | ||
"app.name": "Chibi", | ||
"app.navigation.gallary": "Extension Gallary", | ||
"app.navigation.home": "Home", | ||
"app.navigation.management": "Manage Extension", | ||
"app.navigation.notConnected": "Not Connected", | ||
"app.navigation.settings": "Settings", | ||
"app.navigation.version": "Version:", | ||
"app.settings.extension": "Extension", | ||
"app.settings.extension.dontExposeCtx": "Don't Expose \"Scratch\" Object Globally", | ||
"app.settings.extension.loadFromGallaryOnly": "Load From Gallery's Extensions Only", | ||
"app.settings.extension.noConfirmDialog": "No Confirmation Dialog While Loading Project", | ||
"app.settings.project": "Project", | ||
"app.settings.project.convertProcCall": "Convert Sideload Extension's Blocks Into Procedures Call", | ||
"app.title.gallary": "Extension Gallary", | ||
"app.title.manage": "Manage Extension", | ||
"app.title.settings": "Settings" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import en from './en.json'; | ||
import zhCN from './zh-cn.json'; | ||
|
||
export const messages = { | ||
en: en, | ||
'zh-CN': zhCN | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"app.home.install": "安装", | ||
"app.home.repo": "GitHub 仓库", | ||
"app.home.slogan": "全平台的 Scratch 扩展加载器", | ||
"app.home.subdescription1": "Chibi 通过注入 Scratch 虚拟机的方式加载扩展,这意味着你可以使用自己喜欢的扩展,而不受编辑器本身的限制。", | ||
"app.home.subdescription2": "Chibi 独立实现了扩展加载部分,这意味着扩展有了统一的实现标准,而不依赖于编辑器。", | ||
"app.home.subdescription3": "Chibi 增加了对非沙盒扩展和 TurboWarp 扩展的支持。这意味着您可以将这些扩展无缝侧载到您的项目中。", | ||
"app.home.subtitle1": "不讲武德,在任何平台加载你所喜爱的扩展", | ||
"app.home.subtitle2": "一次码,四处行", | ||
"app.home.subtitle3": "兼容主流的扩展加载方式,打破阻碍扩展加载的壁垒", | ||
"app.home.title": "Chibi (琪比)", | ||
"app.name": "Chibi", | ||
"app.navigation.gallary": "扩展橱窗", | ||
"app.navigation.home": "首页", | ||
"app.navigation.management": "扩展管理", | ||
"app.navigation.notConnected": "未连接", | ||
"app.navigation.settings": "设置", | ||
"app.navigation.version": "连接版本:", | ||
"app.settings.extension": "扩展", | ||
"app.settings.extension.dontExposeCtx": "不全局暴露 \"Scratch\" 对象", | ||
"app.settings.extension.loadFromGallaryOnly": "仅允许加载橱窗扩展", | ||
"app.settings.extension.noConfirmDialog": "不确认加载带侧载扩展的项目", | ||
"app.settings.project": "项目", | ||
"app.settings.project.convertProcCall": "将侧载扩展积木转换为自定义积木", | ||
"app.title.gallary": "扩展橱窗", | ||
"app.title.manage": "扩展管理", | ||
"app.title.settings": "设置" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
diff --git a/node_modules/@cookbook/solid-intl/package.json b/node_modules/@cookbook/solid-intl/package.json | ||
index 75735fa..f35ab11 100644 | ||
--- a/node_modules/@cookbook/solid-intl/package.json | ||
+++ b/node_modules/@cookbook/solid-intl/package.json | ||
@@ -28,13 +28,28 @@ | ||
"exports": { | ||
".": { | ||
"solid": "./dist/source/index.js", | ||
- "import": "./dist/esm/index.js", | ||
+ "import": { | ||
+ "types": "./dist/types/index.d.ts", | ||
+ "default": "./dist/esm/index.js" | ||
+ }, | ||
"browser": { | ||
- "import": "./dist/esm/index.js", | ||
- "require": "./dist/cjs/index.cjs" | ||
+ "import": { | ||
+ "types": "./dist/types/index.d.ts", | ||
+ "default": "./dist/esm/index.js" | ||
+ }, | ||
+ "require": { | ||
+ "types": "./dist/types/index.d.ts", | ||
+ "default": "./dist/cjs/index.cjs" | ||
+ } | ||
+ }, | ||
+ "require": { | ||
+ "default": "./dist/cjs/index.cjs", | ||
+ "types": "./dist/types/index.d.ts" | ||
}, | ||
- "require": "./dist/cjs/index.cjs", | ||
- "node": "./dist/cjs/index.cjs" | ||
+ "node": { | ||
+ "default": "./dist/cjs/index.cjs", | ||
+ "types": "./dist/types/index.d.ts" | ||
+ } | ||
} | ||
}, | ||
"scripts": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.