[PR #7] [MERGED] Add i18n support and send message/reset chat data attributes #8

Closed
opened 2026-02-16 09:19:57 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anythingllm-embed/pull/7
Author: @shatfield4
Created: 4/23/2025
Status: Merged
Merged: 4/27/2025
Merged by: @timothycarambat

Base: mainHead: 3529-feat-overwrite-send-a-message-and-reset-chat-text-in-the-chat-widget


📝 Commits (6)

  • 3b0aab9 add i18n support and send message/reset chat data attributes
  • 5603bc0 Merge branch 'main' of github.com:Mintplex-Labs/anythingllm-embed into 3529-feat-overwrite-send-a-message-and-reset-chat-text-in-the-chat-widget
  • fe476da normalize translations
  • b3edc9c forgot translation files
  • aaa7d3b update settings access
  • 62d06be reset index

📊 Changes

31 files changed (+633 additions, -14 deletions)

View changed files

📝 README.md (+9 -1)
📝 package.json (+7 -2)
📝 src/App.jsx (+4 -2)
📝 src/components/ChatWindow/ChatContainer/PromptInput/index.jsx (+4 -1)
📝 src/components/ChatWindow/ChatContainer/index.jsx (+1 -0)
📝 src/components/ResetChat/index.jsx (+4 -1)
📝 src/hooks/useScriptAttributes.js (+3 -0)
src/i18n.js (+32 -0)
src/locales/ar/common.js (+9 -0)
src/locales/da/common.js (+9 -0)
src/locales/de/common.js (+9 -0)
src/locales/en/common.js (+8 -0)
src/locales/es/common.js (+9 -0)
src/locales/fa/common.js (+9 -0)
src/locales/fr/common.js (+9 -0)
src/locales/he/common.js (+9 -0)
src/locales/it/common.js (+9 -0)
src/locales/ja/common.js (+9 -0)
src/locales/ko/common.js (+9 -0)
src/locales/nl/common.js (+9 -0)

...and 11 more files

📄 Description

  • Add support for i18n language translations
  • Support for en, fr as starting languages
  • Add data-send-message-text and data-reset-chat-text text overrides
  • Update documentation for new attributes

resolves https://github.com/Mintplex-Labs/anything-llm/issues/3529


🔄 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/anythingllm-embed/pull/7 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 4/23/2025 **Status:** ✅ Merged **Merged:** 4/27/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `main` ← **Head:** `3529-feat-overwrite-send-a-message-and-reset-chat-text-in-the-chat-widget` --- ### 📝 Commits (6) - [`3b0aab9`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/3b0aab94ec1c6e33de16b2ef75aac7531619b1a4) add i18n support and send message/reset chat data attributes - [`5603bc0`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/5603bc04ec8b7e2648af52300ac046d3aa441a2f) Merge branch 'main' of github.com:Mintplex-Labs/anythingllm-embed into 3529-feat-overwrite-send-a-message-and-reset-chat-text-in-the-chat-widget - [`fe476da`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/fe476da629b3ff851885fd320f3dea001319f93f) normalize translations - [`b3edc9c`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/b3edc9c6c99dbf1fa6ab9b014f162984eb98885a) forgot translation files - [`aaa7d3b`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/aaa7d3b324fd7edc62930a298475562c5f042f62) update settings access - [`62d06be`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/62d06be5b58d920419268b990018159d30b029b8) reset index ### 📊 Changes **31 files changed** (+633 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+9 -1) 📝 `package.json` (+7 -2) 📝 `src/App.jsx` (+4 -2) 📝 `src/components/ChatWindow/ChatContainer/PromptInput/index.jsx` (+4 -1) 📝 `src/components/ChatWindow/ChatContainer/index.jsx` (+1 -0) 📝 `src/components/ResetChat/index.jsx` (+4 -1) 📝 `src/hooks/useScriptAttributes.js` (+3 -0) ➕ `src/i18n.js` (+32 -0) ➕ `src/locales/ar/common.js` (+9 -0) ➕ `src/locales/da/common.js` (+9 -0) ➕ `src/locales/de/common.js` (+9 -0) ➕ `src/locales/en/common.js` (+8 -0) ➕ `src/locales/es/common.js` (+9 -0) ➕ `src/locales/fa/common.js` (+9 -0) ➕ `src/locales/fr/common.js` (+9 -0) ➕ `src/locales/he/common.js` (+9 -0) ➕ `src/locales/it/common.js` (+9 -0) ➕ `src/locales/ja/common.js` (+9 -0) ➕ `src/locales/ko/common.js` (+9 -0) ➕ `src/locales/nl/common.js` (+9 -0) _...and 11 more files_ </details> ### 📄 Description - Add support for i18n language translations - Support for en, fr as starting languages - Add `data-send-message-text` and `data-reset-chat-text` text overrides - Update documentation for new attributes resolves https://github.com/Mintplex-Labs/anything-llm/issues/3529 --- <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-16 09:19:57 -05:00
yindo closed this issue 2026-02-16 09:19:57 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anythingllm-embed#8