File: SR.Designer.cs

package info (click to toggle)
mono 6.12.0.199%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,296,836 kB
  • sloc: cs: 11,181,803; xml: 2,850,076; ansic: 699,709; cpp: 123,344; perl: 59,361; javascript: 30,841; asm: 21,853; makefile: 20,405; sh: 15,009; python: 4,839; pascal: 925; sql: 859; sed: 16; php: 1
file content (861 lines) | stat: -rw-r--r-- 33,193 bytes parent folder | download | duplicates (6)
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
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:4.0.30319.235
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace System.Activities.Core.Presentation {
    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", "4.0.0.0")]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    internal class SR {
        
        private static global::System.Resources.ResourceManager resourceMan;
        
        private static global::System.Globalization.CultureInfo resourceCulture;
        
        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        internal SR() {
        }
        
        /// <summary>
        ///   Returns the cached ResourceManager instance used by this class.
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Resources.ResourceManager ResourceManager {
            get {
                if (object.ReferenceEquals(resourceMan, null)) {
                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("System.Activities.Core.Presentation.SR", typeof(SR).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)]
        internal static global::System.Globalization.CultureInfo Culture {
            get {
                return resourceCulture;
            }
            set {
                resourceCulture = value;
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Add an activity.
        /// </summary>
        internal static string AddActivityHintText {
            get {
                return ResourceManager.GetString("AddActivityHintText", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Add new case.
        /// </summary>
        internal static string AddNewCase {
            get {
                return ResourceManager.GetString("AddNewCase", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Connect items automatically.
        /// </summary>
        internal static string AutoConnect {
            get {
                return ResourceManager.GetString("AutoConnect", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Split connector automatically.
        /// </summary>
        internal static string AutoSplit {
            get {
                return ResourceManager.GetString("AutoSplit", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot construct line segment between point {0} and point {1}..
        /// </summary>
        internal static string CannotConstructConnectionSegment {
            get {
                return ResourceManager.GetString("CannotConstructConnectionSegment", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot create link..
        /// </summary>
        internal static string CannotCreateLink {
            get {
                return ResourceManager.GetString("CannotCreateLink", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot create transition from a state to its descendant..
        /// </summary>
        internal static string CannotCreateTransitionFromAncestorToDescendant {
            get {
                return ResourceManager.GetString("CannotCreateTransitionFromAncestorToDescendant", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot create transition to a composite state..
        /// </summary>
        internal static string CannotCreateTransitionToCompositeState {
            get {
                return ResourceManager.GetString("CannotCreateTransitionToCompositeState", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to {0} activity is copied to the clipboard. Please paste it in your workflow as appropriate..
        /// </summary>
        internal static string CannotPasteSendReplyOrReceiveReply {
            get {
                return ResourceManager.GetString("CannotPasteSendReplyOrReceiveReply", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot set a composite state as the initial state..
        /// </summary>
        internal static string CannotSetCompositeStateAsInitialState {
            get {
                return ResourceManager.GetString("CannotSetCompositeStateAsInitialState", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot set a final state as the initial state..
        /// </summary>
        internal static string CannotSetFinalStateAsInitialState {
            get {
                return ResourceManager.GetString("CannotSetFinalStateAsInitialState", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Case{0}.
        /// </summary>
        internal static string CaseFormat {
            get {
                return ResourceManager.GetString("CaseFormat", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Change Case Value.
        /// </summary>
        internal static string ChangeCaseValue {
            get {
                return ResourceManager.GetString("ChangeCaseValue", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Change type collection.
        /// </summary>
        internal static string ChangeTypeCollectionEditingScopeDesc {
            get {
                return ResourceManager.GetString("ChangeTypeCollectionEditingScopeDesc", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Clear initial state.
        /// </summary>
        internal static string ClearInitialState {
            get {
                return ResourceManager.GetString("ClearInitialState", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Transition.
        /// </summary>
        internal static string ConnectionAutomationPropertiesName {
            get {
                return ResourceManager.GetString("ConnectionAutomationPropertiesName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to ConnectionConfigurationName &apos;{0}&apos; does not exist in configuration file..
        /// </summary>
        internal static string ConnectionNotFoundInConfig {
            get {
                return ResourceManager.GetString("ConnectionNotFoundInConfig", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Select and press Ctrl-C to copy the transition..
        /// </summary>
        internal static string CopyTransitionToolTip {
            get {
                return ResourceManager.GetString("CopyTransitionToolTip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot use a query correlation initializer when a message is XmlSerializable..
        /// </summary>
        internal static string CorrelationInitializerNotSupported {
            get {
                return ResourceManager.GetString("CorrelationInitializerNotSupported", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Add parameter.
        /// </summary>
        internal static string CreateParameter {
            get {
                return ResourceManager.GetString("CreateParameter", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Create transition.
        /// </summary>
        internal static string CreateTransition {
            get {
                return ResourceManager.GetString("CreateTransition", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to (Custom).
        /// </summary>
        internal static string CustomConnectionStringLabel {
            get {
                return ResourceManager.GetString("CustomConnectionStringLabel", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Default case already exists..
        /// </summary>
        internal static string DefaultCaseExists {
            get {
                return ResourceManager.GetString("DefaultCaseExists", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Define....
        /// </summary>
        internal static string DefineContent {
            get {
                return ResourceManager.GetString("DefineContent", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Expected argument named &apos;{0}&apos; was not found.
        ///.
        /// </summary>
        internal static string DelegateArgumentMissing {
            get {
                return ResourceManager.GetString("DelegateArgumentMissing", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The directionality of activity delegate argument &apos;{0}&apos; in DelegateArguments dictionary is &apos;{1}&apos;. The expected directionality is &apos;{2}&apos;.
        ///.
        /// </summary>
        internal static string DelegateArgumentsDirectionalityMismatch {
            get {
                return ResourceManager.GetString("DelegateArgumentsDirectionalityMismatch", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The argument provided for the delegate input named &apos;{0}&apos; had an invalid type.  The delegate input is of type &apos;{1}&apos; and the argument is of type &apos;{2}&apos;.  The argument&apos;s type must be coercible to the delegate input&apos;s type.
        ///.
        /// </summary>
        internal static string DelegateInArgumentTypeMismatch {
            get {
                return ResourceManager.GetString("DelegateInArgumentTypeMismatch", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The argument provided for the delegate output named &apos;{0}&apos; had an invalid type.  The delegate output is of type &apos;{1}&apos; and the argument is of type &apos;{2}&apos;.  The delegate output&apos;s type must be coercible to the argument&apos;s type.
        ///.
        /// </summary>
        internal static string DelegateOutArgumentTypeMismatch {
            get {
                return ResourceManager.GetString("DelegateOutArgumentTypeMismatch", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to A switch case with the key &apos;{0}&apos; already exists. Choose a different key..
        /// </summary>
        internal static string DuplicateCaseKey {
            get {
                return ResourceManager.GetString("DuplicateCaseKey", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The collection already contains the key &apos;{0}&apos;. Please choose a different key..
        /// </summary>
        internal static string DuplicateKeyName {
            get {
                return ResourceManager.GetString("DuplicateKeyName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Editing Command.
        /// </summary>
        internal static string EditingCommand {
            get {
                return ResourceManager.GetString("EditingCommand", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Editing Connection Settings.
        /// </summary>
        internal static string EditingConnectionSettings {
            get {
                return ResourceManager.GetString("EditingConnectionSettings", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Editing Parameters.
        /// </summary>
        internal static string EditingParameters {
            get {
                return ResourceManager.GetString("EditingParameters", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Edit Parameters.
        /// </summary>
        internal static string EditParametersUndoUnitName {
            get {
                return ResourceManager.GetString("EditParametersUndoUnitName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Double-click to edit state details..
        /// </summary>
        internal static string EditStateToolTip {
            get {
                return ResourceManager.GetString("EditStateToolTip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Double-click to edit transition details.
        /// </summary>
        internal static string EditTransitionTooltip {
            get {
                return ResourceManager.GetString("EditTransitionTooltip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to (empty).
        /// </summary>
        internal static string EmptyName {
            get {
                return ResourceManager.GetString("EmptyName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Equals() and/or GetHashCode() on type &apos;{0}&apos; were not overridden correctly..
        /// </summary>
        internal static string EqualityError {
            get {
                return ResourceManager.GetString("EqualityError", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Workflow Designer.
        /// </summary>
        internal static string ErrorMessageBoxTitle {
            get {
                return ResourceManager.GetString("ErrorMessageBoxTitle", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to &lt;Enter an expression&gt;.
        /// </summary>
        internal static string ExpressionDefaultText {
            get {
                return ResourceManager.GetString("ExpressionDefaultText", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Create Link(s).
        /// </summary>
        internal static string FCCreateLink {
            get {
                return ResourceManager.GetString("FCCreateLink", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Delete Link(s).
        /// </summary>
        internal static string FCDeleteLink {
            get {
                return ResourceManager.GetString("FCDeleteLink", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Delete Flowchart node.
        /// </summary>
        internal static string FCDeleteShape {
            get {
                return ResourceManager.GetString("FCDeleteShape", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to False branch already exists..
        /// </summary>
        internal static string FCFalseBranchExists {
            get {
                return ResourceManager.GetString("FCFalseBranchExists", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Connection can only be from True or False branch..
        /// </summary>
        internal static string FCFlowConditionLinkError {
            get {
                return ResourceManager.GetString("FCFlowConditionLinkError", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The True and False branches have already been defined..
        /// </summary>
        internal static string FCFlowConditionLinksExist {
            get {
                return ResourceManager.GetString("FCFlowConditionLinksExist", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to False.
        /// </summary>
        internal static string FCFlowDecisionFalseMarker {
            get {
                return ResourceManager.GetString("FCFlowDecisionFalseMarker", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to True.
        /// </summary>
        internal static string FCFlowDecisionTrueMarker {
            get {
                return ResourceManager.GetString("FCFlowDecisionTrueMarker", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot connect to the connection point..
        /// </summary>
        internal static string FCInvalidLink {
            get {
                return ResourceManager.GetString("FCInvalidLink", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Move Flowchart Link.
        /// </summary>
        internal static string FCLinkMove {
            get {
                return ResourceManager.GetString("FCLinkMove", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot create more than one outgoing connection for this activity..
        /// </summary>
        internal static string FCNextLinkDefined {
            get {
                return ResourceManager.GetString("FCNextLinkDefined", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Resize Flowchart.
        /// </summary>
        internal static string FCResizeUndoUnitName {
            get {
                return ResourceManager.GetString("FCResizeUndoUnitName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to True branch already exists..
        /// </summary>
        internal static string FCTrueBranchExists {
            get {
                return ResourceManager.GetString("FCTrueBranchExists", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Fill Delegate Arguments.
        /// </summary>
        internal static string FillDelegateArguments {
            get {
                return ResourceManager.GetString("FillDelegateArguments", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FlowSwitch case rename.
        /// </summary>
        internal static string FlowSwitchCaseRenameEditingScopeDesc {
            get {
                return ResourceManager.GetString("FlowSwitchCaseRenameEditingScopeDesc", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FlowSwitch DefaultCaseDisplayName change.
        /// </summary>
        internal static string FlowSwitchDefaultCaseDisplayNameEditingScopeDesc {
            get {
                return ResourceManager.GetString("FlowSwitchDefaultCaseDisplayNameEditingScopeDesc", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Drag a line to connect to the initial state.
        /// </summary>
        internal static string InitialStateConnectionPointTooltip {
            get {
                return ResourceManager.GetString("InitialStateConnectionPointTooltip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to FlowSwitch cases must be unique..
        /// </summary>
        internal static string InvalidFlowSwitchCaseMessage {
            get {
                return ResourceManager.GetString("InvalidFlowSwitchCaseMessage", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Item Move.
        /// </summary>
        internal static string ItemMove {
            get {
                return ResourceManager.GetString("ItemMove", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Move link.
        /// </summary>
        internal static string MoveLink {
            get {
                return ResourceManager.GetString("MoveLink", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to &lt;Input case here&gt;.
        /// </summary>
        internal static string NewCaseHint {
            get {
                return ResourceManager.GetString("NewCaseHint", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Case key value cannot be converted from/to type string..
        /// </summary>
        internal static string NotSupportedCaseKeyStringConversion {
            get {
                return ResourceManager.GetString("NotSupportedCaseKeyStringConversion", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The Encoding with code page &apos;{0}&apos; is not supported..
        /// </summary>
        internal static string NotSupportedEncoding {
            get {
                return ResourceManager.GetString("NotSupportedEncoding", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to (null).
        /// </summary>
        internal static string NullName {
            get {
                return ResourceManager.GetString("NullName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to The entered key is invalid.
        /// </summary>
        internal static string NullOrEmptyKeyName {
            get {
                return ResourceManager.GetString("NullOrEmptyKeyName", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Parameters.
        /// </summary>
        internal static string ParameterDialogTitle {
            get {
                return ResourceManager.GetString("ParameterDialogTitle", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot paste the transition if one of the selected source states is a Final state..
        /// </summary>
        internal static string PasteTransitionOnFinalState {
            get {
                return ResourceManager.GetString("PasteTransitionOnFinalState", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot paste the transition if the selection contains any item that is not a State..
        /// </summary>
        internal static string PasteTransitionOnNonStateItem {
            get {
                return ResourceManager.GetString("PasteTransitionOnNonStateItem", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Select and press Ctrl-V to paste the transition..
        /// </summary>
        internal static string PasteTransitionToolTip {
            get {
                return ResourceManager.GetString("PasteTransitionToolTip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot paste the transition because &apos;{0}&apos; has all connection points occupied..
        /// </summary>
        internal static string PasteTransitionWithoutAvailableConnectionPoints {
            get {
                return ResourceManager.GetString("PasteTransitionWithoutAvailableConnectionPoints", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Cannot paste the transition if the destination state of the copied transition is removed or not in the StateMachine..
        /// </summary>
        internal static string PasteTransitionWithoutDestinationState {
            get {
                return ResourceManager.GetString("PasteTransitionWithoutDestinationState", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to &apos;{0}&apos; is not a concrete type of ActivityDelegate..
        /// </summary>
        internal static string PropertyIsNotAConcreteActivityDelegate {
            get {
                return ResourceManager.GetString("PropertyIsNotAConcreteActivityDelegate", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to &apos;{0}&apos; is not an ActivityDelegate..
        /// </summary>
        internal static string PropertyIsNotAnActivityDelegate {
            get {
                return ResourceManager.GetString("PropertyIsNotAnActivityDelegate", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Property Reference Change.
        /// </summary>
        internal static string PropertyReferenceChange {
            get {
                return ResourceManager.GetString("PropertyReferenceChange", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to &apos;{0}&apos; cannot be resolved..
        /// </summary>
        internal static string PropertyReferenceNotResolved {
            get {
                return ResourceManager.GetString("PropertyReferenceNotResolved", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Reorder items.
        /// </summary>
        internal static string ReorderItems {
            get {
                return ResourceManager.GetString("ReorderItems", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Set initial state.
        /// </summary>
        internal static string SetInitialState {
            get {
                return ResourceManager.GetString("SetInitialState", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Drag a line to create a new transition that shares the same trigger.
        /// </summary>
        internal static string SharedTriggerToolTip {
            get {
                return ResourceManager.GetString("SharedTriggerToolTip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Go to {0}.
        /// </summary>
        internal static string StateLinkButtonToolTip {
            get {
                return ResourceManager.GetString("StateLinkButtonToolTip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Resize StateMachine.
        /// </summary>
        internal static string StateMachineResize {
            get {
                return ResourceManager.GetString("StateMachineResize", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Resize State.
        /// </summary>
        internal static string StateResize {
            get {
                return ResourceManager.GetString("StateResize", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Drag a line to create a transition.
        /// </summary>
        internal static string TransitionConnectionPointTooltip {
            get {
                return ResourceManager.GetString("TransitionConnectionPointTooltip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Request in ReceiveReply &apos;{0}&apos; does not belong to the workflow..
        /// </summary>
        internal static string UnrootedRequestInReceiveReply {
            get {
                return ResourceManager.GetString("UnrootedRequestInReceiveReply", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to Request in SendReply &apos;{0}&apos; does not belong to the workflow..
        /// </summary>
        internal static string UnrootedRequestInSendReply {
            get {
                return ResourceManager.GetString("UnrootedRequestInSendReply", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to View message....
        /// </summary>
        internal static string ViewMessageContent {
            get {
                return ResourceManager.GetString("ViewMessageContent", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to View parameter....
        /// </summary>
        internal static string ViewParameterContent {
            get {
                return ResourceManager.GetString("ViewParameterContent", resourceCulture);
            }
        }
        
        /// <summary>
        ///   Looks up a localized string similar to ActivityDelegate arguments don&apos;t match. Check your activity configuration to make sure it is in sync with the declared ActivityDelegate..
        /// </summary>
        internal static string WrongNumberOfArgumentsForActivityDelegate {
            get {
                return ResourceManager.GetString("WrongNumberOfArgumentsForActivityDelegate", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string for the automation name of ParallelSeparator
        /// </summary>
        internal static string ParallelSeparatorAutomationName
        {
            get
            {
                return ResourceManager.GetString("ParallelSeparatorAutomationName", resourceCulture);
            }
        }
    }
}