-
Notifications
You must be signed in to change notification settings - Fork 307
/
Copy pathCodeAnalysisUI.Designer.cs
515 lines (457 loc) · 19.5 KB
/
CodeAnalysisUI.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Rubberduck.CodeAnalysis {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class CodeAnalysisUI {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CodeAnalysisUI() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Rubberduck.CodeAnalysis.CodeAnalysisUI", typeof(CodeAnalysisUI).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Issue.
/// </summary>
public static string CodeInspectionResults_Issue {
get {
return ResourceManager.GetString("CodeInspectionResults_Issue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Location.
/// </summary>
public static string CodeInspectionResults_Location {
get {
return ResourceManager.GetString("CodeInspectionResults_Location", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Type.
/// </summary>
public static string CodeInspectionResults_Type {
get {
return ResourceManager.GetString("CodeInspectionResults_Type", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Code Inspections.
/// </summary>
public static string CodeInspections {
get {
return ResourceManager.GetString("CodeInspections", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Inspecting....
/// </summary>
public static string CodeInspections_Inspecting {
get {
return ResourceManager.GetString("CodeInspections_Inspecting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rubberduck Code Inspections - {0}
///{1} issues found..
/// </summary>
public static string CodeInspections_NumberOfIssuesFound_Plural {
get {
return ResourceManager.GetString("CodeInspections_NumberOfIssuesFound_Plural", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rubberduck Code Inspections - {0}
///{1} issue found..
/// </summary>
public static string CodeInspections_NumberOfIssuesFound_Singular {
get {
return ResourceManager.GetString("CodeInspections_NumberOfIssuesFound_Singular", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Description:.
/// </summary>
public static string CodeInspectionSettingsPage_FilterByDescription {
get {
return ResourceManager.GetString("CodeInspectionSettingsPage_FilterByDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Severity:.
/// </summary>
public static string CodeInspectionSettingsPage_FilterBySeverity {
get {
return ResourceManager.GetString("CodeInspectionSettingsPage_FilterBySeverity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Inspection Severities.
/// </summary>
public static string CodeInspectionSettingsPage_InspectionSeveritySettingsLabel {
get {
return ResourceManager.GetString("CodeInspectionSettingsPage_InspectionSeveritySettingsLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Miscellaneous.
/// </summary>
public static string CodeInspectionSettingsPage_Misc {
get {
return ResourceManager.GetString("CodeInspectionSettingsPage_Misc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ignore Hungarian Notation for UserForm controls.
/// </summary>
public static string CodeInspectionSettingsPage_Misc_IgnoreFormControlHungarianNotation {
get {
return ResourceManager.GetString("CodeInspectionSettingsPage_Misc_IgnoreFormControlHungarianNotation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Run inspections automatically on successful parse.
/// </summary>
public static string CodeInspectionSettingsPage_Misc_RunInspectionsOnSuccessfulParse {
get {
return ResourceManager.GetString("CodeInspectionSettingsPage_Misc_RunInspectionsOnSuccessfulParse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to These identifiers will be ignored by the 'Use meaningful names' inspection..
/// </summary>
public static string CodeInspectionSettingsPage_WhitelistedIdentifiersDescription {
get {
return ResourceManager.GetString("CodeInspectionSettingsPage_WhitelistedIdentifiersDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allowed Identifiers.
/// </summary>
public static string CodeInspectionSettingsPage_WhitelistedIdentifiersLabel {
get {
return ResourceManager.GetString("CodeInspectionSettingsPage_WhitelistedIdentifiersLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cyclomatic Complexity.
/// </summary>
public static string CodeMetrics_Complexity {
get {
return ResourceManager.GetString("CodeMetrics_Complexity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lines.
/// </summary>
public static string CodeMetrics_Lines {
get {
return ResourceManager.GetString("CodeMetrics_Lines", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Maximum Nesting.
/// </summary>
public static string CodeMetrics_Nesting {
get {
return ResourceManager.GetString("CodeMetrics_Nesting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Code Metrics.
/// </summary>
public static string CodeMetricsDockablePresenter_Caption {
get {
return ResourceManager.GetString("CodeMetricsDockablePresenter_Caption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following project(s) cannot be compiled, which will most likely result in parser errors. Continue anyway? {0}.
/// </summary>
public static string Command_Reparse_CannotCompile {
get {
return ResourceManager.GetString("Command_Reparse_CannotCompile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to compile for parsing..
/// </summary>
public static string Command_Reparse_CannotCompile_Caption {
get {
return ResourceManager.GetString("Command_Reparse_CannotCompile_Caption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The VBE setting "Compile On Demand" is currently enabled. This is not recommended as this may hide compilation errors and cause problems with parsing. Do you want to parse anyway?.
/// </summary>
public static string Command_Reparse_CompileOnDemandEnabled {
get {
return ResourceManager.GetString("Command_Reparse_CompileOnDemandEnabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Compile On Demand Setting.
/// </summary>
public static string Command_Reparse_CompileOnDemandEnabled_Caption {
get {
return ResourceManager.GetString("Command_Reparse_CompileOnDemandEnabled_Caption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to runtime expression.
/// </summary>
public static string DeclarationType_BracketedExpression {
get {
return ResourceManager.GetString("DeclarationType_BracketedExpression", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to class.
/// </summary>
public static string DeclarationType_ClassModule {
get {
return ResourceManager.GetString("DeclarationType_ClassModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to constant.
/// </summary>
public static string DeclarationType_Constant {
get {
return ResourceManager.GetString("DeclarationType_Constant", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to control.
/// </summary>
public static string DeclarationType_Control {
get {
return ResourceManager.GetString("DeclarationType_Control", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to enum.
/// </summary>
public static string DeclarationType_Enumeration {
get {
return ResourceManager.GetString("DeclarationType_Enumeration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to enum member.
/// </summary>
public static string DeclarationType_EnumerationMember {
get {
return ResourceManager.GetString("DeclarationType_EnumerationMember", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to event.
/// </summary>
public static string DeclarationType_Event {
get {
return ResourceManager.GetString("DeclarationType_Event", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to function.
/// </summary>
public static string DeclarationType_Function {
get {
return ResourceManager.GetString("DeclarationType_Function", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to library function.
/// </summary>
public static string DeclarationType_LibraryFunction {
get {
return ResourceManager.GetString("DeclarationType_LibraryFunction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to library procedure.
/// </summary>
public static string DeclarationType_LibraryProcedure {
get {
return ResourceManager.GetString("DeclarationType_LibraryProcedure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to line label.
/// </summary>
public static string DeclarationType_LineLabel {
get {
return ResourceManager.GetString("DeclarationType_LineLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to parameter.
/// </summary>
public static string DeclarationType_Parameter {
get {
return ResourceManager.GetString("DeclarationType_Parameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to module.
/// </summary>
public static string DeclarationType_ProceduralModule {
get {
return ResourceManager.GetString("DeclarationType_ProceduralModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to procedure.
/// </summary>
public static string DeclarationType_Procedure {
get {
return ResourceManager.GetString("DeclarationType_Procedure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to project.
/// </summary>
public static string DeclarationType_Project {
get {
return ResourceManager.GetString("DeclarationType_Project", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to property get accessor.
/// </summary>
public static string DeclarationType_PropertyGet {
get {
return ResourceManager.GetString("DeclarationType_PropertyGet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to property let accessor.
/// </summary>
public static string DeclarationType_PropertyLet {
get {
return ResourceManager.GetString("DeclarationType_PropertyLet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to property set accessor.
/// </summary>
public static string DeclarationType_PropertySet {
get {
return ResourceManager.GetString("DeclarationType_PropertySet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to user-defined type.
/// </summary>
public static string DeclarationType_UserDefinedType {
get {
return ResourceManager.GetString("DeclarationType_UserDefinedType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to user-defined type member.
/// </summary>
public static string DeclarationType_UserDefinedTypeMember {
get {
return ResourceManager.GetString("DeclarationType_UserDefinedTypeMember", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to variable.
/// </summary>
public static string DeclarationType_Variable {
get {
return ResourceManager.GetString("DeclarationType_Variable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You've earned the "Continuator" badge!.
/// </summary>
public static string EasterEgg_Continuator {
get {
return ResourceManager.GetString("EasterEgg_Continuator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ignore.
/// </summary>
public static string EmptyLineHandling_Ignore {
get {
return ResourceManager.GetString("EmptyLineHandling_Ignore", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Indent.
/// </summary>
public static string EmptyLineHandling_Indent {
get {
return ResourceManager.GetString("EmptyLineHandling_Indent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove.
/// </summary>
public static string EmptyLineHandling_Remove {
get {
return ResourceManager.GetString("EmptyLineHandling_Remove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filter.
/// </summary>
public static string GroupingGrid_Filter {
get {
return ResourceManager.GetString("GroupingGrid_Filter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter array '{0}' is zero-based..
/// </summary>
public static string InconsistentArrayBaseInspection_ParamArray {
get {
return ResourceManager.GetString("InconsistentArrayBaseInspection_ParamArray", resourceCulture);
}
}
}
}