280
280
< div id ="lottie " class ="text-center text-h5 ">
281
281
< a href ="https://github.com/AI-QL/chat-ui " style ="color: #1867C0 "
282
282
class ="font-weight-bold text-decoration-none " target ="_blank ">
283
+ < v-icon class ="mb-2 "> mdi-github</ v-icon >
283
284
{{$t('$vuetify.dataIterator.title')}}</ a >
284
285
</ div >
285
286
</ v-container >
295
296
< v-fab v-bind ="activatorProps " size ="small " icon ="mdi-cog " absolute
296
297
class ="input-icon "> </ v-fab >
297
298
</ template >
298
- < v-btn key ="4 " variant ="elevated " icon @click ="settingStore.initDialog ">
299
- < v-icon > mdi-api </ v-icon >
299
+ < v-btn key ="4 " variant ="elevated " @click ="settingStore.initDialog " icon =" mdi-api "
300
+ v-tooltip:end =" $t('$vuetify.dataIterator.i.title') " >
300
301
</ v-btn >
301
302
< v-badge key ="3 " color ="transparent " location ='top left '>
302
303
< template v-slot:badge >
303
304
< iconify-icon :icon ="languageStore.getIcon2() "> </ iconify-icon >
304
305
</ template >
305
306
< v-menu transition ="fade-transition ">
306
307
< template v-slot:activator ="{ props } ">
307
- < v-btn variant ="elevated " icon v-bind ="props ">
308
- < v-icon > mdi-translate </ v-icon >
308
+ < v-btn variant ="elevated " v-bind ="props " icon =" mdi-translate "
309
+ v-tooltip:end =" $t('$vuetify.dataIterator.l.title') " >
309
310
</ v-btn >
310
311
</ template >
311
312
< v-list class ='mb-2 '>
320
321
</ v-list >
321
322
</ v-menu >
322
323
</ v-badge >
323
- < v-badge key ="2 " :content ="historyStore.conversation.length " color ="info " max ="99 "
324
+ < v-btn @click ="settingStore.agentDialog = true " variant ="elevated " icon ="mdi-account-supervisor "
325
+ v-tooltip:end ="$t('$vuetify.dataIterator.a.title') ">
326
+ </ v-btn >
327
+ < v-badge key ="1 " :content ="historyStore.conversation.length " color ="info " max ="99 "
324
328
location ='top left '>
325
- < v-btn variant ="elevated " icon @click ="settingStore.configHistory = true ">
326
- < v-icon > mdi-list-box </ v-icon >
329
+ < v-btn variant ="elevated " icon =" mdi-list-box " @click ="settingStore.configHistory = true "
330
+ v-tooltip:end =" $t('$vuetify.dataIterator.q.title') " >
327
331
</ v-btn >
328
332
</ v-badge >
329
333
</ v-speed-dial >
360
364
color ="primary "> </ v-btn >
361
365
</ template >
362
366
< v-btn key ="2 " size ="small " color ="primary " variant ="elevated "
363
- @click ="messageStore.resendMessage " icon ="mdi-autorenew "> </ v-btn >
367
+ @click ="messageStore.resendMessage " icon ="mdi-autorenew "
368
+ v-tooltip:start ="$t('$vuetify.dataIterator.g.reg') ">
364
369
</ v-btn >
365
- < v-btn key ="1 " color ="primary " variant ="elevated " icon @click ="messageStore.init() ">
366
- < v- icon> mdi-pencil-plus</ v-icon >
370
+ < v-btn key ="1 " color ="primary " variant ="elevated " @click ="messageStore.init() "
371
+ icon =" mdi-pencil-plus " v-tooltip:start =" $t('$vuetify.dataIterator.g.new') " >
367
372
</ v-btn >
368
373
</ v-speed-dial >
369
374
< v-btn v-else size ="small " :color ="mcpStore.getServers ? 'primary': 'grey' " variant ="elevated "
370
375
@click ="mcpStore.getServers ? promptStore.promptDialog = true : false "
371
376
icon ="mdi-account-edit ">
372
377
</ v-btn >
373
-
374
378
</ div >
375
379
</ v-sheet >
376
380
</ div >
658
662
</ v-card >
659
663
</ v-dialog >
660
664
< v-dialog v-model ="settingStore.agentDialog " class ="dialog-card ">
661
- < v-card prepend-icon ="mdi-history " title ="Agent " style ="overflow-x: auto ">
665
+ < v-card prepend-icon ="mdi-history " :title ="$t('$vuetify.dataIterator.a.title') "
666
+ style ="overflow-x: auto ">
662
667
< template v-slot:append >
663
668
< v-card-actions >
664
669
< v-spacer > </ v-spacer >
@@ -764,10 +769,6 @@ <h5 class="font-weight-bold mb-4">MCP</h5>
764
769
< v-icon class ="rotation text-white "> mdi-tools</ v-icon >
765
770
</ div >
766
771
< v-card v-else elevation ="10 " class ="d-flex flex-column toolbox ">
767
- < v-btn @click ="settingStore.agentDialog = true " variant ="text " size ="45 ">
768
- < v-icon size ="25 " color ="primary "> mdi-clock-outline</ v-icon >
769
- < v-tooltip activator ="parent " location ="left " text ="Agent Dialog "> </ v-tooltip >
770
- </ v-btn >
771
772
<!-- ---------------------------------------------- -->
772
773
<!-- Reset -->
773
774
<!-- ---------------------------------------------- -->
@@ -2280,7 +2281,15 @@ <h5 class="font-weight-bold mb-4">MCP</h5>
2280
2281
q : { title : 'Query History' } ,
2281
2282
p : {
2282
2283
title : 'Prompts Template' ,
2283
- sheet : 'Prompts Sheet'
2284
+ sheet : 'Prompts Sheet' ,
2285
+ inuse : 'In Use' ,
2286
+ standby : 'Standby'
2287
+ } ,
2288
+ l : { title : 'Language' } ,
2289
+ a : { title : 'Agent' } ,
2290
+ g : {
2291
+ new : 'New Conversation' ,
2292
+ reg : 'Regeneration'
2284
2293
} ,
2285
2294
i : {
2286
2295
title : 'Interface Configuration' ,
@@ -2317,6 +2326,7 @@ <h5 class="font-weight-bold mb-4">MCP</h5>
2317
2326
dataIterator : {
2318
2327
title : 'Layout della Query AI' ,
2319
2328
q : { title : 'Cronologia delle Query' } ,
2329
+ l : { title : 'Lingua' } ,
2320
2330
i : {
2321
2331
title : 'Configurazione dell\'interfaccia' ,
2322
2332
apikey : 'Chiave API' ,
@@ -2351,6 +2361,7 @@ <h5 class="font-weight-bold mb-4">MCP</h5>
2351
2361
dataIterator : {
2352
2362
title : 'AI お問い合わせ' ,
2353
2363
q : { title : '歴史' } ,
2364
+ l : { title : '言語設定' } ,
2354
2365
i : {
2355
2366
title : 'インターフェイス構成' ,
2356
2367
apikey : 'API キー' ,
@@ -2376,6 +2387,7 @@ <h5 class="font-weight-bold mb-4">MCP</h5>
2376
2387
dataIterator : {
2377
2388
title : 'Layout för AI-frågor' ,
2378
2389
q : { title : 'Frågehistorik' } ,
2390
+ l : { title : 'Språkinställning' } ,
2379
2391
i : {
2380
2392
title : 'Konfiguration av gränssnitt' ,
2381
2393
apikey : 'API Nyckel' ,
@@ -2403,6 +2415,16 @@ <h5 class="font-weight-bold mb-4">MCP</h5>
2403
2415
dataIterator : {
2404
2416
title : 'AI 问询界面' ,
2405
2417
q : { title : '历史记录' } ,
2418
+ l : { title : '语言设置' } ,
2419
+ p : {
2420
+ title : 'MCP提示词模板' ,
2421
+ sheet : 'MCP提示词表单'
2422
+ } ,
2423
+ a : { title : '智能体' } ,
2424
+ g : {
2425
+ new : '新对话' ,
2426
+ reg : '重新生成'
2427
+ } ,
2406
2428
i : {
2407
2429
title : '接口配置' ,
2408
2430
apikey : 'API 密钥' ,
0 commit comments