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

refactor(i18n): new field in IoTDB connector #66

Merged
merged 1 commit into from
Oct 8, 2024
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
1 change: 1 addition & 0 deletions packages/i18n/lib/enConnectorsLabel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export const enConnectorsLabel: Record<string, Record<string, string>> = {
driver: 'Driver',
protocol_version: 'Protocol Version',
zoneId: 'Zone ID',
recv_timeout: 'Receive Timeout',
},
elasticsearch: {
server: 'Server',
Expand Down
1 change: 1 addition & 0 deletions packages/i18n/lib/enIntegrationDesc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ export const enIntegrationDesc: Record<string, Record<string, string>> = {
device_id:
'A fixed device name this data should be inserted for. If empty it must either be set in the rule action, the message itself, or it will be extracted from the topic.',
is_aligned: 'Whether to align the timeseries',
recv_timeout: 'Timeout for receiving from IoTDB Thrift server.',
},
opents: {
server: 'The URL of OpenTSDB endpoint.',
Expand Down
1 change: 1 addition & 0 deletions packages/i18n/lib/zhConnectorsLabel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export const zhConnectorsLabel: Record<string, Record<string, string>> = {
driver: '驱动',
protocol_version: '协议版本',
zoneId: '时区 ID',
recv_timeout: '接收超时',
},
elasticsearch: {
server: '服务器地址',
Expand Down
1 change: 1 addition & 0 deletions packages/i18n/lib/zhIntegrationDesc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ export const zhIntegrationDesc: Record<string, Record<string, string>> = {
device_id:
'应插入此数据的固定设备名称。如果为空,则必须在规则操作中设置,消息本身中设置,或从主题中提取。',
is_aligned: '是否对齐时间序列',
recv_timeout: '接收 IoTDB Thrift 服务器的超时时间。',
},
opents: {
server: '服务器的地址。',
Expand Down
Loading