From 33c75a5a077fde05ad8e57d777795c7f9c6fb141 Mon Sep 17 00:00:00 2001
From: Pearl C <63629092+pearl-cao@users.noreply.github.com>
Date: Sat, 18 Feb 2023 23:42:55 +0800
Subject: [PATCH] Update schema-initializer.md
---
.../api/client/schema-designer/schema-initializer.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/en-US/api/client/schema-designer/schema-initializer.md b/docs/en-US/api/client/schema-designer/schema-initializer.md
index 1502fd496..a8673a125 100644
--- a/docs/en-US/api/client/schema-designer/schema-initializer.md
+++ b/docs/en-US/api/client/schema-designer/schema-initializer.md
@@ -1,24 +1,24 @@
# SchemaInitializer
-用于各种 schema 的初始化。新增的 schema 可以插入到某个已有 schema 节点的任意位置,包括:
+Used for the initialization of various schemas. Newly added schema can be inserted anywhere in an existing schema node, including:
```ts
{
properties: {
- // beforeBegin 在当前节点的前面插入
+ // beforeBegin - Insert in front of the current node
node1: {
properties: {
- // afterBegin 在当前节点的第一个子节点前面插入
+ // afterBegin - Insert in front of the first child node of the current node
// ...
- // beforeEnd 在当前节点的最后一个子节点后面
+ // beforeEnd - After the last child node of the current node
},
},
- // afterEnd 在当前节点的后面
+ // afterEnd - After the current node
},
}
```
-SchemaInitializer 的核心包括 `` 和 `` 两个组件。`` 用于创建 Schema 的下拉菜单按钮,下拉菜单的菜单项为 ``。
+The core of SchemaInitializer includes `` and `` the two components. `` is used to create the dropdown menu button of schema, and the options of the dropdown menu is ``.
### ``