forked from rogeraabbccdd/GitKraken-zh-tw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.json
2344 lines (2344 loc) · 146 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": "Chinese - Taiwan",
"value": "zh-tw"
},
"menuStrings": {
"ProductName": "<%= productName %>",
"AboutProduct": "關於 <%= productName %>",
"VersionNumber": "版本 <%= version %> (<%= bitness %>-bit)",
"ViewReleaseNotes": "查看版本資訊",
"CheckingForUpdates": "正在檢查更新...",
"RestartAndInstallUpdate": "重新啟動並安裝更新",
"CheckForUpdateWithLastCheckedTime": "檢查更新 <%= updateLastCheckedTime %>",
"UpdateAvailableWithVersion": "可用更新 (<%= updateAvailableVersion %>)",
"UpdateAvailableDownloadDeb": "下載 .deb 檔",
"UpdateAvailableDownloadRpm": "下載 .rpm 檔",
"UpdateAvailableDownloadTargz": "下載 .tar.gz 檔",
"UpdateDownloadedShowFile": "已下載更新 (檢視檔案)",
"UpdateErroredAtTime": "更新錯誤 <%= updateErrorTime %>",
"DownloadingUpdate": "正在下載更新...",
"DownloadUpdate": "下載更新",
"Preferences": "喜好設定...",
"&Preferences": "喜好設定(&P)...",
"Services": "服務",
"Hide": "隱藏 GitKraken",
"HideOthers": "隱藏其他",
"ShowAll": "顯示全部",
"Quit": "結束 GitKraken",
"E&xit": "結束 (&E)",
"File": "檔案",
"&File": "檔案 (&F)",
"NewTab": "開新分頁",
"New&Tab": "開新分頁 (&T)",
"CloneRepo": "複製儲存庫",
"Clo&neRepo": "複製儲存庫 (&N)",
"InitRepo": "初始化儲存庫",
"&InitRepo": "初始化儲存庫 (&I)",
"OpenRepo": "開啟儲存庫",
"&OpenRepo": "開啟儲存庫 (&O)",
"OpenRepoInExternalEditor": "在外部編輯器開啟儲存庫",
"OpenRepoInNamedExternalEditor": "在 {0} 開啟儲存庫",
"OpenRepoInExternal&Editor": "在外部編輯器開啟儲存庫 (&E)",
"Open&Terminal": "在終端機開啟 (&T)",
"OpenTerminal": "在終端機開啟",
"OpenInFileManager": "在檔案總管開啟",
"ReopenClosedTab": "重新開啟已關閉的分頁",
"ReopenClosed&Tab": "重新開啟已關閉的分頁 (&T)",
"SignIntoDifferentAccount": "使用其他帳戶登入",
"Edit": "編輯",
"&Edit": "編輯 (&E)",
"Undo": "復原",
"&Undo": "復原 (&U)",
"Redo": "重做",
"&Redo": "重做 (&U)",
"Cut": "剪下",
"&Cut": "剪下 (&C)",
"Copy": "複製",
"C&opy": "複製 (&O)",
"Paste": "貼上",
"&Paste": "貼上 (&P)",
"SelectAll": "全選",
"Select&All": "全選 (&A)",
"View": "檢視",
"&View": "檢視 (&V)",
"Reload": "重新載入",
"&Reload": "重新載入 (&R)",
"ToggleFullScreen": "切換全螢幕",
"Toggle&FullScreen": "切換全螢幕 (&F)",
"Developer": "開發人員",
"SupportLogs": "幫助紀錄",
"RunTests": "執行測試...",
"RunSystemTests": "執行系統測試...",
"ToggleDeveloperTools": "切換開發人員工具",
"ToggleDeveloper&Tools": "切換開發人員工具 (&T)",
"PrintPerformanceTimingsToTerminal": "在終端機輸出效能時間點",
"Tabs": "分頁",
"CloseTab": "關閉分頁",
"SelectNextTab": "選擇下一個分頁",
"SelectPreviousTab": "選擇上一個分頁",
"SelectTab1": "選擇分頁 1",
"SelectTab2": "選擇分頁 2",
"SelectTab3": "選擇分頁 3",
"SelectTab4": "選擇分頁 4",
"SelectTab5": "選擇分頁 5",
"SelectTab6": "選擇分頁 6",
"SelectTab7": "選擇分頁 7",
"SelectTab8": "選擇分頁 8",
"SelectTab9": "選擇分頁 9",
"Favorites": "收藏的儲存庫",
"OpenFavorite1": "開啟收藏儲存庫 1",
"OpenFavorite2": "開啟收藏儲存庫 2",
"OpenFavorite3": "開啟收藏儲存庫 3",
"OpenFavorite4": "開啟收藏儲存庫 4",
"OpenFavorite5": "開啟收藏儲存庫 5",
"OpenFavorite6": "開啟收藏儲存庫 6",
"OpenFavorite7": "開啟收藏儲存庫 7",
"OpenFavorite8": "開啟收藏儲存庫 8",
"OpenFavorite9": "開啟收藏儲存庫 9",
"ShowDetailPanel": "顯示提交詳細面板",
"ShowLeftPanel": "顯示左側面板",
"ShowToolbar": "顯示工具列",
"Window": "視窗",
"Minimize": "最小化",
"Zoom": "縮放",
"Help": "幫助",
"&Help": "幫助 (&H)",
"ViewSupportDocs": "檢視幫助文件",
"ViewErrorLogs": "檢視錯誤紀錄",
"ViewPerformanceLogs": "檢視效能紀錄",
"ViewActivityLogs": "檢視活動紀錄",
"SendUsFeedback": "提供意見",
"GetSupport": "尋求支援",
"KeyboardShortcuts": "鍵盤快捷鍵",
"OpenFuzzyFinder": "開啟模糊搜尋器",
"FollowUsOnTwitter": "在 Twitter 追蹤我們"
},
"strings": {
"About-BuiltBy": "GitKraken 由 Axosoft 在陽光明媚的亞利桑納州斯科茨代爾製作",
"About-OpenSource": "它使用了一些優秀的開源項目:",
"About-Libgit2License": "GitKraken 在 GNU 通用公眾授權條款下與 GPL 連結例外通過 NodeGit 使用 libgit2 函式庫",
"About-TermsOfService": "服務條款",
"About-OpenSourceLicenses": "依賴開源授權",
"About-AllRightsReserved": "保留所有權利",
"About-Version": "GitKraken 版本 {0}",
"Application": "應用程式",
"Bytes": "bytes",
"By": "{0} by ",
"QuitGitKraken": "離開 GitKraken",
"Repo-Close": "關閉儲存庫",
"Repo-Delete": "刪除儲存庫",
"Repo-ClearFromRecentRepositories": "清除最近 {0} 個儲存庫",
"Repo-Open": "開啟儲存庫",
"Repo-OpenInFileManager": "在檔案總管開啟",
"Repo-OpenInTerminal": "在終端機開啟",
"Registration-ChangeEmail": "使用其他帳戶登入",
"Registration-CheckStatus": "檢查狀態",
"Registration-PrivateRepoDetected": "這似乎是一個私人儲存庫",
"Registration-PrivateRepoDetectedContent": "免費版的 GitKraken 不支援開啟私人儲存庫或自架儲存庫。",
"Registration-CreateAccount": "建立一個 GitKraken 帳戶",
"Registration-CreatingAccount": "正在建立帳戶...",
"Registration-DontWantAccount": "現在不要建立帳戶",
"Registration-EmailDefault": "(預設為 git configs 的 user.email)",
"Registration-EmailAddress": "電子信箱",
"Registration-EnterEmailAddress": "請輸入電子信箱",
"Registration-EnterName": "請輸入使用者名稱",
"Registration-SelfHostedLoginFailedDueToNoLicense": "您的帳戶沒有啟用的自架 GitKraken 授權。",
"Registration-ForgotPassword": "忘記密碼",
"Registration-GoBackToSelfHostedConfiguration": "將網址變更為自架 GitKraken 伺服器",
"Registration-GoingUnregistered": "在建立或登入帳戶前,您可以使用 GitKraken {0} 天。",
"Registration-LdapUsername": "使用者名稱",
"Registration-Name": "使用者名稱",
"Registration-NameAndEmailDefault": "(預設為 git configs 的 user.email 和 user.name)",
"Registration-ServerConnectionError": "無法連接伺服器。",
"Registration-SignInWithGitHub": "使用 GitHub 帳戶登入",
"Registration-SignInWithGoogle": "使用 Google 帳戶登入",
"Registration-SuccessfullyRegistered": "成功驗證信箱!",
"Registration-HaveNotRegistered": "您尚未驗證您的電子信箱",
"Registration-iHaveReadAndAgreeToThe": "我已閱讀並同意 ",
"Registration-iAgree": "我同意",
"Registration-Password": "密碼",
"Registration-ConfirmPassword": "確認密碼",
"Registration-Register": "註冊",
"Registration-ResendEmail": "重新傳送",
"Registration-ResendingEmail": "正在傳送...",
"Registration-ShowMoreOptions": "顯示更多選項",
"Registration-Success": "驗證信已傳送至 {0}。請在 {1} 內驗證您的電子信箱以繼續使用 GitKraken。",
"Registration-Failed": "無法連接至伺服器",
"Registration-FailedExtra": "請稍後再試。",
"Registration-FailedExtraDaysLeft": "請在 {0} 天內重試以繼續使用 GitKraken。",
"Registration-EULA": "用戶協議",
"Registration-EULAAbbreviated": "用戶協議",
"Registration-EULAUpdateTitle": "用戶協議更新",
"Registration-EULAFirstTimeMessage": "快要完成了! 我們只需要確認您同意我們的用戶協議。",
"Registration-EULAUpdateMessage": "用戶協議已更新。 您必須同意新版用戶協議才能繼續使用 GitKraken。",
"Registration-EULALoadFailed": "載入用戶協議失敗",
"Registration-PasswordIsGood": "這是一個很好的密碼!",
"Registration-PasswordStrength0": "非常弱",
"Registration-PasswordStrength1": "弱",
"Registration-PasswordStrength2": "中等",
"Registration-PasswordStrength3": "強",
"Registration-PasswordStrength4": "非常強",
"Registration-PasswordStrengthPrefix": "密碼強度:",
"Registration-PasswordTooShort": "密碼必須最少 {0} 個字。",
"Registration-ProLicenseExpiredTitle": "授權已過期",
"Registration-StudentLicenseExpiredTitle": "學生授權已過期",
"Registration-ProLicenseExpiredBody1": "您的 GitKraken 授權已過期。請續訂以繼續使用 GitKraken。",
"Registration-StudentLicenseExpiredBody1-1": "您的 GitHub 學生授權 for GitKraken Pro 已過期。您有幾種選擇:",
"Registration-StudentLicenseExpiredBody1-2": "如果您確定您仍有 GitHub 學生授權,您需要再次 {0} 以驗證您的授權。",
"Registration-StudentLicenseExpiredBody1-2Button": "使用 GitHub 登入",
"Registration-StudentLicenseExpiredBody1-3": "如果您需要更新您的 GitHub 學生授權,請 {0}。在此期間您可以使用免費版。",
"Registration-StudentLicenseExpiredBody1-3Button": "造訪 GitHub Education 網站",
"Registration-StudentLicenseExpiredBody1-4": "如果您對付費方案有興趣,{0}。",
"Registration-StudentLicenseExpiredBody1-4Button": "了解 GitKraken 方案",
"Registration-StudentLicenseExpiredBody1-5": "或者,您可以 {0}。",
"Registration-StudentLicenseExpiredBody1-5Button": "切換到免費授權",
"Registration-ProLicenseExpiredBody2-1": "您目前使用的是免費版 GitKraken。開啟私人儲存庫和自架儲存庫、衝突合併編輯器、git 使用者設定、企業版 GitHub、自架 GitLab、Bitbucket 伺服器和 Azure DevOps 整合等付費功能已停用",
"Registration-ProLicenseExpiredBody2-2": "您可以隨時從主選單續訂,或造訪 {0}。",
"Registration-StudentLicenseExpiredBody2-2": "您可以隨時從主選單訂閱,或造訪 {0}。",
"Registration-ProLicenseExpiredCancel": "取消訂閱",
"Registration-ProLicenseExpiredGoToShop": "續訂",
"Registration-UseGitKraken": "使用 GitKraken",
"Registration-ValidateConfirmPassword": "密碼必須相同。",
"Registration-ValidateField": "這是必填欄位。",
"Registration-ValidateEmail": "請輸入有效的電子信箱。",
"Registration-ValidateEULA": "您必須同意用戶協議。",
"Registration-VerifyEmailTitle": "請驗證您的電子信箱",
"Registration-VerifyEmailBody": "我們還沒有從 {0} 收到驗證。請通過驗證信中的連結完成驗證以繼續使用 GitKraken。",
"Registration-CantFindEmail": "無法找到電子信箱?",
"Registration-IncorrectEmail": "帳戶不正確?",
"Registration-XDaysToActivate": "啟用剩餘 {0} 天",
"Registration-1DayToActivate": "啟用剩餘 1 天",
"Registration-Login": "登入",
"Registration-LoggingIn": "正在登入...",
"Registration-CreateAccountTitle": "建立帳戶",
"Registration-LoginTitle": "歡迎使用 GitKraken",
"Registration-SignInWithExistingGKAccount": "或使用現有的 GitKraken 帳戶登入",
"Registration-GoToCreate": "建立",
"Registration-GoToLoginLeadin": "已經有帳號了嗎? ",
"Registration-GoToLogin": "登入",
"Registration-ManualInput": "手動輸入 OAuth 權杖",
"SelfHostedConfiguration-Title": "設定自架 GitKraken",
"SelfHostedConfiguration-EnterHostname": "請貼上 GitKraken 下載頁提供的連結:",
"SelfHostedConfiguration-CouldNotConnect": "無法連接伺服器。",
"SelfHostedConfiguration-CouldNotParseURL": "無法解析連結。",
"LicenseExpirationWarning-NDays": "授權將在 {0} 天後過期",
"LicenseExpirationWarning-Tomorrow": "授權將在 1 天後過期!",
"LicenseExpirationWarning-Today": "授權將在 1 天內過期!",
"Standalone-LicenseConfigurationTitle": "Stand-Alone 授權",
"Standalone-LicenseInfoForActive": "授權予 {0} 的 {1} 位使用者",
"Standalone-LicenseInfoForActiveExpiresSoon": "授權予 {0} 的 {1} 位使用者。{2} 天後過期",
"Standalone-LicenseInfoExpiresTomorrow": "授權予 {0} 的 {1} 位使用者。{2} 天後過期",
"Standalone-LicenseInfoExpiresToday": "授權予 {0} 的 {1} 位使用者。今天過期",
"Standalone-LicenseInfoExpired": "授權予 {0} 的 {1} 位使用者。已過期",
"Standalone-Unlicensed": "未授權",
"Standalone-LicensedTo": "授權予",
"Standalone-NumberOfUsers": "使用者數",
"Standalone-Expires": "過期",
"Standalone-DateExpired": "{0} 已過期",
"Standalone-GitKrakenIsUnlicensed": "這份 GitKraken 未經授權。",
"Standalone-SavedLicenseIsInvalid": "磁碟中的授權檔案無效。",
"Standalone-AddAValidLicense": "請加入有效的授權檔案以繼續。",
"Standalone-AddALicense": "請加入授權檔案以繼續。",
"Standalone-UpdateLicense": "更新授權",
"Standalone-AddLicense": "加入授權",
"Standalone-UpdatedLicenseWasExpired": "您選擇的授權檔案已過期。",
"Standalone-UpdatedLicenseFailedToUpdate": "使用選擇的授權檔案時發生錯誤。",
"Standalone-UpdatedLicenseWasInvalid": "您選擇的授權檔案無效。",
"Standalone-UpdatedLicenseWasNotFound": "找不到您選擇的授權檔案。",
"Standalone-BrowserForLicense": "瀏覽 GitKraken 授權",
"Standalone-BadSelectedLicense": "更新授權失敗",
"Standalone-LicenseSuccessfullyUpdated": "成功更新授權",
"AnnotatedTag": "已標註標籤",
"Apply": "套用",
"Author": "作者",
"Branch": "分支",
"branch": "分支",
"Close": "關閉",
"Commit": "認可",
"Create": "建立",
"DeletingWithEllipsis": "正在刪除...",
"AuthoredLabel": "創作於",
"CoauthorsLabel": "共同作者:",
"CommitterLabel": "已提交",
"CommitLabel": "提交:",
"ParentLabel": "父:",
"CheckingOutBranch": "簽出分支中...",
"ConnectingWithEllipsis": "連線中...",
"DateAuthored": "創作日期",
"DiscardAllChanges": "捨棄所有變更",
"Filter": "篩選",
"GeneratingWithEllipsis": "產生中...",
"LoadingDiffWithEllipsis": "載入差異中...",
"LoadingWithEllipsis": "載入中...",
"Local": "本機",
"Log": "紀錄",
"New": "新",
"Optional": "(選填)",
"Parent": "父",
"Parents": "父",
"Pop": "取回擱置",
"ParentRepo": "父儲存庫",
"Pull": "提取",
"Push": "推送",
"Redo": "重做",
"Repo": "儲存庫",
"Repository": "儲存庫",
"repository": "儲存庫",
"Save": "儲存",
"DontSave": "不要儲存",
"ToggleHideLabel": "隱藏",
"ToggleSoloLabel": "單獨顯示",
"ShowAll": "顯示全部",
"SoloBranch": "單獨顯示這個分支",
"UnsoloAll": "停止單獨顯示",
"SuccessWithBang": "成功!",
"Stage": "暫存",
"Staged": "已暫存",
"Stash": "擱置",
"Tag": "標記",
"Undo": "復原",
"Uninitialized": "未初始化",
"Unstage": "取消暫存",
"Unstaged": "未暫存",
"UpstreamBranch": "上游分支",
"ViewAllRepositories": "查看所有儲存庫",
"ViewReleaseNotes": "查看版本資訊",
"WorkInProgressAbbr": "處理中",
"WorkInProgressOnBranchAbbr": "{0} 處理中",
"Zoom": "放大",
"EnterpriseLicense": "ENTERPRISE",
"IndividualLicense": "INDIVIDUAL",
"Pro": "PRO",
"FreeUserLicense": "FREE",
"Trial": "TRIAL",
"SelfHosted": "SELF-HOSTED",
"Standalone": "STAND-ALONE",
"FreeBadgeTooltip": "授權使用於開源專案。 點擊查看方案",
"Stash-ApplyWithUncommittedChangesPrompt": "您有未提交的變更。您確定要套用擱置並取代變更嗎?",
"StashMessage-Amend": "在修改 \"{0}\" 前自動擱置",
"StashMessage-Checkout": "在簽出 \"{0}\" 前自動擱置",
"StashMessage-CherryPick": "在挑揀 \"{0}\" 前自動擱置",
"StashMessage-Merge": "在合併 \"{0}\" 和 \"{1}\" 前自動擱置",
"StashMessage-Rebase": "在變更 \"{0}\" 基底前自動擱置",
"StashMessage-Revert": "在還原 \"{0}\" 前自動擱置",
"Ignore": "忽略",
"IgnoreFile": "忽略 '{0}'",
"IgnoreNFiles": "忽略 {0} 個檔案",
"AllFilesWithSameExtension": "所有副檔名為 '{0}' 的檔案",
"AllFilesInFolder": "所有在 '{0}/' 內的檔案",
"IgnoreAllFilesInFolder": "忽略所有在 '{0}/' 內的檔案",
"File-AlreadyExists": "檔案 '{0}' 已存在",
"File-Blame": "檔案究責",
"File-CanOnlyEditText": "只能編輯文字文件",
"File-CouldNotOpenInEditor": "無法在編輯器開啟檔案",
"File-CouldNotCreate": "無法建立檔案",
"File-CouldNotCreateOutOfRepo": "無法在儲存庫外建立檔案!",
"File-CouldNotDelete": "無法刪除檔案",
"File-Create": "建立檔案",
"File-Created": "'{0}' 已建立",
"File-Delete": "刪除檔案",
"File-DeleteInWorkDir": "在工作目錄刪除檔案",
"File-Deleted": "已刪除 '{0}'",
"File-DoesNotExist": "檔案不存在",
"File-ConfirmDeletePath": "您確定要刪除 '{0}' 嗎?",
"File-Open": "開啟檔案",
"File-Edit": "編輯檔案",
"File-OpenInDefaultProgram": "在預設程式開啟",
"File-OpenInDefaultEditor": "在外部編輯器開啟檔案",
"File-OpenInNamedEditor": "在 {0} 開啟",
"File-OpenWithName": "開啟 {0}",
"File-Reset": "捨棄變更",
"File-ShowFolderContents": "開啟資料夾",
"File-ShowFolderContentsMac": "在 Finder 中開啟",
"File-ShowInFolder": "在資料夾中顯示",
"File-ShowInFolderMac": "在 Finder 中顯示",
"File-ShowInFolderMacWithName": "在 Finder 中顯示 {0}",
"File-ShowInFolderWithName": "在資料夾中顯示 {0}",
"File-StatusAdded": "已加入",
"File-StatusDeleted": "已刪除",
"File-StatusRenamed": "已重新命名",
"File-StatusRenamedFrom": "從",
"File-StatusRenamedTo": "到",
"File-UnstageAndRemove": "取消暫存並刪除檔案",
"Folder-NewFile": "在這個資料夾建立檔案",
"Folder-MarkConflictedFilesAsResolved": "全部標記為已解決",
"Folder-Open": "開啟資料夾",
"Folder-ResetAll": "重設資料夾",
"Folder-StageAll": "暫存資料夾",
"Folder-UnstageAll": "取消暫存資料夾",
"Folder-DiscardAllChanges": "捨棄資料夾所有變更",
"FileHistory": "檔案歷史",
"FileHistory-AuthorInfo": "由 {0} 在 {1}",
"FileHistory-CannotLinkToGraph": "這個提交不在圖表上顯示",
"FileHistory-CommitShaCopied": "已複製提交 SHA!",
"FileHistory-DiffView": "檢視差異",
"FileHistory-End": "檔案歷史結尾",
"FileHistory-FileView": "檢視檔案",
"FileHistory-LinkToGraph": "在圖表檢視 {0}",
"FileHistory-BlameButtonLabel": "究責",
"FileHistory-ShowBlame": "顯示究責詳細",
"FileHistory-UnknownAuthorName": "未知",
"FuzzyFinder-DefaultPlaceHolder": "搜尋指令和操作 (例如開啟儲存庫)",
"FuzzyFinder-BlamePlaceholder": "搜尋檔案看看誰做了什麼 (追責)",
"FuzzyFinder-CheckoutPlaceholder": "搜尋要簽出的分支",
"FuzzyFinder-CloseTab": "關閉分頁",
"FuzzyFinder-CreateAnnotatedTag": "建立標註標籤",
"FuzzyFinder-CreateBranch": "建立分支",
"FuzzyFinder-CreateFilePlaceholder": "輸入新檔案名",
"FuzzyFinder-CreateTag": "建立標籤",
"FuzzyFinder-DeleteFilePlaceholder": "搜尋要刪除的檔案",
"FuzzyFinder-EditFilePlaceholder": "搜尋要編輯的檔案",
"FuzzyFinder-DevPlaceholder": "訂購奇波雷墨西哥燒烤",
"FuzzyFinder-HistoryPlaceholder": "搜尋要 查看歷史/追責 的檔案",
"FuzzyFinder-OpenInDefaultEditor": "在外部編輯器開啟",
"FuzzyFinder-OpenFilePlaceholder": "搜尋要開啟的檔案",
"FuzzyFinder-OpenRepoPlaceholder": "搜尋要開啟的儲存庫",
"FuzzyFinder-RenameBranch": "重新命名分支",
"FuzzyFinder-SearchCommitsPlaceholder": "使用 訊息/SHA/作者 搜尋提交",
"FuzzyFinder-SwitchProfilePlaceholder": "搜尋要切換的設定檔",
"FuzzyFinder-ViewFilePlaceholder": "搜尋要檢視的檔案",
"FuzzyFinder-BlameFilePrefix": "究責",
"FuzzyFinder-CheckoutRefPrefix": "簽出",
"FuzzyFinder-ConfigureGitFlow": "設定 Gitflow",
"FuzzyFinder-ConfigureGpgSigning": "設定 GPG 認可簽署",
"FuzzyFinder-ConfigureLfs": "設定 LFS",
"FuzzyFinder-CreateFileKeywords": "create new file 新 建立 檔案",
"FuzzyFinder-CreateFilePrefix": "建立檔案",
"FuzzyFinder-DeleteFilePrefix": "刪除檔案",
"FuzzyFinder-EditFilePrefix": "編輯檔案",
"FuzzyFinder-StartPullRequest": "建立提取請求",
"FuzzyFinder-StartPullRequestKeywords": "New Create Pull Request 新 建立 提取請求",
"FuzzyFinder-DevPrefix": "開發",
"FuzzyFinder-DiscardAllKeywords": "reset hard all 重置 全部",
"FuzzyFinder-FileHistoryPrefix": "紀錄",
"FuzzyFinder-GitFlowPrefix": "Gitflow: ",
"FuzzyFinder-InitRepoKeywords": "initialize 初始化",
"FuzzyFinder-JoinTheLightOrDarkSide": "加入 {0} 側",
"FuzzyFinder-JoinTheLightSlashDarkSide": "加入 暗/亮 側",
"FuzzyFinder-OpenGitFlowPanel": "Gitflow",
"FuzzyFinder-OpenFile": "開啟檔案",
"FuzzyFinder-OpenFileInExternalCompareTool": "在外部 差異/合併 工具開啟",
"FuzzyFinder-OpenRepoInExternalEditor": "在外部編輯器開啟儲存庫",
"FuzzyFinder-OpenRepoPrefix": "開啟儲存庫",
"FuzzyFinder-OpenInFileManagerKeywords": "folder explorer finder 資料夾 檔案總管",
"FuzzyFinder-OpenInTerminalKeywords": "command line console 終端機 指令",
"FuzzyFinder-RefPrefix": "分支: ",
"FuzzyFinder-RepoPrefix": "管理儲存庫: ",
"FuzzyFinder-SearchCommits": "搜尋提交",
"FuzzyFinder-Settings": "設定",
"FuzzyFinder-SettingsKeywords": "preferences options 喜好 設定",
"FuzzyFinder-StashPrefix": "擱置: ",
"FuzzyFinder-SwitchProfile": "切換到設定檔",
"FuzzyFinder-ToggleSyntaxHighlighting": "開關語法醒目提示",
"FuzzyFinder-ToggleTheme": "切換主題",
"FuzzyFinder-ToggleToolbar": "開關工具列",
"FuzzyFinder-ToggleToolbarLabels": "開關工具列說明文字",
"FuzzyFinder-ViewFile": "檢視檔案",
"FuzzyFinder-ViewErrorLogs": "檢視錯誤紀錄",
"FuzzyFinder-ViewPerformanceLogs": "檢視效能紀錄",
"FuzzyFinder-ViewReleaseNotes": "檢視版本資訊",
"FuzzyFinder-ViewReleaseNotesKeywords": "patch notes changelog 版本 更新",
"FuzzyFinder-ViewWorkingDirectoryChanges": "檢視工作目錄變更",
"FuzzyFinder-ViewWorkingDirectoryChangesKeywords": "changes wip workdir working 變更 工作目錄 處理中",
"CommitSearch-Placeholder": "尋找提交",
"CommitSearch-ResultsText": "{1} 的 {0}",
"CommitSearch-NoResults": "沒有結果",
"GitHook-ExitCode": "Git 掛鉤退出代碼: {0}",
"GitHook-ExitedSuccessfully": "{0}: 掛鉤退出代碼 0",
"GitHooks-ExitedSuccessfully": "Git 掛鉤退出代碼 0: {0}",
"GitHooks-Failed": "Git 掛鉤失敗",
"GitHook-OpenFailureLogModal": "查看掛鉤輸出",
"GitHook-HookFailed": "{0} 失敗",
"GitHook-PermissionDenied": "{0} 沒有執行權限!",
"GitHook-PrePushDidNotRun": "預推送掛鉤未執行",
"GitHook-PrePushDidNotRunReason": "由於 {1},無法執行 {0}",
"GitHook-FailedToRun": "Git 掛鉤執行失敗。",
"System-OperationCancelled": "操作被使用者取消",
"LeftPanel-CheckedOut": "已簽出",
"LeftPanel-ClearFilter": "清空篩選",
"LeftPanel-Collapse": "摺疊面板",
"LeftPanel-FilterCommits": "篩選 ({0} + {1} + f)",
"LeftPanel-Filtering": "正在篩選",
"LeftPanel-Expand": "展開面板",
"LeftPanel-Hide": "在圖表中隱藏",
"LeftPanel-Show": "在圖表中顯示",
"LeftPanel-StopSoloing": "停止單獨顯示這個分支",
"LeftPanelAddUserForkRow-YouHaveAFork": "您有這個儲存庫的分叉",
"LeftPanelAddUserForkRow-AddRemoteButtonLabel": "加入",
"LeftPanelAddUserForkRow-AddThisFork": "加入分叉為遠端",
"TextOperation-Cut": "剪下",
"TextOperation-Copy": "複製",
"TextOperation-CopyFileContentsToClipboard": "將檔案內容複製到剪貼簿",
"TextOperation-CopySuccess": "已複製!",
"TextOperation-Paste": "貼上",
"TextOperation-Delete": "刪除",
"TextOperation-SelectAll": "全選",
"ResizePanel": "調整面板大小",
"FastForwardBranchToBranch": "快進分支 {0} 到分支 {1}",
"FileMayStillHaveConflicts": "這個檔案仍可能存在衝突",
"MergedBranchToRef": "將分支 '{0}' 合併到 {1} 中",
"MergedRemoteBranchToRef": "合併遠端追蹤分支 '{0}' 到 {1}",
"MergedTagToRef": "將標籤 '{0}' 合併到 {1} 中",
"MergedBranchToMaster": "合併分支 '{0}'",
"MergedRemoteBranchToMaster": "合併遠端追蹤分支 '{0}'",
"MergedTagToMaster": "合併標籤 '{0}'",
"MergeConflictMessageSingular": "嘗試合併到 {0} 時發現了 1 個檔案衝突",
"MergeConflictMessagePlural": "嘗試合併到 {1} 時發現了 {0} 個檔案衝突",
"MergingIntoNamed": "Merging into {0}",
"ExternalDiffTool": "外部差異工具",
"ExternalMergeTool": "外部合併工具",
"OpenInDiffTool": "在差異工具開啟",
"OpenInMergeTool": "在合併工具開啟",
"OpenIn": "在 {0} 開啟",
"MarkAllResolved": "全部標記為已解決",
"MarkNResolved": "標記 {0} 為已解決",
"MarkAsConflicted": "標記衝突",
"MarkAsResolved": "標記為已解決",
"MarkNConflicted": "標記 {0} 為衝突",
"UnsupportedRebaseMessage": "此儲存庫正在另一個程式中進行變基",
"ViewAuthenticationSettings": "查看設定",
"ViewExternalEditorSettings": "查看外部編輯器設定",
"ViewDiffToolSettings": "查看差異工具設定",
"ViewMergeToolSettings": "查看合併工具設定",
"ViewShPathSettings": "查看設定",
"ViewTerminalSettings": "查看終端機設定",
"DiscardSelectedLines": "捨棄所有變更",
"DiscardThisHunk": "捨棄這個區塊的變更",
"DiscardThisLine": "捨棄這行的變更",
"DiscardNChanges": "捨棄 {0} 個檔案中的變更",
"RefCreatedMessage": "{0}: {1} 建立於 @ {2}",
"StageAllChanges": "暫存所有變更",
"StageNChanges": "暫存 {0} 個檔案",
"StageSelectedLines": "暫存選擇的行",
"StageThisFile": "暫存檔案",
"StageThisChange": "暫存這個變更",
"StageThisHunk": "暫存這個區塊",
"StageThisLine": "暫存這行",
"UnstageAllChanges": "取消暫存所有變更",
"UnstageNChanges": "取消暫存 {0} 個檔案",
"UnstageSelectedLines": "取消暫存所有變更",
"UnstageThisFile": "取消暫存檔案",
"UnstageThisChange": "取消暫存這個變更",
"UnstageThisHunk": "取消暫存這個區塊",
"UnstageThisLine": "取消暫存這行",
"StageFilemodeChange": "暫存檔案模式變更",
"UnstageFilemodeChange": "取消暫存檔案模式變更",
"WindowsFilemodeChangeWarning": "檔案模式的索引可能在 GitKraken 外進行了變更。",
"WindowsFilemodeChangeWarningConfigEnabled": "您在 git 設定啟用了檔案模式變更!在 Windows 中,工作目錄中的檔案似乎有 -x,因此檔案模式的變更顯示在此處",
"OKButtonLabel": "確定",
"CancelButtonLabel": "取消",
"YesButtonLabel": "是",
"NoButtonLabel": "否",
"ExitButtonLabel": "離開",
"ExitPreferencesButtonLabel": "離開喜好設定",
"PreviousButtonLabel": "上一個",
"NextButtonLabel": "下一個",
"BrowseButtonLabel": "瀏覽",
"SubmitButtonLabel": "送出",
"GenerateButtonLabel": "產生",
"SendMessageButtonLabel": "傳送",
"LogInButtonLabel": "登入",
"FinishSetupButtonLabel": "完成",
"OpenNowButtonLabel": "立刻開啟",
"InitializeButtonLabel": "初始化",
"DeleteButtonLabel": "刪除",
"DeleteAndCommitLabel": "刪除並提交",
"DiscardUnstagedChangesButtonLabel": "捨棄未提交的變更",
"UnstageAndRemoveButtonLabel": "取消暫存並刪除",
"ResetAllButtonLabel": "重設全部",
"ResetFileButtonLabel": "重設檔案",
"ResetFilesButtonLabel": "重設檔案",
"SaveAncesor": "保存祖代提交",
"SaveFileButtonLabel": "儲存檔案",
"CommitAndMergeButtonLabel": "提交並合併",
"DropCommitButtonLabel": "刪除提交",
"DropCommitsButtonLabel": "刪除提交",
"AbortCherrypickButtonLabel": "中止挑揀",
"AbortMergeButtonLabel": "中止合併",
"StartRebaseButtonLabel": "是, 開始變基",
"ContinueRebaseButtonLabel": "繼續變基",
"AbortRebaseButtonLabel": "中止變基",
"CommitRevertLabel": "還原提交",
"SkipCommitButtonLabel": "略過提交",
"CommitButtonLabelStageFiles": "請暫存 檔案/變更 到提交",
"CommitButtonLabelAddMessage": "請輸入提交訊息",
"CommitButtonLabelPlural": "提交 {0} 個文件的變更",
"CommitButtonLabelSingular": "提交 1 個文件的變更",
"ForcePushButtonLabel": "強制推送",
"ProvideFeedbackButtonLabel": "提供意見",
"LinuxUpdate-StatusBar-AvailableStatus": "可用更新 ({0})",
"LinuxUpdate-Notification-AvailableStatus": "下載更新",
"LinuxUpdate-CheckingForUpdates": "正在檢查更新...",
"LinuxUpdate-DownloadDebUpdateButtonLabel": ".deb",
"LinuxUpdate-DownloadRpmUpdateButtonLabel": ".rpm",
"LinuxUpdate-DownloadTarGzUpdateButtonLabel": ".tar.gz",
"LinuxUpdate-Downloaded": "已下載 {0}",
"LinuxUpdate-Downloading": "正在下載 {0}...",
"LinuxUpdate-FailedTryAgain": "更新失敗,請再試一次.",
"LinuxUpdate-ShowDownloadedUpdateButtonLabel": "已下載更新 (顯示檔案)",
"LinuxUpdate-SomethingWentWrong": "下載更新時發生未知錯誤",
"LinuxUpdate-TryAgain": "再試一次",
"AutoUpdate-StatusBar-RestartGitKrakenAndInstallUpdateButtonLabel": "更新就緒 (重新啟動 GitKraken)",
"AutoUpdate-Notification-RestartGitKrakenAndInstallUpdateButtonLabel": "重新啟動並安裝更新",
"AmendPreviousCommitButtonLabel": "修訂上一個提交",
"AmendOrRewordPreviousCommitMessageButtonLabel": "更新訊息",
"AmendPreviousCommitMessageTip": "點擊修訂您的提交訊息",
"RewordCommitMessageTooltip": "點擊改寫您的提交訊息",
"RewordCommitMessageHelperText": "改寫這個提交訊息會造成 {0} 個提交需要變基",
"RewordInputTitle": "改寫提交訊息",
"CancelAmendPreviousCommitMessageButtonLabel": "取消修訂",
"CancelRewordPreviousCommitMessageButtonLabel": "取消改寫",
"RefreshTokenLabel": "更新權杖",
"OptIntoAnalyticsButtonLabel": "傳送分析資料給 GitKraken",
"OptIntoAnalyticsCancelButtonLabel": "不要傳送",
"RetryWithoutOAuthLabel": "使用無 OAuth 重試",
"UpgradeGitKrakenButtonLabel": "升級 GitKraken",
"UpgradeToProButtonLabel": "升級為 GitKraken Pro",
"UseFreeButtonLabel": "繼續使用 GitKraken Free",
"SeePlansButtonLabel": "查看 GitKraken 方案",
"StartTrialButtonLabel": "GitKraken Pro 免費試用",
"TrialStatus": "GitKraken Pro 試用剩餘 {0} - 立刻升級",
"Version6LegacyTrialStatus": "GitKraken Individual 試用剩餘 {0} - 立刻升級",
"RemoveButtonLabel": "移除",
"Option-None": "<無>",
"Option-UseMergeTool": "<使用合併工具>",
"ActivityLogButtonTooltip": "活動紀錄",
"GitFlowButtonTooltip": "Gitflow",
"UndoValidButtonTooltip": "復原 {0}",
"RedoValidButtonTooltip": "重做 {0}",
"UndoCannotButtonTooltip": "無法復原",
"RedoCannotButtonTooltip": "無法重做",
"UndoInvalidButtonTooltip": "無法復原 {0}。目前只支援有提交、簽出和某些捨棄動作",
"RedoInvalidButtonTooltip": "沒有復原可以重做",
"RefreshButtonTooltip": "重新整理",
"SetAsDefaultOptionTooltip": "設定為預設",
"DefaultOptionTooltip": "預設",
"PushButtonTooltip": "推送",
"PushToButtonTooltip": "推送到 {0}",
"PullOptionsMessage": "選擇點擊這個按鈕時的預設 提取/推送 操作",
"PullOptions-FetchAll": "擷取全部",
"PullOptions-Merge": "提取 (快進優先)",
"PullOptions-FastForwardOnly": "提取 (僅快進)",
"PullOptions-NoFastForward": "提取 (無快進)",
"PullOptions-Rebase": "提取 (變基)",
"BranchButtonTooltip": "分支",
"StashButtonTooltip": "擱置",
"ApplyStashButtonTooltip": "套用擱置",
"PopStashButtonTooltip": "取回擱置",
"OrderChipotleButtonTooltip": "奇波雷燒烤星期四",
"SearchCommitsTooltip": "搜尋提交 ({0} + f)",
"Rebasing-CommitLabel": "從 {1} 變基提交 {0}",
"Rebasing-AutoStashLabel": "正在擱置未提交的變更",
"Rebasing-PoppingAutoStashLabel": "正在提取自動擱置的變更",
"ReflogAction": "使用參照紀錄 \"{0}\" 的操作",
"ReflogActionCommit": "提交 \"{0}\"",
"ReflogActionCommitAmend": "提交修訂 \"{0}\"",
"ReflogActionCheckout": "從 \"{0}\" 簽出到 \"{1}\"",
"ReflogActionReset": "重設為 \"{0}\"",
"ReflogActionSaveOne": "捨棄 \"{0}\"",
"ReflogActionSaveMany": "捨棄 \"{0}\" 和其他 {1} 個檔案",
"ReflogActionSaveUnknown": "捨棄",
"ReflogActionDeleteBranchTracking": "刪除分支 \"{0}\" 追蹤 \"{1}\"",
"ReflogActionDeleteBranch": "刪除分支 \"{0}\"",
"ReflogActionRemoveRemote": "刪除遠端 \"{0}\"",
"ContextMenu-AddToDictionary": "加到字典",
"ContextMenu-AmendOrRewordCommitMessage": "編輯提交訊息",
"ContextMenu-AnnotateTag": "標註 {0}",
"ContextMenu-CheckoutBranch": "簽出 {0}",
"ContextMenu-CheckoutCommit": "簽出這個提交",
"ContextMenu-CherrypickCommit": "挑揀提交",
"ContextMenu-CreateAnnotatedTag": "在這裡建立標註標籤",
"ContextMenu-CloseTab": "關閉分頁",
"ContextMenu-CloseOtherTabs": "關閉其他分頁",
"ContextMenu-CloseTabsRight": "關閉右邊所有分頁",
"ContextMenu-CommitNotInGraph": "無法在圖表檢視隱藏的提交",
"ContextMenu-Copy": "複製 (&C)",
"ContextMenu-CopyBranchName": "複製分支名稱到剪貼簿",
"ContextMenu-CopyFilePath": "複製檔案路徑到剪貼簿",
"ContextMenu-CopyCommitSha": "複製 SHA 到剪貼簿",
"ContextMenu-CopyTagName": "複製標籤名稱到剪貼簿",
"ContextMenu-CreateBranchHere": "在這裡建立分支",
"ContextMenu-CreateTagHere": "在這裡建立標籤",
"ContextMenu-Cut": "剪下",
"ContextMenu-DeleteLocalAndRemoteBranches": "刪除 {0} 和 {1}",
"ContextMenu-DeleteAll": "刪除全部 \"{0}\" 分支 (本機和遠端)",
"ContextMenu-DeleteBranch": "刪除 {0}",
"ContextMenu-Delete1BranchInFolder": "刪除資料夾 \"{0}\" 中的 1 個分支",
"ContextMenu-DeleteNBranchesInFolder": "刪除資料夾 \"{1}\" 中的 {0} 個分支",
"ContextMenu-DeleteNLocalBranches": "刪除 {0} 個本機分支",
"ContextMenu-DeleteNStashes": "刪除 {0} 個擱置",
"ContextMenu-DeleteProjectGroup": "從清單移除",
"ContextMenu-DeleteTagXLocally": "從本機刪除 {0}",
"ContextMenu-DeleteTagFromRemote": "從遠端刪除標籤",
"ContextMenu-DeleteTagXFromRemoteY": "從 {1} 刪除 {0}",
"ContextMenu-DeleteTagXFromAllRemotes": "從所有遠端刪除 {0}",
"ContextMenu-DropCommit": "刪除提交",
"ContextMenu-DropCommits": "刪除 {0} 個提交",
"ContextMenu-EditProjectGroup": "編輯標籤",
"ContextMenu-EditRemote": "編輯 {0}",
"ContextMenu-FastForward": "快進 {0} 到 {1}",
"ContextMenu-FavoriteRepository": "收藏儲存庫",
"ContextMenu-FetchRemote": "擷取 {0}",
"ContextMenu-ForkRemoteOnService": "在 {2} 分叉 {0} ({1})",
"ContextMenu-GitHubActionDelete": "刪除 Workflow",
"ContextMenu-GitHubActionEdit": "編輯 Workflow",
"ContextMenu-GoToParentCommit": "在圖表查看提交",
"ContextMenu-HideAllStashes": "隱藏所有擱置",
"ContextMenu-HideAllTags": "隱藏所有標籤",
"ContextMenu-HideNStashes": "隱藏 {0} 個擱置",
"ContextMenu-HideNLocalBranches": "隱藏 {0} 個分支",
"ContextMenu-IssueCheckoutBranchFrom": "從 {0} 簽出分支",
"ContextMenu-IssueCreateBranchGitFlowFeature": "Gitflow: 建立功能分支",
"ContextMenu-IssueCreateBranchGitFlowHotfix": "Gitflow: 建立熱修復分支",
"ContextMenu-IssueCreateBranchGitFlowRelease": "Gitflow: 建立發佈分支",
"ContextMenu-IssueCopyCardLink": "複製卡片連結",
"ContextMenu-IssueCopyIssueLink": "複製議題連結",
"ContextMenu-IssueViewIssueInGitHub": "在 GitHub 檢視議題",
"ContextMenu-IssueViewIssueInGitHubEnterprise": "在 GitHub 企業版檢視議題",
"ContextMenu-IssueViewIssueInGitLab": "在 GitLab 檢視議題",
"ContextMenu-IssueViewCardInGKBoards": "在 GitKraken Boards 檢視卡片",
"ContextMenu-IssueViewCardInTrello": "在 Trello 檢視卡片",
"ContextMenu-IssueViewIssueInGitlab": "在 Gitlab 檢視議題",
"ContextMenu-IssueViewIssueInIssueTracker": "在議題追蹤管理顯示",
"ContextMenu-IssueViewIssueInJira": "在 Jira 檢視議題",
"ContextMenu-IssueViewCardX": "檢視卡片 {0}",
"ContextMenu-IssueViewIssueX": "檢視議題 {0}",
"ContextMenu-IssueViewCardXInBrowser": "在瀏覽器檢視卡片 {0}",
"ContextMenu-IssueViewIssueXInBrowser": "在瀏覽器檢視議題 {0}",
"ContextMenu-IssueTrackerFilterRemoveFilter": "移除篩選",
"ContextMenu-IssueTrackerFilterEditFilter": "編輯篩選",
"ContextMenu-IssueTrackerFilterMoveDown": "下移篩選",
"ContextMenu-IssueTrackerFilterMoveUp": "上移篩選",
"ContextMenu-MergeBranchIntoBranch": "合併 {0} 到 {1}",
"ContextMenu-MoveCommitDown": "下移提交",
"ContextMenu-MoveCommitUp": "上移提交",
"ContextMenu-MoveXCommitsDown": "下移 {0} 個提交",
"ContextMenu-MoveXCommitsUp": "上移 {0} 個提交",
"ContextMenu-Paste": "貼上",
"ContextMenu-PickCommit": "挑揀提交",
"ContextMenu-PushAndStartPullRequestToRef": "推送 {0} 並在 {1} 建立提取請求",
"ContextMenu-PushAndStartPullRequest": "推送 {0} 並建立提取請求",
"ContextMenu-PushTagToRemote": "推送標籤到遠端",
"ContextMenu-PushXToEllipses": "推送 {0} 到...",
"ContextMenu-PushXToAllRemotes": "推送 {0} 到所有遠端",
"ContextMenu-PushXToY": "推送 {0} 到 {1}",
"ContextMenu-RebaseBranchOntoBranch": "變基 {0} 於 {1}",
"ContextMenu-RebaseBranchOntoBranchInteractively": "互動式變基 {0} 於 {1}",
"ContextMenu-RebaseXChildrenOfShaInteractively": "互動式變基 {1} 的 {0} 個子項目",
"ContextMenu-RemoveRemote": "移除 {0}",
"ContextMenu-RenameBranch": "重新命名 {0}",
"ContextMenu-ReopenClosedTab": "重新開啟已關閉的分頁",
"ContextMenu-ResetBranchToThisCommit": "重設 {0} 到這個提交",
"ContextMenu-ResetSoftWithHint": "Soft - 保留所有變更",
"ContextMenu-ResetMixedWithHint": "Mixed - 保留工作副本但重設索引",
"ContextMenu-ResetHardWithHint": "Hard - 捨棄所有變更",
"ContextMenu-RevertCommit": "還原提交",
"ContextMenu-RewordCommit": "編輯提交訊息",
"ContextMenu-SelectAll": "全選 (&A)",
"ContextMenu-SetUpstream": "設定上游",
"ContextMenu-ShowAllStashes": "顯示所有擱置",
"ContextMenu-ShowAllTags": "顯示所有標籤",
"ContextMenu-ShowNLocalBranches": "顯示 {0} 個分支",
"ContextMenu-SoloNLocalBranches": "單獨顯示 {0} 個分支",
"ContextMenu-ShowNStashes": "顯示 {0} 個擱置",
"ContextMenu-SquashCommit": "壓縮提交",
"ContextMenu-StartPullRequestFromY": "從 {0} 建立提取請求",
"ContextMenu-StartPullRequestToX": "建立提取請求到 {0}",
"ContextMenu-StartPullRequestToXFromY": "從 {1} 建立提取請求到 {0}",
"ContextMenu-StashApply": "套用擱置",
"ContextMenu-StashDelete": "刪除擱置",
"ContextMenu-StashPop": "取回擱置",
"ContextMenu-StopSoloingNLocalBranches": "停止單獨顯示 {0} 個分支",
"ContextMenu-SquashXCommits": "壓縮 {0} 個提交",
"ContextMenu-UnfavoriteRepository": "取消收藏儲存庫",
"ContextMenu-ViewServiceRemoteInBrowser": "在 {1} 查看 {0}",
"LocalBranchDeletion-Complete": "分支刪除完成",
"StashDeletion-Complete": "擱置刪除完成",
"StashDeletion-SuccessfullyDeletedNStashes": "成功刪除 {0} / {1} 個擱置",
"Toolbar-CloseSubmodule": "關閉子模組",
"Toolbar-CloseRepository": "關閉儲存庫",
"Toolbar-PushNotAvailableInDetachedHead": "無法在脫離頭端狀態推送",
"Toolbar-PullMergeNotAvailableInDetachedHead": "無法在脫離頭端狀態提取 (快進優先)",
"Toolbar-PullFastForwardOnlyNotAvailableInDetachedHead": "無法在脫離頭端狀態提取 (僅快進)",
"Toolbar-PullRebaseNotAvailableInDetachedHead": "無法在脫離頭端狀態提取 (變基)",
"BreadCrumbs-FavoritesHeader": "收藏",
"BreadCrumbs-RecentsHeader": "最近開啟",
"Profile-AddAProfile": "新增設定檔",
"Profile-CancelDelete": "否,保留這個設定",
"Profile-ConfirmDeleteHeader": "刪除這個設定檔?",
"Profile-ConfirmDelete": "是,刪除這個設定檔",
"Profile-CopySettingsFromCurrentProfile": "從目前設定複製設定?",
"Profile-CurrentProfile": "目前設定",
"Profile-DeleteProfile": "刪除",
"Profile-Description": "GitKraken 使用設定檔儲存您的喜好設定和 Git 設定。安裝之後設定的喜好設定已設為預設設定檔。在 GitKraken Pro 中,您可以建立其他設定檔並在您不同的專案、工作環境中快速切換。",
"Profile-EditProfile": "編輯設定檔",
"Profile-FinishEditing": "請先結束您編輯再建立或切換設定檔",
"Profile-ManageAccount": "管理帳戶",
"Profile-ManageProfiles": "管理設定檔",
"Profile-MyProfiles": "我的設定檔",
"Profile-Preferences": "喜好設定",
"Profile-ProfileName": "設定檔名稱",
"Profile-ReferralRewards": "推薦獎賞",
"Profile-RequiresPro": "建立或切換設定檔需要 Pro。點擊此處升級",
"Profile-Unlock": "升級到 Pro 解鎖設定檔切換功能",
"Profile-SaveChanges": "保存設定",
"Profile-SelectIcon": "選擇頭像",
"Profile-SetUpYourProfile": "設定您的設定檔",
"Profile-SwitchProfile": "切換設定檔",
"Profile-SwitchToThisProfile": "切換到這個設定檔",
"Profile-SyncChanges": "讓我的 .gitconfig 和 GitKraken 設定同步更新",
"Profile-SyncChangesSub": "選擇後,GitKraken 將使用目前設定檔為全域 .gitconfig 設定,包含提交作者和信箱,以及 GPG 設定。",
"Profile-Unregistered": "未註冊",
"ProfileAccountMenu-NoProfiles": "沒有設定檔",
"ProfileAccountMenu-AuthoringAs": "提交為:",
"ProfileAccountMenu-ManageProfiles": "管理設定檔",
"ProfileAccountMenu-Account": "帳戶",
"ProfileAccountMenu-SignedInAs": "登入為:",
"ProfileAccountMenu-ManageAccount": "管理帳戶",
"ProfileAccountMenu-SignIntoDifferentAccount": "使用不同帳戶登入",
"Profiles": "設定檔",
"RefBar-NavigateToBranch": "導向到分支",
"RefBar-GroupGitFlow": "GITFLOW",
"RefBar-GroupGitHubAction": "GITHUB ACTIONS",
"RefBar-GroupGitHub": "GITHUB",
"RefBar-GroupGitHubEnterprise": "GITHUB ENTERPRISE",
"RefBar-GroupGitHubEnterpriseShort": "GITHUB",
"RefBar-GroupGitLab": "GITLAB",
"RefBar-GroupGitLabSelfManaged": "GITLAB SELF-MANAGED",
"RefBar-GroupGitLabSelfManagedShort": "GITLAB SM",
"RefBar-GroupGKBoards": "GITKRAKEN BOARDS",
"RefBar-GroupGKBoardsShort": "GK BOARDS",
"RefBar-GroupIssueTracker": "議題",
"RefBar-GroupGitHubIssues": "GITHUB ISSUES",
"RefBar-GroupJira": "JIRA ISSUES",
"RefBar-GroupTrello": "TRELLO",
"RefBar-GroupLocal": "本機",
"RefBar-GroupRemote": "遠端",
"RefBar-GroupPullRequests": "提取請求",
"RefBar-GroupStashes": "暫存",
"RefBar-GroupSubmodules": "子模組",
"RefBar-GroupTags": "標籤",
"RefBar-NAhead": "超前 {0}",
"RefBar-NBehind": "落後 {0}",
"RefBar-NavigateToTag": "導向到標籤",
"RefBar-StatusViewing": "查看",
"RefBar-StatusSoloing": "單獨顯示",
"RefBar-AddRemote": "加入遠端",
"RefBar-AddGitHubAction": "加入 GitHub Action",
"RefBar-OpenGitFlow": "開啟 Gitflow",
"RefBar-AddBranch": "建立新分支",
"RefBar-AddSubmodule": "加入子模組",
"RefBar-AddTag": "建立新標籤",
"Refbar-BranchActions": "分支操作",
"RefBar-TagActions": "標籤操作",
"Repo-SuccessfullyCreatedRepo": "成功建立儲存庫",
"PullRequest-SuccessfullyCreatePullRequest": "成功建立提取請求",
"ViewOnHostingService": "在 {0} 查看",
"GitHubActionBar-Menu": "GitHub Action 操作",
"PullRequestBar-Assignees": "負責人",
"PullRequestBar-Reviewers": "審核人",
"PullRequestBar-Labels": "標籤",
"PullRequestBar-Opened": "開啟日期: {0}",
"PullRequestBar-Updated": "更新日期: {0}",
"PullRequestBar-CreatePullRequest": "建立提取請求",
"PullRequestBar-Menu": "提取請求操作",
"PullRequestBar-UnknownPullRequestHead": "私人或已刪除的儲存庫 (存取被拒)",
"PullRequestBar-UnknownPullRequestOwnerLogin": "未知使用者名稱 (存取被拒)",
"PullRequestBar-ViewPullRequestInBrowser": "在 {2} 查看提取請求 {0}{1}",
"PullRequestBar-CopyPullRequestLink": "複製提取請求連結 {0}{1}",
"PullRequestBar-ViewContinuousIntegrationResultInBrowser": "查看 {0} 的最新版本",
"PullRequestBar-AddPullRequestRemote": "將 {0} 加為遠端",
"PullRequestBar-AddPullRequestRemoteAndCheckoutPRHead": "將 {0} 加為遠端並簽出",
"PullRequestPanel-AddAssignee": "加入負責人...",
"PullRequestPanel-AddAssignees": "加入負責人...",
"PullRequestPanel-AddLabels": "加入標籤...",
"PullRequestPanel-AddReviewers": "加入審核人...",
"PullRequestPanel-AddTemplate": "加入模板...",
"PullRequestPanel-AllCards": "所有卡片",
"PullRequestPanel-Assignee": "負責人",
"PullRequestPanel-Assignees": "負責人",
"PullRequestPanel-Branch": "分支",
"PullRequestPanel-CardsLinkedTo": "卡片連結至",
"PullRequestPanel-Description": "說明",
"PullRequestPanel-EditOnService": "在 {0} 繼續編輯",
"PullRequestPanel-FromRepo": "來源儲存庫",
"PullRequestPanel-GloCard": "GitKraken Card",
"PullRequestPanel-RemoveGloCard": "移出 GitKraken Card",
"PullRequestPanel-OpenGloCard": "開啟 GitKraken Card",
"PullRequestPanel-HideFiles": "隱藏檔案",
"PullRequestPanel-Labels": "標籤",
"PullRequestPanel-MergeConflictDetected": "偵測到合併衝突",
"PullRequestPanel-NoAssigneesFound": "找不到負責人",
"PullRequestPanel-NoCardsFound": "找不到卡片",
"PullRequestPanel-NoLabelsFound": "找不到標籤",
"PullRequestPanel-NoReviewersFound": "找不到審核人",
"PullRequestPanel-NoTemplatesFound": "找不到模板",
"PullRequestPanel-PullRequestTitle": "提取請求標題",
"PullRequestPanel-PullRequestDescription": "提取請求說明",
"PullRequestPanel-Repo": "儲存庫",
"PullRequestPanel-Reviewers": "審核人",
"PullRequestPanel-SearchCards": "搜尋卡片...",
"PullRequestPanel-SearchingCards": "正在搜尋卡片...",
"PullRequestPanel-ShowFiles": "顯示檔案",
"PullRequestPanel-SubmitAsDraft": "以草稿送出",
"PullRequestPanel-Template": "模板",
"PullRequestPanel-Title": "標題",
"PullRequestPanel-ToRepo": "目標儲存庫",
"PullRequestPanel-TypeToSearch": "輸入以開始搜尋 GitKraken Cards...",
"PullRequestPanel-AzureDevopsEditPullRequestWarning": "如果你選擇在 AzureDevops 編輯,你的提取請求標題 和/或 說明將不會轉移到 AzureDevops。",
"PullRequestPanel-GitHubEditPullRequestWarning": "如果你選擇在 GitHub 編輯,你的提取請求審核人不會轉移到 GitHub。",
"PullRequestPanel-GitHubDraftPullRequestTooltip": "合併請求草稿可用於 GitHub Free for organizations 的公開儲存庫、舊儲存庫別付費方案及 GitHub Team 和 GitHub Enterprise Cloud 的公開及私人儲存庫。",
"PullRequestTooltip-WantsToMerge": "想要合併",
"PullRequestTooltip-Into": "進",
"PullRequestTooltip-Draft": "草稿",
"PullRequestTooltip-BuildStatus": "建置狀態:",
"PullRequestTooltip-ChecksOK": "檢查 {0} / {1} 通過",
"PullRequestTooltip-UnknownRequester": "[未知]",
"ContinuousIntegrationTooltip-SomeChecksFailed": "某些檢查失敗",
"ContinuousIntegrationTooltip-SomeChecksPending": "某些檢查進行中",
"ContinuousIntegrationTooltip-AllChecksPassed": "已通過所有檢查",
"IssueTooltip-Description": "說明",
"IssueTooltip-Labels": "標籤",
"IssueTooltip-List": "清單",
"IssueTooltip-Milestone": "里程碑",
"IssueTooltip-Milestones": "里程碑",
"IssueTooltip-MilestoneDueDate": "{0} 前",
"IssueTooltip-Reporter": "報導者",
"IssueTooltip-Status": "狀態",
"IssueTooltip-Column": "欄",
"IssueTooltip-None": "無",
"IssueViewPanel-AddCommentSubmitLabel": "新增留言",
"IssueViewPanel-AddCommentPlaceholder": "新增留言",
"IssueViewPanel-AssigneeEditFailed": "更新負責人失敗",
"IssueViewPanel-Branches": "分支",
"IssueViewPanel-BaseNewBranchOn": "基於新分支",
"IssueViewPanel-BranchLabelTooltip": "點一下檢視,點兩下簽出。",
"IssueViewPanel-Checklists": "檢查清單",
"IssueViewPanel-ClearAssignee": "清除負責人",
"IssueViewPanel-ClearMember": "清除成員",
"IssueViewPanel-ClearAssignees": "清除負責人",
"IssueViewPanel-ClearLabels": "Clear labels",
"IssueViewPanel-ClearMembers": "清除成員",
"IssueViewPanel-CollapseReplies": "摺疊 {0} 個回覆",
"IssueViewPanel-CollapseReply": "摺疊 {0} 個回覆",
"IssueViewPanel-Column": "欄位",
"IssueViewPanel-Comments": "留言",
"IssueViewPanel-CreateBranch": "建立分支",
"IssueViewPanel-CreatedBy": "建立者 ",
"IssueViewPanel-Description": "說明",
"IssueViewPanel-DueDate": "截止日",
"IssueViewPanel-DuplicateFilterName": "篩選器名稱重複",
"IssueViewPanel-Labels": "標籤",
"IssueViewPanel-List": "清單",
"IssueViewPanel-Milestone": "里程碑",
"IssueViewPanel-MilestoneDueDate": "截止 {0}",
"IssueViewPanel-Milestones": "里程碑",
"IssueViewPanel-NameLabel": "篩選器名稱",
"IssueViewPanel-NoMatch": "沒有符合的結果",
"IssueViewPanel-Notifications": "通知",
"IssueViewPanel-NotificationsOff": "關閉通知",
"IssueViewPanel-NotificationsOn": "開啟通知",
"IssueViewPanel-OpenCardInBrowser": "在瀏覽器開啟卡片",
"IssueViewPanel-OpenIssueInBrowser": "在瀏覽器開啟議題",
"IssueViewPanel-ReplyToComment": "回覆留言",
"IssueViewPanel-ReplyToThread": "回覆討論",
"IssueViewPanel-SelectPlaceholder": "選擇 ...",
"IssueViewPanel-ShowReplies": "顯示 {0} 則回覆",
"IssueViewPanel-ShowReply": "顯示 {0} 則回覆",
"IssueViewPanel-State": "State",
"IssueViewPanel-Status": "狀態",
"IssueViewPanel-StatusInvalidTransition": "無效的狀態轉變",
"IssueViewPanel-TaskLists": "任務清單",
"IssueViewPanel-Tasks": "任務",
"IssueViewPanel-UnknownUser": "未知使用者",
"JiraFilterForm-JqlError": "JQL 錯誤",
"JiraFilterForm-JqlLabel": "查詢 (JQL)",
"JiraFilterForm-JqlEmpty": "JQL 必填",
"JiraFilterForm-JqlMissingProject": "JQL 必須包含 'project = \"{0}\"'",
"JiraFilterForm-JqlPlaceholder": "請輸入 JQL 查詢語法",
"JiraFilterForm-ValidateError": "無法用 Jira 驗證查詢語法",
"RemoteBar-Menu": "遠端操作",
"ShPath-ConfirmPath": "這個儲存庫需要 sh 來執行 GitHooks。 sh 的路徑是否為 {0} ?",
"StashBar-Menu": "擱置操作",
"WorkDirMessageInput-WIPPlaceholder": "// 處理中",
"CommitAllChangesShortcutTip": "按 Shift-Enter 提交所有變更",
"Timeline-1HourAgo": "1 小時前",
"Timeline-NHoursAgo": "{0} 小時前",
"Timeline-Yesterday": "昨天",
"Timeline-NDaysAgo": "{0} 天前",
"Timeline-1WeekAgo": "1 週前",
"Timeline-NWeeksAgo": "{0} 週前",
"Timeline-1MonthAgo": "1 個月前",
"Timeline-NMonthsAgo": "{0} 個月前",
"Timeline-1YearAgo": "1 年前",
"Timeline-NYearsAgo": "{0} 年前",
"Timeline-ArbitrarilyLongAgo": "請停止捲動",
"Graph-AdjustCommitCount": "顯示 {0} 個提交。您可以在喜好設定修改",
"Graph-Preferences": "Preferences",
"GraphHeader-BranchTag": "分支 / 標籤",
"GraphHeader-CommitAuthor": "作者",
"GraphHeader-CommitDateTime": "提交 日期 / 時間",
"GraphHeader-CommitGraph": "圖表",
"GraphHeader-CommitMessage": "提交訊息",
"GraphHeader-CommitSha": "SHA",
"GraphHeader-EditColumns": "新增/移除 欄位",
"OptionalGraphZone-CommitAuthor": "作者",
"OptionalGraphZone-CommitDateTime": "日期 / 時間",
"OptionalGraphZone-CommitSha": "Sha",
"RightPanel-FilterFiles": "篩選檔案",
"RightPanel-MergeConflictsDetected": "偵測到合併衝突",
"RightPanel-1ChangeOn": "1 個檔案變更於",
"RightPanel-NChangesOn": "{0} 個檔案變更於",
"RightPanel-NCommitsSelected": "{0} 個已選提交",
"RightPanel-PinToBottom": "釘選到底部",
"RightPanel-PinToRight": "釘選到右邊",
"RightPanel-RebaseConflictsDetected": "偵測到變基衝突",
"RightPanel-UnsupportedRebase": "外部變基進行中",
"RightPanel-ViewChange": "查看變更",
"RightPanel-ViewChanges": "查看變更",
"RightPanel-ViewConflict": "查看衝突",