[PR #2367] [CLOSED] Update TRANSLATIONS.md #3765

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

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2367
Author: @veluthoor
Created: 5/26/2022
Status: Closed

Base: i18nHead: patch-1


📝 Commits (8)

  • 450af98 fix: overflow on log entry
  • d045206 refactor: isolate computed header calculation on effective requests (#2313)
  • 432337b chore: tests for hoppscotch-cli (#2300)
  • 184914b feat: extension identification improvements (#2332)
  • cfa89a6 feat: UI of shortcode actions (#2347)
  • 346ac8b chore: improve ui consistency on table layout
  • b1a2c9e fix: text overflow in table layout
  • 25fb53d Update TRANSLATIONS.md

📊 Changes

58 files changed (+3041 additions, -456 deletions)

View changed files

📝 TRANSLATIONS.md (+1 -1)
📝 packages/hoppscotch-app/components/app/Interceptor.vue (+33 -54)
📝 packages/hoppscotch-app/components/http/Headers.vue (+88 -3)
📝 packages/hoppscotch-app/components/http/Request.vue (+37 -25)
📝 packages/hoppscotch-app/components/http/RequestOptions.vue (+1 -1)
packages/hoppscotch-app/components/profile/Shortcode.vue (+135 -0)
📝 packages/hoppscotch-app/components/realtime/LogEntry.vue (+1 -1)
📝 packages/hoppscotch-app/components/smart/EnvInput.vue (+20 -0)
📝 packages/hoppscotch-app/components/smart/Radio.vue (+20 -22)
📝 packages/hoppscotch-app/components/smart/RadioGroup.vue (+8 -4)
packages/hoppscotch-app/helpers/backend/gql/mutations/DeleteShortcode.graphql (+3 -0)
packages/hoppscotch-app/helpers/backend/gql/queries/GetMyShortcodes.graphql (+7 -0)
packages/hoppscotch-app/helpers/backend/gql/subscriptions/ShortcodeCreated.graphql (+7 -0)
packages/hoppscotch-app/helpers/backend/gql/subscriptions/ShortcodeDeleted.graphql (+5 -0)
📝 packages/hoppscotch-app/helpers/backend/helpers.ts (+1 -1)
📝 packages/hoppscotch-app/helpers/backend/mutations/Shortcode.ts (+14 -0)
packages/hoppscotch-app/helpers/shortcodes/Shortcode.ts (+8 -0)
packages/hoppscotch-app/helpers/shortcodes/ShortcodeListAdapter.ts (+149 -0)
📝 packages/hoppscotch-app/helpers/strategies/ExtensionStrategy.ts (+50 -12)
📝 packages/hoppscotch-app/helpers/strategies/__tests__/ExtensionStrategy-NoProxy.spec.js (+0 -7)

...and 38 more files

📄 Description

Description


🔄 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/2367 **Author:** [@veluthoor](https://github.com/veluthoor) **Created:** 5/26/2022 **Status:** ❌ Closed **Base:** `i18n` ← **Head:** `patch-1` --- ### 📝 Commits (8) - [`450af98`](https://github.com/hoppscotch/hoppscotch/commit/450af983e299ebcfb7afe3e5715b1e0890efadcc) fix: overflow on log entry - [`d045206`](https://github.com/hoppscotch/hoppscotch/commit/d04520698daf310dd8172e6cd91b72521965c73f) refactor: isolate computed header calculation on effective requests (#2313) - [`432337b`](https://github.com/hoppscotch/hoppscotch/commit/432337b8017d35af3f9ad59939e1597f49e881e6) chore: tests for hoppscotch-cli (#2300) - [`184914b`](https://github.com/hoppscotch/hoppscotch/commit/184914ba4f62d4d2266d05ae9f4a8c607fe227d1) feat: extension identification improvements (#2332) - [`cfa89a6`](https://github.com/hoppscotch/hoppscotch/commit/cfa89a6dedd576089b3055d7c8133045c5e7a63c) feat: UI of shortcode actions (#2347) - [`346ac8b`](https://github.com/hoppscotch/hoppscotch/commit/346ac8bde91e29cf7be8968ef157525cfae59377) chore: improve ui consistency on table layout - [`b1a2c9e`](https://github.com/hoppscotch/hoppscotch/commit/b1a2c9e9d58e9a5b60fe1860b8b8cf54fd02298d) fix: text overflow in table layout - [`25fb53d`](https://github.com/hoppscotch/hoppscotch/commit/25fb53d866b7a133f72af0c2f621f9272cf247b9) Update TRANSLATIONS.md ### 📊 Changes **58 files changed** (+3041 additions, -456 deletions) <details> <summary>View changed files</summary> 📝 `TRANSLATIONS.md` (+1 -1) 📝 `packages/hoppscotch-app/components/app/Interceptor.vue` (+33 -54) 📝 `packages/hoppscotch-app/components/http/Headers.vue` (+88 -3) 📝 `packages/hoppscotch-app/components/http/Request.vue` (+37 -25) 📝 `packages/hoppscotch-app/components/http/RequestOptions.vue` (+1 -1) ➕ `packages/hoppscotch-app/components/profile/Shortcode.vue` (+135 -0) 📝 `packages/hoppscotch-app/components/realtime/LogEntry.vue` (+1 -1) 📝 `packages/hoppscotch-app/components/smart/EnvInput.vue` (+20 -0) 📝 `packages/hoppscotch-app/components/smart/Radio.vue` (+20 -22) 📝 `packages/hoppscotch-app/components/smart/RadioGroup.vue` (+8 -4) ➕ `packages/hoppscotch-app/helpers/backend/gql/mutations/DeleteShortcode.graphql` (+3 -0) ➕ `packages/hoppscotch-app/helpers/backend/gql/queries/GetMyShortcodes.graphql` (+7 -0) ➕ `packages/hoppscotch-app/helpers/backend/gql/subscriptions/ShortcodeCreated.graphql` (+7 -0) ➕ `packages/hoppscotch-app/helpers/backend/gql/subscriptions/ShortcodeDeleted.graphql` (+5 -0) 📝 `packages/hoppscotch-app/helpers/backend/helpers.ts` (+1 -1) 📝 `packages/hoppscotch-app/helpers/backend/mutations/Shortcode.ts` (+14 -0) ➕ `packages/hoppscotch-app/helpers/shortcodes/Shortcode.ts` (+8 -0) ➕ `packages/hoppscotch-app/helpers/shortcodes/ShortcodeListAdapter.ts` (+149 -0) 📝 `packages/hoppscotch-app/helpers/strategies/ExtensionStrategy.ts` (+50 -12) 📝 `packages/hoppscotch-app/helpers/strategies/__tests__/ExtensionStrategy-NoProxy.spec.js` (+0 -7) _...and 38 more files_ </details> ### 📄 Description ### Description <Minor Capitalisation fixed> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:20:58 +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#3765
No description provided.