@@ -11,15 +11,15 @@ vi.mock("@src/i18n/TranslationContext", () => ({
1111 useAppTranslation : ( ) => ( {
1212 t : ( key : string ) => {
1313 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 " :
1717 "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 " :
1919 "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" ,
2323 "common:answers.cancel" : "Cancel" ,
2424 }
2525 return translations [ key ] || key
0 commit comments