-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgit.pot
More file actions
3395 lines (2688 loc) · 63.5 KB
/
Copy pathgit.pot
File metadata and controls
3395 lines (2688 loc) · 63.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: Git Mailing List <git@vger.kernel.org>\n"
"POT-Creation-Date: 2012-02-01 20:52+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: commit.c:47
#, c-format
msgid "could not parse %s"
msgstr ""
#: commit.c:49
#, c-format
msgid "%s %s is not a commit!"
msgstr ""
#: compat/obstack.c:406 compat/obstack.c:408
msgid "memory exhausted"
msgstr ""
#: connected.c:39
msgid "Could not run 'git rev-list'"
msgstr ""
#: connected.c:48
#, c-format
msgid "failed write to rev-list: %s"
msgstr ""
#: connected.c:56
#, c-format
msgid "failed to close rev-list's stdin: %s"
msgstr ""
#: diff.c:104
#, c-format
msgid " Failed to parse dirstat cut-off percentage '%.*s'\n"
msgstr ""
#: diff.c:109
#, c-format
msgid " Unknown dirstat parameter '%.*s'\n"
msgstr ""
#: diff.c:208
#, c-format
msgid ""
"Found errors in 'diff.dirstat' config variable:\n"
"%s"
msgstr ""
#: diff.c:1479 diff.c:1510 builtin/apply.c:3244
#, c-format
msgid " %d files changed, %d insertions(+), %d deletions(-)\n"
msgstr ""
#: diff.c:3308
#, c-format
msgid ""
"Failed to parse --dirstat/-X option parameter:\n"
"%s"
msgstr ""
#: gpg-interface.c:59
msgid "could not run gpg."
msgstr ""
#: gpg-interface.c:71
msgid "gpg did not accept the data"
msgstr ""
#: gpg-interface.c:82
msgid "gpg failed to sign the data"
msgstr ""
#: help.c:309
#, c-format
msgid ""
"'%s' appears to be a git command, but we were not\n"
"able to execute it. Maybe git-%s is broken?"
msgstr ""
#: remote.c:1575
#, c-format
msgid "Your branch is ahead of '%s' by %d %s.\n"
msgstr ""
#: remote.c:1577 remote.c:1582
msgid "commit"
msgid_plural "commits"
msgstr[0] ""
msgstr[1] ""
#: remote.c:1579
#, c-format
msgid "Your branch is behind '%s' by %d %s, and can be fast-forwarded.\n"
msgstr ""
#: remote.c:1584
#, c-format
msgid ""
"Your branch and '%s' have diverged,\n"
"and have %d and %d different commit(s) each, respectively.\n"
msgstr ""
#: wt-status.c:134
msgid "Unmerged paths:"
msgstr ""
#: wt-status.c:140 wt-status.c:157
#, c-format
msgid " (use \"git reset %s <file>...\" to unstage)"
msgstr ""
#: wt-status.c:142 wt-status.c:159
msgid " (use \"git rm --cached <file>...\" to unstage)"
msgstr ""
#: wt-status.c:143
msgid " (use \"git add/rm <file>...\" as appropriate to mark resolution)"
msgstr ""
#: wt-status.c:151
msgid "Changes to be committed:"
msgstr ""
#: wt-status.c:169
msgid "Changes not staged for commit:"
msgstr ""
#: wt-status.c:173
msgid " (use \"git add <file>...\" to update what will be committed)"
msgstr ""
#: wt-status.c:175
msgid " (use \"git add/rm <file>...\" to update what will be committed)"
msgstr ""
#: wt-status.c:176
msgid ""
" (use \"git checkout -- <file>...\" to discard changes in working directory)"
msgstr ""
#: wt-status.c:178
msgid " (commit or discard the untracked or modified content in submodules)"
msgstr ""
#: wt-status.c:187
#, c-format
msgid "%s files:"
msgstr ""
#: wt-status.c:190
#, c-format
msgid " (use \"git %s <file>...\" to include in what will be committed)"
msgstr ""
#: wt-status.c:207
msgid "bug"
msgstr ""
#: wt-status.c:212
msgid "both deleted:"
msgstr ""
#: wt-status.c:213
msgid "added by us:"
msgstr ""
#: wt-status.c:214
msgid "deleted by them:"
msgstr ""
#: wt-status.c:215
msgid "added by them:"
msgstr ""
#: wt-status.c:216
msgid "deleted by us:"
msgstr ""
#: wt-status.c:217
msgid "both added:"
msgstr ""
#: wt-status.c:218
msgid "both modified:"
msgstr ""
#: wt-status.c:248
msgid "new commits, "
msgstr ""
#: wt-status.c:250
msgid "modified content, "
msgstr ""
#: wt-status.c:252
msgid "untracked content, "
msgstr ""
#: wt-status.c:266
#, c-format
msgid "new file: %s"
msgstr ""
#: wt-status.c:269
#, c-format
msgid "copied: %s -> %s"
msgstr ""
#: wt-status.c:272
#, c-format
msgid "deleted: %s"
msgstr ""
#: wt-status.c:275
#, c-format
msgid "modified: %s"
msgstr ""
#: wt-status.c:278
#, c-format
msgid "renamed: %s -> %s"
msgstr ""
#: wt-status.c:281
#, c-format
msgid "typechange: %s"
msgstr ""
#: wt-status.c:284
#, c-format
msgid "unknown: %s"
msgstr ""
#: wt-status.c:287
#, c-format
msgid "unmerged: %s"
msgstr ""
#: wt-status.c:290
#, c-format
msgid "bug: unhandled diff status %c"
msgstr ""
#: wt-status.c:713
msgid "On branch "
msgstr ""
#: wt-status.c:720
msgid "Not currently on any branch."
msgstr ""
#: wt-status.c:731
msgid "Initial commit"
msgstr ""
#: wt-status.c:745
msgid "Untracked"
msgstr ""
#: wt-status.c:747
msgid "Ignored"
msgstr ""
#: wt-status.c:749
#, c-format
msgid "Untracked files not listed%s"
msgstr ""
#: wt-status.c:751
msgid " (use -u option to show untracked files)"
msgstr ""
#: wt-status.c:757
msgid "No changes"
msgstr ""
#: wt-status.c:761
#, c-format
msgid "no changes added to commit%s\n"
msgstr ""
#: wt-status.c:763
msgid " (use \"git add\" and/or \"git commit -a\")"
msgstr ""
#: wt-status.c:765
#, c-format
msgid "nothing added to commit but untracked files present%s\n"
msgstr ""
#: wt-status.c:767
msgid " (use \"git add\" to track)"
msgstr ""
#: wt-status.c:769 wt-status.c:772 wt-status.c:775
#, c-format
msgid "nothing to commit%s\n"
msgstr ""
#: wt-status.c:770
msgid " (create/copy files and use \"git add\" to track)"
msgstr ""
#: wt-status.c:773
msgid " (use -u to show untracked files)"
msgstr ""
#: wt-status.c:776
msgid " (working directory clean)"
msgstr ""
#: wt-status.c:884
msgid "HEAD (no branch)"
msgstr ""
#: wt-status.c:890
msgid "Initial commit on "
msgstr ""
#: wt-status.c:905
msgid "behind "
msgstr ""
#: wt-status.c:908 wt-status.c:911
msgid "ahead "
msgstr ""
#: wt-status.c:913
msgid ", behind "
msgstr ""
#: builtin/add.c:62
#, c-format
msgid "unexpected diff status %c"
msgstr ""
#: builtin/add.c:67 builtin/commit.c:298
msgid "updating files failed"
msgstr ""
#: builtin/add.c:77
#, c-format
msgid "remove '%s'\n"
msgstr ""
#: builtin/add.c:176
#, c-format
msgid "Path '%s' is in submodule '%.*s'"
msgstr ""
#: builtin/add.c:192
msgid "Unstaged changes after refreshing the index:"
msgstr ""
#: builtin/add.c:195 builtin/add.c:455 builtin/rm.c:186
#, c-format
msgid "pathspec '%s' did not match any files"
msgstr ""
#: builtin/add.c:209
#, c-format
msgid "'%s' is beyond a symbolic link"
msgstr ""
#: builtin/add.c:276
msgid "Could not read the index"
msgstr ""
#: builtin/add.c:285
#, c-format
msgid "Could not open '%s' for writing."
msgstr ""
#: builtin/add.c:289
msgid "Could not write patch"
msgstr ""
#: builtin/add.c:294
#, c-format
msgid "Could not stat '%s'"
msgstr ""
#: builtin/add.c:296
msgid "Empty patch. Aborted."
msgstr ""
#: builtin/add.c:302
#, c-format
msgid "Could not apply '%s'"
msgstr ""
#: builtin/add.c:311
msgid "The following paths are ignored by one of your .gitignore files:\n"
msgstr ""
#: builtin/add.c:351
#, c-format
msgid "Use -f if you really want to add them.\n"
msgstr ""
#: builtin/add.c:352
msgid "no files added"
msgstr ""
#: builtin/add.c:358
msgid "adding files failed"
msgstr ""
#: builtin/add.c:390
msgid "-A and -u are mutually incompatible"
msgstr ""
#: builtin/add.c:392
msgid "Option --ignore-missing can only be used together with --dry-run"
msgstr ""
#: builtin/add.c:412
#, c-format
msgid "Nothing specified, nothing added.\n"
msgstr ""
#: builtin/add.c:413
#, c-format
msgid "Maybe you wanted to say 'git add .'?\n"
msgstr ""
#: builtin/add.c:419 builtin/clean.c:95 builtin/commit.c:358 builtin/mv.c:82
#: builtin/rm.c:162
msgid "index file corrupt"
msgstr ""
#: builtin/add.c:475 builtin/mv.c:229 builtin/rm.c:260
msgid "Unable to write new index file"
msgstr ""
#: builtin/archive.c:17
#, c-format
msgid "could not create archive file '%s'"
msgstr ""
#: builtin/archive.c:20
msgid "could not redirect output"
msgstr ""
#: builtin/archive.c:37
msgid "git archive: Remote with no URL"
msgstr ""
#: builtin/archive.c:58
msgid "git archive: expected ACK/NAK, got EOF"
msgstr ""
#: builtin/archive.c:63
#, c-format
msgid "git archive: NACK %s"
msgstr ""
#: builtin/archive.c:65
#, c-format
msgid "remote error: %s"
msgstr ""
#: builtin/archive.c:66
msgid "git archive: protocol error"
msgstr ""
#: builtin/archive.c:71
msgid "git archive: expected a flush"
msgstr ""
#: builtin/branch.c:137
#, c-format
msgid ""
"deleting branch '%s' that has been merged to\n"
" '%s', but not yet merged to HEAD."
msgstr ""
#: builtin/branch.c:141
#, c-format
msgid ""
"not deleting branch '%s' that is not yet merged to\n"
" '%s', even though it is merged to HEAD."
msgstr ""
#. TRANSLATORS: This is "remote " in "remote branch '%s' not found"
#: builtin/branch.c:163
msgid "remote "
msgstr ""
#: builtin/branch.c:171
msgid "cannot use -a with -d"
msgstr ""
#: builtin/branch.c:177
msgid "Couldn't look up commit object for HEAD"
msgstr ""
#: builtin/branch.c:182
#, c-format
msgid "Cannot delete the branch '%s' which you are currently on."
msgstr ""
#: builtin/branch.c:192
#, c-format
msgid "%sbranch '%s' not found."
msgstr ""
#: builtin/branch.c:200
#, c-format
msgid "Couldn't look up commit object for '%s'"
msgstr ""
#: builtin/branch.c:206
#, c-format
msgid ""
"The branch '%s' is not fully merged.\n"
"If you are sure you want to delete it, run 'git branch -D %s'."
msgstr ""
#: builtin/branch.c:214
#, c-format
msgid "Error deleting %sbranch '%s'"
msgstr ""
#: builtin/branch.c:219
#, c-format
msgid "Deleted %sbranch %s (was %s).\n"
msgstr ""
#: builtin/branch.c:224
msgid "Update of config-file failed"
msgstr ""
#: builtin/branch.c:322
#, c-format
msgid "branch '%s' does not point at a commit"
msgstr ""
#: builtin/branch.c:394
#, c-format
msgid "behind %d] "
msgstr ""
#: builtin/branch.c:396
#, c-format
msgid "ahead %d] "
msgstr ""
#: builtin/branch.c:398
#, c-format
msgid "ahead %d, behind %d] "
msgstr ""
#: builtin/branch.c:501
msgid "(no branch)"
msgstr ""
#: builtin/branch.c:562
msgid "some refs could not be read"
msgstr ""
#: builtin/branch.c:575
msgid "cannot rename the current branch while not on any."
msgstr ""
#: builtin/branch.c:585
#, c-format
msgid "Invalid branch name: '%s'"
msgstr ""
#: builtin/branch.c:600
msgid "Branch rename failed"
msgstr ""
#: builtin/branch.c:604
#, c-format
msgid "Renamed a misnamed branch '%s' away"
msgstr ""
#: builtin/branch.c:608
#, c-format
msgid "Branch renamed to %s, but HEAD is not updated!"
msgstr ""
#: builtin/branch.c:615
msgid "Branch is renamed, but update of config-file failed"
msgstr ""
#: builtin/branch.c:630
#, c-format
msgid "malformed object name %s"
msgstr ""
#: builtin/branch.c:654
#, c-format
msgid "could not write branch description template: %s\n"
msgstr ""
#: builtin/branch.c:742
msgid "Failed to resolve HEAD as a valid ref."
msgstr ""
#: builtin/branch.c:747
msgid "HEAD not found below refs/heads!"
msgstr ""
#: builtin/branch.c:790
msgid "-a and -r options to 'git branch' do not make sense with a branch name"
msgstr ""
#: builtin/bundle.c:47
#, c-format
msgid "%s is okay\n"
msgstr ""
#: builtin/bundle.c:56
msgid "Need a repository to create a bundle."
msgstr ""
#: builtin/bundle.c:60
msgid "Need a repository to unbundle."
msgstr ""
#: builtin/checkout.c:113 builtin/checkout.c:146
#, c-format
msgid "path '%s' does not have our version"
msgstr ""
#: builtin/checkout.c:115 builtin/checkout.c:148
#, c-format
msgid "path '%s' does not have their version"
msgstr ""
#: builtin/checkout.c:131
#, c-format
msgid "path '%s' does not have all necessary versions"
msgstr ""
#: builtin/checkout.c:175
#, c-format
msgid "path '%s' does not have necessary versions"
msgstr ""
#: builtin/checkout.c:192
#, c-format
msgid "path '%s': cannot merge"
msgstr ""
#: builtin/checkout.c:209
#, c-format
msgid "Unable to add merge result for '%s'"
msgstr ""
#: builtin/checkout.c:212 builtin/reset.c:158
#, c-format
msgid "make_cache_entry failed for path '%s'"
msgstr ""
#: builtin/checkout.c:234 builtin/checkout.c:392
msgid "corrupt index file"
msgstr ""
#: builtin/checkout.c:264 builtin/checkout.c:271
#, c-format
msgid "path '%s' is unmerged"
msgstr ""
#: builtin/checkout.c:302 builtin/checkout.c:498 builtin/clone.c:769
#: builtin/merge.c:809
msgid "unable to write new index file"
msgstr ""
#: builtin/checkout.c:319 builtin/diff.c:298 builtin/merge.c:406
msgid "diff_setup_done failed"
msgstr ""
#: builtin/checkout.c:414
msgid "you need to resolve your current index first"
msgstr ""
#: builtin/checkout.c:547
#, c-format
msgid "Can not do reflog for '%s'\n"
msgstr ""
#: builtin/checkout.c:579
msgid "HEAD is now at"
msgstr ""
#: builtin/checkout.c:586
#, c-format
msgid "Reset branch '%s'\n"
msgstr ""
#: builtin/checkout.c:589
#, c-format
msgid "Already on '%s'\n"
msgstr ""
#: builtin/checkout.c:593
#, c-format
msgid "Switched to and reset branch '%s'\n"
msgstr ""
#: builtin/checkout.c:595
#, c-format
msgid "Switched to a new branch '%s'\n"
msgstr ""
#: builtin/checkout.c:597
#, c-format
msgid "Switched to branch '%s'\n"
msgstr ""
#: builtin/checkout.c:653
#, c-format
msgid " ... and %d more.\n"
msgstr ""
#. The singular version
#: builtin/checkout.c:659
#, c-format
msgid ""
"Warning: you are leaving %d commit behind, not connected to\n"
"any of your branches:\n"
"\n"
"%s\n"
msgid_plural ""
"Warning: you are leaving %d commits behind, not connected to\n"
"any of your branches:\n"
"\n"
"%s\n"
msgstr[0] ""
msgstr[1] ""
#: builtin/checkout.c:677
#, c-format
msgid ""
"If you want to keep them by creating a new branch, this may be a good time\n"
"to do so with:\n"
"\n"
" git branch new_branch_name %s\n"
"\n"
msgstr ""
#: builtin/checkout.c:706
msgid "internal error in revision walk"
msgstr ""
#: builtin/checkout.c:710
msgid "Previous HEAD position was"
msgstr ""
#: builtin/checkout.c:736
msgid "You are on a branch yet to be born"
msgstr ""
#. case (1)
#: builtin/checkout.c:867
#, c-format
msgid "invalid reference: %s"
msgstr ""
#. case (1): want a tree
#: builtin/checkout.c:906
#, c-format
msgid "reference is not a tree: %s"
msgstr ""
#: builtin/checkout.c:975
msgid "-B cannot be used with -b"
msgstr ""
#: builtin/checkout.c:984
msgid "--patch is incompatible with all other options"
msgstr ""
#: builtin/checkout.c:987
msgid "--detach cannot be used with -b/-B/--orphan"
msgstr ""
#: builtin/checkout.c:989
msgid "--detach cannot be used with -t"
msgstr ""
#: builtin/checkout.c:995
msgid "--track needs a branch name"
msgstr ""
#: builtin/checkout.c:1002
msgid "Missing branch name; try -b"
msgstr ""
#: builtin/checkout.c:1008
msgid "--orphan and -b|-B are mutually exclusive"
msgstr ""
#: builtin/checkout.c:1010
msgid "--orphan cannot be used with -t"
msgstr ""
#: builtin/checkout.c:1020
msgid "git checkout: -f and -m are incompatible"
msgstr ""
#: builtin/checkout.c:1054
msgid "invalid path specification"
msgstr ""
#: builtin/checkout.c:1062
#, c-format
msgid ""
"git checkout: updating paths is incompatible with switching branches.\n"
"Did you intend to checkout '%s' which can not be resolved as commit?"
msgstr ""
#: builtin/checkout.c:1064
msgid "git checkout: updating paths is incompatible with switching branches."
msgstr ""
#: builtin/checkout.c:1069
msgid "git checkout: --detach does not take a path argument"
msgstr ""
#: builtin/checkout.c:1072
msgid ""
"git checkout: --ours/--theirs, --force and --merge are incompatible when\n"
"checking out of the index."
msgstr ""
#: builtin/checkout.c:1091
msgid "Cannot switch branch to a non-commit."
msgstr ""
#: builtin/checkout.c:1094
msgid "--ours/--theirs is incompatible with switching branches."
msgstr ""
#: builtin/clean.c:78
msgid "-x and -X cannot be used together"
msgstr ""
#: builtin/clean.c:82
msgid ""
"clean.requireForce set to true and neither -n nor -f given; refusing to clean"
msgstr ""
#: builtin/clean.c:85
msgid ""
"clean.requireForce defaults to true and neither -n nor -f given; refusing to "
"clean"
msgstr ""
#: builtin/clean.c:155 builtin/clean.c:176
#, c-format
msgid "Would remove %s\n"
msgstr ""
#: builtin/clean.c:159 builtin/clean.c:179
#, c-format
msgid "Removing %s\n"
msgstr ""
#: builtin/clean.c:162 builtin/clean.c:182
#, c-format
msgid "failed to remove %s"
msgstr ""
#: builtin/clean.c:166
#, c-format
msgid "Would not remove %s\n"
msgstr ""
#: builtin/clean.c:168
#, c-format
msgid "Not removing %s\n"
msgstr ""
#: builtin/clone.c:244
#, c-format
msgid "reference repository '%s' is not a local directory."
msgstr ""
#: builtin/clone.c:311
#, c-format
msgid "failed to open '%s'"
msgstr ""
#: builtin/clone.c:315
#, c-format
msgid "failed to create directory '%s'"
msgstr ""
#: builtin/clone.c:317 builtin/diff.c:75
#, c-format
msgid "failed to stat '%s'"
msgstr ""
#: builtin/clone.c:319
#, c-format
msgid "%s exists and is not a directory"
msgstr ""
#: builtin/clone.c:333
#, c-format
msgid "failed to stat %s\n"
msgstr ""
#: builtin/clone.c:350
#, c-format
msgid "failed to unlink '%s'"
msgstr ""
#: builtin/clone.c:355
#, c-format
msgid "failed to create link '%s'"
msgstr ""
#: builtin/clone.c:359
#, c-format
msgid "failed to copy file to '%s'"
msgstr ""
#: builtin/clone.c:391
#, c-format
msgid "done.\n"
msgstr ""
#: builtin/clone.c:494
msgid "Too many arguments."
msgstr ""
#: builtin/clone.c:498
msgid "You must specify a repository to clone."
msgstr ""
#: builtin/clone.c:506
#, c-format
msgid "--bare and --origin %s options are incompatible."
msgstr ""
#: builtin/clone.c:520
#, c-format
msgid "repository '%s' does not exist"
msgstr ""
#: builtin/clone.c:525
msgid "--depth is ignored in local clones; use file:// instead."
msgstr ""
#: builtin/clone.c:535
#, c-format
msgid "destination path '%s' already exists and is not an empty directory."
msgstr ""
#: builtin/clone.c:545
#, c-format
msgid "working tree '%s' already exists."
msgstr ""
#: builtin/clone.c:558 builtin/clone.c:572
#, c-format
msgid "could not create leading directories of '%s'"
msgstr ""
#: builtin/clone.c:561
#, c-format
msgid "could not create work tree dir '%s'."
msgstr ""
#: builtin/clone.c:580
#, c-format
msgid "Cloning into bare repository '%s'...\n"
msgstr ""
#: builtin/clone.c:582
#, c-format
msgid "Cloning into '%s'...\n"
msgstr ""
#: builtin/clone.c:641
#, c-format
msgid "Don't know how to clone %s"