[PR #3010] [MERGED] changed language support for following windows: chat, data-upload and… #4195

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3010
Author: @MrMarans
Created: 1/23/2025
Status: Merged
Merged: 2/27/2025
Merged by: @timothycarambat

Base: masterHead: master


📝 Commits (4)

  • ed6a534 changed language support for following windows: chat, data-upload and account settings
  • 4b5ed5c merge with master
  • 7284464 normalize translations
  • c470cdb linting, normalization with DE

📊 Changes

34 files changed (+3173 additions, -241 deletions)

View changed files

📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Confluence/index.jsx (+23 -24)
📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Github/index.jsx (+32 -24)
📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Gitlab/index.jsx (+38 -29)
📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/WebsiteDepth/index.jsx (+12 -9)
📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Youtube/index.jsx (+15 -4)
📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/index.jsx (+17 -17)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/Directory/index.jsx (+18 -12)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/UploadFile/index.jsx (+12 -11)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/index.jsx (+35 -32)
📝 frontend/src/components/Modals/ManageWorkspace/index.jsx (+8 -6)
📝 frontend/src/components/UserMenu/AccountModal/index.jsx (+15 -15)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx (+9 -5)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx (+4 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AttachItem/index.jsx (+4 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx (+3 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SpeechToText/index.jsx (+4 -3)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/TextSizeMenu/index.jsx (+4 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx (+5 -3)
📝 frontend/src/locales/ar/common.js (+178 -40)
📝 frontend/src/locales/de/common.js (+218 -0)

...and 14 more files

📄 Description

Pull Request Type

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

Relevant Issues

None

What is in this change?

Added language support for the following windows: Chat, Data-Upload and Connections, Accountsettings. Meaning whenever someone chooses german as the language, now the those windows are translated in german. Meaning people with Manager Roles now have everything in german.
2025-01-21 14_15_41-AnythingLLM _ Your personal LLM trained on anything
2025-01-21 13_40_49-AnythingLLM _ Your personal LLM trained on anything
image
image

Additional Information

The texts are available for german and english. Other languages like spanish have the english texts in them. Translation for those windows can be done by just translating the language file in the frontend/src/locales folder.

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/3010 **Author:** [@MrMarans](https://github.com/MrMarans) **Created:** 1/23/2025 **Status:** ✅ Merged **Merged:** 2/27/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (4) - [`ed6a534`](https://github.com/Mintplex-Labs/anything-llm/commit/ed6a5346df5eac231e3ffb620bb4fdb625c7acee) changed language support for following windows: chat, data-upload and account settings - [`4b5ed5c`](https://github.com/Mintplex-Labs/anything-llm/commit/4b5ed5c317af7bcacc0804d5fb75873e5cef532e) merge with master - [`7284464`](https://github.com/Mintplex-Labs/anything-llm/commit/7284464d9a0122fd81e6e3ffcbcfe8d1d7b47da1) normalize translations - [`c470cdb`](https://github.com/Mintplex-Labs/anything-llm/commit/c470cdbe3ccc4aa525738633af3276606b4fca6c) linting, normalization with DE ### 📊 Changes **34 files changed** (+3173 additions, -241 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Confluence/index.jsx` (+23 -24) 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Github/index.jsx` (+32 -24) 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Gitlab/index.jsx` (+38 -29) 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/WebsiteDepth/index.jsx` (+12 -9) 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Youtube/index.jsx` (+15 -4) 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/index.jsx` (+17 -17) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/Directory/index.jsx` (+18 -12) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/UploadFile/index.jsx` (+12 -11) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/index.jsx` (+35 -32) 📝 `frontend/src/components/Modals/ManageWorkspace/index.jsx` (+8 -6) 📝 `frontend/src/components/UserMenu/AccountModal/index.jsx` (+15 -15) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx` (+9 -5) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx` (+4 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AttachItem/index.jsx` (+4 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx` (+3 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SpeechToText/index.jsx` (+4 -3) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/TextSizeMenu/index.jsx` (+4 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx` (+5 -3) 📝 `frontend/src/locales/ar/common.js` (+178 -40) 📝 `frontend/src/locales/de/common.js` (+218 -0) _...and 14 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [X] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues None ### What is in this change? Added language support for the following windows: Chat, Data-Upload and Connections, Accountsettings. Meaning whenever someone chooses german as the language, now the those windows are translated in german. Meaning people with Manager Roles now have everything in german. ![2025-01-21 14_15_41-AnythingLLM _ Your personal LLM trained on anything](https://github.com/user-attachments/assets/e4879d91-e3a2-458f-b560-3c620ee51440) ![2025-01-21 13_40_49-AnythingLLM _ Your personal LLM trained on anything](https://github.com/user-attachments/assets/b5b5a85f-785d-41db-8a06-f5d80277f391) ![image](https://github.com/user-attachments/assets/a492a3fb-6d86-4da3-82e5-6af383746b06) ![image](https://github.com/user-attachments/assets/3a6f2e97-cc50-4247-92f8-a5f5b2eef0ce) ### Additional Information The texts are available for german and english. Other languages like spanish have the english texts in them. Translation for those windows can be done by just translating the language file in the frontend/src/locales folder. ### 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:20 -05:00
yindo closed this issue 2026-02-22 18:35:20 -05:00
yindo changed title from [PR #3010] changed language support for following windows: chat, data-upload and… to [PR #3010] [MERGED] changed language support for following windows: chat, data-upload and… 2026-06-05 15:17:19 -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#4195