[PR #2295] [CLOSED] Update Traditional Chinese translation #3714

Closed
opened 2026-03-17 01:18:13 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2295
Author: @5idereal
Created: 4/26/2022
Status: Closed

Base: i18nHead: patch-2


📝 Commits (10+)

  • 376303d fix: emit-volar-types generating invalid decls on win
  • d4540a5 refactor: improve the mobile layout. (#2153)
  • 8f96a5f chore(deps): bump
  • bd22541 refactor: improve ui consistency
  • 4ec56c6 feat: handle tab key press on editors - resolved #2185
  • fe64e13 fix(locale): typo in the language es (#2186)
  • c8031c0 refactor: fix i118n translations
  • 70a1b71 Fix typo in usage step (#2183)
  • 755ee33 refactor: replace deprecated String.prototype.substr() (#2187)
  • 5d54cf5 fix: accent color always marked as the same color once loaded fixes #2196

📊 Changes

186 files changed (+10766 additions, -4546 deletions)

View changed files

.gitattributes (+1 -0)
.github/workflows/deploy-netlify.yml (+34 -0)
📝 README.md (+4 -3)
📝 package.json (+3 -3)
📝 packages/codemirror-lang-graphql/package.json (+6 -6)
📝 packages/hoppscotch-app/.gitignore (+1 -1)
packages/hoppscotch-app/assets/icons/grip-vertical.svg (+18 -0)
📝 packages/hoppscotch-app/assets/scss/styles.scss (+17 -0)
📝 packages/hoppscotch-app/assets/scss/themes.scss (+12 -3)
packages/hoppscotch-app/components/app/DeveloperOptions.vue (+91 -0)
📝 packages/hoppscotch-app/components/app/Footer.vue (+21 -9)
📝 packages/hoppscotch-app/components/app/Fuse.vue (+3 -3)
📝 packages/hoppscotch-app/components/app/Header.vue (+11 -12)
packages/hoppscotch-app/components/app/Options.vue (+210 -0)
📝 packages/hoppscotch-app/components/app/PowerSearch.vue (+3 -3)
📝 packages/hoppscotch-app/components/app/Share.vue (+1 -0)
📝 packages/hoppscotch-app/components/app/Sidenav.vue (+1 -1)
📝 packages/hoppscotch-app/components/app/Support.vue (+1 -0)
📝 packages/hoppscotch-app/components/button/Primary.vue (+36 -75)
📝 packages/hoppscotch-app/components/button/Secondary.vue (+34 -66)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/2295 **Author:** [@5idereal](https://github.com/5idereal) **Created:** 4/26/2022 **Status:** ❌ Closed **Base:** `i18n` ← **Head:** `patch-2` --- ### 📝 Commits (10+) - [`376303d`](https://github.com/hoppscotch/hoppscotch/commit/376303dd5d0beac86ac16238094b83dc7f95a0de) fix: emit-volar-types generating invalid decls on win - [`d4540a5`](https://github.com/hoppscotch/hoppscotch/commit/d4540a56b9dfac4da18e2e8f0d2720200982cb42) refactor: improve the mobile layout. (#2153) - [`8f96a5f`](https://github.com/hoppscotch/hoppscotch/commit/8f96a5f5db0b06d8f5d63b348c3ef1e13c2d5e19) chore(deps): bump - [`bd22541`](https://github.com/hoppscotch/hoppscotch/commit/bd22541d94f7cebc8c2306e11ae854ed25169ff2) refactor: improve ui consistency - [`4ec56c6`](https://github.com/hoppscotch/hoppscotch/commit/4ec56c6300c4148f900aadb62d212a3447506c14) feat: handle tab key press on editors - resolved #2185 - [`fe64e13`](https://github.com/hoppscotch/hoppscotch/commit/fe64e131228747c4cbda150cb8bc7523b668b033) fix(locale): typo in the language es (#2186) - [`c8031c0`](https://github.com/hoppscotch/hoppscotch/commit/c8031c046d3f10b174611504daa1f4e888df0356) refactor: fix i118n translations - [`70a1b71`](https://github.com/hoppscotch/hoppscotch/commit/70a1b714e417530400e0351408d6dbc113780e3a) Fix typo in usage step (#2183) - [`755ee33`](https://github.com/hoppscotch/hoppscotch/commit/755ee333d06391ffa011c6323f2695594836413e) refactor: replace deprecated String.prototype.substr() (#2187) - [`5d54cf5`](https://github.com/hoppscotch/hoppscotch/commit/5d54cf51b814c4a252a17d783c9eca61041a932d) fix: accent color always marked as the same color once loaded fixes #2196 ### 📊 Changes **186 files changed** (+10766 additions, -4546 deletions) <details> <summary>View changed files</summary> ➕ `.gitattributes` (+1 -0) ➕ `.github/workflows/deploy-netlify.yml` (+34 -0) 📝 `README.md` (+4 -3) 📝 `package.json` (+3 -3) 📝 `packages/codemirror-lang-graphql/package.json` (+6 -6) 📝 `packages/hoppscotch-app/.gitignore` (+1 -1) ➕ `packages/hoppscotch-app/assets/icons/grip-vertical.svg` (+18 -0) 📝 `packages/hoppscotch-app/assets/scss/styles.scss` (+17 -0) 📝 `packages/hoppscotch-app/assets/scss/themes.scss` (+12 -3) ➕ `packages/hoppscotch-app/components/app/DeveloperOptions.vue` (+91 -0) 📝 `packages/hoppscotch-app/components/app/Footer.vue` (+21 -9) 📝 `packages/hoppscotch-app/components/app/Fuse.vue` (+3 -3) 📝 `packages/hoppscotch-app/components/app/Header.vue` (+11 -12) ➕ `packages/hoppscotch-app/components/app/Options.vue` (+210 -0) 📝 `packages/hoppscotch-app/components/app/PowerSearch.vue` (+3 -3) 📝 `packages/hoppscotch-app/components/app/Share.vue` (+1 -0) 📝 `packages/hoppscotch-app/components/app/Sidenav.vue` (+1 -1) 📝 `packages/hoppscotch-app/components/app/Support.vue` (+1 -0) 📝 `packages/hoppscotch-app/components/button/Primary.vue` (+36 -75) 📝 `packages/hoppscotch-app/components/button/Secondary.vue` (+34 -66) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:18:13 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#3714
No description provided.