@things-factory/shell 6.2.15 → 6.2.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,13 @@
1
+ # 権限エディター
2
+
3
+ 特定の操作を実行するために必要な権限を設定します。
4
+
5
+ # プロパティ
6
+
7
+ - 権限
8
+ - 特定の操作を実行するために必要な権限を指定します。
9
+ - 権限が設定されていない場合、特別な権限は必要ないことを意味し、ドメインの所有者やスーパーユーザーの設定は無意味です。
10
+ - ドメインの所有者
11
+ - このプロパティが設定されている場合、ドメインの管理者は上記の権限が設定されていなくてもこの操作を実行できることを意味します。
12
+ - スーパーユーザー
13
+ - このプロパティが設定されている場合、スーパーユーザーは上記の権限が設定されていなくてもこの操作を実行できることを意味します。
@@ -0,0 +1,13 @@
1
+ # privilege editor
2
+
3
+ 어떤 작업을 수행하기위해 필요한 권한을 설정한다.
4
+
5
+ # properties
6
+
7
+ - privilege
8
+ - 어떤 작업을 수행하기위해 필요한 권한을 지정한다.
9
+ - privilage가 설정되지 않으면, 특별한 권한을 필요로 하지 않음을 의미하므로 domain owner나 super user 설정은 무의미하다.
10
+ - domain owner
11
+ - 이 속성이 설정되면, 도메인의 관리자인 경우에는 위에서 설정한 권한이 없어도 이 작업을 수행할 수 있는 권한이 부여된다는 것을 의미한다.
12
+ - super user
13
+ - 이 속성이 설정되면, 수퍼유저인 경우에는 위에서 설정한 권한이 없어도 이 작업을 수행할 수 있는 권한이 부여된다는 것을 의미한다.
@@ -0,0 +1,15 @@
1
+ # Privilege Editor
2
+
3
+ Configure the permissions required to perform a specific action.
4
+
5
+ # Properties
6
+
7
+ - Privilege
8
+ - Specify the permissions required to perform a specific action.
9
+ - If no privilege is set, it means the action does not require any special permissions, rendering domain owner or super user settings meaningless.
10
+ - Domain Owner
11
+ - When this attribute is set, it means that domain administrators have the permission to perform this action without needing the specified privileges above.
12
+ - Super User
13
+ - When this attribute is set, it means that super users have the permission to perform this action without needing the specified privileges above.
14
+
15
+ --
@@ -0,0 +1,13 @@
1
+ # Penyunting Privilej
2
+
3
+ Mengatur kebenaran yang diperlukan untuk menjalankan sesuatu tindakan.
4
+
5
+ # Ciri-ciri
6
+
7
+ - kebenaran
8
+ - Menetapkan kebenaran yang diperlukan untuk menjalankan sesuatu tindakan.
9
+ - Jika kebenaran tidak ditetapkan, bermakna tindakan ini tidak memerlukan kebenaran khusus, oleh itu pengaturan pemilik domain atau pengguna super adalah tidak bermakna.
10
+ - pemilik domain
11
+ - Apabila ciri ini ditetapkan, bermakna pengurus domain mempunyai kebenaran untuk menjalankan tindakan ini tanpa mengira kebenaran yang ditetapkan di atas.
12
+ - super pengguna
13
+ - Apabila ciri ini ditetapkan, bermakna super pengguna mempunyai kebenaran untuk menjalankan tindakan ini tanpa mengira kebenaran yang ditetapkan di atas.
@@ -0,0 +1,13 @@
1
+ # 权限编辑器
2
+
3
+ 用于设置执行某项操作所需的权限。
4
+
5
+ # 属性
6
+
7
+ - 权限
8
+ - 指定执行某项操作所需的权限。
9
+ - 如果未设置权限,则表示不需要特殊权限,因此域所有者或超级用户设置将无意义。
10
+ - 域所有者
11
+ - 如果设置了此属性,则表示域的管理员可以执行此操作,即使没有设置上面的权限。
12
+ - 超级用户
13
+ - 如果设置了此属性,则表示超级用户可以执行此操作,即使没有设置上面的权限。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/shell",
3
- "version": "6.2.15",
3
+ "version": "6.2.24",
4
4
  "description": "Core module for framework",
5
5
  "bin": {
6
6
  "things-factory": "bin/things-factory",
@@ -132,5 +132,5 @@
132
132
  "pg": "^8.7.3",
133
133
  "sqlite3": "^5.0.8"
134
134
  },
135
- "gitHead": "262fa72c069ac8745dd16acd695d0e87331fbc14"
135
+ "gitHead": "f407983563cca529ba87ea8febb5be751ad3229e"
136
136
  }
@@ -1,23 +1,32 @@
1
1
  {
2
- "text.you.are.now.in": "您处于在 {state}",
2
+ "text.you.are.now.in": "您现在是 {state}",
3
3
  "text.offline": "离线",
4
- "text.online": "线上",
5
- "field.id": "id",
6
- "field.name": "名字",
4
+ "text.online": "在线",
5
+ "field.id": "账号",
6
+ "field.name": "姓名",
7
7
  "field.description": "描述",
8
- "field.created_at": "创建于",
9
- "field.updated_at": "更新于",
10
- "field.deleted_at": "删除于",
11
- "field.creator": "创造者",
8
+ "field.domain": "域名",
9
+ "field.created_at": "创建时间",
10
+ "field.updated_at": "更新时间",
11
+ "field.deleted_at": "删除时间",
12
+ "field.creator": "创建者",
12
13
  "field.updater": "更新者",
13
14
  "field.deleter": "删除者",
14
- "text.are_you_sure": "确定执行?",
15
- "prompt.sure to navigate away?": "您有未保存的更改。确定要离开吗?",
16
- "text.data_deleted_successfully": "数据已删除。",
17
- "text.data_updated_successfully": "数据已更新。",
18
- "text.data_uploaded_successfully": "data uploaded successfully",
19
- "text.nothing_changed": "没有更改",
20
- "text.nothing_selected": "没有选择",
21
- "text.there_is_nothing_to_delete": "没有删除目标",
22
- "text.there_is_nothing_to_save": "没有储存目标"
15
+ "field.timezone": "时区",
16
+ "field.default": "默认值",
17
+ "field.system_flag": "系统标志",
18
+ "field.subdomain": "子域名",
19
+ "field.brand_name": "品牌名称",
20
+ "field.brand_image": "品牌图片",
21
+ "field.content_image": "内容图片",
22
+ "field.theme": "主题",
23
+ "prompt.sure to navigate away?": "更改未保存。您确定要离开吗?",
24
+ "text.are_you_sure": "您确定要进行吗?",
25
+ "text.data_updated_successfully": "数据更新成功。",
26
+ "text.data_uploaded_successfully": "数据上传成功。",
27
+ "text.data_deleted_successfully": "数据删除成功。",
28
+ "text.nothing_changed": "无更改",
29
+ "text.nothing_selected": "未选择",
30
+ "text.there_is_nothing_to_delete": "没有要删除的数据。",
31
+ "text.there_is_nothing_to_save": "没有要保存的数据。"
23
32
  }