@@ -11,15 +11,15 @@ vi.mock("@src/i18n/TranslationContext", () => ({
11
11
useAppTranslation : ( ) => ( {
12
12
t : ( key : string ) => {
13
13
const translations : Record < string , string > = {
14
- "common:confirmation.delete_message " : "Delete Message" ,
15
- "common:confirmation.edit_message " : "Edit Message" ,
16
- "common:confirmation.delete_question_with_checkpoint " :
14
+ "common:confirmation.deleteMessage " : "Delete Message" ,
15
+ "common:confirmation.editMessage " : "Edit Message" ,
16
+ "common:confirmation.deleteQuestionWithCheckpoint " :
17
17
"Deleting this message will delete all subsequent messages in the conversation. Do you want to proceed?" ,
18
- "common:confirmation.edit_question_with_checkpoint " :
18
+ "common:confirmation.editQuestionWithCheckpoint " :
19
19
"Editing this message will delete all subsequent messages in the conversation. Do you want to proceed?" ,
20
- "common:confirmation.edit_only " : "Edit Only" ,
21
- "common:confirmation.delete_only " : "Delete Only" ,
22
- "common:confirmation.restore_to_checkpoint " : "Restore to Checkpoint" ,
20
+ "common:confirmation.editOnly " : "Edit Only" ,
21
+ "common:confirmation.deleteOnly " : "Delete Only" ,
22
+ "common:confirmation.restoreToCeckpoint " : "Restore to Checkpoint" ,
23
23
"common:answers.cancel" : "Cancel" ,
24
24
}
25
25
return translations [ key ] || key
0 commit comments