[PR #3699] [MERGED] Translate main page landing #4363

Closed
opened 2026-02-22 18:35:41 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3699
Author: @timothycarambat
Created: 4/22/2025
Status: Merged
Merged: 4/22/2025
Merged by: @timothycarambat

Base: masterHead: 3698-main-screen-localization


📝 Commits (7)

  • 5f5a0dc Translate main page landing
  • b43fd7f normalize all languages
  • b0445c3 Add a few translations, zh,tw,ja,es,de
  • a12a00b fix issues where translation lang change would not effect constants until full reload instead of on update
  • 13ed5a5 dev
  • 0ae847b Merge branch 'master' into 3698-main-screen-localization
  • 2aa4709 fix noWorkspaceError key in translation usage

📊 Changes

25 files changed (+1561 additions, -81 deletions)

View changed files

📝 .github/workflows/dev-build.yaml (+1 -1)
📝 frontend/src/locales/ar/common.js (+80 -0)
📝 frontend/src/locales/da/common.js (+80 -0)
📝 frontend/src/locales/de/common.js (+87 -0)
📝 frontend/src/locales/en/common.js (+83 -0)
📝 frontend/src/locales/es/common.js (+85 -0)
📝 frontend/src/locales/fa/common.js (+80 -0)
📝 frontend/src/locales/fr/common.js (+80 -0)
📝 frontend/src/locales/he/common.js (+80 -0)
📝 frontend/src/locales/it/common.js (+80 -0)
📝 frontend/src/locales/ja/common.js (+83 -0)
📝 frontend/src/locales/ko/common.js (+80 -0)
📝 frontend/src/locales/nl/common.js (+80 -0)
📝 frontend/src/locales/pt_BR/common.js (+80 -0)
📝 frontend/src/locales/ru/common.js (+80 -0)
📝 frontend/src/locales/tr/common.js (+80 -0)
📝 frontend/src/locales/vn/common.js (+80 -0)
📝 frontend/src/locales/zh/common.js (+80 -0)
📝 frontend/src/locales/zh_TW/common.js (+80 -0)
📝 frontend/src/pages/Main/Home/Checklist/constants.js (+38 -40)

...and 5 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #3698

What is in this change?

  • Add translations elements to the main page
  • English translations mapped

Additional Information

  • Added other AI-generated translations for:
    Chinese, Taiwanese, German, Japanese, and Spanish (random selection mostly)

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/Mintplex-Labs/anything-llm/pull/3699 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 4/22/2025 **Status:** ✅ Merged **Merged:** 4/22/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `3698-main-screen-localization` --- ### 📝 Commits (7) - [`5f5a0dc`](https://github.com/Mintplex-Labs/anything-llm/commit/5f5a0dc29105d31177bf1732d033e86298a1b2a3) Translate main page landing - [`b43fd7f`](https://github.com/Mintplex-Labs/anything-llm/commit/b43fd7f6d16ca35ae154fbc11d6e11fe851e3853) normalize all languages - [`b0445c3`](https://github.com/Mintplex-Labs/anything-llm/commit/b0445c3b45257a13f23f80e61b285b9159630306) Add a few translations, zh,tw,ja,es,de - [`a12a00b`](https://github.com/Mintplex-Labs/anything-llm/commit/a12a00ba883107579f99213e24c0b7923dbedd57) fix issues where translation lang change would not effect constants until full reload instead of on update - [`13ed5a5`](https://github.com/Mintplex-Labs/anything-llm/commit/13ed5a5ef53e516a7061aaa6e0b51a240c57a10c) dev - [`0ae847b`](https://github.com/Mintplex-Labs/anything-llm/commit/0ae847b3829070d1e7660607500a8fec3f08272b) Merge branch 'master' into 3698-main-screen-localization - [`2aa4709`](https://github.com/Mintplex-Labs/anything-llm/commit/2aa47092d5d619819f90b2a75428d8b4551b6671) fix noWorkspaceError key in translation usage ### 📊 Changes **25 files changed** (+1561 additions, -81 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dev-build.yaml` (+1 -1) 📝 `frontend/src/locales/ar/common.js` (+80 -0) 📝 `frontend/src/locales/da/common.js` (+80 -0) 📝 `frontend/src/locales/de/common.js` (+87 -0) 📝 `frontend/src/locales/en/common.js` (+83 -0) 📝 `frontend/src/locales/es/common.js` (+85 -0) 📝 `frontend/src/locales/fa/common.js` (+80 -0) 📝 `frontend/src/locales/fr/common.js` (+80 -0) 📝 `frontend/src/locales/he/common.js` (+80 -0) 📝 `frontend/src/locales/it/common.js` (+80 -0) 📝 `frontend/src/locales/ja/common.js` (+83 -0) 📝 `frontend/src/locales/ko/common.js` (+80 -0) 📝 `frontend/src/locales/nl/common.js` (+80 -0) 📝 `frontend/src/locales/pt_BR/common.js` (+80 -0) 📝 `frontend/src/locales/ru/common.js` (+80 -0) 📝 `frontend/src/locales/tr/common.js` (+80 -0) 📝 `frontend/src/locales/vn/common.js` (+80 -0) 📝 `frontend/src/locales/zh/common.js` (+80 -0) 📝 `frontend/src/locales/zh_TW/common.js` (+80 -0) 📝 `frontend/src/pages/Main/Home/Checklist/constants.js` (+38 -40) _...and 5 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [x] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #3698 ### What is in this change? - Add translations elements to the main page - English translations mapped <!-- Describe the changes in this PR that are impactful to the repo. --> ### Additional Information - Added other AI-generated translations for: Chinese, Taiwanese, German, Japanese, and Spanish (random selection mostly) <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:35:41 -05:00
yindo closed this issue 2026-02-22 18:35:41 -05:00
yindo changed title from [PR #3699] Translate main page landing to [PR #3699] [MERGED] Translate main page landing 2026-06-05 15:18:11 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4363