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): missing symbol labels in snowflake connector #63

Merged
merged 2 commits into from
Sep 26, 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.25

### Patch Changes

- Added missing symbol labels in snowflake connector

## 0.0.24

### Patch Changes
Expand Down
2 changes: 2 additions & 0 deletions packages/i18n/lib/enSymbolLabel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ export const enSymbolLabel: Record<string, string> = {
aggregated: 'Aggregated Upload',
parameters_proxy_none: 'None',
parameters_proxy_proxy_config: 'Enable Proxy',
proxy_none: 'None',
proxy_proxy_config: 'Enable Proxy',
}
2 changes: 2 additions & 0 deletions packages/i18n/lib/zhSymbolLabel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ export const zhSymbolLabel: Record<string, string> = {
aggregated: '聚合上传',
parameters_proxy_none: '无',
parameters_proxy_proxy_config: '开启代理',
proxy_none: '无',
proxy_proxy_config: '开启代理',
}
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.24",
"version": "0.0.25",
"homepage": "https://emqx.io",
"license": "Apache-2.0",
"repository": {
Expand Down
Loading