Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

添加国际化 #7101

Merged
merged 1 commit into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/desktop/src/config/i18n/cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,7 @@ const cn = {
'转换为变量和取消使用变量说明': '转换为变量和取消使用变量说明',
'如何工作:利用节点的参数创建一个对应组件类型的变量。例如某个参数是下拉框组件,则创建一个下拉框变量': '如何工作:利用节点的参数创建一个对应组件类型的变量。例如某个参数是下拉框组件,则创建一个下拉框变量',
'如何使用:转换时自动引用创建的变量,或复用其它节点已创建的同组件类型变量,实现将多个节点的同一配置项统一变量集中维护': '如何使用:转换时自动引用创建的变量,或复用其它节点已创建的同组件类型变量,实现将多个节点的同一配置项统一变量集中维护',
'如何删除:当所有使用该变量的参数恢复为节点内维护,则自动删除变量': '如何删除:当所有使用该变量的参数恢复为节点内维护,则自动删除变量',
'如何删除:取消接收输出则自动删除变量': '如何删除:取消接收输出则自动删除变量',
'接收输出和取消接收使用说明': '接收输出和取消接收使用说明',
'如何工作:自动创建一个节点输出类型变量来接收任务执行时节点的输出': '如何工作:自动创建一个节点输出类型变量来接收任务执行时节点的输出',
'如何使用:在当前节点后执行的节点可引用变量来获取该节点的输出': '如何使用:在当前节点后执行的节点可引用变量来获取该节点的输出',
Expand Down
2 changes: 1 addition & 1 deletion frontend/desktop/src/config/i18n/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,7 @@ const en = {
'转换为变量和取消使用变量说明': 'Instructions for converting to variable and canceling use variable',
'如何工作:利用节点的参数创建一个对应组件类型的变量。例如某个参数是下拉框组件,则创建一个下拉框变量': "How it works: Create a variable of the corresponding component type using the node's parameter. For example, if a parameter is a dropdown list component, a dropdown list variable will be created.",
'如何使用:转换时自动引用创建的变量,或复用其它节点已创建的同组件类型变量,实现将多个节点的同一配置项统一变量集中维护': 'How to use: The variable created during conversion will be automatically referenced, or an existing variable of the same component type created by another node can be reused. This enables the centralized maintenance of the same configuration item of multiple nodes using variables.',
'如何删除:当所有使用该变量的参数恢复为节点内维护,则自动删除变量': 'How to delete: When all parameters using this variable are restored to node-internal maintenance, the variable will be automatically deleted.',
'如何删除:取消接收输出则自动删除变量': 'How to delete: Canceling receive output will automatically delete the variable.',
'接收输出和取消接收使用说明': 'Instructions for receiving output and canceling receive output',
'如何工作:自动创建一个节点输出类型变量来接收任务执行时节点的输出': 'How it works: Automatically create a node output type variable to receive the output of the node during task execution.',
'如何使用:在当前节点后执行的节点可引用变量来获取该节点的输出': 'How to use: Subsequent nodes can reference the variable to get the output of the node.',
Expand Down
Loading