@@ -8,6 +8,7 @@ import { renderLabelWithIcons } from '../../../../../base/browser/ui/iconLabel/i
8
8
import { IAction } from '../../../../../base/common/actions.js' ;
9
9
import { Event } from '../../../../../base/common/event.js' ;
10
10
import { IDisposable } from '../../../../../base/common/lifecycle.js' ;
11
+ import { localize } from '../../../../../nls.js' ;
11
12
import { ActionWidgetDropdownActionViewItem } from '../../../../../platform/actions/browser/actionWidgetDropdownActionViewItem.js' ;
12
13
import { getFlatActionBarActions } from '../../../../../platform/actions/browser/menuEntryActionViewItem.js' ;
13
14
import { IMenuService , MenuId , MenuItemAction } from '../../../../../platform/actions/common/actions.js' ;
@@ -52,7 +53,7 @@ export class ModePickerActionItem extends ActionWidgetDropdownActionViewItem {
52
53
this . renderLabel ( this . element ! ) ;
53
54
return result ;
54
55
} ,
55
- category : includeCategory ? { label : 'Standard' , order : 0 } : undefined
56
+ category : includeCategory ? { label : localize ( 'built-in' , "Built-In" ) , order : 0 } : undefined
56
57
} ) ;
57
58
58
59
const makeActionFromCustomMode = ( mode : IChatMode ) : IActionWidgetDropdownAction => ( {
@@ -68,7 +69,7 @@ export class ModePickerActionItem extends ActionWidgetDropdownActionViewItem {
68
69
this . renderLabel ( this . element ! ) ;
69
70
return result ;
70
71
} ,
71
- category : { label : 'Custom' , order : 1 }
72
+ category : { label : localize ( 'custom' , "Custom" ) , order : 1 }
72
73
} ) ;
73
74
74
75
const actionProvider : IActionWidgetDropdownActionProvider = {
0 commit comments