1
# SOME DESCRIPTIVE TITLE.
2
# Copyright (C) YEAR Canonical
3
# This file is distributed under the same license as the brz package.
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
9
"Project-Id-Version: brz\n"
10
"Report-Msgid-Bugs-To: <bazaar@canonical.com>\n"
11
"POT-Creation-Date: 2019-01-14 01:26+0000\n"
12
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
"Language-Team: LANGUAGE <LL@li.org>\n"
17
"Content-Type: text/plain; charset=CHARSET\n"
18
"Content-Transfer-Encoding: 8bit\n"
19
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
22
#, python-brace-format
23
msgid "skipping {0} (larger than {1} of {2} bytes)"
26
#: breezy/bisect.py:266
27
msgid "Find an interesting commit using a binary search."
30
#: breezy/bisect.py:268
32
"Bisecting, in a nutshell, is a way to find the commit at which\n"
33
"some testable change was made, such as the introduction of a bug\n"
34
"or feature. By identifying a version which did not have the\n"
35
"interesting change and a later version which did, a developer\n"
36
"can test for the presence of the change at various points in\n"
37
"the history, eventually ending up at the precise commit when\n"
38
"the change was first introduced."
41
#: breezy/bisect.py:276
43
"This command uses subcommands to implement the search, each\n"
44
"of which changes the state of the bisection. The\n"
48
#: breezy/bisect.py:280
51
" Start a bisect, possibly clearing out a previous bisect."
54
#: breezy/bisect.py:283
56
"brz bisect yes [-r rev]\n"
57
" The specified revision (or the current revision, if not given)\n"
58
" has the characteristic we're looking for,"
61
#: breezy/bisect.py:287
63
"brz bisect no [-r rev]\n"
64
" The specified revision (or the current revision, if not given)\n"
65
" does not have the characteristic we're looking for,"
68
#: breezy/bisect.py:291
70
"brz bisect move -r rev\n"
71
" Switch to a different revision manually. Use if the bisect\n"
72
" algorithm chooses a revision that is not suitable. Try to\n"
73
" move as little as possible."
76
#: breezy/bisect.py:296
79
" Clear out a bisection in progress."
82
#: breezy/bisect.py:299
84
"brz bisect log [-o file]\n"
85
" Output a log of the current bisection to standard output, or\n"
86
" to the specified file."
89
#: breezy/bisect.py:303
91
"brz bisect replay <logfile>\n"
92
" Replay a previously-saved bisect log, forgetting any bisection\n"
93
" that might be in progress."
96
#: breezy/bisect.py:307
98
"brz bisect run <script>\n"
99
" Bisect automatically using <script> to determine 'yes' or 'no'.\n"
100
" <script> should exit with:\n"
102
" 125 for unknown (like build failed so we could not test)\n"
103
" anything else for no"
106
# help of 'output' option of 'bisect' command
107
#: breezy/bisect.py:317
108
msgid "Write log to this file."
111
#: breezy/branch.py:832
115
#: breezy/branch.py:2020
117
msgid "Pushed up to revision %d."
120
#: breezy/branch.py:2022
122
msgid "%d tag updated."
123
msgid_plural "%d tags updated."
127
#: breezy/branch.py:2026
128
msgid "No new revisions or tags to push."
131
#: breezy/branch.py:2028
132
msgid "No new revisions to push."
135
#: breezy/branch.py:2048
136
#, python-brace-format
137
msgid "checked branch {0} format {1}"
140
#: breezy/branch.py:2051
142
msgid "found error:%s"
145
#: breezy/builtins.py:259 breezy/builtins.py:3015 breezy/workingtree.py:243
147
msgid "Ignoring files outside view. View is %s"
150
#: breezy/builtins.py:269
152
msgid "brz %s --revision takes exactly one revision identifier"
155
#: breezy/builtins.py:324
156
msgid "Display status summary."
159
#: breezy/builtins.py:326
161
"This reports on versioned and unknown files, reporting them\n"
162
"grouped by state. Possible states are:"
165
#: breezy/builtins.py:329
168
" Versioned in the working copy but not in the previous revision."
171
#: breezy/builtins.py:332
174
" Versioned in the previous revision but removed or deleted\n"
175
" in the working copy."
178
#: breezy/builtins.py:336
181
" Path of this file changed from the previous revision;\n"
182
" the text may also have changed. This includes files whose\n"
183
" parent directory was renamed."
186
#: breezy/builtins.py:341
189
" Text has changed since the previous revision."
192
#: breezy/builtins.py:344
195
" File kind has been changed (e.g. from file to directory)."
198
#: breezy/builtins.py:347
201
" Not versioned and not matching an ignore pattern."
204
#: breezy/builtins.py:350
206
"Additionally for directories, symlinks and files with a changed\n"
207
"executable bit, Bazaar indicates their type using a trailing\n"
208
"character: '/', '@' or '*' respectively. These decorations can be\n"
209
"disabled using the '--no-classify' option."
212
#: breezy/builtins.py:355
214
"To see ignored files use 'brz ignored'. For details on the\n"
215
"changes to file texts, use 'brz diff'."
218
#: breezy/builtins.py:358
220
"Note that --short or -S gives status flags for each item, similar\n"
221
"to Subversion's status command. To get output similar to svn -q,\n"
222
"use brz status -SV."
225
#: breezy/builtins.py:362
227
"If no arguments are specified, the status of the entire working\n"
228
"directory is shown. Otherwise, only the status of the specified\n"
229
"files or directories is reported. If a directory is given, status\n"
230
"is reported for everything inside that directory."
233
#: breezy/builtins.py:367
235
"Before merges are committed, the pending merge tip revisions are\n"
236
"shown. To see all pending merge revisions, use the -v option.\n"
237
"To skip the display of pending merge information altogether, use\n"
238
"the no-pending option or specify a file/directory."
241
#: breezy/builtins.py:372
243
"To compare the working directory to a specific revision, pass a\n"
244
"single revision to the revision argument."
247
#: breezy/builtins.py:375
249
"To see which files have changed in a specific revision, or between\n"
250
"two revisions, pass a revision range to the revision argument.\n"
251
"This will produce the same results as calling 'brz diff --summarize'."
254
# help of 'short' option of 'status' command
255
#: breezy/builtins.py:384
256
msgid "Use short status indicators."
259
# help of 'versioned' option of 'status' command
260
#: breezy/builtins.py:386
261
msgid "Only show versioned files."
264
# help of 'no-pending' option of 'status' command
265
#: breezy/builtins.py:388
266
msgid "Don't show pending merges."
269
# help of 'no-classify' option of 'status' command
270
#: breezy/builtins.py:390
271
msgid "Do not mark object type using indicator."
274
#: breezy/builtins.py:405
275
msgid "brz status --revision takes exactly one or two revision specifiers"
278
#: breezy/builtins.py:449 breezy/builtins.py:5251
279
msgid "You can only supply one of revision_id or --revision"
282
#: breezy/builtins.py:453 breezy/builtins.py:5254
283
msgid "You must supply either --revision or a revision_id"
286
#: breezy/builtins.py:460
288
msgid "Repository %r does not support access to raw revision texts"
291
#: breezy/builtins.py:471
292
#, python-brace-format
293
msgid "The repository {0} contains no revision {1}."
296
#: breezy/builtins.py:478
297
msgid "You cannot specify a NULL revision."
300
#: breezy/builtins.py:484
301
msgid "Remove the working tree from a given branch/checkout."
304
#: breezy/builtins.py:486
306
"Since a lightweight checkout is little more than a working tree\n"
307
"this will refuse to run against one."
310
#: breezy/builtins.py:489
311
msgid "To re-create the working tree, use \"brz checkout\"."
314
# help of 'force' option of 'remove-tree' command
315
#: breezy/builtins.py:495
316
msgid "Remove the working tree even if it has uncommitted or shelved changes."
319
#: breezy/builtins.py:510
320
msgid "No working tree to remove"
323
#: breezy/builtins.py:513
324
msgid "You cannot remove the working tree of a remote path"
327
#: breezy/builtins.py:523
328
msgid "You cannot remove the working tree from a lightweight checkout"
331
#: breezy/builtins.py:564
333
"The tree does not appear to be corrupt. You probably want \"brz revert\" "
334
"instead. Use \"--force\" if you are sure you want to reset the working tree."
337
#: breezy/builtins.py:575
339
", the header appears corrupt, try passing -r -1 to set the state to the last "
343
#: breezy/builtins.py:580
344
#, python-brace-format
345
msgid "failed to reset the tree state{0}"
348
#: breezy/builtins.py:584
349
msgid "Show current revision number."
352
#: breezy/builtins.py:586
353
msgid "This is equal to the number of revisions on this branch."
356
#: breezy/builtins.py:600
357
msgid "--tree and --revision can not be used together"
360
#: breezy/builtins.py:616
361
msgid "Revision numbers only make sense for single revisions, not ranges"
364
# help of 'tree' option of 'revno' command
365
#: breezy/builtins.py:639
366
msgid "Show revno of working tree."
369
#: breezy/builtins.py:688
370
msgid "Add specified files or directories."
373
#: breezy/builtins.py:690
375
"In non-recursive mode, all the named items are added, regardless\n"
376
"of whether they were previously ignored. A warning is given if\n"
377
"any of the named files are already versioned."
380
#: breezy/builtins.py:694
382
"In recursive mode (the default), files are treated the same way\n"
383
"but the behaviour for directories is different. Directories that\n"
384
"are already versioned do not give a warning. All directories,\n"
385
"whether already versioned or not, are searched for files or\n"
386
"subdirectories that are neither versioned or ignored, and these\n"
387
"are added. This search proceeds recursively into versioned\n"
388
"directories. If no names are given '.' is assumed."
391
#: breezy/builtins.py:702
393
"A warning will be printed when nested trees are encountered,\n"
394
"unless they are explicitly ignored."
397
#: breezy/builtins.py:705
399
"Therefore simply saying 'brz add' will version all files that\n"
400
"are currently unknown."
403
#: breezy/builtins.py:708
405
"Adding a file whose parent directory is not versioned will\n"
406
"implicitly add the parent, and so on up to the root. This means\n"
407
"you should never need to explicitly add a directory, they'll just\n"
408
"get added when you add a file in the directory."
411
#: breezy/builtins.py:713
413
"--dry-run will show which files would be added, but not actually\n"
417
#: breezy/builtins.py:716
419
"--file-ids-from will try to use the file ids from the supplied path.\n"
420
"It looks up ids trying to find a matching parent directory with the\n"
421
"same filename, and then by pure path. This option is rarely needed\n"
422
"but can be useful when adding the same logical file into two\n"
423
"branches that will be merged later (without showing the two different\n"
424
"adds as a conflict). It is also useful when merging another project\n"
425
"into a subdirectory of this one."
428
#: breezy/builtins.py:724
430
"Any files matching patterns in the ignore list will not be added\n"
431
"unless they are explicitly mentioned."
434
#: breezy/builtins.py:727
436
"In recursive mode, files larger than the configuration option\n"
437
"add.maximum_file_size will be skipped. Named items are never skipped due\n"
441
# help of 'no-recurse' option of 'add' command
442
#: breezy/builtins.py:734
443
msgid "Don't recursively add the contents of directories."
446
# help of 'file-ids-from' option of 'add' command
447
#: breezy/builtins.py:742
448
msgid "Lookup file ids from this tree."
451
#: breezy/builtins.py:779
452
#, python-brace-format
453
msgid "ignored {0} matching \"{1}\"\n"
456
#: breezy/builtins.py:784
457
msgid "Create a new versioned directory."
460
#: breezy/builtins.py:786
461
msgid "This is equivalent to creating the directory and then adding it."
464
# help of 'parents' option of 'mkdir' command
465
#: breezy/builtins.py:793
466
msgid "No error if existing, make parent directories as needed."
469
#: breezy/builtins.py:827
474
#: breezy/builtins.py:871
476
msgid "invalid kind %r specified"
479
#: breezy/builtins.py:909
483
#: breezy/builtins.py:911
484
msgid " brz cp SOURCE... DESTINATION"
487
#: breezy/builtins.py:913
489
"If the last argument is a versioned directory, all the other names\n"
490
"are copied into it. Otherwise, there must be exactly two arguments\n"
491
"and the file is copied to a new name."
494
#: breezy/builtins.py:917
496
"Files cannot be copied between branches. Only files can be copied\n"
500
#: breezy/builtins.py:933 breezy/builtins.py:1026
501
msgid "missing file argument"
504
#: breezy/builtins.py:939
505
msgid "can not copy root of branch"
508
#: breezy/builtins.py:947
509
msgid "to copy multiple files the destination must be a versioned directory"
512
#: breezy/builtins.py:961 breezy/builtins.py:977
514
msgid "Could not copy %s => %s: %s is not versioned."
517
#: breezy/builtins.py:965
519
msgid "Could not copy %s => %s . %s is not versioned\\."
522
#: breezy/builtins.py:969
524
msgid "Could not copy %s => %s . %s is a directory."
527
#: breezy/builtins.py:981
529
msgid "Could not copy to %s: %s is not a directory."
532
#: breezy/builtins.py:988
533
msgid "Move or rename a file."
536
#: breezy/builtins.py:990
537
msgid " brz mv SOURCE... DESTINATION"
540
#: breezy/builtins.py:992
542
"If the last argument is a versioned directory, all the other names\n"
543
"are moved into it. Otherwise, there must be exactly two arguments\n"
544
"and the file is changed to a new name."
547
#: breezy/builtins.py:996
549
"If OLDNAME does not exist on the filesystem but is versioned and\n"
550
"NEWNAME does exist on the filesystem but is not versioned, mv\n"
551
"assumes that the file has been manually moved and only updates\n"
552
"its internal inventory to reflect that change.\n"
553
"The same is valid when moving many SOURCE files to a DESTINATION."
556
#: breezy/builtins.py:1002
557
msgid "Files cannot be moved between branches."
560
# help of 'after' option of 'mv' command
561
#: breezy/builtins.py:1009
563
"Move only the brz identifier of the file, because the file has already been "
567
# help of 'auto' option of 'mv' command
568
#: breezy/builtins.py:1011
569
msgid "Automatically guess renames."
572
# help of 'dry-run' option of 'mv' command
573
#: breezy/builtins.py:1013
574
msgid "Avoid making changes when guessing renames."
577
#: breezy/builtins.py:1022
578
msgid "--dry-run requires --auto."
581
#: breezy/builtins.py:1032
582
msgid "can not move root of branch"
585
#: breezy/builtins.py:1039
586
msgid "Only one path may be specified to --auto."
589
#: breezy/builtins.py:1042
590
msgid "--after cannot be specified with --auto."
593
#: breezy/builtins.py:1078
594
msgid "to mv multiple files the destination must be a versioned directory"
597
#: breezy/builtins.py:1131
598
msgid "Turn this branch into a mirror of another branch."
601
#: breezy/builtins.py:1133
603
"By default, this command only works on branches that have not diverged.\n"
604
"Branches are considered diverged if the destination branch's most recent\n"
605
"commit is one that has not been merged (directly or indirectly) into the\n"
609
#: breezy/builtins.py:1138
611
"If branches have diverged, you can use 'brz merge' to integrate the changes\n"
612
"from one into the other. Once one branch has merged, the other should\n"
613
"be able to pull it again."
616
#: breezy/builtins.py:1142
618
"If you want to replace your local changes and just want your branch to\n"
619
"match the remote one, use pull --overwrite. This will work even if the two\n"
620
"branches have diverged."
623
#: breezy/builtins.py:1146
625
"If there is no default location set, the first pull will set it (use\n"
626
"--no-remember to avoid setting it). After that, you can omit the\n"
627
"location to use the default. To change the default, use --remember. The\n"
628
"value will only be saved if the remote location can be accessed."
631
#: breezy/builtins.py:1151
633
"The --verbose option will display the revisions pulled using the log_format\n"
634
"configuration option. You can use a different format by overriding it with\n"
635
"-Olog_format=<other_format>."
638
#: breezy/builtins.py:1155
640
"Note: The location can be specified either in the form of a branch,\n"
641
"or in the form of a path to a file containing a merge directive generated\n"
645
# help of 'verbose' option of 'pull' command
646
#: breezy/builtins.py:1163
647
msgid "Show logs of pulled revisions."
650
# help of 'directory' option of 'pull' command
651
#: breezy/builtins.py:1165
653
"Branch to pull into, rather than the one containing the working directory."
656
# help of 'local' option of 'pull' command
657
#: breezy/builtins.py:1168
659
"Perform a local pull in a bound branch. Local pulls are not applied to the "
663
#: breezy/builtins.py:1205
664
msgid "No working tree, ignoring --show-base"
667
#: breezy/builtins.py:1221
668
msgid "No pull location known or specified."
671
#: breezy/builtins.py:1228
673
msgid "Using saved parent location: %s\n"
676
#: breezy/builtins.py:1235 breezy/builtins.py:4449
677
msgid "Cannot use -r with merge directives or bundles"
680
#: breezy/builtins.py:1278
681
msgid "Update a mirror of this branch."
684
#: breezy/builtins.py:1280
686
"The target branch will not have its working tree populated because this\n"
687
"is both expensive, and is not supported on remote file systems."
690
#: breezy/builtins.py:1283
692
"Some smart servers or protocols *may* put the working tree in place in\n"
696
#: breezy/builtins.py:1286
698
"This command only works on branches that have not diverged. Branches are\n"
699
"considered diverged if the destination branch's most recent commit is one\n"
700
"that has not been merged (directly or indirectly) by the source branch."
703
#: breezy/builtins.py:1290
705
"If branches have diverged, you can use 'brz push --overwrite' to replace\n"
706
"the other branch completely, discarding its unmerged changes."
709
#: breezy/builtins.py:1293
711
"If you want to ensure you have the different changes in the other branch,\n"
712
"do a merge (see brz help merge) from the other branch, and commit that.\n"
713
"After that you will be able to do a push without '--overwrite'."
716
#: breezy/builtins.py:1297
718
"If there is no default push location set, the first push will set it (use\n"
719
"--no-remember to avoid setting it). After that, you can omit the\n"
720
"location to use the default. To change the default, use --remember. The\n"
721
"value will only be saved if the remote location can be accessed."
724
#: breezy/builtins.py:1302
726
"The --verbose option will display the revisions pushed using the log_format\n"
727
"configuration option. You can use a different format by overriding it with\n"
728
"-Olog_format=<other_format>."
731
# help of 'directory' option of 'push' command
732
#: breezy/builtins.py:1313
734
"Branch to push from, rather than the one containing the working directory."
737
# help of 'use-existing-dir' option of 'push' command
738
#: breezy/builtins.py:1316
740
"By default push will fail if the target directory exists, but does not "
741
"already have a control directory. This flag will allow push to proceed."
744
# help of 'stacked' option of 'push' command
745
#: breezy/builtins.py:1321
747
"Create a stacked branch that references the public location of the parent "
751
# help of 'stacked-on' option of 'push' command
752
#: breezy/builtins.py:1324
754
"Create a stacked branch that refers to another branch for the commit "
755
"history. Only the work not present in the referenced branch is included in "
756
"the branch created."
759
# help of 'strict' option of 'push' command
760
#: breezy/builtins.py:1329
762
"Refuse to push if there are uncommitted changes in the working tree, --no-"
763
"strict disables the check."
766
# help of 'no-tree' option of 'push' command
767
#: breezy/builtins.py:1332
768
msgid "Don't populate the working tree, even for protocols that support it."
771
# help of 'overwrite-tags' option of 'pull' command
772
# help of 'overwrite-tags' option of 'push' command
773
#: breezy/builtins.py:1335
774
msgid "Overwrite tags only."
777
# help of 'lossy' option of 'push' command
778
#: breezy/builtins.py:1336
780
"Allow lossy push, i.e. dropping metadata that can't be represented in the "
784
#: breezy/builtins.py:1388
785
msgid "Could not determine branch to refer to."
788
#: breezy/builtins.py:1397
791
"No push location known or specified. To push to the parent branch (at %s), "
792
"use 'brz push :parent'."
795
#: breezy/builtins.py:1403
796
msgid "No push location known or specified."
799
#: breezy/builtins.py:1407
801
msgid "Using saved push location: %s"
804
#: breezy/builtins.py:1418
805
msgid "Create a new branch that is a copy of an existing branch."
808
#: breezy/builtins.py:1420
810
"If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will\n"
811
"be used. In other words, \"branch ../foo/bar\" will attempt to create ./"
813
"If the FROM_LOCATION has no / or path separator embedded, the TO_LOCATION\n"
814
"is derived from the FROM_LOCATION by stripping a leading scheme or drive\n"
815
"identifier, if any. For example, \"branch lp:foo-bar\" will attempt to\n"
819
#: breezy/builtins.py:1427
821
"To retrieve the branch as of a particular revision, supply the --revision\n"
822
"parameter, as in \"branch foo/bar -r 5\"."
825
# help of 'no-tree' option of 'branch' command
826
#: breezy/builtins.py:1439
827
msgid "Create a branch without a working-tree."
830
# help of 'switch' option of 'branch' command
831
#: breezy/builtins.py:1441
832
msgid "Switch the checkout in the current directory to the new branch."
835
# help of 'stacked' option of 'branch' command
836
#: breezy/builtins.py:1444
838
"Create a stacked branch referring to the source branch. The new branch will "
839
"depend on the availability of the source branch for all operations."
842
# help of 'standalone' option of 'branch' command
843
#: breezy/builtins.py:1448
844
msgid "Do not use a shared repository, even if available."
847
# help of 'use-existing-dir' option of 'branch' command
848
#: breezy/builtins.py:1450
850
"By default branch will fail if the target directory exists, but does not "
851
"already have a control directory. This flag will allow branch to proceed."
854
# help of 'bind' option of 'branch' command
855
#: breezy/builtins.py:1455
856
msgid "Bind new branch to from location."
859
#: breezy/builtins.py:1492
861
msgid "Target directory \"%s\" already exists."
864
#: breezy/builtins.py:1504
866
msgid "Parent of \"%s\" does not exist."
869
#: breezy/builtins.py:1522
870
#, python-brace-format
871
msgid "The branch {0} has no revision {1}."
874
#: breezy/builtins.py:1538 breezy/push.py:54
876
msgid "Created new stacked branch referring to %s."
879
#: breezy/builtins.py:1544
881
msgid "Branched %d revision."
882
msgid_plural "Branched %d revisions."
886
#: breezy/builtins.py:1548 breezy/push.py:57
887
msgid "Created new branch."
890
#: breezy/builtins.py:1553
892
msgid "New branch bound to %s"
895
#: breezy/builtins.py:1558
897
msgid "Switched to branch: %s"
900
#: breezy/builtins.py:1563
901
msgid "List the branches available at the current location."
904
#: breezy/builtins.py:1565
906
"This command will print the names of all the branches at the current\n"
910
# help of 'recursive' option of 'branches' command
911
#: breezy/builtins.py:1572
913
"Recursively scan for branches rather than just looking in the specified "
917
#: breezy/builtins.py:1601
921
#: breezy/builtins.py:1613
922
msgid "Create a new checkout of an existing branch."
925
#: breezy/builtins.py:1615
927
"If BRANCH_LOCATION is omitted, checkout will reconstitute a working tree\n"
928
"for the branch found in '.'. This is useful if you have removed the working\n"
929
"tree or if it was never created - i.e. if you pushed the branch to its\n"
930
"current location using SFTP."
933
#: breezy/builtins.py:1620
935
"If the TO_LOCATION is omitted, the last component of the BRANCH_LOCATION\n"
936
"will be used. In other words, \"checkout ../foo/bar\" will attempt to "
938
"./bar. If the BRANCH_LOCATION has no / or path separator embedded, the\n"
939
"TO_LOCATION is derived from the BRANCH_LOCATION by stripping a leading\n"
940
"scheme or drive identifier, if any. For example, \"checkout lp:foo-bar\" "
942
"attempt to create ./foo-bar."
945
#: breezy/builtins.py:1627
947
"To retrieve the branch as of a particular revision, supply the --revision\n"
948
"parameter, as in \"checkout foo/bar -r 5\". Note that this will be\n"
949
"immediately out of date [so you cannot commit] but it may be useful (i.e.\n"
950
"to examine old code.)"
953
# help of 'lightweight' option of 'checkout' command
954
#: breezy/builtins.py:1637
956
"Perform a lightweight checkout. Lightweight checkouts depend on access to "
957
"the branch for every operation. Normal checkouts can perform common "
958
"operations like diff and status without such access, and also support local "
962
# help of 'files-from' option of 'branch' command
963
# help of 'files-from' option of 'checkout' command
964
#: breezy/builtins.py:1644
965
msgid "Get file contents from this tree."
968
# help of 'hardlink' option of 'branch' command
969
# help of 'hardlink' option of 'checkout' command
970
#: breezy/builtins.py:1646
971
msgid "Hard-link working tree files where possible."
974
#: breezy/builtins.py:1686
976
"Show list of renamed files.\n"
980
#: breezy/builtins.py:1714
981
msgid "Update a working tree to a new revision."
984
#: breezy/builtins.py:1716
986
"This will perform a merge of the destination revision (the tip of the\n"
987
"branch, or the specified revision) into the working tree, and then make\n"
988
"that revision the basis revision for the working tree."
991
#: breezy/builtins.py:1720
993
"You can use this to visit an older revision, or to update a working tree\n"
994
"that is out of date from its branch."
997
#: breezy/builtins.py:1723
999
"If there are any uncommitted changes in the tree, they will be carried\n"
1000
"across and remain as uncommitted changes after the update. To discard\n"
1001
"these changes, use 'brz revert'. The uncommitted changes may conflict\n"
1002
"with the changes brought in by the change in basis revision."
1005
#: breezy/builtins.py:1728
1007
"If the tree's branch is bound to a master branch, brz will also update\n"
1008
"the branch from the master."
1011
#: breezy/builtins.py:1731
1013
"You cannot update just a single file or directory, because each Bazaar\n"
1014
"working tree has just a single basis revision. If you want to restore a\n"
1015
"file that has been removed locally, use 'brz revert' instead of 'brz\n"
1016
"update'. If you want to restore a file to its state in a previous\n"
1017
"revision, use 'brz revert' with a '-r' option, or use 'brz cat' to write\n"
1018
"out the old content of that file to a new location."
1021
#: breezy/builtins.py:1738
1023
"The 'dir' argument, if given, must be the location of the root of a\n"
1024
"working tree to update. By default, the working tree that contains the\n"
1025
"current working directory is used."
1028
#: breezy/builtins.py:1754
1029
msgid "brz update --revision takes exactly one revision"
1032
#: breezy/builtins.py:1762
1033
msgid "brz update can only update a whole tree, not a file or subdirectory"
1036
#: breezy/builtins.py:1793
1037
#, python-brace-format
1038
msgid "Tree is up to date at revision {0} of branch {1}"
1041
#: breezy/builtins.py:1809
1044
"branch has no revision %s\n"
1045
"brz update --revision only works for a revision in the branch history"
1048
#: breezy/builtins.py:1815
1049
#, python-brace-format
1050
msgid "Updated to revision {0} of branch {1}"
1053
#: breezy/builtins.py:1819
1055
"Your local commits will now show as pending merges with 'brz status', and "
1056
"can be committed with 'brz commit'."
1059
#: breezy/builtins.py:1828
1060
msgid "Show information about a working tree, branch or repository."
1063
#: breezy/builtins.py:1830
1065
"This command will show all known locations and formats associated to the\n"
1066
"tree, branch or repository."
1069
#: breezy/builtins.py:1833
1071
"In verbose mode, statistical information is included with each report.\n"
1072
"To see extended statistic information, use a verbosity level of 2 or\n"
1073
"higher by specifying the verbose option multiple times, e.g. -vv."
1076
#: breezy/builtins.py:1837
1077
msgid "Branches and working trees will also report any missing revisions."
1080
#: breezy/builtins.py:1839 breezy/builtins.py:3750 breezy/builtins.py:4917
1081
#: breezy/builtins.py:6519 breezy/plugins/fastimport/cmds.py:211
1082
#: breezy/plugins/fastimport/cmds.py:417 breezy/plugins/propose/cmds.py:274
1086
#: breezy/builtins.py:1841
1087
msgid " Display information on the format and related locations:"
1090
#: breezy/builtins.py:1843
1094
#: breezy/builtins.py:1845
1096
" Display the above together with extended format information and\n"
1097
" basic statistics (like the number of files in the working tree and\n"
1098
" number of revisions in the branch and repository):"
1101
#: breezy/builtins.py:1849
1102
msgid " brz info -v"
1105
#: breezy/builtins.py:1851
1106
msgid " Display the above together with number of committers to the branch:"
1109
#: breezy/builtins.py:1853
1110
msgid " brz info -vv"
1113
#: breezy/builtins.py:1872
1114
msgid "Remove files or directories."
1117
#: breezy/builtins.py:1874
1119
"This makes Bazaar stop tracking changes to the specified files. Bazaar will\n"
1120
"delete them if they can easily be recovered using revert otherwise they\n"
1121
"will be backed up (adding an extension of the form .~#~). If no options or\n"
1122
"parameters are given Bazaar will scan for files that are being tracked by\n"
1123
"Bazaar but missing in your tree and stop tracking them for you."
1126
# help of 'new' option of 'remove' command
1127
#: breezy/builtins.py:1883
1128
msgid "Only remove files that have never been committed."
1131
# help of 'file-deletion-strategy' option of 'remove' command
1132
#: breezy/builtins.py:1885
1133
msgid "The file deletion mode to be used."
1136
# title of 'file-deletion-strategy' option of 'remove' command
1137
#: breezy/builtins.py:1886
1138
msgid "Deletion Strategy"
1141
# help of 'file-deletion-strategy=safe' option of 'remove' command
1142
#: breezy/builtins.py:1887
1143
msgid "Backup changed files (default)."
1146
# help of 'file-deletion-strategy=keep' option of 'remove' command
1147
#: breezy/builtins.py:1888
1148
msgid "Delete from brz but leave the working copy."
1151
# help of 'file-deletion-strategy=no-backup' option of 'remove' command
1152
#: breezy/builtins.py:1889
1153
msgid "Don't backup changed files."
1156
#: breezy/builtins.py:1910
1157
msgid "No matching files."
1160
#: breezy/builtins.py:1927
1161
msgid "Reconcile brz metadata in a branch."
1164
#: breezy/builtins.py:1929
1166
"This can correct data mismatches that may have been caused by\n"
1167
"previous ghost operations or brz upgrades. You should only\n"
1168
"need to run this command if 'brz check' or a brz developer\n"
1169
"advises you to run it."
1172
#: breezy/builtins.py:1934
1174
"If a second branch is provided, cross-branch reconciliation is\n"
1175
"also attempted, which will check that data like the tree root\n"
1176
"id which was not present in very early brz versions is represented\n"
1177
"correctly in both branches."
1180
#: breezy/builtins.py:1939
1182
"At the same time it is run it may recompress data resulting in\n"
1183
"a potential saving in disk space or performance gain."
1186
#: breezy/builtins.py:1942
1187
msgid "The branch *MUST* be on a listable system such as local disk or sftp."
1190
# help of 'format=git-bare' option of 'init' command
1191
# help of 'format=git-bare' option of 'init-repository' command
1192
# help of 'format=git-bare' option of 'upgrade' command
1193
#: breezy/builtins.py:2009 breezy/builtins.py:2130 breezy/builtins.py:3785
1194
msgid "Bare GIT repository (no working tree)."
1197
# help of 'format=2a' option of 'init' command
1198
# help of 'format=bzr' option of 'init' command
1199
# help of 'format=default' option of 'init' command
1200
# help of 'format=2a' option of 'init-repository' command
1201
# help of 'format=bzr' option of 'init-repository' command
1202
# help of 'format=default' option of 'init-repository' command
1203
# help of 'format=2a' option of 'upgrade' command
1204
# help of 'format=bzr' option of 'upgrade' command
1205
# help of 'format=default' option of 'upgrade' command
1206
#: breezy/builtins.py:2009 breezy/builtins.py:2130 breezy/builtins.py:3785
1207
msgid "Format for the bzr 2.0 series.\n"
1210
# help of 'format=git' option of 'init' command
1211
# help of 'format=git' option of 'init-repository' command
1212
# help of 'format=git' option of 'upgrade' command
1213
#: breezy/builtins.py:2009 breezy/builtins.py:2130 breezy/builtins.py:3785
1214
msgid "GIT repository."
1217
#: breezy/builtins.py:2010
1218
msgid "Make a directory into a versioned branch."
1221
#: breezy/builtins.py:2012
1223
"Use this to create an empty branch, or before importing an\n"
1227
#: breezy/builtins.py:2015
1229
"If there is a repository in a parent directory of the location, then\n"
1230
"the history of the branch will be stored in the repository. Otherwise\n"
1231
"init creates a standalone branch which carries its own history\n"
1232
"in the .bzr directory."
1235
#: breezy/builtins.py:2020
1237
"If there is already a branch at the location but it has no working tree,\n"
1238
"the tree can be populated with 'brz checkout'."
1241
#: breezy/builtins.py:2023
1242
msgid "Recipe for importing a tree of files::"
1245
#: breezy/builtins.py:2025
1251
" brz commit -m \"imported project\""
1254
# help of 'create-prefix' option of 'init' command
1255
# help of 'create-prefix' option of 'push' command
1256
#: breezy/builtins.py:2036
1257
msgid "Create the path leading up to the branch if it does not already exist."
1260
# help of 'format' option of 'init' command
1261
#: breezy/builtins.py:2039
1262
msgid "Specify a format for this branch. See \"help formats\" for a full list."
1265
# help of 'append-revisions-only' option of 'init' command
1266
#: breezy/builtins.py:2048
1267
msgid "Never change revnos or the existing log. Append revisions to it only."
1270
# help of 'no-tree' option of 'init' command
1271
#: breezy/builtins.py:2051
1272
msgid "Create a branch without a working tree."
1275
#: breezy/builtins.py:2072 breezy/push.py:112
1278
"Parent directory of %s does not exist.\n"
1279
"You may supply --create-prefix to create all leading parent directories."
1282
#: breezy/builtins.py:2107
1284
"This branch format cannot be set to append-revisions-only. Try --default."
1287
#: breezy/builtins.py:2118
1288
#, python-brace-format
1289
msgid "Created a {0} (format: {1})\n"
1292
#: breezy/builtins.py:2127
1294
msgid "Using shared repository: %s\n"
1297
#: breezy/builtins.py:2131
1298
msgid "Create a shared repository for branches to share storage space."
1301
#: breezy/builtins.py:2133
1303
"New branches created under the repository directory will store their\n"
1304
"revisions in the repository, not in the branch directory. For branches\n"
1305
"with shared history, this reduces the amount of storage needed and\n"
1306
"speeds up the creation of new branches."
1309
#: breezy/builtins.py:2138
1311
"If the --no-trees option is given then the branches in the repository\n"
1312
"will not have working trees by default. They will still exist as\n"
1313
"directories on disk, but they will not have separate copies of the\n"
1314
"files at a certain revision. This can be useful for repositories that\n"
1315
"store branches which are interacted with through checkouts or remote\n"
1316
"branches, such as on a server."
1319
#: breezy/builtins.py:2145
1322
" Create a shared repository holding just branches::"
1325
#: breezy/builtins.py:2148
1327
" brz init-repo --no-trees repo\n"
1328
" brz init repo/trunk"
1331
#: breezy/builtins.py:2151
1332
msgid " Make a lightweight checkout elsewhere::"
1335
#: breezy/builtins.py:2153
1337
" brz checkout --lightweight repo/trunk trunk-checkout\n"
1338
" cd trunk-checkout\n"
1342
# help of 'format' option of 'init-repository' command
1343
#: breezy/builtins.py:2161
1345
"Specify a format for this repository. See \"brz help formats\" for details."
1348
# title of 'format' option of 'init-repository' command
1349
# title of 'format' option of 'fast-import' command
1350
#: breezy/builtins.py:2167 breezy/plugins/fastimport/cmds.py:287
1351
msgid "Repository format"
1354
# help of 'no-trees' option of 'init-repository' command
1355
#: breezy/builtins.py:2169
1356
msgid "Branches in the repository will default to not having a working tree."
1359
#: breezy/builtins.py:2200
1360
msgid "Show differences in the working tree, between revisions or branches."
1363
#: breezy/builtins.py:2202
1365
"If no arguments are given, all changes for the current tree are listed.\n"
1366
"If files are given, only the changes in those files are listed.\n"
1367
"Remote and multiple branches can be compared by using the --old and\n"
1368
"--new options. If not provided, the default for both is derived from\n"
1369
"the first argument, if any, or the current tree if no arguments are\n"
1373
#: breezy/builtins.py:2209
1375
"\"brz diff -p1\" is equivalent to \"brz diff --prefix old/:new/\", and\n"
1376
"produces patches suitable for \"patch -p1\"."
1379
#: breezy/builtins.py:2212
1381
"Note that when using the -r argument with a range of revisions, the\n"
1382
"differences are computed between the two specified revisions. That\n"
1383
"is, the command does not show the changes introduced by the first\n"
1384
"revision in the range. This differs from the interpretation of\n"
1385
"revision ranges used by \"brz log\" which includes the first revision\n"
1389
#: breezy/builtins.py:2219
1393
" 2 - unrepresentable changes\n"
1398
#: breezy/builtins.py:2225
1401
" Shows the difference in the working tree versus the last commit::"
1404
#: breezy/builtins.py:2228
1408
#: breezy/builtins.py:2230
1409
msgid " Difference between the working tree and revision 1::"
1412
#: breezy/builtins.py:2232
1413
msgid " brz diff -r1"
1416
#: breezy/builtins.py:2234
1417
msgid " Difference between revision 3 and revision 1::"
1420
#: breezy/builtins.py:2236
1421
msgid " brz diff -r1..3"
1424
#: breezy/builtins.py:2238
1425
msgid " Difference between revision 3 and revision 1 for branch xxx::"
1428
#: breezy/builtins.py:2240
1429
msgid " brz diff -r1..3 xxx"
1432
#: breezy/builtins.py:2242
1433
msgid " The changes introduced by revision 2 (equivalent to -r1..2)::"
1436
#: breezy/builtins.py:2244
1437
msgid " brz diff -c2"
1440
#: breezy/builtins.py:2246
1441
msgid " To see the changes introduced by revision X::"
1444
#: breezy/builtins.py:2248
1445
msgid " brz diff -cX"
1448
#: breezy/builtins.py:2250
1450
" Note that in the case of a merge, the -c option shows the changes\n"
1451
" compared to the left hand parent. To see the changes against\n"
1452
" another parent, use::"
1455
#: breezy/builtins.py:2254
1456
msgid " brz diff -r<chosen_parent>..X"
1459
#: breezy/builtins.py:2256
1461
" The changes between the current revision and the previous revision\n"
1462
" (equivalent to -c-1 and -r-2..-1)"
1465
#: breezy/builtins.py:2259
1466
msgid " brz diff -r-2.."
1469
#: breezy/builtins.py:2261
1470
msgid " Show just the differences for file NEWS::"
1473
#: breezy/builtins.py:2263
1474
msgid " brz diff NEWS"
1477
#: breezy/builtins.py:2265
1478
msgid " Show the differences in working tree xxx for file NEWS::"
1481
#: breezy/builtins.py:2267
1482
msgid " brz diff xxx/NEWS"
1485
#: breezy/builtins.py:2269
1486
msgid " Show the differences from branch xxx to this working tree:"
1489
#: breezy/builtins.py:2271
1490
msgid " brz diff --old xxx"
1493
#: breezy/builtins.py:2273
1494
msgid " Show the differences between two branches for file NEWS::"
1497
#: breezy/builtins.py:2275
1498
msgid " brz diff --old xxx --new yyy NEWS"
1501
#: breezy/builtins.py:2277
1502
msgid " Same as 'brz diff' but prefix paths with old/ and new/::"
1505
#: breezy/builtins.py:2279
1506
msgid " brz diff --prefix old/:new/"
1509
#: breezy/builtins.py:2281
1510
msgid " Show the differences using a custom diff program with options::"
1513
#: breezy/builtins.py:2283
1514
msgid " brz diff --using /usr/bin/diff --diff-options -wu"
1517
# help of 'diff-options' option of 'diff' command
1518
#: breezy/builtins.py:2289
1519
msgid "Pass these options to the external diff program."
1522
# help of 'prefix' option of 'diff' command
1523
#: breezy/builtins.py:2292
1525
"Set prefixes added to old and new filenames, as two values separated by a "
1526
"colon. (eg \"old/:new/\")."
1529
# help of 'old' option of 'diff' command
1530
#: breezy/builtins.py:2295
1531
msgid "Branch/tree to compare from."
1534
# help of 'new' option of 'diff' command
1535
#: breezy/builtins.py:2299
1536
msgid "Branch/tree to compare to."
1539
# help of 'using' option of 'diff' command
1540
#: breezy/builtins.py:2305
1541
msgid "Use this command to compare files."
1544
# help of 'format' option of 'diff' command
1545
#: breezy/builtins.py:2310
1546
msgid "Diff format to use."
1549
# title of 'format' option of 'diff' command
1550
#: breezy/builtins.py:2312
1554
# help of 'context' option of 'diff' command
1555
#: breezy/builtins.py:2314
1556
msgid "How many lines of context to show."
1559
#: breezy/builtins.py:2339
1560
msgid "--prefix expects two values separated by a colon (eg \"old/:new/\")"
1563
#: breezy/builtins.py:2343
1564
msgid "brz diff --revision takes exactly one or two revision specifiers"
1567
#: breezy/builtins.py:2348 breezy/builtins.py:2744 breezy/builtins.py:2752
1568
#, python-brace-format
1569
msgid "{0} and {1} are mutually exclusive"
1572
#: breezy/builtins.py:2368
1574
"List files deleted in the working tree.\n"
1578
#: breezy/builtins.py:2443
1579
msgid "Show the tree root directory."
1582
#: breezy/builtins.py:2445
1584
"The root is the nearest enclosing directory with a control\n"
1588
#: breezy/builtins.py:2461
1589
msgid "The limit argument must be an integer."
1592
#: breezy/builtins.py:2469
1593
msgid "The levels argument must be an integer."
1596
#: breezy/builtins.py:2474
1597
msgid "Show historical log for a branch or subset of a branch."
1600
#: breezy/builtins.py:2476
1602
"log is brz's default tool for exploring the history of a branch.\n"
1603
"The branch to use is taken from the first parameter. If no parameters\n"
1604
"are given, the branch containing the working directory is logged.\n"
1605
"Here are some simple examples::"
1608
#: breezy/builtins.py:2481
1610
" brz log log the current branch\n"
1611
" brz log foo.py log a file in its branch\n"
1612
" brz log http://server/branch log a branch on a server"
1615
#: breezy/builtins.py:2485
1617
"The filtering, ordering and information shown for each revision can\n"
1618
"be controlled as explained below. By default, all revisions are\n"
1619
"shown sorted (topologically) so that newer revisions appear before\n"
1620
"older ones and descendants always appear before ancestors. If displayed,\n"
1621
"merged revisions are shown indented under the revision in which they\n"
1625
#: breezy/builtins.py:2492
1626
msgid ":Output control:"
1629
#: breezy/builtins.py:2494
1631
" The log format controls how information about each revision is\n"
1632
" displayed. The standard log formats are called ``long``, ``short``\n"
1633
" and ``line``. The default is long. See ``brz help log-formats``\n"
1634
" for more details on log formats."
1637
#: breezy/builtins.py:2499
1639
" The following options can be used to control what information is\n"
1643
#: breezy/builtins.py:2502
1645
" -l N display a maximum of N revisions\n"
1646
" -n N display N levels of revisions (0 for all, 1 for collapsed)\n"
1647
" -v display a status summary (delta) for each revision\n"
1648
" -p display a diff (patch) for each revision\n"
1649
" --show-ids display revision-ids (and file-ids), not just revnos"
1652
#: breezy/builtins.py:2508
1654
" Note that the default number of levels to display is a function of the\n"
1655
" log format. If the -n option is not used, the standard log formats show\n"
1656
" just the top level (mainline)."
1659
#: breezy/builtins.py:2512
1661
" Status summaries are shown using status flags like A, M, etc. To see\n"
1662
" the changes explained using words like ``added`` and ``modified``\n"
1663
" instead, use the -vv option."
1666
#: breezy/builtins.py:2516
1667
msgid ":Ordering control:"
1670
#: breezy/builtins.py:2518
1672
" To display revisions from oldest to newest, use the --forward option.\n"
1673
" In most cases, using this option will have little impact on the total\n"
1674
" time taken to produce a log, though --forward does not incrementally\n"
1675
" display revisions like --reverse does when it can."
1678
#: breezy/builtins.py:2523
1679
msgid ":Revision filtering:"
1682
#: breezy/builtins.py:2525
1684
" The -r option can be used to specify what revision or range of revisions\n"
1685
" to filter against. The various forms are shown below::"
1688
#: breezy/builtins.py:2528
1690
" -rX display revision X\n"
1691
" -rX.. display revision X and later\n"
1692
" -r..Y display up to and including revision Y\n"
1693
" -rX..Y display from X to Y inclusive"
1696
#: breezy/builtins.py:2533
1698
" See ``brz help revisionspec`` for details on how to specify X and Y.\n"
1699
" Some common examples are given below::"
1702
#: breezy/builtins.py:2536
1704
" -r-1 show just the tip\n"
1705
" -r-10.. show the last 10 mainline revisions\n"
1706
" -rsubmit:.. show what's new on this branch\n"
1707
" -rancestor:path.. show changes since the common ancestor of this\n"
1708
" branch and the one at location path\n"
1709
" -rdate:yesterday.. show changes since yesterday"
1712
#: breezy/builtins.py:2543
1714
" When logging a range of revisions using -rX..Y, log starts at\n"
1715
" revision Y and searches back in history through the primary\n"
1716
" (\"left-hand\") parents until it finds X. When logging just the\n"
1717
" top level (using -n1), an error is reported if X is not found\n"
1718
" along the way. If multi-level logging is used (-n0), X may be\n"
1719
" a nested merge revision and the log will be truncated accordingly."
1722
#: breezy/builtins.py:2550
1723
msgid ":Path filtering:"
1726
#: breezy/builtins.py:2552
1728
" If parameters are given and the first one is not a branch, the log\n"
1729
" will be filtered to show only those revisions that changed the\n"
1730
" nominated files or directories."
1733
#: breezy/builtins.py:2556
1735
" Filenames are interpreted within their historical context. To log a\n"
1736
" deleted file, specify a revision range so that the file existed at\n"
1737
" the end or start of the range."
1740
#: breezy/builtins.py:2560
1742
" Historical context is also important when interpreting pathnames of\n"
1743
" renamed files/directories. Consider the following example:"
1746
#: breezy/builtins.py:2563
1748
" * revision 1: add tutorial.txt\n"
1749
" * revision 2: modify tutorial.txt\n"
1750
" * revision 3: rename tutorial.txt to guide.txt; add tutorial.txt"
1753
#: breezy/builtins.py:2567
1754
msgid " In this case:"
1757
#: breezy/builtins.py:2569
1758
msgid " * ``brz log guide.txt`` will log the file added in revision 1"
1761
#: breezy/builtins.py:2571
1762
msgid " * ``brz log tutorial.txt`` will log the new file added in revision 3"
1765
#: breezy/builtins.py:2573
1767
" * ``brz log -r2 -p tutorial.txt`` will show the changes made to\n"
1768
" the original file in revision 2."
1771
#: breezy/builtins.py:2576
1773
" * ``brz log -r2 -p guide.txt`` will display an error message as there\n"
1774
" was no file called guide.txt in revision 2."
1777
#: breezy/builtins.py:2579
1779
" Renames are always followed by log. By design, there is no need to\n"
1780
" explicitly ask for this (and no way to stop logging a file back\n"
1781
" until it was last renamed)."
1784
#: breezy/builtins.py:2583
1785
msgid ":Other filtering:"
1788
#: breezy/builtins.py:2585
1790
" The --match option can be used for finding revisions that match a\n"
1791
" regular expression in a commit message, committer, author or bug.\n"
1792
" Specifying the option several times will match any of the supplied\n"
1793
" expressions. --match-author, --match-bugs, --match-committer and\n"
1794
" --match-message can be used to only match a specific field."
1797
#: breezy/builtins.py:2591
1798
msgid ":Tips & tricks:"
1801
#: breezy/builtins.py:2593
1803
" GUI tools and IDEs are often better at exploring history than command\n"
1804
" line tools: you may prefer qlog or viz from qbzr or bzr-gtk, the\n"
1805
" bzr-explorer shell, or the Loggerhead web interface. See the Bazaar\n"
1806
" Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/> and\n"
1807
" <http://wiki.bazaar.canonical.com/IDEIntegration>."
1810
#: breezy/builtins.py:2599
1811
msgid " You may find it useful to add the aliases below to ``breezy.conf``::"
1814
#: breezy/builtins.py:2601
1818
" top = log -l10 --line\n"
1822
#: breezy/builtins.py:2606
1824
" ``brz tip`` will then show the latest revision while ``brz top``\n"
1825
" will show the last 10 mainline revisions. To see the details of a\n"
1826
" particular revision X, ``brz show -rX``."
1829
#: breezy/builtins.py:2610
1831
" If you are interested in looking deeper into a particular merge X,\n"
1832
" use ``brz log -n0 -rX``."
1835
#: breezy/builtins.py:2613
1837
" ``brz log -v`` on a branch with lots of history is currently\n"
1838
" very slow. A fix for this issue is currently under development.\n"
1839
" With or without that fix, it is recommended that a revision range\n"
1840
" be given when using the -v option."
1843
#: breezy/builtins.py:2618
1845
" brz has a generic full-text matching plugin, brz-search, that can be\n"
1846
" used to find revisions matching user names, commit messages, etc.\n"
1847
" Among other features, this plugin can find all revisions containing\n"
1848
" a list of words but not others."
1851
#: breezy/builtins.py:2623
1853
" When exploring non-mainline history on large projects with deep\n"
1854
" history, the performance of log can be greatly improved by installing\n"
1855
" the historycache plugin. This plugin buffers historical information\n"
1856
" trading disk space for faster speed."
1859
# help of 'forward' option of 'log' command
1860
#: breezy/builtins.py:2632
1861
msgid "Show from oldest to newest."
1864
# help of 'verbose' option of 'log' command
1865
#: breezy/builtins.py:2635
1866
msgid "Show files changed in each revision."
1869
# help of 'change' option of 'log' command
1870
#: breezy/builtins.py:2641
1871
msgid "Show just the specified revision. See also \"help revisionspec\"."
1874
# help of 'authors' option of 'log' command
1875
#: breezy/builtins.py:2645
1876
msgid "What names to list as authors - first, all or committer."
1879
# title of 'authors' option of 'log' command
1880
#: breezy/builtins.py:2646
1884
# help of 'levels' option of 'log' command
1885
#: breezy/builtins.py:2652
1886
msgid "Number of levels to display - 0 for all, 1 for flat."
1889
# help of 'limit' option of 'log' command
1890
#: breezy/builtins.py:2662
1891
msgid "Limit the output to the first N revisions."
1894
# help of 'show-diff' option of 'log' command
1895
#: breezy/builtins.py:2667
1896
msgid "Show changes made in each revision as a patch."
1899
# help of 'include-merged' option of 'log' command
1900
#: breezy/builtins.py:2669
1901
msgid "Show merged revisions like --levels 0 does."
1904
# help of 'omit-merges' option of 'log' command
1905
#: breezy/builtins.py:2673
1906
msgid "Do not report commits with more than one parent."
1909
# help of 'exclude-common-ancestry' option of 'log' command
1910
#: breezy/builtins.py:2675
1912
"Display only the revisions that are not part of both ancestries (require -"
1916
# help of 'signatures' option of 'log' command
1917
#: breezy/builtins.py:2679
1918
msgid "Show digital signature validity."
1921
# help of 'match' option of 'log' command
1922
#: breezy/builtins.py:2682
1923
msgid "Show revisions whose properties match this expression."
1926
# help of 'match-message' option of 'log' command
1927
#: breezy/builtins.py:2686
1928
msgid "Show revisions whose message matches this expression."
1931
# help of 'match-committer' option of 'log' command
1932
#: breezy/builtins.py:2690
1933
msgid "Show revisions whose committer matches this expression."
1936
# help of 'match-author' option of 'log' command
1937
#: breezy/builtins.py:2694
1938
msgid "Show revisions whose authors match this expression."
1941
# help of 'match-bugs' option of 'log' command
1942
#: breezy/builtins.py:2698
1943
msgid "Show revisions whose bugs match this expression."
1946
#: breezy/builtins.py:2738
1947
msgid "--exclude-common-ancestry requires -r with two revisions"
1950
#: breezy/builtins.py:2766
1952
msgid "Path unknown at end or start of revision range: %s"
1955
#: breezy/builtins.py:2884
1957
msgid "brz %s doesn't accept two revisions in different branches."
1960
#: breezy/builtins.py:2900
1962
msgid "brz %s --revision takes one or two values."
1965
#: breezy/builtins.py:2945
1967
"List files in a tree.\n"
1971
# help of 'recursive' option of 'ls' command
1972
#: breezy/builtins.py:2954
1973
msgid "Recurse into subdirectories."
1976
# help of 'from-root' option of 'ls' command
1977
#: breezy/builtins.py:2956
1978
msgid "Print paths relative to the root of the branch."
1981
# help of 'unknown' option of 'ls' command
1982
#: breezy/builtins.py:2958
1983
msgid "Print unknown files."
1986
# help of 'versioned' option of 'ls' command
1987
#: breezy/builtins.py:2959
1988
msgid "Print versioned files."
1991
# help of 'ignored' option of 'ls' command
1992
#: breezy/builtins.py:2962
1993
msgid "Print ignored files."
1996
# help of 'kind' option of 'ls' command
1997
#: breezy/builtins.py:2964
1999
"List entries of a particular kind: file, directory, symlink, tree-reference."
2002
#: breezy/builtins.py:2979
2003
msgid "invalid kind specified"
2006
#: breezy/builtins.py:2983
2007
msgid "Cannot set both --verbose and --null"
2010
#: breezy/builtins.py:2992
2011
msgid "cannot specify both --from-root and PATH"
2014
#: breezy/builtins.py:3079
2015
msgid "Ignore specified files or patterns."
2018
#: breezy/builtins.py:3081
2019
msgid "See ``brz help patterns`` for details on the syntax of patterns."
2022
#: breezy/builtins.py:3083
2024
"If a .bzrignore file does not exist, the ignore command\n"
2025
"will create one and add the specified files or patterns to the newly\n"
2026
"created file. The ignore command will also automatically add the\n"
2027
".bzrignore file to be versioned. Creating a .bzrignore file without\n"
2028
"the use of the ignore command will require an explicit add command."
2031
#: breezy/builtins.py:3089
2033
"To remove patterns from the ignore list, edit the .bzrignore file.\n"
2034
"After adding, editing or deleting that file either indirectly by\n"
2035
"using this command or directly by using an editor, be sure to commit\n"
2039
#: breezy/builtins.py:3094
2041
"Bazaar also supports a global ignore file ~/.bazaar/ignore. On Windows\n"
2042
"the global ignore file can be found in the application data directory as\n"
2043
"C:\\Documents and Settings\\<user>\\Application Data\\Bazaar\\2.0\\ignore.\n"
2044
"Global ignores are not touched by this command. The global ignore file\n"
2045
"can be edited directly using an editor."
2048
#: breezy/builtins.py:3100
2050
"Patterns prefixed with '!' are exceptions to ignore patterns and take\n"
2051
"precedence over regular ignores. Such exceptions are used to specify\n"
2052
"files that should be versioned which would otherwise be ignored."
2055
#: breezy/builtins.py:3104
2057
"Patterns prefixed with '!!' act as regular ignore patterns, but have\n"
2058
"precedence over the '!' exception patterns."
2061
#: breezy/builtins.py:3107
2065
#: breezy/builtins.py:3109
2067
"* Ignore patterns containing shell wildcards must be quoted from\n"
2068
" the shell on Unix."
2071
#: breezy/builtins.py:3112
2073
"* Ignore patterns starting with \"#\" act as comments in the ignore file.\n"
2074
" To ignore patterns that begin with that character, use the \"RE:\" prefix."
2077
#: breezy/builtins.py:3115
2080
" Ignore the top level Makefile::"
2083
#: breezy/builtins.py:3118
2084
msgid " brz ignore ./Makefile"
2087
#: breezy/builtins.py:3120
2088
msgid " Ignore .class files in all directories...::"
2091
#: breezy/builtins.py:3122
2092
msgid " brz ignore \"*.class\""
2095
#: breezy/builtins.py:3124
2096
msgid " ...but do not ignore \"special.class\"::"
2099
#: breezy/builtins.py:3126
2100
msgid " brz ignore \"!special.class\""
2103
#: breezy/builtins.py:3128
2104
msgid " Ignore files whose name begins with the \"#\" character::"
2107
#: breezy/builtins.py:3130
2108
msgid " brz ignore \"RE:^#\""
2111
#: breezy/builtins.py:3132 breezy/builtins.py:3136
2112
msgid " Ignore .o files under the lib directory::"
2115
#: breezy/builtins.py:3134
2116
msgid " brz ignore \"lib/**/*.o\""
2119
#: breezy/builtins.py:3138
2120
msgid " brz ignore \"RE:lib/.*\\.o\""
2123
#: breezy/builtins.py:3140
2124
msgid " Ignore everything but the \"debian\" toplevel directory::"
2127
#: breezy/builtins.py:3142
2128
msgid " brz ignore \"RE:(?!debian/).*\""
2131
#: breezy/builtins.py:3144
2133
" Ignore everything except the \"local\" toplevel directory,\n"
2134
" but always ignore autosave files ending in ~, even under local/::"
2137
#: breezy/builtins.py:3147
2139
" brz ignore \"*\"\n"
2140
" brz ignore \"!./local\"\n"
2141
" brz ignore \"!!*~\""
2144
# help of 'default-rules' option of 'ignore' command
2145
#: breezy/builtins.py:3156
2146
msgid "Display the default ignore rules that brz uses."
2149
#: breezy/builtins.py:3168
2150
msgid "ignore requires at least one NAME_PATTERN or --default-rules."
2153
#: breezy/builtins.py:3179
2155
msgid "Invalid ignore pattern found. %s"
2156
msgid_plural "Invalid ignore patterns found. %s"
2160
#: breezy/builtins.py:3188
2161
msgid "NAME_PATTERN should not be an absolute path"
2164
#: breezy/builtins.py:3200
2167
"Warning: the following files are version controlled and match your ignore "
2170
"These files will continue to be version controlled unless you 'brz remove' "
2174
#: breezy/builtins.py:3207
2175
msgid "List ignored files and the patterns that matched them."
2178
#: breezy/builtins.py:3209
2180
"List all the ignored files and the ignore pattern that caused the file to\n"
2184
#: breezy/builtins.py:3212
2185
msgid "Alternatively, to list just the files::"
2188
#: breezy/builtins.py:3214
2189
msgid " brz ls --ignored"
2192
#: breezy/builtins.py:3248
2194
msgid "not a valid revision-number: %r"
2197
#: breezy/builtins.py:3256
2198
msgid "Export current or past revision to a destination directory or archive."
2201
#: breezy/builtins.py:3258
2202
msgid "If no revision is specified this exports the last committed revision."
2205
#: breezy/builtins.py:3260
2207
"Format may be an \"exporter\" name, such as tar, tgz, tbz2. If none is\n"
2208
"given, try to find the format with the extension. If no extension\n"
2209
"is found exports to a directory (equivalent to --format=dir)."
2212
#: breezy/builtins.py:3264
2214
"If root is supplied, it will be used as the root directory inside\n"
2215
"container formats (tar, zip, etc). If it is not supplied it will default\n"
2216
"to the exported filename. The root option has no effect for 'dir' format."
2219
#: breezy/builtins.py:3268
2221
"If branch is omitted then the branch containing the current working\n"
2222
"directory will be used."
2225
#: breezy/builtins.py:3271
2226
msgid "Note: Export of tree with non-ASCII filenames to zip is not supported."
2229
#: breezy/builtins.py:3273
2231
" ================= =========================\n"
2232
" Supported formats Autodetected by extension\n"
2233
" ================= =========================\n"
2236
" tbz2 .tar.bz2, .tbz2\n"
2237
" tgz .tar.gz, .tgz\n"
2239
" ================= ========================="
2242
# help of 'format' option of 'export' command
2243
#: breezy/builtins.py:3288
2244
msgid "Type of file to export to."
2247
# help of 'filters' option of 'export' command
2248
#: breezy/builtins.py:3291
2249
msgid "Apply content filters to export the convenient form."
2252
# help of 'root' option of 'export' command
2253
#: breezy/builtins.py:3295
2254
msgid "Name of the root directory inside the exported file."
2257
# help of 'per-file-timestamps' option of 'export' command
2258
#: breezy/builtins.py:3297
2260
"Set modification time of files to that of the last revision in which it was "
2264
# help of 'uncommitted' option of 'export' command
2265
#: breezy/builtins.py:3300
2266
msgid "Export the working tree contents rather than that of the last revision."
2269
#: breezy/builtins.py:3320
2270
msgid "--uncommitted requires a working tree"
2273
#: breezy/builtins.py:3348
2275
msgid "Unsupported export format: %s"
2278
#: breezy/builtins.py:3352
2279
msgid "Write the contents of a file as of a given revision to standard output."
2282
#: breezy/builtins.py:3354
2283
msgid "If no revision is nominated, the last revision is used."
2286
#: breezy/builtins.py:3356
2288
"Note: Take care to redirect standard output when using this command on a\n"
2292
# help of 'name-from-revision' option of 'cat' command
2293
#: breezy/builtins.py:3363
2294
msgid "The path name in the old tree."
2297
# help of 'filters' option of 'cat' command
2298
#: breezy/builtins.py:3364
2299
msgid "Apply content filters to display the convenience form."
2302
#: breezy/builtins.py:3375
2303
msgid "brz cat --revision takes exactly one revision specifier"
2306
#: breezy/builtins.py:3395 breezy/builtins.py:3409
2307
msgid "{0!r} is not present in revision {1}"
2310
#: breezy/builtins.py:3436
2311
msgid "Commit changes into a new revision."
2314
#: breezy/builtins.py:3438
2316
"An explanatory message needs to be given for each commit. This is\n"
2317
"often done by using the --message option (getting the message from the\n"
2318
"command line) or by using the --file option (getting the message from\n"
2319
"a file). If neither of these options is given, an editor is opened for\n"
2320
"the user to enter the message. To see the changed files in the\n"
2321
"boilerplate text loaded into the editor, use the --show-diff option."
2324
#: breezy/builtins.py:3445
2326
"By default, the entire tree is committed and the person doing the\n"
2327
"commit is assumed to be the author. These defaults can be overridden\n"
2328
"as explained below."
2331
#: breezy/builtins.py:3449
2332
msgid ":Selective commits:"
2335
#: breezy/builtins.py:3451
2337
" If selected files are specified, only changes to those files are\n"
2338
" committed. If a directory is specified then the directory and\n"
2339
" everything within it is committed."
2342
#: breezy/builtins.py:3455
2344
" When excludes are given, they take precedence over selected files.\n"
2345
" For example, to commit only changes within foo, but not changes\n"
2349
#: breezy/builtins.py:3459
2350
msgid " brz commit foo -x foo/bar"
2353
#: breezy/builtins.py:3461
2354
msgid " A selective commit after a merge is not yet supported."
2357
#: breezy/builtins.py:3463
2358
msgid ":Custom authors:"
2361
#: breezy/builtins.py:3465
2363
" If the author of the change is not the same person as the committer,\n"
2364
" you can specify the author's name using the --author option. The\n"
2365
" name should be in the same format as a committer-id, e.g.\n"
2366
" \"John Doe <jdoe@example.com>\". If there is more than one author of\n"
2367
" the change you can specify the option multiple times, once for each\n"
2371
#: breezy/builtins.py:3472
2375
#: breezy/builtins.py:3474
2377
" A common mistake is to forget to add a new file or directory before\n"
2378
" running the commit command. The --strict option checks for unknown\n"
2379
" files and aborts the commit if any are found. More advanced pre-commit\n"
2380
" checks can be implemented by defining hooks. See ``brz help hooks``\n"
2384
#: breezy/builtins.py:3480
2385
msgid ":Things to note:"
2388
#: breezy/builtins.py:3482
2390
" If you accidentially commit the wrong changes or make a spelling\n"
2391
" mistake in the commit message say, you can use the uncommit command\n"
2392
" to undo it. See ``brz help uncommit`` for details."
2395
#: breezy/builtins.py:3486
2397
" Hooks can also be configured to run after a commit. This allows you\n"
2398
" to trigger updates to external systems like bug trackers. The --fixes\n"
2399
" option can be used to record the association between a revision and\n"
2400
" one or more bugs. See ``brz help bugs`` for details."
2403
# help of 'exclude' option of 'commit' command
2404
#: breezy/builtins.py:3497
2405
msgid "Do not consider changes made to a given path."
2408
# help of 'message' option of 'commit' command
2409
#: breezy/builtins.py:3500
2410
msgid "Description of the new revision."
2413
# help of 'unchanged' option of 'commit' command
2414
#: breezy/builtins.py:3503
2415
msgid "Commit even if nothing has changed."
2418
# help of 'file' option of 'commit' command
2419
#: breezy/builtins.py:3507
2420
msgid "Take commit message from this file."
2423
# help of 'strict' option of 'commit' command
2424
#: breezy/builtins.py:3509
2425
msgid "Refuse to commit if there are unknown files in the working tree."
2428
# help of 'commit-time' option of 'commit' command
2429
#: breezy/builtins.py:3512
2431
"Manually set a commit time using commit date format, e.g. '2009-10-10 "
2435
# help of 'bugs' option of 'commit' command
2436
#: breezy/builtins.py:3516
2437
msgid "Link to a related bug. (see \"brz help bugs\")."
2440
# help of 'fixes' option of 'commit' command
2441
#: breezy/builtins.py:3519
2442
msgid "Mark a bug as being fixed by this revision (see \"brz help bugs\")."
2445
# help of 'author' option of 'commit' command
2446
#: breezy/builtins.py:3523
2447
msgid "Set the author's name, if it's different from the committer."
2450
# help of 'local' option of 'commit' command
2451
#: breezy/builtins.py:3526
2453
"Perform a local commit in a bound branch. Local commits are not pushed to "
2454
"the master branch until a normal commit is performed."
2457
# help of 'show-diff' option of 'commit' command
2458
#: breezy/builtins.py:3532
2460
"When no message is supplied, show the diff along with the status summary in "
2461
"the message editor."
2464
# help of 'lossy' option of 'commit' command
2465
#: breezy/builtins.py:3535
2467
"When committing to a foreign version control system do not push data that "
2468
"can not be natively represented."
2471
#: breezy/builtins.py:3552
2474
"No tracker specified for bug %s. Use the form 'tracker:id' or specify a "
2475
"default bug tracker using the `bugtracker` option.\n"
2476
"See \"brz help bugs\" for more information on this feature. Commit refused."
2479
#: breezy/builtins.py:3561
2482
"Invalid bug %s. Must be in the form of 'tracker:id'. See \"brz help bugs\" "
2483
"for more information on this feature.\n"
2487
#: breezy/builtins.py:3570
2489
msgid "Unrecognized bug %s. Commit refused."
2492
#: breezy/builtins.py:3573
2499
#: breezy/builtins.py:3600
2500
msgid "Could not parse --commit-time: "
2503
#: breezy/builtins.py:3644
2504
msgid "please specify either --message or --file"
2507
#: breezy/builtins.py:3674
2508
msgid "please specify a commit message with either --message or --file"
2511
#: breezy/builtins.py:3677
2513
"Empty commit message specified. Please specify a commit message with either "
2514
"--message or --file or leave a blank message with --message \"\"."
2517
#: breezy/builtins.py:3697
2519
"No changes to commit. Please 'brz add' the files you want to commit, or use "
2520
"--unchanged to force an empty commit."
2523
#: breezy/builtins.py:3701
2525
"Conflicts detected in working tree. Use \"brz conflicts\" to list, \"brz "
2526
"resolve FILE\" to resolve."
2529
#: breezy/builtins.py:3705
2530
msgid "Commit refused because there are unknown files in the working tree."
2533
#: breezy/builtins.py:3708
2536
"To commit to master branch, run update and then commit.\n"
2537
"You can also pass --local to commit to continue working disconnected."
2540
#: breezy/builtins.py:3716
2542
"Validate working tree structure, branch consistency and repository history."
2545
#: breezy/builtins.py:3718
2547
"This command checks various invariants about branch and repository storage\n"
2548
"to detect data corruption or brz bugs."
2551
#: breezy/builtins.py:3721
2553
"The working tree and branch checks will only give output if a problem is\n"
2554
"detected. The output fields of the repository check are:"
2557
#: breezy/builtins.py:3724
2560
" This is just the number of revisions checked. It doesn't\n"
2561
" indicate a problem."
2564
#: breezy/builtins.py:3728
2567
" This is just the number of versionedfiles checked. It\n"
2568
" doesn't indicate a problem."
2571
#: breezy/builtins.py:3732
2573
"unreferenced ancestors\n"
2574
" Texts that are ancestors of other texts, but\n"
2575
" are not properly referenced by the revision ancestry. This is a\n"
2576
" subtle problem that Bazaar can work around."
2579
#: breezy/builtins.py:3737
2581
"unique file texts\n"
2582
" This is the total number of unique file contents\n"
2583
" seen in the checked revisions. It does not indicate a problem."
2586
#: breezy/builtins.py:3741
2588
"repeated file texts\n"
2589
" This is the total number of repeated texts seen\n"
2590
" in the checked revisions. Texts can be repeated when their file\n"
2591
" entries are modified, but the file contents are not. It does not\n"
2592
" indicate a problem."
2595
#: breezy/builtins.py:3747
2597
"If no restrictions are specified, all Bazaar data that is found at the "
2599
"location will be checked."
2602
#: breezy/builtins.py:3752
2603
msgid " Check the tree and branch at 'foo'::"
2606
#: breezy/builtins.py:3754
2607
msgid " brz check --tree --branch foo"
2610
#: breezy/builtins.py:3756
2611
msgid " Check only the repository at 'bar'::"
2614
#: breezy/builtins.py:3758
2615
msgid " brz check --repo bar"
2618
#: breezy/builtins.py:3760
2619
msgid " Check everything at 'baz'::"
2622
#: breezy/builtins.py:3762
2623
msgid " brz check baz"
2626
# help of 'branch' option of 'check' command
2627
#: breezy/builtins.py:3768
2628
msgid "Check the branch related to the current directory."
2631
# help of 'repo' option of 'check' command
2632
#: breezy/builtins.py:3770
2633
msgid "Check the repository related to the current directory."
2636
# help of 'tree' option of 'check' command
2637
#: breezy/builtins.py:3772
2638
msgid "Check the working tree related to the current directory."
2641
#: breezy/builtins.py:3786
2642
msgid "Upgrade a repository, branch or working tree to a newer format."
2645
#: breezy/builtins.py:3788
2647
"When the default format has changed after a major new release of\n"
2648
"Bazaar, you may be informed during certain operations that you\n"
2649
"should upgrade. Upgrading to a newer format may improve performance\n"
2650
"or make new features available. It may however limit interoperability\n"
2651
"with older repositories or with older versions of Bazaar."
2654
#: breezy/builtins.py:3794
2656
"If you wish to upgrade to a particular format rather than the\n"
2657
"current default, that can be specified using the --format option.\n"
2658
"As a consequence, you can use the upgrade command this way to\n"
2659
"\"downgrade\" to an earlier format, though some conversions are\n"
2660
"a one way process (e.g. changing from the 1.x default to the\n"
2661
"2.x default) so downgrading is not always possible."
2664
#: breezy/builtins.py:3801
2666
"A backup.bzr.~#~ directory is created at the start of the conversion\n"
2667
"process (where # is a number). By default, this is left there on\n"
2668
"completion. If the conversion fails, delete the new .bzr directory\n"
2669
"and rename this one back in its place. Use the --clean option to ask\n"
2670
"for the backup.bzr directory to be removed on successful conversion.\n"
2671
"Alternatively, you can delete it by hand if everything looks good\n"
2675
#: breezy/builtins.py:3809
2677
"If the location given is a shared repository, dependent branches\n"
2678
"are also converted provided the repository converts successfully.\n"
2679
"If the conversion of a branch fails, remaining branches are still\n"
2683
#: breezy/builtins.py:3814
2685
"For more information on upgrades, see the Bazaar Upgrade Guide,\n"
2686
"https://www.breezy-vcs.org/doc/en/upgrade-guide/."
2689
# help of 'format' option of 'upgrade' command
2690
#: breezy/builtins.py:3822
2691
msgid "Upgrade to a specific format. See \"brz help formats\" for details."
2694
# title of 'format' option of 'init' command
2695
# title of 'format' option of 'upgrade' command
2696
#: breezy/builtins.py:3827
2697
msgid "Branch format"
2700
# help of 'clean' option of 'upgrade' command
2701
#: breezy/builtins.py:3829
2702
msgid "Remove the backup.bzr directory if successful."
2705
# help of 'dry-run' option of 'add' command
2706
# help of 'dry-run' option of 'upgrade' command
2707
#: breezy/builtins.py:3831
2708
msgid "Show what would be done, but don't actually do anything."
2711
#: breezy/builtins.py:3846
2712
msgid "Show or set brz user id."
2715
#: breezy/builtins.py:3848
2718
" Show the email of the current user::"
2721
#: breezy/builtins.py:3851
2722
msgid " brz whoami --email"
2725
#: breezy/builtins.py:3853
2726
msgid " Set the current user::"
2729
#: breezy/builtins.py:3855
2730
msgid " brz whoami \"Frank Chu <fchu@example.com>\""
2733
# help of 'email' option of 'whoami' command
2734
#: breezy/builtins.py:3859
2735
msgid "Display email address only."
2738
# help of 'branch' option of 'whoami' command
2739
#: breezy/builtins.py:3861
2740
msgid "Set identity for the current branch instead of globally."
2743
#: breezy/builtins.py:3887
2744
msgid "--email can only be used to display existing identity"
2747
#: breezy/builtins.py:3911
2748
msgid "Print or set the branch nickname."
2751
#: breezy/builtins.py:3913
2753
"If unset, the colocated branch name is used for colocated branches, and\n"
2754
"the branch directory name is used for other branches. To print the\n"
2755
"current nickname, execute with no argument."
2758
#: breezy/builtins.py:3917
2760
"Bound branches use the nickname of its master branch unless it is set\n"
2764
#: breezy/builtins.py:3938
2765
msgid "Set/unset and display aliases."
2768
#: breezy/builtins.py:3940
2771
" Show the current aliases::"
2774
#: breezy/builtins.py:3943
2778
#: breezy/builtins.py:3945
2779
msgid " Show the alias specified for 'll'::"
2782
#: breezy/builtins.py:3947
2783
msgid " brz alias ll"
2786
#: breezy/builtins.py:3949
2787
msgid " Set an alias for 'll'::"
2790
#: breezy/builtins.py:3951
2791
msgid " brz alias ll=\"log --line -r-10..-1\""
2794
#: breezy/builtins.py:3953
2795
msgid " To remove an alias for 'll'::"
2798
#: breezy/builtins.py:3955
2799
msgid " brz alias --remove ll"
2802
# help of 'remove' option of 'alias' command
2803
#: breezy/builtins.py:3960
2804
msgid "Remove the alias."
2807
#: breezy/builtins.py:3978
2808
msgid "brz alias --remove expects an alias to remove."
2811
#: breezy/builtins.py:4169
2812
msgid "subunit not available. subunit needs to be installed to use --subunit."
2815
#: breezy/builtins.py:4186
2816
msgid "subunit not available. subunit needs to be installed to use --subunit2."
2819
#: breezy/builtins.py:4195
2821
"--benchmark is no longer supported from brz 2.2; use bzr-usertest instead"
2824
#: breezy/builtins.py:4242
2825
msgid "Show version of brz."
2828
# help of 'short' option of 'version' command
2829
#: breezy/builtins.py:4246
2830
msgid "Print just the version number."
2833
#: breezy/builtins.py:4265
2834
msgid "It sure does!\n"
2837
#: breezy/builtins.py:4289
2839
msgid "merge base is revision %s\n"
2842
#: breezy/builtins.py:4294
2843
msgid "Perform a three-way merge."
2846
#: breezy/builtins.py:4296
2848
"The source of the merge can be specified either in the form of a branch,\n"
2849
"or in the form of a path to a file containing a merge directive generated\n"
2850
"with brz send. If neither is specified, the default is the upstream branch\n"
2851
"or the branch most recently merged using --remember. The source of the\n"
2852
"merge may also be specified in the form of a path to a file in another\n"
2853
"branch: in this case, only the modifications to that file are merged into\n"
2854
"the current working tree."
2857
#: breezy/builtins.py:4304
2859
"When merging from a branch, by default brz will try to merge in all new\n"
2860
"work from the other branch, automatically determining an appropriate base\n"
2861
"revision. If this fails, you may need to give an explicit base."
2864
#: breezy/builtins.py:4308
2866
"To pick a different ending revision, pass \"--revision OTHER\". brz will\n"
2867
"try to merge in all new work up to and including revision OTHER."
2870
#: breezy/builtins.py:4311
2872
"If you specify two values, \"--revision BASE..OTHER\", only revisions BASE\n"
2873
"through OTHER, excluding BASE but including OTHER, will be merged. If this\n"
2874
"causes some revisions to be skipped, i.e. if the destination branch does\n"
2875
"not already contain revision BASE, such a merge is commonly referred to as\n"
2876
"a \"cherrypick\". Unlike a normal merge, Bazaar does not currently track\n"
2877
"cherrypicks. The changes look like a normal commit, and the history of the\n"
2878
"changes from the other branch is not stored in the commit."
2881
#: breezy/builtins.py:4319
2882
msgid "Revision numbers are always relative to the source branch."
2885
#: breezy/builtins.py:4321 breezy/conflicts.py:54 breezy/conflicts.py:109
2887
"Merge will do its best to combine the changes in two branches, but there\n"
2888
"are some kinds of problems only a human can fix. When it encounters those,\n"
2889
"it will mark a conflict. A conflict means that you need to fix something,\n"
2890
"before you can commit."
2893
#: breezy/builtins.py:4326
2894
msgid "Use brz resolve when you have fixed a problem. See also brz conflicts."
2897
#: breezy/builtins.py:4328
2899
"If there is no default branch set, the first merge will set it (use\n"
2900
"--no-remember to avoid setting it). After that, you can omit the branch\n"
2901
"to use the default. To change the default, use --remember. The value will\n"
2902
"only be saved if the remote location can be accessed."
2905
#: breezy/builtins.py:4333
2907
"The results of the merge are placed into the destination working\n"
2908
"directory, where they can be reviewed (with brz diff), tested, and then\n"
2909
"committed to record the result of the merge."
2912
#: breezy/builtins.py:4337
2914
"merge refuses to run if there are any uncommitted changes, unless\n"
2915
"--force is given. If --force is given, then the changes from the source\n"
2916
"will be merged with the current working tree, including any uncommitted\n"
2917
"changes in the tree. The --force option can also be used to create a\n"
2918
"merge revision which has more than two parents."
2921
#: breezy/builtins.py:4343
2923
"If one would like to merge changes from the working tree of the other\n"
2924
"branch without merging any committed revisions, the --uncommitted option\n"
2928
#: breezy/builtins.py:4347
2930
"To select only some changes to merge, use \"merge -i\", which will prompt\n"
2931
"you to apply each diff hunk and file change, similar to \"shelve\"."
2934
#: breezy/builtins.py:4350
2937
" To merge all new revisions from brz.dev::"
2940
#: breezy/builtins.py:4353
2941
msgid " brz merge ../brz.dev"
2944
#: breezy/builtins.py:4355
2945
msgid " To merge changes up to and including revision 82 from brz.dev::"
2948
#: breezy/builtins.py:4357
2949
msgid " brz merge -r 82 ../brz.dev"
2952
#: breezy/builtins.py:4359
2953
msgid " To merge the changes introduced by 82, without previous changes::"
2956
#: breezy/builtins.py:4361
2957
msgid " brz merge -r 81..82 ../brz.dev"
2960
#: breezy/builtins.py:4363
2961
msgid " To apply a merge directive contained in /tmp/merge::"
2964
#: breezy/builtins.py:4365
2965
msgid " brz merge /tmp/merge"
2968
#: breezy/builtins.py:4367
2970
" To create a merge revision with three parents from two branches\n"
2971
" feature1a and feature1b:"
2974
#: breezy/builtins.py:4370
2976
" brz merge ../feature1a\n"
2977
" brz merge ../feature1b --force\n"
2978
" brz commit -m 'revision with three parents'"
2981
# help of 'force' option of 'merge' command
2982
#: breezy/builtins.py:4382
2983
msgid "Merge even if the destination tree has uncommitted changes."
2986
# help of 'uncommitted' option of 'merge' command
2987
#: breezy/builtins.py:4388
2989
"Apply uncommitted changes from a working copy, instead of branch changes."
2992
# help of 'pull' option of 'merge' command
2993
#: breezy/builtins.py:4390
2995
"If the destination is already completely merged into the source, pull from "
2996
"the source rather than merging. When this happens, you do not need to "
2997
"commit the result."
3000
# help of 'directory' option of 'merge' command
3001
#: breezy/builtins.py:4395
3003
"Branch to merge into, rather than the one containing the working directory."
3006
# help of 'preview' option of 'merge' command
3007
#: breezy/builtins.py:4397
3008
msgid "Instead of merging, show a diff of the merge."
3011
# help of 'interactive' option of 'merge' command
3012
#: breezy/builtins.py:4399
3013
msgid "Select changes interactively."
3016
#: breezy/builtins.py:4422
3018
"Merging into empty branches not currently supported, https://bugs.launchpad."
3019
"net/bzr/+bug/308562"
3022
#: breezy/builtins.py:4444
3023
msgid "Cannot use --uncommitted with bundles or merge directives."
3026
#: breezy/builtins.py:4455
3027
msgid "Cannot use --uncommitted and --revision at the same time."
3030
#: breezy/builtins.py:4475
3034
#: breezy/builtins.py:4477 breezy/bundle/apply_bundle.py:65
3035
msgid "Nothing to do."
3038
#: breezy/builtins.py:4482
3039
msgid "Cannot pull individual files"
3042
#: breezy/builtins.py:4490
3043
msgid "This branch has no commits. (perhaps you would prefer 'brz pull')"
3046
#: breezy/builtins.py:4548
3048
msgid "Show-base is not supported for this merge type. %s"
3051
#: breezy/builtins.py:4557
3053
msgid "Conflict reduction is not supported for merge type %s."
3056
#: breezy/builtins.py:4561
3057
msgid "Cannot do conflict reduction and show base."
3060
#: breezy/builtins.py:4570
3061
msgid "Plan file merge unsupported: Merge type incompatible with tree formats."
3064
#: breezy/builtins.py:4681
3065
msgid "No location specified or remembered"
3068
#: breezy/builtins.py:4683
3069
#, python-brace-format
3070
msgid "{0} remembered {1} location {2}"
3073
#: breezy/builtins.py:4689
3074
msgid "Redo a merge."
3077
#: breezy/builtins.py:4691
3079
"Use this if you want to try a different merge technique while resolving\n"
3080
"conflicts. Some merge techniques are better than others, and remerge\n"
3081
"lets you try different ones on different files."
3084
#: breezy/builtins.py:4695
3086
"The options for remerge have the same meaning and defaults as the ones for\n"
3087
"merge. The difference is that remerge can (only) be run when there is a\n"
3088
"pending merge, and it lets you specify particular files."
3091
#: breezy/builtins.py:4699
3094
" Re-do the merge of all conflicted files, and show the base text in\n"
3095
" conflict regions, in addition to the usual THIS and OTHER texts::"
3098
#: breezy/builtins.py:4703
3099
msgid " brz remerge --show-base"
3102
#: breezy/builtins.py:4705
3104
" Re-do the merge of \"foobar\", using the weave merge algorithm, with\n"
3105
" additional processing to reduce the size of conflict regions::"
3108
#: breezy/builtins.py:4708
3109
msgid " brz remerge --merge-type weave --reprocess foobar"
3112
# help of 'show-base' option of 'merge' command
3113
# help of 'show-base' option of 'pull' command
3114
# help of 'show-base' option of 'remerge' command
3115
# help of 'show-base' option of 'update' command
3116
#: breezy/builtins.py:4715
3117
msgid "Show base revision text in conflicts."
3120
#: breezy/builtins.py:4728
3122
"Sorry, remerge only works after normal merges. Not cherrypicking or multi-"
3126
#: breezy/builtins.py:4783
3128
"Set files in the working tree back to the contents of a previous revision."
3131
#: breezy/builtins.py:4785
3133
"Giving a list of files will revert only those files. Otherwise, all files\n"
3134
"will be reverted. If the revision is not specified with '--revision', the\n"
3135
"working tree basis revision is used. A revert operation affects only the\n"
3136
"working tree, not any revision history like the branch and repository or\n"
3137
"the working tree basis revision."
3140
#: breezy/builtins.py:4791
3142
"To remove only some changes, without reverting to a prior version, use\n"
3143
"merge instead. For example, \"merge . -r -2..-3\" (don't forget the \".\")\n"
3144
"will remove the changes introduced by the second last commit (-2), without\n"
3145
"affecting the changes introduced by the last commit (-1). To remove\n"
3146
"certain changes on a hunk-by-hunk basis, see the shelve command.\n"
3147
"To update the branch to a specific revision or the latest revision and\n"
3148
"update the working tree accordingly while preserving local changes, see the\n"
3152
#: breezy/builtins.py:4800
3154
"Uncommitted changes to files that are reverted will be discarded.\n"
3155
"Howver, by default, any files that have been manually changed will be\n"
3156
"backed up first. (Files changed only by merge are not backed up.) Backup\n"
3157
"files have '.~#~' appended to their name, where # is a number."
3160
#: breezy/builtins.py:4805
3162
"When you provide files, you can use their current pathname or the pathname\n"
3163
"from the target revision. So you can use revert to \"undelete\" a file by\n"
3164
"name. If you name a directory, all the contents of that directory will be\n"
3168
#: breezy/builtins.py:4810
3170
"If you have newly added files since the target revision, they will be\n"
3171
"removed. If the files to be removed have been changed, backups will be\n"
3172
"created as above. Directories containing unknown files will not be\n"
3176
#: breezy/builtins.py:4815
3178
"The working tree contains a list of revisions that have been merged but\n"
3179
"not yet committed. These revisions will be included as additional parents\n"
3180
"of the next commit. Normally, using revert clears that list as well as\n"
3181
"reverting the files. If any files are specified, revert leaves the list\n"
3182
"of uncommitted merges alone and reverts only the files. Use ``brz revert\n"
3183
".`` in the tree root to revert all files but keep the recorded merges,\n"
3184
"and ``brz revert --forget-merges`` to clear the pending merge list without\n"
3185
"reverting any files."
3188
#: breezy/builtins.py:4824
3190
"Using \"brz revert --forget-merges\", it is possible to apply all of the\n"
3191
"changes from a branch in a single revision. To do this, perform the merge\n"
3192
"as desired. Then doing revert with the \"--forget-merges\" option will "
3194
"the content of the tree as it was, but it will clear the list of pending\n"
3195
"merges. The next commit will then contain all of the changes that are\n"
3196
"present in the other branch, but without any other parent revisions.\n"
3197
"Because this technique forgets where these changes originated, it may\n"
3198
"cause additional conflicts on later merges involving the same source and\n"
3202
# help of 'no-backup' option of 'revert' command
3203
#: breezy/builtins.py:4838
3204
msgid "Do not save backups of reverted files."
3207
# help of 'forget-merges' option of 'revert' command
3208
#: breezy/builtins.py:4840
3209
msgid "Remove pending merge marker, without changing any files."
3212
#: breezy/builtins.py:4871
3214
"Show help on a command or other topic.\n"
3218
# help of 'long' option of 'help' command
3219
#: breezy/builtins.py:4876
3220
msgid "Show help on all commands."
3223
#: breezy/builtins.py:4905
3224
msgid "Show unmerged/unpulled revisions between two branches."
3227
#: breezy/builtins.py:4907
3228
msgid "OTHER_BRANCH may be local or remote."
3231
#: breezy/builtins.py:4909
3233
"To filter on a range of revisions, you can use the command -r begin..end\n"
3234
"-r revision requests a specific revision, -r ..end or -r begin.. are\n"
3238
#: breezy/builtins.py:4913
3241
" 1 - some missing revisions\n"
3242
" 0 - no missing revisions"
3245
#: breezy/builtins.py:4919
3247
" Determine the missing revisions between this and the branch at the\n"
3248
" remembered pull location::"
3251
#: breezy/builtins.py:4922
3252
msgid " brz missing"
3255
#: breezy/builtins.py:4924
3256
msgid " Determine the missing revisions between this and another branch::"
3259
#: breezy/builtins.py:4926
3260
msgid " brz missing http://server/branch"
3263
#: breezy/builtins.py:4928
3265
" Determine the missing revisions up to a specific revision on the other\n"
3269
#: breezy/builtins.py:4931
3270
msgid " brz missing -r ..-10"
3273
#: breezy/builtins.py:4933
3275
" Determine the missing revisions up to a specific revision on this\n"
3279
#: breezy/builtins.py:4936
3280
msgid " brz missing --my-revision ..-10"
3283
# help of 'reverse' option of 'missing' command
3284
#: breezy/builtins.py:4943
3285
msgid "Reverse the order of revisions."
3288
# help of 'mine-only' option of 'missing' command
3289
#: breezy/builtins.py:4945
3290
msgid "Display changes in the local branch only."
3293
# help of 'this' option of 'missing' command
3294
#: breezy/builtins.py:4946
3295
msgid "Same as --mine-only."
3298
# help of 'theirs-only' option of 'missing' command
3299
#: breezy/builtins.py:4948
3300
msgid "Display changes in the remote branch only."
3303
# help of 'other' option of 'missing' command
3304
#: breezy/builtins.py:4949
3305
msgid "Same as --theirs-only."
3308
# help of 'revision' option of 'missing' command
3309
#: breezy/builtins.py:4954
3311
"Filter on other branch revisions (inclusive). See \"help revisionspec\" for "
3315
# help of 'my-revision' option of 'missing' command
3316
#: breezy/builtins.py:4958
3318
"Filter on local branch revisions (inclusive). See \"help revisionspec\" for "
3322
# help of 'include-merged' option of 'missing' command
3323
#: breezy/builtins.py:4961
3324
msgid "Show all revisions in addition to the mainline ones."
3327
#: breezy/builtins.py:5002
3328
msgid "No peer location known or specified."
3331
#: breezy/builtins.py:5006
3332
#, python-brace-format
3333
msgid "Using saved parent location: {0}\n"
3336
#: breezy/builtins.py:5039
3338
msgid "You have %d extra revision:\n"
3339
msgid_plural "You have %d extra revisions:\n"
3343
#: breezy/builtins.py:5059
3345
msgid "You are missing %d revision:\n"
3346
msgid_plural "You are missing %d revisions:\n"
3350
#: breezy/builtins.py:5074
3351
msgid "This branch has no new revisions.\n"
3354
#: breezy/builtins.py:5077
3355
msgid "Other branch has no new revisions.\n"
3358
#: breezy/builtins.py:5082
3359
msgid "Branches are up to date.\n"
3362
#: breezy/builtins.py:5093
3363
msgid "Compress the data within a repository."
3366
#: breezy/builtins.py:5095
3368
"This operation compresses the data within a bazaar repository. As\n"
3369
"bazaar supports automatic packing of repository, this operation is\n"
3370
"normally not required to be done manually."
3373
#: breezy/builtins.py:5099
3375
"During the pack operation, bazaar takes a backup of existing repository\n"
3376
"data, i.e. pack files. This backup is eventually removed by bazaar\n"
3377
"automatically when it is safe to do so. To save disk space by removing\n"
3378
"the backed up pack files, the --clean-obsolete-packs option may be\n"
3382
#: breezy/builtins.py:5105
3384
"Warning: If you use --clean-obsolete-packs and your machine crashes\n"
3385
"during or immediately after repacking, you may be left with a state\n"
3386
"where the deletion has been written to disk but the new packs have not\n"
3387
"been. In this case the repository may be unusable."
3390
# help of 'clean-obsolete-packs' option of 'pack' command
3391
#: breezy/builtins.py:5115
3392
msgid "Delete obsolete packs to save disk space."
3395
#: breezy/builtins.py:5129
3396
msgid "List the installed plugins."
3399
#: breezy/builtins.py:5131
3401
"This command displays the list of installed plugins including\n"
3402
"version of plugin and a short description of each."
3405
#: breezy/builtins.py:5134
3406
msgid "--verbose shows the path where each plugin is located."
3409
#: breezy/builtins.py:5136
3411
"A plugin is an external component for Bazaar that extends the\n"
3412
"revision control system, by adding or replacing code in Bazaar.\n"
3413
"Plugins can do a variety of things, including overriding commands,\n"
3414
"adding new commands, providing additional network transports and\n"
3415
"customizing log output."
3418
#: breezy/builtins.py:5142
3420
"See the Bazaar Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/>\n"
3421
"for further information on plugins including where to find them and how to\n"
3422
"install them. Instructions are also provided there on how to write new\n"
3423
"plugins using the Python programming language."
3426
#: breezy/builtins.py:5158
3427
msgid "Show testament (signing-form) of a revision."
3430
# help of 'long' option of 'testament' command
3431
#: breezy/builtins.py:5161
3432
msgid "Produce long-format testament."
3435
# help of 'strict' option of 'testament' command
3436
#: breezy/builtins.py:5163
3437
msgid "Produce a strict-format testament."
3440
#: breezy/builtins.py:5191
3441
msgid "Show the origin of each line in a file."
3444
#: breezy/builtins.py:5193
3446
"This prints out the given file with an annotation on the left side\n"
3447
"indicating which revision, author and date introduced the change."
3450
#: breezy/builtins.py:5196
3452
"If the origin is the same for a run of consecutive lines, it is\n"
3453
"shown only at the top, unless the --all option is given."
3456
# help of 'all' option of 'annotate' command
3457
#: breezy/builtins.py:5204
3458
msgid "Show annotations on all lines."
3461
# help of 'long' option of 'annotate' command
3462
#: breezy/builtins.py:5205
3463
msgid "Show commit date in annotations."
3466
#: breezy/builtins.py:5293
3467
msgid "Cannot sign a range of non-revision-history revisions"
3470
#: breezy/builtins.py:5306
3471
msgid "Please supply either one revision, or a range."
3474
#: breezy/builtins.py:5310
3476
"Convert the current branch into a checkout of the supplied branch.\n"
3477
"If no branch is supplied, rebind to the last bound location."
3480
#: breezy/builtins.py:5313
3482
"Once converted into a checkout, commits must succeed on the master branch\n"
3483
"before they will be applied to the local branch."
3486
#: breezy/builtins.py:5316
3488
"Bound branches use the nickname of its master branch unless it is set\n"
3489
"locally, in which case binding will update the local nickname to be\n"
3490
"that of the master."
3493
#: breezy/builtins.py:5332
3494
msgid "No location supplied. This format does not remember old locations."
3497
#: breezy/builtins.py:5338
3498
msgid "Branch is already bound"
3501
#: breezy/builtins.py:5341
3502
msgid "No location supplied and no previous location known"
3505
#: breezy/builtins.py:5348
3506
msgid "These branches have diverged. Try merging, and then bind again."
3509
#: breezy/builtins.py:5355
3510
msgid "Convert the current checkout into a regular branch."
3513
#: breezy/builtins.py:5357
3515
"After unbinding, the local branch is considered independent and subsequent\n"
3516
"commits will be local only."
3519
#: breezy/builtins.py:5368
3520
msgid "Local branch is not bound"
3523
#: breezy/builtins.py:5372
3524
msgid "Remove the last committed revision."
3527
#: breezy/builtins.py:5374
3529
"--verbose will print out what is being removed.\n"
3530
"--dry-run will go through all the motions, but not actually\n"
3534
#: breezy/builtins.py:5378
3536
"If --revision is specified, uncommit revisions to leave the branch at the\n"
3537
"specified revision. For example, \"brz uncommit -r 15\" will leave the\n"
3538
"branch at revision 15."
3541
#: breezy/builtins.py:5382
3543
"Uncommit leaves the working tree ready for a new commit. The only change\n"
3544
"it may make is to restore any pending merges that were present before\n"
3548
# help of 'dry-run' option of 'uncommit' command
3549
#: breezy/builtins.py:5393
3550
msgid "Don't actually make changes."
3553
# help of 'force' option of 'uncommit' command
3554
#: breezy/builtins.py:5394
3555
msgid "Say yes to all questions."
3558
# help of 'keep-tags' option of 'uncommit' command
3559
#: breezy/builtins.py:5396
3560
msgid "Keep tags that point to removed revisions."
3563
# help of 'local' option of 'uncommit' command
3564
#: breezy/builtins.py:5398
3565
msgid "Only remove the commits from the local branch when in a checkout."
3568
#: breezy/builtins.py:5447
3569
msgid "No revisions to uncommit.\n"
3572
#: breezy/builtins.py:5462
3573
msgid "Dry-run, pretending to remove the above revisions.\n"
3576
#: breezy/builtins.py:5466
3577
msgid "The above revision(s) will be removed.\n"
3580
#: breezy/builtins.py:5470
3581
msgid "Uncommit these revisions"
3584
#: breezy/builtins.py:5473
3588
#: breezy/builtins.py:5481
3591
"You can restore the old tip by running:\n"
3592
" brz pull . -r revid:%s\n"
3595
#: breezy/builtins.py:5487
3596
msgid "Break a dead lock."
3599
#: breezy/builtins.py:5489
3601
"This command breaks a lock on a repository, branch, working directory or\n"
3605
#: breezy/builtins.py:5492
3607
"CAUTION: Locks should only be broken when you are sure that the process\n"
3608
"holding the lock has been stopped."
3611
#: breezy/builtins.py:5495
3613
"You can get information on what locks are open via the 'brz info\n"
3614
"[location]' command."
3617
#: breezy/builtins.py:5498
3621
" brz break-lock brz+ssh://example.com/brz/foo\n"
3622
" brz break-lock --conf ~/.bazaar"
3625
# help of 'config' option of 'break-lock' command
3626
#: breezy/builtins.py:5507
3627
msgid "LOCATION is the directory where the config lock is."
3630
# help of 'force' option of 'break-lock' command
3631
#: breezy/builtins.py:5509
3632
msgid "Do not ask for confirmation before breaking the lock."
3635
# help of 'protocol=git' option of 'serve' command
3636
#: breezy/builtins.py:5544
3637
msgid "Git Smart server protocol over TCP. (default port: 9418)"
3640
# help of 'protocol=git-receive-pack' option of 'serve' command
3641
#: breezy/builtins.py:5544
3642
msgid "Git Smart server receive pack command. (inetd mode only)"
3645
# help of 'protocol=git-upload-pack' option of 'serve' command
3646
#: breezy/builtins.py:5544
3647
msgid "Git Smart server upload pack command. (inetd mode only)"
3650
# help of 'protocol=bzr' option of 'serve' command
3651
#: breezy/builtins.py:5544
3652
msgid "The Bazaar smart server protocol over TCP. (default port: 4155)"
3655
#: breezy/builtins.py:5545
3656
msgid "Run the brz server."
3659
# help of 'inet' option of 'serve' command
3660
#: breezy/builtins.py:5551
3661
msgid "Serve on stdin/out for use from inetd or sshd."
3664
# title of 'protocol' option of 'serve' command
3665
#: breezy/builtins.py:5552
3669
# help of 'protocol' option of 'serve' command
3670
#: breezy/builtins.py:5553
3671
msgid "Protocol to serve."
3674
# help of 'listen' option of 'serve' command
3675
#: breezy/builtins.py:5558
3676
msgid "Listen for connections on nominated address."
3679
# help of 'port' option of 'serve' command
3680
#: breezy/builtins.py:5561
3682
"Listen for connections on nominated port. Passing 0 as the port number will "
3683
"result in a dynamically allocated port. The default port depends on the "
3687
# help of 'directory' option of 'serve' command
3688
#: breezy/builtins.py:5566
3689
msgid "Serve contents of this directory."
3692
# help of 'allow-writes' option of 'serve' command
3693
#: breezy/builtins.py:5568
3695
"By default the server is a readonly server. Supplying --allow-writes "
3696
"enables write access to the contents of the served directory and below. "
3697
"Note that ``brz serve`` does not perform authentication, so unless some form "
3698
"of external authentication is arranged supplying this option leads to global "
3699
"uncontrolled write access to your file system."
3702
# help of 'client-timeout' option of 'serve' command
3703
#: breezy/builtins.py:5577
3704
msgid "Override the default idle client timeout (5min)."
3707
#: breezy/builtins.py:5595
3708
msgid "Combine a tree into its containing tree."
3711
#: breezy/builtins.py:5597
3712
msgid "This command requires the target tree to be in a rich-root format."
3715
#: breezy/builtins.py:5599
3717
"The TREE argument should be an independent tree, inside another tree, but\n"
3718
"not part of it. (Such trees can be produced by \"brz split\", but also by\n"
3719
"running \"brz branch\" with the target inside a tree.)"
3722
#: breezy/builtins.py:5603
3724
"The result is a combined tree, with the subtree no longer an independent\n"
3725
"part. This is marked as a merge of the subtree into the containing tree,\n"
3726
"and all history is preserved."
3729
#: breezy/builtins.py:5622
3732
"Can't join trees because %s doesn't support rich root data.\n"
3733
"You can use brz upgrade on the repository."
3736
#: breezy/builtins.py:5632 breezy/builtins.py:5638
3737
#, python-brace-format
3738
msgid "Cannot join {0}. {1}"
3741
#: breezy/builtins.py:5642
3742
msgid "Split a subdirectory of a tree into a separate tree."
3745
#: breezy/builtins.py:5644
3747
"This command will produce a target tree in a format that supports\n"
3748
"rich roots, like 'rich-root' or 'rich-root-pack'. These formats cannot be\n"
3749
"converted into earlier formats like 'dirstate-tags'."
3752
#: breezy/builtins.py:5648
3754
"The TREE argument should be a subdirectory of a working tree. That\n"
3755
"subdirectory will be converted into an independent tree, with its own\n"
3756
"branch. Commits in the top-level tree will not apply to the new subtree."
3759
#: breezy/builtins.py:5730
3760
msgid "No submit branch specified or known"
3763
#: breezy/builtins.py:5740 breezy/send.py:109
3764
msgid "No public branch specified or known"
3767
#: breezy/builtins.py:5745
3768
msgid "brz merge-directive takes at most two one revision identifiers"
3771
#: breezy/builtins.py:5754
3772
msgid "No revisions to bundle."
3775
#: breezy/builtins.py:5773
3776
msgid "Mail or create a merge-directive for submitting changes."
3779
#: breezy/builtins.py:5775
3780
msgid "A merge directive provides many things needed for requesting merges:"
3783
#: breezy/builtins.py:5777
3784
msgid "* A machine-readable description of the merge to perform"
3787
#: breezy/builtins.py:5779
3788
msgid "* An optional patch that is a preview of the changes requested"
3791
#: breezy/builtins.py:5781
3793
"* An optional bundle of revision data, so that the changes can be applied\n"
3794
" directly from the merge directive, without retrieving data from a\n"
3798
#: breezy/builtins.py:5785
3800
"`brz send` creates a compact data set that, when applied using brz\n"
3801
"merge, has the same effect as merging from the source branch."
3804
#: breezy/builtins.py:5788
3806
"By default the merge directive is self-contained and can be applied to any\n"
3807
"branch containing submit_branch in its ancestory without needing access to\n"
3808
"the source branch."
3811
#: breezy/builtins.py:5792
3813
"If --no-bundle is specified, then Bazaar doesn't send the contents of the\n"
3814
"revisions, but only a structured request to merge from the\n"
3815
"public_location. In that case the public_branch is needed and it must be\n"
3816
"up-to-date and accessible to the recipient. The public_branch is always\n"
3817
"included if known, so that people can check it later."
3820
#: breezy/builtins.py:5798
3822
"The submit branch defaults to the parent of the source branch, but can be\n"
3823
"overridden. Both submit branch and public branch will be remembered in\n"
3824
"branch.conf the first time they are used for a particular branch. The\n"
3825
"source branch defaults to that containing the working directory, but can\n"
3826
"be changed using --from."
3829
#: breezy/builtins.py:5804
3831
"Both the submit branch and the public branch follow the usual behavior with\n"
3832
"respect to --remember: If there is no default location set, the first send\n"
3833
"will set it (use --no-remember to avoid setting it). After that, you can\n"
3834
"omit the location to use the default. To change the default, use\n"
3835
"--remember. The value will only be saved if the location can be accessed."
3838
#: breezy/builtins.py:5810
3840
"In order to calculate those changes, brz must analyse the submit branch.\n"
3841
"Therefore it is most efficient for the submit branch to be a local mirror.\n"
3842
"If a public location is known for the submit_branch, that location is used\n"
3843
"in the merge directive."
3846
#: breezy/builtins.py:5815
3848
"The default behaviour is to send the merge directive by mail, unless -o is\n"
3849
"given, in which case it is sent to a file."
3852
#: breezy/builtins.py:5818
3854
"Mail is sent using your preferred mail program. This should be transparent\n"
3855
"on Windows (it uses MAPI). On Unix, it requires the xdg-email utility.\n"
3856
"If the preferred client can't be found (or used), your editor will be used."
3859
#: breezy/builtins.py:5822
3861
"To use a specific mail program, set the mail_client configuration option.\n"
3862
"Supported values for specific clients are \"claws\", \"evolution\", \"kmail"
3864
"\"mail.app\" (MacOS X's Mail.app), \"mutt\", and \"thunderbird\"; generic "
3866
"are \"default\", \"editor\", \"emacsclient\", \"mapi\", and \"xdg-email\". "
3868
"may also add supported clients."
3871
#: breezy/builtins.py:5828
3873
"If mail is being sent, a to address is required. This can be supplied\n"
3874
"either on the commandline, by setting the submit_to configuration\n"
3875
"option in the branch itself or the child_submit_to configuration option\n"
3876
"in the submit branch."
3879
#: breezy/builtins.py:5833
3881
"The merge directives created by brz send may be applied using brz merge or\n"
3882
"brz pull by specifying a file containing a merge directive as the location."
3885
#: breezy/builtins.py:5836
3887
"brz send makes extensive use of public locations to map local locations "
3889
"URLs that can be used by other people. See `brz help configuration` to\n"
3890
"set them, and use `brz info` to display them."
3893
# help of 'output' option of 'send' command
3894
#: breezy/builtins.py:5860
3895
msgid "Write merge directive to this file or directory; use - for stdout."
3898
# help of 'strict' option of 'send' command
3899
#: breezy/builtins.py:5864
3901
"Refuse to send if there are uncommitted changes in the working tree, --no-"
3902
"strict disables the check."
3905
# help of 'mail-to' option of 'send' command
3906
#: breezy/builtins.py:5866
3907
msgid "Mail the request to this address."
3910
# help of 'body' option of 'send' command
3911
#: breezy/builtins.py:5870
3912
msgid "Body for the email."
3915
# help of 'no-bundle' option of 'send' command
3916
#: breezy/builtins.py:5917
3917
msgid "Do not include a bundle in the merge directive."
3920
# help of 'no-patch' option of 'send' command
3921
#: breezy/builtins.py:5918
3922
msgid "Do not include a preview patch in the merge directive."
3925
# help of 'remember' option of 'send' command
3926
#: breezy/builtins.py:5921
3927
msgid "Remember submit and public branch."
3930
# help of 'from' option of 'send' command
3931
#: breezy/builtins.py:5923
3933
"Branch to generate the submission from, rather than the one containing the "
3934
"working directory."
3937
# title of 'format' option of 'send' command
3938
# title of 'format' option of 'version-info' command
3939
#: breezy/builtins.py:5933 breezy/cmd_version_info.py:77
3943
# help of 'format' option of 'send' command
3944
#: breezy/builtins.py:5934
3945
msgid "Use the specified output format."
3948
#: breezy/builtins.py:5956
3949
msgid "Create, remove or modify a tag naming a revision."
3952
#: breezy/builtins.py:5958
3954
"Tags give human-meaningful names to revisions. Commands that take a -r\n"
3955
"(--revision) option can be given -rtag:X, where X is any previously\n"
3959
#: breezy/builtins.py:5962
3961
"Tags are stored in the branch. Tags are copied from one branch to another\n"
3962
"along when you branch, push, pull or merge."
3965
#: breezy/builtins.py:5965
3967
"It is an error to give a tag name that already exists unless you pass\n"
3968
"--force, in which case the tag is moved to point to the new revision."
3971
#: breezy/builtins.py:5968
3973
"To rename a tag (change the name but keep it on the same revsion), run "
3975
"tag new-name -r tag:old-name`` and then ``brz tag --delete oldname``."
3978
#: breezy/builtins.py:5971
3980
"If no tag name is specified it will be determined through the\n"
3981
"'automatic_tag_name' hook. This can e.g. be used to automatically tag\n"
3982
"upstream releases by reading configure.ac. See ``brz help hooks`` for\n"
3986
# help of 'delete' option of 'tag' command
3987
#: breezy/builtins.py:5981
3988
msgid "Delete this tag rather than placing it."
3991
# help of 'directory' option of 'tag' command
3992
#: breezy/builtins.py:5984
3993
msgid "Branch in which to place the tag."
3996
# help of 'force' option of 'tag' command
3997
#: breezy/builtins.py:5986
3998
msgid "Replace existing tags."
4001
#: breezy/builtins.py:6002
4002
msgid "No tag specified to delete."
4005
#: breezy/builtins.py:6004
4007
msgid "Deleted tag %s."
4010
#: breezy/builtins.py:6009
4011
msgid "Tags can only be placed on a single revision, not on a range"
4014
#: breezy/builtins.py:6018
4015
msgid "Please specify a tag name."
4018
#: breezy/builtins.py:6026
4020
msgid "Tag %s already exists for that revision."
4023
#: breezy/builtins.py:6030
4025
msgid "Created tag %s."
4028
#: breezy/builtins.py:6032
4030
msgid "Updated tag %s."
4033
#: breezy/builtins.py:6036
4037
#: breezy/builtins.py:6038
4039
"This command shows a table of tag names and the revisions they reference."
4042
# help of 'directory' option of 'tags' command
4043
#: breezy/builtins.py:6044
4044
msgid "Branch whose tags should be displayed."
4047
# help of 'sort' option of 'tags' command
4048
#: breezy/builtins.py:6046
4049
msgid "Sort tags by different criteria."
4052
# title of 'sort' option of 'tags' command
4053
#: breezy/builtins.py:6046
4057
#: breezy/builtins.py:6116
4058
msgid "Reconfigure the type of a brz directory."
4061
#: breezy/builtins.py:6118
4062
msgid "A target configuration must be specified."
4065
#: breezy/builtins.py:6120
4067
"For checkouts, the bind-to location will be auto-detected if not specified.\n"
4068
"The order of preference is\n"
4069
"1. For a lightweight checkout, the current bound location.\n"
4070
"2. For branches that used to be checkouts, the previously-bound location.\n"
4071
"3. The push location.\n"
4072
"4. The parent location.\n"
4073
"If none of these is available, --bind-to must be specified."
4076
# title of 'tree_type' option of 'reconfigure' command
4077
#: breezy/builtins.py:6134
4081
# help of 'tree_type' option of 'reconfigure' command
4082
#: breezy/builtins.py:6135
4083
msgid "The relation between branch and tree."
4086
# help of 'tree_type=branch' option of 'reconfigure' command
4087
#: breezy/builtins.py:6137
4088
msgid "Reconfigure to be an unbound branch with no working tree."
4091
# help of 'tree_type=tree' option of 'reconfigure' command
4092
#: breezy/builtins.py:6138
4093
msgid "Reconfigure to be an unbound branch with a working tree."
4096
# help of 'tree_type=checkout' option of 'reconfigure' command
4097
#: breezy/builtins.py:6139
4098
msgid "Reconfigure to be a bound branch with a working tree."
4101
# help of 'tree_type=lightweight-checkout' option of 'reconfigure' command
4102
#: breezy/builtins.py:6140
4103
msgid "Reconfigure to be a lightweight checkout (with no local history)."
4106
# title of 'repository_type' option of 'reconfigure' command
4107
#: breezy/builtins.py:6145
4108
msgid "Repository type"
4111
# help of 'repository_type' option of 'reconfigure' command
4112
#: breezy/builtins.py:6146
4113
msgid "Location fo the repository."
4116
# help of 'repository_type=standalone' option of 'reconfigure' command
4117
#: breezy/builtins.py:6148
4119
"Reconfigure to be a standalone branch (i.e. stop using shared repository)."
4122
# help of 'repository_type=use-shared' option of 'reconfigure' command
4123
#: breezy/builtins.py:6150
4124
msgid "Reconfigure to use a shared repository."
4127
# title of 'repository_trees' option of 'reconfigure' command
4128
#: breezy/builtins.py:6154
4129
msgid "Trees in Repository"
4132
# help of 'repository_trees' option of 'reconfigure' command
4133
#: breezy/builtins.py:6155
4134
msgid "Whether new branches in the repository have trees."
4137
# help of 'repository_trees=with-trees' option of 'reconfigure' command
4138
#: breezy/builtins.py:6157
4139
msgid "Reconfigure repository to create working trees on branches by default."
4142
# help of 'repository_trees=with-no-trees' option of 'reconfigure' command
4143
#: breezy/builtins.py:6159
4145
"Reconfigure repository to not create working trees on branches by default."
4148
# help of 'bind-to' option of 'reconfigure' command
4149
#: breezy/builtins.py:6162
4150
msgid "Branch to bind checkout to."
4153
# help of 'force' option of 'reconfigure' command
4154
#: breezy/builtins.py:6164
4155
msgid "Perform reconfiguration even if local changes will be lost."
4158
# help of 'stacked-on' option of 'reconfigure' command
4159
#: breezy/builtins.py:6167
4160
msgid "Reconfigure a branch to be stacked on another branch."
4163
# help of 'unstacked' option of 'reconfigure' command
4164
#: breezy/builtins.py:6171
4166
"Reconfigure a branch to be unstacked. This may require copying substantial "
4170
#: breezy/builtins.py:6182
4171
msgid "Can't use both --stacked-on and --unstacked"
4174
#: breezy/builtins.py:6196
4175
msgid "No target configuration specified"
4178
#: breezy/builtins.py:6231
4179
msgid "Set the branch of a checkout and update."
4182
#: breezy/builtins.py:6233
4184
"For lightweight checkouts, this changes the branch being referenced.\n"
4185
"For heavyweight checkouts, this checks that there are no local commits\n"
4186
"versus the current bound branch, then it makes the local branch a mirror\n"
4187
"of the new location and binds to it."
4190
#: breezy/builtins.py:6238
4192
"In both cases, the working tree is updated and uncommitted changes\n"
4193
"are merged. The user can commit or revert these as they desire."
4196
#: breezy/builtins.py:6241
4197
msgid "Pending merges need to be committed or reverted before using switch."
4200
#: breezy/builtins.py:6243
4202
"The path to the branch to switch to can be specified relative to the parent\n"
4203
"directory of the current branch. For example, if you are currently in a\n"
4204
"checkout of /path/to/branch, specifying 'newbranch' will find a branch at\n"
4205
"/path/to/newbranch."
4208
#: breezy/builtins.py:6248
4210
"Bound branches use the nickname of its master branch unless it is set\n"
4211
"locally, in which case switching will update the local nickname to be\n"
4212
"that of the master."
4215
# help of 'force' option of 'switch' command
4216
#: breezy/builtins.py:6256
4217
msgid "Switch even if local commits will be lost."
4220
# help of 'create-branch' option of 'switch' command
4221
#: breezy/builtins.py:6259
4222
msgid "Create the target branch from this one before switching to it."
4225
# help of 'store' option of 'switch' command
4226
#: breezy/builtins.py:6262
4227
msgid "Store and restore uncommitted changes in the branch."
4230
#: breezy/builtins.py:6276
4231
msgid "You must supply either a revision or a location"
4234
#: breezy/builtins.py:6289
4235
msgid "cannot create branch without source branch"
4238
#: breezy/builtins.py:6315
4240
"switching would create a branch reference loop. Use the \"bzr up\" command "
4241
"to switch to a different revision."
4244
#: breezy/builtins.py:6323
4246
msgid "Switched to branch %s at %s"
4249
#: breezy/builtins.py:6326
4251
msgid "Switched to branch %s"
4254
#: breezy/builtins.py:6328
4256
msgid "Switched to branch at %s"
4259
#: breezy/builtins.py:6333
4260
msgid "Manage filtered views."
4263
#: breezy/builtins.py:6335
4265
"Views provide a mask over the tree so that users can focus on\n"
4266
"a subset of a tree when doing their work. After creating a view,\n"
4267
"commands that support a list of files - status, diff, commit, etc -\n"
4268
"effectively have that list of files implicitly given each time.\n"
4269
"An explicit list of files can still be given but those files\n"
4270
"must be within the current view."
4273
#: breezy/builtins.py:6342
4275
"In most cases, a view has a short life-span: it is created to make\n"
4276
"a selected change and is deleted once that change is committed.\n"
4277
"At other times, you may wish to create one or more named views\n"
4278
"and switch between them."
4281
#: breezy/builtins.py:6347
4283
"To disable the current view without deleting it, you can switch to\n"
4284
"the pseudo view called ``off``. This can be useful when you need\n"
4285
"to see the whole tree for an operation or two (e.g. merge) but\n"
4286
"want to switch back to your view after that."
4289
#: breezy/builtins.py:6352
4292
" To define the current view::"
4295
#: breezy/builtins.py:6355
4296
msgid " brz view file1 dir1 ..."
4299
#: breezy/builtins.py:6357
4300
msgid " To list the current view::"
4303
#: breezy/builtins.py:6359
4307
#: breezy/builtins.py:6361
4308
msgid " To delete the current view::"
4311
#: breezy/builtins.py:6363
4312
msgid " brz view --delete"
4315
#: breezy/builtins.py:6365
4316
msgid " To disable the current view without deleting it::"
4319
#: breezy/builtins.py:6367
4320
msgid " brz view --switch off"
4323
#: breezy/builtins.py:6369
4324
msgid " To define a named view and switch to it::"
4327
#: breezy/builtins.py:6371
4328
msgid " brz view --name view-name file1 dir1 ..."
4331
#: breezy/builtins.py:6373
4332
msgid " To list a named view::"
4335
#: breezy/builtins.py:6375
4336
msgid " brz view --name view-name"
4339
#: breezy/builtins.py:6377
4340
msgid " To delete a named view::"
4343
#: breezy/builtins.py:6379
4344
msgid " brz view --name view-name --delete"
4347
#: breezy/builtins.py:6381
4348
msgid " To switch to a named view::"
4351
#: breezy/builtins.py:6383
4352
msgid " brz view --switch view-name"
4355
#: breezy/builtins.py:6385
4356
msgid " To list all views defined::"
4359
#: breezy/builtins.py:6387
4360
msgid " brz view --all"
4363
#: breezy/builtins.py:6389
4364
msgid " To delete all views::"
4367
#: breezy/builtins.py:6391
4368
msgid " brz view --delete --all"
4371
# help of 'all' option of 'view' command
4372
#: breezy/builtins.py:6398
4373
msgid "Apply list or delete action to all views."
4376
# help of 'delete' option of 'view' command
4377
#: breezy/builtins.py:6401
4378
msgid "Delete the view."
4381
# help of 'name' option of 'view' command
4382
#: breezy/builtins.py:6404
4383
msgid "Name of the view to define, list or delete."
4386
# help of 'switch' option of 'view' command
4387
#: breezy/builtins.py:6408
4388
msgid "Name of the view to switch to."
4391
#: breezy/builtins.py:6427
4392
msgid "Both --delete and a file list specified"
4395
#: breezy/builtins.py:6430
4396
msgid "Both --delete and --switch specified"
4399
#: breezy/builtins.py:6433
4400
msgid "Deleted all views.\n"
4403
#: breezy/builtins.py:6436
4404
msgid "No current view to delete"
4407
#: breezy/builtins.py:6439
4409
msgid "Deleted '%s' view.\n"
4412
#: breezy/builtins.py:6443
4413
msgid "Both --switch and a file list specified"
4416
#: breezy/builtins.py:6446
4417
msgid "Both --switch and --all specified"
4420
#: breezy/builtins.py:6450
4421
msgid "No current view to disable"
4424
#: breezy/builtins.py:6452
4426
msgid "Disabled '%s' view.\n"
4429
#: breezy/builtins.py:6458 breezy/builtins.py:6481
4430
#, python-brace-format
4431
msgid "Using '{0}' view: {1}\n"
4434
#: breezy/builtins.py:6461
4435
msgid "Views defined:\n"
4438
#: breezy/builtins.py:6470
4439
msgid "No views defined.\n"
4442
#: breezy/builtins.py:6477
4443
msgid "Cannot change the 'off' pseudo view"
4446
#: breezy/builtins.py:6486
4447
msgid "No current view.\n"
4450
#: breezy/builtins.py:6490
4451
#, python-brace-format
4452
msgid "'{0}' view is: {1}\n"
4455
#: breezy/builtins.py:6510
4456
msgid " <no hooks installed>\n"
4459
#: breezy/builtins.py:6514
4460
msgid "Remove a branch."
4463
#: breezy/builtins.py:6516
4465
"This will remove the branch from the specified location but\n"
4466
"will keep any working tree or repository in place."
4469
#: breezy/builtins.py:6521
4470
msgid " Remove the branch at repo/trunk::"
4473
#: breezy/builtins.py:6523
4474
msgid " brz remove-branch repo/trunk"
4477
# help of 'force' option of 'remove-branch' command
4478
#: breezy/builtins.py:6530
4479
msgid "Remove branch even if it is the active branch."
4482
#: breezy/builtins.py:6544
4483
msgid "Branch is active. Use --force to remove it."
4486
# help of 'writer=plain' option of 'shelve' command
4487
#: breezy/builtins.py:6548
4488
msgid "Plaintext diff output."
4491
#: breezy/builtins.py:6549
4492
msgid "Temporarily set aside some changes from the current tree."
4495
#: breezy/builtins.py:6551
4497
"Shelve allows you to temporarily put changes you've made \"on the shelf\",\n"
4498
"ie. out of the way, until a later time when you can bring them back from\n"
4499
"the shelf with the 'unshelve' command. The changes are stored alongside\n"
4500
"your working tree, and so they aren't propagated along with your branch nor\n"
4501
"will they survive its deletion."
4504
#: breezy/builtins.py:6557
4505
msgid "If shelve --list is specified, previously-shelved changes are listed."
4508
#: breezy/builtins.py:6559
4510
"Shelve is intended to help separate several sets of changes that have\n"
4511
"been inappropriately mingled. If you just want to get rid of all changes\n"
4512
"and you don't need to restore them later, use revert. If you want to\n"
4513
"shelve all text changes at once, use shelve --all."
4516
#: breezy/builtins.py:6564
4518
"If filenames are specified, only the changes to those files will be\n"
4519
"shelved. Other files will be left untouched."
4522
#: breezy/builtins.py:6567
4524
"If a revision is specified, changes since that revision will be shelved."
4527
#: breezy/builtins.py:6569
4529
"You can put multiple items on the shelf, and by default, 'unshelve' will\n"
4530
"restore the most recently shelved changes."
4533
#: breezy/builtins.py:6572
4535
"For complicated changes, it is possible to edit the changes in a separate\n"
4536
"editor program to decide what the file remaining in the working copy\n"
4537
"should look like. To do this, add the configuration option"
4540
#: breezy/builtins.py:6576
4541
msgid " change_editor = PROGRAM @new_path @old_path"
4544
#: breezy/builtins.py:6578
4546
"where @new_path is replaced with the path of the new version of the\n"
4547
"file and @old_path is replaced with the path of the old version of\n"
4548
"the file. The PROGRAM should save the new file with the desired\n"
4549
"contents of the file in the working tree."
4552
# help of 'all' option of 'shelve' command
4553
#: breezy/builtins.py:6590
4554
msgid "Shelve all changes."
4557
# help of 'writer' option of 'shelve' command
4558
#: breezy/builtins.py:6592
4559
msgid "Method to use for writing diffs."
4562
# title of 'writer' option of 'shelve' command
4563
#: breezy/builtins.py:6592
4567
# help of 'list' option of 'shelve' command
4568
#: breezy/builtins.py:6596
4569
msgid "List shelved changes."
4572
# help of 'destroy' option of 'shelve' command
4573
#: breezy/builtins.py:6598
4574
msgid "Destroy removed changes instead of shelving them."
4577
#: breezy/builtins.py:6627
4578
msgid "No shelved changes."
4581
#: breezy/builtins.py:6638
4582
msgid "Restore shelved changes."
4585
#: breezy/builtins.py:6640
4587
"By default, the most recently shelved changes are restored. However if you\n"
4588
"specify a shelf by id those changes will be restored instead. This works\n"
4589
"best when the changes don't depend on each other."
4592
# help of 'action' option of 'unshelve' command
4593
#: breezy/builtins.py:6649
4594
msgid "The action to perform."
4597
# title of 'action' option of 'resolve' command
4598
# title of 'action' option of 'unshelve' command
4599
#: breezy/builtins.py:6649 breezy/conflicts.py:707
4603
# help of 'action=apply' option of 'unshelve' command
4604
#: breezy/builtins.py:6651
4605
msgid "Apply changes and remove from the shelf."
4608
# help of 'action=dry-run' option of 'unshelve' command
4609
#: breezy/builtins.py:6652
4610
msgid "Show changes, but do not apply or remove them."
4613
# help of 'action=preview' option of 'unshelve' command
4614
#: breezy/builtins.py:6653
4616
"Instead of unshelving the changes, show the diff that would result from "
4620
# help of 'action=delete-only' option of 'unshelve' command
4621
#: breezy/builtins.py:6655
4622
msgid "Delete changes without applying them."
4625
# help of 'action=keep' option of 'unshelve' command
4626
#: breezy/builtins.py:6656
4627
msgid "Apply changes but don't delete them."
4630
#: breezy/builtins.py:6671
4631
msgid "Remove unwanted files from working tree."
4634
#: breezy/builtins.py:6673
4636
"By default, only unknown files, not ignored files, are deleted. Versioned\n"
4637
"files are never deleted."
4640
#: breezy/builtins.py:6676
4642
"Another class is 'detritus', which includes files emitted by brz during\n"
4643
"normal operations and selftests. (The value of these files decreases with\n"
4647
#: breezy/builtins.py:6680
4649
"If no options are specified, unknown files are deleted. Otherwise, option\n"
4650
"flags are respected, and may be combined."
4653
#: breezy/builtins.py:6683
4654
msgid "To check what clean-tree will do, use --dry-run."
4657
# help of 'ignored' option of 'clean-tree' command
4658
#: breezy/builtins.py:6686
4659
msgid "Delete all ignored files."
4662
# help of 'detritus' option of 'clean-tree' command
4663
#: breezy/builtins.py:6687
4665
"Delete conflict files, merge and revert backups, and failed selftest dirs."
4668
# help of 'unknown' option of 'clean-tree' command
4669
#: breezy/builtins.py:6690
4670
msgid "Delete files unknown to brz (default)."
4673
# help of 'dry-run' option of 'clean-tree' command
4674
#: breezy/builtins.py:6691
4675
msgid "Show files to delete instead of deleting them."
4678
# help of 'force' option of 'clean-tree' command
4679
#: breezy/builtins.py:6693
4680
msgid "Do not prompt before deleting."
4683
#: breezy/builtins.py:6772
4684
msgid "Import sources from a directory, tarball or zip file"
4687
#: breezy/builtins.py:6774
4689
"This command will import a directory, tarball or zip file into a bzr\n"
4690
"tree, replacing any versioned files already present. If a directory is\n"
4691
"specified, it is used as the target. If the directory does not exist, or\n"
4692
"is not versioned, it is created."
4695
#: breezy/builtins.py:6779
4696
msgid "Tarballs may be gzip or bzip2 compressed. This is autodetected."
4699
#: breezy/builtins.py:6781
4701
"If the tarball or zip has a single root directory, that directory is\n"
4702
"stripped when extracting the tarball. This is not done for directories."
4705
#: breezy/builtins.py:6793
4706
msgid "Hardlink matching files to another tree."
4709
#: breezy/builtins.py:6795
4710
msgid "Only files with identical content and execute bit will be linked."
4713
#: breezy/bundle/__init__.py:61
4714
msgid "A directory cannot be a bundle"
4717
#: breezy/bundle/apply_bundle.py:38
4718
msgid "Install revisions"
4721
#: breezy/bundle/commands.py:66
4722
msgid "--verbose requires a merge directive"
4725
#: breezy/bundle/commands.py:70
4726
msgid "Bundle format not supported"
4729
#: breezy/bundle/commands.py:80
4733
#: breezy/bundle/commands.py:84
4734
#, python-brace-format
4735
msgid "{0}: {1} ({2} multiparent)\n"
4738
#: breezy/bundle/commands.py:86
4740
msgid "unique files: %d\n"
4743
#: breezy/bundle/commands.py:95
4747
#: breezy/bundle/commands.py:96
4752
#: breezy/bundle/commands.py:98
4759
#: breezy/bundle/commands.py:107
4760
msgid "Decoded contents\n"
4763
#: breezy/bundle/serializer/v4.py:314
4765
msgid "Bundling %d revision."
4766
msgid_plural "Bundling %d revisions."
4770
#: breezy/bzr/bzrdir.py:504
4771
#, python-brace-format
4773
"making backup of {0}\n"
4777
#: breezy/bzr/bzrdir.py:525
4778
#, python-brace-format
4779
msgid "renamed {0} to {1}"
4782
#: breezy/bzr/bzrdir.py:1591
4785
"Source repository format does not support stacking, using format:\n"
4789
#: breezy/bzr/bzrdir.py:1611
4792
"Source branch format does not support stacking, using format:\n"
4796
#: breezy/bzr/bzrdir.py:1748
4797
msgid "starting repository conversion"
4800
#: breezy/bzr/bzrdir.py:1875
4801
#, python-brace-format
4802
msgid "Using default stacking branch {0} at {1}"
4805
#: breezy/bzr/check.py:99
4809
#: breezy/bzr/check.py:101
4810
msgid "checking revisions"
4813
#: breezy/bzr/check.py:103
4814
msgid "checking commit contents"
4817
#: breezy/bzr/check.py:105
4818
msgid "checking file graphs"
4821
#: breezy/bzr/check.py:109
4822
msgid "checking branches and trees"
4825
#: breezy/bzr/check.py:194
4826
#, python-brace-format
4827
msgid "checked repository {0} format {1}"
4830
#: breezy/bzr/check.py:197
4832
msgid "%6d revisions"
4835
#: breezy/bzr/check.py:198
4837
msgid "%6d file-ids"
4840
#: breezy/bzr/check.py:200
4842
msgid "%6d unreferenced text versions"
4845
#: breezy/bzr/check.py:204
4846
#, python-brace-format
4847
msgid "unreferenced version: {{{0}}} in {1}"
4850
#: breezy/bzr/check.py:207
4852
msgid "%6d revisions are missing inventory_sha1"
4855
#: breezy/bzr/check.py:210
4857
msgid "%6d revisions are mentioned but not present"
4860
#: breezy/bzr/check.py:213
4862
msgid "%6d ghost revisions"
4865
#: breezy/bzr/check.py:218
4867
msgid "%6d revisions missing parents in ancestry"
4870
#: breezy/bzr/check.py:222
4872
msgid " %s should be in the ancestry for:"
4875
#: breezy/bzr/check.py:227
4877
msgid "%6d inconsistent parents"
4880
#: breezy/bzr/check.py:232
4881
#, python-brace-format
4882
msgid " * {0} version {1} has parents ({2}) but should have ({3})"
4885
#: breezy/bzr/check.py:239
4887
msgid "%6d revisions have incorrect parents in the revision index"
4890
#: breezy/bzr/check.py:245
4891
#, python-brace-format
4892
msgid " {0} has wrong parents in index: ({1}) should be ({2})"
4895
#: breezy/bzr/check.py:261
4896
#, python-brace-format
4897
msgid "Mismatched internal revid {{{0}}} and index revid {{{1}}}"
4900
#: breezy/bzr/check.py:290
4901
#, python-brace-format
4903
"Multiple expected sha1s for {0}. {{{1}}} expects {{{2}}}, {{{3}}} expects "
4907
#: breezy/bzr/fetch.py:102
4908
msgid "Finding revisions"
4911
#: breezy/bzr/fetch.py:107
4912
msgid "Fetching revisions"
4915
#: breezy/bzr/groupcompress.py:1748
4917
msgid "Insert claimed random_id=True, but then inserted %r two times"
4920
#: breezy/bzr/knit.py:1835 breezy/bzr/knit.py:1873
4921
msgid "Walking content"
4924
#: breezy/bzr/knit.py:3406
4928
#: breezy/bzr/reconcile.py:97
4929
msgid "Reading inventory data"
4932
#: breezy/bzr/reconcile.py:117 breezy/bzr/reconcile.py:248
4933
msgid "Inventory ok."
4936
#: breezy/bzr/reconcile.py:119 breezy/bzr/reconcile.py:250
4937
msgid "Backing up inventory"
4940
#: breezy/bzr/reconcile.py:121
4941
msgid "Backup inventory created."
4944
#: breezy/bzr/reconcile.py:137 breezy/bzr/reconcile.py:269
4945
msgid "Writing weave"
4948
#: breezy/bzr/reconcile.py:140 breezy/bzr/reconcile.py:272
4949
msgid "Inventory regenerated."
4952
#: breezy/bzr/reconcile.py:235 breezy/bzr/reconcile.py:237
4953
#: breezy/bzr/reconcile.py:240
4954
msgid "Reading indexes"
4957
#: breezy/bzr/reconcile.py:244 breezy/bzr/reconcile.py:246
4958
msgid "Checking unused inventories"
4961
#: breezy/bzr/reconcile.py:252
4962
msgid "Backup Inventory created"
4965
#: breezy/bzr/reconcile.py:310
4966
msgid "Fixing text parents"
4969
#: breezy/bzr/reconcile.py:463
4970
#, python-brace-format
4971
msgid "Fixing last revision info {0} => {1}"
4974
#: breezy/bzr/reconcile.py:470
4975
msgid "revision_history ok."
4978
#: breezy/bzr/remote.py:1302
4980
msgid "bzr: ERROR (ignored): %s"
4983
#: breezy/bzr/remote.py:2610
4984
msgid "Copying repository content as tarball..."
4987
#: breezy/bzr/smart/medium.py:739
4988
#, python-brace-format
4989
msgid "HPSS calls: {0} ({1} vfs) {2}"
4992
#: breezy/bzr/smart/ping.py:33
4993
msgid "Pings a Bazaar smart server."
4996
#: breezy/bzr/smart/ping.py:35
4998
"This command sends a 'hello' request to the given location using the brz\n"
4999
"smart protocol, and reports the response."
5002
#: breezy/bzr/smart/server.py:169
5003
msgid "Requested to stop gracefully"
5006
#: breezy/bzr/smart/server.py:179
5008
msgid "Waiting for %d client(s) to finish"
5011
#: breezy/bzr/smart/server.py:185
5013
msgid "Still waiting for %d client(s) to finish"
5016
#: breezy/bzr/smart/server.py:219
5018
msgid "listening socket error: %s"
5021
#: breezy/bzr/smart/server.py:459
5023
msgid "listening on port: %s"
5026
#: breezy/bzr/vf_repository.py:786
5030
#: breezy/bzr/vf_repository.py:812
5034
#: breezy/bzr/vf_repository.py:1325 breezy/bzr/vf_repository.py:1335
5035
msgid "Calculating text parents"
5038
#: breezy/bzr/vf_repository.py:1413
5042
#: breezy/bzr/vf_repository.py:2293
5043
msgid "loading text store"
5046
#: breezy/bzr/vf_repository.py:2300
5047
msgid "checking text graph"
5050
#: breezy/bzr/vf_repository.py:2742 breezy/bzr/vf_repository.py:2756
5051
#: breezy/bzr/vf_repository.py:2868
5052
msgid "Transferring revisions"
5055
#: breezy/check.py:64
5057
msgid "Checking branch at '%s'."
5060
#: breezy/check.py:84
5062
msgid "Checking working tree at '%s'."
5065
#: breezy/check.py:137 breezy/check.py:151
5066
msgid "No branch found at specified location."
5069
#: breezy/check.py:139 breezy/check.py:149
5070
msgid "No working tree found at specified location."
5073
#: breezy/check.py:142
5075
msgid "Checking repository at '%s'."
5078
#: breezy/check.py:153
5079
msgid "No repository found at specified location."
5082
#: breezy/clean_tree.py:63
5083
msgid "Nothing to delete."
5086
#: breezy/clean_tree.py:68
5087
msgid "Are you sure you wish to delete these"
5090
#: breezy/clean_tree.py:70
5094
#: breezy/clean_tree.py:105
5096
msgid "unable to remove %s"
5099
#: breezy/clean_tree.py:109
5100
msgid "deleting paths:"
5103
#: breezy/clean_tree.py:123
5104
#, python-brace-format
5105
msgid "unable to remove \"{0}\": {1}."
5108
#: breezy/clean_tree.py:128
5109
msgid "No files deleted."
5112
#: breezy/cmd_version_info.py:49
5113
#, python-brace-format
5114
msgid "No known version info format {0}. Supported types are: {1}"
5117
# help of 'format=custom' option of 'version-info' command
5118
#: breezy/cmd_version_info.py:53
5119
msgid "Version info in Custom template-based format."
5122
# help of 'format=python' option of 'version-info' command
5123
#: breezy/cmd_version_info.py:53
5124
msgid "Version info in Python format."
5127
# help of 'format=rio' option of 'version-info' command
5128
#: breezy/cmd_version_info.py:53
5129
msgid "Version info in RIO (simple text) format (default)."
5132
#: breezy/cmd_version_info.py:54
5133
msgid "Show version information about this tree."
5136
#: breezy/cmd_version_info.py:56
5138
"You can use this command to add information about version into\n"
5139
"source code of an application. The output can be in one of the\n"
5140
"supported formats or in a custom format based on a template."
5143
#: breezy/cmd_version_info.py:60 en/help_topics/configuration.txt:699
5144
#: en/help_topics/configuration.txt:725
5145
msgid "For example::"
5148
#: breezy/cmd_version_info.py:62
5150
" brz version-info --custom \\\n"
5151
" --template=\"#define VERSION_INFO \\\"Project 1.2.3 (r{revno})\\\"\\n\""
5154
#: breezy/cmd_version_info.py:65
5156
"will produce a C header file with formatted string containing the\n"
5157
"current revision number. Other supported variables in templates are:"
5160
#: breezy/cmd_version_info.py:68
5162
" * {date} - date of the last revision\n"
5163
" * {build_date} - current date\n"
5164
" * {revno} - revision number\n"
5165
" * {revision_id} - revision id\n"
5166
" * {branch_nick} - branch nickname\n"
5167
" * {clean} - 0 if the source tree contains uncommitted changes,\n"
5171
# help of 'format' option of 'version-info' command
5172
#: breezy/cmd_version_info.py:78
5173
msgid "Select the output format."
5176
# help of 'all' option of 'version-info' command
5177
#: breezy/cmd_version_info.py:82
5178
msgid "Include all possible information."
5181
# help of 'check-clean' option of 'version-info' command
5182
#: breezy/cmd_version_info.py:83
5183
msgid "Check if tree is clean."
5186
# help of 'include-history' option of 'version-info' command
5187
#: breezy/cmd_version_info.py:85
5188
msgid "Include the revision-history."
5191
# help of 'include-file-revisions' option of 'version-info' command
5192
#: breezy/cmd_version_info.py:87
5193
msgid "Include the last revision for each file."
5196
# help of 'template' option of 'version-info' command
5197
#: breezy/cmd_version_info.py:89
5198
msgid "Template for the output."
5201
#: breezy/cmd_version_info.py:103
5202
msgid "brz version-info --revision takes exactly one revision specifier"
5205
#: breezy/commands.py:307
5207
msgid "unknown command \"%s\". Perhaps you meant \"%s\""
5210
#: breezy/commands.py:309
5212
msgid "unknown command \"%s\""
5215
#: breezy/commands.py:560
5216
msgid "No help for this command."
5219
#: breezy/commands.py:573
5221
msgid ":Purpose: %s\n"
5224
#: breezy/commands.py:575
5231
#: breezy/commands.py:577
5233
msgid ":Usage: %s\n"
5236
#: breezy/commands.py:597
5241
#: breezy/commands.py:608
5249
#: breezy/commands.py:618
5252
"See brz help %s for more details and examples.\n"
5256
#: breezy/commands.py:623
5260
#: breezy/commands.py:627
5262
msgid ":From: plugin \"%s\"\n"
5265
#: breezy/commands.py:639
5266
#, python-brace-format
5267
msgid ":doc:`{0} <{1}-help>`"
5270
#: breezy/commands.py:643
5272
msgid ":See also: %s"
5275
#: breezy/commands.py:917
5276
msgid "Only ASCII permitted in option names"
5279
#: breezy/commands.py:942 breezy/commands.py:950
5280
msgid "command {0!r} needs one or more {1}"
5283
#: breezy/commands.py:959
5284
msgid "command {0!r} requires argument {1}"
5287
#: breezy/commands.py:966
5288
#, python-brace-format
5289
msgid "extra argument to command {0}: {1}"
5292
#: breezy/commands.py:1038
5294
msgid "Profile data written to \"%s\"."
5297
#: breezy/commit.py:152 breezy/commit.py:727
5301
#: breezy/commit.py:152 breezy/commit.py:737
5305
#: breezy/commit.py:158
5307
msgid "Committing to: %s"
5310
#: breezy/commit.py:162
5312
msgid "Committed revision %d."
5315
#: breezy/commit.py:171
5320
#: breezy/commit.py:174
5325
#: breezy/commit.py:515
5326
#, python-brace-format
5328
"Conflicting tags in bound branch:\n"
5332
#: breezy/commit.py:729
5336
#: breezy/commit.py:794
5337
#, python-brace-format
5338
msgid "{0} [{1}] - Stage"
5341
#: breezy/commit.py:797
5346
#: breezy/commit_signature_commands.py:34
5347
msgid "Sign all commits by a given committer."
5350
#: breezy/commit_signature_commands.py:36
5352
"If location is not specified the local tree is used.\n"
5353
"If committer is not specified the default committer is used."
5356
#: breezy/commit_signature_commands.py:39
5357
msgid "This does not sign commits that already have signatures."
5360
# help of 'dry-run' option of 'sign-my-commits' command
5361
#: breezy/commit_signature_commands.py:47
5363
"Don't actually sign anything, just print the revisions that would be signed."
5366
#: breezy/commit_signature_commands.py:95
5368
msgid "Signed %d revision.\n"
5369
msgid_plural "Signed %d revisions.\n"
5373
#: breezy/commit_signature_commands.py:100
5374
msgid "Verify all commit signatures."
5377
#: breezy/commit_signature_commands.py:102
5378
msgid "Verifies that all commits in the branch are signed by known GnuPG keys."
5381
# help of 'acceptable-keys' option of 'verify-signatures' command
5382
#: breezy/commit_signature_commands.py:107
5384
"Comma separated list of GPG key patterns which are acceptable for "
5388
#: breezy/commit_signature_commands.py:146
5389
msgid "Cannot verify a range of non-revision-history revisions"
5392
#: breezy/commit_signature_commands.py:165
5393
msgid "All commits signed with verifiable keys"
5396
#: breezy/config.py:2509
5397
#, python-brace-format
5398
msgid "{0} is not an SI unit."
5401
#: breezy/config.py:3032
5402
#, python-brace-format
5404
"Option {0} in section {1} of {2} was changed from {3} to {4}. The {5} value "
5408
#: breezy/config.py:3177
5410
msgid "Invalid '%s', should be of the form 'name=value'"
5413
#: breezy/config.py:4121
5414
msgid "Display, set or remove a configuration option."
5417
#: breezy/config.py:4123
5418
msgid "Display the active value for option NAME."
5421
#: breezy/config.py:4125
5423
"If --all is specified, NAME is interpreted as a regular expression and all\n"
5424
"matching options are displayed mentioning their scope and without resolving\n"
5425
"option references in the value). The active value that bzr will take into\n"
5426
"account is the first one displayed for each option."
5429
#: breezy/config.py:4130
5431
"If NAME is not given, --all .* is implied (all options are displayed for "
5436
#: breezy/config.py:4133
5438
"Setting a value is achieved by using NAME=value without spaces. The value\n"
5439
"is set in the most relevant scope and can be checked by displaying the\n"
5443
#: breezy/config.py:4137
5444
msgid "Removing a value is achieved by using --remove NAME."
5447
# help of 'scope' option of 'config' command
5448
#: breezy/config.py:4147
5449
msgid "Reduce the scope to the specified configuration file."
5452
# help of 'all' option of 'config' command
5453
#: breezy/config.py:4151
5454
msgid "Display all the defined values for the matching options."
5457
# help of 'remove' option of 'config' command
5458
#: breezy/config.py:4153
5459
msgid "Remove the option from the configuration file."
5462
#: breezy/conflicts.py:52
5463
msgid "List files with conflicts."
5466
#: breezy/conflicts.py:59
5468
"Conflicts normally are listed as short, human-readable messages. If --text\n"
5469
"is supplied, the pathnames of files with text conflicts are listed,\n"
5470
"instead. (This is useful for editing all files with text conflicts.)"
5473
#: breezy/conflicts.py:63
5474
msgid "Use brz resolve when you have fixed a problem."
5477
# help of 'text' option of 'conflicts' command
5478
#: breezy/conflicts.py:68
5479
msgid "List paths of files with text conflicts."
5482
# help of 'action=done' option of 'resolve' command
5483
#: breezy/conflicts.py:87
5484
msgid "Marks the conflict as resolved."
5487
# help of 'action=take-this' option of 'resolve' command
5488
#: breezy/conflicts.py:90
5489
msgid "Resolve the conflict preserving the version in the working tree."
5492
# help of 'action=take-other' option of 'resolve' command
5493
#: breezy/conflicts.py:93
5494
msgid "Resolve the conflict taking the merged version into account."
5497
# help of 'action' option of 'resolve' command
5498
#: breezy/conflicts.py:101
5499
msgid "How to resolve the conflict."
5502
#: breezy/conflicts.py:107
5503
msgid "Mark a conflict as resolved."
5506
#: breezy/conflicts.py:114
5508
"Once you have fixed a problem, use \"brz resolve\" to automatically mark\n"
5509
"text conflicts as fixed, \"brz resolve FILE\" to mark a specific conflict "
5511
"resolved, or \"brz resolve --all\" to mark all conflicts as resolved."
5514
# help of 'all' option of 'resolve' command
5515
#: breezy/conflicts.py:122
5516
msgid "Resolve all conflicts in this tree."
5519
#: breezy/conflicts.py:130
5520
msgid "If --all is specified, no FILE may be provided"
5523
#: breezy/conflicts.py:155
5525
msgid "%d conflict auto-resolved."
5526
msgid_plural "%d conflicts auto-resolved."
5530
#: breezy/conflicts.py:158
5531
msgid "Remaining conflicts:"
5534
#: breezy/conflicts.py:163
5535
msgid "All conflicts resolved."
5538
#: breezy/conflicts.py:172
5539
#, python-brace-format
5540
msgid "{0} conflict resolved, {1} remaining"
5541
msgid_plural "{0} conflicts resolved, {1} remaining"
5545
#: breezy/controldir.py:731
5546
#, python-brace-format
5547
msgid "{0} is{1} redirected to {2}"
5550
#: breezy/diff.py:413
5552
msgid "*** Ignoring files outside view. View is %s"
5555
#: breezy/errors.py:167
5557
"API %(api)s is not compatible; one of versions %(wanted)r is required, but "
5558
"current version is %(current)r."
5561
#: breezy/errors.py:178
5562
msgid "The transport '%(transport)s' is only accessible within this process."
5565
#: breezy/errors.py:196
5566
msgid "Invalid revision number %(revno)s"
5569
#: breezy/errors.py:205
5570
msgid "Invalid revision-id {%(revision_id)s} in %(branch)s"
5573
#: breezy/errors.py:216
5574
msgid "Reserved revision-id {%(revision_id)s}"
5577
#: breezy/errors.py:230
5578
msgid "There is no public branch set for \"%(branch_url)s\"."
5581
#: breezy/errors.py:240
5582
msgid "The file id \"%(file_id)s\" is not present in the tree %(tree)s."
5585
#: breezy/errors.py:250
5586
msgid "The branch '%(branch)s' is not stacked."
5589
#: breezy/errors.py:264
5590
msgid "No WorkingTree exists for \"%(base)s\"."
5593
#: breezy/errors.py:273
5594
msgid "%(url)s is not a local path."
5597
#: breezy/errors.py:301
5598
msgid "%(not_locked)r is not write locked but needs to be."
5601
#: breezy/errors.py:309
5602
msgid "Commit refused because there are unknown files in the tree"
5605
#: breezy/errors.py:320
5606
msgid "Generic path error: %(path)r%(extra)s)"
5609
#: breezy/errors.py:333
5610
msgid "No such file: %(path)r%(extra)s"
5613
#: breezy/errors.py:338
5614
msgid "File exists: %(path)r%(extra)s"
5617
#: breezy/errors.py:344
5619
"Could not rename %(source)s => %(dest)s because both files exist. (Use --"
5620
"after to tell brz about a rename that has already happened)%(extra)s"
5623
#: breezy/errors.py:360
5624
msgid "\"%(path)s\" is not a directory %(extra)s"
5627
#: breezy/errors.py:365
5628
msgid "\"%(path)s\" is not in the working directory %(extra)s"
5631
#: breezy/errors.py:370
5632
msgid "Directory not empty: \"%(path)s\"%(extra)s"
5635
#: breezy/errors.py:375
5636
msgid "Hard-linking \"%(path)s\" is not supported"
5639
#: breezy/errors.py:390
5640
msgid "Device or resource busy: \"%(path)s\"%(extra)s"
5643
#: breezy/errors.py:395
5644
msgid "Permission denied: \"%(path)s\"%(extra)s"
5647
#: breezy/errors.py:412
5648
msgid "Unsupported protocol for url \"%(path)s\"%(extra)s"
5651
#: breezy/errors.py:420
5652
msgid "The branch '%(branch_url)s' cannot be stacked on '%(target_url)s'."
5655
#: breezy/errors.py:430
5657
"The repository '%(url)s'(%(format)s) is not a stackable format. You will "
5658
"need to upgrade the repository to permit branch stacking."
5661
#: breezy/errors.py:441
5662
msgid "Error reading from %(path)r."
5665
#: breezy/errors.py:460
5666
msgid "Path \"%(path)s\" is not a child of path \"%(base)s\"%(extra)s"
5669
#: breezy/errors.py:476
5670
msgid "Path \"%(path)s\" is not unicode normalized"
5673
#: breezy/errors.py:484
5674
msgid "Not a branch: \"%(path)s\"%(detail)s."
5677
#: breezy/errors.py:526
5678
msgid "No submit branch available for branch \"%(path)s\""
5681
#: breezy/errors.py:535
5682
msgid "A control directory already exists: \"%(path)s\"."
5685
#: breezy/errors.py:540
5686
msgid "Already a branch: \"%(path)s\"."
5689
#: breezy/errors.py:545
5690
msgid "Invalid branch name: %(name)s"
5693
#: breezy/errors.py:554
5694
msgid "Parent branch already exists: \"%(path)s\"."
5697
#: breezy/errors.py:560
5699
"Directory contains a branch, but no working tree (use brz checkout if you "
5700
"wish to build a working tree): \"%(path)s\""
5703
#: breezy/errors.py:565
5705
"Parent not accessible given base \"%(base)s\" and relative path \"%(path)s\""
5708
#: breezy/errors.py:575
5709
msgid "No repository present: \"%(path)s\""
5712
#: breezy/errors.py:583
5714
"Unsupported branch format: %(format)s\n"
5715
"Please run 'brz upgrade'"
5718
#: breezy/errors.py:589
5719
msgid "Unknown %(kind)s format: %(format)r"
5722
#: breezy/errors.py:598
5724
"Line ending corrupted for file: %(file)s; Maybe your files got corrupted in "
5728
#: breezy/errors.py:607
5729
msgid "Format %(format)s is not compatible with .bzr version %(controldir)s."
5732
#: breezy/errors.py:617
5733
msgid "Parse error on line %(lineno)d of %(format)s format: %(line)s"
5736
#: breezy/errors.py:632
5739
"is not compatible with\n"
5744
#: breezy/errors.py:648
5745
msgid "Revision is not compatible with %(repo_format)s"
5748
#: breezy/errors.py:658
5749
msgid "%(context_info)s%(path)s is already versioned."
5752
#: breezy/errors.py:679
5753
msgid "%(context_info)s%(path)s is not versioned."
5756
#: breezy/errors.py:700
5757
msgid "Path(s) are not versioned: %(paths_as_string)s"
5760
#: breezy/errors.py:711
5761
msgid "Path(s) do not exist: %(paths_as_string)s%(extra)s"
5764
#: breezy/errors.py:730
5765
msgid "Cannot operate on \"%(filename)s\" of unsupported kind \"%(kind)s\""
5768
#: breezy/errors.py:738
5770
"Filename %(filename)r is not valid in your current filesystem encoding "
5774
#: breezy/errors.py:749
5775
msgid "Cannot operate on \"%(filename)s\" because it is a control file"
5778
#: breezy/errors.py:767
5779
msgid "The lock for '%(lock_description)s' is in use and cannot be broken."
5782
#: breezy/errors.py:806
5783
msgid "Cannot lock %(lock)s: %(why)s"
5786
#: breezy/errors.py:816
5788
"A transaction related operation was attempted after the transaction finished."
5791
#: breezy/errors.py:843
5792
msgid "Cannot lock: transport is read only: %(transport)s"
5795
#: breezy/errors.py:851
5796
msgid "Could not acquire lock \"%(lock)s\": %(msg)s"
5799
#: breezy/errors.py:862
5800
msgid "Lock was broken while still open: %(lock)s - check storage consistency!"
5803
#: breezy/errors.py:873
5805
"Lock was released and re-acquired before being broken: %(lock)s: held by "
5806
"%(holder)r, wanted to break %(target)r"
5809
#: breezy/errors.py:885
5811
"Lock is apparently held, but corrupted: %(corruption_info)s\n"
5812
"Use 'brz break-lock' to clear it"
5815
#: breezy/errors.py:898
5816
msgid "Lock not held: %(lock)s"
5819
#: breezy/errors.py:927
5820
msgid "Upgrade URL cannot work with readonly URLs."
5823
#: breezy/errors.py:932
5824
msgid "The branch format %(format)s is already at the most recent format."
5827
#: breezy/errors.py:950
5828
msgid "Option --change does not accept revision ranges"
5831
#: breezy/errors.py:955
5832
msgid "No namespace registered for string: %(spec)r"
5835
#: breezy/errors.py:974
5837
"Requested revision: '%(spec)s' does not exist in branch: %(branch_url)s"
5841
#: breezy/errors.py:988
5843
"Operation denied because it would change the main history, which is not "
5844
"permitted by the append_revisions_only setting on branch \"%(location)s\"."
5847
#: breezy/errors.py:999
5849
"These branches have diverged. Use the missing command to see how.\n"
5850
"Use the merge command to reconcile them."
5853
#: breezy/errors.py:1019
5855
"Branches have no common ancestor, and no merge base revision was specified."
5858
#: breezy/errors.py:1025
5860
"Selected merge cannot perform reverse cherrypicks. Try merge3 or diff3."
5863
#: breezy/errors.py:1031
5864
msgid "Revisions have no common ancestor: %(revision_a)s %(revision_b)s"
5867
#: breezy/errors.py:1040
5869
"Revisions are not derived from the same root: %(revision_a)s %(revision_b)s."
5872
#: breezy/errors.py:1049
5873
msgid "Revision %(rev_id)s is not an ancestor of %(not_ancestor_id)s"
5876
#: breezy/errors.py:1058
5877
msgid "Branch %(branch)s has no commits."
5880
#: breezy/errors.py:1075
5882
"Bound branch %(branch)s is out of date with master branch %(master)s."
5886
#: breezy/errors.py:1087
5888
"Cannot commit to branch %(branch)s. It is bound to %(master)s, which is "
5889
"bound to %(remote)s."
5892
#: breezy/errors.py:1099
5893
msgid "Cannot pull --overwrite to a branch which is bound %(branch)s"
5896
#: breezy/errors.py:1108
5898
"Unable to connect to target of bound branch %(branch)s => %(target)s: "
5902
#: breezy/errors.py:1120
5903
msgid "Versioned file error"
5906
#: breezy/errors.py:1125
5907
msgid "Revision {%(revision_id)s} not present in \"%(file_id)s\"."
5910
#: breezy/errors.py:1135
5911
msgid "Revision {%(revision_id)s} already present in \"%(file_id)s\"."
5914
#: breezy/errors.py:1145
5915
msgid "Text did not match its checksum: %(msg)s"
5918
#: breezy/errors.py:1197
5919
msgid "Export format %(format)r not supported"
5922
#: breezy/errors.py:1206
5923
msgid "Transport error: %(msg)s %(orig_error)s"
5926
#: breezy/errors.py:1232
5927
msgid "Generic bzr smart protocol error: %(details)s"
5930
#: breezy/errors.py:1240
5931
msgid "Received bad protocol version marker: %(marker)r"
5934
#: breezy/errors.py:1272
5935
msgid "Transport operation not possible: %(msg)s %(orig_error)s"
5938
#: breezy/errors.py:1277
5939
msgid "Connection error: %(msg)s %(orig_error)s"
5942
#: breezy/errors.py:1282
5943
msgid "%(msg)s %(host)s%(port)s%(orig_error)s"
5946
#: breezy/errors.py:1303
5947
msgid "Connection closed: %(msg)s %(orig_error)s"
5950
#: breezy/errors.py:1308
5951
msgid "Connection Timeout: %(msg)s%(orig_error)s"
5954
#: breezy/errors.py:1313
5955
msgid "Invalid range access in %(path)s at %(offset)s: %(msg)s"
5958
#: breezy/errors.py:1323
5959
msgid "Invalid http response for %(path)s: %(msg)s%(orig_error)s"
5962
#: breezy/errors.py:1338
5963
msgid "Invalid http range %(range)r for %(path)s: %(msg)s"
5966
#: breezy/errors.py:1352
5967
msgid "HTTP MIME Boundary missing for %(path)s: %(msg)s"
5970
#: breezy/errors.py:1360
5971
msgid "Invalid http Content-type \"%(ctype)s\" for %(path)s: %(msg)s"
5974
#: breezy/errors.py:1369
5975
msgid "%(source)s is%(permanently)s redirected to %(target)s"
5978
#: breezy/errors.py:1383
5979
msgid "Too many redirections"
5982
#: breezy/errors.py:1388
5983
msgid "Working tree has conflicts."
5986
#: breezy/errors.py:1393
5987
msgid "Unable to import library \"%(library)s\": %(error)s"
5990
#: breezy/errors.py:1401
5992
"The working tree for %(basedir)s has changed since the last commit, but "
5993
"weave merge requires that it be unchanged"
5996
#: breezy/errors.py:1411
5997
msgid "Cycle in graph %(graph)r"
6000
#: breezy/errors.py:1439
6001
msgid "File %(filename)s is not conflicted."
6004
#: breezy/errors.py:1461
6005
msgid "No bundle was found in \"%(filename)s\"."
6008
#: breezy/errors.py:1470
6009
msgid "Unable to handle bundle version %(version)s: %(msg)s"
6012
#: breezy/errors.py:1480
6013
msgid "Branch %(base)s is missing revision %(text_revision)s of %(file_id)s"
6016
#: breezy/errors.py:1493
6017
msgid "File id {%(file_id)s} already exists in inventory as %(entry)s"
6020
#: breezy/errors.py:1503
6021
msgid "Key %(key)s is already present in map"
6024
#: breezy/errors.py:1508
6025
msgid "The prefix %(prefix)s is in the help search path twice."
6028
#: breezy/errors.py:1518
6030
"No final name for trans_id %(trans_id)r\n"
6031
"file-id: %(file_id)r\n"
6032
"root trans-id: %(root_trans_id)r\n"
6035
#: breezy/errors.py:1550
6036
msgid "Attempt to reuse a transform that has already been applied."
6039
#: breezy/errors.py:1555
6040
msgid "Moving the root directory is not supported at this time"
6043
#: breezy/errors.py:1560
6044
msgid "Failed to rename %(from_path)s to %(to_path)s: %(why)s"
6047
#: breezy/errors.py:1571
6049
"Could not move %(from_path)s%(operator)s %(to_path)s%(_has_extra)s%(extra)s"
6052
#: breezy/errors.py:1607
6054
"Could not rename %(from_path)s%(operator)s %(to_path)s%(_has_extra)s%(extra)s"
6057
#: breezy/errors.py:1637
6058
msgid "Unable to import paramiko (required for sftp support): %(error)s"
6061
#: breezy/errors.py:1645
6062
msgid "Nothing to merge."
6065
#: breezy/errors.py:1650
6066
msgid "Format %(format)s cannot be initialised by this version of brz."
6069
#: breezy/errors.py:1659
6071
"Cannot convert from format %(from_format)s to format %(format)s. "
6075
#: breezy/errors.py:1671
6076
msgid "Could not find an appropriate Differ for file \"%(path)s\""
6079
#: breezy/errors.py:1679
6080
msgid "%(exe_name)s could not be found on this machine"
6083
#: breezy/errors.py:1687
6084
msgid "Diff is not installed on this machine: %(msg)s"
6087
#: breezy/errors.py:1695
6088
msgid "Diff3 is not installed on this machine."
6091
#: breezy/errors.py:1701
6092
msgid "The content being inserted is already present."
6095
#: breezy/errors.py:1706
6097
"This tree contains left-over files from a failed operation.\n"
6098
" Please examine %(limbo_dir)s to see if it contains any files you wish "
6100
" keep, and delete it when you are done."
6103
#: breezy/errors.py:1717
6105
"This tree contains left-over files from a failed operation.\n"
6106
" Please examine %(pending_deletion)s to see if it contains any files you\n"
6107
" wish to keep, and delete it when you are done."
6110
#: breezy/errors.py:1727
6112
"Unable to delete transform temporary directory %(limbo_dir)s.\n"
6113
" Please examine %(limbo_dir)s to see if it contains any files you wish "
6115
" keep, and delete it when you are done."
6118
#: breezy/errors.py:1738
6120
"Unable to delete transform temporary directory %(pending_deletion)s. Please "
6121
"examine %(pending_deletion)s to see if it contains any files you wish to "
6122
"keep, and delete it when you are done."
6125
#: breezy/errors.py:1748
6126
msgid "Working tree is out of date, please run 'brz update'.%(more)s"
6129
#: breezy/errors.py:1762
6130
msgid "Public branch \"%(public_location)s\" lacks revision \"%(revstring)s\"."
6133
#: breezy/errors.py:1775
6134
msgid "Error in merge modified format"
6137
#: breezy/errors.py:1780
6138
msgid "Format error in conflict listings"
6141
#: breezy/errors.py:1784
6143
"An error has been detected in the repository %(repo_path)s.\n"
6144
"Please run brz reconcile on this repository."
6147
#: breezy/errors.py:1795
6149
"An inconsistent delta was supplied involving %(path)r, %(file_id)r\n"
6150
"reason: %(reason)s"
6153
#: breezy/errors.py:1808
6155
"An inconsistent delta was supplied: %(delta)r\n"
6156
"reason: %(reason)s"
6159
#: breezy/errors.py:1820
6160
msgid "To use this feature you must upgrade your branch at %(path)s."
6163
#: breezy/errors.py:1829
6164
msgid "To use this feature you must upgrade your repository at %(path)s."
6167
#: breezy/errors.py:1834
6169
"To use this feature you must upgrade your branch at %(path)s to a format "
6170
"which supports rich roots."
6173
#: breezy/errors.py:1840
6174
msgid "Cannot perform local-only commits on unbound branches."
6177
#: breezy/errors.py:1845
6178
msgid "The method %(mname)s is not supported on objects of type %(tname)s."
6181
#: breezy/errors.py:1870
6182
msgid "Ghost tags not supported by format %(format)r."
6185
#: breezy/errors.py:1878
6186
msgid "File is binary but should be text."
6189
#: breezy/errors.py:1883
6190
msgid "The path %(path)s is not permitted on this platform"
6193
#: breezy/errors.py:1892
6195
"Testament did not match expected value.\n"
6196
" For revision_id {%(revision_id)s}, expected {%(expected)s}, measured\n"
6200
#: breezy/errors.py:1904
6201
msgid "Not a bzr revision-bundle: %(text)r"
6204
#: breezy/errors.py:1913
6205
msgid "Bad bzr revision-bundle: %(text)r"
6208
#: breezy/errors.py:1922
6209
msgid "Malformed bzr revision-bundle header: %(text)r"
6212
#: breezy/errors.py:1927
6213
msgid "Malformed patches in bzr revision-bundle: %(text)r"
6216
#: breezy/errors.py:1932
6217
msgid "Malformed footer in bzr revision-bundle: %(text)r"
6220
#: breezy/errors.py:1937
6221
msgid "End of line marker was not \\n in bzr revision-bundle"
6224
#: breezy/errors.py:1947
6225
msgid "Bundle format %(bundle_format)s is incompatible with %(other)s"
6228
#: breezy/errors.py:1957
6229
msgid "Root class for inventory serialization errors"
6232
#: breezy/errors.py:1961
6234
"The inventory was not in the expected format:\n"
6238
#: breezy/errors.py:1970
6239
msgid "This operation requires rich root data storage"
6242
#: breezy/errors.py:1983
6243
msgid "Unrecognised value for BRZ_SSH environment variable: %(vendor)s"
6246
#: breezy/errors.py:1992
6248
"Don't know how to handle SSH connections. Please set BRZ_SSH environment "
6252
#: breezy/errors.py:1999
6254
"Could not determine revno for {%(revision_id)s} because its ancestry shows a "
6255
"ghost at {%(ghost_revision_id)s}"
6258
#: breezy/errors.py:2009
6259
msgid "Ghost revision {%(revision_id)s} cannot be used here."
6262
#: breezy/errors.py:2061
6264
"A merge directive must provide either a bundle or a public branch location."
6267
#: breezy/errors.py:2068
6268
msgid "Bad merge directive payload %(start)r"
6271
#: breezy/errors.py:2078
6272
msgid "Preview patch does not match requested changes."
6275
#: breezy/errors.py:2084
6276
msgid "Patch_type was %(patch_type)s, but no patch was supplied."
6279
#: breezy/errors.py:2094
6281
"Your branch does not have all of the revisions required in order to merge "
6282
"this merge directive and the target location specified in the merge "
6283
"directive is not a branch: %(location)s."
6286
#: breezy/errors.py:2106
6287
msgid "Unsupported entry kind %(kind)s"
6290
#: breezy/errors.py:2114
6291
msgid "Can't subsume %(other_tree)s into %(tree)s. %(reason)s"
6294
#: breezy/errors.py:2124
6295
msgid "Subsume target %(other_tree)s needs to be upgraded."
6298
#: breezy/errors.py:2132
6299
msgid "No such tag: %(tag_name)s"
6302
#: breezy/errors.py:2140
6303
msgid "Tags not supported by %(branch)s; you may be able to use brz upgrade."
6306
#: breezy/errors.py:2149
6307
msgid "Tag %(tag_name)s already exists."
6310
#: breezy/errors.py:2157
6311
msgid "Could not understand response from smart server: %(response_tuple)r"
6314
#: breezy/errors.py:2196
6315
msgid "Server sent an unexpected error: %(error_tuple)r"
6318
#: breezy/errors.py:2215
6319
msgid "Unrecognised container format: %(container_format)r"
6322
#: breezy/errors.py:2223
6323
msgid "Unexpected end of container stream"
6326
#: breezy/errors.py:2228
6327
msgid "Unknown record type: %(record_type)r"
6330
#: breezy/errors.py:2236
6331
msgid "Invalid record: %(reason)s"
6334
#: breezy/errors.py:2244
6335
msgid "Container has data after end marker: %(excess)r"
6338
#: breezy/errors.py:2252
6339
msgid "Container has multiple records with the same name: %(name)s"
6342
#: breezy/errors.py:2260
6343
msgid "Corrupt or incompatible data stream: %(reason)s"
6346
#: breezy/errors.py:2268
6348
"Working tree \"%(display_url)s\" has uncommitted changes (See brz status)."
6352
#: breezy/errors.py:2287
6354
"Branch \"%(display_url)s\" does not support storing uncommitted changes."
6357
#: breezy/errors.py:2302
6359
"Working tree \"%(display_url)s\" has shelved changes (See brz shelve --list)."
6363
#: breezy/errors.py:2308
6364
msgid "Unable to create symlink %(path_str)son this platform"
6367
#: breezy/errors.py:2323
6369
"Unable to encode %(kind)s path %(path)r in user encoding %(user_encoding)s"
6372
#: breezy/errors.py:2335
6373
msgid "The alias \"%(alias_name)s\" does not exist."
6376
#: breezy/errors.py:2343
6377
msgid "Cannot bind address \"%(host)s:%(port)i\": %(orig_error)s."
6380
#: breezy/errors.py:2356
6381
msgid "Tip change rejected: %(msg)s"
6384
#: breezy/errors.py:2364
6385
msgid "An attempt to access a url outside the server jail was made: '%(url)s'."
6388
#: breezy/errors.py:2372
6389
msgid "The user aborted the operation."
6392
#: breezy/errors.py:2424
6393
msgid "%(controldir)r does not support co-located branches."
6396
#: breezy/errors.py:2432
6398
"Branch \"%(branch_url)s\" appears to be bound to itself. Please use `brz "
6402
#: breezy/errors.py:2441
6404
"Kind change from %(from_kind)s to %(to_kind)s for %(path)s not supported by "
6408
#: breezy/errors.py:2453
6410
"Cannot store uncommitted changes because this branch already stores "
6411
"uncommitted changes."
6414
#: breezy/export_pot.py:255
6416
msgid "Exporting messages from builtin command: %s"
6419
#: breezy/export_pot.py:260
6421
msgid "Plugin %s is not loaded"
6424
#: breezy/export_pot.py:277
6425
#, python-brace-format
6426
msgid "Exporting messages from plugin command: {0} in {1}"
6429
#: breezy/export_pot.py:298
6431
msgid "Exporting message from error: %s"
6434
#: breezy/git/commands.py:115
6436
msgid "%r is not a git repository"
6439
#: breezy/git/commands.py:128
6440
msgid "Target repository doesn't support rich roots"
6443
#: breezy/git/commands.py:141
6444
msgid "creating branches"
6447
#: breezy/git/commands.py:165
6449
"Use 'bzr checkout' to create a working tree in the newly created branches."
6452
#: breezy/git/commands.py:207
6454
msgid "Object not found: %s"
6457
#: breezy/git/commands.py:280
6458
msgid "error running patch"
6461
#: breezy/gpg.py:365
6462
#, python-brace-format
6463
msgid "No GnuPG key results for pattern: {0}"
6466
#: breezy/gpg.py:371
6467
#, python-brace-format
6468
msgid "{0} commits with valid signatures"
6471
#: breezy/gpg.py:377
6472
#, python-brace-format
6473
msgid "{0} commit with unknown key"
6474
msgid_plural "{0} commits with unknown keys"
6478
#: breezy/gpg.py:385
6479
#, python-brace-format
6480
msgid "{0} commit not valid"
6481
msgid_plural "{0} commits not valid"
6485
#: breezy/gpg.py:393
6486
#, python-brace-format
6487
msgid "{0} commit not signed"
6488
msgid_plural "{0} commits not signed"
6492
#: breezy/gpg.py:401
6493
#, python-brace-format
6494
msgid "{0} commit with key now expired"
6495
msgid_plural "{0} commits with key now expired"
6499
#: breezy/gpg.py:421
6500
#, python-brace-format
6501
msgid "{0} commit by author {1} with key {2} now expired"
6502
msgid_plural "{0} commits by author {1} with key {2} now expired"
6506
#: breezy/gpg.py:437
6507
#, python-brace-format
6508
msgid "{0} signed {1} commit"
6509
msgid_plural "{0} signed {1} commits"
6513
#: breezy/gpg.py:454 breezy/gpg.py:471
6514
#, python-brace-format
6515
msgid "{0} commit by author {1}"
6516
msgid_plural "{0} commits by author {1}"
6520
#: breezy/gpg.py:486
6521
#, python-brace-format
6522
msgid "Unknown key {0} signed {1} commit"
6523
msgid_plural "Unknown key {0} signed {1} commits"
6527
#: breezy/hooks.py:320
6529
msgid "Introduced in: %s"
6532
#: breezy/hooks.py:323
6534
msgid "Deprecated in: %s"
6537
#: breezy/lock.py:546
6538
msgid "{0!r} was {1} locked again"
6541
#: breezy/lockdir.py:322
6543
msgid "error removing pending lock: %s"
6546
#: breezy/lockdir.py:614
6547
msgid "Unable to obtain"
6550
#: breezy/lockdir.py:616
6551
msgid "Lock owner changed for"
6554
#: breezy/lockdir.py:618
6555
#, python-brace-format
6556
msgid "{0} lock {1} {2}."
6559
#: breezy/lockdir.py:625
6561
msgid "Will continue to try until %s, unless you press Ctrl-C."
6564
#: breezy/lockdir.py:627
6565
msgid "See \"brz help break-lock\" for more."
6568
#: breezy/lockdir.py:737
6571
"held by %(user)s on %(hostname)s (process #%(pid)s), acquired %(time_ago)s"
6574
#: breezy/log.py:424
6575
msgid "Further revision history missing."
6578
#: breezy/log.py:580
6579
msgid "--exclude-common-ancestry requires two different revisions"
6582
#: breezy/log.py:582
6584
msgid "invalid direction %r"
6587
#: breezy/log.py:670
6588
msgid "Start revision not found in history of end revision."
6591
#: breezy/log.py:1118 breezy/log.py:1176
6592
msgid "Logging revision 0 is invalid."
6595
#: breezy/log.py:1121 breezy/log.py:1178
6596
msgid "Start revision must be older than the end revision."
6599
#: breezy/log.py:1875
6601
msgid "unknown log formatter: %r"
6604
#: breezy/log.py:2173
6606
msgid_plural "fixes bugs"
6610
#: breezy/log.py:2176
6612
msgid_plural "related bugs"
6616
#: breezy/merge.py:673
6617
msgid "All changes applied successfully."
6620
#: breezy/merge.py:675
6622
msgid "%d conflicts encountered."
6625
#: breezy/merge.py:808 breezy/merge.py:1858
6626
msgid "Preparing file merge"
6629
#: breezy/multiparent.py:437
6630
msgid "Importing revisions"
6633
# help of 'help' option
6634
#: breezy/option.py:547
6635
msgid "Show help message."
6638
# help of 'quiet' option
6639
#: breezy/option.py:549
6640
msgid "Only display errors and warnings."
6643
# help of 'usage' option
6644
#: breezy/option.py:552
6645
msgid "Show usage message and options."
6648
# help of 'verbose' option
6649
#: breezy/option.py:554
6650
msgid "Display more information."
6653
# help of 'change' option
6654
#: breezy/option.py:562
6656
"Select changes introduced by the specified revision. See also \"help "
6660
# help of 'directory' option
6661
#: breezy/option.py:564
6662
msgid "Branch to operate on, instead of working directory."
6665
# help of 'log-format=long' option
6666
#: breezy/option.py:566
6667
msgid "Detailed log format."
6670
# help of 'log-format=gnu-changelog' option
6671
#: breezy/option.py:566
6672
msgid "Format used by GNU ChangeLog files."
6675
# help of 'log-format=line' option
6676
#: breezy/option.py:566
6677
msgid "Log format with one line per revision."
6680
# help of 'log-format=short' option
6681
#: breezy/option.py:566
6682
msgid "Moderately short log format."
6685
# help of 'log-format' option
6686
#: breezy/option.py:566
6687
msgid "Use specified log format."
6690
# title of 'log-format' option
6691
#: breezy/option.py:568
6695
# help of 'merge-type=lca' option
6696
#: breezy/option.py:570
6697
msgid "LCA-newness merge."
6700
# help of 'merge-type=diff3' option
6701
#: breezy/option.py:570
6702
msgid "Merge using external diff3."
6705
# help of 'merge-type=merge3' option
6706
#: breezy/option.py:570
6707
msgid "Native diff3-style merge."
6710
# help of 'merge-type' option
6711
#: breezy/option.py:570
6712
msgid "Select a particular merge algorithm."
6715
# help of 'merge-type=weave' option
6716
#: breezy/option.py:570
6717
msgid "Weave-based merge."
6720
# title of 'merge-type' option
6721
#: breezy/option.py:572
6722
msgid "Merge algorithm"
6725
# help of 'message' option
6726
#: breezy/option.py:575
6727
msgid "Message string."
6730
# help of 'null' option
6731
#: breezy/option.py:577
6732
msgid "Use an ASCII NUL (\\0) separator rather than a newline."
6735
# help of 'overwrite' option
6736
#: breezy/option.py:579
6737
msgid "Ignore differences between branches and overwrite unconditionally."
6740
# help of 'remember' option
6741
#: breezy/option.py:581
6742
msgid "Remember the specified location as a default."
6745
# help of 'reprocess' option
6746
#: breezy/option.py:583
6747
msgid "Reprocess to reduce spurious conflicts."
6750
# help of 'revision' option
6751
#: breezy/option.py:587
6752
msgid "See \"help revisionspec\" for details."
6755
# help of 'show-ids' option
6756
#: breezy/option.py:589
6757
msgid "Show internal object ids."
6760
# help of 'timezone' option
6761
#: breezy/option.py:592
6762
msgid "Display timezone as local, original, or utc."
6765
#: breezy/osutils.py:109
6766
msgid "Parameter {0!r} encoding is unsupported by {1} application locale."
6769
#: breezy/osutils.py:234
6770
msgid "lstat/stat of ({0!r}): {1!r}"
6773
#: breezy/osutils.py:1054 breezy/osutils.py:1065
6775
msgid "sorry, %r not allowed in path"
6778
#: breezy/osutils.py:1284
6780
msgid "%r is too short to calculate a relative path"
6783
# help of 'plugin' option of 'bash-completion' command
6784
#: breezy/plugins/bash_completion/bashcomp.py:419
6785
msgid "Enable completions for the selected plugin (default: all plugins)"
6788
#: breezy/plugins/bash_completion/bashcomp.py:420
6789
msgid "Generate a shell function for bash command line completion."
6792
#: breezy/plugins/bash_completion/bashcomp.py:422
6794
"This command generates a shell function which can be used by bash to\n"
6795
"automatically complete the currently typed command when the user presses\n"
6796
"the completion key (usually tab)."
6799
#: breezy/plugins/bash_completion/bashcomp.py:426
6801
"Commonly used like this:\n"
6802
" eval \"`brz bash-completion`\""
6805
# help of 'function-name' option of 'bash-completion' command
6806
#: breezy/plugins/bash_completion/bashcomp.py:432
6807
msgid "Name of the generated function (default: _brz)"
6810
# help of 'function-only' option of 'bash-completion' command
6811
#: breezy/plugins/bash_completion/bashcomp.py:434
6812
msgid "Generate only the shell function, don't enable it"
6815
#: breezy/plugins/fastimport/cmds.py:79
6816
msgid "Backend for fast Bazaar data importers."
6819
#: breezy/plugins/fastimport/cmds.py:81
6821
"This command reads a mixed command/data stream and creates\n"
6822
"branches in a Bazaar repository accordingly. The preferred\n"
6826
#: breezy/plugins/fastimport/cmds.py:85
6827
msgid " bzr fast-import project.fi project.bzr"
6830
#: breezy/plugins/fastimport/cmds.py:87
6832
"Numerous commands are provided for generating a fast-import file\n"
6833
"to use as input.\n"
6834
"To specify standard input as the input stream, use a\n"
6835
"source name of '-' (instead of project.fi). If the source name\n"
6836
"ends in '.gz', it is assumed to be compressed in gzip format."
6839
#: breezy/plugins/fastimport/cmds.py:93
6841
"project.bzr will be created if it doesn't exist. If it exists\n"
6842
"already, it should be empty or be an existing Bazaar repository\n"
6843
"or branch. If not specified, the current directory is assumed."
6846
#: breezy/plugins/fastimport/cmds.py:97
6848
"fast-import will intelligently select the format to use when\n"
6849
"creating a repository or branch. If you are running Bazaar 1.17\n"
6850
"up to Bazaar 2.0, the default format for Bazaar 2.x (\"2a\") is used.\n"
6851
"Otherwise, the current default format (\"pack-0.92\" for Bazaar 1.x)\n"
6852
"is used. If you wish to specify a custom format, use the `--format`\n"
6856
#: breezy/plugins/fastimport/cmds.py:104 breezy/plugins/fastimport/cmds.py:176
6857
#: breezy/plugins/fastimport/cmds.py:190 breezy/plugins/fastimport/cmds.py:373
6861
#: breezy/plugins/fastimport/cmds.py:106
6863
" To maintain backwards compatibility, fast-import lets you\n"
6864
" create the target repository or standalone branch yourself.\n"
6865
" It is recommended though that you let fast-import create\n"
6866
" these for you instead."
6869
#: breezy/plugins/fastimport/cmds.py:111
6870
msgid ":Branch mapping rules:"
6873
#: breezy/plugins/fastimport/cmds.py:113
6874
msgid " Git reference names are mapped to Bazaar branch names as follows:"
6877
#: breezy/plugins/fastimport/cmds.py:115
6879
" * refs/heads/foo is mapped to foo\n"
6880
" * refs/remotes/origin/foo is mapped to foo.remote\n"
6881
" * refs/tags/foo is mapped to foo.tag\n"
6882
" * */master is mapped to trunk, trunk.remote, etc.\n"
6883
" * */trunk is mapped to git-trunk, git-trunk.remote, etc."
6886
#: breezy/plugins/fastimport/cmds.py:121
6887
msgid ":Branch creation rules:"
6890
#: breezy/plugins/fastimport/cmds.py:123
6892
" When a shared repository is created or found at the destination,\n"
6893
" branches are created inside it. In the simple case of a single\n"
6894
" branch (refs/heads/master) inside the input file, the branch is\n"
6895
" project.bzr/trunk."
6898
#: breezy/plugins/fastimport/cmds.py:128
6900
" When a standalone branch is found at the destination, the trunk\n"
6901
" is imported there and warnings are output about any other branches\n"
6902
" found in the input file."
6905
#: breezy/plugins/fastimport/cmds.py:132
6907
" When a branch in a shared repository is found at the destination,\n"
6908
" that branch is made the trunk and other branches, if any, are\n"
6909
" created in sister directories."
6912
#: breezy/plugins/fastimport/cmds.py:136
6913
msgid ":Working tree updates:"
6916
#: breezy/plugins/fastimport/cmds.py:138
6918
" The working tree is generated for the trunk branch. If multiple\n"
6919
" branches are created, a message is output on completion explaining\n"
6920
" how to create the working trees for other branches."
6923
#: breezy/plugins/fastimport/cmds.py:142
6924
msgid ":Custom exporters:"
6927
#: breezy/plugins/fastimport/cmds.py:144
6929
" The fast-export-from-xxx commands typically call more advanced\n"
6930
" xxx-fast-export scripts. You are welcome to use the advanced\n"
6931
" scripts if you prefer."
6934
#: breezy/plugins/fastimport/cmds.py:148
6936
" If you wish to write a custom exporter for your project, see\n"
6937
" http://bazaar-vcs.org/BzrFastImport for the detailed protocol\n"
6938
" specification. In many cases, exporters can be written quite\n"
6939
" quickly using whatever scripting/programming language you like."
6942
#: breezy/plugins/fastimport/cmds.py:153
6943
msgid ":User mapping:"
6946
#: breezy/plugins/fastimport/cmds.py:155
6948
" Some source repositories store just the user name while Bazaar\n"
6949
" prefers a full email address. You can adjust user-ids while\n"
6950
" importing by using the --user-map option. The argument is a\n"
6951
" text file with lines in the format::"
6954
#: breezy/plugins/fastimport/cmds.py:160
6955
msgid " old-id = new-id"
6958
#: breezy/plugins/fastimport/cmds.py:162
6960
" Blank lines and lines beginning with # are ignored.\n"
6961
" If old-id has the special value '@', then users without an\n"
6962
" email address will get one created by using the matching new-id\n"
6963
" as the domain, unless a more explicit address is given for them.\n"
6964
" For example, given the user-map of::"
6967
#: breezy/plugins/fastimport/cmds.py:168
6969
" @ = example.com\n"
6970
" bill = William Jones <bill@example.com>"
6973
#: breezy/plugins/fastimport/cmds.py:171
6974
msgid " then user-ids are mapped as follows::"
6977
#: breezy/plugins/fastimport/cmds.py:173
6979
" maria => maria <maria@example.com>\n"
6980
" bill => William Jones <bill@example.com>"
6983
#: breezy/plugins/fastimport/cmds.py:178
6985
" User mapping is supported by both the fast-import and\n"
6986
" fast-import-filter commands."
6989
#: breezy/plugins/fastimport/cmds.py:181
6990
msgid ":Blob tracking:"
6993
#: breezy/plugins/fastimport/cmds.py:183
6995
" As some exporters (like git-fast-export) reuse blob data across\n"
6996
" commits, fast-import makes two passes over the input file by\n"
6997
" default. In the first pass, it collects data about what blobs are\n"
6998
" used when, along with some other statistics (e.g. total number of\n"
6999
" commits). In the second pass, it generates the repository and\n"
7003
#: breezy/plugins/fastimport/cmds.py:192
7005
" The initial pass isn't done if the --info option is used\n"
7006
" to explicitly pass in information about the input stream.\n"
7007
" It also isn't done if the source is standard input. In the\n"
7008
" latter case, memory consumption may be higher than otherwise\n"
7009
" because some blobs may be kept in memory longer than necessary."
7012
#: breezy/plugins/fastimport/cmds.py:198
7013
msgid ":Restarting an import:"
7016
#: breezy/plugins/fastimport/cmds.py:200
7018
" At checkpoints and on completion, the commit-id -> revision-id\n"
7019
" map is saved to a file called 'fastimport-id-map' in the control\n"
7020
" directory for the repository (e.g. .bzr/repository). If the import\n"
7021
" is interrupted or unexpectedly crashes, it can be started again\n"
7022
" and this file will be used to skip over already loaded revisions.\n"
7023
" As long as subsequent exports from the original source begin\n"
7024
" with exactly the same revisions, you can use this feature to\n"
7025
" maintain a mirror of a repository managed by a foreign tool.\n"
7026
" If and when Bazaar is used to manage the repository, this file\n"
7027
" can be safely deleted."
7030
#: breezy/plugins/fastimport/cmds.py:213
7031
msgid " Import a Subversion repository into Bazaar::"
7034
#: breezy/plugins/fastimport/cmds.py:215
7036
" svn-fast-export /svn/repo/path > project.fi\n"
7037
" bzr fast-import project.fi project.bzr"
7040
#: breezy/plugins/fastimport/cmds.py:218
7041
msgid " Import a CVS repository into Bazaar::"
7044
#: breezy/plugins/fastimport/cmds.py:220
7046
" cvs2git /cvs/repo/path > project.fi\n"
7047
" bzr fast-import project.fi project.bzr"
7050
#: breezy/plugins/fastimport/cmds.py:223
7051
msgid " Import a Git repository into Bazaar::"
7054
#: breezy/plugins/fastimport/cmds.py:225
7056
" cd /git/repo/path\n"
7057
" git fast-export --all > project.fi\n"
7058
" bzr fast-import project.fi project.bzr"
7061
#: breezy/plugins/fastimport/cmds.py:229
7062
msgid " Import a Mercurial repository into Bazaar::"
7065
#: breezy/plugins/fastimport/cmds.py:231
7067
" cd /hg/repo/path\n"
7068
" hg fast-export > project.fi\n"
7069
" bzr fast-import project.fi project.bzr"
7072
#: breezy/plugins/fastimport/cmds.py:235
7073
msgid " Import a Darcs repository into Bazaar::"
7076
#: breezy/plugins/fastimport/cmds.py:237
7078
" cd /darcs/repo/path\n"
7079
" darcs-fast-export > project.fi\n"
7080
" bzr fast-import project.fi project.bzr"
7083
# help of 'user-map' option of 'fast-import' command
7084
#: breezy/plugins/fastimport/cmds.py:246
7085
msgid "Path to file containing a map of user-ids."
7088
# help of 'info' option of 'fast-import' command
7089
#: breezy/plugins/fastimport/cmds.py:249
7090
msgid "Path to file containing caching hints."
7093
# help of 'trees' option of 'fast-import' command
7094
#: breezy/plugins/fastimport/cmds.py:252
7095
msgid "Update all working trees, not just trunk's."
7098
# help of 'count' option of 'fast-import' command
7099
#: breezy/plugins/fastimport/cmds.py:255
7100
msgid "Import this many revisions then exit."
7103
# help of 'checkpoint' option of 'fast-import' command
7104
#: breezy/plugins/fastimport/cmds.py:258
7105
msgid "Checkpoint automatically every N revisions. The default is 10000."
7108
# help of 'autopack' option of 'fast-import' command
7109
#: breezy/plugins/fastimport/cmds.py:262
7110
msgid "Pack every N checkpoints. The default is 4."
7113
# help of 'inv-cache' option of 'fast-import' command
7114
#: breezy/plugins/fastimport/cmds.py:265
7115
msgid "Number of inventories to cache."
7118
# help of 'mode' option of 'fast-import' command
7119
#: breezy/plugins/fastimport/cmds.py:268
7120
msgid "The import algorithm to use."
7123
# title of 'mode' option of 'fast-import' command
7124
#: breezy/plugins/fastimport/cmds.py:269
7125
msgid "Import Algorithm"
7128
# help of 'mode=default' option of 'fast-import' command
7129
#: breezy/plugins/fastimport/cmds.py:270
7130
msgid "Use the preferred algorithm (inventory deltas)."
7133
# help of 'mode=experimental' option of 'fast-import' command
7134
#: breezy/plugins/fastimport/cmds.py:271
7135
msgid "Enable experimental features."
7138
# help of 'format' option of 'fast-import' command
7139
#: breezy/plugins/fastimport/cmds.py:281
7141
"Specify a format for the created repository. See \"bzr help formats\" for "
7145
#: breezy/plugins/fastimport/cmds.py:347
7146
msgid "Generate a fast-import stream from a Bazaar branch."
7149
#: breezy/plugins/fastimport/cmds.py:349
7151
"This program generates a stream from a Bazaar branch in fast-import\n"
7152
"format used by tools such as bzr fast-import, git-fast-import and\n"
7156
#: breezy/plugins/fastimport/cmds.py:353
7158
"It takes two optional arguments: the source bzr branch to export and\n"
7159
"the destination to write the file to write the fastimport stream to."
7162
#: breezy/plugins/fastimport/cmds.py:356
7164
"If no source is specified, it will search for a branch in the\n"
7165
"current directory."
7168
#: breezy/plugins/fastimport/cmds.py:359
7170
"If no destination is given or the destination is '-', standard output\n"
7171
"is used. Otherwise, the destination is the name of a file. If the\n"
7172
"destination ends in '.gz', the output will be compressed into gzip\n"
7176
#: breezy/plugins/fastimport/cmds.py:364
7177
msgid ":Round-tripping:"
7180
#: breezy/plugins/fastimport/cmds.py:366
7182
" Recent versions of the fast-import specification support features\n"
7183
" that allow effective round-tripping most of the metadata in Bazaar\n"
7184
" branches. As such, fast-exporting a branch and fast-importing the data\n"
7185
" produced will create a new repository with roughly equivalent history, i."
7187
" \"bzr log -v -p --include-merges --forward\" on the old branch and\n"
7188
" new branch should produce similar, if not identical, results."
7191
#: breezy/plugins/fastimport/cmds.py:375
7193
" Be aware that the new repository may appear to have similar history\n"
7194
" but internally it is quite different with new revision-ids and\n"
7195
" file-ids assigned. As a consequence, the ability to easily merge\n"
7196
" with branches based on the old repository is lost. Depending on your\n"
7197
" reasons for producing a new repository, this may or may not be an\n"
7201
#: breezy/plugins/fastimport/cmds.py:382
7202
msgid ":Interoperability:"
7205
#: breezy/plugins/fastimport/cmds.py:384
7207
" fast-export can use the following \"extended features\" to\n"
7208
" produce a richer data stream:"
7211
#: breezy/plugins/fastimport/cmds.py:387
7213
" * *multiple-authors* - if a commit has multiple authors (as commonly\n"
7214
" occurs in pair-programming), all authors will be included in the\n"
7215
" output, not just the first author"
7218
#: breezy/plugins/fastimport/cmds.py:391
7220
" * *commit-properties* - custom metadata per commit that Bazaar stores\n"
7221
" in revision properties (e.g. branch-nick and bugs fixed by this\n"
7222
" change) will be included in the output."
7225
#: breezy/plugins/fastimport/cmds.py:395
7227
" * *empty-directories* - directories, even the empty ones, will be\n"
7228
" included in the output."
7231
#: breezy/plugins/fastimport/cmds.py:398
7233
" To disable these features and produce output acceptable to git 1.6,\n"
7234
" use the --plain option. To enable these features, use --no-plain.\n"
7235
" Currently, --plain is the default but that will change in the near\n"
7236
" future once the feature names and definitions are formally agreed\n"
7237
" to by the broader fast-import developer community."
7240
#: breezy/plugins/fastimport/cmds.py:404
7242
" Git has stricter naming rules for tags and fast-export --plain\n"
7243
" will skip tags which can't be imported into git. To replace characters\n"
7244
" unsupported in git with an underscore instead, specify\n"
7245
" --rewrite-tag-names."
7248
#: breezy/plugins/fastimport/cmds.py:409
7249
msgid ":History truncation:"
7252
#: breezy/plugins/fastimport/cmds.py:411
7254
" It is sometimes convenient to simply truncate the revision history at a\n"
7255
" certain point. The --baseline option, to be used in conjunction with -r,\n"
7256
" emits a baseline commit containing the state of the entire source tree at\n"
7257
" the first requested revision. This allows a user to produce a tree\n"
7258
" identical to the original without munging multiple exports."
7261
#: breezy/plugins/fastimport/cmds.py:419
7262
msgid " To produce data destined for import into Bazaar::"
7265
#: breezy/plugins/fastimport/cmds.py:421
7266
msgid " bzr fast-export --no-plain my-bzr-branch my.fi.gz"
7269
#: breezy/plugins/fastimport/cmds.py:423
7270
msgid " To produce data destined for Git 1.6::"
7273
#: breezy/plugins/fastimport/cmds.py:425
7274
msgid " bzr fast-export --plain my-bzr-branch my.fi"
7277
#: breezy/plugins/fastimport/cmds.py:427
7279
" To import several unmerged but related branches into the same repository,\n"
7280
" use the --{export,import}-marks options, and specify a name for the git\n"
7281
" branch like this::"
7284
#: breezy/plugins/fastimport/cmds.py:431
7286
" bzr fast-export --export-marks=marks.bzr project.dev |\n"
7287
" GIT_DIR=project/.git git-fast-import --export-marks=marks.git"
7290
#: breezy/plugins/fastimport/cmds.py:434
7292
" bzr fast-export --import-marks=marks.bzr -b other project.other |\n"
7293
" GIT_DIR=project/.git git-fast-import --import-marks=marks.git"
7296
#: breezy/plugins/fastimport/cmds.py:437
7298
" If you get a \"Missing space after source\" error from git-fast-import,\n"
7299
" see the top of the commands.py module for a work-around."
7302
#: breezy/plugins/fastimport/cmds.py:440
7304
" Since bzr uses per-branch tags and git/hg use per-repo tags, the\n"
7305
" way bzr fast-export presently emits tags (unconditional reset &\n"
7306
" new ref) may result in clashes when several different branches\n"
7307
" are imported into single git/hg repo. If this occurs, use the\n"
7308
" bzr fast-export option --no-tags during the export of one or more\n"
7309
" branches to avoid the issue."
7312
# help of 'git-branch' option of 'fast-export' command
7313
#: breezy/plugins/fastimport/cmds.py:453
7314
msgid "Name of the git branch to create (default=master)."
7317
# help of 'checkpoint' option of 'fast-export' command
7318
#: breezy/plugins/fastimport/cmds.py:456
7319
msgid "Checkpoint every N revisions (default=10000)."
7322
# help of 'marks' option of 'fast-export' command
7323
#: breezy/plugins/fastimport/cmds.py:459
7324
msgid "Import marks from and export marks to file."
7327
# help of 'import-marks' option of 'fast-export' command
7328
# help of 'import-marks' option of 'fast-import' command
7329
#: breezy/plugins/fastimport/cmds.py:462
7330
msgid "Import marks from file."
7333
# help of 'export-marks' option of 'fast-export' command
7334
# help of 'export-marks' option of 'fast-import' command
7335
#: breezy/plugins/fastimport/cmds.py:465
7336
msgid "Export marks to file."
7339
# help of 'plain' option of 'fast-export' command
7340
#: breezy/plugins/fastimport/cmds.py:468
7341
msgid "Exclude metadata to maximise interoperability."
7344
# help of 'rewrite-tag-names' option of 'fast-export' command
7345
#: breezy/plugins/fastimport/cmds.py:471
7346
msgid "Replace characters invalid in git with '_' (plain mode only)."
7349
# help of 'baseline' option of 'fast-export' command
7350
#: breezy/plugins/fastimport/cmds.py:475
7351
msgid "Export an 'absolute' baseline commit prior tothe first relative commit"
7354
# help of 'no-tags' option of 'fast-export' command
7355
#: breezy/plugins/fastimport/cmds.py:479
7356
msgid "Don't export tags"
7359
#: breezy/plugins/grep/cmds.py:83
7360
msgid "Print lines matching PATTERN for specified files and revisions."
7363
#: breezy/plugins/grep/cmds.py:85
7365
"This command searches the specified files and revisions for a given\n"
7366
"pattern. The pattern is specified as a Python regular expressions[1]."
7369
#: breezy/plugins/grep/cmds.py:88
7371
"If the file name is not specified, the revisions starting with the\n"
7372
"current directory are searched recursively. If the revision number is\n"
7373
"not specified, the working copy is searched. To search the last committed\n"
7374
"revision, use the '-r -1' or '-r last:1' option."
7377
#: breezy/plugins/grep/cmds.py:93
7379
"Unversioned files are not searched unless explicitly specified on the\n"
7380
"command line. Unversioned directores are not searched."
7383
#: breezy/plugins/grep/cmds.py:96
7385
"When searching a pattern, the output is shown in the 'filepath:string'\n"
7386
"format. If a revision is explicitly searched, the output is shown as\n"
7387
"'filepath~N:string', where N is the revision number."
7390
#: breezy/plugins/grep/cmds.py:100
7392
"--include and --exclude options can be used to search only (or exclude\n"
7393
"from search) files with base name matches the specified Unix style GLOB\n"
7394
"pattern. The GLOB pattern an use *, ?, and [...] as wildcards, and \\\n"
7395
"to quote wildcard or backslash character literally. Note that the glob\n"
7396
"pattern is not a regular expression."
7399
#: breezy/plugins/grep/cmds.py:106
7400
msgid "[1] http://docs.python.org/library/re.html#regular-expression-syntax"
7403
# help of 'color' option of 'grep' command
7404
#: breezy/plugins/grep/cmds.py:115
7405
msgid "Show match in color. WHEN is never, always or auto."
7408
# help of 'diff' option of 'grep' command
7409
#: breezy/plugins/grep/cmds.py:117
7410
msgid "Grep for pattern in changeset for each revision."
7413
# help of 'exclude' option of 'grep' command
7414
#: breezy/plugins/grep/cmds.py:119
7415
msgid "Skip files whose base name matches GLOB."
7418
# help of 'include' option of 'grep' command
7419
#: breezy/plugins/grep/cmds.py:121
7420
msgid "Search only files whose base name matches GLOB."
7423
# help of 'files-with-matches' option of 'grep' command
7424
#: breezy/plugins/grep/cmds.py:123
7425
msgid "Print only the name of each input file in which PATTERN is found."
7428
# help of 'files-without-match' option of 'grep' command
7429
#: breezy/plugins/grep/cmds.py:126
7430
msgid "Print only the name of each input file in which PATTERN is not found."
7433
# help of 'fixed-string' option of 'grep' command
7434
#: breezy/plugins/grep/cmds.py:129
7435
msgid "Interpret PATTERN is a single fixed string (not regex)."
7438
# help of 'from-root' option of 'grep' command
7439
#: breezy/plugins/grep/cmds.py:131
7441
"Search for pattern starting from the root of the branch. (implies --"
7445
# help of 'ignore-case' option of 'grep' command
7446
#: breezy/plugins/grep/cmds.py:134
7447
msgid "ignore case distinctions while matching."
7450
# help of 'levels' option of 'grep' command
7451
#: breezy/plugins/grep/cmds.py:136
7453
"Number of levels to display - 0 for all, 1 for collapsed (1 is default)."
7456
# help of 'line-number' option of 'grep' command
7457
#: breezy/plugins/grep/cmds.py:141
7458
msgid "show 1-based line number."
7461
# help of 'no-recursive' option of 'grep' command
7462
#: breezy/plugins/grep/cmds.py:143
7463
msgid "Don't recurse into subdirectories. (default is --recursive)"
7466
# help of 'null' option of 'grep' command
7467
#: breezy/plugins/grep/cmds.py:145
7469
"Write an ASCII NUL (\\0) separator between output lines rather than a "
7473
#: breezy/plugins/launchpad/account.py:66
7474
msgid "Setting ssh/sftp usernames for launchpad.net."
7477
#: breezy/plugins/launchpad/cmds.py:44
7478
msgid "Open a Launchpad branch page in your web browser."
7481
# help of 'dry-run' option of 'launchpad-open' command
7482
#: breezy/plugins/launchpad/cmds.py:49
7483
msgid "Do not actually open the browser. Just say the URL we would use."
7486
#: breezy/plugins/launchpad/cmds.py:85
7488
msgid "Opening %s in web browser"
7491
#: breezy/plugins/launchpad/cmds.py:93
7492
msgid "Show or set the Launchpad user ID."
7495
#: breezy/plugins/launchpad/cmds.py:95
7497
"When communicating with Launchpad, some commands need to know your\n"
7498
"Launchpad user ID. This command can be used to set or show the\n"
7499
"user ID that Bazaar will use for such communication."
7502
#: breezy/plugins/launchpad/cmds.py:99
7505
" Show the Launchpad ID of the current user::"
7508
#: breezy/plugins/launchpad/cmds.py:102
7509
msgid " brz launchpad-login"
7512
#: breezy/plugins/launchpad/cmds.py:104
7513
msgid " Set the Launchpad ID of the current user to 'bob'::"
7516
#: breezy/plugins/launchpad/cmds.py:106
7517
msgid " brz launchpad-login bob"
7520
# help of 'no-check' option of 'launchpad-login' command
7521
#: breezy/plugins/launchpad/cmds.py:113
7522
msgid "Don't check that the user name is valid."
7525
#: breezy/plugins/launchpad/cmds.py:128 breezy/plugins/launchpad/cmds.py:139
7526
msgid "Launchpad user ID exists and has SSH keys.\n"
7529
#: breezy/plugins/launchpad/cmds.py:131
7530
msgid "No Launchpad user ID configured.\n"
7533
#: breezy/plugins/launchpad/cmds.py:142
7535
msgid "Launchpad user ID set to '%s'.\n"
7538
#: breezy/plugins/launchpad/cmds.py:147
7539
msgid "Unset the Launchpad user ID."
7542
#: breezy/plugins/launchpad/cmds.py:149
7544
"When communicating with Launchpad, some commands need to know your\n"
7545
"Launchpad user ID. This command will log you out from Launchpad.\n"
7546
"This means that communication with Launchpad will happen over\n"
7547
"HTTPS, and will not require one of your SSH keys to be available."
7550
#: breezy/plugins/launchpad/cmds.py:161
7551
msgid "Not logged into Launchpad.\n"
7554
#: breezy/plugins/launchpad/cmds.py:166
7556
msgid "Launchpad user ID %s logged out.\n"
7559
#: breezy/plugins/launchpad/cmds.py:236
7560
msgid "Find the proposal to merge this revision."
7563
#: breezy/plugins/launchpad/cmds.py:238
7565
"Finds the merge proposal(s) that discussed landing the specified revision.\n"
7566
"This works only if the if the merged_revno was recorded for the merge\n"
7567
"proposal. The proposal(s) are opened in a web browser."
7570
#: breezy/plugins/launchpad/cmds.py:242
7572
"Only the revision specified is searched for. To find the mainline\n"
7573
"revision that merged it into mainline, use the \"mainline\" revision spec."
7576
#: breezy/plugins/launchpad/cmds.py:245
7577
msgid "So, to find the merge proposal that reviewed line 1 of README::"
7580
#: breezy/plugins/launchpad/cmds.py:247
7581
msgid " brz lp-find-proposal -r mainline:annotate:README:1"
7584
#: breezy/plugins/launchpad/cmds.py:264
7585
msgid "No review found."
7588
#: breezy/plugins/launchpad/cmds.py:265
7590
msgid "%d proposals(s) found."
7593
#: breezy/plugins/launchpad/cmds.py:274
7594
msgid "Finding proposals"
7597
#: breezy/plugins/launchpad/lp_api.py:240
7598
#: breezy/plugins/launchpad/lp_api.py:245
7600
msgid "%s is not registered on Launchpad"
7603
#: breezy/plugins/launchpad/lp_api.py:255
7605
msgid "%s has no development focus."
7608
#: breezy/plugins/launchpad/lp_api.py:260
7610
msgid "development focus %s has no branch."
7613
#: breezy/plugins/launchpad/lp_api.py:265
7615
msgid "source package %s has no branch."
7618
#: breezy/plugins/launchpad/lp_api.py:269
7620
msgid "%s has no associated product or source package."
7623
#: breezy/plugins/launchpad/lp_api.py:280
7625
msgid "%s is already up-to-date."
7628
#: breezy/plugins/launchpad/lp_api.py:287
7630
msgid "Pushing to %s"
7633
#: breezy/plugins/launchpad/lp_directory.py:165
7634
#, python-brace-format
7636
"resolution for {0}\n"
7641
#: breezy/plugins/launchpad/lp_propose.py:152
7642
#: breezy/plugins/propose/cmds.py:197
7644
msgid "There is already a branch merge proposal: %s"
7647
#: breezy/plugins/propose/cmds.py:53
7648
msgid "Publish a derived branch."
7651
#: breezy/plugins/propose/cmds.py:55
7653
"Try to create a public copy of a local branch on a hosting site,\n"
7654
"derived from the specified base branch."
7657
#: breezy/plugins/propose/cmds.py:58
7659
"Reasonable defaults are picked for owner name, branch name and project\n"
7660
"name, but they can also be overridden from the command-line."
7663
# help of 'owner' option of 'publish-derived' command
7664
#: breezy/plugins/propose/cmds.py:64
7665
msgid "Owner of the new remote branch."
7668
# help of 'project' option of 'publish-derived' command
7669
#: breezy/plugins/propose/cmds.py:65
7670
msgid "Project name for the new remote branch."
7673
# help of 'overwrite' option of 'publish-derived' command
7674
#: breezy/plugins/propose/cmds.py:70
7675
msgid "Overwrite existing commits."
7678
#: breezy/plugins/propose/cmds.py:80
7680
msgid "Using submit branch %s"
7683
#: breezy/plugins/propose/cmds.py:83
7685
msgid "Using parent branch %s"
7688
#: breezy/plugins/propose/cmds.py:94
7690
msgid "Pushed to %s"
7693
#: breezy/plugins/propose/cmds.py:128
7694
msgid "Propose a branch for merging."
7697
#: breezy/plugins/propose/cmds.py:130
7699
"This command creates a merge proposal for the local\n"
7700
"branch to the target branch. The format of the merge\n"
7701
"proposal depends on the submit branch."
7704
# title of 'hoster' option of 'propose-merge' command
7705
#: breezy/plugins/propose/cmds.py:138
7709
# help of 'hoster' option of 'propose-merge' command
7710
#: breezy/plugins/propose/cmds.py:139
7711
msgid "Use the hoster."
7714
# help of 'reviewers' option of 'propose-merge' command
7715
#: breezy/plugins/propose/cmds.py:142
7716
msgid "Requested reviewers."
7719
# help of 'name' option of 'propose-merge' command
7720
# help of 'name' option of 'publish-derived' command
7721
#: breezy/plugins/propose/cmds.py:143
7722
msgid "Name of the new remote branch."
7725
# help of 'description' option of 'propose-merge' command
7726
#: breezy/plugins/propose/cmds.py:144
7727
msgid "Description of the change."
7730
# help of 'prerequisite' option of 'propose-merge' command
7731
#: breezy/plugins/propose/cmds.py:145
7732
msgid "Prerequisite branch."
7735
# help of 'labels' option of 'propose-merge' command
7736
#: breezy/plugins/propose/cmds.py:147
7737
msgid "Labels to apply."
7740
# help of 'no-allow-lossy' option of 'propose-merge' command
7741
# help of 'no-allow-lossy' option of 'publish-derived' command
7742
#: breezy/plugins/propose/cmds.py:149
7743
msgid "Allow fallback to lossy push, if necessary."
7746
#: breezy/plugins/propose/cmds.py:166 breezy/plugins/propose/cmds.py:222
7747
msgid "No target location specified or remembered"
7750
#: breezy/plugins/propose/cmds.py:178
7752
msgid "Published branch to %s"
7755
#: breezy/plugins/propose/cmds.py:198
7757
msgid "Merge proposal created: %s"
7760
#: breezy/plugins/propose/cmds.py:202
7761
msgid "Find a merge proposal."
7764
#: breezy/plugins/propose/cmds.py:204
7768
#: breezy/plugins/propose/cmds.py:227
7770
msgid "Merge proposal: %s\n"
7773
#: breezy/plugins/propose/cmds.py:231
7774
msgid "Log into GitHub."
7777
#: breezy/plugins/propose/cmds.py:233
7779
"When communicating with GitHub, some commands need to authenticate to\n"
7783
#: breezy/plugins/propose/cmds.py:268
7784
msgid "Log into a GitLab instance."
7787
#: breezy/plugins/propose/cmds.py:270
7789
"This command takes a GitLab instance URL (e.g. https://gitlab.com)\n"
7790
"as well as a private token. Private tokens can be created via the\n"
7794
#: breezy/plugins/propose/cmds.py:276
7795
msgid " Log into Debian's salsa:"
7798
#: breezy/plugins/propose/cmds.py:278
7799
msgid " brz gitlab-login https://salsa.debian.org if4Theis6Eich7aef0zo"
7802
# help of 'name' option of 'gitlab-login' command
7803
#: breezy/plugins/propose/cmds.py:284
7804
msgid "Name for GitLab site in configuration."
7807
# help of 'no-check' option of 'gitlab-login' command
7808
#: breezy/plugins/propose/cmds.py:287
7809
msgid "Don't check that the token is valid."
7812
#: breezy/plugins/propose/github.py:177
7814
msgid "Forking new repository %s from %s"
7817
#: breezy/plugins/propose/github.py:180
7819
msgid "Reusing existing repository %s"
7822
#: breezy/plugins/stats/cmds.py:238
7823
msgid "Generate statistics for LOCATION."
7826
# help of 'show-class' option of 'committer-statistics' command
7827
#: breezy/plugins/stats/cmds.py:243
7828
msgid "Show the class of contributions."
7831
#: breezy/plugins/stats/cmds.py:383
7832
msgid "Determine credits for LOCATION."
7835
#: breezy/plugins/upload/cmds.py:468
7836
msgid "Upload a working tree, as a whole or incrementally."
7839
#: breezy/plugins/upload/cmds.py:470
7841
"If no destination is specified use the last one used.\n"
7842
"If no revision is specified upload the changes since the last upload."
7845
#: breezy/plugins/upload/cmds.py:473
7846
msgid "Changes include files added, renamed, modified or removed."
7849
# help of 'full' option of 'upload' command
7850
#: breezy/plugins/upload/cmds.py:481
7851
msgid "Upload the full working tree."
7854
# help of 'quiet' option of 'upload' command
7855
#: breezy/plugins/upload/cmds.py:482
7856
msgid "Do not output what is being done."
7859
# help of 'directory' option of 'upload' command
7860
#: breezy/plugins/upload/cmds.py:485
7862
"Branch to upload from, rather than the one containing the working directory."
7865
# help of 'auto' option of 'upload' command
7866
#: breezy/plugins/upload/cmds.py:491
7867
msgid "Trigger an upload from this branch whenever the tip revision changes."
7870
#: breezy/plugins/weave_fmt/bzrdir.py:243
7871
msgid "pb parameter to convert() is deprecated"
7874
#: breezy/plugins/weave_fmt/bzrdir.py:245
7875
msgid "starting upgrade from format 4 to 5"
7878
#: breezy/plugins/weave_fmt/bzrdir.py:254
7879
msgid "note: upgrade may be faster if all store files are ungzipped first"
7882
#: breezy/plugins/weave_fmt/bzrdir.py:283
7883
msgid "converting revision"
7886
#: breezy/plugins/weave_fmt/bzrdir.py:288
7887
msgid "upgraded to weaves:"
7890
#: breezy/plugins/weave_fmt/bzrdir.py:289
7892
msgid "%6d revisions and inventories"
7895
#: breezy/plugins/weave_fmt/bzrdir.py:291
7897
msgid "%6d revisions not present"
7900
#: breezy/plugins/weave_fmt/bzrdir.py:293
7905
#: breezy/plugins/weave_fmt/bzrdir.py:330
7906
msgid "writing weave"
7909
#: breezy/plugins/weave_fmt/bzrdir.py:334
7910
#: breezy/plugins/weave_fmt/bzrdir.py:336
7914
#: breezy/plugins/weave_fmt/bzrdir.py:353
7915
msgid "write revision"
7918
#: breezy/plugins/weave_fmt/bzrdir.py:367
7919
msgid "loading revision"
7922
#: breezy/plugins/weave_fmt/bzrdir.py:372
7924
msgid "revision {%s} not present in branch; will be converted as a ghost"
7927
#: breezy/plugins/weave_fmt/bzrdir.py:511
7928
msgid "starting upgrade from format 5 to 6"
7931
#: breezy/plugins/weave_fmt/bzrdir.py:519
7933
msgid "adding prefixes to %s"
7936
#: breezy/plugins/weave_fmt/bzrdir.py:561
7937
msgid "starting upgrade from format 6 to metadir"
7940
#: breezy/plugins/weave_fmt/bzrdir.py:569
7941
msgid "Removing ancestry.weave"
7944
#: breezy/plugins/weave_fmt/bzrdir.py:574
7945
msgid "Finding branch files"
7948
#: breezy/plugins/weave_fmt/bzrdir.py:584
7949
msgid "Upgrading repository"
7952
#: breezy/plugins/weave_fmt/bzrdir.py:594
7953
msgid "Upgrading branch"
7956
#: breezy/plugins/weave_fmt/bzrdir.py:617
7957
msgid "No working tree."
7960
#: breezy/plugins/weave_fmt/bzrdir.py:624
7961
msgid "Upgrading working tree"
7964
#: breezy/plugins/weave_fmt/bzrdir.py:644
7966
msgid "Make %s lock"
7969
#: breezy/plugins/weave_fmt/bzrdir.py:655
7974
#: breezy/push.py:99
7977
"Target directory %s already contains a .bzr directory, but it is not valid."
7980
#: breezy/push.py:103
7983
"Target directory %s already exists, but does not have a .bzr directory. "
7984
"Supply --use-existing-dir to push there anyway."
7987
#: breezy/push.py:124
7989
msgid "Too many redirections trying to make %s."
7992
#: breezy/push.py:150
7994
"These branches have diverged. See \"brz help diverged-branches\" for more "
7998
#: breezy/push.py:155
8001
"It is not possible to losslessly push to %s. You may want to use --lossy."
8004
#: breezy/push.py:161
8007
"At %s you have a valid .bzr control directory, but not a branch or "
8008
"repository. This is an unsupported configuration. Please move the target "
8009
"directory out of the way and try again."
8012
#: breezy/reconcile.py:87
8014
msgid "Reconciling branch %s"
8017
#: breezy/reconcile.py:92
8019
msgid "Reconciling repository %s"
8022
#: breezy/reconcile.py:94
8023
msgid "Reconciling repository"
8026
#: breezy/reconcile.py:100
8028
msgid "%s cannot canonicalize CHKs."
8031
#: breezy/reconcile.py:106
8032
msgid "Reconcile aborted: revision index has inconsistent parents."
8035
#: breezy/reconcile.py:108
8036
msgid "Run \"brz check\" for more details."
8039
#: breezy/reconcile.py:110
8040
msgid "Reconciliation complete."
8043
#: breezy/reconfigure.py:127
8044
#, python-brace-format
8045
msgid "{0} is now stacked on {1}\n"
8048
#: breezy/reconfigure.py:142
8050
msgid "%s is now not stacked\n"
8053
#: breezy/rename_map.py:73
8054
msgid "Calculating hashes"
8057
#: breezy/rename_map.py:108
8058
msgid "Determining hash hits"
8061
#: breezy/rename_map.py:235
8062
#, python-brace-format
8066
#: breezy/repository.py:286
8068
msgid "brz: ERROR (ignored): %s"
8071
#: breezy/repository.py:1573
8072
msgid "Moving repository to repository.backup"
8075
#: breezy/repository.py:1581
8076
msgid "Creating new repository"
8079
#: breezy/repository.py:1586
8080
msgid "Copying content"
8083
#: breezy/repository.py:1590
8084
msgid "Deleting old repository content"
8087
#: breezy/repository.py:1592
8088
msgid "repository converted"
8091
#: breezy/revisionspec.py:861
8092
#, python-brace-format
8093
msgid "Using {0} {1}"
8096
#: breezy/send.py:59
8098
msgid "Mail client \"%s\" does not support specifying body"
8101
#: breezy/send.py:63
8102
msgid "--remember requires a branch to be specified."
8105
#: breezy/send.py:78
8106
msgid "No submit branch known or specified"
8109
#: breezy/send.py:81
8110
#, python-brace-format
8111
msgid "Using saved {0} location \"{1}\" to determine what changes to submit."
8114
#: breezy/send.py:99
8116
msgid "No such send format '%s'."
8119
#: breezy/send.py:115
8120
msgid "bzr send takes at most two one revision identifiers"
8123
#: breezy/send.py:128
8124
msgid "No revisions to submit."
8127
#: breezy/send.py:140
8129
"- not supported for merge directives that use more than one output file."
8132
#: breezy/send.py:186
8133
msgid "Format 0.9 does not permit bundle with no patch"
8136
#: breezy/shelf_ui.py:48
8138
msgid "Shelve adding file \"%(path)s\"?"
8141
#: breezy/shelf_ui.py:49
8142
msgid "Shelve binary changes?"
8145
#: breezy/shelf_ui.py:50
8146
msgid "Shelve changing \"%s\" from %(other)s to %(this)s?"
8149
#: breezy/shelf_ui.py:52
8151
msgid "Shelve removing file \"%(path)s\"?"
8154
#: breezy/shelf_ui.py:53
8156
msgid "Shelve %d change(s)?"
8159
#: breezy/shelf_ui.py:54
8163
#: breezy/shelf_ui.py:55
8166
"Shelve changing target of \"%(path)s\" from \"%(other)s\" to \"%(this)s\"?"
8169
#: breezy/shelf_ui.py:57
8171
msgid "Shelve renaming \"%(other)s\" => \"%(this)s\"?"
8174
#: breezy/shelf_ui.py:72
8176
msgid "Changes shelved with id \"%d\"."
8179
#: breezy/shelf_ui.py:76
8180
msgid "Selected changes destroyed."
8183
#: breezy/shelf_ui.py:80
8184
msgid "Selected changes:"
8187
#: breezy/shelf_ui.py:100
8189
msgid "Delete file \"%(path)s\"?"
8192
#: breezy/shelf_ui.py:101
8193
msgid "Apply binary changes?"
8196
#: breezy/shelf_ui.py:102
8198
msgid "Change \"%(path)s\" from %(this)s to %(other)s?"
8201
#: breezy/shelf_ui.py:104
8203
msgid "Add file \"%(path)s\"?"
8206
#: breezy/shelf_ui.py:105
8208
msgid "Apply %d change(s)?"
8211
#: breezy/shelf_ui.py:106
8212
msgid "Apply change?"
8215
#: breezy/shelf_ui.py:107
8217
msgid "Change target of \"%(path)s\" from \"%(this)s\" to \"%(other)s\"?"
8220
#: breezy/shelf_ui.py:109
8222
msgid "Rename \"%(this)s\" => \"%(other)s\"?"
8225
#: breezy/shelf_ui.py:409
8226
msgid "No changes are shelved."
8229
#: breezy/shelf_ui.py:467
8231
msgid "Using changes with id \"%d\"."
8234
#: breezy/shelf_ui.py:472
8239
#: breezy/shelf_ui.py:484
8241
msgid "Deleted changes with id \"%d\"."
8244
#: breezy/switch.py:71
8245
msgid "Pending merges must be committed or reverted before using switch."
8248
#: breezy/switch.py:104
8250
msgid "Tree is up to date at revision %d."
8253
#: breezy/switch.py:112
8255
msgid "Updated to revision %d."
8258
#: breezy/switch.py:143
8260
"Cannot switch as local commits found in the checkout. Commit these to the "
8261
"bound branch or use --force to throw them away."
8264
#: breezy/switch.py:148
8267
"Unable to connect to current master branch %(target)s: %(error)s To switch "
8268
"anyway, use --force."
8271
#: breezy/switch.py:172
8272
msgid "Cannot switch a branch, only a checkout."
8275
#: breezy/transform.py:1741 breezy/transform.py:1752 breezy/transform.py:1754
8279
#: breezy/transform.py:1777 breezy/transform.py:1840
8280
msgid "removing file"
8283
#: breezy/transform.py:1792 breezy/transform.py:1870
8287
#: breezy/transform.py:2612
8288
msgid "Building tree"
8291
#: breezy/transform.py:2705 breezy/transform.py:2726
8292
msgid "Adding file contents"
8295
#: breezy/transform.py:3027
8296
msgid "Resolution pass"
8299
#: breezy/tree.py:601
8300
msgid "*** {0} content-filter: {1} => {2!r}"
8303
#: breezy/upgrade.py:77
8305
msgid "This is a checkout. The branch (%s) needs to be upgraded separately."
8308
#: breezy/upgrade.py:100
8310
msgid "cannot upgrade from bzrdir format %s"
8313
#: breezy/upgrade.py:103
8315
msgid "starting upgrade of %s"
8318
#: breezy/upgrade.py:110
8322
#: breezy/upgrade.py:120
8323
msgid "Deleting backup.bzr"
8326
#: breezy/upgrade.py:148
8327
#, python-brace-format
8330
"SUMMARY: {0} upgrades attempted, {1} succeeded, {2} failed"
8333
#: breezy/upgrade.py:205
8335
msgid "Found %d dependent branches - upgrading ..."
8338
#: breezy/upgrade.py:275
8339
msgid "Upgrading bzrdirs"
8342
#: breezy/upgrade.py:281
8344
msgid "Upgrading %s"
8347
#: breezy/upgrade.py:283
8348
#, python-brace-format
8349
msgid "Upgrading {0} {1} ..."
8352
#: breezy/upgrade.py:301
8353
msgid "Removing backup ..."
8356
#: breezy/upgrade.py:306
8357
#, python-brace-format
8358
msgid "failed to clean-up {0}: {1}"
8361
#: breezy/win32utils.py:112
8362
msgid "Failed to GetProcessMemoryInfo()"
8365
#: breezy/win32utils.py:133
8366
msgid "Cannot debug memory on win32 without ctypes or win32process"
8369
#: breezy/win32utils.py:138
8370
#, python-brace-format
8371
msgid "WorkingSize {0:>7}KiB\tPeakWorking {1:>7}KiB\t{2}"
8374
#: breezy/win32utils.py:146
8376
msgid "WorkingSize %8d KiB"
8379
#: breezy/win32utils.py:148
8381
msgid "PeakWorking %8d KiB"
8384
#: breezy/win32utils.py:150
8386
msgid "PagefileUsage %8d KiB"
8389
#: breezy/win32utils.py:152
8391
msgid "PeakPagefileUsage %8d KiB"
8394
#: breezy/win32utils.py:154
8396
msgid "PrivateUsage %8d KiB"
8399
#: breezy/win32utils.py:156
8401
msgid "PageFaultCount %8d"
8404
#: breezy/workingtree.py:1202
8405
msgid "Rerun update after fixing the conflicts."
8408
#: dummy/help_topics/authentication/summary.txt:1
8409
msgid "Information on configuring authentication"
8412
#: dummy/help_topics/basic/detail.txt:1
8414
"Breezy 3.0b1 -- a free distributed version-control tool\n"
8415
"https://www.breezy-vcs.org/"
8418
#: dummy/help_topics/basic/detail.txt:4
8421
" brz init makes this directory a versioned branch\n"
8422
" brz branch make a copy of another branch"
8425
#: dummy/help_topics/basic/detail.txt:8
8427
" brz add make files or directories versioned\n"
8428
" brz ignore ignore a file or pattern\n"
8429
" brz mv move or rename a versioned file"
8432
#: dummy/help_topics/basic/detail.txt:12
8434
" brz status summarize changes in working copy\n"
8435
" brz diff show detailed diffs"
8438
#: dummy/help_topics/basic/detail.txt:15
8440
" brz merge pull in changes from another branch\n"
8441
" brz commit save some or all changes\n"
8442
" brz send send changes via email"
8445
#: dummy/help_topics/basic/detail.txt:19
8447
" brz log show history of changes\n"
8448
" brz check validate storage"
8451
#: dummy/help_topics/basic/detail.txt:22
8453
" brz help init more help on e.g. init command\n"
8454
" brz help commands list all commands\n"
8455
" brz help topics list all help topics\n"
8458
#: dummy/help_topics/basic/summary.txt:1
8459
msgid "Basic commands"
8462
#: dummy/help_topics/branches/detail.txt:1
8466
#: dummy/help_topics/branches/detail.txt:3
8468
"A branch consists of the state of a project, including all of its\n"
8469
"history. All branches have a repository associated (which is where the\n"
8470
"branch history is stored), but multiple branches may share the same\n"
8471
"repository (a shared repository). Branches can be copied and merged."
8474
#: dummy/help_topics/branches/detail.txt:8
8476
"In addition, one branch may be bound to another one. Binding to another\n"
8477
"branch indicates that commits which happen in this branch must also\n"
8478
"happen in the other branch. Breezy ensures consistency by not allowing\n"
8479
"commits when the two branches are out of date. In order for a commit\n"
8480
"to succeed, it may be necessary to update the current branch using\n"
8484
#: dummy/help_topics/branches/detail.txt:15
8485
#: dummy/help_topics/checkouts/detail.txt:66
8486
#: dummy/help_topics/repositories/detail.txt:36
8487
msgid "Related commands::"
8490
#: dummy/help_topics/branches/detail.txt:17
8492
" init Change a directory into a versioned branch.\n"
8493
" branch Create a new branch that is a copy of an existing branch.\n"
8494
" merge Perform a three-way merge.\n"
8495
" bind Bind a branch to another one.\n"
8498
#: dummy/help_topics/branches/summary.txt:1
8499
msgid "Information on what a branch is"
8502
#: dummy/help_topics/bugs/summary.txt:1
8503
msgid "Bug tracker settings"
8506
#: dummy/help_topics/checkouts/detail.txt:1
8510
#: dummy/help_topics/checkouts/detail.txt:3
8512
"Checkouts are source trees that are connected to a branch, so that when\n"
8513
"you commit in the source tree, the commit goes into that branch. They\n"
8514
"allow you to use a simpler, more centralized workflow, ignoring some of\n"
8515
"Breezy's decentralized features until you want them. Using checkouts\n"
8516
"with shared repositories is very similar to working with SVN or CVS, but\n"
8517
"doesn't have the same restrictions. And using checkouts still allows\n"
8518
"others working on the project to use whatever workflow they like."
8521
#: dummy/help_topics/checkouts/detail.txt:11
8523
"A checkout is created with the brz checkout command (see \"help checkout"
8525
"You pass it a reference to another branch, and it will create a local copy\n"
8526
"for you that still contains a reference to the branch you created the\n"
8527
"checkout from (the master branch). Then if you make any commits they will "
8529
"made on the other branch first. This creates an instant mirror of your work, "
8531
"facilitates lockstep development, where each developer is working together,\n"
8532
"continuously integrating the changes of others."
8535
#: dummy/help_topics/checkouts/detail.txt:19
8537
"However the checkout is still a first class branch in Breezy terms, so that\n"
8538
"you have the full history locally. As you have a first class branch you "
8540
"also commit locally if you want, for instance due to the temporary loss af "
8542
"network connection. Use the --local option to commit to do this. All the "
8544
"commits will then be made on the master branch the next time you do a non-"
8549
#: dummy/help_topics/checkouts/detail.txt:26
8551
"If you are using a checkout from a shared branch you will periodically want "
8553
"pull in all the changes made by others. This is done using the \"update\"\n"
8554
"command. The changes need to be applied before any non-local commit, but\n"
8555
"Breezy will tell you if there are any changes and suggest that you use this\n"
8556
"command when needed."
8559
#: dummy/help_topics/checkouts/detail.txt:32
8561
"It is also possible to create a \"lightweight\" checkout by passing the\n"
8562
"--lightweight flag to checkout. A lightweight checkout is even closer to an\n"
8563
"SVN checkout in that it is not a first class branch, it mainly consists of "
8565
"working tree. This means that any history operations must query the master\n"
8566
"branch, which could be slow if a network connection is involved. Also, as "
8568
"don't have a local branch, then you cannot commit locally."
8571
#: dummy/help_topics/checkouts/detail.txt:39
8573
"Lightweight checkouts work best when you have fast reliable access to the\n"
8574
"master branch. This means that if the master branch is on the same disk or "
8576
"a lightweight checkout will be faster than a heavyweight one for any "
8578
"that modify the revision history (as only one copy of the branch needs to\n"
8579
"be updated). Heavyweight checkouts will generally be faster for any command\n"
8580
"that uses the history but does not change it, but if the master branch is "
8582
"the same disk then there won't be a noticeable difference."
8585
#: dummy/help_topics/checkouts/detail.txt:47
8587
"Another possible use for a checkout is to use it with a treeless repository\n"
8588
"containing your branches, where you maintain only one working tree by\n"
8589
"switching the master branch that the checkout points to when you want to\n"
8590
"work on a different branch."
8593
#: dummy/help_topics/checkouts/detail.txt:52
8595
"Obviously to commit on a checkout you need to be able to write to the "
8597
"branch. This means that the master branch must be accessible over a "
8599
"protocol , such as sftp://, and that you have write permissions at the "
8601
"end. Checkouts also work on the local file system, so that all that matters "
8606
#: dummy/help_topics/checkouts/detail.txt:58
8608
"You can change the master of a checkout by using the \"switch\" command "
8610
"\"help switch\"). This will change the location that the commits are sent "
8612
"The \"bind\" command can also be used to turn a normal branch into a heavy\n"
8613
"checkout. If you would like to convert your heavy checkout into a normal\n"
8614
"branch so that every commit is local, you can use the \"unbind\" command. To "
8616
"whether or not a branch is bound or not you can use the \"info\" command. If "
8618
"branch is bound it will tell you the location of the bound branch."
8621
#: dummy/help_topics/checkouts/detail.txt:68
8623
" checkout Create a checkout. Pass --lightweight to get a lightweight\n"
8625
" update Pull any changes in the master branch in to your checkout\n"
8626
" commit Make a commit that is sent to the master branch. If you have\n"
8627
" a heavy checkout then the --local option will commit to the\n"
8628
" checkout without sending the commit to the master\n"
8629
" switch Change the master branch that the commits in the checkout "
8632
" bind Turn a standalone branch into a heavy checkout so that any\n"
8633
" commits will be sent to the master branch\n"
8634
" unbind Turn a heavy checkout into a standalone branch so that any\n"
8635
" commits are only made locally\n"
8636
" info Displays whether a branch is bound or unbound. If the branch "
8638
" bound, then it will also display the location of the bound "
8642
#: dummy/help_topics/checkouts/summary.txt:1
8643
msgid "Information on what a checkout is"
8646
#: dummy/help_topics/configuration/summary.txt:1
8647
msgid "Details on the configuration settings available"
8650
#: dummy/help_topics/conflict-types/summary.txt:1
8651
msgid "Types of conflicts and what to do about them"
8654
#: dummy/help_topics/content-filters/summary.txt:1
8655
msgid "Conversion of content into/from working trees"
8658
#: dummy/help_topics/criss-cross/detail.txt:1
8662
#: dummy/help_topics/criss-cross/detail.txt:3
8664
"A criss-cross in the branch history can cause the default merge technique\n"
8665
"to emit more conflicts than would normally be expected."
8668
#: dummy/help_topics/criss-cross/detail.txt:6
8670
"In complex merge cases, ``brz merge --lca`` or ``brz merge --weave`` may "
8672
"better results. You may wish to ``brz revert`` the working tree and merge\n"
8673
"again. Alternatively, use ``brz remerge`` on particular conflicted files."
8676
#: dummy/help_topics/criss-cross/detail.txt:10
8678
"Criss-crosses occur in a branch's history if two branches merge the same "
8680
"and then merge one another, or if two branches merge one another at the "
8682
"time. They can be avoided by having each branch only merge from or into a\n"
8683
"designated central branch (a \"star topology\")."
8686
#: dummy/help_topics/criss-cross/detail.txt:15
8688
"Criss-crosses cause problems because of the way merge works. Breezy's "
8690
"merge is a three-way merger; in order to merge OTHER into THIS, it must\n"
8691
"find a basis for comparison, BASE. Using BASE, it can determine whether\n"
8692
"differences between THIS and OTHER are due to one side adding lines, or\n"
8693
"from another side removing lines."
8696
#: dummy/help_topics/criss-cross/detail.txt:21
8698
"Criss-crosses mean there is no good choice for a base. Selecting the "
8700
"merge points could cause one side's changes to be silently discarded.\n"
8701
"Selecting older merge points (which Breezy does) mean that extra conflicts\n"
8705
#: dummy/help_topics/criss-cross/detail.txt:26
8707
"The ``weave`` merge type is not affected by this problem because it uses\n"
8708
"line-origin detection instead of a basis revision to determine the cause of\n"
8712
#: dummy/help_topics/criss-cross/summary.txt:1
8713
msgid "Information on criss-cross merging"
8716
#: dummy/help_topics/current-formats/summary.txt:1
8717
msgid "Current storage formats"
8720
#: dummy/help_topics/debug-flags/summary.txt:1
8721
msgid "Options to show or record debug information"
8724
#: dummy/help_topics/diverged-branches/summary.txt:1
8725
msgid "How to fix diverged branches"
8728
#: dummy/help_topics/env-variables/summary.txt:1
8729
msgid "Environment variable names and values"
8732
#: dummy/help_topics/eol/summary.txt:1
8733
msgid "Information on end-of-line handling"
8736
#: dummy/help_topics/files/detail.txt:1
8740
#: dummy/help_topics/files/detail.txt:3
8742
":On Unix: ~/.config/breezy/breezy.conf\n"
8743
":On Windows: C:\\\\Documents and Settings\\\\username\\\\Application Data\\"
8744
"\\Breezy\\\\2.0\\\\breezy.conf"
8747
#: dummy/help_topics/files/detail.txt:6
8749
"Contains the user's default configuration. The section ``[DEFAULT]`` is\n"
8750
"used to define general configuration that will be applied everywhere.\n"
8751
"The section ``[ALIASES]`` can be used to create command aliases for\n"
8752
"commonly used options."
8755
#: dummy/help_topics/files/detail.txt:11
8756
msgid "A typical config file might look something like::"
8759
#: dummy/help_topics/files/detail.txt:13
8762
" email=John Doe <jdoe@isp.com>"
8765
#: dummy/help_topics/files/detail.txt:16
8768
" commit = commit --strict\n"
8769
" log10 = log --short -r -10..-1\n"
8772
#: dummy/help_topics/files/summary.txt:1
8773
msgid "Information on configuration and log files"
8776
#: dummy/help_topics/formats/detail.txt:1
8777
msgid "Storage Formats"
8780
#: dummy/help_topics/formats/detail.txt:3
8782
"To ensure that older clients do not access data incorrectly,\n"
8783
"Breezy's policy is to introduce a new storage format whenever\n"
8784
"new features requiring new metadata are added. New storage\n"
8785
"formats may also be introduced to improve performance and\n"
8789
#: dummy/help_topics/formats/detail.txt:9
8791
"The newest format, 2a, is highly recommended. If your\n"
8792
"project is not using 2a, then you should suggest to the\n"
8793
"project owner to upgrade."
8796
#: dummy/help_topics/formats/detail.txt:13
8802
#: dummy/help_topics/formats/detail.txt:16
8804
" Some of the older formats have two variants:\n"
8805
" a plain one and a rich-root one. The latter include an additional\n"
8806
" field about the root of the tree. There is no performance cost\n"
8807
" for using a rich-root format but you cannot easily merge changes\n"
8808
" from a rich-root format into a plain format. As a consequence,\n"
8809
" moving a project to a rich-root format takes some co-ordination\n"
8810
" in that all contributors need to upgrade their repositories\n"
8811
" around the same time. 2a and all future formats will be\n"
8812
" implicitly rich-root."
8815
#: dummy/help_topics/formats/detail.txt:26
8817
"See :doc:`current-formats-help` for the complete list of\n"
8818
"currently supported formats. See :doc:`other-formats-help` for\n"
8819
"descriptions of any available experimental and deprecated formats.\n"
8822
#: dummy/help_topics/formats/summary.txt:1
8823
msgid "Information on choosing a storage format"
8826
#: dummy/help_topics/git/detail.txt:1
8827
msgid "Using Bazaar with Git."
8830
#: dummy/help_topics/git/detail.txt:3
8832
"The bzr-git plugin provides support for using Bazaar with local and remote\n"
8833
"Git repositories, as just another format. You can clone, pull from and\n"
8834
"push to git repositories as you would with any native Bazaar branch."
8837
#: dummy/help_topics/git/detail.txt:7
8838
msgid "The bzr-git plugin also adds three new bzr subcommands:"
8841
#: dummy/help_topics/git/detail.txt:9
8843
" * bzr git-objects: Extracts Git objects out of a Bazaar repository\n"
8844
" * bzr git-refs: Display Git refs from a Bazaar branch or repository\n"
8845
" * bzr git-import: Imports a local or remote Git repository to a set of "
8850
#: dummy/help_topics/git/detail.txt:14
8852
"The 'git:' revision specifier can be used to find revisions by short or "
8857
#: dummy/help_topics/git/summary.txt:1
8858
msgid "Using Bazaar with Git"
8861
#: dummy/help_topics/global-options/detail.txt:1
8862
msgid "Global Options"
8865
#: dummy/help_topics/global-options/detail.txt:3
8867
"These options may be used with any command, and may appear in front of any\n"
8868
"command. (e.g. ``brz --profile help``)."
8871
#: dummy/help_topics/global-options/detail.txt:6
8873
"--version Print the version number. Must be supplied before the "
8875
"--no-aliases Do not process command aliases when running this command.\n"
8876
"--builtin Use the built-in version of a command, not the plugin "
8878
" This does not suppress other plugin effects.\n"
8879
"--no-plugins Do not process any plugins.\n"
8880
"--no-l10n Do not translate messages.\n"
8881
"--concurrency Number of processes that can be run concurrently (selftest)."
8884
#: dummy/help_topics/global-options/detail.txt:14
8886
"--profile Profile execution using the hotshot profiler.\n"
8887
"--lsprof Profile execution using the lsprof profiler.\n"
8888
"--lsprof-file Profile execution using the lsprof profiler, and write the\n"
8889
" results to a specified file. If the filename ends with \".txt"
8891
" text format will be used. If the filename either starts "
8893
" \"callgrind.out\" or end with \".callgrind\", the output will "
8895
" formatted for use with KCacheGrind. Otherwise, the output\n"
8896
" will be a pickle.\n"
8897
"--coverage Generate line coverage report in the specified directory."
8900
#: dummy/help_topics/global-options/detail.txt:24
8902
"-Oname=value Override the ``name`` config option setting it to ``value`` "
8904
" the duration of the command. This can be used multiple times "
8906
" several options need to be overridden."
8909
#: dummy/help_topics/global-options/detail.txt:28
8911
"See https://www.breezy-vcs.org/developers/profiling.html for more\n"
8912
"information on profiling."
8915
#: dummy/help_topics/global-options/detail.txt:31
8917
"A number of debug flags are also available to assist troubleshooting and\n"
8918
"development. See :doc:`debug-flags-help`.\n"
8921
#: dummy/help_topics/global-options/summary.txt:1
8922
msgid "Options that control how Breezy runs"
8925
#: dummy/help_topics/glossary/summary.txt:1
8929
#: dummy/help_topics/hooks/summary.txt:1
8930
msgid "Points at which custom processing can be added"
8933
#: dummy/help_topics/launchpad/detail.txt:1
8934
msgid "Integration with Launchpad.net"
8937
#: dummy/help_topics/launchpad/detail.txt:3
8939
"Launchpad.net provides free Bazaar branch hosting with integrated bug and\n"
8940
"specification tracking."
8943
#: dummy/help_topics/launchpad/detail.txt:6
8945
"The bzr client (through the plugin called 'launchpad') has special\n"
8946
"features to communicate with Launchpad:"
8949
#: dummy/help_topics/launchpad/detail.txt:9
8951
" * The launchpad-login command tells Bazaar your Launchpad user name. "
8953
" is then used by the 'lp:' transport to download your branches using\n"
8957
#: dummy/help_topics/launchpad/detail.txt:13
8959
" * The 'lp:' transport uses Launchpad as a directory service: for "
8961
" 'lp:bzr' and 'lp:python' refer to the main branches of the relevant\n"
8962
" projects and may be branched, logged, etc. You can also use the 'lp:'\n"
8963
" transport to refer to specific branches, e.g. lp:~bzr/bzr/trunk."
8966
#: dummy/help_topics/launchpad/detail.txt:18
8968
" * The 'lp:' bug tracker alias can expand launchpad bug numbers to their\n"
8969
" URLs for use with 'bzr commit --fixes', e.g. 'bzr commit --fixes "
8971
" will record a revision property that marks that revision as fixing\n"
8972
" Launchpad bug 12345. When you push that branch to Launchpad it will\n"
8973
" automatically be linked to the bug report."
8976
#: dummy/help_topics/launchpad/detail.txt:24
8977
msgid "For more information see http://help.launchpad.net/\n"
8980
#: dummy/help_topics/launchpad/summary.txt:1
8981
msgid "Using Bazaar with Launchpad.net"
8984
#: dummy/help_topics/location-alias/summary.txt:1
8985
msgid "Aliases for remembered locations"
8988
#: dummy/help_topics/log-formats/summary.txt:1
8989
msgid "Details on the logging formats available"
8992
#: dummy/help_topics/missing-extensions/summary.txt:1
8993
msgid "What to do when compiled extensions are missing"
8996
#: dummy/help_topics/other-formats/summary.txt:1
8997
msgid "Experimental and deprecated storage formats"
9000
#: dummy/help_topics/patterns/summary.txt:1
9001
msgid "Information on the pattern syntax"
9004
#: dummy/help_topics/repositories/detail.txt:1
9005
msgid "Repositories"
9008
#: dummy/help_topics/repositories/detail.txt:3
9010
"Repositories in Breezy are where committed information is stored. There is\n"
9011
"a repository associated with every branch."
9014
#: dummy/help_topics/repositories/detail.txt:6
9016
"Repositories are a form of database. Breezy will usually maintain this for\n"
9017
"good performance automatically, but in some situations (e.g. when doing\n"
9018
"very many commits in a short time period) you may want to ask brz to\n"
9019
"optimise the database indices. This can be done by the 'brz pack' command."
9022
#: dummy/help_topics/repositories/detail.txt:11
9024
"By default just running 'brz init' will create a repository within the new\n"
9025
"branch but it is possible to create a shared repository which allows "
9027
"branches to share their information in the same location. When a new branch "
9029
"created it will first look to see if there is a containing shared repository "
9034
#: dummy/help_topics/repositories/detail.txt:17
9036
"When two branches of the same project share a repository, there is\n"
9037
"generally a large space saving. For some operations (e.g. branching\n"
9038
"within the repository) this translates in to a large time saving."
9041
#: dummy/help_topics/repositories/detail.txt:21
9043
"To create a shared repository use the init-repository command (or the alias\n"
9044
"init-repo). This command takes the location of the repository to create. "
9046
"means that 'brz init-repository repo' will create a directory named 'repo',\n"
9047
"which contains a shared repository. Any new branches that are created in "
9049
"directory will then use it for storage."
9052
#: dummy/help_topics/repositories/detail.txt:27
9054
"It is a good idea to create a repository whenever you might create more\n"
9055
"than one branch of a project. This is true for both working areas where you\n"
9056
"are doing the development, and any server areas that you use for hosting\n"
9057
"projects. In the latter case, it is common to want branches without working\n"
9058
"trees. Since the files in the branch will not be edited directly there is "
9060
"need to use up disk space for a working tree. To create a repository in "
9062
"the branches will not have working trees pass the '--no-trees' option to\n"
9063
"'init-repository'."
9066
#: dummy/help_topics/repositories/detail.txt:38
9068
" init-repository Create a shared repository. Use --no-trees to create "
9070
" in which new branches won't get a working tree.\n"
9073
#: dummy/help_topics/repositories/summary.txt:1
9074
msgid "Basic information on shared repositories."
9077
#: dummy/help_topics/revisionspec/summary.txt:1
9078
msgid "Explain how to use --revision"
9081
#: dummy/help_topics/rules/summary.txt:1
9082
msgid "Information on defining rule-based preferences"
9085
#: dummy/help_topics/standalone-trees/detail.txt:1
9086
msgid "Standalone Trees"
9089
#: dummy/help_topics/standalone-trees/detail.txt:3
9091
"A standalone tree is a working tree with an associated repository. It\n"
9092
"is an independently usable branch, with no dependencies on any other.\n"
9093
"Creating a standalone tree (via brz init) is the quickest way to put\n"
9094
"an existing project under version control."
9097
#: dummy/help_topics/standalone-trees/detail.txt:8
9098
msgid "Related Commands::"
9101
#: dummy/help_topics/standalone-trees/detail.txt:10
9102
msgid " init Make a directory into a versioned branch.\n"
9105
#: dummy/help_topics/standalone-trees/summary.txt:1
9106
msgid "Information on what a standalone tree is"
9109
#: dummy/help_topics/standard-options/detail.txt:1
9110
msgid "Standard Options"
9113
#: dummy/help_topics/standard-options/detail.txt:3
9114
msgid "Standard options are legal for all commands."
9117
#: dummy/help_topics/standard-options/detail.txt:5
9119
"--help, -h Show help message.\n"
9120
"--verbose, -v Display more information.\n"
9121
"--quiet, -q Only display errors and warnings."
9124
#: dummy/help_topics/standard-options/detail.txt:9
9125
msgid "Unlike global options, standard options can be used in aliases.\n"
9128
#: dummy/help_topics/standard-options/summary.txt:1
9129
msgid "Options that can be used with any command"
9132
#: dummy/help_topics/status-flags/detail.txt:1
9133
msgid "Status Flags"
9136
#: dummy/help_topics/status-flags/detail.txt:3
9138
"Status flags are used to summarise changes to the working tree in a concise\n"
9139
"manner. They are in the form::"
9142
#: dummy/help_topics/status-flags/detail.txt:6
9143
msgid " xxx <filename>"
9146
#: dummy/help_topics/status-flags/detail.txt:8
9147
msgid "where the columns' meanings are as follows."
9150
#: dummy/help_topics/status-flags/detail.txt:10
9151
msgid "Column 1 - versioning/renames::"
9154
#: dummy/help_topics/status-flags/detail.txt:12
9156
" + File versioned\n"
9157
" - File unversioned\n"
9160
" X File nonexistent (and unknown to brz)\n"
9161
" C File has conflicts\n"
9162
" P Entry for a pending merge (not a file)"
9165
#: dummy/help_topics/status-flags/detail.txt:20
9166
msgid "Column 2 - contents::"
9169
#: dummy/help_topics/status-flags/detail.txt:22
9173
" K File kind changed\n"
9177
#: dummy/help_topics/status-flags/detail.txt:27
9178
msgid "Column 3 - execute::"
9181
#: dummy/help_topics/status-flags/detail.txt:29
9182
msgid " * The execute bit was changed\n"
9185
#: dummy/help_topics/status-flags/summary.txt:1
9186
msgid "Help on status flags"
9189
#: dummy/help_topics/sync-for-reconfigure/detail.txt:1
9190
msgid "Branches Out of Sync"
9193
#: dummy/help_topics/sync-for-reconfigure/detail.txt:3
9195
"When reconfiguring a checkout, tree or branch into a lightweight checkout,\n"
9196
"a local branch must be destroyed. (For checkouts, this is the local branch\n"
9197
"that serves primarily as a cache.) If the branch-to-be-destroyed does not\n"
9198
"have the same last revision as the new reference branch for the lightweight\n"
9199
"checkout, data could be lost, so Breezy refuses."
9202
#: dummy/help_topics/sync-for-reconfigure/detail.txt:9
9203
msgid "How you deal with this depends on *why* the branches are out of sync."
9206
#: dummy/help_topics/sync-for-reconfigure/detail.txt:11
9208
"If you have a checkout and have done local commits, you can get back in "
9210
"by running \"brz update\" (and possibly \"brz commit\")."
9213
#: dummy/help_topics/sync-for-reconfigure/detail.txt:14
9215
"If you have a branch and the remote branch is out-of-date, you can push\n"
9216
"the local changes using \"brz push\". If the local branch is out of date, "
9218
"can do \"brz pull\". If both branches have had changes, you can merge, "
9220
"and then push your changes. If you decide that some of the changes aren't\n"
9221
"useful, you can \"push --overwrite\" or \"pull --overwrite\" instead.\n"
9224
#: dummy/help_topics/sync-for-reconfigure/summary.txt:1
9225
msgid "Steps to resolve \"out-of-sync\" when reconfiguring"
9228
#: dummy/help_topics/topics/summary.txt:1
9232
#: dummy/help_topics/url-special-chars/summary.txt:1
9233
msgid "Special character handling in URLs"
9236
#: dummy/help_topics/urlspec/summary.txt:1
9237
msgid "Supported transport protocols"
9240
#: dummy/help_topics/working-trees/detail.txt:1
9241
msgid "Working Trees"
9244
#: dummy/help_topics/working-trees/detail.txt:3
9246
"A working tree is the contents of a branch placed on disk so that you can\n"
9247
"see the files and edit them. The working tree is where you make changes to "
9249
"branch, and when you commit the current state of the working tree is the\n"
9250
"snapshot that is recorded in the commit."
9253
#: dummy/help_topics/working-trees/detail.txt:8
9255
"When you push a branch to a remote system, a working tree will not be\n"
9256
"created. If one is already present the files will not be updated. The\n"
9257
"branch information will be updated and the working tree will be marked\n"
9258
"as out-of-date. Updating a working tree remotely is difficult, as there\n"
9259
"may be uncommitted changes or the update may cause content conflicts that "
9261
"difficult to deal with remotely."
9264
#: dummy/help_topics/working-trees/detail.txt:15
9266
"If you have a branch with no working tree you can use the 'checkout' "
9268
"to create a working tree. If you run 'brz checkout .' from the branch it "
9270
"create the working tree. If the branch is updated remotely, you can update "
9272
"working tree by running 'brz update' in that directory."
9275
#: dummy/help_topics/working-trees/detail.txt:20
9277
"If you have a branch with a working tree that you do not want the 'remove-"
9279
"command will remove the tree if it is safe. This can be done to avoid the\n"
9280
"warning about the remote working tree not being updated when pushing to the\n"
9281
"branch. It can also be useful when working with a '--no-trees' repository\n"
9282
"(see 'brz help repositories')."
9285
#: dummy/help_topics/working-trees/detail.txt:26
9287
"If you want to have a working tree on a remote machine that you push to you\n"
9288
"can either run 'brz update' in the remote branch after each push, or use "
9290
"other method to update the tree during the push. There is an 'rspush' "
9292
"that will update the working tree using rsync as well as doing a push. "
9294
"is also a 'push-and-update' plugin that automates running 'brz update' via "
9299
#: dummy/help_topics/working-trees/detail.txt:33
9300
msgid "Useful commands::"
9303
#: dummy/help_topics/working-trees/detail.txt:35
9305
" checkout Create a working tree when a branch does not have one.\n"
9306
" remove-tree Removes the working tree from a branch when it is safe to do "
9308
" update When a working tree is out of sync with its associated "
9310
" this will update the tree to match the branch.\n"
9313
#: dummy/help_topics/working-trees/summary.txt:1
9314
msgid "Information on working trees"
9317
#: en/help_topics/authentication.txt:1
9319
"Authentication Settings\n"
9320
"======================="
9323
#: en/help_topics/authentication.txt:4
9330
#: en/help_topics/authentication.txt:8
9332
"Many different authentication policies can be described in the\n"
9333
"``authentication.conf`` file but a particular user should need only a few\n"
9334
"definitions to cover his needs without having to specify a user and a "
9336
"for every branch he uses."
9339
#: en/help_topics/authentication.txt:13
9341
"The definitions found in this file are used to find the credentials to use "
9343
"a given url. The same credentials can generally be used for as many branches "
9345
"possible by grouping their declaration around the remote servers that need\n"
9346
"them. It's even possible to declare credentials that will be used by "
9351
#: en/help_topics/authentication.txt:19
9353
"The intent is to make this file as small as possible to minimize maintenance."
9356
#: en/help_topics/authentication.txt:21
9358
"Once the relevant credentials are declared in this file you may use branch "
9360
"without embedding passwords (security hazard) or even users (enabling "
9362
"of your urls with others)."
9365
#: en/help_topics/authentication.txt:25
9366
msgid "Instead of using::"
9369
#: en/help_topics/authentication.txt:27
9370
msgid " brz branch sftp://joe:secret@host.com/path/to/my/branch"
9373
#: en/help_topics/authentication.txt:29
9374
msgid "you simply use::"
9377
#: en/help_topics/authentication.txt:31
9378
msgid " brz branch sftp://host.com/path/to/my/branch"
9381
#: en/help_topics/authentication.txt:33
9382
msgid "provided you have created the following ``authentication.conf`` file::"
9385
#: en/help_topics/authentication.txt:35
9391
" password=secret\n"
9395
#: en/help_topics/authentication.txt:42
9397
"Authentication definitions\n"
9398
"--------------------------"
9401
#: en/help_topics/authentication.txt:45
9403
"There are two kinds of authentication used by the various schemes supported "
9408
#: en/help_topics/authentication.txt:48
9409
msgid "1. user and password"
9412
#: en/help_topics/authentication.txt:50
9414
"``FTP`` needs a (``user``, ``password``) to authenticate against a ``host``\n"
9415
"``SFTP`` can use either a password or a host key to authenticate. However,\n"
9416
"ssh agents are a better, more secure solution. So we have chosen to not "
9418
"our own less secure method."
9421
#: en/help_topics/authentication.txt:55
9422
msgid "2. user, realm and password"
9425
#: en/help_topics/authentication.txt:57
9427
"``HTTP`` and ``HTTPS`` needs a (``user, realm, password``) to authenticate\n"
9428
"against a host. But, by using ``.htaccess`` files, for example, it is "
9430
"to define several (``user, realm, password``) for a given ``host``. So what "
9432
"really needed is (``user``, ``password``, ``host``, ``path``). The ``realm`` "
9434
"not taken into account in the definitions, but will displayed if brz "
9436
"you for a password."
9439
#: en/help_topics/authentication.txt:64
9441
"``HTTP proxy`` can be handled as ``HTTP`` (or ``HTTPS``) by explicitly\n"
9442
"specifying the appropriate port."
9445
#: en/help_topics/authentication.txt:67
9447
"To take all schemes into account, the password will be deduced from a set "
9449
"authentication definitions (``scheme``, ``host``, ``port``, ``path``, "
9454
#: en/help_topics/authentication.txt:71
9456
" * ``scheme``: can be empty (meaning the rest of the definition can be "
9458
" for any scheme), ``SFTP`` and ``bzr+ssh`` should not be used here, "
9460
" should be used instead since this is the real scheme regarding\n"
9464
#: en/help_topics/authentication.txt:76
9465
msgid " * ``host``: can be empty (to act as a default for any host),"
9468
#: en/help_topics/authentication.txt:78
9470
" * ``port`` can be empty (useful when an host provides several servers for "
9472
" same scheme), only numerical values are allowed, this should be used "
9474
" when the server uses a port different than the scheme standard port,"
9477
#: en/help_topics/authentication.txt:82
9478
msgid " * ``path``: can be empty (FTP or SFTP will never user it),"
9481
#: en/help_topics/authentication.txt:84
9483
" * ``user``: can be empty (``bzr`` will default to python's\n"
9484
" ``getpass.get_user()``),"
9487
#: en/help_topics/authentication.txt:87
9489
" * ``password``: can be empty if you prefer to always be prompted for your\n"
9493
#: en/help_topics/authentication.txt:90
9495
"Multiple definitions can be provided and, for a given URL, brz will select "
9497
"(``user`` [, ``password``]) based on the following rules :"
9500
#: en/help_topics/authentication.txt:93
9501
msgid " 1. the first match wins,"
9504
#: en/help_topics/authentication.txt:95
9505
msgid " 2. empty fields match everything,"
9508
#: en/help_topics/authentication.txt:97
9510
" 3. ``scheme`` matches even if decorators are used in the requested URL,"
9513
#: en/help_topics/authentication.txt:99
9515
" 4. ``host`` matches exactly or act as a domain if it starts with '.'\n"
9516
" (``project.bzr.sf.net`` will match ``.bzr.sf.net`` but ``projectbzr.sf."
9518
" will not match ``bzr.sf.net``)."
9521
#: en/help_topics/authentication.txt:103
9523
" 5. ``port`` matches if included in the requested URL (exact matches only)"
9526
#: en/help_topics/authentication.txt:105
9528
" 6. ``path`` matches if included in the requested URL (and by rule #2 "
9530
" empty paths will match any provided path)."
9533
#: en/help_topics/authentication.txt:110
9539
#: en/help_topics/authentication.txt:113
9541
"The general rules for :doc:`configuration files <configuration-help>`\n"
9542
"apply except for the variable policies."
9545
#: en/help_topics/authentication.txt:116
9546
msgid "Each section describes an authentication definition."
9549
#: en/help_topics/authentication.txt:118
9551
"The section name is an arbitrary string, only the ``DEFAULT`` value is "
9553
"and should appear as the *last* section."
9556
#: en/help_topics/authentication.txt:121
9557
msgid "Each section should define:"
9560
#: en/help_topics/authentication.txt:123
9561
msgid "* ``user``: the login to be used,"
9564
#: en/help_topics/authentication.txt:125
9565
msgid "Each section could define:"
9568
#: en/help_topics/authentication.txt:127
9569
msgid "* ``host``: the remote server,"
9572
#: en/help_topics/authentication.txt:129
9573
msgid "* ``port``: the port the server is listening,"
9576
#: en/help_topics/authentication.txt:131
9577
msgid "* ``path``: the branch location,"
9580
#: en/help_topics/authentication.txt:133
9581
msgid "* ``password``: the password."
9584
#: en/help_topics/authentication.txt:135
9591
#: en/help_topics/authentication.txt:139
9594
"Personal projects hosted outside\n"
9595
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
9598
#: en/help_topics/authentication.txt:143
9600
"All connections are done with the same ``user`` (the remote one for which "
9602
"default brz one is not appropriate) and the password is always prompted "
9607
#: en/help_topics/authentication.txt:147
9609
" # Pet projects on hobby.net\n"
9611
" host=r.hobby.net\n"
9613
" password=obvious1234\n"
9620
" password=1essobV10us\n"
9623
" # Our local user is barbaz, on all remote sites we're known as "
9628
#: en/help_topics/authentication.txt:164
9631
"Source hosting provider\n"
9632
"~~~~~~~~~~~~~~~~~~~~~~~"
9635
#: en/help_topics/authentication.txt:168
9636
msgid "In the shp.net (fictitious) domain, each project has its own site::"
9639
#: en/help_topics/authentication.txt:170
9641
" [shpnet domain]\n"
9642
" # we use sftp, but ssh is the scheme used for authentication\n"
9644
" # The leading '.' ensures that 'shp.net' alone doesn't match\n"
9647
" # brz doesn't support supplying a password for sftp,\n"
9648
" # consider using an ssh agent if you don't want to supply\n"
9649
" # a password interactively. (pageant, ssh-agent, etc)"
9652
#: en/help_topics/authentication.txt:180
9654
"HTTPS, SFTP servers and their proxy\n"
9655
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
9658
#: en/help_topics/authentication.txt:183
9660
"At company.com, the server hosting release and integration branches is "
9662
"proxy, and the two branches use different authentication policies::"
9665
#: en/help_topics/authentication.txt:186
9667
" [reference code]\n"
9669
" host=dev.company.com\n"
9675
#: en/help_topics/authentication.txt:193
9677
" # development branches on dev server\n"
9679
" scheme=ssh # bzr+ssh and sftp are available here\n"
9680
" host=dev.company.com\n"
9681
" path=/dev/integration\n"
9687
" host=proxy.company.com\n"
9689
" user=proxyuser1\n"
9690
" password=proxypass1"
9693
#: en/help_topics/authentication.txt:208
9696
"Planned enhancements\n"
9697
"--------------------"
9700
#: en/help_topics/authentication.txt:212
9702
"The following are not yet implemented but planned as parts of a work in\n"
9706
#: en/help_topics/authentication.txt:215
9707
msgid "* add a ``password_encoding`` field allowing:"
9710
#: en/help_topics/authentication.txt:217
9712
" - storing the passwords in various obfuscating encodings (base64 for one),"
9715
#: en/help_topics/authentication.txt:219
9716
msgid " - delegate password storage to plugins (.netrc for example)."
9719
#: en/help_topics/authentication.txt:221
9721
"* update the credentials when the user is prompted for user or password,"
9724
#: en/help_topics/authentication.txt:223
9725
msgid "* add a ``verify_certificates`` field for ``HTTPS``."
9728
#: en/help_topics/authentication.txt:225
9730
"The ``password_encoding`` and ``verify_certificates`` fields are recognized "
9732
"ignored in the actual implementation.\n"
9735
#: en/help_topics/bugs.txt:1
9736
msgid "Bug Tracker Settings"
9739
#: en/help_topics/bugs.txt:3
9741
"When making a commit, metadata about bugs fixed by that change can be\n"
9742
"recorded by using the ``--fixes`` option. For each bug marked as fixed, an\n"
9743
"entry is included in the 'bugs' revision property stating '<url> <status>'.\n"
9744
"(The only ``status`` value currently supported is ``fixed.``)"
9747
#: en/help_topics/bugs.txt:8
9749
"The ``--fixes`` option allows you to specify a bug tracker and a bug "
9751
"rather than a full URL. This looks like::"
9754
#: en/help_topics/bugs.txt:11
9755
msgid " bzr commit --fixes <tracker>:<id>"
9758
#: en/help_topics/bugs.txt:13 en/help_topics/configuration.txt:410
9762
#: en/help_topics/bugs.txt:15
9763
msgid " bzr commit --fixes <id>"
9766
#: en/help_topics/bugs.txt:17
9768
"where \"<tracker>\" is an identifier for the bug tracker, and \"<id>\" is "
9770
"identifier for that bug within the bugtracker, usually the bug number.\n"
9771
"If \"<tracker>\" is not specified the ``bugtracker`` set in the branch\n"
9772
"or global configuration is used."
9775
#: en/help_topics/bugs.txt:22
9777
"Bazaar knows about a few bug trackers that have many users. If\n"
9778
"you use one of these bug trackers then there is no setup required to\n"
9779
"use this feature, you just need to know the tracker identifier to use.\n"
9780
"These are the bugtrackers that are built in:"
9783
#: en/help_topics/bugs.txt:27
9785
" ============================ ============ ============\n"
9786
" URL Abbreviation Example\n"
9787
" ============================ ============ ============\n"
9788
" https://bugs.launchpad.net/ lp lp:12345\n"
9789
" http://bugs.debian.org/ deb deb:12345\n"
9790
" http://bugzilla.gnome.org/ gnome gnome:12345\n"
9791
" ============================ ============ ============"
9794
#: en/help_topics/bugs.txt:35
9796
"For the bug trackers not listed above configuration is required.\n"
9797
"Support for generating the URLs for any project using Bugzilla or Trac\n"
9798
"is built in, along with a template mechanism for other bugtrackers with\n"
9799
"simple URL schemes. If your bug tracker can't be described by one\n"
9800
"of the schemes described below then you can write a plugin to support\n"
9804
#: en/help_topics/bugs.txt:42
9806
"If you use Bugzilla or Trac, then you only need to set a configuration\n"
9807
"variable which contains the base URL of the bug tracker. These options\n"
9808
"can go into ``breezy.conf``, ``branch.conf`` or into a branch-specific\n"
9809
"configuration section in ``locations.conf``. You can set up these values\n"
9810
"for each of the projects you work on."
9813
#: en/help_topics/bugs.txt:48
9815
"Note: As you provide a short name for each tracker, you can specify one or\n"
9816
"more bugs in one or more trackers at commit time if you wish."
9819
#: en/help_topics/bugs.txt:51
9825
#: en/help_topics/bugs.txt:54
9826
msgid "Use ``bzr commit --fixes lp:2`` to record that this commit fixes bug 2."
9829
#: en/help_topics/bugs.txt:56
9831
"bugzilla_<tracker>_url\n"
9832
"----------------------"
9835
#: en/help_topics/bugs.txt:59
9837
"If present, the location of the Bugzilla bug tracker referred to by\n"
9838
"<tracker>. This option can then be used together with ``bzr commit\n"
9839
"--fixes`` to mark bugs in that tracker as being fixed by that commit. For\n"
9843
#: en/help_topics/bugs.txt:64
9844
msgid " bugzilla_squid_url = http://bugs.squid-cache.org"
9847
#: en/help_topics/bugs.txt:66
9849
"would allow ``bzr commit --fixes squid:1234`` to mark Squid's bug 1234 as\n"
9853
#: en/help_topics/bugs.txt:69
9855
"trac_<tracker>_url\n"
9856
"------------------"
9859
#: en/help_topics/bugs.txt:72
9861
"If present, the location of the Trac instance referred to by\n"
9862
"<tracker>. This option can then be used together with ``bzr commit\n"
9863
"--fixes`` to mark bugs in that tracker as being fixed by that commit. For\n"
9867
#: en/help_topics/bugs.txt:77
9868
msgid " trac_twisted_url = http://www.twistedmatrix.com/trac"
9871
#: en/help_topics/bugs.txt:79
9873
"would allow ``bzr commit --fixes twisted:1234`` to mark Twisted's bug 1234 "
9878
#: en/help_topics/bugs.txt:82
9880
"bugtracker_<tracker>_url\n"
9881
"------------------------"
9884
#: en/help_topics/bugs.txt:85
9886
"If present, the location of a generic bug tracker instance referred to by\n"
9887
"<tracker>. The location must contain an ``{id}`` placeholder,\n"
9888
"which will be replaced by a specific bug ID. This option can then be used\n"
9889
"together with ``bzr commit --fixes`` to mark bugs in that tracker as being\n"
9890
"fixed by that commit. For example::"
9893
#: en/help_topics/bugs.txt:91
9894
msgid " bugtracker_python_url = http://bugs.python.org/issue{id}"
9897
#: en/help_topics/bugs.txt:93
9899
"would allow ``bzr commit --fixes python:1234`` to mark bug 1234 in Python's\n"
9900
"Roundup bug tracker as fixed, or::"
9903
#: en/help_topics/bugs.txt:96
9905
" bugtracker_cpan_url = http://rt.cpan.org/Public/Bug/Display.html?id={id}"
9908
#: en/help_topics/bugs.txt:98
9910
"would allow ``bzr commit --fixes cpan:1234`` to mark bug 1234 in CPAN's\n"
9911
"RT bug tracker as fixed, or::"
9914
#: en/help_topics/bugs.txt:101
9915
msgid " bugtracker_hudson_url = http://issues.hudson-ci.org/browse/{id}"
9918
#: en/help_topics/bugs.txt:103
9920
"would allow ``bzr commit --fixes hudson:HUDSON-1234`` to mark bug "
9922
"in Hudson's JIRA bug tracker as fixed.\n"
9925
#: en/help_topics/configuration.txt:1
9927
"Configuration Settings\n"
9928
"======================="
9931
#: en/help_topics/configuration.txt:4
9933
"Environment settings\n"
9934
"---------------------"
9937
#: en/help_topics/configuration.txt:7
9939
"While most configuration is handled by configuration files, some options\n"
9940
"which may be semi-permanent can also be controlled through the environment."
9943
#: en/help_topics/configuration.txt:10
9949
#: en/help_topics/configuration.txt:13
9950
msgid "Override the email id used by Breezy. Typical format::"
9953
#: en/help_topics/configuration.txt:15
9954
msgid " \"John Doe <jdoe@example.com>\""
9957
#: en/help_topics/configuration.txt:17
9958
msgid "See also the ``email`` configuration option."
9961
#: en/help_topics/configuration.txt:19
9963
"BRZ_PROGRESS_BAR\n"
9967
#: en/help_topics/configuration.txt:22
9969
"Override the progress display. Possible values are \"none\" or \"text\". "
9971
"the value is \"none\" then no progress bar is displayed. The value \"text\" "
9973
"the ordinary command line progress bar."
9976
#: en/help_topics/configuration.txt:26
9982
#: en/help_topics/configuration.txt:29
9983
msgid "Control whether SIGQUIT behaves normally or invokes a breakin debugger."
9986
#: en/help_topics/configuration.txt:31
9988
"* 0 = Standard SIGQUIT behavior (normally, exit with a core dump)\n"
9989
"* 1 = Invoke breakin debugger (default)"
9992
#: en/help_topics/configuration.txt:34
9998
#: en/help_topics/configuration.txt:37
9999
msgid "Override the home directory used by Breezy."
10002
#: en/help_topics/configuration.txt:39
10008
#: en/help_topics/configuration.txt:42
10009
msgid "Select a different SSH implementation."
10012
#: en/help_topics/configuration.txt:44
10018
#: en/help_topics/configuration.txt:47
10019
msgid "Control whether to launch a debugger on error."
10022
#: en/help_topics/configuration.txt:49
10024
"* 0 = Standard behavior\n"
10025
"* 1 = Launch debugger"
10028
#: en/help_topics/configuration.txt:52
10030
"BZR_REMOTE_PATH\n"
10034
#: en/help_topics/configuration.txt:55
10036
"Path to the Bazaar or Breezy executable to use when using the bzr+ssh "
10040
#: en/help_topics/configuration.txt:57
10041
msgid "See also the ``bzr_remote_path`` configuration option."
10044
#: en/help_topics/configuration.txt:59
10050
#: en/help_topics/configuration.txt:62
10051
msgid "Path to the editor Breezy should use for commit messages, etc."
10054
#: en/help_topics/configuration.txt:64
10060
#: en/help_topics/configuration.txt:67
10062
"Location of the Breezy log file. You can check the current location by\n"
10063
"running ``bzr version``."
10066
#: en/help_topics/configuration.txt:70
10068
"The log file contains debug information that is useful for diagnosing or\n"
10069
"reporting problems with Breezy."
10072
#: en/help_topics/configuration.txt:73
10074
"Setting this to ``NUL`` on Windows or ``/dev/null`` on other platforms\n"
10075
"will disable logging."
10078
#: en/help_topics/configuration.txt:76
10081
"BRZ_PLUGIN_PATH\n"
10085
#: en/help_topics/configuration.txt:80
10087
"The path to the plugins directory that Breezy should use.\n"
10088
"If not set, Breezy will search for plugins in:"
10091
#: en/help_topics/configuration.txt:83
10092
msgid "* the user specific plugin directory (containing the ``user`` plugins),"
10095
#: en/help_topics/configuration.txt:85
10096
msgid "* the breezy directory (containing the ``core`` plugins),"
10099
#: en/help_topics/configuration.txt:87
10101
"* the site specific plugin directory if applicable (containing\n"
10102
" the ``site`` plugins)."
10105
#: en/help_topics/configuration.txt:90
10107
"If ``BZR_PLUGIN_PATH`` is set in any fashion, it will change the\n"
10108
"the way the plugin are searched. "
10111
#: en/help_topics/configuration.txt:93
10113
"As for the ``PATH`` variables, if multiple directories are\n"
10114
"specified in ``BZR_PLUGIN_PATH`` they should be separated by the\n"
10115
"platform specific appropriate character (':' on Unix,\n"
10119
#: en/help_topics/configuration.txt:98
10121
"By default if ``BZR_PLUGIN_PATH`` is set, it replaces searching\n"
10122
"in ``user``. However it will continue to search in ``core`` and\n"
10123
"``site`` unless they are explicitly removed."
10126
#: en/help_topics/configuration.txt:102
10128
"If you need to change the order or remove one of these\n"
10129
"directories, you should use special values:"
10132
#: en/help_topics/configuration.txt:105
10134
"* ``-user``, ``-core``, ``-site`` will remove the corresponding\n"
10135
" path from the default values,"
10138
#: en/help_topics/configuration.txt:108
10140
"* ``+user``, ``+core``, ``+site`` will add the corresponding path\n"
10141
" before the remaining default values (and also remove it from\n"
10142
" the default values)."
10145
#: en/help_topics/configuration.txt:112
10147
"Note that the special values 'user', 'core' and 'site' should be\n"
10148
"used literally, they will be substituted by the corresponding,\n"
10149
"platform specific, values."
10152
#: en/help_topics/configuration.txt:116
10154
"The examples below use ':' as the separator, windows users\n"
10158
#: en/help_topics/configuration.txt:119
10159
msgid "Overriding the default user plugin directory::"
10162
#: en/help_topics/configuration.txt:121
10163
msgid " BZR_PLUGIN_PATH='/path/to/my/other/plugins'"
10166
#: en/help_topics/configuration.txt:123
10167
msgid "Disabling the site directory while retaining the user directory::"
10170
#: en/help_topics/configuration.txt:125
10171
msgid " BZR_PLUGIN_PATH='-site:+user'"
10174
#: en/help_topics/configuration.txt:127
10175
msgid "Disabling all plugins (better achieved with --no-plugins)::"
10178
#: en/help_topics/configuration.txt:129
10179
msgid " BZR_PLUGIN_PATH='-user:-core:-site'"
10182
#: en/help_topics/configuration.txt:131
10183
msgid "Overriding the default site plugin directory::"
10186
#: en/help_topics/configuration.txt:133
10187
msgid " BZR_PLUGIN_PATH='/path/to/my/site/plugins:-site':+user"
10190
#: en/help_topics/configuration.txt:135
10192
"BRZ_DISABLE_PLUGINS\n"
10193
"~~~~~~~~~~~~~~~~~~~"
10196
#: en/help_topics/configuration.txt:138
10198
"Under special circumstances (mostly when trying to diagnose a\n"
10199
"bug), it's better to disable a plugin (or several) rather than\n"
10200
"uninstalling them completely. Such plugins can be specified in\n"
10201
"the ``BZR_DISABLE_PLUGINS`` environment variable."
10204
#: en/help_topics/configuration.txt:143
10206
"In that case, ``bzr`` will stop loading the specified plugins and\n"
10207
"will raise an import error if they are explicitly imported (by\n"
10208
"another plugin that depends on them for example)."
10211
#: en/help_topics/configuration.txt:147
10212
msgid "Disabling ``myplugin`` and ``yourplugin`` is achieved by::"
10215
#: en/help_topics/configuration.txt:149
10216
msgid " BZR_DISABLE_PLUGINS='myplugin:yourplugin'"
10219
#: en/help_topics/configuration.txt:151
10225
#: en/help_topics/configuration.txt:154
10227
"When adding a new feature or working on a bug in a plugin,\n"
10228
"developers often need to use a specific version of a given\n"
10229
"plugin. Since python requires that the directory containing the\n"
10230
"code is named like the plugin itself this make it impossible to\n"
10231
"use arbitrary directory names (using a two-level directory scheme\n"
10232
"is inconvenient). ``BZR_PLUGINS_AT`` allows such directories even\n"
10233
"if they don't appear in ``BZR_PLUGIN_PATH`` ."
10236
#: en/help_topics/configuration.txt:162
10238
"Plugins specified in this environment variable takes precedence\n"
10239
"over the ones in ``BZR_PLUGIN_PATH``."
10242
#: en/help_topics/configuration.txt:165
10244
"The variable specified a list of ``plugin_name@plugin path``,\n"
10245
"``plugin_name`` being the name of the plugin as it appears in\n"
10246
"python module paths, ``plugin_path`` being the path to the\n"
10247
"directory containing the plugin code itself\n"
10248
"(i.e. ``plugins/myplugin`` not ``plugins``). Use ':' as the list\n"
10249
"separator, use ';' on windows."
10252
#: en/help_topics/configuration.txt:172
10258
#: en/help_topics/configuration.txt:175
10260
"Using a specific version of ``myplugin``:\n"
10261
"``BZR_PLUGINS_AT='myplugin@/home/me/bugfixes/123456-myplugin``"
10264
#: en/help_topics/configuration.txt:178
10270
#: en/help_topics/configuration.txt:181
10271
msgid "The path where Breezy should look for shell plugin external commands."
10274
#: en/help_topics/configuration.txt:183
10277
"http_proxy, https_proxy\n"
10278
"~~~~~~~~~~~~~~~~~~~~~~~"
10281
#: en/help_topics/configuration.txt:187
10282
msgid "Specifies the network proxy for outgoing connections, for example::"
10285
#: en/help_topics/configuration.txt:189
10287
" http_proxy=http://proxy.example.com:3128/ \n"
10288
" https_proxy=http://proxy.example.com:3128/"
10291
#: en/help_topics/configuration.txt:192
10294
"Configuration files\n"
10295
"-------------------"
10298
#: en/help_topics/configuration.txt:196
10304
#: en/help_topics/configuration.txt:199
10306
"Configuration files are located in ``$HOME/.bazaar`` on Unix and\n"
10307
"``C:\\Documents and Settings\\<username>\\Application Data\\Breezy\\2.0`` "
10309
"Windows. (You can check the location for your system by using\n"
10310
"``bzr version``.)"
10313
#: en/help_topics/configuration.txt:204
10314
msgid "There are three primary configuration files in this location:"
10317
#: en/help_topics/configuration.txt:206
10318
msgid "* ``breezy.conf`` describes default configuration options,"
10321
#: en/help_topics/configuration.txt:208
10323
"* ``locations.conf`` describes configuration information for\n"
10324
" specific branch locations,"
10327
#: en/help_topics/configuration.txt:211
10329
"* ``authentication.conf`` describes credential information for\n"
10333
#: en/help_topics/configuration.txt:214
10335
"Each branch can also contain a configuration file that sets values specific\n"
10336
"to that branch. This file is found at ``.bzr/branch/branch.conf`` within "
10338
"branch. This file is visible to all users of a branch, if you wish to "
10340
"one of the values for a branch with a setting that is specific to you then "
10342
"can do so in ``locations.conf``."
10345
#: en/help_topics/configuration.txt:220
10351
#: en/help_topics/configuration.txt:223
10353
"An ini file has three types of contructs: section headers, section\n"
10354
"options and comments."
10357
#: en/help_topics/configuration.txt:226
10363
#: en/help_topics/configuration.txt:229
10365
"A comment is any line that starts with a \"#\" (sometimes called a \"hash\n"
10366
"mark\", \"pound sign\" or \"number sign\"). Comment lines are ignored by\n"
10367
"Breezy when parsing ini files."
10370
#: en/help_topics/configuration.txt:233
10372
"Section headers\n"
10376
#: en/help_topics/configuration.txt:236
10378
"A section header is a word enclosed in brackets that starts at the begining\n"
10379
"of a line. A typical section header looks like this::"
10382
#: en/help_topics/configuration.txt:239
10386
#: en/help_topics/configuration.txt:241
10388
"The only valid section headers for breezy.conf currently are [DEFAULT] and\n"
10389
"[ALIASES]. Section headers are case sensitive. The default section provides "
10391
"setting options which can be overridden with the branch config file."
10394
#: en/help_topics/configuration.txt:245
10396
"For ``locations.conf``, the options from the section with the\n"
10397
"longest matching section header are used to the exclusion of other\n"
10398
"potentially valid section headers. A section header uses the path for\n"
10399
"the branch as the section header. Some examples include::"
10402
#: en/help_topics/configuration.txt:250
10404
" [http://mybranches.isp.com/~jdoe/branchdir]\n"
10405
" [/home/jdoe/branches/]"
10408
#: en/help_topics/configuration.txt:253
10411
"Section options\n"
10415
#: en/help_topics/configuration.txt:257
10417
"A section option resides within a section. A section option contains an\n"
10418
"option name, an equals sign and a value. For example::"
10421
#: en/help_topics/configuration.txt:260
10423
" email = John Doe <jdoe@isp.com>\n"
10424
" gpg_signing_key = Amy Pond <amy@example.com>"
10427
#: en/help_topics/configuration.txt:263
10429
"A option can reference other options by enclosing them in curly brackets::"
10432
#: en/help_topics/configuration.txt:265
10434
" my_branch_name = feature_x\n"
10435
" my_server = bzr+ssh://example.com\n"
10436
" push_location = {my_server}/project/{my_branch_name}"
10439
#: en/help_topics/configuration.txt:269
10441
"Option policies\n"
10445
#: en/help_topics/configuration.txt:272
10447
"Options defined in a section affect the named directory or URL plus\n"
10448
"any locations they contain. Policies can be used to change how an\n"
10449
"option value is interpreted for contained locations. Currently\n"
10450
"there are three policies available:"
10453
#: en/help_topics/configuration.txt:277
10456
" the value is interpreted the same for contained locations. This is\n"
10457
" the default behaviour.\n"
10459
" the value is only used for the exact location specified by the\n"
10462
" for contained locations, any additional path components are\n"
10463
" appended to the value."
10466
#: en/help_topics/configuration.txt:287
10468
"Policies are specified by keys with names of the form \"<option_name>:policy"
10470
"For example, to define the push location for a tree of branches, the\n"
10471
"following could be used::"
10474
#: en/help_topics/configuration.txt:291
10476
" [/top/location]\n"
10477
" push_location = sftp://example.com/location\n"
10478
" push_location:policy = appendpath"
10481
#: en/help_topics/configuration.txt:295
10483
"With this configuration, the push location for ``/top/location/branch1``\n"
10484
"would be ``sftp://example.com/location/branch1``."
10487
#: en/help_topics/configuration.txt:298
10489
"Section local options\n"
10490
"^^^^^^^^^^^^^^^^^^^^^"
10493
#: en/help_topics/configuration.txt:301
10495
"Some options are defined automatically inside a given section and can be\n"
10496
"refered to in this section only. "
10499
#: en/help_topics/configuration.txt:304
10500
msgid "For example, the ``appendpath`` policy can be used like this::"
10503
#: en/help_topics/configuration.txt:306
10505
" [/home/vila/src/bzr/bugs]\n"
10506
" mypush = lp:~vila/bzr\n"
10507
" mypush:policy=appendpath"
10510
#: en/help_topics/configuration.txt:310
10511
msgid "Using ``relpath`` to achieve the same result is done like this::"
10514
#: en/help_topics/configuration.txt:312
10516
" [/home/vila/src/bzr/bugs]\n"
10517
" mypush = lp:~vila/bzr/{relpath}"
10520
#: en/help_topics/configuration.txt:315
10522
"In both cases, when used in a directory like\n"
10523
"``/home/vila/src/bzr/bugs/832013-expand-in-stack`` we'll get::"
10526
#: en/help_topics/configuration.txt:318 en/help_topics/configuration.txt:329
10528
" $ bzr config mypush\n"
10529
" lp:~vila/bzr/832013-expand-in-stack"
10532
#: en/help_topics/configuration.txt:321
10533
msgid "Another such option is ``basename`` which can be used like this::"
10536
#: en/help_topics/configuration.txt:323
10538
" [/home/vila/src/bzr]\n"
10539
" mypush = lp:~vila/bzr/{basename}"
10542
#: en/help_topics/configuration.txt:326
10544
"When used in a directory like\n"
10545
"``/home/vila/src/bzr/bugs/832013-expand-in-stack`` we'll get::"
10548
#: en/help_topics/configuration.txt:332
10550
"Note that ``basename`` here refers to the base name of ``relpath`` which\n"
10551
"itself is defined as the relative path between the section name and the\n"
10552
"location it matches."
10555
#: en/help_topics/configuration.txt:336
10557
"Another such option is ``branchname``, which refers to the name of a "
10559
"branch. For non-colocated branches, it behaves like basename. It can be "
10564
#: en/help_topics/configuration.txt:340
10566
" [/home/vila/src/bzr/bugs]\n"
10567
" mypush = lp:~vila/bzr/{branchname}"
10570
#: en/help_topics/configuration.txt:343
10572
"When used with a colocated branch named ``832013-expand-in-stack``, we'll "
10576
#: en/help_topics/configuration.txt:345
10578
" bzr config mypush\n"
10579
" lp:~vila/bzr/832013-expand-in-stack"
10582
#: en/help_topics/configuration.txt:348
10584
"When an option is local to a Section, it cannot be referred to from option\n"
10585
"values in any other section from the same ``Store`` nor from any other\n"
10589
#: en/help_topics/configuration.txt:352
10592
"The main configuration file, breezy.conf\n"
10593
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
10596
#: en/help_topics/configuration.txt:356
10598
"``breezy.conf`` allows two sections: ``[DEFAULT]`` and ``[ALIASES]``.\n"
10599
"The default section contains the default\n"
10600
"configuration options for all branches. The default section can be\n"
10601
"overriden by providing a branch-specific section in ``locations.conf``."
10604
#: en/help_topics/configuration.txt:361
10605
msgid "A typical ``breezy.conf`` section often looks like the following::"
10608
#: en/help_topics/configuration.txt:363
10611
" email = John Doe <jdoe@isp.com>\n"
10612
" editor = /usr/bin/vim\n"
10613
" create_signatures = when-required"
10616
#: en/help_topics/configuration.txt:368
10619
"The branch location configuration file, locations.conf\n"
10620
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
10623
#: en/help_topics/configuration.txt:372
10625
"``locations.conf`` allows one to specify overriding settings for\n"
10626
"a specific branch. The format is almost identical to the default section in\n"
10627
"breezy.conf with one significant change: The section header, instead of "
10629
"default, will be the path to a branch that you wish to override a value\n"
10630
"for. The '?' and '*' wildcards are supported::"
10633
#: en/help_topics/configuration.txt:378
10635
" [/home/jdoe/branches/nethack]\n"
10636
" email = Nethack Admin <nethack@nethack.com>"
10639
#: en/help_topics/configuration.txt:381
10641
" [http://hypothetical.site.com/branches/devel-branch]\n"
10642
" create_signatures = always"
10645
#: en/help_topics/configuration.txt:384
10647
"The authentication configuration file, authentication.conf\n"
10648
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
10651
#: en/help_topics/configuration.txt:387
10653
"``authentication.conf`` allows one to specify credentials for\n"
10654
"remote servers. This can be used for all the supported transports and any "
10656
"of bzr that requires authentication (smtp for example)."
10659
#: en/help_topics/configuration.txt:391
10661
"The syntax of the file obeys the same rules as the others except for the\n"
10662
"option policies which don't apply."
10665
#: en/help_topics/configuration.txt:394
10667
"For more information on the possible uses of the authentication "
10669
"file see :doc:`authentication-help`."
10672
#: en/help_topics/configuration.txt:397
10679
#: en/help_topics/configuration.txt:401
10685
#: en/help_topics/configuration.txt:404
10687
"A comma-separated list of debugging options to turn on. The same values\n"
10688
"can be used as with the -D command-line option (see `help global-options`).\n"
10692
#: en/help_topics/configuration.txt:408
10693
msgid " debug_flags = hpss"
10696
#: en/help_topics/configuration.txt:412
10697
msgid " debug_flags = hpss,evil"
10700
#: en/help_topics/configuration.txt:414
10706
#: en/help_topics/configuration.txt:417
10708
"The email address to use when committing a branch. Typically takes the form\n"
10712
#: en/help_topics/configuration.txt:420
10713
msgid " email = Full Name <account@hostname.tld>"
10716
#: en/help_topics/configuration.txt:422
10722
#: en/help_topics/configuration.txt:425
10724
"The path of the editor that you wish to use if *bzr commit* is run without\n"
10725
"a commit message. This setting is trumped by the environment variable\n"
10726
"``BZR_EDITOR``, and overrides the ``VISUAL`` and ``EDITOR`` environment\n"
10730
#: en/help_topics/configuration.txt:430
10736
#: en/help_topics/configuration.txt:433
10738
"The default log format to use. Standard log formats are ``long``, ``short``\n"
10739
"and ``line``. Additional formats may be provided by plugins. The default\n"
10740
"value is ``long``."
10743
#: en/help_topics/configuration.txt:437
10745
"check_signatures\n"
10749
#: en/help_topics/configuration.txt:440
10751
"Reserved for future use. These options will allow a policy for branches to\n"
10752
"require signatures."
10755
#: en/help_topics/configuration.txt:443
10758
" The gnupg signature for revisions must be present and must be valid."
10761
#: en/help_topics/configuration.txt:446
10764
" Do not check gnupg signatures of revisions."
10767
#: en/help_topics/configuration.txt:449
10769
"check-available\n"
10770
" (default) If gnupg signatures for revisions are present, check them.\n"
10771
" Breezy will fail if it finds a bad signature, but will not fail if\n"
10772
" no signature is present."
10775
#: en/help_topics/configuration.txt:454
10777
"create_signatures\n"
10778
"~~~~~~~~~~~~~~~~~"
10781
#: en/help_topics/configuration.txt:457
10783
"Defines the behaviour of signing revisions on commits. By default bzr will "
10785
"sign new commits."
10788
#: en/help_topics/configuration.txt:460
10791
" Sign every new revision that is committed. If the signing fails then "
10793
" commit will not be made."
10796
#: en/help_topics/configuration.txt:464
10799
" Reserved for future use."
10802
#: en/help_topics/configuration.txt:467
10805
" Reserved for future use."
10808
#: en/help_topics/configuration.txt:470
10810
"In future it is planned that ``when-required`` will sign newly\n"
10811
"committed revisions only when the branch requires them. ``never`` will "
10813
"to sign newly committed revisions, even if the branch requires signatures."
10816
#: en/help_topics/configuration.txt:474
10818
"dirstate.fdatasync\n"
10819
"~~~~~~~~~~~~~~~~~~"
10822
#: en/help_topics/configuration.txt:477
10824
"If true (default), working tree metadata changes are flushed through the\n"
10825
"OS buffers to physical disk. This is somewhat slower, but means data\n"
10826
"should not be lost if the machine crashes. See also repository.fdatasync."
10829
#: en/help_topics/configuration.txt:481
10831
"gpg_signing_key\n"
10835
#: en/help_topics/configuration.txt:484
10837
"The GnuPG user identity to use when signing commits. Can be an e-mail\n"
10838
"address, key fingerprint or full key ID. When unset or when set to\n"
10839
"\"default\" Breezy will use the user e-mail set with ``whoami``."
10842
#: en/help_topics/configuration.txt:488
10848
#: en/help_topics/configuration.txt:491
10850
"Only useful in ``locations.conf``. Defines whether or not the\n"
10851
"configuration for this section applies to subdirectories:"
10854
#: en/help_topics/configuration.txt:494
10857
" (default) This section applies to subdirectories as well."
10860
#: en/help_topics/configuration.txt:497
10863
" This section only applies to the branch at this directory and not\n"
10864
" branches below it."
10867
#: en/help_topics/configuration.txt:501
10869
"bzr_remote_path\n"
10873
#: en/help_topics/configuration.txt:504
10875
"(Default: \"bzr\"). The path to the command that should be used to run the "
10877
"server for bzr. This value may only be specified in locations.conf, because:"
10880
#: en/help_topics/configuration.txt:507
10882
"- it's needed before branch.conf is accessible\n"
10883
"- allowing remote branch.conf files to specify commands would be a security\n"
10887
#: en/help_topics/configuration.txt:511
10888
msgid "It is overridden by the BZR_REMOTE_PATH environment variable."
10891
#: en/help_topics/configuration.txt:513
10897
#: en/help_topics/configuration.txt:516
10899
"(Default: \"localhost\"). SMTP server to use when Breezy needs to send\n"
10900
"email, eg. with ``merge-directive --mail-to``, or the bzr-email plugin."
10903
#: en/help_topics/configuration.txt:519
10905
"smtp_username, smtp_password\n"
10906
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
10909
#: en/help_topics/configuration.txt:522
10911
"User and password to authenticate to the SMTP server. If smtp_username\n"
10912
"is set, and smtp_password is not, Breezy will prompt for a password.\n"
10913
"These settings are only needed if the SMTP server requires authentication\n"
10917
#: en/help_topics/configuration.txt:527
10919
"locks.steal_dead\n"
10923
#: en/help_topics/configuration.txt:530
10925
"If set to true, bzr will automatically break locks held by processes from\n"
10926
"the same machine and user that are no longer alive. Otherwise, it will\n"
10927
"print a message and you can break the lock manually, if you are satisfied\n"
10928
"the object is no longer in use."
10931
#: en/help_topics/configuration.txt:535
10937
#: en/help_topics/configuration.txt:538
10939
"A mail client to use for sending merge requests.\n"
10940
"By default, bzr will try to use ``mapi`` on Windows. On other platforms, "
10942
"will try ``xdg-email``. If either of these fails, it will fall back to\n"
10946
#: en/help_topics/configuration.txt:543
10947
msgid "Supported values for specific clients:"
10950
#: en/help_topics/configuration.txt:545
10952
":claws: Use Claws. This skips a dialog for attaching files.\n"
10953
":evolution: Use Evolution.\n"
10954
":kmail: Use KMail.\n"
10955
":mutt: Use Mutt.\n"
10956
":thunderbird: Use Mozilla Thunderbird or Icedove. For Thunderbird/Icedove "
10958
" this works around some bugs that xdg-email doesn't handle."
10961
#: en/help_topics/configuration.txt:552
10962
msgid "Supported generic values are:"
10965
#: en/help_topics/configuration.txt:554
10967
":default: See above.\n"
10968
":editor: Use your editor to compose the merge request. This also uses\n"
10969
" your commit id, (see ``bzr whoami``), smtp_server and (optionally)\n"
10970
" smtp_username and smtp_password.\n"
10971
":mapi: Use your preferred e-mail client on Windows.\n"
10972
":xdg-email: Use xdg-email to run your preferred mail program"
10975
#: en/help_topics/configuration.txt:561
10977
"repository.fdatasync\n"
10978
"~~~~~~~~~~~~~~~~~~~~"
10981
#: en/help_topics/configuration.txt:564
10983
"If true (default), repository changes are flushed through the OS buffers\n"
10984
"to physical disk. This is somewhat slower, but means data should not be\n"
10985
"lost if the machine crashes. See also dirstate.fdatasync."
10988
#: en/help_topics/configuration.txt:568
10994
#: en/help_topics/configuration.txt:571
10996
"The branch you intend to submit your current work to. This is "
10998
"set by ``bzr send``, and is also used by the ``submit:`` revision spec. "
11000
"should usually be set on a per-branch or per-location basis."
11003
#: en/help_topics/configuration.txt:575
11009
#: en/help_topics/configuration.txt:578
11011
"A publically-accessible version of this branch (implying that this version "
11013
"not publically-accessible). Used (and set) by ``bzr send``."
11016
#: en/help_topics/configuration.txt:581
11018
"suppress_warnings\n"
11019
"~~~~~~~~~~~~~~~~~"
11022
#: en/help_topics/configuration.txt:584
11024
"A list of strings, each string represent a warning that can be emitted by\n"
11025
"bzr. Mentioning a warning in this list tells bzr to not emit it."
11028
#: en/help_topics/configuration.txt:587
11029
msgid "Valid values:"
11032
#: en/help_topics/configuration.txt:589
11034
"* ``format_deprecation``:\n"
11035
" whether the format deprecation warning is shown on repositories that "
11037
" using deprecated formats."
11040
#: en/help_topics/configuration.txt:593
11042
"* ``insecure_permissions``:\n"
11043
" whether a warning is shown if ``authentication.conf`` can be read\n"
11047
#: en/help_topics/configuration.txt:597
11053
#: en/help_topics/configuration.txt:600
11055
"A format name for the default format used when creating branches. See "
11057
"help formats`` for possible values."
11060
#: en/help_topics/configuration.txt:603
11063
"Unicode options\n"
11067
#: en/help_topics/configuration.txt:607
11069
"output_encoding\n"
11073
#: en/help_topics/configuration.txt:610
11075
"A Python unicode encoding name for text output from bzr, such as log\n"
11076
"information. Values include: utf8, cp850, ascii, iso-8859-1. The default\n"
11077
"is the terminal encoding prefered by the operating system."
11080
#: en/help_topics/configuration.txt:614
11083
"Branch type specific options\n"
11084
"----------------------------"
11087
#: en/help_topics/configuration.txt:618
11089
"These options apply only to branches that use the ``dirstate-tags`` or\n"
11090
"later format. They\n"
11091
"are usually set in ``.bzr/branch/branch.conf`` automatically, but may be\n"
11092
"manually set in ``locations.conf`` or ``breezy.conf``."
11095
#: en/help_topics/configuration.txt:623
11097
"append_revisions_only\n"
11098
"~~~~~~~~~~~~~~~~~~~~~"
11101
#: en/help_topics/configuration.txt:626
11103
"If set to \"True\" then revisions can only be appended to the log, not\n"
11104
"removed. A branch with this setting enabled can only pull from another\n"
11105
"branch if the other branch's log is a longer version of its own. This is\n"
11106
"normally set by ``bzr init --append-revisions-only``. If you set it\n"
11107
"manually, use either 'True' or 'False' (case-sensitive) to maintain\n"
11108
"compatibility with previous bzr versions (older than 2.2)."
11111
#: en/help_topics/configuration.txt:633
11113
"parent_location\n"
11117
#: en/help_topics/configuration.txt:636
11119
"If present, the location of the default branch for pull or merge. This "
11121
"is normally set when creating a branch, the first ``pull`` or by ``pull\n"
11125
#: en/help_topics/configuration.txt:640
11131
#: en/help_topics/configuration.txt:643
11133
"If present, the location of the default branch for push. This option\n"
11134
"is normally set by the first ``push`` or ``push --remember``."
11137
#: en/help_topics/configuration.txt:646
11143
#: en/help_topics/configuration.txt:649
11145
"If present, defines the ``--strict`` option default value for checking\n"
11146
"uncommitted changes before pushing."
11149
#: en/help_topics/configuration.txt:652
11155
#: en/help_topics/configuration.txt:655
11157
"The location that commits should go to when acting as a checkout.\n"
11158
"This option is normally set by ``bind``."
11161
#: en/help_topics/configuration.txt:658
11167
#: en/help_topics/configuration.txt:661
11169
"If set to \"True\", the branch should act as a checkout, and push each "
11171
"the bound_location. This option is normally set by ``bind``/``unbind``."
11174
#: en/help_topics/configuration.txt:664
11180
#: en/help_topics/configuration.txt:667
11182
"If present, defines the ``--strict`` option default value for checking\n"
11183
"uncommitted changes before sending a merge directive."
11186
#: en/help_topics/configuration.txt:670
11188
"add.maximum_file_size\n"
11189
"~~~~~~~~~~~~~~~~~~~~~"
11192
#: en/help_topics/configuration.txt:673
11194
"Defines the maximum file size the command line \"add\" operation will allow\n"
11195
"in recursive mode, with files larger than this value being skipped. You "
11197
"specify this value as an integer (in which case it is interpreted as "
11199
"or you may specify the value using SI units, i.e. 10KB, 20MB, 1G. A value of "
11201
"will disable skipping."
11204
#: en/help_topics/configuration.txt:679
11206
"External Merge Tools\n"
11207
"--------------------"
11210
#: en/help_topics/configuration.txt:682
11212
"bzr.mergetool.<name>\n"
11213
"~~~~~~~~~~~~~~~~~~~~"
11216
#: en/help_topics/configuration.txt:685
11218
"Defines an external merge tool called <name> with the given command-line.\n"
11219
"Arguments containing spaces should be quoted using single or double quotes. "
11221
"executable may omit its path if it can be found on the PATH."
11224
#: en/help_topics/configuration.txt:689
11226
"The following markers can be used in the command-line to substitute "
11228
"involved in the merge conflict::"
11231
#: en/help_topics/configuration.txt:692
11233
" {base} file.BASE\n"
11234
" {this} file.THIS\n"
11235
" {other} file.OTHER\n"
11236
" {result} output file\n"
11237
" {this_temp} temp copy of file.THIS, used to overwrite output file if "
11242
#: en/help_topics/configuration.txt:701
11243
msgid " bzr.mergetool.kdiff3 = kdiff3 {base} {this} {other} -o {result}"
11246
#: en/help_topics/configuration.txt:703
11248
"Because ``mergetool`` and ``config`` itself both use curly braces as\n"
11249
"interpolation markers, trying to display the mergetool line results in the\n"
11250
"following problem::"
11253
#: en/help_topics/configuration.txt:707
11256
" $ bzr config bzr.mergetool.kdiff3='kdiff3 {base} {this} {other} -o "
11258
" $ bzr config bzr.mergetool.kdiff3\n"
11259
" bzr: ERROR: Option base is not defined while expanding \"kdiff3 {base} "
11260
"{this} {other} -o {result}\"."
11263
#: en/help_topics/configuration.txt:712
11265
"To avoid this, ``config`` can be instructed not to try expanding variables::"
11268
#: en/help_topics/configuration.txt:714
11270
" $ bzr config --all bzr.mergetool.kdiff3\n"
11272
" bzr.mergetool.kdiff3 = kdiff3 {base} {this} {other} -o {result}"
11275
#: en/help_topics/configuration.txt:718
11278
"bzr.default_mergetool\n"
11279
"~~~~~~~~~~~~~~~~~~~~~"
11282
#: en/help_topics/configuration.txt:722
11284
"Specifies which external merge tool (as defined above) should be selected "
11286
"default in tools such as ``bzr qconflicts``."
11289
#: en/help_topics/configuration.txt:727
11290
msgid " bzr.default_mergetool = kdiff3\n"
11293
#: en/help_topics/conflict-types.txt:1
11299
#: en/help_topics/conflict-types.txt:4
11301
"Some operations, like merge, revert and pull, modify the contents of your\n"
11302
"working tree. These modifications are programmatically generated, and so "
11304
"may conflict with the current state of your working tree. "
11307
#: en/help_topics/conflict-types.txt:8
11309
"When conflicts are present in your working tree (as shown by ``brz\n"
11310
"conflicts``), you should resolve them and then inform brz that the "
11312
"have been resolved."
11315
#: en/help_topics/conflict-types.txt:12
11317
"Resolving conflicts is sometimes not obvious. Either because the user that\n"
11318
"should resolve them is not the one responsible for their occurrence, as is "
11320
"case when merging other people's work or because some conflicts are "
11322
"in a way that is not easy to understand."
11325
#: en/help_topics/conflict-types.txt:17
11327
"Bazaar tries to avoid conflicts ; its aim is to ask you to resolve the\n"
11328
"conflict if and only if there's an actual conceptual conflict in the source\n"
11329
"tree. Because Bazaar doesn't understand the real meaning of the files "
11331
"versioned, it can, when faced with ambiguities, fall short in either "
11333
"trying to resolve the conflict itself. Many kinds of changes can be "
11335
"programmatically, but sometimes only a human can determine the right thing "
11340
#: en/help_topics/conflict-types.txt:25
11342
"When Bazaar generates a conflict, it adds information into the working tree "
11344
"present the conflicting versions, and it's up to you to find the correct\n"
11348
#: en/help_topics/conflict-types.txt:29
11349
msgid "Whatever the conflict is, resolving it is roughly done in two steps:"
11352
#: en/help_topics/conflict-types.txt:31
11354
"1. Modify the working tree content so that the conflicted item is now in "
11356
" state you want to keep, then"
11359
#: en/help_topics/conflict-types.txt:34
11361
"2. Inform Bazaar that the conflict is now solved and ask to cleanup any\n"
11362
" remaining generated information (``brz resolve <item>``)."
11365
#: en/help_topics/conflict-types.txt:37
11367
"For most conflict types, there are some obvious ways to modify the working\n"
11368
"tree and put it into the desired state. For some types of conflicts, Bazaar\n"
11369
"itself already made a choice, when possible."
11372
#: en/help_topics/conflict-types.txt:41
11374
"Yet, whether Bazaar makes a choice or not, there are some other simple but\n"
11375
"different ways to resolve the conflict."
11378
#: en/help_topics/conflict-types.txt:44
11380
"Each type of conflict is explained below, and the action which must be done "
11382
"resolve the conflict is outlined."
11385
#: en/help_topics/conflict-types.txt:47
11387
"Various actions are available depending on the kind of conflict, for some "
11389
"these actions, Bazaar can provide some help. In the end you should at least\n"
11390
"inform Bazaar that you're done with the conflict with::"
11393
#: en/help_topics/conflict-types.txt:51
11394
msgid " ``brz resolve FILE --action=done'"
11397
#: en/help_topics/conflict-types.txt:53
11399
"Note that this is the default action when a single file is involved so you "
11404
#: en/help_topics/conflict-types.txt:56
11405
msgid " ``brz resolve FILE``"
11408
#: en/help_topics/conflict-types.txt:58
11409
msgid "See ``brz help resolve`` for more details."
11412
#: en/help_topics/conflict-types.txt:60
11418
#: en/help_topics/conflict-types.txt:63 en/help_topics/conflict-types.txt:120
11419
#: en/help_topics/conflict-types.txt:151 en/help_topics/conflict-types.txt:175
11420
#: en/help_topics/conflict-types.txt:198 en/help_topics/conflict-types.txt:213
11421
#: en/help_topics/conflict-types.txt:239 en/help_topics/conflict-types.txt:281
11422
#: en/help_topics/conflict-types.txt:303 en/help_topics/conflict-types.txt:339
11423
msgid "Typical message::"
11426
#: en/help_topics/conflict-types.txt:65
11427
msgid " Text conflict in FILE"
11430
#: en/help_topics/conflict-types.txt:67
11432
"These are produced when a text merge cannot completely reconcile two sets "
11434
"text changes. Bazaar will emit files for each version with the extensions\n"
11435
"THIS, OTHER, and BASE. THIS is the version of the file from the target "
11437
"i.e. the tree that you are merging changes into. OTHER is the version that "
11439
"are merging into the target. BASE is an older version that is used as a "
11444
#: en/help_topics/conflict-types.txt:74
11446
"In the main copy of the file, Bazaar will include all the changes that it\n"
11447
"could reconcile, and any un-reconciled conflicts are surrounded by\n"
11448
"\"herringbone\" markers like ``<<<<<<<``."
11451
#: en/help_topics/conflict-types.txt:78
11453
"Say the initial text is \"The project leader released it.\", and THIS "
11455
"to \"Martin Pool released it.\", while OTHER modifies it to \"The project "
11457
"released Bazaar.\" A conflict would look like this::"
11460
#: en/help_topics/conflict-types.txt:82
11463
" Martin Pool released it.\n"
11465
" The project leader released Bazaar.\n"
11466
" >>>>>>> MERGE-SOURCE"
11469
#: en/help_topics/conflict-types.txt:88
11470
msgid "The correct resolution would be \"Martin Pool released Bazaar.\""
11473
#: en/help_topics/conflict-types.txt:90
11475
"You can handle text conflicts either by editing the main copy of the file,\n"
11476
"or by invoking external tools on the THIS, OTHER and BASE versions. It's\n"
11477
"worth mentioning that resolving text conflicts rarely involves picking one\n"
11478
"set of changes over the other (but see below when you encounter these\n"
11479
"cases). More often, the two sets of changes must be intelligently combined."
11482
#: en/help_topics/conflict-types.txt:96
11484
"If you edit the main copy, be sure to remove the herringbone markers. When\n"
11485
"you are done editing, the file should look like it never had a conflict, and "
11490
#: en/help_topics/conflict-types.txt:100
11492
"When you have resolved text conflicts, just run ``brz resolve --auto``, and\n"
11493
"Bazaar will auto-detect which conflicts you have resolved."
11496
#: en/help_topics/conflict-types.txt:103
11498
"When the conflict is resolved, Bazaar deletes the previously generated\n"
11499
"``.BASE``, ``.THIS`` and ``.OTHER`` files if they are still present in the\n"
11503
#: en/help_topics/conflict-types.txt:107
11506
"When you want to pick one set of changes over the other, you can use ``brz\n"
11507
"resolve`` with one of the following actions:"
11510
#: en/help_topics/conflict-types.txt:111
11512
"* ``--action=take-this`` will issue ``mv FILE.THIS FILE``,\n"
11513
"* ``--action=take-other`` will issue ``mv FILE.OTHER FILE``."
11516
#: en/help_topics/conflict-types.txt:114
11518
"Note that if you have modified ``FILE.THIS`` or ``FILE.OTHER``, these\n"
11519
"modifications will be taken into account."
11522
#: en/help_topics/conflict-types.txt:117
11524
"Content conflicts\n"
11525
"-----------------"
11528
#: en/help_topics/conflict-types.txt:122
11529
msgid " Contents conflict in FILE"
11532
#: en/help_topics/conflict-types.txt:124
11534
"This conflict happens when there are conflicting changes in the working "
11536
"and the merge source, but the conflicted items are not text files. They "
11538
"be binary files, or symlinks, or directories. It can even happen with "
11540
"that are deleted on one side, and modified on the other."
11543
#: en/help_topics/conflict-types.txt:129
11545
"Like text conflicts, Bazaar will emit THIS, OTHER and BASE files. (They may "
11547
"regular files, symlinks or directories). But it will not include a \"main "
11549
"of the file with herringbone conflict markers. It will appear that the "
11551
"copy\" has been renamed to THIS or OTHER."
11554
#: en/help_topics/conflict-types.txt:134 en/help_topics/conflict-types.txt:182
11556
"To resolve that kind of conflict, you should rebuild FILE from either "
11558
"or a combination of both."
11561
#: en/help_topics/conflict-types.txt:137 en/help_topics/conflict-types.txt:185
11562
#: en/help_topics/conflict-types.txt:226 en/help_topics/conflict-types.txt:252
11563
#: en/help_topics/conflict-types.txt:291 en/help_topics/conflict-types.txt:326
11564
#: en/help_topics/conflict-types.txt:361
11565
msgid "``brz resolve`` recognizes the following actions:"
11568
#: en/help_topics/conflict-types.txt:139
11570
"* ``--action=take-this`` will issue ``brz mv FILE.THIS FILE``,\n"
11571
"* ``--action=take-other`` will issue ``brz mv FILE.OTHER FILE``,\n"
11572
"* ``--action=done`` will just mark the conflict as resolved."
11575
#: en/help_topics/conflict-types.txt:143
11577
"Any action will also delete the previously generated ``.BASE``, ``.THIS`` "
11579
"``.OTHER`` files if they are still present in the working tree."
11582
#: en/help_topics/conflict-types.txt:146 en/help_topics/conflict-types.txt:193
11583
#: en/help_topics/conflict-types.txt:234 en/help_topics/conflict-types.txt:276
11584
#: en/help_topics/conflict-types.txt:298 en/help_topics/conflict-types.txt:334
11585
#: en/help_topics/conflict-types.txt:369
11587
"Bazaar cannot auto-detect when conflicts of this kind have been resolved."
11590
#: en/help_topics/conflict-types.txt:148
11596
#: en/help_topics/conflict-types.txt:153
11598
" Conflicting tags:\n"
11602
#: en/help_topics/conflict-types.txt:156
11604
"When pulling from or pushing to another branch, Bazaar informs you about "
11606
"that conflict between the two branches; that is the same tag points to two\n"
11607
"different revisions. You need not resolve these conflicts, but subsequent\n"
11608
"uses of pull or push will result in the same message."
11611
#: en/help_topics/conflict-types.txt:161
11613
"To resolve the conflict, you must apply the correct tags to either the "
11615
"branch or the source branch as appropriate. Use \"brz tags --show-ids -d\n"
11616
"SOURCE_URL\" to see the tags in the source branch. If you want to make the\n"
11617
"target branch's tags match the source branch, then in the target branch do\n"
11618
"``brz tag --force -r revid:REVISION_ID CONFLICTING_TAG`` for each of the\n"
11619
"CONFLICTING_TAGs, where REVISION_ID comes from the list of tags in the "
11621
"branch. You need not call \"brz resolve\" after doing this. To resolve in\n"
11622
"favor of the target branch, you need to similarly use ``tag --force`` in "
11624
"source branch. (Note that pulling or pushing using --overwrite will "
11626
"all tags as well.)"
11629
#: en/help_topics/conflict-types.txt:172
11631
"Duplicate paths\n"
11635
#: en/help_topics/conflict-types.txt:177
11636
msgid " Conflict adding file FILE. Moved existing file to FILE.moved."
11639
#: en/help_topics/conflict-types.txt:179
11641
"Sometimes Bazaar will attempt to create a file using a pathname that has\n"
11642
"already been used. The existing file will be renamed to \"FILE.moved\". "
11645
#: en/help_topics/conflict-types.txt:187
11647
"* ``--action=take-this`` will issue ``brz rm FILE ; brz mv FILE.moved "
11649
"* ``--action=take-other`` will issue ``brz rm FILE.moved``,\n"
11650
"* ``--action=done`` will just mark the conflict as resolved."
11653
#: en/help_topics/conflict-types.txt:191
11655
"Note that you must get rid of FILE.moved before using ``--action=done``."
11658
#: en/help_topics/conflict-types.txt:195
11660
"Unversioned parent\n"
11661
"------------------"
11664
#: en/help_topics/conflict-types.txt:200
11665
msgid " Conflict because FILE is not versioned, but has versioned children."
11668
#: en/help_topics/conflict-types.txt:202
11670
"Sometimes Bazaar will attempt to create a file whose parent directory is "
11672
"versioned. This happens when the directory has been deleted in the target,\n"
11673
"but has a new child in the source, or vice versa. In this situation, "
11675
"will version the parent directory as well. Resolving this issue depends\n"
11676
"very much on the particular scenario. You may wish to rename or delete "
11678
"the file or the directory. When you are satisfied, you can run \"brz "
11680
"FILE\" to mark the conflict as resolved."
11683
#: en/help_topics/conflict-types.txt:210
11689
#: en/help_topics/conflict-types.txt:215
11690
msgid " Conflict adding files to FILE. Created directory."
11693
#: en/help_topics/conflict-types.txt:217
11695
"This happens when a directory has been deleted in the target, but has new\n"
11696
"children in the source. This is similar to the \"unversioned parent\" "
11698
"except that the parent directory does not *exist*, instead of just being\n"
11699
"unversioned. In this situation, Bazaar will create the missing parent.\n"
11700
"Resolving this issue depends very much on the particular scenario."
11703
#: en/help_topics/conflict-types.txt:223 en/help_topics/conflict-types.txt:249
11705
"To resolve that kind of conflict, you should either remove or rename the\n"
11706
"children or the directory or a combination of both."
11709
#: en/help_topics/conflict-types.txt:228
11711
"* ``--action=take-this`` will issue ``brz rm directory`` including the\n"
11713
"* ``--action=take-other`` will acknowledge Bazaar choice to keep the "
11715
" and restoring the directory,\n"
11716
"* ``--action=done`` will just mark the conflict as resolved."
11719
#: en/help_topics/conflict-types.txt:236
11721
"Deleting parent\n"
11725
#: en/help_topics/conflict-types.txt:241
11726
msgid " Conflict: can't delete DIR because it is not empty. Not deleting."
11729
#: en/help_topics/conflict-types.txt:243
11731
"This is the opposite of \"missing parent\". A directory is deleted in the\n"
11732
"source, but has new children in the target (either because a directory\n"
11733
"deletion is merged or because the merge introduce new children). Bazaar\n"
11734
"will retain the directory. Resolving this issue depends very much on the\n"
11735
"particular scenario."
11738
#: en/help_topics/conflict-types.txt:254
11740
"* ``--action=take-this`` will acknowledge Bazaar choice to keep the "
11744
#: en/help_topics/conflict-types.txt:256
11746
"* ``--action=take-other`` will issue ``brz rm directory`` including the \n"
11750
#: en/help_topics/conflict-types.txt:259
11751
msgid "* ``--action=done`` will just mark the conflict as resolved."
11754
#: en/help_topics/conflict-types.txt:261
11756
"Note that when merging a directory deletion, if unversioned files are\n"
11757
"present, they become potential orphans has they don't have a directory\n"
11761
#: en/help_topics/conflict-types.txt:265
11763
"Handling such orphans, *before* the conflict is created, is controlled by\n"
11764
"setting the ``brz.transform.orphan_policy`` configuration option."
11767
#: en/help_topics/conflict-types.txt:268
11768
msgid "There are two possible values for this option:"
11771
#: en/help_topics/conflict-types.txt:270
11773
"* ``conflict`` (the default): will leave the orphans in place and\n"
11774
" generate a conflicts,"
11777
#: en/help_topics/conflict-types.txt:273
11779
"* ``move``: will move the orphans to a ``brz-orphans`` directory at the "
11781
" of the working tree with names like ``<file>.~#~``."
11784
#: en/help_topics/conflict-types.txt:278
11790
#: en/help_topics/conflict-types.txt:283
11791
msgid " Path conflict: PATH1 / PATH2"
11794
#: en/help_topics/conflict-types.txt:285
11796
"This happens when the source and target have each modified the name or "
11798
"directory of a file. Bazaar will use the path elements from the source."
11801
#: en/help_topics/conflict-types.txt:288
11803
"To resolve that kind of conflict, you just have to decide what name should "
11805
"retained for the file involved."
11808
#: en/help_topics/conflict-types.txt:293
11810
"* ``--action=take-this`` will revert Bazaar choice and keep ``PATH1`` by\n"
11811
" issuing ``brz mv PATH2 PATH1``,\n"
11812
"* ``--action=take-other`` will acknowledge Bazaar choice of keeping "
11814
"* ``--action=done`` will just mark the conflict as resolved."
11817
#: en/help_topics/conflict-types.txt:300
11823
#: en/help_topics/conflict-types.txt:305
11824
msgid " Conflict moving FILE into DIRECTORY. Cancelled move."
11827
#: en/help_topics/conflict-types.txt:307
11829
"This happens when the source and the target have each moved directories, so\n"
11830
"that, if the change could be applied, a directory would be contained by "
11835
#: en/help_topics/conflict-types.txt:311
11838
" $ brz mkdir white\n"
11839
" $ brz mkdir black\n"
11840
" $ brz commit -m \"BASE\"\n"
11841
" $ brz branch . ../other\n"
11842
" $ brz mv white black\n"
11843
" $ brz commit -m \"THIS\"\n"
11844
" $ brz mv ../other/black ../other/white\n"
11845
" $ brz commit ../other -m \"OTHER\"\n"
11846
" $ brz merge ../other"
11849
#: en/help_topics/conflict-types.txt:322
11851
"In this situation, Bazaar will cancel the move, and leave ``white`` in\n"
11852
"``black``. To resolve that kind of conflict, you just have to decide what\n"
11853
"name should be retained for the directories involved."
11856
#: en/help_topics/conflict-types.txt:328
11858
"* ``--action=take-this`` will acknowledge Bazaar choice of leaving "
11861
"* ``--action=take-other`` will revert Bazaar choice and move ``black`` in\n"
11862
" ``white`` by issuing ``brz mv black/white white ; brz mv black white``,\n"
11863
"* ``--action=done`` will just mark the conflict as resolved."
11866
#: en/help_topics/conflict-types.txt:336
11868
"Non-directory parent\n"
11869
"--------------------"
11872
#: en/help_topics/conflict-types.txt:341
11874
" Conflict: foo.new is not a directory, but has files in it.\n"
11875
" Created directory."
11878
#: en/help_topics/conflict-types.txt:344
11880
"This happens when one side has added files to a directory, and the other "
11882
"has changed the directory into a file or symlink. For example::"
11885
#: en/help_topics/conflict-types.txt:347
11888
" $ brz mkdir foo\n"
11889
" $ brz commit -m \"BASE\"\n"
11890
" $ brz branch . ../other\n"
11893
" $ brz commit -m \"THIS\"\n"
11894
" $ brz mkdir ../other/foo/bar\n"
11895
" $ brz commit ../other -m \"OTHER\"\n"
11896
" $ brz merge ../other"
11899
#: en/help_topics/conflict-types.txt:358
11901
"To resolve that kind of conflict, you have to decide what name should be\n"
11902
"retained for the file, directory or symlink involved."
11905
#: en/help_topics/conflict-types.txt:363
11907
"* ``--action=take-this`` will issue ``brz rm --force foo.new`` and \n"
11908
" ``brz add foo``,\n"
11909
"* ``--action=take-other`` will issue ``brz rm --force foo`` and \n"
11910
" ``brz mv foo.new foo``,\n"
11911
"* ``--action=done`` will just mark the conflict as resolved."
11914
#: en/help_topics/conflict-types.txt:371
11916
"MalformedTransform\n"
11917
"------------------"
11920
#: en/help_topics/conflict-types.txt:374
11922
"It is possible (though very rare) for Bazaar to raise a MalformedTransform\n"
11923
"exception. This means that Bazaar encountered a filesystem conflict that it "
11925
"unable to resolve. This usually indicates a bug. Please let us know if "
11927
"encounter this. Our bug tracker is at https://launchpad.net/bzr/+bugs\n"
11930
#: en/help_topics/content-filters.txt:1
11932
"Content Filters\n"
11936
#: en/help_topics/content-filters.txt:4
11938
"Content formats\n"
11942
#: en/help_topics/content-filters.txt:7
11944
"Bazaar's content filtering allows you to store files in a different\n"
11945
"format from the copy in your working tree. This lets you, or your\n"
11946
"co-developers, use Windows development tools that expect CRLF files\n"
11947
"on projects that use other line-ending conventions. Among other things,\n"
11948
"content filters also let Unix developers more easily work on projects\n"
11949
"using Windows line-ending conventions, keyword expansion/compression,\n"
11950
"and trailing spaces on lines in text files to be implicitly stripped\n"
11954
#: en/help_topics/content-filters.txt:16
11955
msgid "To generalize, there are two content formats supported by Bazaar:"
11958
#: en/help_topics/content-filters.txt:18
11960
"* a canonical format - how files are stored internally\n"
11961
"* a convenience format - how files are created in a working tree."
11964
#: en/help_topics/content-filters.txt:21
11967
"Format conversion\n"
11968
"-----------------"
11971
#: en/help_topics/content-filters.txt:25
11973
"The conversion between these formats is done by content filters.\n"
11974
"A content filter has two parts:"
11977
#: en/help_topics/content-filters.txt:28
11979
"* a read converter - converts from convenience to canonical format\n"
11980
"* a write converter - converts from canonical to convenience format."
11983
#: en/help_topics/content-filters.txt:31
11985
"Many of these converters will provide *round-trip* conversion,\n"
11986
"i.e. applying the read converter followed by the write converter\n"
11987
"gives back the original content. However, others may provide an\n"
11988
"asymmetric conversion. For example, a read converter might strip\n"
11989
"trailing whitespace off lines in source code while the matching\n"
11990
"write converter might pass content through unchanged."
11993
#: en/help_topics/content-filters.txt:38
11996
"Enabling content filters\n"
11997
"------------------------"
12000
#: en/help_topics/content-filters.txt:42
12002
"Content filters are typically provided by plugins, so the first step\n"
12003
"in using them is to install the relevant plugins and read their\n"
12004
"documentation. Some plugins may be very specific about which files\n"
12005
"they filter, e.g. only files ending in ``.java`` or ``.php``.\n"
12006
"In other cases, the plugin may leave it in the user's hands to\n"
12007
"define which files are to be filtered. This is typically done\n"
12008
"using rule-based preferences. See ``brz help rules`` for general\n"
12009
"information about defining these."
12012
#: en/help_topics/content-filters.txt:51
12015
"Impact on commands\n"
12016
"------------------"
12019
#: en/help_topics/content-filters.txt:55
12021
"Read converters are only applied to commands that read content from\n"
12022
"a working tree, e.g. status, diff and commit. For example, ``brz diff``\n"
12023
"will apply read converters to files in the working tree, then compare\n"
12024
"the results to the content last committed."
12027
#: en/help_topics/content-filters.txt:60
12029
"Write converters are only applied by commands that **create files in a\n"
12030
"working tree**, e.g. branch, checkout, update. If you wish to see the\n"
12031
"canonical format of a file or tree, use ``brz cat`` or ``brz export``\n"
12035
#: en/help_topics/content-filters.txt:65
12037
"Note: ``brz commit`` does not implicitly apply write converters after\n"
12038
"comitting files. If this makes sense for a given plugin providing\n"
12039
"a content filter, the plugin can usually achieve this effect by using a\n"
12040
"``start_commit`` or ``post_commit`` hook say. See :doc:`hooks-help`\n"
12041
"for more information on hooks."
12044
#: en/help_topics/content-filters.txt:71
12047
"Refreshing your working tree\n"
12048
"----------------------------"
12051
#: en/help_topics/content-filters.txt:75
12053
"For performance reasons, Bazaar caches the timestamps of files in\n"
12054
"a working tree, and assumes files are unchanged if their timestamps\n"
12055
"match the cached values. As a consequence, there are times when\n"
12056
"you may need to explicitly ask for content filtering to be reapplied\n"
12057
"in one or both directions, e.g. after installing or reconfiguring\n"
12058
"plugins providing it."
12061
#: en/help_topics/content-filters.txt:82
12062
msgid "Here are some general guidelines for doing this:"
12065
#: en/help_topics/content-filters.txt:84
12067
" * To reapply read converters, ``touch`` files, i.e. update their\n"
12068
" timestamp. Operations like ``brz status`` should then reapply the\n"
12069
" relevant read converters and compare the end result with the\n"
12070
" canonical format."
12073
#: en/help_topics/content-filters.txt:89
12075
" * To reapply write converters, ensure there are no local changes,\n"
12076
" delete the relevant files and run ``brz revert`` on those files."
12079
#: en/help_topics/content-filters.txt:92
12081
"Note: In the future, it is likely that additional options will be added\n"
12082
"to commands to make this refreshing process faster and safer.\n"
12085
#: en/help_topics/current-formats.txt:1
12086
msgid "Current Storage Formats"
12089
#: en/help_topics/current-formats.txt:3
12092
" (native) (default) Format for the bzr 2.0 series."
12095
#: en/help_topics/current-formats.txt:6
12101
#: en/help_topics/current-formats.txt:9
12104
" Bare GIT repository (no working tree)."
12107
#: en/help_topics/current-formats.txt:12 en/help_topics/other-formats.txt:8
12110
"See :doc:`formats-help` for more about storage formats."
12113
#: en/help_topics/debug-flags.txt:1
12119
#: en/help_topics/debug-flags.txt:4
12121
"These flags can be passed on the brz command line or (without the ``-D``\n"
12122
"prefix) put in the ``debug_flags`` variable in ``breezy.conf``."
12125
#: en/help_topics/debug-flags.txt:7
12127
"-Dauth Trace authentication sections used.\n"
12128
"-Dbytes Print out how many bytes were transferred\n"
12129
"-Ddirstate Trace dirstate activity (verbose!)\n"
12130
"-Derror Instead of normal error handling, always print a "
12133
"-Devil Capture call sites that do expensive or badly-scaling\n"
12135
"-Dfetch Trace history copying between repositories.\n"
12136
"-Dfilters Emit information for debugging content filtering.\n"
12137
"-Dforceinvdeltas Force use of inventory deltas during generic streaming "
12139
"-Dgraph Trace graph traversal.\n"
12140
"-Dhashcache Log every time a working file is read to determine its "
12142
"-Dhooks Trace hook execution.\n"
12143
"-Dhpss Trace smart protocol requests and responses.\n"
12144
"-Dhpssdetail More hpss details.\n"
12145
"-Dhpssvfs Traceback on vfs access to Remote objects.\n"
12146
"-Dhttp Trace http connections, requests and responses.\n"
12147
"-Dindex Trace major index operations.\n"
12148
"-Dknit Trace knit operations.\n"
12149
"-Dlock Trace when lockdir locks are taken or released.\n"
12150
"-Dnoretry If a connection is reset, fail immediately rather than\n"
12151
" retrying the request.\n"
12152
"-Dprogress Trace progress bar operations.\n"
12153
"-Dmem_dump Dump memory to a file upon an out of memory error.\n"
12154
"-Dmerge Emit information for debugging merges.\n"
12155
"-Dno_apport Don't use apport to report crashes.\n"
12156
"-Dno_activity \t Don't show transport activity indicator in progress bar.\n"
12157
"-Dpack Emit information about pack operations.\n"
12158
"-Drelock Emit a message every time a branch or repository object "
12160
" unlocked then relocked the same way.\n"
12161
"-Dsftp Trace SFTP internals.\n"
12162
"-Dstatic_tuple Error when a tuple is used where a StaticTuple is "
12164
"-Dstream Trace fetch streams.\n"
12165
"-Dstrict_locks Trace when OS locks are potentially used in a non-"
12168
"-Dunlock Some errors during unlock are treated as warnings.\n"
12169
"-DIDS_never Never use InterDifferingSerializer when fetching.\n"
12170
"-DIDS_always Always use InterDifferingSerializer to fetch if "
12172
" for the format, even for non-local fetches.\n"
12175
#: en/help_topics/diverged-branches.txt:1
12177
"Diverged Branches\n"
12178
"================="
12181
#: en/help_topics/diverged-branches.txt:4
12183
"When Bazaar tries to push one branch onto another, it requires that the\n"
12184
"destination branch must be ready to receive the source branch. If this "
12186
"the case, then we say that the branches have ``diverged``. Branches are\n"
12187
"considered diverged if the destination branch's most recent commit is one "
12189
"has not been merged (directly or indirectly) by the source branch. To "
12191
"from diverged branches, one must merge the missing revisions into the "
12196
#: en/help_topics/diverged-branches.txt:12
12198
"This situation commonly arises when using a centralized workflow with local\n"
12199
"commits. If someone else has committed new work to the mainline since your\n"
12200
"last pull and you have local commits that have not yet been pushed to the\n"
12201
"mainline, then your local branch and the mainline have diverged."
12204
#: en/help_topics/diverged-branches.txt:17
12206
"Discovering What Has Diverged\n"
12207
"-----------------------------"
12210
#: en/help_topics/diverged-branches.txt:20
12212
"The ``brz missing`` command is used to find out what revisions are in "
12214
"branch that are not present in the current branch, and vice-versa. It shows "
12216
"summary of which extra revisions exist in each branch. If you want to see "
12218
"precise effects of those revisions, you can use ``brz diff --"
12219
"old=other_branch``\n"
12220
"to show the differences between other_branch and your current branch."
12223
#: en/help_topics/diverged-branches.txt:26
12229
#: en/help_topics/diverged-branches.txt:29
12231
"The solution is to merge the revisions from the mainline into your local\n"
12232
"branch. To do so, use ``brz merge`` to get the new revisions from the\n"
12233
"mainline. This merge may result in conflicts if the other developer's "
12235
"overlap with your changes. These conflicts should be resolved before\n"
12236
"continuing. After any conflicts have been resolved, or even if there were "
12238
"conflicts, Bazaar requires that you explicitly commit these new revisions\n"
12239
"to your local branch. This requirement gives you an opportunity to test "
12241
"resulting working tree for correctness, since the merged revisions could "
12243
"made arbitrary changes. After testing, you should commit the merge using\n"
12244
"``brz commit``. This clears up the diverged branches situation. Your "
12246
"branch can now be pushed to the mainline.\n"
12249
#: en/help_topics/env-variables.txt:1
12250
msgid "Environment Variables"
12253
#: en/help_topics/env-variables.txt:3
12254
msgid "See brz help configuration for more details."
12257
#: en/help_topics/env-variables.txt:5
12259
"=================== "
12260
"===========================================================\n"
12261
"BRZPATH Path where brz is to look for shell plugin external\n"
12263
"BRZ_EMAIL E-Mail address of the user. Overrides EMAIL.\n"
12264
"EMAIL E-Mail address of the user.\n"
12265
"BRZ_EDITOR Editor for editing commit messages. Overrides EDITOR.\n"
12266
"EDITOR Editor for editing commit messages.\n"
12267
"BRZ_PLUGIN_PATH Paths where brz should look for plugins.\n"
12268
"BRZ_DISABLE_PLUGINS Plugins that brz should not load.\n"
12269
"BRZ_PLUGINS_AT Plugins to load from a directory not in "
12270
"BRZ_PLUGIN_PATH.\n"
12271
"BRZ_HOME Directory holding breezy config dir. Overrides HOME.\n"
12272
"BRZ_HOME (Win32) Directory holding breezy config dir. Overrides APPDATA "
12275
"BZR_REMOTE_PATH Full name of remote 'brz' command (for brz+ssh:// "
12277
"BRZ_SSH Path to SSH client, or one of paramiko, openssh, "
12280
"BRZ_LOG Location of .brz.log (use '/dev/null' to suppress log).\n"
12281
"BRZ_LOG (Win32) Location of .brz.log (use 'NUL' to suppress log).\n"
12282
"BRZ_COLUMNS Override implicit terminal width.\n"
12283
"BRZ_CONCURRENCY Number of processes that can be run concurrently "
12285
"BRZ_PROGRESS_BAR Override the progress display. Values are 'none' or "
12287
"BRZ_PDB Control whether to launch a debugger on error.\n"
12288
"BRZ_SIGQUIT_PDB Control whether SIGQUIT behaves normally or invokes a\n"
12289
" breakin debugger.\n"
12290
"BRZ_TEXTUI_INPUT Force console input mode for prompts to line-based "
12292
" of char-based).\n"
12293
"=================== "
12294
"===========================================================\n"
12297
#: en/help_topics/eol.txt:1
12299
"End of Line Conversion\n"
12300
"======================"
12303
#: en/help_topics/eol.txt:4
12305
"EOL conversion is provided as a content filter where Bazaar internally\n"
12306
"stores a canonical format but outputs a convenience format. See\n"
12307
"``brz help content-filters`` for general information about using these."
12310
#: en/help_topics/eol.txt:8
12312
"Note: Content filtering is only supported in recently added formats,\n"
12313
"e.g. 1.14. Be sure that both the repository *and* the branch are\n"
12314
"in a recent format. (Just setting the format on the repository\n"
12315
"is not enough.) If content filtering does not appear to be working, use\n"
12316
"'brz info -v' to confirm that the branch is using \"Working tree format 5\"\n"
12320
#: en/help_topics/eol.txt:15
12322
"EOL conversion needs to be enabled for selected file patterns using\n"
12323
"rules. See ``brz help rules`` for general information on defining rules.\n"
12324
"Currently, rules are only supported in $brz_HOME/.bazaar/rules (or\n"
12325
"%brz_HOME%/bazaar/2.0/rules on Windows). Branch specific rules will be\n"
12326
"supported in a future verison of Bazaar."
12329
#: en/help_topics/eol.txt:21
12331
"To configure which files to filter, set ``eol`` to one of the values below.\n"
12332
"(If a value is not set, ``exact`` is the default.)"
12335
#: en/help_topics/eol.txt:24
12337
" ========== ===================================== ======================\n"
12338
" Value Checkout end-of-lines as Commit end-of-lines as\n"
12339
" ========== ===================================== ======================\n"
12340
" ``native`` ``crlf`` on Windows, ``lf`` otherwise ``lf``\n"
12341
" ---------- ------------------------------------- ----------------------\n"
12342
" ``lf`` ``lf`` ``lf``\n"
12343
" ---------- ------------------------------------- ----------------------\n"
12344
" ``crlf`` ``crlf`` ``lf``\n"
12345
" ---------- ------------------------------------- ----------------------\n"
12346
" ``exact`` No conversion Exactly as in file\n"
12347
" ========== ===================================== ======================"
12350
#: en/help_topics/eol.txt:36
12352
"Note: For safety reasons, no conversion is applied to any file where a null\n"
12353
"byte is detected in the file."
12356
#: en/help_topics/eol.txt:39
12358
"For users working on a cross-platform project, here is a suggested rule\n"
12359
"to use as a starting point::"
12362
#: en/help_topics/eol.txt:42 en/help_topics/eol.txt:52
12363
#: en/help_topics/eol.txt:67 en/help_topics/eol.txt:82
12369
#: en/help_topics/eol.txt:45
12371
"If you have binary files that do not contain a null byte though, be\n"
12372
"sure to add ``eol = exact`` rules for those as well. You can do this\n"
12373
"by giving more explicit patterns earlier in the rules file. For example::"
12376
#: en/help_topics/eol.txt:49
12382
#: en/help_topics/eol.txt:55
12384
"If your working tree is on a network drive shared by users on different\n"
12385
"operating systems, you typically want to force certain conventions for\n"
12386
"certain files. In that way, if a file is created with the wrong line\n"
12387
"endings or line endings get mixed during editing, it gets committed\n"
12388
"correctly and gets checked out correctly. For example::"
12391
#: en/help_topics/eol.txt:61
12397
#: en/help_topics/eol.txt:64
12403
#: en/help_topics/eol.txt:70
12405
"If you take the care to create files with their required endings, you can\n"
12406
"achieve *almost* the same thing by using ``eol = exact``. It is slightly\n"
12407
"safer to use ``lf`` and ``crlf`` though because edits accidentally\n"
12408
"introducing mixed line endings will be corrected during commit for files\n"
12409
"with those settings."
12412
#: en/help_topics/eol.txt:76
12414
"If you have sample test data that deliberately has text files with mixed\n"
12415
"newline conventions, you can ask for those to be left alone like this::"
12418
#: en/help_topics/eol.txt:79
12420
" [name test_data/]\n"
12424
#: en/help_topics/eol.txt:85
12426
"Note that ``exact`` does not imply the file is binary but it does mean\n"
12427
"that no conversion of end-of-lines will be done. (Bazaar currently relies\n"
12428
"of content analysis to detect binary files for commands like ``diff``.\n"
12429
"In the future, a ``binary = true`` rule may be added but it is not\n"
12433
#: en/help_topics/eol.txt:91
12435
"If you have an existing repository with text files already stored using\n"
12436
"Windows newline conventions (``crlf``), then you may want to keep using "
12438
"convention in the repository. Forcing certain files to this convention\n"
12439
"may also help users who do not have rules configured. To do this, set\n"
12440
"``eol`` to one of the values below."
12443
#: en/help_topics/eol.txt:97
12445
" ============================ ======================== "
12446
"======================\n"
12447
" Value Checkout end-of-lines as Commit end-of-lines "
12449
" ============================ ======================== "
12450
"======================\n"
12451
" ``native-with-crlf-in-repo`` ``crlf`` on Windows, ``crlf``\n"
12452
" ``lf`` otherwise\n"
12453
" ---------------------------- ------------------------ "
12454
"----------------------\n"
12455
" ``lf-with-crlf-in-repo`` ``lf`` ``crlf``\n"
12456
" ---------------------------- ------------------------ "
12457
"----------------------\n"
12458
" ``crlf-with-crlf-in-repo`` ``crlf`` ``crlf``\n"
12459
" ============================ ======================== ======================"
12462
#: en/help_topics/eol.txt:108
12464
"For users working on an existing project that uses Windows newline\n"
12465
"conventions in their Bazaar repository, this rule is suggested as a\n"
12469
#: en/help_topics/eol.txt:112
12472
" eol = native-with-crlf-in-repo"
12475
#: en/help_topics/eol.txt:115
12477
"For new projects, it is recommended that end-of-lines be stored as ``lf``\n"
12478
"and that users stick to the basic settings, i.e. ``native``, ``lf``,\n"
12479
"``crlf`` and ``exact``."
12482
#: en/help_topics/eol.txt:119
12484
"Note: Bazaar's EOL conversion will convert the content of files but\n"
12485
"never reject files because a given line ending or mixed line endings\n"
12486
"are found. A precommit hook should be used if you wish to validate\n"
12487
"(and not just convert) content before committing.\n"
12490
#: en/help_topics/glossary.txt:1
12496
#: en/help_topics/glossary.txt:4
12497
msgid ".. glossary::"
12500
#: en/help_topics/glossary.txt:6
12503
" An ancestor is one of any of the revisions that this revision is based "
12505
" The immediately prior revision has a special name, the\n"
12506
" :term:`parent revision`."
12509
#: en/help_topics/glossary.txt:11
12511
" ancestral parent\n"
12512
" Any branch that has been merged by another branch and then committed\n"
12513
" becomes that branches ancestral parent."
12516
#: en/help_topics/glossary.txt:15
12519
" a line of development. In the simplest of terms, a branch is the record "
12521
" all the commits that have been done. Every :term:`working tree` has a\n"
12522
" branch, but it may be in a different location. The actual revisions\n"
12523
" produced by the commits are stored in a repository, which is sometimes\n"
12524
" shared with other\n"
12528
#: en/help_topics/glossary.txt:23
12530
" A frequent activity done by users within the working tree of a branch is "
12532
" merge another branch. In this way users can share changes between two\n"
12533
" branches -- even if the branch is run by someone else."
12536
#: en/help_topics/glossary.txt:27
12538
" Bazaar's default behavior is to put the repository, branch, and working\n"
12539
" tree all in the same place. This combination is called a standalone "
12541
" If there is no tree, it is called a :term:`standalone branch`. If the\n"
12542
" repository is shared with other branches, it is called a repository "
12544
" A working tree in a different location from its branch is called a\n"
12548
#: en/help_topics/glossary.txt:34
12551
" A bound branch is a branch that does not commit a new revision until "
12553
" the revision has been applied to another branch and first."
12556
#: en/help_topics/glossary.txt:38
12557
msgid " A bound branch is a part of a :term:`heavyweight checkout`."
12560
#: en/help_topics/glossary.txt:40
12563
" A cherrypick is an operation in which the delta between two revisions "
12565
" applied to a working tree. The process is roughly similiar to generating "
12567
" diff between two revisions and applying it to a working tree."
12570
#: en/help_topics/glossary.txt:45
12572
" A cherrypick is a merge in which a range of revisions are selected and\n"
12573
" merged into a working tree . Performing a limited merge is different "
12575
" normal merge because normal merges imply all missing revisions should "
12577
" merged. One of the results of cherrypicking is the creation of "
12579
" ancestors, which are revisons that are missing one or more of their\n"
12583
#: en/help_topics/glossary.txt:52
12585
" A cherrypick in Bazaar is a bit more advanced than the cherrypick with "
12587
" other revision control systems, in that a three way merge is performed\n"
12588
" rather than a strict delta between revisions."
12591
#: en/help_topics/glossary.txt:56
12593
" The downside to cherrypicking is that Bazaar does not track "
12595
" revisions, although this feature is firmly on the wish list."
12598
#: en/help_topics/glossary.txt:59
12600
" A common use-case for cherrypicking is the back-porting of fixes from "
12602
" ongoing branch of development to stable release branches."
12605
#: en/help_topics/glossary.txt:62
12608
" A checkout is essentially a working tree that is linked to a branch at "
12610
" different location."
12613
#: en/help_topics/glossary.txt:66
12615
" Checkouts also have local branches, which function as a local cache. "
12617
" means that checkouts can be used effectively even with branches that "
12619
" accessed through the Internet. Normal checkouts are sometimes called\n"
12620
" heavyweight checkouts to distinguish them from lightweight checkouts."
12623
#: en/help_topics/glossary.txt:71
12625
" A lightweight checkout is a related construct that lacks the local "
12627
" Lightweight checkouts are smaller, but require fast access to the "
12629
" such as on a LAN or local hard disk."
12632
#: en/help_topics/glossary.txt:75
12634
" Checkouts provide a location for people to hack on code and commit. Once "
12636
" user commits, the associated branch is updated with a new revision that\n"
12637
" represents the changes for the commit."
12640
#: en/help_topics/glossary.txt:79
12643
" Directed Acyclic Graph. The graph of revisions where each revision is\n"
12644
" connected to its parent revisions."
12647
#: en/help_topics/glossary.txt:83
12650
" A delta is defined as the changes between two revisions. Any RCS that "
12652
" revisions typically builds a delta in order to perform a diff"
12655
#: en/help_topics/glossary.txt:87
12658
" Merging is the process of applying all the changes that were introduced "
12660
" one branch into another branch, without applying any changes that are\n"
12661
" already common to both branches. Sometimes a user will not want all of "
12663
" changes. For these cases, a user may instead prefer a cherrypick, which\n"
12664
" gives the user the option to apply only those revisions that are wanted."
12667
#: en/help_topics/glossary.txt:94
12669
" As well as altering the working tree, bzr's merge command will also get "
12671
" of the revisions that a branch has, and add metadata indicating that a\n"
12672
" merge has been performed."
12675
#: en/help_topics/glossary.txt:98
12677
" merge, criss-cross\n"
12678
" A failed type of merge caused by two branches merging each other at the\n"
12682
#: en/help_topics/glossary.txt:102
12684
" nuclear launch codes\n"
12685
" Nuclear launch codes are an example of data that has been committed to "
12687
" branch that must be removed at all costs. Imagine if one had access to "
12689
" launch codes for a nuclear warhead, accidentally committed them to a "
12691
" and then pushed the branch to a public place."
12694
#: en/help_topics/glossary.txt:108
12696
" In real world situations most people do not have access to nuclear\n"
12697
" launchcodes. Users may have data such as passwords, proprietary code "
12699
" other sensitive data. Accidental release of this type of data is\n"
12700
" potentially damaging to the branch owner -- perhaps damaging enough "
12702
" the developer may hope for a nuclear disaster!"
12705
#: en/help_topics/glossary.txt:114
12707
" A user dealing with a nuclear launch code problem needs specific data "
12709
" the branch to be exised at all costs and in a rapid manner."
12712
#: en/help_topics/glossary.txt:117
12715
" A library of revisions for branches."
12718
#: en/help_topics/glossary.txt:120
12721
" A revision is one state of the code."
12724
#: en/help_topics/glossary.txt:123
12726
" bzr is snapshot based, meaning that conceptually it stores the whole "
12728
" of the tree at each revision. This is in contrast to changeset based, "
12730
" a revision refers to just the changes that were made in that revision. "
12732
" said \"conceptually\", as internally bzr uses delta compression to "
12734
" amount of data that it stores, and so may only record the changes in a\n"
12735
" revision. However you must always think of a revision as referring to a\n"
12739
#: en/help_topics/glossary.txt:131
12741
" A revision also contains some metadata. In particular it stores the\n"
12742
" committer, and the timestamp when the commit was made, the log message "
12744
" was given, and the nick of the branch on which the commit was made. It "
12746
" stores pointers to the parent revisions, i.e. the revision preceeding "
12748
" and the tip revisions of any branches that were merged. Lastly it stores "
12750
" number of revision properties, these is extra information that can be\n"
12751
" stored with the revision and is immutable, some uses of them are to "
12753
" the author of the patch if it wasn't the committer (when given using "
12755
" --author option of bzr commit), or to store information about the bugs\n"
12756
" fixed in that revision if using the bug-tracker integration."
12759
#: en/help_topics/glossary.txt:142
12761
" A revision also has a name, referred to as a revision id. This is a\n"
12762
" globally unique identifier for the revision so that it can be referred "
12764
" without ambiguity. This means that two revisions are identical, if, and\n"
12765
" only if, they have the same revision id."
12768
#: en/help_topics/glossary.txt:147
12770
" A revision may also be referred to using a revision number, however this "
12772
" not a globally unique identifier, meaning that revision 14 of your "
12774
" may not be the same as revision 14 of my branch, even if they are the "
12776
" project. The only way to know if they are the same revision is to "
12778
" the revision ids. This means that when talking about a revision you "
12780
" either use it's revision id, or also explain which branch you are "
12782
" to when you specify a revision number."
12785
#: en/help_topics/glossary.txt:155
12787
" Tags point at a revision, and so they may also be used to when referring "
12789
" a commit, but again, two different branches may have the same tag name\n"
12790
" pointing to two different revisions, and so you should also give the "
12792
" to which you are referring when stating a tag name."
12795
#: en/help_topics/glossary.txt:160
12797
" revision, ancestor\n"
12798
" An ancestor is one of any of the revisions that this revision is based "
12800
" The immediately prior revision has a special name, the parent revision."
12803
#: en/help_topics/glossary.txt:164
12805
" revision, ghost\n"
12806
" A ghost :term:`revision`, also called a ghost, is a revision that a\n"
12807
" :term:`branch` knows about but does not have."
12810
#: en/help_topics/glossary.txt:168
12812
" Ghost revisions can occur in unusual situations such as the migration "
12814
" branches from foreign revision control systems into Bazaar format."
12817
#: en/help_topics/glossary.txt:171
12819
" Ghost revisions can be scary the first time that a user bumps into "
12821
" Thankfully though, revision ghosts are just like real ghosts (such as "
12823
" are) in that their discorporeal existence typically causes little, if "
12828
#: en/help_topics/glossary.txt:176
12830
" revision, parent\n"
12831
" The revision that comes immediately prior to this revision."
12834
#: en/help_topics/glossary.txt:179
12836
" shared repository\n"
12837
" A shared repository is similar to the traditional concept of a "
12839
" in other VCSs like CVS and Subversion. For example, in Subversion you "
12841
" a remote repository, which is where all of the history is stored, and\n"
12842
" locally you don't have any history information, only a checkout of the\n"
12843
" working tree files. Note that \"Shared\" in this context means shared "
12845
" branches. It *may* be shared between people, but standalone branches\n"
12846
" can also be shared between people."
12849
#: en/help_topics/glossary.txt:188
12851
" In Breezy_ terms, a \"Shared Repository\" is a location where multiple\n"
12852
" branches can **share** their revision history information. In order to\n"
12853
" support decentralized workflows, it is possible for every branch to\n"
12854
" store its own revision history information. But this is often\n"
12855
" inefficient, since related branches share history, and they might as\n"
12856
" well share the storage as well."
12859
#: en/help_topics/glossary.txt:195
12862
" A tag is a nickname for a particular :term:`revision`. The typical use "
12864
" release of the software so you can easily refer to it later."
12867
#: en/help_topics/glossary.txt:199
12870
" A working tree is a directory with project files that a user can edit."
12873
#: en/help_topics/glossary.txt:202
12875
" Unlike a normal directory, a working tree is associated with a\n"
12876
" :term:`branch`. The working tree is the space in which commands such as\n"
12877
" commit and revert operate.\n"
12880
#: en/help_topics/hooks.txt:1
12887
#: en/help_topics/hooks.txt:5 en/help_topics/rules.txt:4
12893
#: en/help_topics/hooks.txt:8
12894
msgid "A hook of type *xxx* of class *yyy* needs to be registered using::"
12897
#: en/help_topics/hooks.txt:10
12898
msgid " yyy.hooks.install_named_hook(\"xxx\", ...)"
12901
#: en/help_topics/hooks.txt:12
12903
"See :doc:`Using hooks<../user-guide/hooks>` in the User Guide for examples."
12906
#: en/help_topics/hooks.txt:14
12908
"The class that contains each hook is given before the hooks it supplies. "
12910
"instance, BranchHooks as the class is the hooks class for\n"
12911
"`breezy.branch.Branch.hooks`."
12914
#: en/help_topics/hooks.txt:18
12916
"Each description also indicates whether the hook runs on the client (the\n"
12917
"machine where bzr was invoked) or the server (the machine addressed by\n"
12918
"the branch URL). These may be, but are not necessarily, the same machine."
12921
#: en/help_topics/hooks.txt:22
12923
"Plugins (including hooks) are run on the server if all of these is true:"
12926
#: en/help_topics/hooks.txt:24
12928
" * The connection is via a smart server (accessed with a URL starting with\n"
12929
" \"bzr://\", \"bzr+ssh://\" or \"bzr+http://\", or accessed via a "
12931
" URL when a smart server is available via HTTP)."
12934
#: en/help_topics/hooks.txt:28
12936
" * The hook is either server specific or part of general infrastructure "
12938
" than client specific code (such as commit)."
12941
#: en/help_topics/hooks.txt:31
12948
#: en/help_topics/hooks.txt:35
12950
"automatic_tag_name\n"
12951
"~~~~~~~~~~~~~~~~~~"
12954
#: en/help_topics/hooks.txt:38 en/help_topics/hooks.txt:56
12955
#: en/help_topics/hooks.txt:102 en/help_topics/hooks.txt:315
12956
msgid "Introduced in: 2.2"
12959
#: en/help_topics/hooks.txt:40
12961
"Called to determine an automatic tag name for a revision.\n"
12962
"automatic_tag_name is called with (branch, revision_id) and should\n"
12963
"return a tag name or None if no tag name could be determined. The\n"
12964
"first non-None tag name returned will be used."
12967
#: en/help_topics/hooks.txt:45
12973
#: en/help_topics/hooks.txt:48 en/help_topics/hooks.txt:346
12974
#: en/help_topics/hooks.txt:360
12975
msgid "Introduced in: 1.8"
12978
#: en/help_topics/hooks.txt:50
12980
"Called with the Branch object that has been opened after a branch is\n"
12984
#: en/help_topics/hooks.txt:53
12986
"post_branch_init\n"
12990
#: en/help_topics/hooks.txt:58
12992
"Called after new branch initialization completes. post_branch_init is\n"
12993
"called with a breezy.branch.BranchInitHookParams. Note that init,\n"
12994
"branch and checkout (both heavyweight and lightweight) will all\n"
12995
"trigger this hook."
12998
#: en/help_topics/hooks.txt:63
13000
"post_change_branch_tip\n"
13001
"~~~~~~~~~~~~~~~~~~~~~~"
13004
#: en/help_topics/hooks.txt:66 en/help_topics/hooks.txt:474
13005
msgid "Introduced in: 1.4"
13008
#: en/help_topics/hooks.txt:68
13010
"Called in bzr client and server after a change to the tip of a branch\n"
13011
"is made. post_change_branch_tip is called with a\n"
13012
"breezy.branch.ChangeBranchTipParams. Note that push, pull, commit,\n"
13013
"uncommit will all trigger this hook."
13016
#: en/help_topics/hooks.txt:73 en/help_topics/hooks.txt:445
13022
#: en/help_topics/hooks.txt:76 en/help_topics/hooks.txt:86
13023
#: en/help_topics/hooks.txt:94 en/help_topics/hooks.txt:110
13024
msgid "Introduced in: 0.15"
13027
#: en/help_topics/hooks.txt:78
13029
"Called in the bzr client after a commit has completed. post_commit is\n"
13030
"called with (local, master, old_revno, old_revid, new_revno,\n"
13031
"new_revid). old_revid is NULL_REVISION for the first commit to a\n"
13035
#: en/help_topics/hooks.txt:83
13041
#: en/help_topics/hooks.txt:88
13043
"Called after a pull operation completes. post_pull is called with a\n"
13044
"breezy.branch.PullResult object and only runs in the bzr client."
13047
#: en/help_topics/hooks.txt:91
13053
#: en/help_topics/hooks.txt:96
13055
"Called after a push operation completes. post_push is called with a\n"
13056
"breezy.branch.BranchPushResult object and only runs in the bzr client."
13059
#: en/help_topics/hooks.txt:99
13065
#: en/help_topics/hooks.txt:104
13067
"Called after a checkout switches branch. post_switch is called with a\n"
13068
"breezy.branch.SwitchHookParams."
13071
#: en/help_topics/hooks.txt:107
13077
#: en/help_topics/hooks.txt:112
13079
"Called in the bzr client after an uncommit completes. post_uncommit is\n"
13080
"called with (local, master, old_revno, old_revid, new_revno,\n"
13081
"new_revid) where local is the local branch or None, master is the\n"
13082
"target branch, and an empty branch receives new_revno of 0, new_revid\n"
13086
#: en/help_topics/hooks.txt:118
13088
"pre_change_branch_tip\n"
13089
"~~~~~~~~~~~~~~~~~~~~~"
13092
#: en/help_topics/hooks.txt:121
13093
msgid "Introduced in: 1.6"
13096
#: en/help_topics/hooks.txt:123
13098
"Called in bzr client and server before a change to the tip of a branch\n"
13099
"is made. pre_change_branch_tip is called with a\n"
13100
"breezy.branch.ChangeBranchTipParams. Note that push, pull, commit,\n"
13101
"uncommit will all trigger this hook."
13104
#: en/help_topics/hooks.txt:128
13110
#: en/help_topics/hooks.txt:131
13111
msgid "Introduced in: 0.91"
13114
#: en/help_topics/hooks.txt:133
13116
"Called after a commit is calculated but before it is completed.\n"
13117
"pre_commit is called with (local, master, old_revno, old_revid,\n"
13118
"future_revno, future_revid, tree_delta, future_tree). old_revid is\n"
13119
"NULL_REVISION for the first commit to a branch, tree_delta is a\n"
13120
"TreeDelta object describing changes from the basis revision. hooks\n"
13121
"MUST NOT modify this delta. future_tree is an in-memory tree obtained\n"
13122
"from CommitBuilder.revision_tree() and hooks MUST NOT modify this\n"
13126
#: en/help_topics/hooks.txt:142
13128
"transform_fallback_location\n"
13129
"~~~~~~~~~~~~~~~~~~~~~~~~~~~"
13132
#: en/help_topics/hooks.txt:145
13133
msgid "Introduced in: 1.9"
13136
#: en/help_topics/hooks.txt:147
13138
"Called when a stacked branch is activating its fallback locations.\n"
13139
"transform_fallback_location is called with (branch, url), and should\n"
13140
"return a new url. Returning the same url allows it to be used as-is,\n"
13141
"returning a different one can be used to cause the branch to stack on\n"
13142
"a closer copy of that fallback_location. Note that the branch cannot\n"
13143
"have history accessing methods called on it during this hook because\n"
13144
"the fallback locations have not been activated. When there are\n"
13145
"multiple hooks installed for transform_fallback_location, all are\n"
13146
"called with the url returned from the previous hook.The order is\n"
13147
"however undefined."
13150
#: en/help_topics/hooks.txt:158
13152
"SmartClientHooks\n"
13156
#: en/help_topics/hooks.txt:161
13162
#: en/help_topics/hooks.txt:164
13163
msgid "Introduced in: unknown"
13166
#: en/help_topics/hooks.txt:166
13168
"Called when the smart client is submitting a request to the smart\n"
13169
"server. Called with a breezy.bzr.smart.client.CallHookParams object.\n"
13170
"Streaming request bodies, and responses, are not accessible."
13173
#: en/help_topics/hooks.txt:170
13175
"SmartServerHooks\n"
13179
#: en/help_topics/hooks.txt:173
13181
"server_exception\n"
13185
#: en/help_topics/hooks.txt:176 en/help_topics/hooks.txt:274
13186
#: en/help_topics/hooks.txt:282 en/help_topics/hooks.txt:289
13187
#: en/help_topics/hooks.txt:297 en/help_topics/hooks.txt:304
13188
#: en/help_topics/hooks.txt:426
13189
msgid "Introduced in: 2.4"
13192
#: en/help_topics/hooks.txt:178
13194
"Called by the bzr server when an exception occurs. server_exception is\n"
13195
"called with the sys.exc_info() tuple return true for the hook if the\n"
13196
"exception has been handled, in which case the server will exit\n"
13200
#: en/help_topics/hooks.txt:183
13206
#: en/help_topics/hooks.txt:186 en/help_topics/hooks.txt:205
13207
msgid "Introduced in: 0.16"
13210
#: en/help_topics/hooks.txt:188
13212
"Called by the bzr server when it starts serving a directory.\n"
13213
"server_started is called with (backing urls, public url), where\n"
13214
"backing_url is a list of URLs giving the server-specific directory\n"
13215
"locations, and public_url is the public URL for the directory being\n"
13219
#: en/help_topics/hooks.txt:194
13221
"server_started_ex\n"
13222
"~~~~~~~~~~~~~~~~~"
13225
#: en/help_topics/hooks.txt:197 en/help_topics/hooks.txt:226
13226
#: en/help_topics/hooks.txt:238 en/help_topics/hooks.txt:247
13227
msgid "Introduced in: 1.17"
13230
#: en/help_topics/hooks.txt:199
13232
"Called by the bzr server when it starts serving a directory.\n"
13233
"server_started is called with (backing_urls, server_obj)."
13236
#: en/help_topics/hooks.txt:202
13242
#: en/help_topics/hooks.txt:207
13244
"Called by the bzr server when it stops serving a directory.\n"
13245
"server_stopped is called with the same parameters as the\n"
13246
"server_started hook: (backing_urls, public_url)."
13249
#: en/help_topics/hooks.txt:211
13255
#: en/help_topics/hooks.txt:214
13261
#: en/help_topics/hooks.txt:217
13262
msgid "Introduced in: 1.13"
13265
#: en/help_topics/hooks.txt:219
13267
"Called after creating a command object to allow modifications such as\n"
13268
"adding or removing options, docs etc. Called with the new\n"
13269
"breezy.commands.Command object."
13272
#: en/help_topics/hooks.txt:223
13278
#: en/help_topics/hooks.txt:228
13280
"Called when creating a single command. Called with (cmd_or_None,\n"
13281
"command_name). get_command should either return the cmd_or_None\n"
13282
"parameter, or a replacement Command object that should be used for the\n"
13283
"command. Note that the Command.hooks hooks are core infrastructure.\n"
13284
"Many users will prefer to use breezy.commands.register_command or\n"
13285
"plugin_cmds.register_lazy."
13288
#: en/help_topics/hooks.txt:235
13290
"get_missing_command\n"
13291
"~~~~~~~~~~~~~~~~~~~"
13294
#: en/help_topics/hooks.txt:240
13296
"Called when creating a single command if no command could be found.\n"
13297
"Called with (command_name). get_missing_command should either return\n"
13298
"None, or a Command object to be used for the command."
13301
#: en/help_topics/hooks.txt:244
13307
#: en/help_topics/hooks.txt:249
13309
"Called when enumerating commands. Called with a set of cmd_name\n"
13310
"strings for all the commands found so far. This set is safe to mutate\n"
13311
"- e.g. to remove a command. list_commands should return the updated\n"
13312
"set of command names."
13315
#: en/help_topics/hooks.txt:254
13321
#: en/help_topics/hooks.txt:257 en/help_topics/hooks.txt:264
13322
msgid "Introduced in: 2.6"
13325
#: en/help_topics/hooks.txt:259
13326
msgid "Called after executing a command. Called with the command object."
13329
#: en/help_topics/hooks.txt:261
13335
#: en/help_topics/hooks.txt:266
13336
msgid "Called prior to executing a command. Called with the command object."
13339
#: en/help_topics/hooks.txt:268
13345
#: en/help_topics/hooks.txt:271
13351
#: en/help_topics/hooks.txt:276
13353
"Invoked when a config option is read. The signature is (stack, name,\n"
13357
#: en/help_topics/hooks.txt:279
13363
#: en/help_topics/hooks.txt:284
13364
msgid "Invoked when a config store is loaded. The signature is (store)."
13367
#: en/help_topics/hooks.txt:286
13373
#: en/help_topics/hooks.txt:291
13375
"Invoked when a config option is removed. The signature is (stack,\n"
13379
#: en/help_topics/hooks.txt:294
13385
#: en/help_topics/hooks.txt:299
13386
msgid "Invoked when a config store is saved. The signature is (store)."
13389
#: en/help_topics/hooks.txt:301
13395
#: en/help_topics/hooks.txt:306
13397
"Invoked when a config option is set. The signature is (stack, name,\n"
13401
#: en/help_topics/hooks.txt:309
13403
"ControlDirHooks\n"
13407
#: en/help_topics/hooks.txt:312
13413
#: en/help_topics/hooks.txt:317
13415
"Invoked after a repository has been initialized. post_repo_init is\n"
13416
"called with a breezy.controldir.RepoInitHookParams."
13419
#: en/help_topics/hooks.txt:320
13425
#: en/help_topics/hooks.txt:323
13426
msgid "Introduced in: 1.14"
13429
#: en/help_topics/hooks.txt:325
13431
"Invoked before attempting to open a ControlDir with the transport that\n"
13432
"the open will use."
13435
#: en/help_topics/hooks.txt:328
13441
#: en/help_topics/hooks.txt:331
13447
#: en/help_topics/hooks.txt:334 en/help_topics/hooks.txt:353
13448
#: en/help_topics/hooks.txt:524
13449
msgid "Introduced in: 1.15"
13452
#: en/help_topics/hooks.txt:336
13454
"Invoked when displaying the statistics for a repository. repository is\n"
13455
"called with a statistics dictionary as returned by the repository and\n"
13456
"a file-like object to write to."
13459
#: en/help_topics/hooks.txt:340
13465
#: en/help_topics/hooks.txt:343
13471
#: en/help_topics/hooks.txt:348
13472
msgid "Called with a breezy.lock.LockResult when a physical lock is acquired."
13475
#: en/help_topics/hooks.txt:350
13481
#: en/help_topics/hooks.txt:355
13482
msgid "Called with a breezy.lock.LockResult when a physical lock is broken."
13485
#: en/help_topics/hooks.txt:357
13491
#: en/help_topics/hooks.txt:362
13492
msgid "Called with a breezy.lock.LockResult when a physical lock is released."
13495
#: en/help_topics/hooks.txt:364
13501
#: en/help_topics/hooks.txt:367
13503
"merge_file_content\n"
13504
"~~~~~~~~~~~~~~~~~~"
13507
#: en/help_topics/hooks.txt:370
13508
msgid "Introduced in: 2.1"
13511
#: en/help_topics/hooks.txt:372
13513
"Called with a breezy.merge.Merger object to create a per file merge\n"
13514
"object when starting a merge. Should return either None or a subclass\n"
13515
"of ``breezy.merge.AbstractPerFileMerger``. Such objects will then be\n"
13516
"called per file that needs to be merged (including when one side has\n"
13517
"deleted the file and the other has changed it). See the\n"
13518
"AbstractPerFileMerger API docs for details on how it is used by merge."
13521
#: en/help_topics/hooks.txt:379
13527
#: en/help_topics/hooks.txt:382 en/help_topics/hooks.txt:390
13528
#: en/help_topics/hooks.txt:440 en/help_topics/hooks.txt:458
13529
#: en/help_topics/hooks.txt:466 en/help_topics/hooks.txt:512
13530
msgid "Introduced in: 2.5"
13533
#: en/help_topics/hooks.txt:384
13535
"Called after a merge. Receives a Merger object as the single argument.\n"
13536
"The return value is ignored."
13539
#: en/help_topics/hooks.txt:387
13545
#: en/help_topics/hooks.txt:392
13547
"Called before a merge. Receives a Merger object as the single\n"
13551
#: en/help_topics/hooks.txt:395
13553
"MergeDirectiveHooks\n"
13554
"-------------------"
13557
#: en/help_topics/hooks.txt:398
13559
"merge_request_body\n"
13560
"~~~~~~~~~~~~~~~~~~"
13563
#: en/help_topics/hooks.txt:401
13564
msgid "Introduced in: 1.15.0"
13567
#: en/help_topics/hooks.txt:403
13569
"Called with a MergeRequestBodyParams when a body is needed for a merge\n"
13570
"request. Callbacks must return a body. If more than one callback is\n"
13571
"registered, the output of one callback is provided to the next."
13574
#: en/help_topics/hooks.txt:407
13576
"MessageEditorHooks\n"
13577
"------------------"
13580
#: en/help_topics/hooks.txt:410
13582
"commit_message_template\n"
13583
"~~~~~~~~~~~~~~~~~~~~~~~"
13586
#: en/help_topics/hooks.txt:413
13587
msgid "Introduced in: 1.10"
13590
#: en/help_topics/hooks.txt:415
13592
"Called when a commit message is being generated.\n"
13593
"commit_message_template is called with the breezy.commit.Commit object\n"
13594
"and the message that is known so far. commit_message_template must\n"
13595
"return a new message to use (which could be the same as it was given).\n"
13596
"When there are multiple hooks registered for commit_message_template,\n"
13597
"they are chained with the result from the first passed into the\n"
13598
"second, and so on."
13601
#: en/help_topics/hooks.txt:423
13603
"set_commit_message\n"
13604
"~~~~~~~~~~~~~~~~~~"
13607
#: en/help_topics/hooks.txt:428
13609
"Set a fixed commit message. set_commit_message is called with the\n"
13610
"breezy.commit.Commit object (so you can also change e.g. revision\n"
13611
"properties by editing commit.builder._revprops) and the message so\n"
13612
"far. set_commit_message must return the message to use or None if it\n"
13613
"should use the message editor as normal."
13616
#: en/help_topics/hooks.txt:434
13618
"MutableTreeHooks\n"
13622
#: en/help_topics/hooks.txt:437
13624
"post_build_tree\n"
13628
#: en/help_topics/hooks.txt:442
13630
"Called after a completely new tree is built. The hook is called with\n"
13631
"the tree as its only argument."
13634
#: en/help_topics/hooks.txt:448
13635
msgid "Introduced in: 2.0"
13638
#: en/help_topics/hooks.txt:450
13640
"Called after a commit is performed on a tree. The hook is called with\n"
13641
"a breezy.mutabletree.PostCommitHookParams object. The mutable tree the\n"
13642
"commit was performed on is available via the mutable_tree attribute of\n"
13646
#: en/help_topics/hooks.txt:455
13652
#: en/help_topics/hooks.txt:460
13654
"Called after a tree transform has been performed on a tree. The hook\n"
13655
"is called with the tree that is being transformed and the transform."
13658
#: en/help_topics/hooks.txt:463
13664
#: en/help_topics/hooks.txt:468
13666
"Called before a tree transform on this tree. The hook is called with\n"
13667
"the tree that is being transformed and the transform."
13670
#: en/help_topics/hooks.txt:471
13676
#: en/help_topics/hooks.txt:476
13678
"Called before a commit is performed on a tree. The start commit hook\n"
13679
"is able to change the tree before the commit takes place. start_commit\n"
13680
"is called with the breezy.mutabletree.MutableTree that the commit is\n"
13681
"being performed on."
13684
#: en/help_topics/hooks.txt:481
13690
#: en/help_topics/hooks.txt:484
13696
#: en/help_topics/hooks.txt:487 en/help_topics/hooks.txt:498
13697
msgid "Introduced in: 2.3"
13700
#: en/help_topics/hooks.txt:489
13702
"Called with argument StatusHookParams after Bazaar has displayed the\n"
13703
"status. StatusHookParams has the attributes (old_tree, new_tree,\n"
13704
"to_file, versioned, show_ids, short, verbose). The last four arguments\n"
13705
"correspond to the command line options specified by the user for the\n"
13706
"status command. to_file is the output stream for writing."
13709
#: en/help_topics/hooks.txt:495
13715
#: en/help_topics/hooks.txt:500
13717
"Called with argument StatusHookParams before Bazaar displays the\n"
13718
"status. StatusHookParams has the attributes (old_tree, new_tree,\n"
13719
"to_file, versioned, show_ids, short, verbose). The last four arguments\n"
13720
"correspond to the command line options specified by the user for the\n"
13721
"status command. to_file is the output stream for writing."
13724
#: en/help_topics/hooks.txt:506
13730
#: en/help_topics/hooks.txt:509
13736
#: en/help_topics/hooks.txt:514
13738
"Called after a new connection is established or a reconnect occurs.\n"
13739
"The sole argument passed is either the connected transport or smart\n"
13743
#: en/help_topics/hooks.txt:518
13745
"RioVersionInfoBuilderHooks\n"
13746
"--------------------------"
13749
#: en/help_topics/hooks.txt:521
13755
#: en/help_topics/hooks.txt:526
13757
"Invoked when adding information about a revision to the RIO stanza\n"
13758
"that is printed. revision is called with a revision object and a RIO\n"
13762
#: en/help_topics/location-alias.txt:1
13764
"Location aliases\n"
13768
#: en/help_topics/location-alias.txt:4
13770
"Bazaar defines several aliases for locations associated with a branch. "
13772
"can be used with most commands that expect a location, such as `brz push`."
13775
#: en/help_topics/location-alias.txt:7
13776
msgid "The aliases are::"
13779
#: en/help_topics/location-alias.txt:9
13781
" :bound The branch this branch is bound to, for bound branches.\n"
13782
" :parent The parent of this branch.\n"
13783
" :public The public location of this branch.\n"
13784
" :push The saved location used for `brz push` with no arguments.\n"
13785
" :submit The submit branch for this branch.\n"
13786
" :this This branch."
13789
#: en/help_topics/location-alias.txt:16
13790
msgid "For example, to push to the parent location::"
13793
#: en/help_topics/location-alias.txt:18
13794
msgid " brz push :parent\n"
13797
#: en/help_topics/log-formats.txt:1
13803
#: en/help_topics/log-formats.txt:4
13805
"A log format controls how information about each revision is displayed.\n"
13806
"The standard log formats are compared below::"
13809
#: en/help_topics/log-formats.txt:7
13811
" Feature long short line\n"
13812
" ---------------------- ------------- ------------ -------------------\n"
13813
" design goal detailed view concise view 1 revision per line\n"
13814
" committer name+email name only name only\n"
13815
" author name+email - -\n"
13816
" date-time format full date only date only\n"
13817
" commit message full full top line\n"
13818
" tags yes yes yes\n"
13819
" merges indicator - yes -\n"
13820
" status/delta optional optional -\n"
13821
" diff/patch optional optional -\n"
13822
" revision-id optional optional -\n"
13823
" branch nick yes - -\n"
13824
" foreign vcs properties yes yes -\n"
13825
" preferred levels all 1 1\n"
13826
" digital signature optional - -"
13829
#: en/help_topics/log-formats.txt:24
13831
"The default format is ``long``. To change this, define the ``log_format``\n"
13832
"setting in the ``[DEFAULT]`` section of ``breezy.conf`` like this (say)::"
13835
#: en/help_topics/log-formats.txt:27
13838
" log_format = short"
13841
#: en/help_topics/log-formats.txt:30
13843
"Alternatively, to change the log format used for a given query, use the\n"
13844
"--long, --short or --line options."
13847
#: en/help_topics/log-formats.txt:33
13849
"If one of the standard log formats does not meet your needs, additional\n"
13850
"formats can be provided by plugins.\n"
13853
#: en/help_topics/missing-extensions.txt:1
13855
"Missing Extensions\n"
13856
"=================="
13859
#: en/help_topics/missing-extensions.txt:4
13861
"Breezy gives a warning if it failed to load some compiled extensions. (See\n"
13862
"http://bazaarvcs.wordpress.com/2009/09/17/extension-warnings/ for "
13866
#: en/help_topics/missing-extensions.txt:7
13868
"This may indicate either that there's been a problem installing or "
13870
"Breezy, or it may just be a case where you don't want to use the compiled\n"
13874
#: en/help_topics/missing-extensions.txt:11
13876
"1. If you installed Breezy from an official binary package or a "
13878
"and you're seeing this warning, please report a bug."
13881
#: en/help_topics/missing-extensions.txt:14
13883
"2. If you're running Breezy from a source tree or tarball, please run 'make' "
13885
"that directory to compile the extensions. You should do this every time you\n"
13886
"update the tree. To do this you will need some build dependencies installed\n"
13887
"including make, a C compiler, and the Python header files."
13890
#: en/help_topics/missing-extensions.txt:19
13892
"3. If you can't or don't want to build the extensions, add this line to\n"
13893
"breezy.conf (whose location is shown by 'brz --version')::"
13896
#: en/help_topics/missing-extensions.txt:22
13897
msgid " suppress_warnings=missing_extensions"
13900
#: en/help_topics/missing-extensions.txt:24
13901
msgid "Breezy will work normally but some operations may be slower."
13904
#: en/help_topics/missing-extensions.txt:26
13905
msgid "The specific modules that failed, and why, are listed in .brz.log.\n"
13908
#: en/help_topics/other-formats.txt:1
13909
msgid "Other Storage Formats"
13912
#: en/help_topics/other-formats.txt:3
13913
msgid "No experimental formats are available."
13916
#: en/help_topics/other-formats.txt:5
13919
"No deprecated formats are available."
13922
#: en/help_topics/patterns.txt:1
13928
#: en/help_topics/patterns.txt:4
13930
"Bazaar uses patterns to match files at various times. For example,\n"
13931
"the ``add`` command skips over files that match ignore patterns\n"
13932
"and preferences can be associated with files using rule patterns.\n"
13933
"The pattern syntax is described below."
13936
#: en/help_topics/patterns.txt:9
13938
"Trailing slashes on patterns are ignored. If the pattern contains a\n"
13939
"slash or is a regular expression, it is compared to the whole path\n"
13940
"from the branch root. Otherwise, it is compared to only the last\n"
13941
"component of the path. To match a file only in the root directory,\n"
13942
"prepend ``./``. Patterns specifying absolute paths are not allowed."
13945
#: en/help_topics/patterns.txt:15
13946
msgid "Patterns may include globbing wildcards such as::"
13949
#: en/help_topics/patterns.txt:17
13951
" ? - Matches any single character except '/'\n"
13952
" * - Matches 0 or more characters except '/'\n"
13953
" /**/ - Matches 0 or more directories in a path\n"
13954
" [a-z] - Matches a single character from within a group of characters"
13957
#: en/help_topics/patterns.txt:22
13959
"Patterns may also be `Python regular expressions`_. Regular expression\n"
13960
"patterns are identified by a ``RE:`` prefix followed by the regular\n"
13961
"expression. Regular expression patterns may not include named or\n"
13965
#: en/help_topics/patterns.txt:27
13967
"Case insensitive ignore patterns can be specified with regular expressions\n"
13968
"by using the ``i`` (for ignore case) flag in the pattern."
13971
#: en/help_topics/patterns.txt:30
13972
msgid "For example, a case insensitive match for ``foo`` may be specified as::"
13975
#: en/help_topics/patterns.txt:32
13976
msgid " RE:(?i)foo"
13979
#: en/help_topics/patterns.txt:34
13981
"Ignore patterns may be prefixed with ``!``, which means that a filename\n"
13982
"matched by that pattern will not be ignored."
13985
#: en/help_topics/patterns.txt:37
13986
msgid ".. _Python regular expressions: http://docs.python.org/library/re.html"
13989
#: en/help_topics/revisionspec.txt:1
13990
msgid "Revision Identifiers"
13993
#: en/help_topics/revisionspec.txt:3
13995
"A revision identifier refers to a specific state of a branch's history. It\n"
13996
"can be expressed in several ways. It can begin with a keyword to\n"
13997
"unambiguously specify a given lookup type; some examples are 'last:1',\n"
13998
"'before:yesterday' and 'submit:'."
14001
#: en/help_topics/revisionspec.txt:8
14003
"Alternately, it can be given without a keyword, in which case it will be\n"
14004
"checked as a revision number, a tag, a revision id, a date specification, or "
14006
"branch specification, in that order. For example, 'date:today' could be\n"
14007
"written as simply 'today', though if you have a tag called 'today' that "
14012
#: en/help_topics/revisionspec.txt:14
14014
"If 'REV1' and 'REV2' are revision identifiers, then 'REV1..REV2' denotes a\n"
14015
"revision range. Examples: '3647..3649', 'date:yesterday..-1' and\n"
14016
"'branch:/path/to/branch1/..branch:/branch2' (note that there are no quotes "
14018
"spaces around the '..')."
14021
#: en/help_topics/revisionspec.txt:19
14023
"Ranges are interpreted differently by different commands. To the \"log\" "
14025
"a range is a sequence of log messages, but to the \"diff\" command, the "
14027
"denotes a change between revisions (and not a sequence of changes). In\n"
14028
"addition, \"log\" considers a closed range whereas \"diff\" and \"merge\" "
14030
"to be open-ended, that is, they include one end but not the other. For "
14032
"\"brz log -r 3647..3649\" shows the messages of revisions 3647, 3648 and "
14034
"while \"brz diff -r 3647..3649\" includes the changes done in revisions 3648 "
14036
"3649, but not 3647."
14039
#: en/help_topics/revisionspec.txt:28
14040
msgid "The keywords used as revision selection methods are the following:"
14043
#: en/help_topics/revisionspec.txt:30
14046
"\tSelects a revision using the revision id.\n"
14048
"\tSelects a common ancestor with the submit branch.\n"
14050
"\tSelects a common ancestor with a second branch.\n"
14052
"\tSelects a revision on the basis of a datestamp.\n"
14054
"\tSelects the last revision of a specified branch.\n"
14056
"\tSelects a revision identified by a tag name.\n"
14058
"\tSelects a revision using a number.\n"
14060
"\tSelects the parent of the revision specified.\n"
14062
"\tSelect the revision that last modified the specified line.\n"
14064
"\tSelect mainline revision that merged the specified revision.\n"
14066
"\tSelects a revision using a Git revision sha1.\n"
14068
"\tSelects the nth revision from the end."
14071
#: en/help_topics/revisionspec.txt:55
14072
msgid "In addition, plugins can provide other keywords."
14075
#: en/help_topics/revisionspec.txt:57
14076
msgid "A detailed description of each keyword is given below."
14079
#: en/help_topics/revisionspec.txt:59
14083
#: en/help_topics/revisionspec.txt:61
14085
" Supply a specific revision id, that can be used to specify any\n"
14086
" revision id in the ancestry of the branch.\n"
14087
" Including merges, and pending merges.\n"
14091
#: en/help_topics/revisionspec.txt:66
14093
" revid:aaaa@bbbb-123456789 -> Select revision 'aaaa@bbbb-123456789'"
14096
#: en/help_topics/revisionspec.txt:68
14100
#: en/help_topics/revisionspec.txt:70
14102
" Diffing against this shows all the changes that were made in this "
14104
" and is a good predictor of what merge will do. The submit branch is\n"
14105
" used by the bundle and merge directive commands. If no submit branch\n"
14106
" is specified, the parent branch is used instead."
14109
#: en/help_topics/revisionspec.txt:75 en/help_topics/revisionspec.txt:87
14111
" The common ancestor is the last revision that existed in both\n"
14112
" branches. Usually this is the branch point, but it could also be\n"
14113
" a revision that was merged."
14116
#: en/help_topics/revisionspec.txt:79 en/help_topics/revisionspec.txt:95
14117
#: en/help_topics/revisionspec.txt:111 en/help_topics/revisionspec.txt:121
14118
#: en/help_topics/revisionspec.txt:155
14119
msgid " Examples::"
14122
#: en/help_topics/revisionspec.txt:81
14123
msgid " $ bzr diff -r submit:"
14126
#: en/help_topics/revisionspec.txt:83
14130
#: en/help_topics/revisionspec.txt:85
14131
msgid " Supply the path to a branch to select the common ancestor."
14134
#: en/help_topics/revisionspec.txt:91
14136
" This is frequently used with 'diff' to return all of the changes\n"
14137
" that your branch introduces, while excluding the changes that you\n"
14138
" have not merged from the remote branch."
14141
#: en/help_topics/revisionspec.txt:97
14143
" ancestor:/path/to/branch\n"
14144
" $ bzr diff -r ancestor:../../mainline/branch"
14147
#: en/help_topics/revisionspec.txt:100
14151
#: en/help_topics/revisionspec.txt:102
14153
" Supply a datestamp to select the first revision that matches the date.\n"
14154
" Date can be 'yesterday', 'today', 'tomorrow' or a YYYY-MM-DD string.\n"
14155
" Matches the first entry after a given date (either at midnight or\n"
14156
" at a specified time)."
14159
#: en/help_topics/revisionspec.txt:107
14160
msgid " One way to display all the changes since yesterday would be::"
14163
#: en/help_topics/revisionspec.txt:109
14164
msgid " brz log -r date:yesterday.."
14167
#: en/help_topics/revisionspec.txt:113
14169
" date:yesterday -> select the first revision since "
14171
" date:2006-08-14,17:10:14 -> select the first revision after\n"
14172
" August 14th, 2006 at 5:10pm."
14175
#: en/help_topics/revisionspec.txt:117
14179
#: en/help_topics/revisionspec.txt:119
14180
msgid " Supply the path to a branch to select its last revision."
14183
#: en/help_topics/revisionspec.txt:123
14184
msgid " branch:/path/to/branch"
14187
#: en/help_topics/revisionspec.txt:125
14191
#: en/help_topics/revisionspec.txt:127
14192
msgid " Tags are stored in the branch and created by the 'tag' command."
14195
#: en/help_topics/revisionspec.txt:129
14199
#: en/help_topics/revisionspec.txt:131
14201
" Use an integer to specify a revision in the history of the branch.\n"
14202
" Optionally a branch can be specified. A negative number will count\n"
14203
" from the end of the branch (-1 is the last revision, -2 the previous\n"
14204
" one). If the negative number is larger than the branch's history, the\n"
14205
" first revision is returned.\n"
14209
#: en/help_topics/revisionspec.txt:138
14211
" revno:1 -> return the first revision of this branch\n"
14212
" revno:3:/path/to/branch -> return the 3rd revision of\n"
14213
" the branch '/path/to/branch'\n"
14214
" revno:-1 -> The last revision in a branch.\n"
14215
" -2:http://other/branch -> The second to last revision in the\n"
14216
" remote branch.\n"
14217
" -1000000 -> Most likely the first revision, unless\n"
14218
" your history is very long."
14221
#: en/help_topics/revisionspec.txt:147
14225
#: en/help_topics/revisionspec.txt:149
14227
" Supply any revision spec to return the parent of that revision. This "
14229
" mostly useful when inspecting revisions that are not in the revision "
14234
#: en/help_topics/revisionspec.txt:153
14236
" It is an error to request the parent of the null revision (before:0)."
14239
#: en/help_topics/revisionspec.txt:157
14241
" before:1913 -> Return the parent of revno 1913 (revno 1912)\n"
14242
" before:revid:aaaa@bbbb-1234567890 -> return the parent of revision\n"
14243
" aaaa@bbbb-1234567890\n"
14244
" bzr diff -r before:1913..1913\n"
14245
" -> Find the changes between revision 1913 and its parent "
14247
" (What changes did revision 1913 introduce).\n"
14248
" This is equivalent to: bzr diff -c 1913"
14251
#: en/help_topics/revisionspec.txt:165
14255
#: en/help_topics/revisionspec.txt:167
14257
" Select the revision that last modified the specified line. Line is\n"
14258
" specified as path:number. Path is a relative path to the file. "
14260
" start at 1, and are relative to the current version, not the last-\n"
14261
" committed version of the file."
14264
#: en/help_topics/revisionspec.txt:172
14268
#: en/help_topics/revisionspec.txt:174
14270
" Select the revision that merged the specified revision into mainline."
14273
#: en/help_topics/revisionspec.txt:176
14277
#: en/help_topics/revisionspec.txt:178
14281
#: en/help_topics/revisionspec.txt:180
14283
" Supply a positive number to get the nth revision from the end.\n"
14284
" This is the same as supplying negative numbers to the 'revno:' spec.\n"
14288
#: en/help_topics/revisionspec.txt:184
14290
" last:1 -> return the last revision\n"
14291
" last:3 -> return the revision 2 before the end.\n"
14294
#: en/help_topics/rules.txt:1
14300
#: en/help_topics/rules.txt:7
14302
"Rules are defined in ini file format where the sections are file glob\n"
14303
"patterns and the contents of each section are the preferences for files\n"
14304
"matching that pattern(s). For example::"
14307
#: en/help_topics/rules.txt:11
14313
#: en/help_topics/rules.txt:14
14315
" [name *.html *.xml]\n"
14316
" keywords = xml_escape"
14319
#: en/help_topics/rules.txt:17
14321
"Preferences like these are useful for commands and plugins wishing to\n"
14322
"provide custom behaviour for selected files. For more information on \n"
14323
"end of line conversion see :doc:`eol-help`.\n"
14324
"Keyword support is provided by the `keywords plugin\n"
14325
"<http://doc.bazaar.canonical.com/plugins/en/keywords-plugin.html>`_."
14328
#: en/help_topics/rules.txt:23
14334
#: en/help_topics/rules.txt:26
14336
"Default rules for all branches are defined in the optional file\n"
14337
"``BRZ_HOME/rules``. "
14340
#: en/help_topics/rules.txt:29
14346
#: en/help_topics/rules.txt:32
14348
"Patterns are ordered and searching stops as soon as one matches.\n"
14349
"As a consequence, more explicit patterns should be placed towards\n"
14350
"the top of the file. Rule patterns use exactly the same conventions\n"
14351
"as ignore patterns. See :doc:`patterns-help` for details."
14354
#: en/help_topics/rules.txt:37
14358
#: en/help_topics/rules.txt:39
14360
" Patterns containing square brackets or spaces should be\n"
14361
" surrounded in quotes to ensure they are correctly parsed.\n"
14364
#: en/help_topics/topics.txt:1
14366
"authentication Information on configuring authentication\n"
14367
"basic Basic commands\n"
14368
"branches Information on what a branch is\n"
14369
"bugs Bug tracker settings\n"
14370
"checkouts Information on what a checkout is\n"
14371
"configuration Details on the configuration settings available\n"
14372
"conflict-types Types of conflicts and what to do about them\n"
14373
"content-filters Conversion of content into/from working trees\n"
14374
"criss-cross Information on criss-cross merging\n"
14375
"current-formats Current storage formats\n"
14376
"debug-flags Options to show or record debug information\n"
14377
"diverged-branches How to fix diverged branches\n"
14378
"env-variables Environment variable names and values\n"
14379
"eol Information on end-of-line handling\n"
14380
"files Information on configuration and log files\n"
14381
"formats Information on choosing a storage format\n"
14382
"git Using Bazaar with Git\n"
14383
"global-options Options that control how Breezy runs\n"
14384
"glossary Glossary\n"
14385
"hooks Points at which custom processing can be added\n"
14386
"launchpad Using Bazaar with Launchpad.net\n"
14387
"location-alias Aliases for remembered locations\n"
14388
"log-formats Details on the logging formats available\n"
14389
"missing-extensions What to do when compiled extensions are missing\n"
14390
"other-formats Experimental and deprecated storage formats\n"
14391
"patterns Information on the pattern syntax\n"
14392
"repositories Basic information on shared repositories.\n"
14393
"revisionspec Explain how to use --revision\n"
14394
"rules Information on defining rule-based preferences\n"
14395
"standalone-trees Information on what a standalone tree is\n"
14396
"standard-options Options that can be used with any command\n"
14397
"status-flags Help on status flags\n"
14398
"sync-for-reconfigure Steps to resolve \"out-of-sync\" when reconfiguring\n"
14399
"topics Topics list\n"
14400
"url-special-chars Special character handling in URLs\n"
14401
"urlspec Supported transport protocols\n"
14402
"working-trees Information on working trees\n"
14405
#: en/help_topics/url-special-chars.txt:1
14407
"Special character handling in URLs\n"
14408
"=================================="
14411
#: en/help_topics/url-special-chars.txt:4
14412
msgid "Bazaar allows locations to be specified in multiple ways, either:"
14415
#: en/help_topics/url-special-chars.txt:6
14416
msgid " * Fully qualified URLs"
14419
#: en/help_topics/url-special-chars.txt:8
14420
msgid " * File system paths, relative or absolute"
14423
#: en/help_topics/url-special-chars.txt:10
14425
"Internally brz treats all locations as URLs. For any file system paths\n"
14426
"that are specified it will automatically determine the appropriate URL\n"
14427
"representation, and escape special characters where necessary."
14430
#: en/help_topics/url-special-chars.txt:14
14432
"There are a few characters which have special meaning in URLs and need "
14434
"handling to avoid ambiguities. Characters can be escaped with a % and a hex\n"
14435
"value in URLs. Any non-ASCII characters in a file path will automatically "
14437
"urlencoded when the path is converted to a URL."
14440
#: en/help_topics/url-special-chars.txt:19
14442
"URLs represent non-ASCII characters in an encoding defined by the server, "
14444
"usually UTF-8. The % escapes should be of the UTF-8 bytes. Bazaar tries to "
14446
"generous in what it accepts as a URL and to print them in a way that\n"
14447
"will be readable."
14450
#: en/help_topics/url-special-chars.txt:24
14452
"For example, if you have a directory named '/tmp/%2False' these are all "
14454
"ways of accessing the content (0x2F, or 47, is the ASCII code for forward "
14458
#: en/help_topics/url-special-chars.txt:27
14461
" brz log /tmp/%2False\n"
14462
" brz log %2False\n"
14463
" brz log file:///tmp/%252False\n"
14464
" brz log file://localhost/tmp/%252False\n"
14465
" brz log file:%252False"
14468
#: en/help_topics/url-special-chars.txt:34
14469
msgid "These are valid but do not refer to the same file::"
14472
#: en/help_topics/url-special-chars.txt:36
14474
" brz log file:///tmp/%2False (refers to a file called /tmp/\\/alse)\n"
14475
" brz log %252False (refers to a file called /tmp/%252False)"
14478
#: en/help_topics/url-special-chars.txt:39
14480
"Comma also has special meaning in URLs, because it denotes `segment "
14484
#: en/help_topics/url-special-chars.txt:41
14486
"_`segment parameters`: http://www.ietf.org/rfc/rfc3986.txt (section 3.3)"
14489
#: en/help_topics/url-special-chars.txt:43
14491
"Comma is also special in any file system paths that are specified. To use a "
14493
"comma in a file system path, specify a URL and URL encode the comma::"
14496
#: en/help_topics/url-special-chars.txt:46
14498
" brz log foo,branch=bla # path \"foo\" with the segment parameter \"branch"
14499
"\" set to \"bla\"\n"
14500
" brz log file:foo%2Cbranch=bla # path \"foo,branch=bla\"\n"
14501
" brz log file:foo,branch=bla # path \"foo\" with segment parameter \"branch"
14502
"\" set to \"bla\"\n"
14505
#: en/help_topics/urlspec.txt:1
14506
msgid "URL Identifiers"
14509
#: en/help_topics/urlspec.txt:3
14510
msgid "Supported URL prefixes::"
14513
#: en/help_topics/urlspec.txt:5
14515
" bzr:// Fast access using the Bazaar smart server.\n"
14516
" bzr+ssh:// Fast access using the Bazaar smart server over SSH.\n"
14517
" file:// Access using the standard filesystem (default)\n"
14518
" git:// Access using the Git smart server protocol.\n"
14519
" git+ssh:// Access using the Git smart server protocol over SSH.\n"
14520
" http:// Read-only access of branches exported on the web.\n"
14521
" https:// Read-only access of branches exported on the web using "
14523
" sftp:// Access using SFTP (most SSH servers provide SFTP)."
14526
#: en/help_topics/urlspec.txt:14
14527
msgid "Supported modifiers::"
14530
#: en/help_topics/urlspec.txt:16
14531
msgid " gio+ Access using any GIO supported protocols."
14534
#: en/help_topics/urlspec.txt:18
14535
msgid "Breezy supports all of the standard parts within the URL::"
14538
#: en/help_topics/urlspec.txt:20
14539
msgid " <protocol>://[user[:password]@]host[:port]/[path]"
14542
#: en/help_topics/urlspec.txt:22
14543
msgid "allowing URLs such as::"
14546
#: en/help_topics/urlspec.txt:24
14547
msgid " http://brzuser:BadPass@brz.example.com:8080/brz/trunk"
14550
#: en/help_topics/urlspec.txt:26
14552
"For brz+ssh:// and sftp:// URLs, Breezy also supports paths that begin\n"
14553
"with '~' as meaning that the rest of the path should be interpreted\n"
14554
"relative to the remote user's home directory. For example if the user\n"
14555
"``remote`` has a home directory of ``/home/remote`` on the server\n"
14556
"shell.example.com, then::"
14559
#: en/help_topics/urlspec.txt:32
14560
msgid " brz+ssh://remote@shell.example.com/~/myproject/trunk"
14563
#: en/help_topics/urlspec.txt:34
14564
msgid "would refer to ``/home/remote/myproject/trunk``."
14567
#: en/help_topics/urlspec.txt:36
14569
"Many commands that accept URLs also accept location aliases too.\n"
14570
"See :doc:`location-alias-help` and :doc:`url-special-chars-help`.\n"