/* * ComputeBasic * Author: Han Guoshuai * Github: https://github.com/MaiyunNET/ComputeBasic */ import * as Abstracts from "./Abstract"; export const Language: Abstracts.LanguageRefer = { en: { "error": "CB Error", "code": "Code", "message": "Message", "row": "Line", "col": "Column", "word": "Word", "codeMessage": { 0: "Functions and variables can not begin with a number", 1: "Function does not exist", 2: "Unrecognized statement", 3: "Runtime error", 4: "\"Then\" should not be used here", 5: "Unrecognized operator" } }, zhCN: { "error": "CB 执行错误", "code": "错误码", "message": "错误信息", "row": "行", "col": "列", "word": "词", "codeMessage": { 0: "函数和变量不能以数字开头", 1: "函数不存在", 2: "无法识别的语句", 3: "运行时错误", 4: "Then 不该在此处使用", 5: "不能识别的运算符" } } }; export default Language;