@codingame/monaco-vscode-comments-service-override 23.3.0 → 24.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-comments-service-override",
3
- "version": "23.3.0",
3
+ "version": "24.1.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - comments service-override",
6
6
  "keywords": [],
@@ -15,11 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common": "23.3.0",
19
- "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "23.3.0",
20
- "@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common": "23.3.0",
21
- "@codingame/monaco-vscode-api": "23.3.0",
22
- "@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common": "23.3.0"
18
+ "@codingame/monaco-vscode-api": "24.1.0"
23
19
  },
24
20
  "main": "index.js",
25
21
  "module": "index.js",
@@ -5,15 +5,15 @@ import { Disposable, IDisposable } from "@codingame/monaco-vscode-api/vscode/vs/
5
5
  import { URI, UriComponents } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
6
6
  import { Range, IRange } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range";
7
7
  import { CancellationToken } from "@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation";
8
- import { ICommentThreadChangedEvent } from "@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/common/commentModel";
8
+ import { ICommentThreadChangedEvent } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/common/commentModel";
9
9
  import { CommentMenus } from "./commentMenus.js";
10
- import { ICellRange } from "@codingame/monaco-vscode-9d2c06d1-1f89-51a5-9964-aa01fe50c198-common/vscode/vs/workbench/contrib/notebook/common/notebookRange";
10
+ import { ICellRange } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookRange";
11
11
  import { IWorkbenchLayoutService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service";
12
12
  import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
13
13
  import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
14
14
  import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
15
15
  import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service";
16
- import { ICommentsModel } from "@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsModel";
16
+ import { ICommentsModel } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsModel";
17
17
  import { IModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model.service";
18
18
  import { ICommentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentService.service";
19
19
  export interface IResourceCommentThreadEvent {
@@ -8,13 +8,13 @@ import { CancellationToken } from '@codingame/monaco-vscode-api/vscode/vs/base/c
8
8
  import { CommentMenus } from './commentMenus.js';
9
9
  import { IWorkbenchLayoutService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service';
10
10
  import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
11
- import { COMMENTS_SECTION } from '@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common/vscode/vs/workbench/contrib/comments/common/commentsConfiguration';
11
+ import { COMMENTS_SECTION } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/common/commentsConfiguration';
12
12
  import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
13
13
  import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
14
14
  import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
15
15
  import { CommentContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/common/commentContextKeys';
16
16
  import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
17
- import { CommentsModel } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsModel';
17
+ import { CommentsModel } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsModel';
18
18
  import { IModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model.service';
19
19
  import { Schemas } from '@codingame/monaco-vscode-api/vscode/vs/base/common/network';
20
20
 
@@ -10,18 +10,18 @@ import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/conf
10
10
  import { Disposable, MutableDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
11
11
  import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
12
12
  import { Extensions as Extensions$1 } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
13
- import { NumberBadge } from '@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common/vscode/vs/workbench/services/activity/common/activity';
13
+ import { NumberBadge } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/activity/common/activity';
14
14
  import { IActivityService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/activity/common/activity.service';
15
- import { COMMENTS_VIEW_ID } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsTreeViewer';
15
+ import { COMMENTS_VIEW_ID } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsTreeViewer';
16
16
  import { CommentThreadState } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages';
17
17
  import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
18
18
  import { registerAction2, MenuId, Action2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
19
- import { CONTEXT_KEY_HAS_COMMENTS, CONTEXT_KEY_SOME_COMMENTS_EXPANDED } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsView';
20
- import { ViewAction } from '@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane';
19
+ import { CONTEXT_KEY_HAS_COMMENTS, CONTEXT_KEY_SOME_COMMENTS_EXPANDED } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsView';
20
+ import { ViewAction } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/views/viewPane';
21
21
  import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
22
22
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
23
23
  import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
24
- import { revealCommentThread } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsController';
24
+ import { revealCommentThread } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsController';
25
25
  import { accessibleViewIsShown, accessibleViewCurrentProviderId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
26
26
  import { AccessibleViewProviderId } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleView';
27
27
  import { AccessibleViewRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleViewRegistry';
@@ -33,7 +33,7 @@ registerAction2(class Collapse extends ViewAction {
33
33
  super({
34
34
  viewId: COMMENTS_VIEW_ID,
35
35
  id: 'comments.collapse',
36
- title: ( localize(6172, "Collapse All")),
36
+ title: ( localize(6297, "Collapse All")),
37
37
  f1: false,
38
38
  icon: Codicon.collapseAll,
39
39
  menu: {
@@ -53,7 +53,7 @@ registerAction2(class Expand extends ViewAction {
53
53
  super({
54
54
  viewId: COMMENTS_VIEW_ID,
55
55
  id: 'comments.expand',
56
- title: ( localize(6173, "Expand All")),
56
+ title: ( localize(6298, "Expand All")),
57
57
  f1: false,
58
58
  icon: Codicon.expandAll,
59
59
  menu: {
@@ -72,7 +72,7 @@ registerAction2(class Reply extends Action2 {
72
72
  constructor() {
73
73
  super({
74
74
  id: 'comments.reply',
75
- title: ( localize(6174, "Reply")),
75
+ title: ( localize(6299, "Reply")),
76
76
  icon: Codicon.reply,
77
77
  precondition: ( ContextKeyExpr.equals('canReply', true)),
78
78
  menu: [{
@@ -95,34 +95,34 @@ registerAction2(class Reply extends Action2 {
95
95
  ( Registry.as(Extensions.Configuration)).registerConfiguration({
96
96
  id: 'comments',
97
97
  order: 20,
98
- title: ( localize(6175, "Comments")),
98
+ title: ( localize(6300, "Comments")),
99
99
  type: 'object',
100
100
  properties: {
101
101
  'comments.openPanel': {
102
102
  enum: ['neverOpen', 'openOnSessionStart', 'openOnSessionStartWithComments'],
103
103
  default: 'openOnSessionStartWithComments',
104
- description: ( localize(6176, "Controls when the comments panel should open.")),
104
+ description: ( localize(6301, "Controls when the comments panel should open.")),
105
105
  restricted: false,
106
- markdownDeprecationMessage: ( localize(6177, "This setting is deprecated in favor of `comments.openView`."))
106
+ markdownDeprecationMessage: ( localize(6302, "This setting is deprecated in favor of `comments.openView`."))
107
107
  },
108
108
  'comments.openView': {
109
109
  enum: ['never', 'file', 'firstFile', 'firstFileUnresolved'],
110
- enumDescriptions: [( localize(6178, "The comments view will never be opened.")), ( localize(6179, "The comments view will open when a file with comments is active.")), ( localize(
111
- 6180,
110
+ enumDescriptions: [( localize(6303, "The comments view will never be opened.")), ( localize(6304, "The comments view will open when a file with comments is active.")), ( localize(
111
+ 6305,
112
112
  "If the comments view has not been opened yet during this session it will open the first time during a session that a file with comments is active."
113
113
  )), ( localize(
114
- 6181,
114
+ 6306,
115
115
  "If the comments view has not been opened yet during this session and the comment is not resolved, it will open the first time during a session that a file with comments is active."
116
116
  ))],
117
117
  default: 'firstFile',
118
- description: ( localize(6182, "Controls when the comments view should open.")),
118
+ description: ( localize(6307, "Controls when the comments view should open.")),
119
119
  restricted: false
120
120
  },
121
121
  'comments.useRelativeTime': {
122
122
  type: 'boolean',
123
123
  default: true,
124
124
  description: ( localize(
125
- 6183,
125
+ 6308,
126
126
  "Determines if relative time will be used in comment timestamps (ex. '1 day ago')."
127
127
  ))
128
128
  },
@@ -130,20 +130,20 @@ registerAction2(class Reply extends Action2 {
130
130
  type: 'boolean',
131
131
  default: true,
132
132
  description: ( localize(
133
- 6184,
133
+ 6309,
134
134
  "Controls the visibility of the comments bar and comment threads in editors that have commenting ranges and comments. Comments are still accessible via the Comments view and will cause commenting to be toggled on in the same way running the command \"Comments: Toggle Editor Commenting\" toggles comments."
135
135
  ))
136
136
  },
137
137
  'comments.maxHeight': {
138
138
  type: 'boolean',
139
139
  default: true,
140
- description: ( localize(6185, "Controls whether the comments widget scrolls or expands."))
140
+ description: ( localize(6310, "Controls whether the comments widget scrolls or expands."))
141
141
  },
142
142
  'comments.collapseOnResolve': {
143
143
  type: 'boolean',
144
144
  default: true,
145
145
  description: ( localize(
146
- 6186,
146
+ 6311,
147
147
  "Controls whether the comment thread should collapse when the thread is resolved."
148
148
  ))
149
149
  },
@@ -151,12 +151,12 @@ registerAction2(class Reply extends Action2 {
151
151
  type: 'string',
152
152
  enum: ['whenHasUnsubmittedComments', 'never'],
153
153
  enumDescriptions: [( localize(
154
- 6187,
154
+ 6312,
155
155
  "Show a confirmation dialog when collapsing a comment thread with unsubmitted comments."
156
- )), ( localize(6188, "Never show a confirmation dialog when collapsing a comment thread."))],
156
+ )), ( localize(6313, "Never show a confirmation dialog when collapsing a comment thread."))],
157
157
  default: 'whenHasUnsubmittedComments',
158
158
  description: ( localize(
159
- 6189,
159
+ 6314,
160
160
  "Controls whether a confirmation dialog is shown when collapsing a comment thread."
161
161
  ))
162
162
  }
@@ -198,7 +198,7 @@ let UnresolvedCommentsBadge = class UnresolvedCommentsBadge extends Disposable {
198
198
  return;
199
199
  }
200
200
  this.totalUnresolved = unresolved;
201
- const message = ( localize(6190, '{0} Unresolved Comments', this.totalUnresolved));
201
+ const message = ( localize(6315, '{0} Unresolved Comments', this.totalUnresolved));
202
202
  this.activity.value = this.activityService.showViewActivity(COMMENTS_VIEW_ID, { badge: ( new NumberBadge(this.totalUnresolved, () => message)) });
203
203
  }
204
204
  };
@@ -3,9 +3,10 @@ import { ServicesAccessor } from "@codingame/monaco-vscode-api/vscode/vs/editor/
3
3
  import { AccessibleViewProviderId, AccessibleViewType, IAccessibleViewContentProvider } from "@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleView";
4
4
  import { IAccessibleViewImplementation } from "@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleViewRegistry";
5
5
  import { AccessibilityVerbositySettingId } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration";
6
- import { CommentsMenus } from "@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsTreeViewer";
7
- import { CommentsPanel } from "@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsView";
6
+ import { CommentsMenus } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsTreeViewer";
7
+ import { CommentsPanel } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsView";
8
8
  import { ICommentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentService.service";
9
+ import { CommentNode } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/common/commentModel";
9
10
  import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
10
11
  import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
11
12
  import { IAction } from "@codingame/monaco-vscode-api/vscode/vs/base/common/actions";
@@ -30,7 +31,7 @@ declare class CommentsAccessibleContentProvider extends Disposable implements IA
30
31
  private readonly _focusedCommentNode;
31
32
  private readonly _menus;
32
33
  readonly actions: IAction[];
33
- constructor(_commentsView: CommentsPanel, _focusedCommentNode: any, _menus: CommentsMenus);
34
+ constructor(_commentsView: CommentsPanel, _focusedCommentNode: CommentNode, _menus: CommentsMenus);
34
35
  readonly id = AccessibleViewProviderId.Comments;
35
36
  readonly verbositySettingKey = AccessibilityVerbositySettingId.Comments;
36
37
  readonly options: {
@@ -6,12 +6,12 @@ import { AccessibleViewType, AccessibleViewProviderId } from '@codingame/monaco-
6
6
  import { IMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service';
7
7
  import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
8
8
  import { AccessibilityVerbositySettingId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
9
- import { COMMENTS_VIEW_ID, CommentsMenus } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsTreeViewer';
10
- import { CONTEXT_KEY_COMMENT_FOCUSED } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsView';
9
+ import { COMMENTS_VIEW_ID, CommentsMenus } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsTreeViewer';
10
+ import { CONTEXT_KEY_COMMENT_FOCUSED } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsView';
11
11
  import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
12
12
  import { ICommentService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentService.service';
13
13
  import { CommentContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/common/commentContextKeys';
14
- import { revealCommentThread, moveToNextCommentInThread } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsController';
14
+ import { revealCommentThread, moveToNextCommentInThread } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsController';
15
15
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
16
16
  import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
17
17
  import { isCodeEditor } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser';
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { registerCss } from '@codingame/monaco-vscode-api/css';
3
3
  import { KeyMod, KeyCode, KeyChord } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
4
- import * as review from '@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common/vscode/vs/workbench/contrib/comments/browser/media/review.css';
4
+ import * as review from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/media/review.css';
5
5
  import { isDiffEditor, isCodeEditor } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser';
6
6
  import { registerEditorContribution, EditorContributionInstantiation } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorExtensions';
7
7
  import { ICodeEditorService } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/services/codeEditorService.service';
@@ -12,7 +12,7 @@ import { SimpleCommentEditor, ctxCommentEditorFocused } from '@codingame/monaco-
12
12
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
13
13
  import { registerAction2, Action2, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
14
14
  import { EditorContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/editorContextKeys';
15
- import { ID, CommentController } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentsController';
15
+ import { ID, CommentController } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentsController';
16
16
  import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
17
17
  import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
18
18
  import { CommentContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/common/commentContextKeys';
@@ -23,7 +23,7 @@ import { CommentCommandId } from '@codingame/monaco-vscode-api/vscode/vs/workben
23
23
  import { registerWorkbenchContribution2, WorkbenchPhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
24
24
  import { CommentsInputContentProvider } from './commentsInputContentProvider.js';
25
25
  import { AccessibleViewProviderId } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleView';
26
- import { CommentWidgetFocus } from '@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common/vscode/vs/workbench/contrib/comments/browser/commentThreadZoneWidget';
26
+ import { CommentWidgetFocus } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/comments/browser/commentThreadZoneWidget';
27
27
  import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
28
28
 
29
29
  registerCss(review);
@@ -66,11 +66,11 @@ registerAction2(class extends Action2 {
66
66
  super({
67
67
  id: CommentCommandId.NextCommentedRange,
68
68
  title: {
69
- value: ( localize(6211, "Go to Next Commented Range")),
69
+ value: ( localize(6336, "Go to Next Commented Range")),
70
70
  original: 'Go to Next Commented Range'
71
71
  },
72
72
  category: {
73
- value: ( localize(6212, "Comments")),
73
+ value: ( localize(6337, "Comments")),
74
74
  original: 'Comments'
75
75
  },
76
76
  menu: [{
@@ -101,11 +101,11 @@ registerAction2(class extends Action2 {
101
101
  super({
102
102
  id: CommentCommandId.PreviousCommentedRange,
103
103
  title: {
104
- value: ( localize(6213, "Go to Previous Commented Range")),
104
+ value: ( localize(6338, "Go to Previous Commented Range")),
105
105
  original: 'Go to Previous Commented Range'
106
106
  },
107
107
  category: {
108
- value: ( localize(6212, "Comments")),
108
+ value: ( localize(6337, "Comments")),
109
109
  original: 'Comments'
110
110
  },
111
111
  menu: [{
@@ -136,11 +136,11 @@ registerAction2(class extends Action2 {
136
136
  super({
137
137
  id: CommentCommandId.NextRange,
138
138
  title: {
139
- value: ( localize(6214, "Go to Next Commenting Range")),
139
+ value: ( localize(6339, "Go to Next Commenting Range")),
140
140
  original: 'Go to Next Commenting Range'
141
141
  },
142
142
  category: {
143
- value: ( localize(6212, "Comments")),
143
+ value: ( localize(6337, "Comments")),
144
144
  original: 'Comments'
145
145
  },
146
146
  menu: [{
@@ -171,11 +171,11 @@ registerAction2(class extends Action2 {
171
171
  super({
172
172
  id: CommentCommandId.PreviousRange,
173
173
  title: {
174
- value: ( localize(6215, "Go to Previous Commenting Range")),
174
+ value: ( localize(6340, "Go to Previous Commenting Range")),
175
175
  original: 'Go to Previous Commenting Range'
176
176
  },
177
177
  category: {
178
- value: ( localize(6212, "Comments")),
178
+ value: ( localize(6337, "Comments")),
179
179
  original: 'Comments'
180
180
  },
181
181
  menu: [{
@@ -206,11 +206,11 @@ registerAction2(class extends Action2 {
206
206
  super({
207
207
  id: CommentCommandId.ToggleCommenting,
208
208
  title: {
209
- value: ( localize(6216, "Toggle Editor Commenting")),
209
+ value: ( localize(6341, "Toggle Editor Commenting")),
210
210
  original: 'Toggle Editor Commenting'
211
211
  },
212
212
  category: {
213
- value: ( localize(6212, "Comments")),
213
+ value: ( localize(6337, "Comments")),
214
214
  original: 'Comments'
215
215
  },
216
216
  menu: [{
@@ -230,11 +230,11 @@ registerAction2(class extends Action2 {
230
230
  super({
231
231
  id: CommentCommandId.Add,
232
232
  title: {
233
- value: ( localize(6217, "Add Comment on Current Selection")),
233
+ value: ( localize(6342, "Add Comment on Current Selection")),
234
234
  original: 'Add Comment on Current Selection'
235
235
  },
236
236
  category: {
237
- value: ( localize(6212, "Comments")),
237
+ value: ( localize(6337, "Comments")),
238
238
  original: 'Comments'
239
239
  },
240
240
  menu: [{
@@ -272,11 +272,11 @@ registerAction2(class extends Action2 {
272
272
  super({
273
273
  id: CommentCommandId.FocusCommentOnCurrentLine,
274
274
  title: {
275
- value: ( localize(6218, "Focus Comment on Current Line")),
275
+ value: ( localize(6343, "Focus Comment on Current Line")),
276
276
  original: 'Focus Comment on Current Line'
277
277
  },
278
278
  category: {
279
- value: ( localize(6212, "Comments")),
279
+ value: ( localize(6337, "Comments")),
280
280
  original: 'Comments'
281
281
  },
282
282
  f1: true,
@@ -308,7 +308,7 @@ registerAction2(class extends Action2 {
308
308
  error = true;
309
309
  }
310
310
  if (error) {
311
- notificationService.error(( localize(6219, "The cursor must be on a line with a comment to focus the comment")));
311
+ notificationService.error(( localize(6344, "The cursor must be on a line with a comment to focus the comment")));
312
312
  }
313
313
  }
314
314
  });
@@ -317,11 +317,11 @@ registerAction2(class extends Action2 {
317
317
  super({
318
318
  id: CommentCommandId.CollapseAll,
319
319
  title: {
320
- value: ( localize(6220, "Collapse All Comments")),
320
+ value: ( localize(6345, "Collapse All Comments")),
321
321
  original: 'Collapse All Comments'
322
322
  },
323
323
  category: {
324
- value: ( localize(6212, "Comments")),
324
+ value: ( localize(6337, "Comments")),
325
325
  original: 'Comments'
326
326
  },
327
327
  menu: [{
@@ -339,11 +339,11 @@ registerAction2(class extends Action2 {
339
339
  super({
340
340
  id: CommentCommandId.ExpandAll,
341
341
  title: {
342
- value: ( localize(6221, "Expand All Comments")),
342
+ value: ( localize(6346, "Expand All Comments")),
343
343
  original: 'Expand All Comments'
344
344
  },
345
345
  category: {
346
- value: ( localize(6212, "Comments")),
346
+ value: ( localize(6337, "Comments")),
347
347
  original: 'Comments'
348
348
  },
349
349
  menu: [{
@@ -361,11 +361,11 @@ registerAction2(class extends Action2 {
361
361
  super({
362
362
  id: CommentCommandId.ExpandUnresolved,
363
363
  title: {
364
- value: ( localize(6222, "Expand Unresolved Comments")),
364
+ value: ( localize(6347, "Expand Unresolved Comments")),
365
365
  original: 'Expand Unresolved Comments'
366
366
  },
367
367
  category: {
368
- value: ( localize(6212, "Comments")),
368
+ value: ( localize(6337, "Comments")),
369
369
  original: 'Comments'
370
370
  },
371
371
  menu: [{
@@ -424,7 +424,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
424
424
  error = true;
425
425
  }
426
426
  if (error) {
427
- notificationService.error(( localize(6219, "The cursor must be on a line with a comment to focus the comment")));
427
+ notificationService.error(( localize(6344, "The cursor must be on a line with a comment to focus the comment")));
428
428
  }
429
429
  }
430
430
  }