-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathStrings.Designer.cs
1100 lines (979 loc) · 38.4 KB
/
Strings.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
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
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34014
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace KSUtil {
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()]
public class Strings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Strings() {
}
/// <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("KSUtil.Strings", typeof(Strings).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 Close File.
/// </summary>
public static string CloseFile {
get {
return ResourceManager.GetString("CloseFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ADDRESS.
/// </summary>
public static string Command_Address {
get {
return ResourceManager.GetString("Command_Address", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to COMPARE.
/// </summary>
public static string Command_Compare {
get {
return ResourceManager.GetString("Command_Compare", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HELP.
/// </summary>
public static string Command_Help {
get {
return ResourceManager.GetString("Command_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to LOG.
/// </summary>
public static string Command_Log {
get {
return ResourceManager.GetString("Command_Log", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to LOOP.
/// </summary>
public static string Command_Loop {
get {
return ResourceManager.GetString("Command_Loop", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PII.
/// </summary>
public static string Command_PII {
get {
return ResourceManager.GetString("Command_PII", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PLAY.
/// </summary>
public static string Command_Play {
get {
return ResourceManager.GetString("Command_Play", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to RECORD.
/// </summary>
public static string Command_Record {
get {
return ResourceManager.GetString("Command_Record", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to REMOVE.
/// </summary>
public static string Command_Remove {
get {
return ResourceManager.GetString("Command_Remove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to STREAM.
/// </summary>
public static string Command_Stream {
get {
return ResourceManager.GetString("Command_Stream", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to UPDATE.
/// </summary>
public static string Command_Update {
get {
return ResourceManager.GetString("Command_Update", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to VIEW.
/// </summary>
public static string Command_View {
get {
return ResourceManager.GetString("Command_View", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following commands are supported by KSUtil:
/// -view <filePath>
/// Display the contents of an event file (.xef or .xrf).
/// Use with -log <filePath> to copy the view result to a log file.
/// -compare <filePath1> <filePath2>
/// Compare metadata and stream content across two event files.
/// Use with -log <filePath> to copy the comparison result to a log file.
/// -update <filePath> <metadataKey> <metadataValue>
/// Add/edit metadata in an event file.
/// Use with -pii to alter personal meta [rest of string was truncated]";.
/// </summary>
public static string CommandLineHelp {
get {
return ResourceManager.GetString("CommandLineHelp", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Compare Files.
/// </summary>
public static string CompareFiles {
get {
return ResourceManager.GetString("CompareFiles", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} vs {1}.
/// </summary>
public static string CompareFilesHeader {
get {
return ResourceManager.GetString("CompareFilesHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comparison Results.
/// </summary>
public static string ComparisonResultsHeader {
get {
return ResourceManager.GetString("ComparisonResultsHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to xd:\clips.
/// </summary>
public static string ConsoleClipRepository {
get {
return ResourceManager.GetString("ConsoleClipRepository", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Data Type ID.
/// </summary>
public static string DataTypeIdHeader {
get {
return ResourceManager.GetString("DataTypeIdHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to different.
/// </summary>
public static string Different {
get {
return ResourceManager.GetString("Different", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Done!.
/// </summary>
public static string Done {
get {
return ResourceManager.GetString("Done", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot record/play Color without RawIR or IR..
/// </summary>
public static string ErrorColorWithoutIR {
get {
return ResourceManager.GetString("ErrorColorWithoutIR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error: Failed to compare files, {0}.
/// </summary>
public static string ErrorCompareFilesFailed {
get {
return ResourceManager.GetString("ErrorCompareFilesFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot record/play Compressed and Uncompressed Color at the same time..
/// </summary>
public static string ErrorCompressedAndUncompressedColor {
get {
return ResourceManager.GetString("ErrorCompressedAndUncompressedColor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot record/play Depth without IR..
/// </summary>
public static string ErrorDepthWithoutIR {
get {
return ResourceManager.GetString("ErrorDepthWithoutIR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to connect to the service. Please verify that the Kinect sensor is plugged in and operational..
/// </summary>
public static string ErrorFailedToConnect {
get {
return ResourceManager.GetString("ErrorFailedToConnect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid arguments for {0}.
/// </summary>
public static string ErrorInvalidArgs {
get {
return ResourceManager.GetString("ErrorInvalidArgs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid use of converter..
/// </summary>
public static string ErrorInvalidConversion {
get {
return ResourceManager.GetString("ErrorInvalidConversion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory is invalid..
/// </summary>
public static string ErrorInvalidDirectory {
get {
return ResourceManager.GetString("ErrorInvalidDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not find the specified file..
/// </summary>
public static string ErrorInvalidFile {
get {
return ResourceManager.GetString("ErrorInvalidFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid file type, only .xef and .xrf files are supported..
/// </summary>
public static string ErrorInvalidFileExtension {
get {
return ResourceManager.GetString("ErrorInvalidFileExtension", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to connect to the service due to an invalid IP address..
/// </summary>
public static string ErrorInvalidIPAddress {
get {
return ResourceManager.GetString("ErrorInvalidIPAddress", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to alter metadata. A valid key/value must be provided..
/// </summary>
public static string ErrorInvalidMetadataPair {
get {
return ResourceManager.GetString("ErrorInvalidMetadataPair", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File path cannot be empty or null..
/// </summary>
public static string ErrorInvalidPath {
get {
return ResourceManager.GetString("ErrorInvalidPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid stream specified: {0}.
/// </summary>
public static string ErrorInvalidStream {
get {
return ResourceManager.GetString("ErrorInvalidStream", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot record/play IR without Depth..
/// </summary>
public static string ErrorIRWithoutDepth {
get {
return ResourceManager.GetString("ErrorIRWithoutDepth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error: Failed to load file, {0}.
/// </summary>
public static string ErrorLoadFileFailed {
get {
return ResourceManager.GetString("ErrorLoadFileFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No streams available..
/// </summary>
public static string ErrorNoStreams {
get {
return ResourceManager.GetString("ErrorNoStreams", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The KStudio client is not connected..
/// </summary>
public static string ErrorNotConnected {
get {
return ResourceManager.GetString("ErrorNotConnected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The metadata key cannot be null..
/// </summary>
public static string ErrorNullMetadataKey {
get {
return ResourceManager.GetString("ErrorNullMetadataKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A stream with a null DataTypeId is not supported..
/// </summary>
public static string ErrorNullStream {
get {
return ResourceManager.GetString("ErrorNullStream", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred during playback: {0}.
/// </summary>
public static string ErrorPlaybackFailed {
get {
return ResourceManager.GetString("ErrorPlaybackFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} stream cannot be played because it does not exist in the file..
/// </summary>
public static string ErrorPlaybackStreamNotInFile {
get {
return ResourceManager.GetString("ErrorPlaybackStreamNotInFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} stream is not supported for playback by the Kinect sensor..
/// </summary>
public static string ErrorPlaybackStreamNotSupported {
get {
return ResourceManager.GetString("ErrorPlaybackStreamNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error: {0}.
/// </summary>
public static string ErrorPrepend {
get {
return ResourceManager.GetString("ErrorPrepend", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot record/play RawIR and IR at the same time..
/// </summary>
public static string ErrorRawIrWithIR {
get {
return ResourceManager.GetString("ErrorRawIrWithIR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred during recording: {0}.
/// </summary>
public static string ErrorRecordingFailed {
get {
return ResourceManager.GetString("ErrorRecordingFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} stream is not recordable by the Kinect sensor..
/// </summary>
public static string ErrorRecordingStreamNotSupported {
get {
return ResourceManager.GetString("ErrorRecordingStreamNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event Count.
/// </summary>
public static string EventCountHeader {
get {
return ResourceManager.GetString("EventCountHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Data Size.
/// </summary>
public static string EventDataSizeHeader {
get {
return ResourceManager.GetString("EventDataSizeHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to KStudio Event File.
/// </summary>
public static string EventFileDescription {
get {
return ResourceManager.GetString("EventFileDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to (*.xef, *.xrf)|*.xef;*.xrf.
/// </summary>
public static string EventFileFilter {
get {
return ResourceManager.GetString("EventFileFilter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Index.
/// </summary>
public static string EventIndexHeader {
get {
return ResourceManager.GetString("EventIndexHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Time.
/// </summary>
public static string EventRelativeTimeHeader {
get {
return ResourceManager.GetString("EventRelativeTimeHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Events ({0}).
/// </summary>
public static string EventsHeader {
get {
return ResourceManager.GetString("EventsHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tag Size.
/// </summary>
public static string EventTagSizeHeader {
get {
return ResourceManager.GetString("EventTagSizeHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exit.
/// </summary>
public static string Exit {
get {
return ResourceManager.GetString("Exit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File.
/// </summary>
public static string File {
get {
return ResourceManager.GetString("File", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File: {0}.
/// </summary>
public static string FileHeader {
get {
return ResourceManager.GetString("FileHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File Metadata.
/// </summary>
public static string FileMetadataHeader {
get {
return ResourceManager.GetString("FileMetadataHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Key.
/// </summary>
public static string KeyHeader {
get {
return ResourceManager.GetString("KeyHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File 1.
/// </summary>
public static string LeftValueHeader {
get {
return ResourceManager.GetString("LeftValueHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {Byte Array}.
/// </summary>
public static string MetadataValueBufferFriendlyName {
get {
return ResourceManager.GetString("MetadataValueBufferFriendlyName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to none.
/// </summary>
public static string None {
get {
return ResourceManager.GetString("None", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Personal Metadata ({0},{1}).
/// </summary>
public static string PersonalMetadataCompareCountHeader {
get {
return ResourceManager.GetString("PersonalMetadataCompareCountHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Files differ in personal metadata content..
/// </summary>
public static string PersonalMetadataDifferentResult {
get {
return ResourceManager.GetString("PersonalMetadataDifferentResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Personal Metadata ({0}).
/// </summary>
public static string PersonalMetadataHeader {
get {
return ResourceManager.GetString("PersonalMetadataHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Files have the same personal metadata content..
/// </summary>
public static string PersonalMetadataSameResult {
get {
return ResourceManager.GetString("PersonalMetadataSameResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Public Metadata ({0},{1}).
/// </summary>
public static string PublicMetadataCompareCountHeader {
get {
return ResourceManager.GetString("PublicMetadataCompareCountHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Files differ in public metadata content..
/// </summary>
public static string PublicMetadataDifferentResult {
get {
return ResourceManager.GetString("PublicMetadataDifferentResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Public Metadata ({0}).
/// </summary>
public static string PublicMetadataHeader {
get {
return ResourceManager.GetString("PublicMetadataHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Files have the same public metadata content..
/// </summary>
public static string PublicMetadataSameResult {
get {
return ResourceManager.GetString("PublicMetadataSameResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File 2.
/// </summary>
public static string RightValueHeader {
get {
return ResourceManager.GetString("RightValueHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to same.
/// </summary>
public static string Same {
get {
return ResourceManager.GetString("Same", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Semantic ID.
/// </summary>
public static string SemanticIdHeader {
get {
return ResourceManager.GetString("SemanticIdHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Playback in progress. Please monitor NuiView for visual feedback..
/// </summary>
public static string StartPlayback {
get {
return ResourceManager.GetString("StartPlayback", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Recording in progress....
/// </summary>
public static string StartRecording {
get {
return ResourceManager.GetString("StartRecording", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Playback has stopped..
/// </summary>
public static string StopPlayback {
get {
return ResourceManager.GetString("StopPlayback", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Recording has stopped..
/// </summary>
public static string StopRecording {
get {
return ResourceManager.GetString("StopRecording", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to body.
/// </summary>
public static string Stream_Body {
get {
return ResourceManager.GetString("Stream_Body", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to bodyIndex.
/// </summary>
public static string Stream_BodyIndex {
get {
return ResourceManager.GetString("Stream_BodyIndex", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to color.
/// </summary>
public static string Stream_Color {
get {
return ResourceManager.GetString("Stream_Color", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to depth.
/// </summary>
public static string Stream_Depth {
get {
return ResourceManager.GetString("Stream_Depth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ir.
/// </summary>
public static string Stream_IR {
get {
return ResourceManager.GetString("Stream_IR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to longExposureIr.
/// </summary>
public static string Stream_LongExpIR {
get {
return ResourceManager.GetString("Stream_LongExpIR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to rawIr.
/// </summary>
public static string Stream_RawIR {
get {
return ResourceManager.GetString("Stream_RawIR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stream Details ({0}).
/// </summary>
public static string StreamDetailsHeader {
get {
return ResourceManager.GetString("StreamDetailsHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to End Time.
/// </summary>
public static string StreamEndTimeHeader {
get {
return ResourceManager.GetString("StreamEndTimeHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stream Name.
/// </summary>
public static string StreamNameHeader {
get {
return ResourceManager.GetString("StreamNameHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Streams ({0},{1}).
/// </summary>
public static string StreamsCompareCountHeader {
get {
return ResourceManager.GetString("StreamsCompareCountHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Files differ in stream content..
/// </summary>
public static string StreamsDifferentResult {
get {
return ResourceManager.GetString("StreamsDifferentResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Streams ({0}).
/// </summary>
public static string StreamsHeader {
get {
return ResourceManager.GetString("StreamsHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Files have the same stream content..
/// </summary>
public static string StreamsSameResult {
get {
return ResourceManager.GetString("StreamsSameResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start Time.
/// </summary>
public static string StreamStartTimeHeader {
get {
return ResourceManager.GetString("StreamStartTimeHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear content.
/// </summary>
public static string ToolTip_CloseFile {
get {
return ResourceManager.GetString("ToolTip_CloseFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Compare two event files.
/// </summary>
public static string ToolTip_CompareFiles {
get {
return ResourceManager.GetString("ToolTip_CompareFiles", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exit KSUtil.
/// </summary>
public static string ToolTip_Exit {
get {
return ResourceManager.GetString("ToolTip_Exit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to View event file content.
/// </summary>
public static string ToolTip_ViewFile {
get {
return ResourceManager.GetString("ToolTip_ViewFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown.
/// </summary>
public static string Unknown {
get {
return ResourceManager.GetString("Unknown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updating file metadata....
/// </summary>
public static string UpdatingFileMetadata {
get {
return ResourceManager.GetString("UpdatingFileMetadata", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updating {0} metadata....
/// </summary>
public static string UpdatingStreamMetadata {
get {
return ResourceManager.GetString("UpdatingStreamMetadata", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Value.
/// </summary>
public static string ValueHeader {
get {
return ResourceManager.GetString("ValueHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to View File.
/// </summary>
public static string ViewFile {
get {
return ResourceManager.GetString("ViewFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comparing files, please wait....