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

添加BCC/CRC/LRC校验功能 #199

Merged
merged 7 commits into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
update
  • Loading branch information
baiy committed Jan 18, 2023
commit 3090699826ed30a11d34a3bb166ce02dc142ae77
2 changes: 1 addition & 1 deletion packages/ctool-config/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export let _tools = {
dataValidation: {
feature: ['bcc', 'crc', 'lrc'],
parent_directory: "",
keywords: ['异或校验', '循环冗余校验', '纵向冗余校验']
keywords: ['异或校验', '循环冗余校验', '纵向冗余校验', '数据校验']
},
} as const;

Expand Down
2 changes: 1 addition & 1 deletion packages/ctool-core/src/i18n/locales/en/tool.i18n.json5
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"ipcalc": "Ipcalc",
"sqlFillParameter": 'Fill SQL Parameters',
"httpSnippet": 'Http Request Code',
"dataValidation": 'BCC/CRC/LRC Validation',
"dataValidation": 'BCC/CRC/LRC',
"dataValidation_bcc": 'BCC',
"dataValidation_crc": 'CRC',
"dataValidation_lrc": 'LRC'
Expand Down
2 changes: 1 addition & 1 deletion packages/ctool-core/src/i18n/locales/zh_CN/tool.i18n.json5
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"ipcalc": "IP网络计算器",
"sqlFillParameter": 'SQL参数填充',
"httpSnippet": 'Http请求代码',
"dataValidation": 'BCC/CRC/LRC校验',
"dataValidation": 'BCC/CRC/LRC',
"dataValidation_bcc": 'BCC',
"dataValidation_crc": 'CRC',
"dataValidation_lrc": 'LRC',
Expand Down