From f133bb98fefefb092397d0bd903359b88a496c71 Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:44:02 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=96=8C=EF=B8=8F=20feat:=20Optional=20Disp?= =?UTF-8?q?lay=20Username=20in=20Messages,=20Send/Stop=20Button=20Style,?= =?UTF-8?q?=20Localization=20(#1592)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 👤add: Username instead of 'You' when sending messages. * 🌎: Added a new translation for 'You' and updated the existing translation for Spanish. * fix: remove "!" * Added: New setting Account for show username in messages chore (StopButon and SendButon): Updated to new style of ChatGPT chore Update and Added news translations: Spanish, English and Portuguese Brazilian * fix: message component definition and imports order, remove unnecessary useEffect and localStorage set, fix localStorage key in store * chore: update readme.md * chore: optimize condition for messageLabel * chore(Message.tsx): remove empty blocks --------- Co-authored-by: Raí Santos <140329135+itzraiss@users.noreply.github.com> --- README.md | 4 + .../src/components/Chat/Input/SendButton.tsx | 3 +- .../src/components/Chat/Messages/Message.tsx | 27 +- .../Nav/SettingsTabs/Account/Account.tsx | 26 +- client/src/localization/languages/Br.tsx | 2 + client/src/localization/languages/Eng.tsx | 2 + client/src/localization/languages/Es.tsx | 254 +++++++++++------- client/src/store/settings.ts | 20 ++ 8 files changed, 223 insertions(+), 115 deletions(-) diff --git a/README.md b/README.md index 2fa8be772ab..00cd890b073 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,10 @@ Please consult the breaking changes before updating. ## ⭐ Star History +

+danny-avila%2FLibreChat | Trendshift +

+ Star History Chart diff --git a/client/src/components/Chat/Input/SendButton.tsx b/client/src/components/Chat/Input/SendButton.tsx index 0751dd51eb0..549363dc139 100644 --- a/client/src/components/Chat/Input/SendButton.tsx +++ b/client/src/components/Chat/Input/SendButton.tsx @@ -6,8 +6,7 @@ export default function SendButton({ text, disabled }) {