[PR #1202] [MERGED] Added support for Bengali language 🎉 #3134

Closed
opened 2026-03-17 00:46:33 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/1202
Author: @shunjid
Created: 10/1/2020
Status: Merged
Merged: 10/1/2020
Merged by: @liyasthomas

Base: i18nHead: bn


📝 Commits (10+)

📊 Changes

21 files changed (+563 additions, -206 deletions)

View changed files

.github/workflows/codeql-analysis.yml (+71 -0)
📝 README.md (+2 -0)
📝 components/collections/import-export-collections.vue (+4 -1)
📝 components/realtime/socketio.vue (+8 -12)
📝 components/ui/__tests__/autocomplete.spec.js (+4 -4)
📝 components/ui/url-field.vue (+8 -4)
docs/index.html (+0 -15)
📝 functions/package.json (+2 -2)
📝 helpers/__tests__/network.spec.js (+12 -16)
📝 helpers/codegen/codegen.js (+3 -2)
helpers/codegen/generators/js-axios.js (+53 -0)
📝 helpers/codegen/generators/js-fetch.js (+2 -0)
📝 helpers/codegen/generators/js-xhr.js (+2 -0)
📝 helpers/lenses/__tests__/lenses.spec.js (+4 -4)
📝 helpers/strategies/__tests__/AxiosStrategy-Proxy.spec.js (+4 -6)
📝 helpers/strategies/__tests__/ExtensionStrategy.spec.js (+4 -6)
lang/bn-BD.json (+297 -0)
📝 nuxt.config.js (+6 -1)
📝 package-lock.json (+73 -128)
📝 package.json (+3 -3)

...and 1 more files

📄 Description

What's New

  • Added support for Bengali language
  • As per contribution guideline: Copied lang/en-US.json to my target language file lang/bn-BD.json and translated all 295 strings to Bengali.
  • Added language entry to nuxt.config.js.

Goals 🥳

  • Hopefully, this contribution will be helpful for Bengali developers using Hoppscotch.
  • Suitability: Translation is suitable for both 🇧🇩 Bangladeshi and 🇮🇳 Indian native Bengali speakers.
  • My first contribution for Hacktoberfest 2020. 🎉

🔄 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/1202 **Author:** [@shunjid](https://github.com/shunjid) **Created:** 10/1/2020 **Status:** ✅ Merged **Merged:** 10/1/2020 **Merged by:** [@liyasthomas](https://github.com/liyasthomas) **Base:** `i18n` ← **Head:** `bn` --- ### 📝 Commits (10+) - [`7e1e61f`](https://github.com/hoppscotch/hoppscotch/commit/7e1e61f8af1052d651e6179da74d9af45afe1372) chores: Lint + dependency update - [`50fd892`](https://github.com/hoppscotch/hoppscotch/commit/50fd8926d67713428309f9f01b603ad1bb42e14c) Fixed #1197 - [`68c67fb`](https://github.com/hoppscotch/hoppscotch/commit/68c67fbd3278742f1460315d80ab45f2eb8dd9e4) Turn off GitHub Pages - [`04bc830`](https://github.com/hoppscotch/hoppscotch/commit/04bc8308acaba59086d351d1f253e5a464bd105d) Fixed #1195 - [`7190a25`](https://github.com/hoppscotch/hoppscotch/commit/7190a25550d9fcd9b76331dd4e41d8e6172d2d8d) Added Hacktoberfest announcement - [`d478946`](https://github.com/hoppscotch/hoppscotch/commit/d4789463ad1475df1437765a262bff0dc6dd761c) Improving code quality as per LGTM review - [`0bd051a`](https://github.com/hoppscotch/hoppscotch/commit/0bd051a7a979fafdebe98763b7ad90c56c143b20) chore: updated dependencies - [`f9c45d9`](https://github.com/hoppscotch/hoppscotch/commit/f9c45d95e1621db18f5fa8ccb2f8807897177458) Add: js axios codegen (#1199) - [`3434a1f`](https://github.com/hoppscotch/hoppscotch/commit/3434a1f5a687e2cfdad06cf4d809019c31b520d4) Create codeql-analysis.yml - [`e49cdd9`](https://github.com/hoppscotch/hoppscotch/commit/e49cdd9ea6506a42851711beae324d4225dcff7d) translated from English to Bengali ### 📊 Changes **21 files changed** (+563 additions, -206 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/codeql-analysis.yml` (+71 -0) 📝 `README.md` (+2 -0) 📝 `components/collections/import-export-collections.vue` (+4 -1) 📝 `components/realtime/socketio.vue` (+8 -12) 📝 `components/ui/__tests__/autocomplete.spec.js` (+4 -4) 📝 `components/ui/url-field.vue` (+8 -4) ➖ `docs/index.html` (+0 -15) 📝 `functions/package.json` (+2 -2) 📝 `helpers/__tests__/network.spec.js` (+12 -16) 📝 `helpers/codegen/codegen.js` (+3 -2) ➕ `helpers/codegen/generators/js-axios.js` (+53 -0) 📝 `helpers/codegen/generators/js-fetch.js` (+2 -0) 📝 `helpers/codegen/generators/js-xhr.js` (+2 -0) 📝 `helpers/lenses/__tests__/lenses.spec.js` (+4 -4) 📝 `helpers/strategies/__tests__/AxiosStrategy-Proxy.spec.js` (+4 -6) 📝 `helpers/strategies/__tests__/ExtensionStrategy.spec.js` (+4 -6) ➕ `lang/bn-BD.json` (+297 -0) 📝 `nuxt.config.js` (+6 -1) 📝 `package-lock.json` (+73 -128) 📝 `package.json` (+3 -3) _...and 1 more files_ </details> ### 📄 Description ## What's New - Added support for Bengali language - **As per contribution guideline:** Copied `lang/en-US.json` to my target language file `lang/bn-BD.json` and translated all **295** strings to Bengali. - Added language entry to `nuxt.config.js`. ### Goals 🥳 - Hopefully, this contribution will be helpful for Bengali developers using Hoppscotch. - **Suitability:** Translation is suitable for both 🇧🇩 Bangladeshi and 🇮🇳 Indian native Bengali speakers. - My first contribution for Hacktoberfest 2020. 🎉 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 00:46:33 +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#3134
No description provided.