[PR #2794] [CLOSED] #2164 [UI/UX]: More Localization #4121

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2794
Author: @Dietrich-at-Qvest
Created: 12/10/2024
Status: Closed

Base: masterHead: master


📝 Commits (4)

  • 57e8b75 #2164 [UI/UX]: More Localization - add localization to a number of classes, add texts for en and de
  • 8264e11 Merge branch 'Mintplex-Labs:master' into master
  • 4f533cc Merge branch 'master' into master
  • b2205eb Merge branch 'Mintplex-Labs:master' into master

📊 Changes

20 files changed (+240 additions, -60 deletions)

View changed files

📝 frontend/src/components/SettingsButton/index.jsx (+4 -2)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/ThreadItem/index.jsx (+10 -12)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/index.jsx (+7 -3)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx (+4 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/ActionMenu/index.jsx (+6 -4)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/DeleteMessage/index.jsx (+3 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/EditMessage/index.jsx (+8 -4)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/asyncTts.jsx (+8 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/native.jsx (+9 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/piperTTS.jsx (+8 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/index.jsx (+9 -5)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx (+13 -5)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx (+9 -4)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AttachItem/index.jsx (+4 -3)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx (+3 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SpeechToText/index.jsx (+4 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/TextSizeMenu/index.jsx (+4 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx (+6 -4)
📝 frontend/src/locales/de/common.js (+61 -0)
📝 frontend/src/locales/en/common.js (+60 -0)

📄 Description

Add localization to a number of classes, add texts for en and de. There are still a few texts to be localized, but I thought this is a start.

Pull Request Type

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

Relevant Issues

resolves [UI/UX]: More Localization #2164 (mostly)

What is in this change?

Went through most index.jsx files and a few others and searched for texts that were not localized yet. Added localization, default en, translated in de as well

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/2794 **Author:** [@Dietrich-at-Qvest](https://github.com/Dietrich-at-Qvest) **Created:** 12/10/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (4) - [`57e8b75`](https://github.com/Mintplex-Labs/anything-llm/commit/57e8b75f0e3957a3658d2a4b38f16ed353664e26) #2164 [UI/UX]: More Localization - add localization to a number of classes, add texts for en and de - [`8264e11`](https://github.com/Mintplex-Labs/anything-llm/commit/8264e11f485d09462f775e381a05708a82c91384) Merge branch 'Mintplex-Labs:master' into master - [`4f533cc`](https://github.com/Mintplex-Labs/anything-llm/commit/4f533cc829671d7efaa446177e316d80a490af7a) Merge branch 'master' into master - [`b2205eb`](https://github.com/Mintplex-Labs/anything-llm/commit/b2205eb4431ddbf3cd140db9495ac9d319d87046) Merge branch 'Mintplex-Labs:master' into master ### 📊 Changes **20 files changed** (+240 additions, -60 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/SettingsButton/index.jsx` (+4 -2) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/ThreadItem/index.jsx` (+10 -12) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/index.jsx` (+7 -3) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx` (+4 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/ActionMenu/index.jsx` (+6 -4) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/DeleteMessage/index.jsx` (+3 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/EditMessage/index.jsx` (+8 -4) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/asyncTts.jsx` (+8 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/native.jsx` (+9 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/piperTTS.jsx` (+8 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/index.jsx` (+9 -5) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx` (+13 -5) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx` (+9 -4) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AttachItem/index.jsx` (+4 -3) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx` (+3 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SpeechToText/index.jsx` (+4 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/TextSizeMenu/index.jsx` (+4 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx` (+6 -4) 📝 `frontend/src/locales/de/common.js` (+61 -0) 📝 `frontend/src/locales/en/common.js` (+60 -0) </details> ### 📄 Description Add localization to a number of classes, add texts for en and de. There are still a few texts to be localized, but I thought this is a start. ### 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 [UI/UX]: More Localization #2164 (mostly) ### What is in this change? Went through most index.jsx files and a few others and searched for texts that were not localized yet. Added localization, default en, translated in de as well <!-- 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 - [ ] 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:11 -05:00
yindo closed this issue 2026-02-22 18:35:11 -05:00
yindo changed title from [PR #2794] #2164 [UI/UX]: More Localization to [PR #2794] [CLOSED] #2164 [UI/UX]: More Localization 2026-06-05 15:16:56 -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#4121