forked from syntevo/smartgit-translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapping
2706 lines (2706 loc) · 178 KB
/
mapping
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
*.btn"Cancel"=Cancel
*.btn"Close"=Close
*.btn"OK"=OK
*.hnt"Filter"=Filter
dlgDgAbout.edt"Build Date"=Build Date
dlgDgAbout.edt"Email"=Email
dlgDgAbout.edt"Java Version"=Java Version
dlgDgAbout.edt"Name"=Name
dlgDgAbout.edt"Settings Path"=Settings Path
dlgDgAbout.edt"Version"=Version
dlgDgAbout.tab"Credits"=Credits
dlgDgAbout.tab"Information"=Information
dlgDgAbout.tab"Licensee"=Licensee
dlgDgAbout.tle=About DeepGit
dlgDgSetEncoding.edt"Text File Encoding"=Text File Encoding
dlgDgSetEncoding.hdl=Configure Encoding
dlgDgSetEncoding.inf=Specify the encoding which should be used for processing and viewing files. Note, that UTF-8 encoding will be auto-detected, regardless of the configuration here.
dlgDgSetEncoding.tle=Set Encoding
dlgInfo.tle=Discard
dlgProgress.btn"Stop"=Stop
dlgProgress.tle"Checking connectivity"=Checking connectivity
dlgProgress.tle"Checking push conditions"=Checking push conditions
dlgProgress.tle"JIRA"=JIRA
dlgProgress.tle"Jump To"=Jump To
dlgProgress.tle"Layouting Graph"=Layouting Graph
dlgProgress.tle"Refresh"=Refresh
dlgProgress.tle"Reveal Commit"=Reveal Commit
dlgProgress.tle"SmartGit Installation Update"=SmartGit Installation Update
dlgProgress.tle"Upgrade"=Upgrade
dlgQBugFileSendingFailed.fur%1=Maybe you need to configure a proxy or our server is temporarily down.\nDetails: $1
dlgQBugFileSendingFailed.hdl%1=Could not send the crash logs to $1
dlgQBugFileSendingFailed.tle=Native Crash Logs
dlgQBugReportSend.btn"Force Exit"=Force Exit
dlgQBugReportSend.btn"Report Bug"=Report Bug
dlgQBugReportSend.edt"Comments or Steps to Reproduce"=Comments or Steps to Reproduce
dlgQBugReportSend.edt"Email"=Email
dlgQBugReportSend.tle=Internal Error
dlgQDockManagerClosedView.chk=Don't show again
dlgQDockManagerClosedView.fur=To reopen it again, use the corresponding menu item from the Window menu.
dlgQDockManagerClosedView.hdl%1=You've closed the view '$1'.
dlgQDockManagerClosedView.tle=Closed View
dlgQFileSaveAcceptFilterOverwrite.btn"Overwrite"=Overwrite
dlgQFileSaveAcceptFilterOverwrite.fur=To save to a different file, click 'Cancel'.
dlgQFileSaveAcceptFilterOverwrite.hdl%1=The file $1 already exists. Do you want to overwrite it?
dlgQFileSaveAcceptFilterOverwrite.tle=Overwrite File
dlgQFrameManagerExit.btn"Discard Changes && Exit"=Discard Changes && Exit
dlgQFrameManagerExit.fur=There are unsaved changes which would be lost when exiting now!
dlgQFrameManagerExit.hdl=Do you really want to exit SmartGit?
dlgQFrameManagerExit.tle=Exit
dlgQIntegerInputProviderInvalidValue.fur%2=Port must be in the range from $1 to $2.
dlgQIntegerInputProviderInvalidValue.hdl%1=The text in field '$1' is not valid.
dlgQIntegerInputProviderInvalidValue.tle=Input Validation
dlgQProxyConfigure.chk"Proxy requires authentication"=Proxy requires authentication
dlgQProxyConfigure.edt"Host"=Host
dlgQProxyConfigure.edt"Password"=Password
dlgQProxyConfigure.edt"Port"=Port
dlgQProxyConfigure.edt"Username"=Username
dlgQProxyConfigure.lbl"Note: The password will be stored in plain text in SmartGit's configuration area!"=\
Note: The password will be stored in plain text in SmartGit's configuration area!
dlgQProxyConfigure.rbt"Auto-detect the system proxy"=Auto-detect the system proxy
dlgQProxyConfigure.rbt"Don't use a proxy"=Don't use a proxy
dlgQProxyConfigure.rbt"Use following proxy"=Use following proxy
dlgQProxyConfigure.tle=Configure Proxy
dlgQProxyConnectionFailed.btn"Configure Proxy"=Configure Proxy
dlgQProxyConnectionFailed.btn"Retry"=Retry
dlgQProxyConnectionFailed.fur=Details: syntevo.com
dlgQProxyConnectionFailed.hdl%1=Could not connect to $1.
dlgQProxyConnectionFailed.tle=Connection Failed
dlgQUpdateCheckForNewVersion.btn"Configure Proxy"=Configure Proxy
dlgQUpdateCheckForNewVersion.btn"Exit"=Exit
dlgQUpdateCheckForNewVersion.btn"Retry"=Retry
dlgQUpdateCheckForNewVersion.btn"Skip"=Skip
dlgQUpdateCheckForNewVersion.hdl=SmartGit needs to check for updates
dlgQUpdateCheckForNewVersion.inf=If necessary, please configure the proxy and retry.
dlgQUpdateCheckForNewVersion.tle=Check for New Version
dlgQUpdateCheckLatestBuild.btn"Get Latest Build"=Get Latest Build
dlgQUpdateCheckLatestBuild.fur=Only use the latest build if requested by the support team.
dlgQUpdateCheckLatestBuild.hdl=Are you sure to download the latest build?
dlgQUpdateCheckLatestBuild.tle=Check for Latest Build
dlgQUpdateCheckLatestBuildFetchFailed.fur%1=Details: $1
dlgQUpdateCheckLatestBuildFetchFailed.hdl=Initializing upgrade failed.
dlgQUpdateCheckLatestBuildFetchFailed.tle=Check for Latest Build
dlgQUpdateCheckNoNewerLatestBuild.fur=You are already using the latest build.
dlgQUpdateCheckNoNewerLatestBuild.hdl=No newer build found.
dlgQUpdateCheckNoNewerLatestBuild.tle=Check for Latest Build
dlgQUpdateCheckNowNewerVersion.fur=You are already using the latest version.
dlgQUpdateCheckNowNewerVersion.hdl=No newer version found.
dlgQUpdateCheckNowNewerVersion.tle=Check for New Version
dlgScAboutUpdateInstallation.btn"Upgrade Installation"=Upgrade Installation
dlgScAboutUpdateInstallation.fur=This will take a few moments and has to restart SmartGit.
dlgScAboutUpdateInstallation.hdl%1=Do you want to upgrade the installation directory to version $1?
dlgScAboutUpdateInstallation.tle=Upgrade Installation
dlgScApplicationStarterRestart.btn"Exit"=Exit
dlgScApplicationStarterRestart.btn"Remind Later"=Remind Later
dlgScApplicationStarterRestart.btn"Restart"=Restart
dlgScApplicationStarterRestart.fur=The downloaded program update should be applied now.
dlgScApplicationStarterRestart.hdl=SmartGit requires a restart.
dlgScApplicationStarterRestart.tle=Restart
dlgScBugtrackerCredentials.btn"Login"=Login
dlgScBugtrackerCredentials.chk"Store password"=Store password
dlgScBugtrackerCredentials.edt"Password"=Password
dlgScBugtrackerCredentials.edt"User Name"=User Name
dlgScBugtrackerCredentials.hdl%1=Login to '$1'
dlgScBugtrackerCredentials.inf=Provide the user name and password for authenticating to JIRA.
dlgScBugtrackerCredentials.tle=Login to JIRA
dlgScBugtrackerCredentials.wrn"HTTP response code $1"=HTTP response code $1
dlgScBugtrackerSslClientCertificate.btn"Login"=Login
dlgScBugtrackerSslClientCertificate.chk"Store passphrase"=Store passphrase
dlgScBugtrackerSslClientCertificate.edt"Certificate"=Certificate
dlgScBugtrackerSslClientCertificate.edt"Passphrase"=Passphrase
dlgScBugtrackerSslClientCertificate.hdl%1=Select the client certificate for $1
dlgScBugtrackerSslClientCertificate.inf=Select the client certificate file for authenticating to JIRA.
dlgScBugtrackerSslClientCertificate.tle=JIRA Client Certificate
dlgScBugtrackerSslClientCertificate.wrn"$1"=$1
dlgScBugtrackerSslFingerprintNew.btn"Accept"=Accept
dlgScBugtrackerSslFingerprintNew.btn"Reject"=Reject
dlgScBugtrackerSslFingerprintNew.edt"MD5 fingerprint"=MD5 fingerprint
dlgScBugtrackerSslFingerprintNew.edt"SHA fingerprint"=SHA fingerprint
dlgScBugtrackerSslFingerprintNew.edt"Server"=Server
dlgScBugtrackerSslFingerprintNew.lbl"Is the following server fingerprint correct?"=\
Is the following server fingerprint correct?
dlgScBugtrackerSslFingerprintNew.lbl"When in doubt, contact your server administrator."=\
When in doubt, contact your server administrator.
dlgScBugtrackerSslFingerprintNew.tle=SSL Authentication
dlgScConflictSolverAdd.edt"Arguments"=Arguments
dlgScConflictSolverAdd.edt"Command"=Command
dlgScConflictSolverAdd.edt"File Pattern"=File Pattern
dlgScConflictSolverAdd.hdl=Add conflict solver
dlgScConflictSolverAdd.inf"Define the file pattern \(e.g. \*.txt\) and select the merge tool which should be used to resolve conflicting files matching this pattern."=\
Define the file pattern \(e.g. \*.txt\) and select the merge tool which should be used to resolve conflicting files matching this pattern.
dlgScConflictSolverAdd.lbl"Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html"=\
Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html
dlgScConflictSolverAdd.rbt"Built-in Conflict Solver"=Built-in Conflict Solver
dlgScConflictSolverAdd.rbt"External Conflict Solver"=External Conflict Solver
dlgScConflictSolverAdd.tle=Add
dlgScConflictSolverEdit.edt"Arguments"=Arguments
dlgScConflictSolverEdit.edt"Command"=Command
dlgScConflictSolverEdit.edt"File Pattern"=File Pattern
dlgScConflictSolverEdit.hdl=Edit conflict solver
dlgScConflictSolverEdit.inf"Define the file pattern \(e.g. \*.txt\) and select the merge tool which should be used to resolve conflicting files matching this pattern."=\
Define the file pattern \(e.g. \*.txt\) and select the merge tool which should be used to resolve conflicting files matching this pattern.
dlgScConflictSolverEdit.lbl"Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html"=\
Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html
dlgScConflictSolverEdit.rbt"Built-in Conflict Solver"=Built-in Conflict Solver
dlgScConflictSolverEdit.rbt"External Conflict Solver"=External Conflict Solver
dlgScConflictSolverEdit.tle=Edit
dlgScConflictSolverUnresolvedConflicts.chk=Don't warn me again
dlgScConflictSolverUnresolvedConflicts.fur=Not all conflicts have been resolved.
dlgScConflictSolverUnresolvedConflicts.hdl=Do you want to close the Conflict Solver?
dlgScConflictSolverUnresolvedConflicts.tle=Unresolved Conflicts
dlgScCustomizeAccelerators.btn"Assign"=Assign
dlgScCustomizeAccelerators.btn"Clear"=Clear
dlgScCustomizeAccelerators.btn"Reset"=Reset
dlgScCustomizeAccelerators.col"Accelerator"=Accelerator
dlgScCustomizeAccelerators.col"Default"=Default
dlgScCustomizeAccelerators.col"Menu Item"=Menu Item
dlgScCustomizeAccelerators.edt"Accelerator"=Accelerator
dlgScCustomizeAccelerators.hdl=Customize Accelerators
dlgScCustomizeAccelerators.inf=Double click on the menu item for which the accelerator should be changed, then press the accelerator keys and click the Assign button.
dlgScCustomizeAccelerators.tle=Customize
dlgScDialogAssertionHandler.btn"Send Logs"=Send Logs
dlgScDialogAssertionHandler.edt"Email"=Email
dlgScDialogAssertionHandler.edt"Optional comments or steps to reproduce \(in case you still recall\)"=\
Optional comments or steps to reproduce \(in case you still recall\)
dlgScDialogAssertionHandler.tle=Native Crash Logs
dlgScDialogAssertionHandlerLinkageError.btn"Copy"=Copy
dlgScDialogAssertionHandlerLinkageError.btn"Force Exit"=Force Exit
dlgScDialogAssertionHandlerLinkageError.lbl"SmartGit has detected inconsistencies within its installation files \(JAR files\), what has most likely been caused by a faulty installation.\n\nPlease uninstall SmartGit completely, make sure there are no more installation files left \(especially JAR files\), then reinstall.\n\nIf the problem persists, send following log file as an attachment to [email protected]."=\
SmartGit has detected inconsistencies within its installation files \(JAR files\), what has most likely been caused by a faulty installation.\n\nPlease uninstall SmartGit completely, make sure there are no more installation files left \(especially JAR files\), then reinstall.\n\nIf the problem persists, send following log file as an attachment to [email protected].
dlgScDialogAssertionHandlerLinkageError.tle=Internal Error
dlgScFileComparatorAdd.edt"Arguments"=Arguments
dlgScFileComparatorAdd.edt"Command"=Command
dlgScFileComparatorAdd.edt"File Pattern"=File Pattern
dlgScFileComparatorAdd.hdl=Add external diff tool
dlgScFileComparatorAdd.inf"Define the file pattern \(e.g. \*.png\) and select the compare command which should be used to compare files matching the file pattern."=\
Define the file pattern \(e.g. \*.png\) and select the compare command which should be used to compare files matching the file pattern.
dlgScFileComparatorAdd.lbl"Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html"=\
Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html
dlgScFileComparatorAdd.mni"File"=File
dlgScFileComparatorAdd.mni"Left Encoding"=Left Encoding
dlgScFileComparatorAdd.mni"Left File"=Left File
dlgScFileComparatorAdd.mni"Left Local File"=Left Local File
dlgScFileComparatorAdd.mni"Left Title"=Left Title
dlgScFileComparatorAdd.mni"Right Encoding"=Right Encoding
dlgScFileComparatorAdd.mni"Right File"=Right File
dlgScFileComparatorAdd.mni"Right Local File"=Right Local File
dlgScFileComparatorAdd.mni"Right Title"=Right Title
dlgScFileComparatorAdd.rbt"Built-in file compare"=Built-in file compare
dlgScFileComparatorAdd.rbt"External diff tool:"=External diff tool:
dlgScFileComparatorAdd.rbt"External viewer \(invoked for both compared files\):"=\
External viewer \(invoked for both compared files\):
dlgScFileComparatorAdd.tle=Add
dlgScFileComparatorEdit.edt"Arguments"=Arguments
dlgScFileComparatorEdit.edt"Command"=Command
dlgScFileComparatorEdit.edt"File Pattern"=File Pattern
dlgScFileComparatorEdit.hdl=Edit external diff tool
dlgScFileComparatorEdit.inf"Define the file pattern \(e.g. \*.png\) and select the compare command which should be used to compare files matching the file pattern."=\
Define the file pattern \(e.g. \*.png\) and select the compare command which should be used to compare files matching the file pattern.
dlgScFileComparatorEdit.lbl"Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html"=\
Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html
dlgScFileComparatorEdit.rbt"Built-in file compare"=Built-in file compare
dlgScFileComparatorEdit.rbt"External diff tool:"=External diff tool:
dlgScFileComparatorEdit.rbt"External viewer \(invoked for both compared files\):"=\
External viewer \(invoked for both compared files\):
dlgScFileComparatorEdit.tle=Edit
dlgScFileCompareFileChanged.btn"Discard"=Discard
dlgScFileCompareFileChanged.btn"Save"=Save
dlgScFileCompareFileChanged.fur=Your changes will be lost, if you don't save them.
dlgScFileCompareFileChanged.hdl=Do you want to save your changes?
dlgScFileCompareFileChanged.tle=File Changed
dlgScFilePatternsEdit.edt"File Pattern"=File Pattern
dlgScFilePatternsEdit.hdl=Language: C#
dlgScFilePatternsEdit.inf=File patterns are used to determine file language, which is used for syntax coloring.
dlgScFilePatternsEdit.lbl"Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html"=\
Valid wildcards are ?\u00a0\(one arbitrary character\) and \*\u00a0\(any number of arbitrary characters\). Separate multiple patterns by comma. Example:\u00a0\*.txt,\u00a0\*.html
dlgScFilePatternsEdit.tle=File Patterns
dlgScFindAction.edt"Action name"=Action name
dlgScFindAction.tle=Find Command
dlgScJiraCommitMessageSelect.btn"Refresh"=Refresh
dlgScJiraCommitMessageSelect.btn"Reset to default"=Reset to default
dlgScJiraCommitMessageSelect.btn"Select"=Select
dlgScJiraCommitMessageSelect.col"Fix Version"=Fix Version
dlgScJiraCommitMessageSelect.col"Key"=Key
dlgScJiraCommitMessageSelect.col"Status"=Status
dlgScJiraCommitMessageSelect.col"Summary"=Summary
dlgScJiraCommitMessageSelect.hdl=Select commit message by JIRA issue
dlgScJiraCommitMessageSelect.inf=The selected issue summary will be used as commit message.
dlgScJiraCommitMessageSelect.lbl"Enter the JQL-Queries which will be loaded in the specified order: every query on a new line, \$\{projects\} will be substituted by the JIRA project key\(s\) which is derived or explicitly specified in your .gitbugtraq file.\n\nYou can compose a JQL query directly in JIRA, using Issues\|Search and go to Advanced view there."=\
Enter the JQL-Queries which will be loaded in the specified order: every query on a new line, \$\{projects\} will be substituted by the JIRA project key\(s\) which is derived or explicitly specified in your .gitbugtraq file.\n\nYou can compose a JQL query directly in JIRA, using Issues\|Search and go to Advanced view there.
dlgScJiraCommitMessageSelect.tle=Select Issue
dlgScJiraResolveIssue.btn"Don't Resolve"=Don't Resolve
dlgScJiraResolveIssue.btn"Resolve"=Resolve
dlgScJiraResolveIssue.edt"Resolution"=Resolution
dlgScJiraResolveIssue.edt"Summary"=Summary
dlgScJiraResolveIssue.hdl%1=Resolve issue $1
dlgScJiraResolveIssue.inf=Select whether to resolve this issue and for which version to mark as resolved.
dlgScJiraResolveIssue.tle=Resolve JIRA Issue
dlgScMasterPasswordChange.edt"Current Master Password"=Current Master Password
dlgScMasterPasswordChange.edt"New Master Password"=New Master Password
dlgScMasterPasswordChange.edt"Retype New Master Password"=Retype New Master Password
dlgScMasterPasswordChange.hdl=Change or reset the master password
dlgScMasterPasswordChange.inf=To change the master password, enter the current one. To go without a master password, leave the new field blank.
dlgScMasterPasswordChange.lbl"When setting a new master password, all stored passwords and passphrases will be lost and need to be re-entered when required!"=\
When setting a new master password, all stored passwords and passphrases will be lost and need to be re-entered when required!
dlgScMasterPasswordChange.rbt"Change master password"=Change master password
dlgScMasterPasswordChange.rbt"Set new master password"=Set new master password
dlgScMasterPasswordChange.tle=Change Master Password
dlgScMasterPasswordCreate.edt"Master Password"=Master Password
dlgScMasterPasswordCreate.edt"Retype Again"=Retype Again
dlgScMasterPasswordCreate.hdl=Configure the master password for the encrypted password store
dlgScMasterPasswordCreate.inf=The master password is used to protect passwords and passphrases which are used to authenticate with servers.
dlgScMasterPasswordCreate.lbl"Not using a master password makes your passwords and passphrases readable for everyone who has access to the password file located at $1. Use this option only if you are sure that this file is safe."=\
Not using a master password makes your passwords and passphrases readable for everyone who has access to the password file located at $1. Use this option only if you are sure that this file is safe.
dlgScMasterPasswordCreate.lbl"This master password is case-sensitive and should contain lowercase and uppercase characters, digits and other characters. Longer passwords are in general more secure than shorter ones."=\
This master password is case-sensitive and should contain lowercase and uppercase characters, digits and other characters. Longer passwords are in general more secure than shorter ones.
dlgScMasterPasswordCreate.rbt"Don't use a master password"=Don't use a master password
dlgScMasterPasswordCreate.rbt"Use the following master password"=Use the following master password
dlgScMasterPasswordCreate.tle=Master Password
dlgScPropertiesReset.btn"Reset"=Reset
dlgScPropertiesReset.fur=The new values will be active after restarting SmartGit.
dlgScPropertiesReset.hdl%1=Do you want to reset $1 system properties to their defaults?
dlgScPropertiesReset.tle=Reset Properties
dlgScPropertyEdit.edt"Value"=Value
dlgScPropertyEdit.hdl=Edit low-level property value
dlgScPropertyEdit.inf%1=Set the value for property '$1'
dlgScPropertyEdit.rbt"false"=false
dlgScPropertyEdit.rbt"true"=true
dlgScPropertyEdit.tle=Edit Property
dlgScRegisterFormLicenseConfirmDetails.edt"Add-on"=Add-on
dlgScRegisterFormLicenseConfirmDetails.edt"Address"=Address
dlgScRegisterFormLicenseConfirmDetails.edt"Email"=Email
dlgScRegisterFormLicenseConfirmDetails.edt"Free Updates Until"=Free Updates Until
dlgScRegisterFormLicenseConfirmDetails.edt"Name"=Name
dlgScRegisterFormLicenseConfirmDetails.edt"Support Until"=Support Until
dlgScRegisterFormLicenseConfirmDetails.edt"User Count"=User Count
dlgScRegisterFormLicenseConfirmDetails.tle=SmartGit License
dlgScRegisterFreeUpdatesExpiredLicense.btn"Purchase Update"=Purchase Update
dlgScRegisterFreeUpdatesExpiredLicense.fur=You may use an older SmartGit version or purchase an update license.
dlgScRegisterFreeUpdatesExpiredLicense.hdl=The free update period for this license does not cover this version.
dlgScRegisterFreeUpdatesExpiredLicense.tle=SmartGit License
dlgScSetupLicense.btn"Configure Proxy"=Configure Proxy
dlgScSetupLicense.btn"Purchase Update"=Purchase Update
dlgScSetupLicense.btn"Register"=Register
dlgScSetupLicense.edt"License File"=License File
dlgScSetupLicense.hdl=Register license file
dlgScSetupLicense.inf=Please provide your SmartGit license file you've received by email after purchase.
dlgScSetupLicense.tle=SmartGit License
dlgScSpellCheckDictionaryAdd.hdl=Add spell checker dictionary
dlgScSpellCheckDictionaryAdd.tle=Add
dlgScSpellCheckDictionaryEdit.hdl=Edit spell checker dictionary
dlgScSpellCheckDictionaryEdit.tle=Edit
dlgScSpellCheckDictionary(Add|Edit).edt"Dictionary File"=Dictionary File
dlgScSpellCheckDictionary(Add|Edit).edt"Name"=Name
dlgScSpellCheckDictionary(Add|Edit).inf"Specify the MySpell dictionary file to use, e.g. \*.dic from Mozilla Firefox' or Thunderbird's \"dictionary\" directory\). The name is used when switching between different dictionaries."=\
Specify the MySpell dictionary file to use, e.g. \*.dic from Mozilla Firefox' or Thunderbird's "dictionary" directory\). The name is used when switching between different dictionaries.
dlgScSslFingerprint.btn"Accept"=Accept
dlgScSslFingerprint.btn"Reject"=Reject
dlgScSslFingerprint.edt"SHA fingerprint"=SHA fingerprint
dlgScSslFingerprint.edt"Server"=Server
dlgScSslFingerprint.lbl"The server fingerprint has changed! Is the change correct?"=\
The server fingerprint has changed! Is the change correct?
dlgScSslFingerprint.lbl"This might indicate a security problem! When in doubt, contact your server administrator."=\
This might indicate a security problem! When in doubt, contact your server administrator.
dlgScSslFingerprint.tle=Server Fingerprint
dlgScTextFinderFindFromStart.btn"Find from Beginning"=Find from Beginning
dlgScTextFinderFindFromStart.fur=No occurrences have been found until the end of the document.
dlgScTextFinderFindFromStart.hdl=Do you want to continue from the beginning of the document?
dlgScTextFinderFindFromStart.tle=Find Text
dlgScTextFinderNothingFound.hdl=No \(more\) occurrences have been found.
dlgScTextFinderNothingFound.tle=Find Text
dlgScTextMultiComponentGoToLine.edt"Line Number"=Line Number
dlgScTextMultiComponentGoToLine.tle=Go to Line
dlgScTextMultiComponentSyntaxHighlightingSelection.tle=Select Syntax-Highlighting
dlgScTextReplace.btn"< Find"=< Find
dlgScTextReplace.btn"Find >"=Find >
dlgScTextReplace.btn"Replace"=Replace
dlgScTextReplace.chk"Case-sensitive"=Case-sensitive
dlgScTextReplace.chk"Regular Expression search"=Regular Expression search
dlgScTextReplace.chk"Replace With:"=Replace With:
dlgScTextReplace.edt"Text to Find"=Text to Find
dlgScTextReplace.tle=Find and Replace
dlgScTextSettings.chk"Coalesce nearby change blocks"=Coalesce nearby change blocks
dlgScTextSettings.chk"Split leading/trailing added or removed lines into separate blocks"=\
Split leading/trailing added or removed lines into separate blocks
dlgScTextSettings.chk"Trim equal start/end of Inner-Line changes"=\
Trim equal start/end of Inner-Line changes
dlgScTextSettings.edt"Inner-Line Comparison"=Inner-Line Comparison
dlgScTextSettings.edt"Show whitespaces"=Show whitespaces
dlgScTextSettings.edt"Tab Size"=Tab Size
dlgScTextSettings.rbt"All"=All
dlgScTextSettings.rbt"Alphanumeric words"=Alphanumeric words
dlgScTextSettings.rbt"C identifiers"=C identifiers
dlgScTextSettings.rbt"Character-based"=Character-based
dlgScTextSettings.rbt"Java identifiers"=Java identifiers
dlgScTextSettings.rbt"None"=None
dlgScTextSettings.rbt"Off"=Off
dlgScTextSettings.rbt"Trailing and changed"=Trailing and changed
dlgScTextSettings.tab"Compare"=Compare
dlgScTextSettings.tab"General"=General
dlgScTextSettings.tle=Settings
dlgScUpdateInstallationUpgrade.btn"Upgrade Now"=Upgrade Now
dlgScUpdateInstallationUpgrade.fur%1=The new version $1 has been downloaded which needs to be installed.
dlgScUpdateInstallationUpgrade.hdl=Do you want to upgrade SmartGit now?
dlgScUpdateInstallationUpgrade.tle=Upgrade SmartGit
dlgSgAbortBisectingConfirm.btn"Abort Bisect"=Abort Bisect
dlgSgAbortBisectingConfirm.fur=Your working tree is in 'bisecting' state. You may abort it to get out of this state.\n\nAborting will checkout the branch or commit before starting bisect.
dlgSgAbortBisectingConfirm.hdl=Do you want to reset your working tree?
dlgSgAbortBisectingConfirm.tle=Abort
dlgSgAbortCherryPickingConfirm.btn"Abort Cherry-Pick"=Abort Cherry-Pick
dlgSgAbortCherryPickingConfirm.fur=Your working tree is in 'cherry-picking' state. You may abort it to get out of this state and freshly start over with the cherry-picking afterwards.\n\nAborting will clean any local modification \(by invoking 'git reset --hard'\)!
dlgSgAbortCherryPickingConfirm.hdl=Do you want to reset your working tree?
dlgSgAbortCherryPickingConfirm.tle=Abort
dlgSgAbortMergingConfirm.btn"Abort Merge"=Abort Merge
dlgSgAbortMergingConfirm.fur=Your working tree is in 'merging' state. You may abort it to get out of this state and freshly start over with the merge afterwards.\n\nAborting will try to reconstruct the pre-merge state \(by invoking 'git merge --abort'\)!
dlgSgAbortMergingConfirm.hdl=Do you want to abort the current merge?
dlgSgAbortMergingConfirm.tle=Discard
dlgSgAbortRebasingConfirm.btn"Abort Rebase"=Abort Rebase
dlgSgAbortRebasingConfirm.fur=Your working tree is in 'rebasing' state. You may abort rebasing; if you just want to skip the current patch, use Branch \| Rebase \| Rebase HEAD To instead.\n\nAborting will clean any local modification \(by invoking 'git reset --hard'\)!
dlgSgAbortRebasingConfirm.hdl=Do you want to abort the rebasing?
dlgSgAbortRebasingConfirm.tle=Discard
dlgSgAbortRevertingConfirm.btn"Abort Revert"=Abort Revert
dlgSgAbortRevertingConfirm.fur=Your working tree is in 'reverting' state. You may abort it to get out of this state and freshly start over with the revert afterwards.\n\nAborting will clean any local modification \(by invoking 'git reset --hard'\)!
dlgSgAbortRevertingConfirm.hdl=Do you want to reset your working tree?
dlgSgAbortRevertingConfirm.tle=Discard
dlgSgAbout.btn"Register"=Register
dlgSgAbout.edt"Add-on"=Add-on
dlgSgAbout.edt"Address"=Address
dlgSgAbout.edt"Build Date"=Build Date
dlgSgAbout.edt"Email"=Email
dlgSgAbout.edt"Free Updates Until"=Free Updates Until
dlgSgAbout.edt"Java Version"=Java Version
dlgSgAbout.edt"Name"=Name
dlgSgAbout.edt"Settings Path"=Settings Path
dlgSgAbout.edt"Support Until"=Support Until
dlgSgAbout.edt"User Count"=User Count
dlgSgAbout.edt"Version"=Version
dlgSgAbout.tab"Credits"=Credits
dlgSgAbout.tab"Information"=Information
dlgSgAbout.tab"Licensee"=Licensee
dlgSgAbout.tle=About SmartGit
dlgSgAuthenticationRemoveAllCredentials.btn"Remove All"=Remove All
dlgSgAuthenticationRemoveAllCredentials.fur=You will have to re-enter all authentication details.
dlgSgAuthenticationRemoveAllCredentials.hdl=Are you sure to remove all known credentials?
dlgSgAuthenticationRemoveAllCredentials.tle=Remove All
dlgSgBisectStartConfirm.btn"Start Bisect with Bad HEAD"=Start Bisect with Bad HEAD
dlgSgBisectStartConfirm.btn"Start Bisect"=Start Bisect
dlgSgBisectStartConfirm.fur=You need to mark 1 commit as good and 1 commit as bad before Git can start the binary search.
dlgSgBisectStartConfirm.hdl=Should the bisect be started with a bad commit?
dlgSgBisectStartConfirm.tle=Start Bisect
dlgSgBitbucketGenerateToken.edt"Code"=Code
dlgSgBitbucketGenerateToken.edt"Link"=Link
dlgSgBitbucketGenerateToken.hdl=Enter the generated code
dlgSgBitbucketGenerateToken.inf=Authenticate at Bitbucket and enter the generated token
dlgSgBitbucketGenerateToken.lbl"Your browser should have opened automatically, let you authenticate with your preferred account at Bitbucket and grant access to SmartGit. If this didn't happen, manually open following link:"=\
Your browser should have opened automatically, let you authenticate with your preferred account at Bitbucket and grant access to SmartGit. If this didn't happen, manually open following link:
dlgSgBitbucketGenerateToken.tle=Request Access Token
dlgSgBranchAddCheckout.btn"Add Branch && Checkout"=Add Branch && Checkout
dlgSgBranchAddCheckout.btn"Add Branch"=Add Branch
dlgSgBranchAddCheckout.edt"Branch"=Branch
dlgSgBranchAddCheckout.err"Choose a different branch, the current branch can't be used."=\
Choose a different branch, the current branch can't be used.
dlgSgBranchAddCheckout.err"Enter the name of the local branch."=\
Enter the name of the local branch.
dlgSgBranchAddCheckout.err"The name must not end with a slash or dot."=\
The name must not end with a slash or dot.
dlgSgBranchAddCheckout.hdl"Add branch at commit $1"=Add branch at commit $1
dlgSgBranchAddCheckout.hdl"Add branch at current HEAD commit"=\
Add branch at current HEAD commit
dlgSgBranchAddCheckout.inf=Enter the name of the local branch to create.
dlgSgBranchAddCheckout.tle=Add Branch
dlgSgBranchAddCheckoutOverwriteExisting.btn"Overwrite"=Overwrite
dlgSgBranchAddCheckoutOverwriteExisting.fur=Click 'Cancel' to choose a different branch name.
dlgSgBranchAddCheckoutOverwriteExisting.hdl%1=The branch '$1' already exists. Do you want to overwrite it?
dlgSgBranchAddCheckoutOverwriteExisting.tle=Add Branch
dlgSgBranchDeleteCurrentNotPossible.fur=By default, SmartGit disallows to delete the current branch. To skip this restriction, set low-level property 'branch.delete.allowToDeleteCurrentBranch'.
dlgSgBranchDeleteCurrentNotPossible.hdl=You can't delete the current branch.
dlgSgBranchDeleteCurrentNotPossible.tle=Delete
dlgSgBranchDeleteLocalConfirmMultiple.btn"Delete"=Delete
dlgSgBranchDeleteLocalConfirmMultiple.chk"Delete from remote repository"=Delete from remote repository
dlgSgBranchDeleteLocalConfirmMultiple.chk"Delete tracked branches"=Delete tracked branches
dlgSgBranchDeleteLocalConfirmMultiple.fur=It might be complicated to restore deleted branches.\n\nYou may only delete a branch from your local list of remote branches, but this may bring back the branch with the next fetch.
dlgSgBranchDeleteLocalConfirmMultiple.hdl%1=Are you sure to delete $1 local branches?
dlgSgBranchDeleteLocalConfirmMultiple.tle=Delete
dlgSgBranchDeleteLocalConfirmSingle.btn"Delete"=Delete
dlgSgBranchDeleteLocalConfirmSingle.chk"Delete from remote repository '$1'"=Delete from remote repository '$1'
dlgSgBranchDeleteLocalConfirmSingle.chk"Delete tracked branch '$1'"=Delete tracked branch '$1'
dlgSgBranchDeleteLocalConfirmSingle.fur=You may lose unpushed changes or it might be complicated to restore the branch\(es\)!
dlgSgBranchDeleteLocalConfirmSingle.hdl%1=Are you sure to delete the local branch '$1'?
dlgSgBranchDeleteLocalConfirmSingle.tle=Delete
dlgSgBranchDeleteRemoteConfirmSingle.btn"Delete"=Delete
dlgSgBranchDeleteRemoteConfirmSingle.chk%1=Delete from remote '$1'
dlgSgBranchDeleteRemoteConfirmSingle.fur=You may only delete a branch from your local list of remote branches, but this may bring back the branch with the next fetch.
dlgSgBranchDeleteRemoteConfirmSingle.hdl%1=Do you want to delete the remote branch '$1'?
dlgSgBranchDeleteRemoteConfirmSingle.tle=Delete
dlgSgBranchTrackingSetConfirm.btn"Configure"=Configure
dlgSgBranchTrackingSetConfirm.fur=The necessary configuration will be performed in the .git/config file.
dlgSgBranchTrackingSetConfirm.hdl%2=Do you want to configure '$1' to track '$2'?
dlgSgBranchTrackingSetConfirm.tle=Set Tracked Branch
dlgSgBugReportSettings.btn"Exit"=Exit
dlgSgBugReportSettings.chk"Automatically send 'crash footprints' after an internal error has occurred"=\
Automatically send 'crash footprints' after an internal error has occurred
dlgSgBugReportSettings.err"Sending 'crash footprints' is required for preview builds, because their main purposes is to get as much as possible bugs reported and fixed before release."=\
Sending 'crash footprints' is required for preview builds, because their main purposes is to get as much as possible bugs reported and fixed before release.
dlgSgBugReportSettings.hdl=Crash Reporting
dlgSgBugReportSettings.inf=Please help to improve SmartGit's quality by automatically sending 'crash footprints' which do not contain any sensitive information. You can change this option later in the preferences.
dlgSgBugReportSettings.lbl"A 'crash footprint' contains details about your machine \(e.g. version of operating system\), SmartGit's version/build number, the JVM state and where the internal error occurred.\n\nIt contains NO POTENTIALLY SENSITIVE INFORMATION like user names, email addresses, file contents, file paths or server names."=\
A 'crash footprint' contains details about your machine \(e.g. version of operating system\), SmartGit's version/build number, the JVM state and where the internal error occurred.\n\nIt contains NO POTENTIALLY SENSITIVE INFORMATION like user names, email addresses, file contents, file paths or server names.
dlgSgBugReportSettings.tle=SmartGit
dlgSgCheckoutFastForwardMerge.btn"Fast-Forward-Merge"=Fast-Forward-Merge
dlgSgCheckoutFastForwardMerge.btn"Just Checkout"=Just Checkout
dlgSgCheckoutFastForwardMerge.fur=Fast-forward-merging automatically moves the branch forward to the tracked remote branch.
dlgSgCheckoutFastForwardMerge.hdl%1=Do you want to fast-forward-merge remote changes after checking out '$1'?
dlgSgCheckoutFastForwardMerge.tle=Check Out
dlgSgCheckoutLocalBranchConfirm.btn"Checkout"=Checkout
dlgSgCheckoutLocalBranchConfirm.chk=Don't show again
dlgSgCheckoutLocalBranchConfirm.fur%1=This will make '$1' your current branch.
dlgSgCheckoutLocalBranchConfirm.hdl%1=Do you want to checkout the branch '$1'?
dlgSgCheckoutLocalBranchConfirm.tle=Check Out
dlgSgCheckoutTarget.btn"Checkout"=Checkout
dlgSgCheckoutTarget.chk"Track remote branch '$1'"=Track remote branch '$1'
dlgSgCheckoutTarget.chk"Track remote branch:"=Track remote branch:
dlgSgCheckoutTarget.hdl"Check out commit"=Check out commit
dlgSgCheckoutTarget.hdl"Check out remote branch"=Check out remote branch
dlgSgCheckoutTarget.hdl"Checkout commit"=Checkout commit
dlgSgCheckoutTarget.hdl"Checkout remote branch"=Checkout remote branch
dlgSgCheckoutTarget.inf=Be careful when checking out a commit instead of a local branch: commits on top of a commit can get lost easily.
dlgSgCheckoutTarget.rbt"Checkout local branch:"=Checkout local branch:
dlgSgCheckoutTarget.rbt"Create local branch:"=Create local branch:
dlgSgCheckoutTarget.rbt"Don't create local branch \(just work read-only\)"=\
Don't create local branch \(just work read-only\)
dlgSgCheckoutTarget.tle=Check Out
dlgSgCheckoutTarget.wrn"Local branch '$1' is behind checkout target '$2'."=\
Local branch '$1' is behind checkout target '$2'.
dlgSgCheckoutTarget.wrn"Local branch '$1' is diverged from checkout target '$2'."=\
Local branch '$1' is diverged from checkout target '$2'.
dlgSgCheckoutTargetAlreadyExistsOverwrite.btn"Overwrite"=Overwrite
dlgSgCheckoutTargetAlreadyExistsOverwrite.fur=Click 'Cancel' to choose a different branch name.
dlgSgCheckoutTargetAlreadyExistsOverwrite.hdl%1=The branch '$1' already exists. Do you want to overwrite it?
dlgSgCheckoutTargetAlreadyExistsOverwrite.tle=Check Out
dlgSgCherryPickConfirmation.btn"Cherry-Pick && Commit"=Cherry-Pick && Commit
dlgSgCherryPickConfirmation.btn"Cherry-Pick"=Cherry-Pick
dlgSgCherryPickConfirmation.chk=Append source SHA to commit message
dlgSgCherryPickConfirmation.fur=This will cherry-pick the selected commit into the Working Tree.
dlgSgCherryPickConfirmation.hdl=Do you want to cherry-pick?
dlgSgCherryPickConfirmation.tle=Cherry-Pick
dlgSgCherryPickFailedBecauseOfConflicts.chk=Don't show again
dlgSgCherryPickFailedBecauseOfConflicts.fur=You may need to resolve the conflicts before proceeding.
dlgSgCherryPickFailedBecauseOfConflicts.hdl=Cherry-picking failed because of conflicts.
dlgSgCherryPickFailedBecauseOfConflicts.tle=Cherry Pick
dlgSgCherryPickUnpushedCommits.btn"Cherry-Pick"=Cherry-Pick
dlgSgCherryPickUnpushedCommits.fur=At least one of the selected commits has not been pushed yet, hence cherry-pick is only local and won't be translated to SVN \(mergeinfo\).
dlgSgCherryPickUnpushedCommits.hdl=Do you want to cherry-pick unpushed commits?
dlgSgCherryPickUnpushedCommits.tle=Cherry-Pick
dlgSgClean.btn"Clean Working Tree"=Clean Working Tree
dlgSgClean.chk"Remove only ignored files"=Remove only ignored files
dlgSgClean.chk"Remove untracked directories"=Remove untracked directories
dlgSgClean.hdl=Remove untracked files
dlgSgClean.inf=Select which untracked files should be removed.
dlgSgClean.tle=Clean Working Tree
dlgSgClone.btn"< Back"=< Back
dlgSgClone.btn"Finish"=Finish
dlgSgClone.btn"Next >"=Next >
dlgSgClone.chk"Create upstream remote"=Create upstream remote
dlgSgClone.chk"Fetch all Heads and Tags"=Fetch all Heads and Tags
dlgSgClone.chk"Fetch all commits"=Fetch all commits
dlgSgClone.chk"Include Submodules"=Include Submodules
dlgSgClone.chk"Just initialize clone \(expert mode, not officially supported!\)"=\
Just initialize clone \(expert mode, not officially supported!\)
dlgSgClone.chk"Just initialize clone \(expert mode\)"=Just initialize clone \(expert mode\)
dlgSgClone.chk"Map SVN trunk, tags and branches to Git"=\
Map SVN trunk, tags and branches to Git
dlgSgClone.edt"Check Out Branch"=Check Out Branch
dlgSgClone.edt"Fetch Only the Latest"=Fetch Only the Latest
dlgSgClone.edt"Fetch Only"=Fetch Only
dlgSgClone.edt"Local Directory"=Local Directory
dlgSgClone.edt"Path"=Path
dlgSgClone.edt"Repository URL"=Repository URL
dlgSgClone.err"Please select an empty, local directory for the new repository."=\
Please select an empty, local directory for the new repository.
dlgSgClone.err"Please specify the URL of the remote repository to be cloned."=\
Please specify the URL of the remote repository to be cloned.
dlgSgClone.err"Please specify the root directory of a local repository."=\
Please specify the root directory of a local repository.
dlgSgClone.inf"Customize how and what to clone."=\
Customize how and what to clone.
dlgSgClone.inf"Specify the Git or SVN repository to clone."=\
Specify the Git or SVN repository to clone.
dlgSgClone.inf"Specify the Git, Mercurial or SVN repository to clone."=\
Specify the Git, Mercurial or SVN repository to clone.
dlgSgClone.inf"Specify the local directory for the new repository."=\
Specify the local directory for the new repository.
dlgSgClone.mni"Add Hosting Provider"=Add Hosting Provider
dlgSgClone.rbt"Clone all revisions \(recommended\)"=Clone all revisions \(recommended\)
dlgSgClone.rbt"Clone from revision:"=Clone from revision:
dlgSgClone.rbt"Local Git or Mercurial repository"=Local Git or Mercurial repository
dlgSgClone.rbt"Local Git repository"=Local Git repository
dlgSgClone.rbt"Remote Git or SVN repository"=Remote Git or SVN repository
dlgSgClone.rbt"Remote Git, Mercurial or SVN repository"=\
Remote Git, Mercurial or SVN repository
dlgSgClone.tle=Clone
dlgSgCloneRepositoryType.btn"Git"=Git
dlgSgCloneRepositoryType.btn"Mercurial"=Mercurial
dlgSgCloneRepositoryType.btn"SVN"=SVN
dlgSgCloneRepositoryType.fur=The specified URL protocol is ambiguous and may refer to different types of repositories.
dlgSgCloneRepositoryType.hdl=Select the type of repository you are going to clone.
dlgSgCloneRepositoryType.tle=Clone
dlgSgCloneSvnDetachedHeadSuccess.fur=SmartGit now continues to fetch all other revisions in the background. You may safely start working with the repository now; only log-related operations will be affected by this intermediate state.\n\nOnce SmartGit has finished the background part of the clone, it will let you know in the notifications area \(status bar\) and you can complete the clone there.
dlgSgCloneSvnDetachedHeadSuccess.hdl=HEAD revision has been successfully cloned.
dlgSgCloneSvnDetachedHeadSuccess.tle=Clone
dlgSgCommit.btn"Commit && Push"=Commit && Push
dlgSgCommit.btn"Commit"=Commit
dlgSgCommit.btn"Select from Log"=Select from Log
dlgSgCommit.btn"Select"=Select
dlgSgCommit.chk"Add 'Signed-off-by' signature"=Add 'Signed-off-by' signature
dlgSgCommit.chk"Amend last commit instead of creating new one"=\
Amend last commit instead of creating new one
dlgSgCommit.chk"Bypass commit hook"=Bypass commit hook
dlgSgCommit.col"Directory"=Directory
dlgSgCommit.col"Name"=Name
dlgSgCommit.edt"Commit Message"=Commit Message
dlgSgCommit.edt"Create"=Create
dlgSgCommit.err"Enter a commit message describing \(the reason for\) the commit."=\
Enter a commit message describing \(the reason for\) the commit.
dlgSgCommit.hdl=Commit local or staged changes
dlgSgCommit.inf=Select the files you want to commit and provide a commit message.
dlgSgCommit.mni"Deselect All"=Deselect All
dlgSgCommit.mni"JIRA"=JIRA
dlgSgCommit.mni"Log"=Log
dlgSgCommit.mni"Select All"=Select All
dlgSgCommit.mni"Select from Log"=Select from Log
dlgSgCommit.mni"Show Changes"=Show Changes
dlgSgCommit.mni"Toggle"=Toggle
dlgSgCommit.rbt"Local Changes"=Local Changes
dlgSgCommit.rbt"Merge commit \(multiple parents\)"=Merge commit \(multiple parents\)
dlgSgCommit.rbt"Simple commit \(one parent, \"squash\"\)"=Simple commit \(one parent, "squash"\)
dlgSgCommit.rbt"Staged Changes"=Staged Changes
dlgSgCommit.tle=Commit
dlgSgCommit.wrn"All staged changes have been selected for commit, as this is necessary in 'Reverting' state."=\
All staged changes have been selected for commit, as this is necessary in 'Reverting' state.
dlgSgCommit.wrn"When modifying or splitting a commit, you first need to commit all local changes before being able to continue the rebase."=\
When modifying or splitting a commit, you first need to commit all local changes before being able to continue the rebase.
dlgSgCommitAmendAlreadyPushedCommit.btn"Amend"=Amend
dlgSgCommitAmendAlreadyPushedCommit.fur=If you amend a pushed commit, you will need to force-push it later. This might overwrite other users' changes.
dlgSgCommitAmendAlreadyPushedCommit.hdl=Are you sure to amend an already pushed commit?
dlgSgCommitAmendAlreadyPushedCommit.tle=Commit
dlgSgCommitContinueRebaseOrCreateAdditionalCommit.btn"Continue Rebase"=Continue Rebase
dlgSgCommitContinueRebaseOrCreateAdditionalCommit.btn"Create Commit"=Create Commit
dlgSgCommitContinueRebaseOrCreateAdditionalCommit.fur=The repository is in 'rebasing' state. Instead of creating an additional commit as part of your rebased commits, you will usually just want continue the rebase.
dlgSgCommitContinueRebaseOrCreateAdditionalCommit.hdl=Do you want to continue the rebase or create an additional commit?
dlgSgCommitContinueRebaseOrCreateAdditionalCommit.tle=Rebase
dlgSgCommitIndexAllWorkingTreeChanges.btn"Commit All Working Tree Changes"=Commit All Working Tree Changes
dlgSgCommitIndexAllWorkingTreeChanges.chk=Don't show again
dlgSgCommitIndexAllWorkingTreeChanges.fur=No file is staged yet. To stage individual changes, click Cancel. Otherwise all working tree changes will get staged and committed.
dlgSgCommitIndexAllWorkingTreeChanges.hdl=Do you want to commit all working tree changes?
dlgSgCommitIndexAllWorkingTreeChanges.tle=Commit
dlgSgCommitIndexNoFilesFound.fur=Neither staged files nor locally changed files were found.
dlgSgCommitIndexNoFilesFound.hdl=There is nothing to commit.
dlgSgCommitIndexNoFilesFound.tle=Commit
dlgSgCommitNoFilesFoundNotAllowEmpty.fur=Neither staged files nor locally changed files were found.
dlgSgCommitNoFilesFoundNotAllowEmpty.hdl=There is nothing to commit.
dlgSgCommitNoFilesFoundNotAllowEmpty.tle=Commit
dlgSgCommitSelectMessageFromLog.btn"Branches"=Branches
dlgSgCommitSelectMessageFromLog.btn"Select"=Select
dlgSgCommitSelectMessageFromLog.chk"Add 'fixup!' prefix for easier automatic squashing using Interactive Rebase"=\
Add 'fixup!' prefix for easier automatic squashing using Interactive Rebase
dlgSgCommitSelectMessageFromLog.hdl=Select a commit
dlgSgCommitSelectMessageFromLog.inf=Choose the commit whose message should be used.
dlgSgCommitSelectMessageFromLog.mni"Author"=Author
dlgSgCommitSelectMessageFromLog.mni"Branches and Tags"=Branches and Tags
dlgSgCommitSelectMessageFromLog.mni"Committer"=Committer
dlgSgCommitSelectMessageFromLog.mni"Copy ID"=Copy ID
dlgSgCommitSelectMessageFromLog.mni"Copy Message"=Copy Message
dlgSgCommitSelectMessageFromLog.mni"File Content \(very expensive\)"=File Content \(very expensive\)
dlgSgCommitSelectMessageFromLog.mni"File \(expensive\)"=File \(expensive\)
dlgSgCommitSelectMessageFromLog.mni"Forget Pattern"=Forget Pattern
dlgSgCommitSelectMessageFromLog.mni"ID"=ID
dlgSgCommitSelectMessageFromLog.mni"Message"=Message
dlgSgCommitSelectMessageFromLog.mni"Refresh"=Refresh
dlgSgCommitSelectMessageFromLog.mni"Regular Expressions"=Regular Expressions
dlgSgCommitSelectMessageFromLog.mni"Remember Pattern"=Remember Pattern
dlgSgCommitSelectMessageFromLog.tle=Select Commit Message
dlgSgCommitToDetachedHead.btn"Commit Anyway"=Commit Anyway
dlgSgCommitToDetachedHead.fur=The repository HEAD currently does not point to branch, but directly refers to a commit \(SHA\). When committing, the newly created commit will only be reachable by its SHA and hence may get lost easily.\n\nInstead of committing now, you should first create a branch for your current HEAD and commit afterwards.
dlgSgCommitToDetachedHead.hdl=Do you want to commit to a detached HEAD?
dlgSgCommitToDetachedHead.tle=Commit
dlgSgCompareTwoFiles.btn"Compare with Each Other"=Compare with Each Other
dlgSgCompareTwoFiles.btn"Compare with Repository"=Compare with Repository
dlgSgCompareTwoFiles.fur=The files can be compared to their repository content or to each other.
dlgSgCompareTwoFiles.hdl=Should the selected two files be compared with each other?
dlgSgCompareTwoFiles.tle=Compare
dlgSgConflictSolverStageForCommit.btn"Don't Stage"=Don't Stage
dlgSgConflictSolverStageForCommit.btn"Stage"=Stage
dlgSgConflictSolverStageForCommit.fur=Staging is necessary to resolve the file's conflict status.
dlgSgConflictSolverStageForCommit.hdl=Do you want to stage the file for commit now?
dlgSgConflictSolverStageForCommit.tle=Stage for Commit
dlgSgCustomizeProjectUi.btn"Add"=Add
dlgSgCustomizeProjectUi.btn"Assign"=Assign
dlgSgCustomizeProjectUi.btn"Clear"=Clear
dlgSgCustomizeProjectUi.btn"Remove"=Remove
dlgSgCustomizeProjectUi.btn"Reset"=Reset
dlgSgCustomizeProjectUi.chk"Show text below icon"=Show text below icon
dlgSgCustomizeProjectUi.col"Accelerator"=Accelerator
dlgSgCustomizeProjectUi.col"Available"=Available
dlgSgCustomizeProjectUi.col"Default"=Default
dlgSgCustomizeProjectUi.col"Menu Item"=Menu Item
dlgSgCustomizeProjectUi.col"Selected"=Selected
dlgSgCustomizeProjectUi.edt"Accelerator"=Accelerator
dlgSgCustomizeProjectUi.mni"Regular Expressions"=Regular Expressions
dlgSgCustomizeProjectUi.tab"Accelerators"=Accelerators
dlgSgCustomizeProjectUi.tab"Toolbar"=Toolbar
dlgSgCustomizeProjectUi.tle=Customize
dlgSgDeleteFileTrash.hdl%1=Are you sure to delete '$1'?
dlgSgDeleteFilesTrash.hdl%1=Are you sure to delete the $1 selected files?
dlg(SgDeleteFileTrash|SgDeleteFilesTrash).btn"Delete"=Delete
dlg(SgDeleteFileTrash|SgDeleteFilesTrash).btn"Move to Trash"=Move to Trash
dlg(SgDeleteFileTrash|SgDeleteFilesTrash).fur=If you click Delete you may require file recovery tools to restore the deleted files!
dlg(SgDeleteFileTrash|SgDeleteFilesTrash).tle=Delete
dlgSgDiscard.btn"Discard"=Discard
dlgSgDiscard.col"Directory"=Directory
dlgSgDiscard.col"Name"=Name
dlgSgDiscard.edt"Revert to"=Revert to
dlgSgDiscard.hdl=Discard local or staged changes
dlgSgDiscard.inf=Select the files for which changes should be discarded and whether to set them back to Index or HEAD state.
dlgSgDiscard.rbt"HEAD"=HEAD
dlgSgDiscard.rbt"Index"=Index
dlgSgDiscard.tle=Discard
dlgSgDiscardNoFilesFound.fur=Neither staged files nor locally changed files were found.
dlgSgDiscardNoFilesFound.hdl=There is nothing to discard.
dlgSgDiscardNoFilesFound.tle=Discard
dlgSgDiscardRevertToHead.hdl%1=Are you sure to reset $1 files back to their HEAD state?
dlgSgDiscardRevertToIndex.hdl%1=Are you sure to reset $1 files back to their Index state?
dlgSgDiscardRevertTo(Head|Index).btn"Discard"=Discard
dlgSgDiscardRevertTo(Head|Index).fur=The content might be hard to restore!
dlgSgDiscardRevertTo(Head|Index).tle=Discard
dlgSgErrorUtilsClientException.fur"Repository '$1' is not valid."=Repository '$1' is not valid.
dlgSgErrorUtilsClientException.fur"svn: $1"=svn: $1
dlgSgErrorUtilsClientException.hdl=Executing a command has failed.
dlgSgErrorUtilsClientException.tle=Command Failed
dlgSgFileCompareNoChanges.btn"Open"=Open
dlgSgFileCompareNoChanges.chk=Don't show again
dlgSgFileCompareNoChanges.fur=Both file contents are byte-wise equal.\nTo see the file contents anyway, click 'Open'.
dlgSgFileCompareNoChanges.hdl=Open the file compare though no changes will be shown?
dlgSgFileCompareNoChanges.tle=File Compare
dlgSgFindObject.edt"Repository Path, Commit ID or Ref"=\
Repository Path, Commit ID or Ref
dlgSgFindObject.tle=Find Object
dlgSgFlowBranchDivergedHandlerFastForward.btn"Fast-Forward"=Fast-Forward
dlgSgFlowBranchDivergedHandlerFastForward.fur%3=The local branch '$1' is behind its tracked branch '$2'. You may fast-forward now or do it manually later, e.g. by checking out the branch '$3'.
dlgSgFlowBranchDivergedHandlerFastForward.hdl%2=Should branch '$1' be fast-forwarded to '$2'?
dlgSgFlowBranchDivergedHandlerFastForward.tle=Start Feature
dlgSgFlowBranchDivergedHandlerReplaceRemote.btn"Replace"=Replace
dlgSgFlowBranchDivergedHandlerReplaceRemote.fur%2=The local branch '$1' seems to contain more recent but rewritten commits of remote branch '$2'.\n\nIf you are not sure whether the local branch is actually more recent than the remote branch, you should better cancel this operation and investigate local and remote changes in more detail.
dlgSgFlowBranchDivergedHandlerReplaceRemote.hdl%2=Should branch '$1' replace remote branch '$2'?
dlgSgFlowBranchDivergedHandlerReplaceRemote.tle=Finish Feature
dlgSgFlowBranchDivergedHandlerResetToRemote.btn"Reset"=Reset
dlgSgFlowBranchDivergedHandlerResetToRemote.fur%2=The remote branch '$1' seems to contain more recent but rewritten commits of local branch '$2'.\n\nIf you are not sure whether the remote branch is actually more recent than the local branch, you should better cancel this operation and investigate local and remote changes in more detail.
dlgSgFlowBranchDivergedHandlerResetToRemote.hdl%2=Should branch '$1' be reset to remote branch '$2'?
dlgSgFlowBranchDivergedHandlerResetToRemote.tle=Finish Feature
dlgSgFlowConfigure.btn"Reset to Defaults"=Reset to Defaults
dlgSgFlowConfigure.edt"Develop Branch"=Develop Branch
dlgSgFlowConfigure.edt"Feature Branches"=Feature Branches
dlgSgFlowConfigure.edt"Git-Flow Type"=Git-Flow Type
dlgSgFlowConfigure.edt"Hot-Fix Branches"=Hot-Fix Branches
dlgSgFlowConfigure.edt"Main Development Branch"=Main Development Branch
dlgSgFlowConfigure.edt"Master Branch"=Master Branch
dlgSgFlowConfigure.edt"Prefix for Feature Branches"=Prefix for Feature Branches
dlgSgFlowConfigure.edt"Release Branches"=Release Branches
dlgSgFlowConfigure.edt"Remote"=Remote
dlgSgFlowConfigure.edt"Support Branches"=Support Branches
dlgSgFlowConfigure.edt"Version Tags"=Version Tags
dlgSgFlowConfigure.hdl=Configure the branch naming scheme
dlgSgFlowConfigure.inf=Configure how your feature, release and hotfix branches should be named.
dlgSgFlowConfigure.rbt"Full \(feature, release, hotfix, support branches\)"=\
Full \(feature, release, hotfix, support branches\)
dlgSgFlowConfigure.rbt"Light \(just feature branches\)"=Light \(just feature branches\)
dlgSgFlowConfigure.tle=Configure Git-Flow
dlgSgFlowConfigureChangeOrSwitchOff.btn"Change Configuration"=Change Configuration
dlgSgFlowConfigureChangeOrSwitchOff.btn"Switch-Off Git-Flow"=Switch-Off Git-Flow
dlgSgFlowConfigureChangeOrSwitchOff.fur=Git-Flow is already configured for this repository. You may change the Git-Flow configuration or switch-off the Git-Flow features. In both cases, the file ~/.git/config will be modified accordingly.
dlgSgFlowConfigureChangeOrSwitchOff.hdl=Do you want to change or switch-off the Git-Flow configuration?
dlgSgFlowConfigureChangeOrSwitchOff.tle=Configure Git-Flow
dlgSgFlowFeatureFinish.btn"Finish"=Finish
dlgSgFlowFeatureFinish.btn"Select from Log"=Select from Log
dlgSgFlowFeatureFinish.btn"Select"=Select
dlgSgFlowFeatureFinish.chk"Delete feature branch"=Delete feature branch
dlgSgFlowFeatureFinish.chk"Fetch latest commits and remove remote feature branch"=\
Fetch latest commits and remove remote feature branch
dlgSgFlowFeatureFinish.edt"Commit Message"=Commit Message
dlgSgFlowFeatureFinish.hdl=Finish current feature
dlgSgFlowFeatureFinish.inf"Choose how to finish the current feature. This operation will integrate the feature into the '$1' branch."=\
Choose how to finish the current feature. This operation will integrate the feature into the '$1' branch.
dlgSgFlowFeatureFinish.inf"Choose how to finish the feature branch '$1'. This operation will integrate the feature into the '$2' branch."=\
Choose how to finish the feature branch '$1'. This operation will integrate the feature into the '$2' branch.
dlgSgFlowFeatureFinish.mni"JIRA"=JIRA
dlgSgFlowFeatureFinish.mni"Log"=Log
dlgSgFlowFeatureFinish.rbt"Create merge commit"=Create merge commit
dlgSgFlowFeatureFinish.rbt"Create simple commit \(squash\)"=Create simple commit \(squash\)
dlgSgFlowFeatureFinish.rbt"Rebase onto '$1'"=Rebase onto '$1'
dlgSgFlowFeatureFinish.tle=Finish Feature
dlgSgFlowFeatureStart.btn"Start"=Start
dlgSgFlowFeatureStart.edt"Base"=Base
dlgSgFlowFeatureStart.edt"Feature Name"=Feature Name
dlgSgFlowFeatureStart.err"A feature with this name already exists. Choose a different name."=\
A feature with this name already exists. Choose a different name.
dlgSgFlowFeatureStart.err"Invalid feature name: The name must not end with a slash or dot."=\
Invalid feature name: The name must not end with a slash or dot.
dlgSgFlowFeatureStart.hdl=Start a new feature
dlgSgFlowFeatureStart.inf%1=Enter the name of the new feature branch. This operation will fork a new branch from the '$1' branch.
dlgSgFlowFeatureStart.lbl"Resulting Branch: $1"=Resulting Branch: $1
dlgSgFlowFeatureStart.tle=Start Feature
dlgSgFlowHotfixFinish.btn"Finish"=Finish
dlgSgFlowHotfixFinish.btn"Select from Log"=Select from Log
dlgSgFlowHotfixFinish.chk"Create version tag"=Create version tag
dlgSgFlowHotfixFinish.chk"Create version tag:"=Create version tag:
dlgSgFlowHotfixFinish.chk"Delete hotfix branch"=Delete hotfix branch
dlgSgFlowHotfixFinish.chk"Fetch latest '$1' commits"=Fetch latest '$1' commits
dlgSgFlowHotfixFinish.chk"Merge to develop"=Merge to develop
dlgSgFlowHotfixFinish.chk"Push results and remove remote hotfix branch"=\
Push results and remove remote hotfix branch
dlgSgFlowHotfixFinish.edt"Commit Message"=Commit Message
dlgSgFlowHotfixFinish.hdl=Finish a hotfix
dlgSgFlowHotfixFinish.inf"Choose how to finish the current hotfix. This operation will merge the hotfix into the '$1' and '$2' branches."=\
Choose how to finish the current hotfix. This operation will merge the hotfix into the '$1' and '$2' branches.
dlgSgFlowHotfixFinish.inf"Choose how to finish the hotfix branch '$1'. This operation will merge the hotfix into the '$2' and '$3' branches."=\
Choose how to finish the hotfix branch '$1'. This operation will merge the hotfix into the '$2' and '$3' branches.
dlgSgFlowHotfixFinish.inf"Choose how to finish the hotfix branch '$1'."=\
Choose how to finish the hotfix branch '$1'.
dlgSgFlowHotfixFinish.tle=Finish Hotfix
dlgSgFlowHotfixStart.btn"Start"=Start
dlgSgFlowHotfixStart.chk"Fetch from '$1' branch"=Fetch from '$1' branch
dlgSgFlowHotfixStart.chk"Fetch from base branch"=Fetch from base branch
dlgSgFlowHotfixStart.edt"Base"=Base
dlgSgFlowHotfixStart.edt"Hotfix Name"=Hotfix Name
dlgSgFlowHotfixStart.hdl=Start a new hotfix
dlgSgFlowHotfixStart.inf%1=Enter the name of the new hotfix branch. This operation will fork a new branch from the '$1' branch.
dlgSgFlowHotfixStart.lbl"Resulting Branch: $1"=Resulting Branch: $1
dlgSgFlowHotfixStart.tle=Start Hotfix
dlgSgFlowIntegrateDevelop.btn"Integrate"=Integrate
dlgSgFlowIntegrateDevelop.chk"Fetch latest '$1' commits from remote repository"=\
Fetch latest '$1' commits from remote repository
dlgSgFlowIntegrateDevelop.hdl%1=Integrate commits from '$1'
dlgSgFlowIntegrateDevelop.inf"Merge or rebase commits from the main development line to the current feature."=\
Merge or rebase commits from the main development line to the current feature.
dlgSgFlowIntegrateDevelop.inf"Merge or rebase commits from the main development line to the feature branch '$1'."=\
Merge or rebase commits from the main development line to the feature branch '$1'.
dlgSgFlowIntegrateDevelop.rbt"Merge from '$1'"=Merge from '$1'
dlgSgFlowIntegrateDevelop.rbt"Rebase current feature onto '$1'"=Rebase current feature onto '$1'
dlgSgFlowIntegrateDevelop.tle=Integrate Develop
dlgSgFlowReleaseFinish.btn"Finish"=Finish
dlgSgFlowReleaseFinish.btn"Select from Log"=Select from Log
dlgSgFlowReleaseFinish.chk"Create version tag"=Create version tag
dlgSgFlowReleaseFinish.chk"Create version tag:"=Create version tag:
dlgSgFlowReleaseFinish.chk"Delete release branch"=Delete release branch
dlgSgFlowReleaseFinish.chk"Fetch latest '$1' and '$2' commits"=\
Fetch latest '$1' and '$2' commits
dlgSgFlowReleaseFinish.chk"Push results and remove remote release branch"=\
Push results and remove remote release branch
dlgSgFlowReleaseFinish.edt"Commit Message"=Commit Message
dlgSgFlowReleaseFinish.hdl=Finish a release
dlgSgFlowReleaseFinish.inf"Choose how to finish the release branch '$1'. This operation will merge the current release into the '$2' and '$3' branches."=\
Choose how to finish the release branch '$1'. This operation will merge the current release into the '$2' and '$3' branches.
dlgSgFlowReleaseFinish.inf"Choose how to finish the release branch '$1'."=\
Choose how to finish the release branch '$1'.
dlgSgFlowReleaseFinish.tle=Finish Release
dlgSgFlowReleaseStart.btn"Start"=Start
dlgSgFlowReleaseStart.chk"Fetch from base branch"=Fetch from base branch
dlgSgFlowReleaseStart.edt"Base"=Base
dlgSgFlowReleaseStart.edt"Release Name"=Release Name
dlgSgFlowReleaseStart.hdl=Start a new release
dlgSgFlowReleaseStart.inf%1=Enter the name of the new release branch. This operation will fork a new branch from the '$1' branch.
dlgSgFlowReleaseStart.lbl"Resulting Branch: $1"=Resulting Branch: $1
dlgSgFlowReleaseStart.tle=Start Release
dlgSgGarbageCollector.btn"Run Garbage Collector"=Run Garbage Collector
dlgSgGarbageCollector.chk"Also prune recently created objects"=Also prune recently created objects
dlgSgGarbageCollector.chk"Expire reflog now \(will also delete stashes!\)"=\
Expire reflog now \(will also delete stashes!\)
dlgSgGarbageCollector.chk"Optimize repository more aggressively \(may take a while\)"=\
Optimize repository more aggressively \(may take a while\)
dlgSgGarbageCollector.hdl=Run Garbage Collector
dlgSgGarbageCollector.inf=Running the Git garbage collector will prune unreachable objects and optimize the local repository in order to reduce disk space and increase performance.
dlgSgGarbageCollector.tle=Run Garbage Collector
dlgSgGitHubGenerateToken.btn"Authenticate"=Authenticate
dlgSgGitHubGenerateToken.edt"Account"=Account
dlgSgGitHubGenerateToken.edt"Code"=Code
dlgSgGitHubGenerateToken.edt"Link"=Link
dlgSgGitHubGenerateToken.edt"Password"=Password
dlgSgGitHubGenerateToken.hdl=Generate a new API token for GitHub
dlgSgGitHubGenerateToken.inf=Authenticate at GitHub using OAuth or by providing your credentials.
dlgSgGitHubGenerateToken.lbl"Your browser should have opened automatically, let you authenticate with your preferred account at GitHub and grant access to SmartGit. If this didn't happen, manually open following link:"=\
Your browser should have opened automatically, let you authenticate with your preferred account at GitHub and grant access to SmartGit. If this didn't happen, manually open following link:
dlgSgGitHubGenerateToken.rbt"Authenticate using OAuth \(recommended\)"=Authenticate using OAuth \(recommended\)
dlgSgGitHubGenerateToken.rbt"Authenticate with your GitHub account and password"=\
Authenticate with your GitHub account and password
dlgSgGitHubGenerateToken.tle=Generate API Token
dlgSgGitHubPullRequestCreate.btn"Create"=Create
dlgSgGitHubPullRequestCreate.chk"Draft \(don\'t notify code owners yet\)"=Draft \(don\'t notify code owners yet\)
dlgSgGitHubPullRequestCreate.edt"$1 \u21d2"=$1 \u21d2
dlgSgGitHubPullRequestCreate.edt"Title and Description"=Title and Description
dlgSgGitHubPullRequestCreate.hdl=Create a Pull Request
dlgSgGitHubPullRequestCreate.inf=Send pull request to another repository or branch.
dlgSgGitHubPullRequestCreate.tle=Create Pull Request
dlgSgGitHubPullRequestMerge.btn"Merge"=Merge
dlgSgGitHubPullRequestMerge.btn"Select from Log"=Select from Log
dlgSgGitHubPullRequestMerge.edt"Commit Message"=Commit Message
dlgSgGitHubPullRequestMerge.hdl=Merge a Pull Request
dlgSgGitHubPullRequestMerge.inf=Choose how to merge the selected Pull Request.
dlgSgGitHubPullRequestMerge.lbl"If you have integrated the Pull Request manually, choose this option to close the Pull Request on the server."=\
If you have integrated the Pull Request manually, choose this option to close the Pull Request on the server.
dlgSgGitHubPullRequestMerge.lbl"If your are fine with the Pull Request changes, choose this option to perform the merge directly on the GitHub server."=\
If your are fine with the Pull Request changes, choose this option to perform the merge directly on the GitHub server.
dlgSgGitHubPullRequestMerge.lbl"To locally check how a Pull Request integrates with the latest commits, choose this option."=\
To locally check how a Pull Request integrates with the latest commits, choose this option.
dlgSgGitHubPullRequestMerge.rbt"Mark as merged on GitHub Server"=\
Mark as merged on GitHub Server
dlgSgGitHubPullRequestMerge.rbt"Merge on GitHub Server"=Merge on GitHub Server
dlgSgGitHubPullRequestMerge.rbt"Merge to Local Repository"=Merge to Local Repository
dlgSgGitHubPullRequestMerge.tle=Merge Pull Request
dlgSgGitLabGenerateToken.edt"Link"=Link
dlgSgGitLabGenerateToken.edt"Token"=Token
dlgSgGitLabGenerateToken.hdl=Enter the generated token
dlgSgGitLabGenerateToken.inf=Authenticate at GitLab and enter the generated token.
dlgSgGitLabGenerateToken.lbl"Your browser should have opened automatically, let you authenticate with your preferred account at GitLab and grant access to SmartGit. If this didn't happen, manually open following link:"=\
Your browser should have opened automatically, let you authenticate with your preferred account at GitLab and grant access to SmartGit. If this didn't happen, manually open following link:
dlgSgGitLabGenerateToken.tle=Request Access Token
dlgSgGitLabMergeRequestCreate.btn"Create"=Create
dlgSgGitLabMergeRequestCreate.edt"$1 \u21d2"=$1 \u21d2
dlgSgGitLabMergeRequestCreate.edt"Title and Description"=Title and Description
dlgSgGitLabMergeRequestCreate.hdl=Create a Merge Request
dlgSgGitLabMergeRequestCreate.inf=Send merge request to another repository or branch.
dlgSgGitLabMergeRequestCreate.tle=Create Merge Request
dlgSgGitLabSettingsInvalidToken.fur=Use a Personal Access Token from your GitLab account.
dlgSgGitLabSettingsInvalidToken.hdl=Please enter a Personal Access Token for your GitLab account.
dlgSgGitLabSettingsInvalidToken.tle=Input Validation
dlgSgHeadMessageListenerReplaceMessage.btn"Don't Replace"=Don't Replace
dlgSgHeadMessageListenerReplaceMessage.btn"Replace This Time"=Replace This Time
dlgSgHeadMessageListenerReplaceMessage.chk=Never replace if a message is already entered
dlgSgHeadMessageListenerReplaceMessage.fur=If the commit message input field is empty, the HEAD commit's message will be re-used automatically.
dlgSgHeadMessageListenerReplaceMessage.hdl=Replace entered commit message with the HEAD commit's message?
dlgSgHeadMessageListenerReplaceMessage.tle=Commit
dlgSgHistoryEditAuthor.btn"Set Author"=Set Author
dlgSgHistoryEditAuthor.edt"Email"=Email
dlgSgHistoryEditAuthor.edt"User Name"=User Name
dlgSgHistoryEditAuthor.hdl=Edit commit author
dlgSgHistoryEditAuthor.inf=Enter the new commit author and its email address.
dlgSgHistoryEditAuthor.tle=Edit Author
dlgSgHistoryEditMessage.btn"Select from Log"=Select from Log
dlgSgHistoryEditMessage.btn"Select"=Select
dlgSgHistoryEditMessage.btn"Set Message"=Set Message
dlgSgHistoryEditMessage.edt"Commit Message"=Commit Message
dlgSgHistoryEditMessage.hdl=Edit commit message
dlgSgHistoryEditMessage.inf=Enter the new commit message.
dlgSgHistoryEditMessage.mni"JIRA"=JIRA
dlgSgHistoryEditMessage.mni"Log"=Log
dlgSgHistoryEditMessage.tle=Edit Commit Message
dlgSgHistoryModifySplitConfirm.btn"Modify"=Modify
dlgSgHistoryModifySplitConfirm.btn"Split"=Split
dlgSgHistoryModifySplitConfirm.fur='Modify' will stop after the commit.\n\n'Split' will put the changes into the Index. You may discard some changes that should go into the second commit.\n\nAfter you've done the changes, process the remaining commits by continuing the rebase.
dlgSgHistoryModifySplitConfirm.hdl%1=Do you want to modify or split commit $1?
dlgSgHistoryModifySplitConfirm.tle=Modify or Split Commit
dlgSgHistoryPushCommitsReplaceRemoteBranch.btn"Force Push"=Force Push
dlgSgHistoryPushCommitsReplaceRemoteBranch.fur=Pushing to the remote branch is not fast-forward, so the push has to be forced. The commits in the remote branch will be lost.
dlgSgHistoryPushCommitsReplaceRemoteBranch.hdl%1=Do you want to replace the remote branch by commit $1?
dlgSgHistoryPushCommitsReplaceRemoteBranch.tle=Push Up To
dlgSgHistoryPushCommitsUpToCommit.btn"Push"=Push
dlgSgHistoryPushCommitsUpToCommit.fur=All commits up to the selected commit will be pushed to the remote repository.
dlgSgHistoryPushCommitsUpToCommit.hdl%1=Do you want to push changes up to commit $1?
dlgSgHistoryPushCommitsUpToCommit.tle=Push Up To
dlgSgHistoryPushedCommitsModifyPushedCommits.btn"Modify Pushed Commits"=Modify Pushed Commits
dlgSgHistoryPushedCommitsModifyPushedCommits.fur=Commits which are already pushed are known to other users and may have been used by them to build theirs commits upon. When modifying such commits, these users may run into unexpected conflicts later.
dlgSgHistoryPushedCommitsModifyPushedCommits.hdl=Do you want to modify commits which are already pushed?
dlgSgHistoryPushedCommitsModifyPushedCommits.tle=Journal
dlgSgHistorySquash.btn"Select from Log"=Select from Log
dlgSgHistorySquash.btn"Select"=Select
dlgSgHistorySquash.btn"Squash Commits"=Squash Commits
dlgSgHistorySquash.edt"Authorship"=Authorship
dlgSgHistorySquash.edt"Commit Message"=Commit Message
dlgSgHistorySquash.hdl=Squash multiple commits
dlgSgHistorySquash.inf=The selected commits will be replaced by one squashed commit containing all changes of the individual commits.
dlgSgHistorySquash.mni"JIRA"=JIRA
dlgSgHistorySquash.mni"Log"=Log
dlgSgHistorySquash.tle=Squash Commits
dlgSgHostingProviderAdd.btn"Add"=Add
dlgSgHostingProviderAdd.btn"Generate API Token"=Generate API Token
dlgSgHostingProviderAdd.btn"Generate Token"=Generate Token
dlgSgHostingProviderAdd.chk"Use OAuth token for repository authentication \(instead of password\)"=\
Use OAuth token for repository authentication \(instead of password\)
dlgSgHostingProviderAdd.chk"Use SSH instead of HTTPS to access repositories"=\
Use SSH instead of HTTPS to access repositories
dlgSgHostingProviderAdd.chk"Use SSL client certificates \(usually not required\)"=\
Use SSL client certificates \(usually not required\)
dlgSgHostingProviderAdd.chk"Use a GitHub Enterprise instance"=Use a GitHub Enterprise instance
dlgSgHostingProviderAdd.chk"Use a custom GitLab server"=Use a custom GitLab server
dlgSgHostingProviderAdd.edt"Account"=Account
dlgSgHostingProviderAdd.edt"Certificate Password"=Certificate Password
dlgSgHostingProviderAdd.edt"Client Certificate"=Client Certificate
dlgSgHostingProviderAdd.edt"Domain"=Domain
dlgSgHostingProviderAdd.edt"Password"=Password
dlgSgHostingProviderAdd.edt"Server URL"=Server URL
dlgSgHostingProviderAdd.edt"Token"=Token
dlgSgHostingProviderAdd.edt"User Name"=User Name
dlgSgHostingProviderAdd.hdl=Configure a new hosting provider account
dlgSgHostingProviderAdd.inf=Select for which hosting provider you want to configure a new account.
dlgSgHostingProviderAdd.lbl"The \(API\) token is a special auto-generated credential which SmartGit will use to authenticate at GitHub. It adds another layer of security, as you can easily revoke access by removing the token from the GitHub front-end."=\
The \(API\) token is a special auto-generated credential which SmartGit will use to authenticate at GitHub. It adds another layer of security, as you can easily revoke access by removing the token from the GitHub front-end.
dlgSgHostingProviderAdd.lbl"The token may either be an autogenerated OAuth-token \(use 'Generate Token' below\) or a 'personal access token' which you can generate yourself in your GitLab account settings."=\
The token may either be an autogenerated OAuth-token \(use 'Generate Token' below\) or a 'personal access token' which you can generate yourself in your GitLab account settings.
dlgSgHostingProviderAdd.lbl"Use the same login information as for the assembla website."=\
Use the same login information as for the assembla website.
dlgSgHostingProviderAdd.lbl"Use the same login information as for the beanstalk website and make sure that for 'My Profile' - 'Account' - 'Account Settings' - 'Developer API' is enabled."=\
Use the same login information as for the beanstalk website and make sure that for 'My Profile' - 'Account' - 'Account Settings' - 'Developer API' is enabled.
dlgSgHostingProviderAdd.lbl"Use the same login information as for the codebasehq website."=\
Use the same login information as for the codebasehq website.
dlgSgHostingProviderAdd.lbl"Use the same login information as for the unfuddle website."=\
Use the same login information as for the unfuddle website.
dlgSgHostingProviderAdd.tle=Add Hosting Provider
dlgSgHostingProviderEdit.btn"Generate API Token"=Generate API Token
dlgSgHostingProviderEdit.btn"Generate Token"=Generate Token
dlgSgHostingProviderEdit.chk"Use OAuth token for repository authentication \(instead of password\)"=\
Use OAuth token for repository authentication \(instead of password\)
dlgSgHostingProviderEdit.chk"Use SSH instead of HTTPS to access repositories"=\
Use SSH instead of HTTPS to access repositories
dlgSgHostingProviderEdit.chk"Use a GitHub Enterprise instance"=Use a GitHub Enterprise instance
dlgSgHostingProviderEdit.chk"Use a custom GitLab server"=Use a custom GitLab server
dlgSgHostingProviderEdit.edt"Certificate Password"=Certificate Password
dlgSgHostingProviderEdit.edt"Client Certificate"=Client Certificate
dlgSgHostingProviderEdit.edt"Name"=Name
dlgSgHostingProviderEdit.edt"Server URL"=Server URL
dlgSgHostingProviderEdit.edt"Token"=Token
dlgSgHostingProviderEdit.err"Please enter a Personal Access Token for your GitLab account."=\
Please enter a Personal Access Token for your GitLab account.
dlgSgHostingProviderEdit.err"Please enter an OAuth 'refresh' token."=\
Please enter an OAuth 'refresh' token.
dlgSgHostingProviderEdit.err"Please enter the API token."=Please enter the API token.
dlgSgHostingProviderEdit.err"Please specify the private key file."=\
Please specify the private key file.
dlgSgHostingProviderEdit.hdl%1=Configure $1 account
dlgSgHostingProviderEdit.inf%1=Please specify your credentials to connect to $1.
dlgSgHostingProviderEdit.lbl"The \(API\) token is a special auto-generated credential which SmartGit will use to authenticate at GitHub. It adds another layer of security, as you can easily revoke access by removing the token from the GitHub front-end."=\
The \(API\) token is a special auto-generated credential which SmartGit will use to authenticate at GitHub. It adds another layer of security, as you can easily revoke access by removing the token from the GitHub front-end.
dlgSgHostingProviderEdit.lbl"The token may either be an autogenerated OAuth-token \(use 'Generate Token' below\) or a 'personal access token' which you can generate yourself in your GitLab account settings."=\
The token may either be an autogenerated OAuth-token \(use 'Generate Token' below\) or a 'personal access token' which you can generate yourself in your GitLab account settings.
dlgSgHostingProviderEdit.tle=GitLab
dlgSgHostingProviderSelectRepository.btn"Select"=Select
dlgSgHostingProviderSelectRepository.col"Name"=Name
dlgSgHostingProviderSelectRepository.col"Namespace"=Namespace
dlgSgHostingProviderSelectRepository.col"Repository"=Repository
dlgSgHostingProviderSelectRepository.tle=GitHub Projects
dlgSgHttpPasswordAuthenticationFailedCause1.fur%3=The OAuth-access token could not be requested. Most likely your $1 configuration has changed and SmartGit's stored OAuth credentials are invalid.\n\nTo resolve, recreate the $2 hosting provider in the Preferences.\n\nDetails:\n\n$3
dlgSgHttpPasswordAuthenticationFailedCause1.hdl%1=$1 OAuth-authentication failed
dlgSgHttpPasswordAuthenticationFailedCause1.tle=HTTP authentication
dlgSgHttpPasswordCredentials.btn"Login"=Login
dlgSgHttpPasswordCredentials.chk"Store password"=Store password
dlgSgHttpPasswordCredentials.edt"Password"=Password
dlgSgHttpPasswordCredentials.edt"User Name"=User Name
dlgSgHttpPasswordCredentials.hdl%1=Login to '$1'
dlgSgHttpPasswordCredentials.inf=Provide the user name and password for authenticating to the repository.
dlgSgHttpPasswordCredentials.tle=Login
dlgSgIgnoreDirectoryConfirm.btn"Ignore"=Ignore
dlgSgIgnoreDirectoryConfirm.edt"Ignore File"=Ignore File
dlgSgIgnoreDirectoryConfirm.fur=The directory name will be added to the ignore file. If the ignore file does not exist, it will be created.