[PR #2477] [MERGED] i18n: Add Tamil Translation #3834

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

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2477
Author: @mcnaveen
Created: 7/1/2022
Status: Merged
Merged: 7/1/2022
Merged by: @liyasthomas

Base: i18nHead: tamil-i18n


📝 Commits (8)

  • ca553b9 fix: empty string exported when exporting team collections (#2460)
  • 07a8a37 feat: realtime tabs as subpages (#2450)
  • ed6e1c0 chore: update package lock file
  • cfdab01 refactor: allow smart tabs to render inactive tabs as an option
  • c34185d fix: environment variables save without pressing 'save' button (#2454)
  • cac3abd fix: multiple requests appearing on teams (#2455)
  • 9f24904 Add Tamil Translation
  • f1d56be Merge branch 'main' into tamil-i18n

📊 Changes

25 files changed (+1551 additions, -164 deletions)

View changed files

📝 packages/hoppscotch-app/components/app/Sidenav.vue (+20 -0)
📝 packages/hoppscotch-app/components/collections/ChooseType.vue (+5 -1)
📝 packages/hoppscotch-app/components/collections/ImportExport.vue (+3 -3)
📝 packages/hoppscotch-app/components/environments/Details.vue (+60 -18)
📝 packages/hoppscotch-app/components/graphql/RequestOptions.vue (+1 -0)
📝 packages/hoppscotch-app/components/graphql/Sidebar.vue (+2 -0)
📝 packages/hoppscotch-app/components/http/RequestOptions.vue (+1 -0)
📝 packages/hoppscotch-app/components/http/Sidebar.vue (+1 -0)
📝 packages/hoppscotch-app/components/http/TestResultEnv.vue (+4 -1)
📝 packages/hoppscotch-app/components/lenses/ResponseBodyRenderer.vue (+1 -0)
📝 packages/hoppscotch-app/components/realtime/LogEntry.vue (+5 -1)
📝 packages/hoppscotch-app/components/smart/Tab.vue (+16 -3)
📝 packages/hoppscotch-app/components/smart/Tabs.vue (+7 -0)
📝 packages/hoppscotch-app/helpers/backend/GQLClient.ts (+3 -2)
📝 packages/hoppscotch-app/helpers/shortcodes/ShortcodeListAdapter.ts (+18 -4)
📝 packages/hoppscotch-app/helpers/teams/TeamCollectionAdapter.ts (+53 -12)
📝 packages/hoppscotch-app/languages.json (+6 -0)
packages/hoppscotch-app/locales/ta.json (+599 -0)
📝 packages/hoppscotch-app/pages/profile.vue (+1 -1)
📝 packages/hoppscotch-app/pages/realtime.vue (+55 -41)

...and 5 more files

📄 Description

Description

This PR adds Tamil language to Hoppscotch

Checks

  • My pull request adheres to the code style of this project
  • My code requires changes to the documentation
  • I have updated the documentation as required
  • All the tests have passed

Additional Information


🔄 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/2477 **Author:** [@mcnaveen](https://github.com/mcnaveen) **Created:** 7/1/2022 **Status:** ✅ Merged **Merged:** 7/1/2022 **Merged by:** [@liyasthomas](https://github.com/liyasthomas) **Base:** `i18n` ← **Head:** `tamil-i18n` --- ### 📝 Commits (8) - [`ca553b9`](https://github.com/hoppscotch/hoppscotch/commit/ca553b9d3cb82aa6f1eacc373d9fb4b883bce397) fix: empty string exported when exporting team collections (#2460) - [`07a8a37`](https://github.com/hoppscotch/hoppscotch/commit/07a8a377397dddd3d0763d3d4177d71dc4272c5b) feat: realtime tabs as subpages (#2450) - [`ed6e1c0`](https://github.com/hoppscotch/hoppscotch/commit/ed6e1c0f940216c3bb81402fc32e82eb06443a9f) chore: update package lock file - [`cfdab01`](https://github.com/hoppscotch/hoppscotch/commit/cfdab014c739c994f4a9399b62ab229a07b9eaa9) refactor: allow smart tabs to render inactive tabs as an option - [`c34185d`](https://github.com/hoppscotch/hoppscotch/commit/c34185dc4badc9fb048676706ecd7825613b5e3f) fix: environment variables save without pressing 'save' button (#2454) - [`cac3abd`](https://github.com/hoppscotch/hoppscotch/commit/cac3abd2ab44b19a73a58f94598b76e8eb96672c) fix: multiple requests appearing on teams (#2455) - [`9f24904`](https://github.com/hoppscotch/hoppscotch/commit/9f24904143f66f47b011a50c109128597282bb3b) :sparkles: Add Tamil Translation - [`f1d56be`](https://github.com/hoppscotch/hoppscotch/commit/f1d56be27d7d46ea4cc655abf1c21cf08dca38ee) Merge branch 'main' into tamil-i18n ### 📊 Changes **25 files changed** (+1551 additions, -164 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-app/components/app/Sidenav.vue` (+20 -0) 📝 `packages/hoppscotch-app/components/collections/ChooseType.vue` (+5 -1) 📝 `packages/hoppscotch-app/components/collections/ImportExport.vue` (+3 -3) 📝 `packages/hoppscotch-app/components/environments/Details.vue` (+60 -18) 📝 `packages/hoppscotch-app/components/graphql/RequestOptions.vue` (+1 -0) 📝 `packages/hoppscotch-app/components/graphql/Sidebar.vue` (+2 -0) 📝 `packages/hoppscotch-app/components/http/RequestOptions.vue` (+1 -0) 📝 `packages/hoppscotch-app/components/http/Sidebar.vue` (+1 -0) 📝 `packages/hoppscotch-app/components/http/TestResultEnv.vue` (+4 -1) 📝 `packages/hoppscotch-app/components/lenses/ResponseBodyRenderer.vue` (+1 -0) 📝 `packages/hoppscotch-app/components/realtime/LogEntry.vue` (+5 -1) 📝 `packages/hoppscotch-app/components/smart/Tab.vue` (+16 -3) 📝 `packages/hoppscotch-app/components/smart/Tabs.vue` (+7 -0) 📝 `packages/hoppscotch-app/helpers/backend/GQLClient.ts` (+3 -2) 📝 `packages/hoppscotch-app/helpers/shortcodes/ShortcodeListAdapter.ts` (+18 -4) 📝 `packages/hoppscotch-app/helpers/teams/TeamCollectionAdapter.ts` (+53 -12) 📝 `packages/hoppscotch-app/languages.json` (+6 -0) ➕ `packages/hoppscotch-app/locales/ta.json` (+599 -0) 📝 `packages/hoppscotch-app/pages/profile.vue` (+1 -1) 📝 `packages/hoppscotch-app/pages/realtime.vue` (+55 -41) _...and 5 more files_ </details> ### 📄 Description ### Description <!-- Add a brief description of the pull request --> This PR adds Tamil language to Hoppscotch <!-- You can also choose to add a list of changes and if they have been completed or not by using the markdown to-do list syntax - [ ] Not Completed - [x] Completed --> ### Checks <!-- Make sure your pull request passes the CI checks and do check the following fields as needed - --> - [x] My pull request adheres to the code style of this project - [ ] My code requires changes to the documentation - [ ] I have updated the documentation as required - [x] All the tests have passed ### Additional Information <!-- Any additional information like breaking changes, dependencies added, screenshots, comparisons between new and old behavior, etc. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:24:47 +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#3834
No description provided.