Skip to content

Commit

Permalink
feat: update button text of edit conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
Neet-Nestor committed Sep 29, 2024
1 parent af5bb83 commit a2ff238
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/components/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ export function ChatActions(props: {
)}
<ChatAction
onClick={props.showPromptSetting}
text={Locale.Chat.Actions.EditPrompts}
text={Locale.Chat.Actions.EditConversation}
icon={<EditIcon />}
/>
<ChatAction
Expand Down Expand Up @@ -1143,7 +1143,7 @@ function _Chat() {
>
<div className={styles["chat-action-context"]}>
<ChatAction
text={Locale.Chat.Actions.EditPrompts}
text={Locale.Chat.Actions.EditConversation}
icon={<EditIcon />}
onClick={() => setShowEditPromptModal(true)}
fullWidth
Expand Down
4 changes: 2 additions & 2 deletions app/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const en = {
Retry: "Retry",
Delete: "Delete",
Edit: "Edit",
EditPrompts: "Edit Prompts",
EditConversation: "Edit Conversation",
},
Commands: {
new: "Start a new chat",
Expand Down Expand Up @@ -193,7 +193,7 @@ const en = {
Search: "Search Prompts",
},
EditModal: {
Title: "Edit Prompt",
Title: "Edit Conversation",
},
},
HistoryCount: {
Expand Down

0 comments on commit a2ff238

Please sign in to comment.