This repository was archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathResources.Designer.cs
More file actions
2363 lines (2100 loc) · 83.3 KB
/
Resources.Designer.cs
File metadata and controls
2363 lines (2100 loc) · 83.3 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.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace GitHub {
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", "16.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("GitHub.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.
/// </summary>
public static string AddedFileStatus {
get {
return ResourceManager.GetString("AddedFileStatus", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to added some commits.
/// </summary>
public static string AddedSomeCommits {
get {
return ResourceManager.GetString("AddedSomeCommits", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add review comment.
/// </summary>
public static string AddReviewComment {
get {
return ResourceManager.GetString("AddReviewComment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a single comment.
/// </summary>
public static string AddSingleComment {
get {
return ResourceManager.GetString("AddSingleComment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add your review.
/// </summary>
public static string AddYourReview {
get {
return ResourceManager.GetString("AddYourReview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to and others.
/// </summary>
public static string AndOthers {
get {
return ResourceManager.GetString("AndOthers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Approve.
/// </summary>
public static string Approve {
get {
return ResourceManager.GetString("Approve", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Approved.
/// </summary>
public static string Approved {
get {
return ResourceManager.GetString("Approved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assignee.
/// </summary>
public static string Assignee {
get {
return ResourceManager.GetString("Assignee", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid authentication code.
/// </summary>
public static string authenticationFailedLabelContent {
get {
return ResourceManager.GetString("authenticationFailedLabelContent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Try entering the code again or clicking the resend button to get a new authentication code..
/// </summary>
public static string authenticationFailedLabelMessage {
get {
return ResourceManager.GetString("authenticationFailedLabelMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Authentication code sent!.
/// </summary>
public static string authenticationSentLabelContent {
get {
return ResourceManager.GetString("authenticationSentLabelContent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If you do not receive the authentication code, contact support@github.com..
/// </summary>
public static string authenticationSentLabelMessage {
get {
return ResourceManager.GetString("authenticationSentLabelMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Author.
/// </summary>
public static string Author {
get {
return ResourceManager.GetString("Author", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Back.
/// </summary>
public static string Back {
get {
return ResourceManager.GetString("Back", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The GitHub extension is not available inside Blend.
/// </summary>
public static string BlendDialogText {
get {
return ResourceManager.GetString("BlendDialogText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Powerful collaboration, code review, and code management for open source and private projects..
/// </summary>
public static string BlurbText {
get {
return ResourceManager.GetString("BlurbText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select a containing folder for your new repository..
/// </summary>
public static string BrowseForDirectory {
get {
return ResourceManager.GetString("BrowseForDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse.
/// </summary>
public static string browsePathButtonContent {
get {
return ResourceManager.GetString("browsePathButtonContent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
public static string Cancel {
get {
return ResourceManager.GetString("Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
public static string CancelLink {
get {
return ResourceManager.GetString("CancelLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to cancel this review? You will lose all your pending comments..
/// </summary>
public static string CancelPendingReviewConfirmation {
get {
return ResourceManager.GetString("CancelPendingReviewConfirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel Review.
/// </summary>
public static string CancelPendingReviewConfirmationCaption {
get {
return ResourceManager.GetString("CancelPendingReviewConfirmationCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There is already a directory at this location, but it doesn't contain a repository..
/// </summary>
public static string CantFindARepositoryAtLocalPath {
get {
return ResourceManager.GetString("CantFindARepositoryAtLocalPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't find GitHub URL for repository.
/// </summary>
public static string CantFindGitHubUrlForRepository {
get {
return ResourceManager.GetString("CantFindGitHubUrlForRepository", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Changes ({0}).
/// </summary>
public static string ChangesCountFormat {
get {
return ResourceManager.GetString("ChangesCountFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The working file is different to the file at '{0}'. Please checkout the corresponding branch, pull request or commit..
/// </summary>
public static string ChangesInWorkingDirectoryMessage {
get {
return ResourceManager.GetString("ChangesInWorkingDirectoryMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Changes Requested.
/// </summary>
public static string ChangesRequested {
get {
return ResourceManager.GetString("ChangesRequested", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clone.
/// </summary>
public static string CloneLink {
get {
return ResourceManager.GetString("CloneLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clone a Repository.
/// </summary>
public static string CloneTitle {
get {
return ResourceManager.GetString("CloneTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close and comment.
/// </summary>
public static string CloseAndComment {
get {
return ResourceManager.GetString("CloseAndComment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close issue.
/// </summary>
public static string CloseIssue {
get {
return ResourceManager.GetString("CloseIssue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close pull request.
/// </summary>
public static string ClosePullRequest {
get {
return ResourceManager.GetString("ClosePullRequest", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comment.
/// </summary>
public static string Comment {
get {
return ResourceManager.GetString("Comment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Commented.
/// </summary>
public static string Commented {
get {
return ResourceManager.GetString("Commented", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comment only.
/// </summary>
public static string CommentOnly {
get {
return ResourceManager.GetString("CommentOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comments.
/// </summary>
public static string Comments {
get {
return ResourceManager.GetString("Comments", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} commits.
/// </summary>
public static string CommitCountFormat {
get {
return ResourceManager.GetString("CommitCountFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Compare File as Default Action.
/// </summary>
public static string CompareFileAsDefaultAction {
get {
return ResourceManager.GetString("CompareFileAsDefaultAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Continue your review.
/// </summary>
public static string ContinueYourReview {
get {
return ResourceManager.GetString("ContinueYourReview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not connect to github.com.
/// </summary>
public static string CouldNotConnectToGitHub {
get {
return ResourceManager.GetString("CouldNotConnectToGitHub", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not connect to github.com.
/// </summary>
public static string couldNotConnectToGitHubText {
get {
return ResourceManager.GetString("couldNotConnectToGitHubText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not connect to the server..
/// </summary>
public static string couldNotConnectToTheServerText {
get {
return ResourceManager.GetString("couldNotConnectToTheServerText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Couldn't find file corresponding to '{0}' in the repository. Please do a 'git fetch' or checkout the target pull request..
/// </summary>
public static string CouldntFindCorrespondingFile {
get {
return ResourceManager.GetString("CouldntFindCorrespondingFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Couldn't find Git.exe on PATH.
///
///Please install Git for Windows from:
///https://git-scm.com/download/win.
/// </summary>
public static string CouldntFindGitOnPath {
get {
return ResourceManager.GetString("CouldntFindGitOnPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create an account.
/// </summary>
public static string CreateAccountLink {
get {
return ResourceManager.GetString("CreateAccountLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to create a pull request.
/// </summary>
public static string CreateAPullRequest {
get {
return ResourceManager.GetString("CreateAPullRequest", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create a GitHub Gist.
/// </summary>
public static string CreateGistTitle {
get {
return ResourceManager.GetString("CreateGistTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create.
/// </summary>
public static string CreateLink {
get {
return ResourceManager.GetString("CreateLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create New.
/// </summary>
public static string CreateNew {
get {
return ResourceManager.GetString("CreateNew", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create pull request.
/// </summary>
public static string CreatePullRequest {
get {
return ResourceManager.GetString("CreatePullRequest", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create a {0} Repository.
/// </summary>
public static string CreateTitle {
get {
return ResourceManager.GetString("CreateTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0:N0} day ago.
/// </summary>
public static string day {
get {
return ResourceManager.GetString("day", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0:N0} days ago.
/// </summary>
public static string days {
get {
return ResourceManager.GetString("days", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to GistFromVisualStudio.cs.
/// </summary>
public static string DefaultGistFileName {
get {
return ResourceManager.GetString("DefaultGistFileName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete this comment?.
/// </summary>
public static string DeleteCommentConfirmation {
get {
return ResourceManager.GetString("DeleteCommentConfirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete Comment.
/// </summary>
public static string DeleteCommentConfirmationCaption {
get {
return ResourceManager.GetString("DeleteCommentConfirmationCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Description.
/// </summary>
public static string Description {
get {
return ResourceManager.GetString("Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Description (Optional).
/// </summary>
public static string DescriptionOptional {
get {
return ResourceManager.GetString("DescriptionOptional", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A file exists at the destination path..
/// </summary>
public static string DestinationAlreadyExists {
get {
return ResourceManager.GetString("DestinationAlreadyExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please open the repository '{0}' and try again.
/// </summary>
public static string DifferentRepositoryMessage {
get {
return ResourceManager.GetString("DifferentRepositoryMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Don’t have an account? .
/// </summary>
public static string dontHaveAnAccountText {
get {
return ResourceManager.GetString("dontHaveAnAccountText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Don’t have GitHub Enterprise? .
/// </summary>
public static string dontHaveGitHubEnterpriseText {
get {
return ResourceManager.GetString("dontHaveGitHubEnterpriseText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please check your internet connection and try again..
/// </summary>
public static string dotComConnectionFailedMessageMessage {
get {
return ResourceManager.GetString("dotComConnectionFailedMessageMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The host isn't available or is not a GitHub Enterprise server. Check the address and try again..
/// </summary>
public static string enterpriseConnectingFailedMessage {
get {
return ResourceManager.GetString("enterpriseConnectingFailedMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to GitHub Enterprise server address.
/// </summary>
public static string enterpriseUrlPromptText {
get {
return ResourceManager.GetString("enterpriseUrlPromptText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please enter an Enterprise URL.
/// </summary>
public static string EnterpriseUrlValidatorEmpty {
get {
return ResourceManager.GetString("EnterpriseUrlValidatorEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please enter a valid Enterprise URL.
/// </summary>
public static string EnterpriseUrlValidatorInvalid {
get {
return ResourceManager.GetString("EnterpriseUrlValidatorInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Not an Enterprise server. Please enter an Enterprise URL.
/// </summary>
public static string EnterpriseUrlValidatorNotAGitHubHost {
get {
return ResourceManager.GetString("EnterpriseUrlValidatorNotAGitHubHost", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not copy to the clipboard. Please try again..
/// </summary>
public static string Error_FailedToCopyToClipboard {
get {
return ResourceManager.GetString("Error_FailedToCopyToClipboard", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File Name.
/// </summary>
public static string fileNameText {
get {
return ResourceManager.GetString("fileNameText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filter branches.
/// </summary>
public static string filterBranchesText {
get {
return ResourceManager.GetString("filterBranchesText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filter by Author.
/// </summary>
public static string FilterByAuthor {
get {
return ResourceManager.GetString("FilterByAuthor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search repositories.
/// </summary>
public static string filterTextPromptText {
get {
return ResourceManager.GetString("filterTextPromptText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to (forgot your password?).
/// </summary>
public static string ForgotPasswordLink {
get {
return ResourceManager.GetString("ForgotPasswordLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to fork.
/// </summary>
public static string Fork {
get {
return ResourceManager.GetString("Fork", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fork.
/// </summary>
public static string ForkNavigationItemText {
get {
return ResourceManager.GetString("ForkNavigationItemText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fork Repository.
/// </summary>
public static string ForkRepository {
get {
return ResourceManager.GetString("ForkRepository", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fork Repository.
/// </summary>
public static string ForkRepositoryTitle {
get {
return ResourceManager.GetString("ForkRepositoryTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fork the repository.
/// </summary>
public static string ForkTheRepository {
get {
return ResourceManager.GetString("ForkTheRepository", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Get Started.
/// </summary>
public static string GetStartedText {
get {
return ResourceManager.GetString("GetStartedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Gist created.
/// </summary>
public static string gistCreatedMessage {
get {
return ResourceManager.GetString("gistCreatedMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to create gist.
/// </summary>
public static string gistCreationFailedMessage {
get {
return ResourceManager.GetString("gistCreationFailedMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connect….
/// </summary>
public static string GitHubInvitationSectionConnectLabel {
get {
return ResourceManager.GetString("GitHubInvitationSectionConnectLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Publish to GitHub.
/// </summary>
public static string GitHubPublishSectionTitle {
get {
return ResourceManager.GetString("GitHubPublishSectionTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Graphs.
/// </summary>
public static string GraphsNavigationItemText {
get {
return ResourceManager.GetString("GraphsNavigationItemText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0:N0} hour ago.
/// </summary>
public static string hour {
get {
return ResourceManager.GetString("hour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0:N0} hours ago.
/// </summary>
public static string hours {
get {
return ResourceManager.GetString("hours", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Git ignore.
/// </summary>
public static string ignoreTemplateListText {
get {
return ResourceManager.GetString("ignoreTemplateListText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to InProgress.
/// </summary>
public static string InProgress {
get {
return ResourceManager.GetString("InProgress", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to [invalid].
/// </summary>
public static string InvalidBranchName {
get {
return ResourceManager.GetString("InvalidBranchName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Issues.
/// </summary>
public static string IssuesNavigationItemText {
get {
return ResourceManager.GetString("IssuesNavigationItemText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to just now.
/// </summary>
public static string JustNow {
get {
return ResourceManager.GetString("JustNow", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Learn more.
/// </summary>
public static string learnMoreLink {
get {
return ResourceManager.GetString("learnMoreLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to License.
/// </summary>
public static string licenseListText {
get {
return ResourceManager.GetString("licenseListText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Link copied to clipboard.
/// </summary>
public static string LinkCopiedToClipboardMessage {
get {
return ResourceManager.GetString("LinkCopiedToClipboardMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Some or all repositories may not have loaded. Close the dialog and try again..
/// </summary>
public static string loadingFailedMessageContent {
get {
return ResourceManager.GetString("loadingFailedMessageContent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred while loading repositories.
/// </summary>
public static string loadingFailedMessageMessage {
get {
return ResourceManager.GetString("loadingFailedMessageMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Local branch up to date.
/// </summary>
public static string LocalBranchUpToDate {
get {
return ResourceManager.GetString("LocalBranchUpToDate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Local path.
/// </summary>
public static string localPathText {
get {
return ResourceManager.GetString("localPathText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A repository already exists at this location, but it doesn't have a remote named "origin"..
/// </summary>
public static string LocalRepositoryDoesntHaveARemoteOrigin {
get {
return ResourceManager.GetString("LocalRepositoryDoesntHaveARemoteOrigin", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A repository already exists at this location, but it has a remote of {0}..
/// </summary>
public static string LocalRepositoryHasARemoteOf {
get {
return ResourceManager.GetString("LocalRepositoryHasARemoteOf", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Make sure to use your password and not a Personal Access token to sign in..
/// </summary>
public static string LoginFailedForbiddenMessage {
get {
return ResourceManager.GetString("LoginFailedForbiddenMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check your username and password, then try again.
/// </summary>
public static string LoginFailedMessage {
get {
return ResourceManager.GetString("LoginFailedMessage", resourceCulture);
}
}