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

feat: add zh-tw language #76

Merged
merged 1 commit into from
Nov 22, 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
11 changes: 5 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,23 @@
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/out"
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
"${workspaceFolder}/**/*.js"
]
},
{
"name": "Run Web Extension",
"type": "extensionHost",
"debugWebWorkerHost": true,
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/out",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionDevelopmentKind=web"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/**/*.js"
]
}
]
Expand Down
64 changes: 0 additions & 64 deletions .vscode/tasks.json

This file was deleted.

13 changes: 13 additions & 0 deletions l10n/bundle.l10n.zh-tw.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"Convert `{px}px` to `{value}` (the current benchmark font-size is `{rootFontSize}px`": "將 `{px}px` 轉換為 `{value}` (當前基準字號為 `{rootFontSize}px`",
"Converted from `{rem}rem` according to the benchmark font-size is `{rootFontSize}px`": "由 `{rem}rem` 根據基準字號 `{rootFontSize}px` 轉換而來",
"Convert {px}rem to {value} (the current benchmark font-size is {rootFontSize}px": "將 `{px}rem` 轉換為 `{value}` (當前基準字號為 `{rootFontSize}px`",
"Converted from `{px}px` according to the benchmark font-size is `{rootFontSize}px`": "由 `{px}px` 根據基準字號 `{rootFontSize}px` 轉換而來",
"Convert `{px}px` to `{vw}` (current device width `{vwDesign}px`, base font size is `{rootFontSize}px`)": "將 `{px}px` 轉換為 `{vw}` (當前設備寬度 `{vwDesign}px`, 基準字號為 `{rootFontSize}px`)",
"Convert `{px}px` to `{vw}vw` (current device width `{vwDesign}px`, base font size is `{rootFontSize}px`)": "由 `{px}px` 轉換為 `{vw}vm` (當前設備寬度 `{vwDesign}px`, 基準字號為 `{rootFontSize}px`)",
"Convert `{vw}vw` to `{px}` (current device width `{vwDesign}px`, base font size is `{rootFontSize}px`)": "將 `{vw}vw` 轉換為 `{px}` (當前設備寬度 `{vwDesign}px`, 基準字號為 `{rootFontSize}px`)",
"Converted from `{px}px` (current device width `{vwDesign}px`, base font size is `{rootFontSize}px`)": "由 `{px}px` 轉換而來(當前設備寬度 `{vwDesign}px`, 基準字號為 `{rootFontSize}px`)",
"**WXSS miniprogram style** Convert `{px}px` to `{rpx}` (the current device width is `{wxssDeviceWidth}px` and screen width is `{wxssScreenWidth}px`)": "**WXSS小程序樣式** 將 `{px}px` 轉換為 `{rpx}` (當前設備寬度 `{wxssDeviceWidth}px`、基準屏幕 `{wxssScreenWidth}px`",
"**WXSS miniprogram style** Convert `{rpx}rpx` to `{px}` (The current device width is `{wxssDeviceWidth}px` and screen width is `{wxssScreenWidth}px`)": "**WXSS小程序樣式** 將 `{rpx}rpx` 轉換為 `{px}` (當前設備寬度 `{wxssDeviceWidth}px`、基準屏幕 `{wxssScreenWidth}px`",
"**WXSS miniprogram style** Converted from `{px}px` (The current device width is `{wxssDeviceWidth}px` and screen width is `{wxssScreenWidth}px`)": "**WXSS小程序樣式** 由 `{px}px` 轉換而來(當前設備寬度 `{wxssDeviceWidth}px`、基準屏幕 `{wxssScreenWidth}px`)"
}
Loading