Update: 添加新板卡 Python 3 Online

This commit is contained in:
王立帮
2024-09-08 13:32:13 +08:00
parent f1d75df7b1
commit 2435f5cdfa
51 changed files with 4345 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
export const EnMsg = {
'PYTHON_PYODIDE_IMAGE': 'Image'
};
export const EnCatgories = {};

View File

@@ -0,0 +1,12 @@
import * as Blockly from 'blockly/core';
import { ZhHansMsg, ZhHansCatgories } from './zh-hans';
import { ZhHantMsg, ZhHantCatgories } from './zh-hant';
import { EnMsg, EnCatgories } from './en';
// 载入语言文件
Object.assign(Blockly.Lang.ZhHans, ZhHansMsg);
Object.assign(Blockly.Lang.ZhHant, ZhHantMsg);
Object.assign(Blockly.Lang.En, EnMsg);
Object.assign(Blockly.Lang.ZhHans.MSG, ZhHansCatgories);
Object.assign(Blockly.Lang.ZhHant.MSG, ZhHantCatgories);
Object.assign(Blockly.Lang.En.MSG, EnCatgories);

View File

@@ -0,0 +1,5 @@
export const ZhHansMsg = {
'PYTHON_PYODIDE_IMAGE': '图像'
};
export const ZhHansCatgories = {};

View File

@@ -0,0 +1,5 @@
export const ZhHantMsg = {
'PYTHON_PYODIDE_IMAGE': '影像'
};
export const ZhHantCatgories = {};