@@ -21,7 +21,7 @@ function registerGroupAction(mimeTypes) {
2121 const groupAction = new FileAction ( {
2222 id : 'assistant-group' ,
2323 displayName : ( nodes ) => {
24- return t ( 'assistant' , 'Assistant' )
24+ return t ( 'assistant' , 'AI Assistant' )
2525 } ,
2626 enabled ( nodes , view ) {
2727 return ! actionIgnoreLists . includes ( view . id )
@@ -44,7 +44,7 @@ function registerSummarizeAction() {
4444 id : 'assistant-summarize' ,
4545 parent : 'assistant-group' ,
4646 displayName : ( nodes ) => {
47- return t ( 'approval' , 'Summarize' )
47+ return t ( 'approval' , 'Summarize using AI ' )
4848 } ,
4949 enabled ( nodes , view ) {
5050 return ! actionIgnoreLists . includes ( view . id )
@@ -63,7 +63,7 @@ function registerSummarizeAction() {
6363 try {
6464 await axios . post ( url )
6565 showSuccess (
66- t ( 'assistant' , 'Summarization task submitted successfully.' ) + '\n'
66+ t ( 'assistant' , 'Summarization AI task submitted successfully.' ) + '\n'
6767 + t ( 'assistant' , 'You will be notified when it is ready.' ) + '\n'
6868 + t ( 'assistant' , 'It can also be checked in the Assistant in the "Work with text -> Summarize" menu.' ) ,
6969 )
@@ -82,7 +82,7 @@ function registerTtsAction() {
8282 id : 'assistant-tts' ,
8383 parent : 'assistant-group' ,
8484 displayName : ( nodes ) => {
85- return t ( 'approval ' , 'Text to speech ' )
85+ return t ( 'assistant ' , 'Text-To-Speech using AI ' )
8686 } ,
8787 enabled ( nodes , view ) {
8888 return ! actionIgnoreLists . includes ( view . id )
@@ -101,7 +101,7 @@ function registerTtsAction() {
101101 try {
102102 await axios . post ( url )
103103 showSuccess (
104- t ( 'assistant' , 'Text-to-speech task submitted successfully.' ) + '\n'
104+ t ( 'assistant' , 'Text-to-Speech AI task submitted successfully.' ) + '\n'
105105 + t ( 'assistant' , 'You will be notified when it is ready.' ) + '\n'
106106 + t ( 'assistant' , 'It can also be checked in the Assistant in the "Work with audio -> Generate speech" menu.' ) ,
107107 )
@@ -120,7 +120,7 @@ function registerSttAction() {
120120 id : 'assistant-stt' ,
121121 parent : 'assistant-group' ,
122122 displayName : ( nodes ) => {
123- return t ( 'approval ' , 'Transcribe audio' )
123+ return t ( 'assistant ' , 'Transcribe audio using AI ' )
124124 } ,
125125 enabled ( nodes , view ) {
126126 return ! actionIgnoreLists . includes ( view . id )
@@ -139,7 +139,7 @@ function registerSttAction() {
139139 try {
140140 await axios . post ( url )
141141 showSuccess (
142- t ( 'assistant' , 'Transcription task submitted successfully.' ) + '\n'
142+ t ( 'assistant' , 'Transcription AI task submitted successfully.' ) + '\n'
143143 + t ( 'assistant' , 'You will be notified when it is ready.' ) + '\n'
144144 + t ( 'assistant' , 'It can also be checked in the Assistant in the "Work with audio -> Transcribe audio" menu.' ) ,
145145 )
0 commit comments