-
-
Notifications
You must be signed in to change notification settings - Fork 595
Expand file tree
/
Copy pathResources.Designer.cs
More file actions
4150 lines (3690 loc) · 147 KB
/
Copy pathResources.Designer.cs
File metadata and controls
4150 lines (3690 loc) · 147 KB
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.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace StabilityMatrix.Avalonia.Languages {
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 Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <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("StabilityMatrix.Avalonia.Languages.Resources", typeof(Resources).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 Add for All Users.
/// </summary>
public static string Action_AddForAllUsers {
get {
return ResourceManager.GetString("Action_AddForAllUsers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add for Current User.
/// </summary>
public static string Action_AddForCurrentUser {
get {
return ResourceManager.GetString("Action_AddForCurrentUser", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Package.
/// </summary>
public static string Action_AddPackage {
get {
return ResourceManager.GetString("Action_AddPackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
public static string Action_Cancel {
get {
return ResourceManager.GetString("Action_Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check for Updates.
/// </summary>
public static string Action_CheckForUpdates {
get {
return ResourceManager.GetString("Action_CheckForUpdates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check Version.
/// </summary>
public static string Action_CheckVersion {
get {
return ResourceManager.GetString("Action_CheckVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Selection.
/// </summary>
public static string Action_ClearSelection {
get {
return ResourceManager.GetString("Action_ClearSelection", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close.
/// </summary>
public static string Action_Close {
get {
return ResourceManager.GetString("Action_Close", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connect.
/// </summary>
public static string Action_Connect {
get {
return ResourceManager.GetString("Action_Connect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Consolidate.
/// </summary>
public static string Action_Consolidate {
get {
return ResourceManager.GetString("Action_Consolidate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Continue.
/// </summary>
public static string Action_Continue {
get {
return ResourceManager.GetString("Action_Continue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy.
/// </summary>
public static string Action_Copy {
get {
return ResourceManager.GetString("Action_Copy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy and Open.
/// </summary>
public static string Action_CopyAndOpen {
get {
return ResourceManager.GetString("Action_CopyAndOpen", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy as Bitmap.
/// </summary>
public static string Action_CopyAsBitmap {
get {
return ResourceManager.GetString("Action_CopyAsBitmap", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy Details.
/// </summary>
public static string Action_CopyDetails {
get {
return ResourceManager.GetString("Action_CopyDetails", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy Trigger Words.
/// </summary>
public static string Action_CopyTriggerWords {
get {
return ResourceManager.GetString("Action_CopyTriggerWords", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete.
/// </summary>
public static string Action_Delete {
get {
return ResourceManager.GetString("Action_Delete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable.
/// </summary>
public static string Action_Disable {
get {
return ResourceManager.GetString("Action_Disable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disconnect.
/// </summary>
public static string Action_Disconnect {
get {
return ResourceManager.GetString("Action_Disconnect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Downgrade.
/// </summary>
public static string Action_Downgrade {
get {
return ResourceManager.GetString("Action_Downgrade", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Download.
/// </summary>
public static string Action_Download {
get {
return ResourceManager.GetString("Action_Download", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Edit.
/// </summary>
public static string Action_Edit {
get {
return ResourceManager.GetString("Action_Edit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable.
/// </summary>
public static string Action_Enable {
get {
return ResourceManager.GetString("Action_Enable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exit Application.
/// </summary>
public static string Action_ExitApplication {
get {
return ResourceManager.GetString("Action_ExitApplication", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Go to Settings.
/// </summary>
public static string Action_GoToSettings {
get {
return ResourceManager.GetString("Action_GoToSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hide.
/// </summary>
public static string Action_Hide {
get {
return ResourceManager.GetString("Action_Hide", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import.
/// </summary>
public static string Action_Import {
get {
return ResourceManager.GetString("Action_Import", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Install.
/// </summary>
public static string Action_Install {
get {
return ResourceManager.GetString("Action_Install", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Install Now.
/// </summary>
public static string Action_InstallNow {
get {
return ResourceManager.GetString("Action_InstallNow", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Launch.
/// </summary>
public static string Action_Launch {
get {
return ResourceManager.GetString("Action_Launch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Login.
/// </summary>
public static string Action_Login {
get {
return ResourceManager.GetString("Action_Login", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Maybe Later.
/// </summary>
public static string Action_MaybeLater {
get {
return ResourceManager.GetString("Action_MaybeLater", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move to Trash.
/// </summary>
public static string Action_MoveToTrash {
get {
return ResourceManager.GetString("Action_MoveToTrash", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New.
/// </summary>
public static string Action_New {
get {
return ResourceManager.GetString("Action_New", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to OK.
/// </summary>
public static string Action_OK {
get {
return ResourceManager.GetString("Action_OK", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open on GitHub.
/// </summary>
public static string Action_OpenGithub {
get {
return ResourceManager.GetString("Action_OpenGithub", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open in Browser.
/// </summary>
public static string Action_OpenInBrowser {
get {
return ResourceManager.GetString("Action_OpenInBrowser", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open in Explorer.
/// </summary>
public static string Action_OpenInExplorer {
get {
return ResourceManager.GetString("Action_OpenInExplorer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open in Finder.
/// </summary>
public static string Action_OpenInFinder {
get {
return ResourceManager.GetString("Action_OpenInFinder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open in Image Viewer.
/// </summary>
public static string Action_OpenInViewer {
get {
return ResourceManager.GetString("Action_OpenInViewer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open on CivitAI.
/// </summary>
public static string Action_OpenOnCivitAi {
get {
return ResourceManager.GetString("Action_OpenOnCivitAi", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open on Hugging Face.
/// </summary>
public static string Action_OpenOnHuggingFace {
get {
return ResourceManager.GetString("Action_OpenOnHuggingFace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open on OpenArt.
/// </summary>
public static string Action_OpenOnOpenArt {
get {
return ResourceManager.GetString("Action_OpenOnOpenArt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open on OpenModelDB.
/// </summary>
public static string Action_OpenOnOpenModelDb {
get {
return ResourceManager.GetString("Action_OpenOnOpenModelDb", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open Project....
/// </summary>
public static string Action_OpenProjectEllipsis {
get {
return ResourceManager.GetString("Action_OpenProjectEllipsis", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open Web UI.
/// </summary>
public static string Action_OpenWebUI {
get {
return ResourceManager.GetString("Action_OpenWebUI", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview Preprocessor.
/// </summary>
public static string Action_PreviewPreprocessor {
get {
return ResourceManager.GetString("Action_PreviewPreprocessor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Quit.
/// </summary>
public static string Action_Quit {
get {
return ResourceManager.GetString("Action_Quit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Refresh.
/// </summary>
public static string Action_Refresh {
get {
return ResourceManager.GetString("Action_Refresh", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Relaunch.
/// </summary>
public static string Action_Relaunch {
get {
return ResourceManager.GetString("Action_Relaunch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Relaunch Later.
/// </summary>
public static string Action_RelaunchLater {
get {
return ResourceManager.GetString("Action_RelaunchLater", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remind Me Later.
/// </summary>
public static string Action_RemindMeLater {
get {
return ResourceManager.GetString("Action_RemindMeLater", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove.
/// </summary>
public static string Action_Remove {
get {
return ResourceManager.GetString("Action_Remove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rename.
/// </summary>
public static string Action_Rename {
get {
return ResourceManager.GetString("Action_Rename", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace Contents.
/// </summary>
public static string Action_ReplaceContents {
get {
return ResourceManager.GetString("Action_ReplaceContents", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restart.
/// </summary>
public static string Action_Restart {
get {
return ResourceManager.GetString("Action_Restart", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restore Default Layout.
/// </summary>
public static string Action_RestoreDefaultLayout {
get {
return ResourceManager.GetString("Action_RestoreDefaultLayout", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Retry.
/// </summary>
public static string Action_Retry {
get {
return ResourceManager.GetString("Action_Retry", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Save.
/// </summary>
public static string Action_Save {
get {
return ResourceManager.GetString("Action_Save", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Save As....
/// </summary>
public static string Action_SaveAsEllipsis {
get {
return ResourceManager.GetString("Action_SaveAsEllipsis", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search.
/// </summary>
public static string Action_Search {
get {
return ResourceManager.GetString("Action_Search", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select All.
/// </summary>
public static string Action_SelectAll {
get {
return ResourceManager.GetString("Action_SelectAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select Directory.
/// </summary>
public static string Action_SelectDirectory {
get {
return ResourceManager.GetString("Action_SelectDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select File.
/// </summary>
public static string Action_SelectFile {
get {
return ResourceManager.GetString("Action_SelectFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Send.
/// </summary>
public static string Action_Send {
get {
return ResourceManager.GetString("Action_Send", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Send Input.
/// </summary>
public static string Action_SendInput {
get {
return ResourceManager.GetString("Action_SendInput", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Send to Inference.
/// </summary>
public static string Action_SendToInference {
get {
return ResourceManager.GetString("Action_SendToInference", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show in Explorer.
/// </summary>
public static string Action_ShowInExplorer {
get {
return ResourceManager.GetString("Action_ShowInExplorer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show Log in Explorer.
/// </summary>
public static string Action_ShowLogInExplorer {
get {
return ResourceManager.GetString("Action_ShowLogInExplorer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show Log in Finder.
/// </summary>
public static string Action_ShowLogInFinder {
get {
return ResourceManager.GetString("Action_ShowLogInFinder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Signup.
/// </summary>
public static string Action_Signup {
get {
return ResourceManager.GetString("Action_Signup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stop.
/// </summary>
public static string Action_Stop {
get {
return ResourceManager.GetString("Action_Stop", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Toggle Visibility.
/// </summary>
public static string Action_ToggleVisibility {
get {
return ResourceManager.GetString("Action_ToggleVisibility", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Uninstall.
/// </summary>
public static string Action_Uninstall {
get {
return ResourceManager.GetString("Action_Uninstall", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update.
/// </summary>
public static string Action_Update {
get {
return ResourceManager.GetString("Action_Update", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update Existing Metadata.
/// </summary>
public static string Action_UpdateExistingMetadata {
get {
return ResourceManager.GetString("Action_UpdateExistingMetadata", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Upgrade.
/// </summary>
public static string Action_Upgrade {
get {
return ResourceManager.GetString("Action_Upgrade", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to View Support Options.
/// </summary>
public static string Action_ViewSupportOptions {
get {
return ResourceManager.GetString("Action_ViewSupportOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Yes.
/// </summary>
public static string Action_Yes {
get {
return ResourceManager.GetString("Action_Yes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {
/// "packageName": "stable-diffusion-webui",
/// "packageVersion": "v1.10.0",
/// "isSuccess": true,
/// "type": "install",
/// "timestamp": "2024-09-04T02:14:04.1967404+00:00"
///}.
/// </summary>
public static string AnalyticsExample_InstallData {
get {
return ResourceManager.GetString("AnalyticsExample_InstallData", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enter a new name for '{0}'.
/// </summary>
public static string Description_RenamePackage {
get {
return ResourceManager.GetString("Description_RenamePackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please select a download location..
/// </summary>
public static string Error_PleaseSelectDownloadLocation {
get {
return ResourceManager.GetString("Error_PleaseSelectDownloadLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to About.
/// </summary>
public static string Label_About {
get {
return ResourceManager.GetString("Label_About", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Accounts.
/// </summary>
public static string Label_Accounts {
get {
return ResourceManager.GetString("Label_Accounts", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Account Settings.
/// </summary>
public static string Label_AccountSettings {
get {
return ResourceManager.GetString("Label_AccountSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This action cannot be undone..
/// </summary>
public static string Label_ActionCannotBeUndone {
get {
return ResourceManager.GetString("Label_ActionCannotBeUndone", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Addons.
/// </summary>
public static string Label_Addons {
get {
return ResourceManager.GetString("Label_Addons", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add to Existing Pack.
/// </summary>
public static string Label_AddToExistingPack {
get {
return ResourceManager.GetString("Label_AddToExistingPack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Stability Matrix to the Start Menu.
/// </summary>
public static string Label_AddToStartMenu {
get {
return ResourceManager.GetString("Label_AddToStartMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Uses the current app location, you can run this again if you move the app.
/// </summary>
public static string Label_AddToStartMenu_Details {
get {
return ResourceManager.GetString("Label_AddToStartMenu_Details", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Advanced Options.
/// </summary>
public static string Label_AdvancedOptions {
get {
return ResourceManager.GetString("Label_AdvancedOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All Versions.
/// </summary>
public static string Label_AllVersions {
get {
return ResourceManager.GetString("Label_AllVersions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Analytics.
/// </summary>
public static string Label_Analytics {
get {
return ResourceManager.GetString("Label_Analytics", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Another instance of Stability Matrix is already running. Please close it before starting a new one..
/// </summary>
public static string Label_AnotherInstanceAlreadyRunning {
get {
return ResourceManager.GetString("Label_AnotherInstanceAlreadyRunning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to API Key.
/// </summary>
public static string Label_ApiKey {
get {
return ResourceManager.GetString("Label_ApiKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to App Data.
/// </summary>
public static string Label_AppData {
get {
return ResourceManager.GetString("Label_AppData", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Appearance.
/// </summary>
public static string Label_Appearance {
get {
return ResourceManager.GetString("Label_Appearance", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to App Folders.
/// </summary>
public static string Label_AppFolders {
get {
return ResourceManager.GetString("Label_AppFolders", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure?.
/// </summary>
public static string Label_AreYouSure {
get {
return ResourceManager.GetString("Label_AreYouSure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete {0} images?.
/// </summary>
public static string Label_AreYouSureDeleteImages {
get {
return ResourceManager.GetString("Label_AreYouSureDeleteImages", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete {0} models?.
/// </summary>
public static string Label_AreYouSureDeleteModels {
get {
return ResourceManager.GetString("Label_AreYouSureDeleteModels", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Augmentation Level.
/// </summary>
public static string Label_AugmentationLevel {
get {
return ResourceManager.GetString("Label_AugmentationLevel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Author.
/// </summary>
public static string Label_Author {
get {
return ResourceManager.GetString("Label_Author", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Auto Completion.
/// </summary>
public static string Label_AutoCompletion {
get {
return ResourceManager.GetString("Label_AutoCompletion", resourceCulture);