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

fix(iotdb): remove placeholder support for data type #86

Merged
merged 2 commits into from
Dec 20, 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
6 changes: 6 additions & 0 deletions packages/i18n/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @emqx/shared-ui-i18n

## 0.0.35

### Patch Changes

- Update IoTDB Data Type desc

## 0.0.34

### Patch Changes
Expand Down
3 changes: 2 additions & 1 deletion packages/i18n/lib/enIntegrationDesc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,8 @@ export const enIntegrationDesc: Record<string, Record<string, string>> = {
timestamp:
"Supports the use of ${'{'}var{'}'} format as a placeholder, which should be in timestamp format. You can also use the following special characters to insert system time:<br/>- `now`: Current millisecond-level timestamp<br/>- `now_ms`: Current millisecond-level timestamp<br/>- `now_us`: Current microsecond-level timestamp<br/>- `now_ns`: Current nanosecond-level timestamp",
measurement: "Supports the use of ${'{'}var{'}'} format as a placeholder.",
data_type: "Data Type, supports the use of ${'{'}var{'}'} format as a placeholder.",
data_type:
'The data type for the value. Supported types: boolean, int32, int64, float, double, text.',
value: "The value to be inserted, supports the use of ${'{'}var{'}'} format as a placeholder.",
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.',
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/lib/zhIntegrationDesc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ export const zhIntegrationDesc: Record<string, Record<string, string>> = {
timestamp:
"支持使用 ${'{'}var{'}'} 格式的占位符,要求是时间戳格式。也可以使用以下特殊字符插入系统时间:<br/>- `now`: 当前毫秒级时间戳<br/>- `now_ms`: 当前毫秒级时间戳<br/>- `now_us`: 当前微秒级时间戳<br/>- `now_ns`: 当前纳秒级时间戳",
measurement: "也称 Measurement,支持使用 ${'{'}var{'}'} 格式的占位符。",
data_type: "数据类型,支持使用 ${'{'}var{'}'} 格式的占位符。",
data_type: '插入值的数据类型。支持的类型:boolean、int32、int64、float、double、text。',
value: "要插入的值,支持使用 ${'{'}var{'}'} 格式的占位符。",
device_id:
'应插入此数据的固定设备名称。如果为空,则必须在规则操作中设置,消息本身中设置,或从主题中提取。',
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emqx/shared-ui-i18n",
"version": "0.0.34",
"version": "0.0.35",
"homepage": "https://emqx.io",
"license": "Apache-2.0",
"repository": {
Expand Down
Loading