forked from yk47g/gitkraken-chinese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.json
4022 lines (3798 loc) · 278 KB
/
strings.json
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
{
"languageOption": {
"label": "English (US)",
"value": "en-us"
},
"menuStrings": {
"ProductName": "<%= productName %>",
"AboutProduct": "About <%= productName %>",
"VersionNumber": "Version <%= version %> (<%= bitness %>-bit)",
"ViewReleaseNotes": "View Release Notes",
"CheckingForUpdates": "Checking for updates...",
"RestartAndInstallUpdate": "Restart and Install Update",
"CheckForUpdateWithLastCheckedTime": "Check for Update <%= updateLastCheckedTime %>",
"UpdateAvailableWithVersion": "Update available (<%= updateAvailableVersion %>)",
"UpdateAvailableDownloadDeb": "Download .deb file",
"UpdateAvailableDownloadRpm": "Download .rpm file",
"UpdateAvailableDownloadTargz": "Download .tar.gz file",
"UpdateDownloadedShowFile": "Update downloaded (show file)",
"UpdateErroredAtTime": "Update Errored <%= updateErrorTime %>",
"DownloadingUpdate": "Downloading Update...",
"DownloadUpdate" : "Download Update",
"Preferences": "Preferences...",
"&Preferences": "&Preferences...",
"Services": "Services",
"Hide": "Hide GitKraken",
"HideOthers": "Hide Others",
"ShowAll": "Show All",
"Quit": "Quit GitKraken",
"E&xit": "E&xit",
"File": "File",
"&File": "&File",
"NewTab": "New Tab",
"New&Tab": "New &Tab",
"CloneRepo": "Clone Repo",
"Clo&neRepo": "Clo&ne Repo",
"InitRepo": "Init Repo",
"&InitRepo": "&Init Repo",
"OpenRepo": "Open Repo",
"&OpenRepo": "&Open Repo",
"OpenRepoInExternalEditor": "Open Repo in External Editor",
"OpenRepoInNamedExternalEditor": "Open Repo in {0}",
"OpenRepoInExternal&Editor": "Open Repo in External &Editor",
"Open&Terminal": "Open External &Terminal",
"OpenTerminal": "Open External Terminal",
"OpenInFileManager": "Open in File Manager",
"ReopenClosedTab": "Reopen Closed Tab",
"ReopenClosed&Tab": "Reopen Closed &Tab",
"SignIntoDifferentAccount": "Sign into a Different Account",
"Edit": "Edit",
"&Edit": "&Edit",
"Undo": "Undo",
"&Undo": "&Undo",
"Redo": "Redo",
"&Redo": "&Redo",
"Cut": "Cut",
"&Cut": "&Cut",
"Copy": "Copy",
"C&opy": "C&opy",
"Paste": "Paste",
"&Paste": "&Paste",
"SelectAll": "Select All",
"Select&All": "Select &All",
"View": "View",
"&View": "&View",
"Reload": "Reload",
"&Reload": "&Reload",
"ToggleFullScreen": "Toggle Full Screen",
"Toggle&FullScreen": "Toggle &Full Screen",
"Developer": "Developer",
"SupportLogs": "Support Logs",
"RunTests": "Run Tests...",
"ToggleDeveloperTools": "Toggle Developer Tools",
"ToggleDeveloper&Tools": "Toggle Developer &Tools",
"ToggleMainProcessDeveloperTools": "Toggle Main Process Developer Tools",
"ToggleMainProcessDeveloper&Tools": "Toggle Main Process Developer &Tools",
"PrintPerformanceTimingsToTerminal": "Print Performance Timings to Terminal",
"Tabs": "Tabs",
"CloseTab": "Close Tab",
"SelectNextTab": "Select Next Tab",
"SelectPreviousTab": "Select Previous Tab",
"OpenTabsList": "Open Tabs List",
"SelectTab1": "Select Tab 1",
"SelectTab2": "Select Tab 2",
"SelectTab3": "Select Tab 3",
"SelectTab4": "Select Tab 4",
"SelectTab5": "Select Tab 5",
"SelectTab6": "Select Tab 6",
"SelectTab7": "Select Tab 7",
"SelectTab8": "Select Tab 8",
"SelectTab9": "Select Tab 9",
"Favorites": "Favorites",
"OpenFavorite1": "Open Favorite Repo 1",
"OpenFavorite2": "Open Favorite Repo 2",
"OpenFavorite3": "Open Favorite Repo 3",
"OpenFavorite4": "Open Favorite Repo 4",
"OpenFavorite5": "Open Favorite Repo 5",
"OpenFavorite6": "Open Favorite Repo 6",
"OpenFavorite7": "Open Favorite Repo 7",
"OpenFavorite8": "Open Favorite Repo 8",
"OpenFavorite9": "Open Favorite Repo 9",
"ShowDetailPanel": "Show Commit Details Panel",
"ShowLeftPanel": "Show Left Panel",
"ShowToolbar": "Show Toolbar",
"Window": "Window",
"Minimize": "Minimize",
"Zoom": "Zoom",
"Help": "Help",
"&Help": "&Help",
"ViewSupportDocs": "View Support Documentation",
"ViewErrorLogs": "View Error Logs",
"ViewPerformanceLogs": "View Performance Logs",
"ViewActivityLogs": "View Activity Logs",
"SendUsFeedback": "Send Us Feedback",
"GetSupport": "Get Support",
"KeyboardShortcuts": "Keyboard Shortcuts",
"OpenFuzzyFinder": "Open Command Palette",
"FollowUsOnTwitter": "Follow Us on Twitter"
},
"strings": {
"About-BuiltBy": "GitKraken is built by Axosoft in sunny Scottsdale, AZ",
"About-OpenSource": "It uses some fine open source projects:",
"About-Libgit2License": "GitKraken uses the libgit2 library via NodeGit under the GNU public license with a linking exception",
"About-TermsOfService": "Terms of Service",
"About-OpenSourceLicenses": "Dependent Open Source Licenses",
"About-AllRightsReserved": "All rights reserved",
"About-Version": "GitKraken Version {0}",
"Application": "Application",
"Bytes": "bytes",
"By": "{0} by ",
"Cli-TerminalPreviewButton": "CLI Preview",
"NoMatches": "No matches",
"NoFilterMatches": "No results matching filter",
"QuitGitKraken": "Quit GitKraken",
"Done": "Done",
"Or": "or",
"Repo-Close": "Close repository",
"Repo-Delete": "Delete repository",
"Repo-ClearFromRecentRepositories": "Clear {0} from recent repositories",
"Repo-Open": "Open repository",
"Repo-OpenInFileManager": "Open in file manager",
"Repo-OpenInDefaultTerminal": "Open in default external terminal",
"Repo-OpenInTerminalTab": "Open this repo in a Terminal Tab",
"Registration-ChangeEmail": "Sign into a different account",
"Registration-CheckStatus": "Check Status",
"Registration-PrivateRepoDetected": "This appears to be a private repository",
"Registration-PrivateRepoDetectedContent": "The free version of GitKraken does not support opening private or self-hosted repositories.",
"Registration-CreateAccount": "Create a GitKraken Account",
"Registration-CreatingAccount": "Creating Account...",
"Registration-DontWantAccount": "I don't want to create an account right now",
"Registration-EmailDefault": "(defaults to git configs user.email)",
"Registration-EmailAddress": "Email",
"Registration-EnterEmailAddress": "Enter email address",
"Registration-EnterName": "Enter name",
"Registration-SelfHostedLoginFailedDueToNoLicense": "Your account does not have an active GitKraken Self-Hosted license.",
"Registration-ForgotPassword": "I forgot my password",
"Registration-GoBackToSelfHostedConfiguration": "Change the URL of the GitKraken Self-Hosted server",
"Registration-GoingUnregistered": "You can use GitKraken for {0} days before creating or signing into an account.",
"Registration-LdapUsername": "Username",
"Registration-Name": "Name",
"Registration-NameAndEmailDefault": "(defaults to git configs user.email and user.name)",
"Registration-ServerConnectionError": "Could not connect to server.",
"Registration-SignInWithGitHub": "Sign in with GitHub",
"Registration-SignInWithGoogle": "Sign in with Google",
"Registration-SuccessfullyRegistered": "Email verified!",
"Registration-HaveNotRegistered": "You have not verified your email address yet",
"Registration-iHaveReadAndAgreeToThe": "I have read and agree to the ",
"Registration-iAgree": "I Agree",
"Registration-Password": "Password",
"Registration-ConfirmPassword": "Confirm Password",
"Registration-Register": "Register",
"Registration-ResendEmail": "Send Again",
"Registration-ResendingEmail": "Sending...",
"Registration-ShowMoreOptions": "Show more options",
"Registration-Success": "An email has been sent to {0}. Please verify your email within {1} days to continue using GitKraken.",
"Registration-Failed": "Could not connect to server",
"Registration-FailedExtra": "Please try again later.",
"Registration-FailedExtraDaysLeft": "Please try again within {0} days to continue using GitKraken.",
"Registration-EULA": "End User License Agreement",
"Registration-EULAAbbreviated": "EULA",
"Registration-EULAUpdateTitle": "End User License Agreement Update",
"Registration-EULAFirstTimeMessage": "Almost there! We just need to make sure you agree to our EULA.",
"Registration-EULAUpdateMessage": "The End User License Agreement has been updated. You must agree to the new version to continue using GitKraken.",
"Registration-EULALoadFailed": "Failed To Load End User License Agreement",
"Registration-PasswordIsGood": "That's a great password!",
"Registration-PasswordStrength0": "very weak",
"Registration-PasswordStrength1": "weak",
"Registration-PasswordStrength2": "moderate",
"Registration-PasswordStrength3": "strong",
"Registration-PasswordStrength4": "luxurious",
"Registration-PasswordStrengthPrefix": "Your password is ",
"Registration-PasswordTooShort": "Password must be at least {0} characters.",
"Registration-ProLicenseExpiredTitle": "License Expired",
"Registration-StudentLicenseExpiredTitle": "Student License Expired",
"Registration-ProLicenseExpiredBody1": "Your GitKraken license has expired. Please renew your subscription to continue using GitKraken.",
"Registration-StudentLicenseExpiredBody1-1": "Your GitHub Student license for GitKraken Pro has expired. You've got a few options:",
"Registration-StudentLicenseExpiredBody1-2": "If you're sure you still have student status with GitHub, you'll need to {0} again to verify your license.",
"Registration-StudentLicenseExpiredBody1-2Button": "sign in with GitHub",
"Registration-StudentLicenseExpiredBody1-3": "If you need to renew your student status with GitHub, {0}. You can use the free version in the meantime.",
"Registration-StudentLicenseExpiredBody1-3Button": "visit the GitHub Education site",
"Registration-StudentLicenseExpiredBody1-4": "If you're interested in a premium license, {0}.",
"Registration-StudentLicenseExpiredBody1-4Button": "view GitKraken plans",
"Registration-StudentLicenseExpiredBody1-5": "Otherwise, you can {0}.",
"Registration-StudentLicenseExpiredBody1-5Button": "switch to a Free license",
"Registration-ProLicenseExpiredBody2-1": "You are now using the free version of GitKraken. The ability to open private and self-hosted repos, the merge conflict editor, Profiles, and the GitHub Enterprise, GitLab Self-Managed, Bitbucket Server, and Azure DevOps integrations have been disabled.",
"Registration-ProLicenseExpiredBody2-2": "You can renew your subscription at any time from the main menu, or by visiting {0}.",
"Registration-StudentLicenseExpiredBody2-2": "You can subscribe at any time from the main menu, or by visiting {0}.",
"Registration-ProLicenseExpiredCancel": "Cancel Subscription",
"Registration-ProLicenseExpiredGoToShop": "Renew Subscription",
"Registration-UseGitKraken": "Use GitKraken",
"Registration-ValidateConfirmPassword": "Passwords must match.",
"Registration-ValidateField": "This field is required.",
"Registration-ValidateEmail": "Must use a valid email.",
"Registration-ValidateEULA": "You must agree to the EULA.",
"Registration-VerifyEmailTitle": "Please verify your email",
"Registration-VerifyEmailBody": "We haven't received verification from {0} yet. Please follow the link in the email sent to this address to continue using GitKraken.",
"Registration-CantFindEmail": "Can't find the email?",
"Registration-IncorrectEmail": "Incorrect account?",
"Registration-XDaysToActivate": "{0} Days to Activate",
"Registration-1DayToActivate": "1 Day to Activate",
"Registration-Login": "Sign in",
"Registration-LoggingIn": "Signing in...",
"Registration-CreateAccountTitle": "Create an Account",
"Registration-LoginTitle": "Welcome to GitKraken",
"Registration-SignInWithExistingGKAccount": "or sign in with an existing GitKraken account",
"Registration-GoToCreate": "Create one.",
"Registration-GoToLoginLeadin": "Already have an account? ",
"Registration-GoToLogin": "Sign in.",
"Registration-ManualInput": "Manually input the OAuth token",
"Registration-OrSeparatorLine": "or",
"Registration-SignInWithGitKraken": "Sign in with GitKraken",
"Registration-SignInWithOtherProvider": "Sign in with other provider",
"InitialCliGuiChoice-Title": "Which view would you like to start with?",
"InitialCliGuiChoice-Subtitle": "Either of these views can be accessed at any time by creating a new tab",
"InitialCliGuiChoice-CLI-Title": "Terminal Tab",
"InitialCliGuiChoice-CLI-Button": "Start with a Terminal Tab",
"InitialCliGuiChoice-CLI-Message": "A terminal-first experience, enhanced by the GitKraken CLI with features like autocomplete suggestions and repository visualizations that can be accessed via the",
"InitialCliGuiChoice-GUI-Title": "Repo Tab",
"InitialCliGuiChoice-GUI-Button": "Start with a Repo Tab",
"InitialCliGuiChoice-GUI-Message": "Clearly visualize the most helpful information about your repositories, with easy access to the commit graph, work in progress, pull requests, issues, teams and more.",
"Role-Admin": "Admin",
"Role-Billing": "Billing Contact",
"Role-Owner": "Owner",
"SelfHostedConfiguration-Title": "Configure GitKraken Self-Hosted",
"SelfHostedConfiguration-EnterHostname": "Please paste the URL provided on the GitKraken download page:",
"SelfHostedConfiguration-CouldNotConnect": "Could not connect to the server.",
"SelfHostedConfiguration-CouldNotParseURL": "Could not parse the given URL.",
"Status-Pending": "Pending",
"LicenseExpirationWarning-NDays": "License expires in {0} days",
"LicenseExpirationWarning-Tomorrow": "License expires in 1 day!",
"LicenseExpirationWarning-Today": "License expires in less than a day!",
"Standalone-LicenseConfigurationTitle": "Stand-Alone License",
"Standalone-LicenseInfoForActive": "Licensed to {0} for {1} users",
"Standalone-LicenseInfoForActiveExpiresSoon": "Licensed to {0} for {1} users. Expires in {2} days",
"Standalone-LicenseInfoExpiresTomorrow": "Licensed to {0} for {1} users. Expires in {2} day",
"Standalone-LicenseInfoExpiresToday": "Licensed to {0} for {1} users. Expires today",
"Standalone-LicenseInfoExpired": "Licensed to {0} for {1} users. Expired",
"Standalone-Unlicensed": "Unlicensed",
"Standalone-LicensedTo": "Licensed To",
"Standalone-NumberOfUsers": "# of Users",
"Standalone-Expires": "Expires",
"Standalone-DateExpired": "Expired {0}",
"Standalone-GitKrakenIsUnlicensed": "This copy of GitKraken is unlicensed.",
"Standalone-SavedLicenseIsInvalid": "The license on disk is invalid.",
"Standalone-AddAValidLicense": "Add a valid license file to continue.",
"Standalone-AddALicense": "Add a license file to continue.",
"Standalone-UpdateLicense": "Update License",
"Standalone-AddLicense": "Add License",
"Standalone-UpdatedLicenseWasExpired": "The license file you selected is expired.",
"Standalone-UpdatedLicenseFailedToUpdate": "Something went wrong when we tried to use the selected license.",
"Standalone-UpdatedLicenseWasInvalid": "The license file you selected was invalid.",
"Standalone-UpdatedLicenseWasNotFound": "The license file you chose was not found.",
"Standalone-BrowserForLicense": "Browse for GitKraken License",
"Standalone-BadSelectedLicense": "Update License Failed",
"Standalone-LicenseSuccessfullyUpdated": "License Successfully Updated",
"AnnotatedTag": "Annotated Tag",
"Apply": "Apply",
"Author": "Author",
"Branch": "Branch",
"branch": "branch",
"Close": "Close",
"Commit": "Commit",
"Create": "Create",
"DeletingWithEllipsis": "Deleting...",
"AuthoredLabel": "authored",
"CoauthorsLabel": "Co-authors:",
"CommitterLabel": "committed",
"CommitLabel": "commit:",
"ParentLabel": "parent:",
"CheckingOutBranch": "Checking out branch",
"ConnectingWithEllipsis": "Connecting...",
"DateAuthored": "Author Date",
"DiscardAllChanges": "Discard all changes",
"Filter": "filter",
"GeneratingWithEllipsis": "Generating...",
"LoadingDiffWithEllipsis": "Loading diff...",
"LoadingWithEllipsis": "Loading...",
"Local": "Local",
"Log": "Log",
"New": "New",
"Optional": "(optional)",
"Parent": "Parent",
"Parents": "Parents",
"Pop": "Pop",
"project": "project",
"Pull": "Pull",
"Push": "Push",
"Redo": "Redo",
"Repo": "Repo",
"Repository": "Repository",
"repository": "repository",
"Save": "Save",
"Selected": "Selected",
"DontSave": "Don't Save",
"ToggleHideLabel": "Hide",
"ToggleSoloLabel": "Solo",
"ShowAll": "Show All",
"SoloBranch": "Solo this branch",
"UnsoloAll": "Stop Soloing",
"SuccessWithBang": "Success!",
"Stage": "Stage",
"Staged": "Staged",
"Stash": "Stash",
"Tag": "Tag",
"Undo": "Undo",
"Uninitialized": "Uninitialized",
"Unstage": "Unstage",
"Unstaged": "Unstaged",
"Cli": "Terminal",
"UpstreamBranch": "Upstream branch",
"ViewAllRepositories": "View all repositories",
"ViewReleaseNotes": "View Release Notes",
"ViewSupportDocs": "View Support Documentation",
"WorkInProgressAbbr": "WIP",
"WorkInProgressOnBranchAbbr": "WIP on {0}",
"Zoom": "Zoom",
"EnterpriseLicense": "ENTERPRISE",
"IndividualLicense": "INDIVIDUAL",
"Pro": "PRO",
"FreeUserLicense": "FREE",
"Trial": "TRIAL",
"SelfHosted": "SELF-HOSTED",
"Standalone": "STAND-ALONE",
"FreeBadgeTooltip": "Licensed for use on open source projects. Click to see plans.",
"Stash-ApplyWithUncommittedChangesPrompt": "You have uncommitted changes. Are you sure you want to apply the stash on top of your changes?",
"StashMessage-Amend": "Auto stash before amend of \"{0}\"",
"StashMessage-Checkout": "Auto stash before checking out \"{0}\"",
"StashMessage-CherryPick": "Auto stash before cherry pick of \"{0}\"",
"StashMessage-Merge": "Auto stash before merge of \"{0}\" and \"{1}\"",
"StashMessage-Rebase": "Auto stash before rebase of \"{0}\"",
"StashMessage-Revert": "Auto stash before revert of \"{0}\"",
"Ignore": "Ignore",
"IgnoreFile": "Ignore '{0}'",
"IgnoreNFiles": "Ignore {0} files",
"AllFilesWithSameExtension": "All files with the extension '{0}'",
"AllFilesInFolder": "All files in '{0}/'",
"IgnoreAllFilesInFolder": "Ignore all files in '{0}/'",
"File-AlreadyExists": "File '{0}' already exists",
"File-Blame": "File Blame",
"File-CanOnlyEditText": "Only text files can be edited",
"File-CouldNotOpenInEditor": "Could not open file in editor",
"File-CouldNotCreate": "Could not create file",
"File-CouldNotCreateOutOfRepo": "Cannot create a file outside of the repository!",
"File-CouldNotDelete": "Could not delete file",
"File-Create": "Create File",
"File-Created": "Created '{0}'",
"File-Delete": "Delete file",
"File-DeleteInWorkDir": "Delete file in working directory",
"File-Deleted": "Deleted '{0}'",
"File-DoesNotExist": "File does not exist",
"File-ConfirmDeletePath": "Are you sure you want to delete '{0}'?",
"File-Open": "Open file",
"File-Edit": "Edit file",
"File-OpenInDefaultProgram": "Open file in default program",
"File-OpenInDefaultEditor": "Open in external editor",
"File-OpenInNamedEditor": "Open in {0}",
"File-OpenWithName": "Open {0}",
"File-Reset": "Discard changes",
"File-ShowFolderContents": "Open folder",
"File-ShowFolderContentsMac": "Open in Finder",
"File-ShowInFolder": "Show in folder",
"File-ShowInFolderMac": "Show in Finder",
"File-ShowInFolderMacWithName": "Show {0} in Finder",
"File-ShowInFolderWithName": "Show {0} in folder",
"File-StatusAdded": "ADDED",
"File-StatusDeleted": "DELETED",
"File-StatusRenamed": "RENAMED",
"File-StatusRenamedFrom": "from",
"File-StatusRenamedTo": "to",
"File-UnstageAndRemove": "Unstage and delete file",
"Folder-NewFile": "Create a file in this folder",
"Folder-MarkConflictedFilesAsResolved": "Mark all resolved",
"Folder-Open": "Open folder",
"Folder-ResetAll": "Reset folder",
"Folder-StageAll": "Stage folder",
"Folder-UnstageAll": "Unstage folder",
"Folder-DiscardAllChanges": "Discard all changes in folder",
"FileHistory": "File History",
"FileHistory-AuthorInfo": "Authored by {0} on {1}",
"FileHistory-CannotLinkToGraph": "This commit is not visible on the graph",
"FileHistory-CommitShaCopied": "Commit Sha copied!",
"FileHistory-DiffView": "Diff View",
"FileHistory-End": "End of History",
"FileHistory-FileView": "File View",
"FileHistory-LinkToGraph": "View {0} on graph",
"FileHistory-BlameButtonLabel": "Blame",
"FileHistory-ShowBlame": "Show blame details",
"FileHistory-UnknownAuthorName": "Unknown",
"FuzzyFinder-DefaultPlaceHolder": "Search for commands and actions (e.g., Open Repo)",
"FuzzyFinder-BlamePlaceholder": "Search for a file to view who did what (i.e. its blame)",
"FuzzyFinder-CheckoutPlaceholder": "Search for a branch to checkout",
"FuzzyFinder-CloseTab": "Close Tab",
"FuzzyFinder-CreateAnnotatedTag": "Create Annotated Tag",
"FuzzyFinder-CreateBranch": "Create Branch",
"FuzzyFinder-CreateFilePlaceholder": "Enter a new file name",
"FuzzyFinder-CreateTag": "Create Tag",
"FuzzyFinder-DeleteFilePlaceholder": "Search for a file to delete",
"FuzzyFinder-EditFilePlaceholder": "Search for a file to edit",
"FuzzyFinder-DevPlaceholder": "Order Chipotle",
"FuzzyFinder-HistoryPlaceholder": "Search for a file to view its history / blame",
"FuzzyFinder-OpenInDefaultEditor": "Open in External Editor",
"FuzzyFinder-OpenFilePlaceholder": "Search for a file to open",
"FuzzyFinder-OpenRepoPlaceholder": "Search for a repository to open",
"FuzzyFinder-RenameBranch": "Rename Branch",
"FuzzyFinder-SearchCommitsPlaceholder": "Search commits by message, sha, or author",
"FuzzyFinder-SwitchProfilePlaceholder": "Search for a profile to switch to",
"FuzzyFinder-ViewFilePlaceholder": "Search for a file to view",
"FuzzyFinder-BlameFilePrefix": "Blame",
"FuzzyFinder-CheckoutRefPrefix": "Checkout",
"FuzzyFinder-ConfigureGitFlow": "Configure Gitflow",
"FuzzyFinder-ConfigureGpgSigning": "Configure GPG Signing",
"FuzzyFinder-ConfigureLfs": "Configure LFS",
"FuzzyFinder-CreateFileKeywords": "create new file",
"FuzzyFinder-CreateFilePrefix": "Create File",
"FuzzyFinder-DeleteFilePrefix": "Delete File",
"FuzzyFinder-EditFilePrefix": "Edit File",
"FuzzyFinder-StartPullRequest": "Start Pull Request",
"FuzzyFinder-StartPullRequestKeywords": "New Create Pull Request",
"FuzzyFinder-DevPrefix": "Dev",
"FuzzyFinder-DiscardAllKeywords": "reset hard all",
"FuzzyFinder-FileHistoryPrefix": "History",
"FuzzyFinder-GitFlowPrefix": "Gitflow: ",
"FuzzyFinder-InitRepoKeywords": "initialize",
"FuzzyFinder-JoinTheLightOrDarkSide": "Join the {0} side",
"FuzzyFinder-JoinTheLightSlashDarkSide": "Join the Dark/Light side",
"FuzzyFinder-OpenGitFlowPanel": "Gitflow",
"FuzzyFinder-OpenFile": "Open File",
"FuzzyFinder-OpenFileInExternalCompareTool": "Open in External Diff/Merge Tool",
"FuzzyFinder-OpenInFileManagerKeywords": "folder explorer finder",
"FuzzyFinder-OpenInTerminalKeywords": "command line console",
"FuzzyFinder-OpenProjects": "Open Projects",
"FuzzyFinder-OpenRepoInExternalEditor": "Open Repo in External Editor",
"FuzzyFinder-OpenRepoPrefix": "Open Repo",
"FuzzyFinder-OpenShell": "Open a new Terminal Tab",
"FuzzyFinder-OpenShellKeywords": "command line shell terminal prompt",
"FuzzyFinder-RefPrefix": "Branch: ",
"FuzzyFinder-RepoPrefix": "Repo Management: ",
"FuzzyFinder-SearchCommits": "Search Commits",
"FuzzyFinder-Settings": "Settings",
"FuzzyFinder-SettingsKeywords": "preferences options",
"FuzzyFinder-StashPrefix": "Stash: ",
"FuzzyFinder-SwitchProfile": "Switch to Profile",
"FuzzyFinder-ToggleSyntaxHighlighting": "Toggle Syntax Highlighting",
"FuzzyFinder-ToggleTheme": "Toggle Theme",
"FuzzyFinder-ToggleToolbar": "Toggle Toolbar",
"FuzzyFinder-ToggleToolbarLabels": "Toggle Toolbar Labels",
"FuzzyFinder-ViewFile": "View File",
"FuzzyFinder-ViewErrorLogs": "View Error Logs",
"FuzzyFinder-ViewPerformanceLogs": "View Performance Logs",
"FuzzyFinder-ViewReleaseNotes": "View Release Notes",
"FuzzyFinder-ViewReleaseNotesKeywords": "patch notes changelog",
"FuzzyFinder-ViewWorkingDirectoryChanges": "View Working Directory Changes",
"FuzzyFinder-ViewWorkingDirectoryChangesKeywords": "changes wip workdir working",
"CommitSearch-ClearFilter": "Clear filter",
"CommitSearch-Placeholder": "find commit",
"CommitSearch-ResultsText": "{0} of {1}",
"CommitSearch-NoResults": "0 results",
"CommitSearch-NoAuthorsFound": "No authors found",
"CommitFilter-FilterPlaceholder": "filter the graph by team or author",
"CommitFilter-Authors": "authors",
"CommitFilter-Teams": "teams",
"GARLIC-RequestCancelledFromCredentialChange": "Request cancelled, credentials have changed for {0}",
"GitHook-ExitCode": "Git Hook exited with {0}",
"GitHook-ExitedSuccessfully": "{0}: Exited with code 0",
"GitHooks-ExitedSuccessfully": "Git Hooks exited with code 0: {0}",
"GitHooks-Failed": "Multiple Git Hooks have failed",
"GitHook-OpenFailureLogModal": "View Hook Output",
"GitHook-HookFailed": "{0} Failed",
"GitHook-PermissionDenied": "{0} isn't executable!",
"GitHook-PrePushDidNotRun": "Pre-push hook did not run",
"GitHook-PrePushDidNotRunReason": "{0} does not exist on {1}",
"GitHook-FailedToRun": "Git Hook failed to run.",
"System-OperationCancelled": "Operation was cancelled by the user",
"LeftPanel-CheckedOut": "Checked out",
"LeftPanel-ClearFilter": "Clear filter",
"LeftPanel-Collapse": "Collapse Panel",
"LeftPanel-FilterCommits": "Filter ({0} + {1} + f)",
"LeftPanel-Filtering": "Filtering",
"LeftPanel-Expand": "Expand Panel",
"LeftPanel-Hide": "Hide in the graph",
"LeftPanel-Show": "Show in the graph",
"LeftPanel-StopSoloing": "Stop soloing this branch",
"LeftPanelAddUserForkRow-YouHaveAFork": "You have a fork of this repo",
"LeftPanelAddUserForkRow-AddRemoteButtonLabel": "Add",
"LeftPanelAddUserForkRow-AddThisFork": "Add this fork as a remote",
"TextOperation-Cut": "Cut",
"TextOperation-Copy": "Copy",
"TextOperation-CopyFileContentsToClipboard": "Copy file contents to clipboard",
"TextOperation-CopySuccess": "Copied!",
"TextOperation-Paste": "Paste",
"TextOperation-Delete": "Delete",
"TextOperation-SelectAll": "Select All",
"ResizePanel": "Resize Panel",
"FastForwardBranchToBranch": "Fast forward branch {0} to branch {1}",
"FileMayStillHaveConflicts": "Conflicts may still exist in this file",
"MergedBranchToRef": "Merge branch '{0}' into {1}",
"MergedRemoteBranchToRef": "Merge remote-tracking branch '{0}' into {1}",
"MergedTagToRef": "Merge tag '{0}' into {1}",
"MergedBranchToMaster": "Merge branch '{0}'",
"MergedRemoteBranchToMaster": "Merge remote-tracking branch '{0}'",
"MergedTagToMaster": "Merge tag '{0}'",
"MergeConflictMessageSingular": "A file conflict was found when attempting to merge into {0}",
"MergeConflictMessagePlural": "{0} file conflicts were found when attempting to merge into {1}",
"MergingIntoNamed": "Merging into {0}",
"ExternalDiffTool": "external diff tool",
"ExternalMergeTool": "external merge tool",
"OpenInDiffTool": "Open in diff tool",
"OpenInMergeTool": "Open in merge tool",
"OpenIn": "Open in {0}",
"MarkAllResolved": "Mark all resolved",
"MarkNResolved": "Mark {0} resolved",
"MarkAsConflicted": "Mark conflicted",
"MarkAsResolved": "Mark resolved",
"MarkNConflicted": "Mark {0} conflicted",
"UnsupportedRebaseMessage": "An external application is performing a rebase on this repository",
"ViewAuthenticationSettings": "View settings",
"ViewExternalEditorSettings": "View external editor settings",
"ViewDiffToolSettings": "View diff tool settings",
"ViewMergeToolSettings": "View merge tool settings",
"ViewShPathSettings": "View Settings",
"ViewTerminalSettings": "View external terminal settings",
"DiscardSelectedLines": "Discard selected lines",
"DiscardThisHunk": "Discard Hunk",
"DiscardThisLine": "Discard this line",
"DiscardNChanges": "Discard {0} files",
"RefCreatedMessage": "{0}: {1} created @ {2}",
"StageAllChanges": "Stage all changes",
"StageNChanges": "Stage {0} files",
"StageSelectedLines": "Stage selected lines",
"StageThisFile": "Stage File",
"StageThisChange": "Stage this change",
"StageThisHunk": "Stage Hunk",
"StageThisLine": "Stage this line",
"UnstageAllChanges": "Unstage all changes",
"UnstageNChanges": "Unstage {0} files",
"UnstageSelectedLines": "Unstage selected lines",
"UnstageThisFile": "Unstage File",
"UnstageThisChange": "Unstage this change",
"UnstageThisHunk": "Unstage Hunk",
"UnstageThisLine": "Unstage this line",
"StageFilemodeChange": "Stage filemode change",
"UnstageFilemodeChange": "Unstage filemode change",
"WindowsFilemodeChangeWarning" : "Filemode changes may have been made for the index outside of GitKraken.",
"WindowsFilemodeChangeWarningConfigEnabled" : "You have filemode changes enabled in your git config! In Windows, the files in the working directory appear to have -x, so filemode changes show up here.",
"OKButtonLabel": "OK",
"CancelButtonLabel": "Cancel",
"YesButtonLabel": "Yes",
"NoButtonLabel": "No",
"ExitButtonLabel": "Exit",
"ExitPreferencesButtonLabel": "Exit Preferences",
"PreviousButtonLabel": "Previous",
"NextButtonLabel": "Next",
"BrowseButtonLabel": "Browse",
"SubmitButtonLabel": "Submit",
"GenerateButtonLabel": "Generate",
"SendMessageButtonLabel": "Send",
"LogInButtonLabel": "Log In",
"FinishSetupButtonLabel": "Finish",
"OpenNowButtonLabel": "Open Now",
"InitializeButtonLabel": "Initialize",
"DeleteButtonLabel": "Delete",
"DeleteAndCommitLabel": "Delete & Commit",
"DiscardUnstagedChangesButtonLabel": "Discard Unstaged Changes",
"UnstageAndRemoveButtonLabel": "Unstage & Delete",
"ResetAllButtonLabel": "Reset All",
"ResetFileButtonLabel": "Reset File",
"ResetFilesButtonLabel": "Reset Files",
"SaveAncesor": "Save Ancestor",
"SaveFileButtonLabel": "Save File",
"CommitAndMergeButtonLabel": "Commit and Merge",
"DropCommitButtonLabel": "Drop commit",
"DropCommitsButtonLabel": "Drop commits",
"AbortCherrypickButtonLabel": "Abort Cherry pick",
"AbortMergeButtonLabel": "Abort Merge",
"StartRebaseButtonLabel": "Yes, Start Rebase",
"ContinueRebaseButtonLabel": "Continue Rebase",
"AbortRebaseButtonLabel": "Abort Rebase",
"CommitRevertLabel": "Commit Revert",
"SkipCommitButtonLabel": "Skip Commit",
"CommitButtonLabelStageFiles": "Stage files/changes to commit",
"CommitButtonLabelAddMessage": "Type a message to commit",
"CommitButtonLabelPlural": "Commit changes to {0} files",
"CommitButtonLabelSingular": "Commit changes to 1 file",
"ForcePushButtonLabel": "Force Push",
"ProvideFeedbackButtonLabel": "Feedback",
"LinuxUpdate-StatusBar-AvailableStatus": "Update available ({0})",
"LinuxUpdate-Notification-AvailableStatus": "Download update",
"LinuxUpdate-CheckingForUpdates": "Checking for updates...",
"LinuxUpdate-DownloadDebUpdateButtonLabel": ".deb",
"LinuxUpdate-DownloadRpmUpdateButtonLabel": ".rpm",
"LinuxUpdate-DownloadTarGzUpdateButtonLabel": ".tar.gz",
"LinuxUpdate-Downloaded": "Completed downloading {0}",
"LinuxUpdate-Downloading": "Downloading {0}...",
"LinuxUpdate-FailedTryAgain": "Update Failed. Try Again.",
"LinuxUpdate-ShowDownloadedUpdateButtonLabel": "Update Downloaded (Show File)",
"LinuxUpdate-SomethingWentWrong": "Something went wrong when downloading the update",
"LinuxUpdate-TryAgain": "Try Again",
"LinuxUpdate-DownloadFromGitKraken": "Download from GitKraken.com",
"AutoUpdate-StatusBar-RestartGitKrakenAndInstallUpdateButtonLabel": "Update Ready (Restart GitKraken)",
"AutoUpdate-Notification-RestartGitKrakenAndInstallUpdateButtonLabel": "Restart and update",
"AmendPreviousCommitButtonLabel": "Amend Previous Commit",
"AmendOrRewordPreviousCommitMessageButtonLabel": "Update Message",
"AmendPreviousCommitMessageTip": "Click to amend your commit message",
"RewordCommitMessageTooltip": "Click to reword your commit message",
"RewordCommitMessageHelperText": "Rewording this commit message will cause {0} commits to be rebased.",
"RewordInputTitle":"Reword commit message",
"CancelAmendPreviousCommitMessageButtonLabel": "Cancel Amend",
"CancelRewordPreviousCommitMessageButtonLabel": "Cancel Reword",
"RefreshTokenLabel": "Refresh Token",
"OptIntoAnalyticsButtonLabel": "Send Analytics Data to GitKraken",
"OptIntoAnalyticsCancelButtonLabel": "Don't Send Data",
"RetryWithoutOAuthLabel": "Retry without OAuth",
"UpgradeGitKrakenButtonLabel": "Upgrade GitKraken",
"UpgradeToProButtonLabel": "Upgrade to GitKraken Pro",
"UseFreeButtonLabel": "Continue using GitKraken Free",
"SeePlansButtonLabel": "See GitKraken Plans",
"StartTrialButtonLabel": "GitKraken Pro Free Trial",
"TrialStatus": "{0} of GitKraken Trial Remaining - Upgrade Now",
"ConfirmButtonLabel": "Confirm",
"RemoveButtonLabel": "Remove",
"Option-None": "<None>",
"Option-UseMergeTool": "<Use Merge Tool>",
"ActivityLogButtonTooltip": "Activity Logs",
"GitFlowButtonTooltip": "Gitflow",
"UndoValidButtonTooltip": "Undo {0}",
"RedoValidButtonTooltip": "Redo {0}",
"UndoCannotButtonTooltip": "Cannot undo",
"RedoCannotButtonTooltip": "Cannot redo",
"UndoInvalidButtonTooltip": "Cannot undo {0}. Only commit (with a parent), checkout, and some discard operations are currently supported.",
"RedoInvalidButtonTooltip": "No recent undo found to redo",
"RefreshButtonTooltip": "Refresh",
"SetAsDefaultOptionTooltip": "Set as default",
"DefaultOptionTooltip": "Default",
"PushButtonTooltip": "Push",
"PushToButtonTooltip": "Push to {0}",
"PullOptionsMessage": "Select a default pull/fetch operation to execute when clicking this button",
"PullOptions-FetchAll": "Fetch All",
"PullOptions-Merge": "Pull (fast-forward if possible)",
"PullOptions-FastForwardOnly": "Pull (fast-forward only)",
"PullOptions-NoFastForward": "Pull (no fast-forward)",
"PullOptions-Rebase": "Pull (rebase)",
"BranchButtonTooltip": "Branch",
"StashButtonTooltip": "Stash",
"ApplyStashButtonTooltip": "Apply Stash",
"PopStashButtonTooltip": "Pop Stash",
"OrderChipotleButtonTooltip": "Chipotle Thursday",
"SearchCommitsTooltip": "Search Commits ({0} + F)",
"CliButtonTooltip": "Open in Terminal Tab",
"FuzzyFinderButtonTooltip": "Command Palette ({0} + P)",
"Rebasing-LoadingOverlayLabel": "Rebasing",
"Rebasing-CommitLabel": "Rebasing commit {0} out of {1}",
"Rebasing-AutoStashLabel": "Stashing uncommitted changes",
"Rebasing-PoppingAutoStashLabel": "Popping auto stashed changes",
"ReflogAction": "Action with reflog message \"{0}\"",
"ReflogActionCommit": "Commit \"{0}\"",
"ReflogActionCommitAmend": "Commit amend \"{0}\"",
"ReflogActionCheckout": "Checkout from \"{0}\" to \"{1}\"",
"ReflogActionReset": "Reset to \"{0}\"",
"ReflogActionSaveOne": "Discard \"{0}\"",
"ReflogActionSaveMany": "Discard \"{0}\" and {1} other file(s)",
"ReflogActionSaveUnknown": "Discard",
"ReflogActionDeleteBranchTracking": "Delete branch \"{0}\" tracking \"{1}\"",
"ReflogActionDeleteBranch": "Delete branch \"{0}\"",
"ReflogActionRemoveRemote": "Remove remote \"{0}\"",
"ConflictsHeader-Into": "into",
"ConflictsHeader-Merging": "Merging",
"ConflictsHeader-Onto": "onto",
"ConflictsHeader-Rebasing": "Rebasing",
"ContextMenu-AddToDictionary": "Add to Dictionary",
"ContextMenu-AmendOrRewordCommitMessage": "Edit commit message",
"ContextMenu-AnnotateTag": "Annotate {0}",
"ContextMenu-CheckoutBranch": "Checkout {0}",
"ContextMenu-CheckoutCommit": "Checkout this commit",
"ContextMenu-CherrypickCommit": "Cherry pick commit",
"ContextMenu-CreateAnnotatedTag": "Create annotated tag here",
"ContextMenu-CloseTab": "Close tab",
"ContextMenu-CloseOtherTabs": "Close other tabs",
"ContextMenu-CloseTabsRight": "Close tabs to the right",
"ContextMenu-CommitNotInGraph": "Can't jump to commit in graph, because it's not visible.",
"ContextMenu-Copy": "&Copy",
"ContextMenu-CopyBranchName": "Copy branch name",
"ContextMenu-CopyDeepLinkFailed": "Failed to copy deep link",
"ContextMenu-CopyDeepLinkFailedMissingInfo": "No commit sha, branch name or tag name found.",
"ContextMenu-CopyDeepLinkFailedNoFirstCommitSha": "No first commit sha found for the repo.",
"ContextMenu-CopyDeepLinkFailedNoRemoteUrl": "No remote url could be found.",
"ContextMenu-CopyDeepLinkForBranch": "Copy link to branch: {0}",
"ContextMenu-CopyDeepLinkForCommit": "Copy link to this commit",
"ContextMenu-CopyDeepLinkForCommitOnRemote": "Copy link to this commit on remote: {0}",
"ContextMenu-CopyDeepLinkForRemote": "Copy link to remote: {0}",
"ContextMenu-CopyDeepLinkForTag": "Copy link to this tag",
"ContextMenu-CopyDeepLinkForTagOnRemote": "Copy link to this tag on remote: {0}",
"ContextMenu-CopyDeepLinkOnRemote": "on remote: {0}",
"ContextMenu-OpenGijLinkFailed": "Failed to open Jira link",
"ContextMenu-OpenGijLinkFailedMissingInfo": "No commit sha found.",
"ContextMenu-OpenGijLinkFailedNoFirstCommitSha": "No first commit sha found for the repo.",
"ContextMenu-OpenGijLinkFailedMissingResource": "Please select a Jira project first.",
"ContextMenu-OpenGijLinkForBranch": "Open Jira to branch: {0}",
"ContextMenu-OpenGijLinkForCommit": "Open Jira to this commit",
"ContextMenu-OpenGijLinkForCommitFileDiff": "Open Jira to this file diff",
"ContextMenu-OpenGijLinkForCommitFileDiffOnInstance": "Open Jira to this file diff on instance: {0}",
"ContextMenu-OpenGijLinkForCommitOnInstance": "Open Jira to this commit on instance: {0}",
"ContextMenu-OpenGijLinkForTag": "Open Jira to this tag",
"ContextMenu-CopyFilePath": "Copy file path",
"ContextMenu-CopyCommitSha": "Copy commit sha",
"ContextMenu-CopyTagName": "Copy tag name",
"ContextMenu-CreateBranchHere": "Create branch here",
"ContextMenu-CreateTagHere": "Create tag here",
"ContextMenu-Cut": "Cut",
"ContextMenu-DeleteLocalAndRemoteBranches": "Delete {0} and {1}",
"ContextMenu-DeleteAll": "Delete all \"{0}\" branches (local && remote)",
"ContextMenu-DeleteBranch": "Delete {0}",
"ContextMenu-Delete1BranchInFolder": "Delete 1 branch in folder \"{0}\"",
"ContextMenu-DeleteNBranchesInFolder": "Delete {0} branches in folder \"{1}\"",
"ContextMenu-DeleteNLocalBranches": "Delete {0} local branches",
"ContextMenu-DeleteNStashes": "Delete {0} stashes",
"ContextMenu-DeleteProjectGroup": "Remove from list",
"ContextMenu-DeleteTagXLocally": "Delete {0} locally",
"ContextMenu-DeleteTagFromRemote": "Delete tag from remote",
"ContextMenu-DeleteTagXFromRemoteY": "Delete {0} from {1}",
"ContextMenu-DeleteTagXFromAllRemotes": "Delete {0} from all remotes",
"ContextMenu-DropCommit": "Drop commit",
"ContextMenu-DropCommits": "Drop {0} commits",
"ContextMenu-EditProjectGroup": "Edit label",
"ContextMenu-EditRemote": "Edit {0}",
"ContextMenu-FastForward": "Fast-forward {0} to {1}",
"ContextMenu-FavoriteRepository": "Favorite repository",
"ContextMenu-FetchRemote": "Fetch {0}",
"ContextMenu-ForkRemoteOnService": "Fork {0} ({1}) on {2}",
"ContextMenu-GitHubActionDelete": "Delete Workflow",
"ContextMenu-GitHubActionEdit": "Edit Workflow",
"ContextMenu-GoToParentCommit": "Jump to commit in graph",
"ContextMenu-HideAllStashes": "Hide all stashes",
"ContextMenu-HideAllTags": "Hide all tags",
"ContextMenu-HideNStashes": "Hide {0} stashes",
"ContextMenu-HideNLocalBranches": "Hide {0} branches",
"ContextMenu-IssueCheckoutBranchFrom": "Checkout branch from {0}",
"ContextMenu-IssueCreateBranchGitFlowFeature": "Gitflow: create feature branch",
"ContextMenu-IssueCreateBranchGitFlowHotfix": "Gitflow: create hotfix branch",
"ContextMenu-IssueCreateBranchGitFlowRelease": "Gitflow: create release branch",
"ContextMenu-IssueCopyCardLink": "Copy card link",
"ContextMenu-IssueCopyIssueLink": "Copy issue link",
"ContextMenu-IssueViewIssueInGitHub": "View issue in GitHub",
"ContextMenu-IssueViewIssueInGitHubEnterprise": "View issue in GitHub Enterprise",
"ContextMenu-IssueViewIssueInGitLab": "View issue in GitLab",
"ContextMenu-IssueViewCardInGKBoards": "View card in GitKraken Boards",
"ContextMenu-IssueViewCardInTrello": "View card in Trello",
"ContextMenu-IssueViewIssueInGitlab": "View issue in Gitlab",
"ContextMenu-IssueViewIssueInIssueTracker": "View issue in issue tracker",
"ContextMenu-IssueViewIssueInJira": "View issue in Jira",
"ContextMenu-IssueViewCardX": "View card {0}",
"ContextMenu-IssueViewIssueX": "View issue {0}",
"ContextMenu-IssueViewCardXInBrowser": "View card {0} in browser",
"ContextMenu-IssueViewIssueXInBrowser": "View issue {0} in browser",
"ContextMenu-IssueTrackerFilterRemoveFilter": "Remove this filter",
"ContextMenu-IssueTrackerFilterEditFilter": "Edit this filter",
"ContextMenu-IssueTrackerFilterMoveDown": "Move this filter down",
"ContextMenu-IssueTrackerFilterMoveUp": "Move this filter up",
"ContextMenu-MergeBranchIntoBranch": "Merge {0} into {1}",
"ContextMenu-MoveCommitDown": "Move commit down",
"ContextMenu-MoveCommitUp": "Move commit up",
"ContextMenu-MoveXCommitsDown": "Move {0} commits down",
"ContextMenu-MoveXCommitsUp": "Move {0} commits up",
"ContextMenu-Paste": "Paste",
"ContextMenu-PickCommit": "Pick commit",
"ContextMenu-PushAndStartPullRequestToRef": "Push {0} and start a pull request to {1}",
"ContextMenu-PushAndStartPullRequest": "Push {0} and start a pull request",
"ContextMenu-PushTagToRemote": "Push tag to remote",
"ContextMenu-PushXToEllipses": "Push {0} to...",
"ContextMenu-PushXToAllRemotes": "Push {0} to all remotes",
"ContextMenu-PushXToY": "Push {0} to {1}",
"ContextMenu-RebaseBranchOntoBranch": "Rebase {0} onto {1}",
"ContextMenu-RebaseBranchOntoBranchInteractively": "Interactive Rebase {0} onto {1}",
"ContextMenu-RebaseXChildrenOfShaInteractively": "Interactive Rebase {0} children of {1}",
"ContextMenu-RemoveRemote": "Remove {0}",
"ContextMenu-RenameBranch": "Rename {0}",
"ContextMenu-ReopenClosedTab": "Reopen Closed Tab",
"ContextMenu-ResetBranchToThisCommit": "Reset {0} to this commit",
"ContextMenu-ResetSoftWithHint": "Soft - keep all changes",
"ContextMenu-ResetMixedWithHint": "Mixed - keep working copy but reset index",
"ContextMenu-ResetHardWithHint": "Hard - discard all changes",
"ContextMenu-RevertCommit": "Revert commit",
"ContextMenu-RewordCommit": "Reword commit",
"ContextMenu-SelectAll": "Select &All",
"ContextMenu-SetUpstream": "Set Upstream",
"ContextMenu-ShowAllStashes": "Show all stashes",
"ContextMenu-ShowAllTags": "Show all tags",
"ContextMenu-ShowNLocalBranches": "Show {0} branches",
"ContextMenu-SoloNLocalBranches": "Solo {0} branches",
"ContextMenu-ShowNStashes": "Show {0} stashes",
"ContextMenu-SquashCommit": "Squash commit",
"ContextMenu-StartPullRequestFromY": "Start a pull request from {0}",
"ContextMenu-StartPullRequestToX": "Start a pull request to {0}",
"ContextMenu-StartPullRequestToXFromY": "Start a pull request to {0} from {1}",
"ContextMenu-StashApply": "Apply Stash",
"ContextMenu-StashDelete": "Delete Stash",
"ContextMenu-StashPop": "Pop Stash",
"ContextMenu-StopSoloingNLocalBranches": "Stop soloing {0} branches",
"ContextMenu-SquashXCommits": "Squash {0} commits",
"ContextMenu-UnfavoriteRepository": "Unfavorite repository",
"ContextMenu-ViewServiceRemoteInBrowser": "View {0} on {1}",
"LocalBranchDeletion-Complete": "Branch Deletion Complete",
"StashDeletion-Complete": "Stash Deletion Complete",
"StashDeletion-SuccessfullyDeletedNStashes": "Successfully deleted {0} out of {1} stashes.",
"Toolbar-CloseSubmodule": "Close Submodule",
"Toolbar-CloseRepository": "Close Repository",
"Toolbar-PushNotAvailableInDetachedHead": "Push is not available when in a detached HEAD state",
"Toolbar-PullMergeNotAvailableInDetachedHead": "Pull (fast-forward if possible) is not available when in a detached HEAD state",
"Toolbar-PullFastForwardOnlyNotAvailableInDetachedHead": "Pull (fast-forward only) is not available when in a detached HEAD state",
"Toolbar-PullRebaseNotAvailableInDetachedHead": "Pull (rebase) is not available when in a detached HEAD state",
"BreadCrumbs-FavoritesHeader": "Favorites",
"BreadCrumbs-ManageProjects": "Manage Projects",
"BreadCrumbs-OpenAProjectHintHeader": "Open a Project",
"BreadCrumbs-AddRepoToProjectHintHeader": "Add this repo to a Project",
"BreadCrumbs-ProjectsCount": "{0} projects",
"BreadCrumbs-RecentsHeader": "Recently opened",
"Profile-AddAProfile": "Add a profile",
"Profile-AddProfile": "Add Profile",
"Profile-AuthorEmail": "Author Email",
"Profile-AuthorEmail-Placeholder": "Enter the email you'll use when authoring commits",
"Profile-AuthorName": "Author Name",
"Profile-AuthorName-Placeholder": "Enter the name you'll use when authoring commits",
"Profile-ConfirmDelete": "Are you sure you want to {0} this profile?",
"Profile-CopySettingsFromCurrentProfile": "Copy settings from current profile",
"Profile-CreateAProfile": "Create A Profile",
"Profile-CreateProfile": "Create Profile",
"Profile-CurrentProfile": "Current profile",
"Profile-Delete": "Delete",
"Profile-DeleteLower": "delete",
"Profile-DeleteProfile": "Delete profile",
"Profile-DeleteProfileWarning": "This action cannot be undone",
"Profile-Description": "GitKraken uses profiles to store your application preferences as well as git config information. The preferences you set after installing are set as your default profile. Pro plans allow you to create additional profiles and quickly switch between them for different work environments.",
"Profile-Description-FreeAddendum": "You are on a free account. {0} to create multiple profiles.",
"Profile-Description-UpgradeLinkText": "Upgrade your plan",
"Profile-EditProfile": "Edit Profile",
"Profile-ExplainLocal": "This profile will only be accessible on this machine",
"Profile-ExplainSync": "\"Local\" profiles are only accessible on this machine. \"Synced\" profiles will sync with your account and be available on any machine.",
"Profile-ExplainSyncModal": "Sync a profile to access it when logged into your GitKraken account on any machine",
"Profile-FinishEditing": "Please finish editing your file before adding or changing profiles",
"Profile-Local": "Local",
"Profile-ManageAccount": "Manage Account",
"Profile-ManageProfiles": "Manage Profiles",
"Profile-MyProfiles": "My Profiles",
"Profile-Organization": "Organization",
"Profile-Preferences": "Preferences",
"Profile-ProfileName": "Profile Name",
"Profile-ProfileType": "Profile Type",
"Profile-ReferralRewards": "Referral Rewards",
"Profile-RequiresPro": "Adding or switching profiles requires Pro, click here to upgrade",
"Profile-SaveChanges": "Save changes",
"Profile-SelectIcon": "Select a profile icon",
"Profile-SwitchProfile": "Switch Profile",
"Profile-SwitchToThisProfile": "Switch to this profile",
"Profile-SyncChanges": "Keep my .gitconfig updated with my GitKraken Profile preferences",
"Profile-SyncChangesSub": "When checked, GitKraken will update your global .gitconfig to match GitKraken Preferences, including commit author name and email, and any GPG settings.",
"Profile-Synced": "Synced",
"Profile-Type": "Type",
"Profile-Unlock": "Unlock profile switching by upgrading to Pro",
"Profile-Unregistered": "Unregistered",
"ProfileAccountMenu-Account": "Account",
"ProfileAccountMenu-CommitSignature": "Commit signature",
"ProfileAccountMenu-ManageAccount": "Manage account",
"ProfileAccountMenu-ManageProfiles": "Manage profiles",
"ProfileAccountMenu-NoProfiles": "No Profiles",
"ProfileAccountMenu-NoProfileSelected": "No profile selected",
"ProfileAccountMenu-Organization": "Organization",
"ProfileAccountMenu-Profile": "Profile",
"ProfileAccountMenu-SignIntoDifferentAccount": "Sign into a different account",
"Profiles": "Profiles",
"RefBar-NavigateToBranch": "Navigate to branch",
"RefBar-GroupGitFlow": "GITFLOW",
"RefBar-GroupGitHubAction": "GITHUB ACTIONS",
"RefBar-GroupGitHub": "GITHUB ISSUES",
"RefBar-GroupGitHubEnterprise": "GITHUB ISSUES",
"RefBar-GroupGitLab": "GITLAB ISSUES",
"RefBar-GroupGitLabSelfManaged": "GITLAB ISSUES",
"RefBar-GroupGKBoards": "GITKRAKEN BOARDS",
"RefBar-GroupGKBoardsShort": "GK BOARDS",
"RefBar-GroupIssueTracker": "ISSUES",
"RefBar-GroupJira": "JIRA ISSUES",
"RefBar-GroupTeamVisibility": "TEAMS",
"RefBar-GroupTrello": "TRELLO",
"RefBar-GroupLocal": "LOCAL",
"RefBar-GroupRemote": "REMOTE",
"RefBar-GroupPullRequests": "PULL REQUESTS",
"RefBar-GroupStashes": "STASHES",
"RefBar-GroupSubmodules": "SUBMODULES",
"RefBar-GroupTags": "TAGS",
"RefBar-NAhead": "{0} ahead",
"RefBar-NBehind": "{0} behind",
"RefBar-NavigateToTag": "Navigate to tag",
"RefBar-StatusViewing": "Viewing",
"RefBar-StatusSoloing": "Soloing",
"RefBar-AddRemote": "Add a remote",
"RefBar-AddGitHubAction": "Add a GitHub Action",
"RefBar-OpenGitFlow": "Open Gitflow",
"RefBar-AddBranch": "Create a new branch",
"RefBar-AddSubmodule": "Add a new submodule",
"RefBar-AddTag": "Create a new tag",
"Refbar-BranchActions": "Branch actions",
"RefBar-TagActions": "Tag actions",
"Repo-SuccessfullyCreatedRepo": "Successfully created repo",
"PullRequest-SuccessfullyCreatePullRequest": "Successfully created pull request",
"ViewOnHostingService": "View on {0}",
"GitHubActionBar-Menu": "GitHub Action actions",
"PullRequestBar-Assignees": "Assignees",
"PullRequestBar-Reviewers": "Reviewers",
"PullRequestBar-Labels": "Labels",
"PullRequestBar-Opened": "Opened: {0}",
"PullRequestBar-Updated": "Updated: {0}",
"PullRequestBar-CreatePullRequest": "Create Pull Request",
"PullRequestBar-Menu": "Pull request actions",
"PullRequestBar-UnknownPullRequestHead": "Private/Deleted repository (access denied)",
"PullRequestBar-UnknownPullRequestOwnerLogin": "Unknown username (access denied)",