Sync some constants, operators, and functions for skin editor. (3)
This commit is contained in:
@@ -42,27 +42,59 @@ messages["zh_CN"] = {
|
||||
"input.prop.text.size": "文字图形:字体大小",
|
||||
"input.prop.text.spacing": "文字图形:字符间距",
|
||||
"input.prop.text.value": "文字图形:内容",
|
||||
"input.string.default": "字符串",
|
||||
"input.type.chart": "谱面",
|
||||
"input.type.default": "元素",
|
||||
"input.type.group": "轨道组",
|
||||
"input.type.note": "按键",
|
||||
"input.type.track": "轨道",
|
||||
"list.category.exp.any": "任意",
|
||||
"list.category.exp.array": "数组",
|
||||
"list.category.exp.const": "常量",
|
||||
"list.category.exp.func": "函数",
|
||||
"list.category.exp.func.anim": "动画函数",
|
||||
"list.category.exp.func.ctx": "环境函数",
|
||||
"list.category.exp.func.judge": "判定函数",
|
||||
"list.category.exp.identifier": "变量",
|
||||
"list.category.exp.number": "数字",
|
||||
"list.category.exp.op": "运算符",
|
||||
"list.category.exp.string": "字符串",
|
||||
"list.category.exp.vector": "向量",
|
||||
"list.statement.comp": "附加组件",
|
||||
"list.statement.define": "定义静态变量",
|
||||
"list.statement.exp.cast.vector2number": "从向量",
|
||||
"list.statement.exp.const.false": "假",
|
||||
"list.statement.exp.const.h": "屏幕高度",
|
||||
"list.statement.exp.const.inf": "无穷大",
|
||||
"list.statement.exp.const.null": "空变量",
|
||||
"list.statement.exp.const.true": "真",
|
||||
"list.statement.exp.const.w": "屏幕宽度",
|
||||
"list.statement.exp.func.abs": "绝对值",
|
||||
"list.statement.exp.func.anim": "动画值",
|
||||
"list.statement.exp.func.attack_timing": "在时间区间中按下",
|
||||
"list.statement.exp.func.clamp": "限制值",
|
||||
"list.statement.exp.func.contact_timing": "接触时间区间",
|
||||
"list.statement.exp.func.cubic_bezier": "三次贝塞尔曲线",
|
||||
"list.statement.exp.func.ease": "缓动",
|
||||
"list.statement.exp.func.ease_in": "缓入",
|
||||
"list.statement.exp.func.ease_in_out": "缓入缓出",
|
||||
"list.statement.exp.func.ease_out": "缓出",
|
||||
"list.statement.exp.func.enter_timing": "进入时间区间",
|
||||
"list.statement.exp.func.frame_seq": "帧序列",
|
||||
"list.statement.exp.func.int": "向下取整",
|
||||
"list.statement.exp.func.interval": "区间",
|
||||
"list.statement.exp.func.is": "等价",
|
||||
"list.statement.exp.func.leave_timing": "离开时间区间",
|
||||
"list.statement.exp.func.max": "最大值",
|
||||
"list.statement.exp.func.min": "最小值",
|
||||
"list.statement.exp.func.release_timing": "在时间区间中松开",
|
||||
"list.statement.exp.func.screen_edge": "屏幕边缘",
|
||||
"list.statement.exp.literal.ident": "变量",
|
||||
"list.statement.exp.literal.identforced": "变量(强制)",
|
||||
"list.statement.exp.literal.number": "数字",
|
||||
"list.statement.exp.literal.string": "字符串",
|
||||
"list.statement.exp.number": "添加元素",
|
||||
"list.statement.exp.string": "添加元素",
|
||||
"list.statement.exp.op.add": "a + b",
|
||||
"list.statement.exp.op.add1": "+n",
|
||||
"list.statement.exp.op.and": "p 且 q",
|
||||
@@ -75,6 +107,8 @@ messages["zh_CN"] = {
|
||||
"list.statement.exp.op.mul": "a × b",
|
||||
"list.statement.exp.op.not": "非",
|
||||
"list.statement.exp.op.or": "p 或 q",
|
||||
"list.statement.exp.op.sep.arr": "数组",
|
||||
"list.statement.exp.op.sep.vec": "向量",
|
||||
"list.statement.exp.op.sub": "a - b",
|
||||
"list.statement.exp.op.sub1": "-n",
|
||||
"list.statement.obj": "创建容器",
|
||||
@@ -86,20 +120,40 @@ messages["zh_CN"] = {
|
||||
"list.statement.select.type": "筛选元素类型",
|
||||
"statement.comp": "创建一个 {0} 组件",
|
||||
"statement.define": "静态定义 {0} = {1}",
|
||||
"statement.exp.cast.vector2number": "向量 {0}",
|
||||
"statement.exp.const.false": "假",
|
||||
"statement.exp.const.h": "屏幕高度",
|
||||
"statement.exp.const.inf": "无穷大",
|
||||
"statement.exp.const.null": "空变量",
|
||||
"statement.exp.const.true": "真",
|
||||
"statement.exp.const.w": "屏幕宽度",
|
||||
"statement.exp.func.abs": "{0} 的绝对值",
|
||||
"statement.exp.func.anim": "动画值从 {0} 到 {1},使用函数 {2}",
|
||||
"statement.exp.func.attack_timing": "在时间区间 ({0}, {1}) 中按下",
|
||||
"statement.exp.func.clamp": "限制 {1} 在 {0} 和 {2} 之间",
|
||||
"statement.exp.func.contact_timing": "接触时间区间 ({0}, {1})",
|
||||
"statement.exp.func.cubic_bezier": "由控制点 ({0}, {1}) 和 ({2}, {3}) 定义的三次贝塞尔曲线,复合 {4}",
|
||||
"statement.exp.func.ease": "缓动,复合 {0}",
|
||||
"statement.exp.func.ease_in": "缓入,复合 {0}",
|
||||
"statement.exp.func.ease_in_out": "缓入缓出,复合 {0}",
|
||||
"statement.exp.func.ease_out": "缓出,复合 {0}",
|
||||
"statement.exp.func.enter_timing": "进入时间区间 ({0}, +∞)",
|
||||
"statement.exp.func.frame_seq": "前缀为 {0} 从 {1} 的 {2} 帧序列",
|
||||
"statement.exp.func.int": "向下取整 {0}",
|
||||
"statement.exp.func.interval": "{0} 和 {1} 之间的区间",
|
||||
"statement.exp.func.is": "{0} 等价于 {1}",
|
||||
"statement.exp.func.leave_timing": "离开时间区间 (-∞, {0})",
|
||||
"statement.exp.func.max": "{0} 和 {1} 的最大值",
|
||||
"statement.exp.func.min": "{0} 和 {1} 的最小值",
|
||||
"statement.exp.func.release_timing": "在时间区间 ({0}, {1}) 中松开",
|
||||
"statement.exp.func.screen_edge": "屏幕边缘 #{0}",
|
||||
"statement.exp.literal.ident": "{0}",
|
||||
"statement.exp.literal.identforced": "{0}(强制)",
|
||||
"statement.exp.literal.number": "{0}",
|
||||
"statement.exp.literal.string": "{0}",
|
||||
"statement.exp.number": "{0}",
|
||||
"statement.exp.number_or_vector": "{0}",
|
||||
"statement.exp.string": "{0}",
|
||||
"statement.exp.op.add": "{0} + {1}",
|
||||
"statement.exp.op.add1": "+{0}",
|
||||
"statement.exp.op.and": "{0} 且 {1}",
|
||||
@@ -112,6 +166,8 @@ messages["zh_CN"] = {
|
||||
"statement.exp.op.mul": "{0} × {1}",
|
||||
"statement.exp.op.not": "非 {0}",
|
||||
"statement.exp.op.or": "{0} 或 {1}",
|
||||
"statement.exp.op.sep.arr": "数组 {0}",
|
||||
"statement.exp.op.sep.vec": "向量 {0}",
|
||||
"statement.exp.op.sub": "{0} - {1}",
|
||||
"statement.exp.op.sub1": "-{0}",
|
||||
"statement.obj": "创建一个容器 {0}",
|
||||
|
Reference in New Issue
Block a user