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: 2018-11-17 19:23+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:2021
117
msgid "Pushed up to revision %d."
120
#: breezy/branch.py:2023
122
msgid "%d tag updated."
123
msgid_plural "%d tags updated."
127
#: breezy/branch.py:2027
128
msgid "No new revisions or tags to push."
131
#: breezy/branch.py:2029
132
msgid "No new revisions to push."
135
#: breezy/branch.py:2049
136
#, python-brace-format
137
msgid "checked branch {0} format {1}"
140
#: breezy/branch.py:2052
142
msgid "found error:%s"
145
#: breezy/builtins.py:258 breezy/builtins.py:3058 breezy/workingtree.py:243
147
msgid "Ignoring files outside view. View is %s"
150
#: breezy/builtins.py:268
152
msgid "brz %s --revision takes exactly one revision identifier"
155
#: breezy/builtins.py:323
156
msgid "Display status summary."
159
#: breezy/builtins.py:325
161
"This reports on versioned and unknown files, reporting them\n"
162
"grouped by state. Possible states are:"
165
#: breezy/builtins.py:328
168
" Versioned in the working copy but not in the previous revision."
171
#: breezy/builtins.py:331
174
" Versioned in the previous revision but removed or deleted\n"
175
" in the working copy."
178
#: breezy/builtins.py:335
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:340
189
" Text has changed since the previous revision."
192
#: breezy/builtins.py:343
195
" File kind has been changed (e.g. from file to directory)."
198
#: breezy/builtins.py:346
201
" Not versioned and not matching an ignore pattern."
204
#: breezy/builtins.py:349
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:354
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:357
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:361
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:366
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:371
243
"To compare the working directory to a specific revision, pass a\n"
244
"single revision to the revision argument."
247
#: breezy/builtins.py:374
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:383
256
msgid "Use short status indicators."
259
# help of 'versioned' option of 'status' command
260
#: breezy/builtins.py:385
261
msgid "Only show versioned files."
264
# help of 'no-pending' option of 'status' command
265
#: breezy/builtins.py:387
266
msgid "Don't show pending merges."
269
# help of 'no-classify' option of 'status' command
270
#: breezy/builtins.py:389
271
msgid "Do not mark object type using indicator."
274
#: breezy/builtins.py:404
275
msgid "brz status --revision takes exactly one or two revision specifiers"
278
#: breezy/builtins.py:448 breezy/builtins.py:5298
279
msgid "You can only supply one of revision_id or --revision"
282
#: breezy/builtins.py:452 breezy/builtins.py:5301
283
msgid "You must supply either --revision or a revision_id"
286
#: breezy/builtins.py:459
288
msgid "Repository %r does not support access to raw revision texts"
291
#: breezy/builtins.py:470
292
#, python-brace-format
293
msgid "The repository {0} contains no revision {1}."
296
#: breezy/builtins.py:477
297
msgid "You cannot specify a NULL revision."
300
#: breezy/builtins.py:483
301
msgid "Remove the working tree from a given branch/checkout."
304
#: breezy/builtins.py:485
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:488
311
msgid "To re-create the working tree, use \"brz checkout\"."
314
# help of 'force' option of 'remove-tree' command
315
#: breezy/builtins.py:494
316
msgid "Remove the working tree even if it has uncommitted or shelved changes."
319
#: breezy/builtins.py:509
320
msgid "No working tree to remove"
323
#: breezy/builtins.py:512
324
msgid "You cannot remove the working tree of a remote path"
327
#: breezy/builtins.py:522
328
msgid "You cannot remove the working tree from a lightweight checkout"
331
#: breezy/builtins.py:563
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:574
339
", the header appears corrupt, try passing -r -1 to set the state to the last "
343
#: breezy/builtins.py:579
344
#, python-brace-format
345
msgid "failed to reset the tree state{0}"
348
#: breezy/builtins.py:583
349
msgid "Show current revision number."
352
#: breezy/builtins.py:585
353
msgid "This is equal to the number of revisions on this branch."
356
#: breezy/builtins.py:599
357
msgid "--tree and --revision can not be used together"
360
#: breezy/builtins.py:615
361
msgid "Revision numbers only make sense for single revisions, not ranges"
364
# help of 'tree' option of 'revno' command
365
#: breezy/builtins.py:638
366
msgid "Show revno of working tree."
369
#: breezy/builtins.py:687
370
msgid "Add specified files or directories."
373
#: breezy/builtins.py:689
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:693
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:701
393
"A warning will be printed when nested trees are encountered,\n"
394
"unless they are explicitly ignored."
397
#: breezy/builtins.py:704
399
"Therefore simply saying 'brz add' will version all files that\n"
400
"are currently unknown."
403
#: breezy/builtins.py:707
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:712
413
"--dry-run will show which files would be added, but not actually\n"
417
#: breezy/builtins.py:715
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:723
430
"Any files matching patterns in the ignore list will not be added\n"
431
"unless they are explicitly mentioned."
434
#: breezy/builtins.py:726
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:733
443
msgid "Don't recursively add the contents of directories."
446
# help of 'file-ids-from' option of 'add' command
447
#: breezy/builtins.py:741
448
msgid "Lookup file ids from this tree."
451
#: breezy/builtins.py:778
452
#, python-brace-format
453
msgid "ignored {0} matching \"{1}\"\n"
456
#: breezy/builtins.py:783
457
msgid "Create a new versioned directory."
460
#: breezy/builtins.py:785
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:792
466
msgid "No error if existing, make parent directories as needed."
469
#: breezy/builtins.py:826
474
#: breezy/builtins.py:870
476
msgid "invalid kind %r specified"
479
#: breezy/builtins.py:908
483
#: breezy/builtins.py:910
484
msgid " brz cp SOURCE... DESTINATION"
487
#: breezy/builtins.py:912
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:916
496
"Files cannot be copied between branches. Only files can be copied\n"
500
#: breezy/builtins.py:932 breezy/builtins.py:1025
501
msgid "missing file argument"
504
#: breezy/builtins.py:938
505
msgid "can not copy root of branch"
508
#: breezy/builtins.py:946
509
msgid "to copy multiple files the destination must be a versioned directory"
512
#: breezy/builtins.py:960 breezy/builtins.py:976
514
msgid "Could not copy %s => %s: %s is not versioned."
517
#: breezy/builtins.py:964
519
msgid "Could not copy %s => %s . %s is not versioned\\."
522
#: breezy/builtins.py:968
524
msgid "Could not copy %s => %s . %s is a directory."
527
#: breezy/builtins.py:980
529
msgid "Could not copy to %s: %s is not a directory."
532
#: breezy/builtins.py:987
533
msgid "Move or rename a file."
536
#: breezy/builtins.py:989
537
msgid " brz mv SOURCE... DESTINATION"
540
#: breezy/builtins.py:991
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:995
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:1001
557
msgid "Files cannot be moved between branches."
560
# help of 'after' option of 'mv' command
561
#: breezy/builtins.py:1008
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:1010
569
msgid "Automatically guess renames."
572
# help of 'dry-run' option of 'mv' command
573
#: breezy/builtins.py:1012
574
msgid "Avoid making changes when guessing renames."
577
#: breezy/builtins.py:1021
578
msgid "--dry-run requires --auto."
581
#: breezy/builtins.py:1031
582
msgid "can not move root of branch"
585
#: breezy/builtins.py:1038
586
msgid "Only one path may be specified to --auto."
589
#: breezy/builtins.py:1041
590
msgid "--after cannot be specified with --auto."
593
#: breezy/builtins.py:1077
594
msgid "to mv multiple files the destination must be a versioned directory"
597
#: breezy/builtins.py:1130
598
msgid "Turn this branch into a mirror of another branch."
601
#: breezy/builtins.py:1132
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:1137
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:1141
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:1145
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:1150
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:1154
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:1162
647
msgid "Show logs of pulled revisions."
650
# help of 'directory' option of 'pull' command
651
#: breezy/builtins.py:1164
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:1167
659
"Perform a local pull in a bound branch. Local pulls are not applied to the "
663
#: breezy/builtins.py:1204
664
msgid "No working tree, ignoring --show-base"
667
#: breezy/builtins.py:1220
668
msgid "No pull location known or specified."
671
#: breezy/builtins.py:1227
673
msgid "Using saved parent location: %s\n"
676
#: breezy/builtins.py:1234 breezy/builtins.py:4494
677
msgid "Cannot use -r with merge directives or bundles"
680
#: breezy/builtins.py:1277
681
msgid "Update a mirror of this branch."
684
#: breezy/builtins.py:1279
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:1282
692
"Some smart servers or protocols *may* put the working tree in place in\n"
696
#: breezy/builtins.py:1285
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:1289
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:1292
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:1296
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:1301
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:1312
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:1315
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:1320
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:1323
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:1328
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:1331
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:1334
774
msgid "Overwrite tags only."
777
# help of 'lossy' option of 'push' command
778
#: breezy/builtins.py:1335
780
"Allow lossy push, i.e. dropping metadata that can't be represented in the "
784
#: breezy/builtins.py:1387
785
msgid "Could not determine branch to refer to."
788
#: breezy/builtins.py:1396
791
"No push location known or specified. To push to the parent branch (at %s), "
792
"use 'brz push :parent'."
795
#: breezy/builtins.py:1402
796
msgid "No push location known or specified."
799
#: breezy/builtins.py:1406
801
msgid "Using saved push location: %s"
804
#: breezy/builtins.py:1417
805
msgid "Create a new branch that is a copy of an existing branch."
808
#: breezy/builtins.py:1419
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:1426
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:1438
827
msgid "Create a branch without a working-tree."
830
# help of 'switch' option of 'branch' command
831
#: breezy/builtins.py:1440
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:1443
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:1447
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:1449
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:1454
856
msgid "Bind new branch to from location."
859
#: breezy/builtins.py:1491
861
msgid "Target directory \"%s\" already exists."
864
#: breezy/builtins.py:1503
866
msgid "Parent of \"%s\" does not exist."
869
#: breezy/builtins.py:1521
870
#, python-brace-format
871
msgid "The branch {0} has no revision {1}."
874
#: breezy/builtins.py:1537 breezy/push.py:54
876
msgid "Created new stacked branch referring to %s."
879
#: breezy/builtins.py:1543
881
msgid "Branched %d revision."
882
msgid_plural "Branched %d revisions."
886
#: breezy/builtins.py:1547 breezy/push.py:57
887
msgid "Created new branch."
890
#: breezy/builtins.py:1552
892
msgid "New branch bound to %s"
895
#: breezy/builtins.py:1557 breezy/builtins.py:6368
897
msgid "Switched to branch: %s"
900
#: breezy/builtins.py:1562
901
msgid "List the branches available at the current location."
904
#: breezy/builtins.py:1564
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:1571
913
"Recursively scan for branches rather than just looking in the specified "
917
#: breezy/builtins.py:1600
921
#: breezy/builtins.py:1612
922
msgid "Create a new checkout of an existing branch."
925
#: breezy/builtins.py:1614
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:1619
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:1626
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:1636
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:1643
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:1645
971
msgid "Hard-link working tree files where possible."
974
#: breezy/builtins.py:1685
976
"Show list of renamed files.\n"
980
#: breezy/builtins.py:1713
981
msgid "Update a working tree to a new revision."
984
#: breezy/builtins.py:1715
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:1719
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:1722
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:1727
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:1730
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:1737
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:1753
1029
msgid "brz update --revision takes exactly one revision"
1032
#: breezy/builtins.py:1761
1033
msgid "brz update can only update a whole tree, not a file or subdirectory"
1036
#: breezy/builtins.py:1792
1037
#, python-brace-format
1038
msgid "Tree is up to date at revision {0} of branch {1}"
1041
#: breezy/builtins.py:1808
1044
"branch has no revision %s\n"
1045
"brz update --revision only works for a revision in the branch history"
1048
#: breezy/builtins.py:1814
1049
#, python-brace-format
1050
msgid "Updated to revision {0} of branch {1}"
1053
#: breezy/builtins.py:1818
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:1827
1060
msgid "Show information about a working tree, branch or repository."
1063
#: breezy/builtins.py:1829
1065
"This command will show all known locations and formats associated to the\n"
1066
"tree, branch or repository."
1069
#: breezy/builtins.py:1832
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:1836
1077
msgid "Branches and working trees will also report any missing revisions."
1080
#: breezy/builtins.py:1838 breezy/builtins.py:3795 breezy/builtins.py:4962
1081
#: breezy/builtins.py:6559 breezy/plugins/fastimport/cmds.py:211
1082
#: breezy/plugins/fastimport/cmds.py:417
1086
#: breezy/builtins.py:1840
1087
msgid " Display information on the format and related locations:"
1090
#: breezy/builtins.py:1842
1094
#: breezy/builtins.py:1844
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:1848
1102
msgid " brz info -v"
1105
#: breezy/builtins.py:1850
1106
msgid " Display the above together with number of committers to the branch:"
1109
#: breezy/builtins.py:1852
1110
msgid " brz info -vv"
1113
#: breezy/builtins.py:1871
1114
msgid "Remove files or directories."
1117
#: breezy/builtins.py:1873
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:1882
1128
msgid "Only remove files that have never been committed."
1131
# help of 'file-deletion-strategy' option of 'remove' command
1132
#: breezy/builtins.py:1884
1133
msgid "The file deletion mode to be used."
1136
# title of 'file-deletion-strategy' option of 'remove' command
1137
#: breezy/builtins.py:1885
1138
msgid "Deletion Strategy"
1141
# help of 'file-deletion-strategy=safe' option of 'remove' command
1142
#: breezy/builtins.py:1886
1143
msgid "Backup changed files (default)."
1146
# help of 'file-deletion-strategy=keep' option of 'remove' command
1147
#: breezy/builtins.py:1887
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:1888
1153
msgid "Don't backup changed files."
1156
#: breezy/builtins.py:1909
1157
msgid "No matching files."
1160
#: breezy/builtins.py:1970
1161
msgid "Reconcile brz metadata in a branch."
1164
#: breezy/builtins.py:1972
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:1977
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:1982
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:1985
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:2052 breezy/builtins.py:2173 breezy/builtins.py:3830
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:2052 breezy/builtins.py:2173 breezy/builtins.py:3830
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:2052 breezy/builtins.py:2173 breezy/builtins.py:3830
1214
msgid "GIT repository."
1217
#: breezy/builtins.py:2053
1218
msgid "Make a directory into a versioned branch."
1221
#: breezy/builtins.py:2055
1223
"Use this to create an empty branch, or before importing an\n"
1227
#: breezy/builtins.py:2058
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:2063
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:2066
1242
msgid "Recipe for importing a tree of files::"
1245
#: breezy/builtins.py:2068
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:2079
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:2082
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:2091
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:2094
1272
msgid "Create a branch without a working tree."
1275
#: breezy/builtins.py:2115 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:2150
1284
"This branch format cannot be set to append-revisions-only. Try --default."
1287
#: breezy/builtins.py:2161
1288
#, python-brace-format
1289
msgid "Created a {0} (format: {1})\n"
1292
#: breezy/builtins.py:2170
1294
msgid "Using shared repository: %s\n"
1297
#: breezy/builtins.py:2174
1298
msgid "Create a shared repository for branches to share storage space."
1301
#: breezy/builtins.py:2176
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:2181
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:2188
1322
" Create a shared repository holding just branches::"
1325
#: breezy/builtins.py:2191
1327
" brz init-repo --no-trees repo\n"
1328
" brz init repo/trunk"
1331
#: breezy/builtins.py:2194
1332
msgid " Make a lightweight checkout elsewhere::"
1335
#: breezy/builtins.py:2196
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:2204
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:2210 breezy/plugins/fastimport/cmds.py:287
1351
msgid "Repository format"
1354
# help of 'no-trees' option of 'init-repository' command
1355
#: breezy/builtins.py:2212
1356
msgid "Branches in the repository will default to not having a working tree."
1359
#: breezy/builtins.py:2243
1360
msgid "Show differences in the working tree, between revisions or branches."
1363
#: breezy/builtins.py:2245
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:2252
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:2255
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:2262
1393
" 2 - unrepresentable changes\n"
1398
#: breezy/builtins.py:2268
1401
" Shows the difference in the working tree versus the last commit::"
1404
#: breezy/builtins.py:2271
1408
#: breezy/builtins.py:2273
1409
msgid " Difference between the working tree and revision 1::"
1412
#: breezy/builtins.py:2275
1413
msgid " brz diff -r1"
1416
#: breezy/builtins.py:2277
1417
msgid " Difference between revision 3 and revision 1::"
1420
#: breezy/builtins.py:2279
1421
msgid " brz diff -r1..3"
1424
#: breezy/builtins.py:2281
1425
msgid " Difference between revision 3 and revision 1 for branch xxx::"
1428
#: breezy/builtins.py:2283
1429
msgid " brz diff -r1..3 xxx"
1432
#: breezy/builtins.py:2285
1433
msgid " The changes introduced by revision 2 (equivalent to -r1..2)::"
1436
#: breezy/builtins.py:2287
1437
msgid " brz diff -c2"
1440
#: breezy/builtins.py:2289
1441
msgid " To see the changes introduced by revision X::"
1444
#: breezy/builtins.py:2291
1445
msgid " brz diff -cX"
1448
#: breezy/builtins.py:2293
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:2297
1456
msgid " brz diff -r<chosen_parent>..X"
1459
#: breezy/builtins.py:2299
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:2302
1466
msgid " brz diff -r-2.."
1469
#: breezy/builtins.py:2304
1470
msgid " Show just the differences for file NEWS::"
1473
#: breezy/builtins.py:2306
1474
msgid " brz diff NEWS"
1477
#: breezy/builtins.py:2308
1478
msgid " Show the differences in working tree xxx for file NEWS::"
1481
#: breezy/builtins.py:2310
1482
msgid " brz diff xxx/NEWS"
1485
#: breezy/builtins.py:2312
1486
msgid " Show the differences from branch xxx to this working tree:"
1489
#: breezy/builtins.py:2314
1490
msgid " brz diff --old xxx"
1493
#: breezy/builtins.py:2316
1494
msgid " Show the differences between two branches for file NEWS::"
1497
#: breezy/builtins.py:2318
1498
msgid " brz diff --old xxx --new yyy NEWS"
1501
#: breezy/builtins.py:2320
1502
msgid " Same as 'brz diff' but prefix paths with old/ and new/::"
1505
#: breezy/builtins.py:2322
1506
msgid " brz diff --prefix old/:new/"
1509
#: breezy/builtins.py:2324
1510
msgid " Show the differences using a custom diff program with options::"
1513
#: breezy/builtins.py:2326
1514
msgid " brz diff --using /usr/bin/diff --diff-options -wu"
1517
# help of 'diff-options' option of 'diff' command
1518
#: breezy/builtins.py:2332
1519
msgid "Pass these options to the external diff program."
1522
# help of 'prefix' option of 'diff' command
1523
#: breezy/builtins.py:2335
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:2338
1531
msgid "Branch/tree to compare from."
1534
# help of 'new' option of 'diff' command
1535
#: breezy/builtins.py:2342
1536
msgid "Branch/tree to compare to."
1539
# help of 'using' option of 'diff' command
1540
#: breezy/builtins.py:2348
1541
msgid "Use this command to compare files."
1544
# help of 'format' option of 'diff' command
1545
#: breezy/builtins.py:2353
1546
msgid "Diff format to use."
1549
# title of 'format' option of 'diff' command
1550
#: breezy/builtins.py:2355
1554
# help of 'context' option of 'diff' command
1555
#: breezy/builtins.py:2357
1556
msgid "How many lines of context to show."
1559
#: breezy/builtins.py:2382
1560
msgid "--prefix expects two values separated by a colon (eg \"old/:new/\")"
1563
#: breezy/builtins.py:2386
1564
msgid "brz diff --revision takes exactly one or two revision specifiers"
1567
#: breezy/builtins.py:2391 breezy/builtins.py:2787 breezy/builtins.py:2795
1568
#, python-brace-format
1569
msgid "{0} and {1} are mutually exclusive"
1572
#: breezy/builtins.py:2411
1574
"List files deleted in the working tree.\n"
1578
#: breezy/builtins.py:2486
1579
msgid "Show the tree root directory."
1582
#: breezy/builtins.py:2488
1584
"The root is the nearest enclosing directory with a .bzr control\n"
1588
#: breezy/builtins.py:2504
1589
msgid "The limit argument must be an integer."
1592
#: breezy/builtins.py:2512
1593
msgid "The levels argument must be an integer."
1596
#: breezy/builtins.py:2517
1597
msgid "Show historical log for a branch or subset of a branch."
1600
#: breezy/builtins.py:2519
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:2524
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:2528
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:2535
1626
msgid ":Output control:"
1629
#: breezy/builtins.py:2537
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:2542
1639
" The following options can be used to control what information is\n"
1643
#: breezy/builtins.py:2545
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:2551
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:2555
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:2559
1667
msgid ":Ordering control:"
1670
#: breezy/builtins.py:2561
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:2566
1679
msgid ":Revision filtering:"
1682
#: breezy/builtins.py:2568
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:2571
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:2576
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:2579
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:2586
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:2593
1723
msgid ":Path filtering:"
1726
#: breezy/builtins.py:2595
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:2599
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:2603
1742
" Historical context is also important when interpreting pathnames of\n"
1743
" renamed files/directories. Consider the following example:"
1746
#: breezy/builtins.py:2606
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:2610
1754
msgid " In this case:"
1757
#: breezy/builtins.py:2612
1758
msgid " * ``brz log guide.txt`` will log the file added in revision 1"
1761
#: breezy/builtins.py:2614
1762
msgid " * ``brz log tutorial.txt`` will log the new file added in revision 3"
1765
#: breezy/builtins.py:2616
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:2619
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:2622
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:2626
1785
msgid ":Other filtering:"
1788
#: breezy/builtins.py:2628
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:2634
1798
msgid ":Tips & tricks:"
1801
#: breezy/builtins.py:2636
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:2642
1811
msgid " You may find it useful to add the aliases below to ``breezy.conf``::"
1814
#: breezy/builtins.py:2644
1818
" top = log -l10 --line\n"
1822
#: breezy/builtins.py:2649
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:2653
1831
" If you are interested in looking deeper into a particular merge X,\n"
1832
" use ``brz log -n0 -rX``."
1835
#: breezy/builtins.py:2656
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:2661
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:2666
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:2675
1861
msgid "Show from oldest to newest."
1864
# help of 'verbose' option of 'log' command
1865
#: breezy/builtins.py:2678
1866
msgid "Show files changed in each revision."
1869
# help of 'change' option of 'log' command
1870
#: breezy/builtins.py:2684
1871
msgid "Show just the specified revision. See also \"help revisionspec\"."
1874
# help of 'authors' option of 'log' command
1875
#: breezy/builtins.py:2688
1876
msgid "What names to list as authors - first, all or committer."
1879
# title of 'authors' option of 'log' command
1880
#: breezy/builtins.py:2689
1884
# help of 'levels' option of 'log' command
1885
#: breezy/builtins.py:2695
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:2705
1891
msgid "Limit the output to the first N revisions."
1894
# help of 'show-diff' option of 'log' command
1895
#: breezy/builtins.py:2710
1896
msgid "Show changes made in each revision as a patch."
1899
# help of 'include-merged' option of 'log' command
1900
#: breezy/builtins.py:2712
1901
msgid "Show merged revisions like --levels 0 does."
1904
# help of 'omit-merges' option of 'log' command
1905
#: breezy/builtins.py:2716
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:2718
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:2722
1918
msgid "Show digital signature validity."
1921
# help of 'match' option of 'log' command
1922
#: breezy/builtins.py:2725
1923
msgid "Show revisions whose properties match this expression."
1926
# help of 'match-message' option of 'log' command
1927
#: breezy/builtins.py:2729
1928
msgid "Show revisions whose message matches this expression."
1931
# help of 'match-committer' option of 'log' command
1932
#: breezy/builtins.py:2733
1933
msgid "Show revisions whose committer matches this expression."
1936
# help of 'match-author' option of 'log' command
1937
#: breezy/builtins.py:2737
1938
msgid "Show revisions whose authors match this expression."
1941
# help of 'match-bugs' option of 'log' command
1942
#: breezy/builtins.py:2741
1943
msgid "Show revisions whose bugs match this expression."
1946
#: breezy/builtins.py:2781
1947
msgid "--exclude-common-ancestry requires -r with two revisions"
1950
#: breezy/builtins.py:2809
1952
msgid "Path unknown at end or start of revision range: %s"
1955
#: breezy/builtins.py:2927
1957
msgid "brz %s doesn't accept two revisions in different branches."
1960
#: breezy/builtins.py:2943
1962
msgid "brz %s --revision takes one or two values."
1965
#: breezy/builtins.py:2988
1967
"List files in a tree.\n"
1971
# help of 'recursive' option of 'ls' command
1972
#: breezy/builtins.py:2997
1973
msgid "Recurse into subdirectories."
1976
# help of 'from-root' option of 'ls' command
1977
#: breezy/builtins.py:2999
1978
msgid "Print paths relative to the root of the branch."
1981
# help of 'unknown' option of 'ls' command
1982
#: breezy/builtins.py:3001
1983
msgid "Print unknown files."
1986
# help of 'versioned' option of 'ls' command
1987
#: breezy/builtins.py:3002
1988
msgid "Print versioned files."
1991
# help of 'ignored' option of 'ls' command
1992
#: breezy/builtins.py:3005
1993
msgid "Print ignored files."
1996
# help of 'kind' option of 'ls' command
1997
#: breezy/builtins.py:3007
1999
"List entries of a particular kind: file, directory, symlink, tree-reference."
2002
#: breezy/builtins.py:3022
2003
msgid "invalid kind specified"
2006
#: breezy/builtins.py:3026
2007
msgid "Cannot set both --verbose and --null"
2010
#: breezy/builtins.py:3035
2011
msgid "cannot specify both --from-root and PATH"
2014
#: breezy/builtins.py:3122
2015
msgid "Ignore specified files or patterns."
2018
#: breezy/builtins.py:3124
2019
msgid "See ``brz help patterns`` for details on the syntax of patterns."
2022
#: breezy/builtins.py:3126
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:3132
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:3137
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:3143
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:3147
2057
"Patterns prefixed with '!!' act as regular ignore patterns, but have\n"
2058
"precedence over the '!' exception patterns."
2061
#: breezy/builtins.py:3150
2065
#: breezy/builtins.py:3152
2067
"* Ignore patterns containing shell wildcards must be quoted from\n"
2068
" the shell on Unix."
2071
#: breezy/builtins.py:3155
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:3158
2080
" Ignore the top level Makefile::"
2083
#: breezy/builtins.py:3161
2084
msgid " brz ignore ./Makefile"
2087
#: breezy/builtins.py:3163
2088
msgid " Ignore .class files in all directories...::"
2091
#: breezy/builtins.py:3165
2092
msgid " brz ignore \"*.class\""
2095
#: breezy/builtins.py:3167
2096
msgid " ...but do not ignore \"special.class\"::"
2099
#: breezy/builtins.py:3169
2100
msgid " brz ignore \"!special.class\""
2103
#: breezy/builtins.py:3171
2104
msgid " Ignore files whose name begins with the \"#\" character::"
2107
#: breezy/builtins.py:3173
2108
msgid " brz ignore \"RE:^#\""
2111
#: breezy/builtins.py:3175 breezy/builtins.py:3179
2112
msgid " Ignore .o files under the lib directory::"
2115
#: breezy/builtins.py:3177
2116
msgid " brz ignore \"lib/**/*.o\""
2119
#: breezy/builtins.py:3181
2120
msgid " brz ignore \"RE:lib/.*\\.o\""
2123
#: breezy/builtins.py:3183
2124
msgid " Ignore everything but the \"debian\" toplevel directory::"
2127
#: breezy/builtins.py:3185
2128
msgid " brz ignore \"RE:(?!debian/).*\""
2131
#: breezy/builtins.py:3187
2133
" Ignore everything except the \"local\" toplevel directory,\n"
2134
" but always ignore autosave files ending in ~, even under local/::"
2137
#: breezy/builtins.py:3190
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:3199
2146
msgid "Display the default ignore rules that brz uses."
2149
#: breezy/builtins.py:3211
2150
msgid "ignore requires at least one NAME_PATTERN or --default-rules."
2153
#: breezy/builtins.py:3222
2155
msgid "Invalid ignore pattern found. %s"
2156
msgid_plural "Invalid ignore patterns found. %s"
2160
#: breezy/builtins.py:3231
2161
msgid "NAME_PATTERN should not be an absolute path"
2164
#: breezy/builtins.py:3244
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:3251
2175
msgid "List ignored files and the patterns that matched them."
2178
#: breezy/builtins.py:3253
2180
"List all the ignored files and the ignore pattern that caused the file to\n"
2184
#: breezy/builtins.py:3256
2185
msgid "Alternatively, to list just the files::"
2188
#: breezy/builtins.py:3258
2189
msgid " brz ls --ignored"
2192
#: breezy/builtins.py:3292
2194
msgid "not a valid revision-number: %r"
2197
#: breezy/builtins.py:3300
2198
msgid "Export current or past revision to a destination directory or archive."
2201
#: breezy/builtins.py:3302
2202
msgid "If no revision is specified this exports the last committed revision."
2205
#: breezy/builtins.py:3304
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:3308
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:3312
2221
"If branch is omitted then the branch containing the current working\n"
2222
"directory will be used."
2225
#: breezy/builtins.py:3315
2226
msgid "Note: Export of tree with non-ASCII filenames to zip is not supported."
2229
#: breezy/builtins.py:3317
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:3332
2244
msgid "Type of file to export to."
2247
# help of 'filters' option of 'export' command
2248
#: breezy/builtins.py:3335
2249
msgid "Apply content filters to export the convenient form."
2252
# help of 'root' option of 'export' command
2253
#: breezy/builtins.py:3339
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:3341
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:3344
2266
msgid "Export the working tree contents rather than that of the last revision."
2269
#: breezy/builtins.py:3364
2270
msgid "--uncommitted requires a working tree"
2273
#: breezy/builtins.py:3392
2275
msgid "Unsupported export format: %s"
2278
#: breezy/builtins.py:3396
2279
msgid "Write the contents of a file as of a given revision to standard output."
2282
#: breezy/builtins.py:3398
2283
msgid "If no revision is nominated, the last revision is used."
2286
#: breezy/builtins.py:3400
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:3407
2294
msgid "The path name in the old tree."
2297
# help of 'filters' option of 'cat' command
2298
#: breezy/builtins.py:3408
2299
msgid "Apply content filters to display the convenience form."
2302
#: breezy/builtins.py:3419
2303
msgid "brz cat --revision takes exactly one revision specifier"
2306
#: breezy/builtins.py:3445 breezy/builtins.py:3457
2307
msgid "{0!r} is not present in revision {1}"
2310
#: breezy/builtins.py:3481
2311
msgid "Commit changes into a new revision."
2314
#: breezy/builtins.py:3483
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:3490
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:3494
2332
msgid ":Selective commits:"
2335
#: breezy/builtins.py:3496
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:3500
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:3504
2350
msgid " brz commit foo -x foo/bar"
2353
#: breezy/builtins.py:3506
2354
msgid " A selective commit after a merge is not yet supported."
2357
#: breezy/builtins.py:3508
2358
msgid ":Custom authors:"
2361
#: breezy/builtins.py:3510
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:3517
2375
#: breezy/builtins.py:3519
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:3525
2385
msgid ":Things to note:"
2388
#: breezy/builtins.py:3527
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:3531
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:3542
2405
msgid "Do not consider changes made to a given path."
2408
# help of 'message' option of 'commit' command
2409
#: breezy/builtins.py:3545
2410
msgid "Description of the new revision."
2413
# help of 'unchanged' option of 'commit' command
2414
#: breezy/builtins.py:3548
2415
msgid "Commit even if nothing has changed."
2418
# help of 'file' option of 'commit' command
2419
#: breezy/builtins.py:3552
2420
msgid "Take commit message from this file."
2423
# help of 'strict' option of 'commit' command
2424
#: breezy/builtins.py:3554
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:3557
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:3561
2437
msgid "Link to a related bug. (see \"brz help bugs\")."
2440
# help of 'fixes' option of 'commit' command
2441
#: breezy/builtins.py:3564
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:3568
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:3571
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:3577
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:3580
2467
"When committing to a foreign version control system do not push data that "
2468
"can not be natively represented."
2471
#: breezy/builtins.py:3597
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:3606
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:3615
2489
msgid "Unrecognized bug %s. Commit refused."
2492
#: breezy/builtins.py:3618
2499
#: breezy/builtins.py:3645
2500
msgid "Could not parse --commit-time: "
2503
#: breezy/builtins.py:3689
2504
msgid "please specify either --message or --file"
2507
#: breezy/builtins.py:3719
2508
msgid "please specify a commit message with either --message or --file"
2511
#: breezy/builtins.py:3722
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:3742
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:3746
2525
"Conflicts detected in working tree. Use \"brz conflicts\" to list, \"brz "
2526
"resolve FILE\" to resolve."
2529
#: breezy/builtins.py:3750
2530
msgid "Commit refused because there are unknown files in the working tree."
2533
#: breezy/builtins.py:3753
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:3761
2542
"Validate working tree structure, branch consistency and repository history."
2545
#: breezy/builtins.py:3763
2547
"This command checks various invariants about branch and repository storage\n"
2548
"to detect data corruption or brz bugs."
2551
#: breezy/builtins.py:3766
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:3769
2560
" This is just the number of revisions checked. It doesn't\n"
2561
" indicate a problem."
2564
#: breezy/builtins.py:3773
2567
" This is just the number of versionedfiles checked. It\n"
2568
" doesn't indicate a problem."
2571
#: breezy/builtins.py:3777
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:3782
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:3786
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:3792
2597
"If no restrictions are specified, all Bazaar data that is found at the "
2599
"location will be checked."
2602
#: breezy/builtins.py:3797
2603
msgid " Check the tree and branch at 'foo'::"
2606
#: breezy/builtins.py:3799
2607
msgid " brz check --tree --branch foo"
2610
#: breezy/builtins.py:3801
2611
msgid " Check only the repository at 'bar'::"
2614
#: breezy/builtins.py:3803
2615
msgid " brz check --repo bar"
2618
#: breezy/builtins.py:3805
2619
msgid " Check everything at 'baz'::"
2622
#: breezy/builtins.py:3807
2623
msgid " brz check baz"
2626
# help of 'branch' option of 'check' command
2627
#: breezy/builtins.py:3813
2628
msgid "Check the branch related to the current directory."
2631
# help of 'repo' option of 'check' command
2632
#: breezy/builtins.py:3815
2633
msgid "Check the repository related to the current directory."
2636
# help of 'tree' option of 'check' command
2637
#: breezy/builtins.py:3817
2638
msgid "Check the working tree related to the current directory."
2641
#: breezy/builtins.py:3831
2642
msgid "Upgrade a repository, branch or working tree to a newer format."
2645
#: breezy/builtins.py:3833
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:3839
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:3846
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:3854
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:3859
2685
"For more information on upgrades, see the Bazaar Upgrade Guide,\n"
2686
"http://doc.bazaar.canonical.com/latest/en/upgrade-guide/."
2689
# help of 'format' option of 'upgrade' command
2690
#: breezy/builtins.py:3867
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:3872
2697
msgid "Branch format"
2700
# help of 'clean' option of 'upgrade' command
2701
#: breezy/builtins.py:3874
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:3876
2708
msgid "Show what would be done, but don't actually do anything."
2711
#: breezy/builtins.py:3891
2712
msgid "Show or set brz user id."
2715
#: breezy/builtins.py:3893
2718
" Show the email of the current user::"
2721
#: breezy/builtins.py:3896
2722
msgid " brz whoami --email"
2725
#: breezy/builtins.py:3898
2726
msgid " Set the current user::"
2729
#: breezy/builtins.py:3900
2730
msgid " brz whoami \"Frank Chu <fchu@example.com>\""
2733
# help of 'email' option of 'whoami' command
2734
#: breezy/builtins.py:3904
2735
msgid "Display email address only."
2738
# help of 'branch' option of 'whoami' command
2739
#: breezy/builtins.py:3906
2740
msgid "Set identity for the current branch instead of globally."
2743
#: breezy/builtins.py:3932
2744
msgid "--email can only be used to display existing identity"
2747
#: breezy/builtins.py:3956
2748
msgid "Print or set the branch nickname."
2751
#: breezy/builtins.py:3958
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:3962
2760
"Bound branches use the nickname of its master branch unless it is set\n"
2764
#: breezy/builtins.py:3983
2765
msgid "Set/unset and display aliases."
2768
#: breezy/builtins.py:3985
2771
" Show the current aliases::"
2774
#: breezy/builtins.py:3988
2778
#: breezy/builtins.py:3990
2779
msgid " Show the alias specified for 'll'::"
2782
#: breezy/builtins.py:3992
2783
msgid " brz alias ll"
2786
#: breezy/builtins.py:3994
2787
msgid " Set an alias for 'll'::"
2790
#: breezy/builtins.py:3996
2791
msgid " brz alias ll=\"log --line -r-10..-1\""
2794
#: breezy/builtins.py:3998
2795
msgid " To remove an alias for 'll'::"
2798
#: breezy/builtins.py:4000
2799
msgid " brz alias --remove ll"
2802
# help of 'remove' option of 'alias' command
2803
#: breezy/builtins.py:4005
2804
msgid "Remove the alias."
2807
#: breezy/builtins.py:4023
2808
msgid "brz alias --remove expects an alias to remove."
2811
#: breezy/builtins.py:4214
2812
msgid "subunit not available. subunit needs to be installed to use --subunit."
2815
#: breezy/builtins.py:4231
2816
msgid "subunit not available. subunit needs to be installed to use --subunit2."
2819
#: breezy/builtins.py:4240
2821
"--benchmark is no longer supported from brz 2.2; use bzr-usertest instead"
2824
#: breezy/builtins.py:4287
2825
msgid "Show version of brz."
2828
# help of 'short' option of 'version' command
2829
#: breezy/builtins.py:4291
2830
msgid "Print just the version number."
2833
#: breezy/builtins.py:4310
2834
msgid "It sure does!\n"
2837
#: breezy/builtins.py:4334
2839
msgid "merge base is revision %s\n"
2842
#: breezy/builtins.py:4339
2843
msgid "Perform a three-way merge."
2846
#: breezy/builtins.py:4341
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:4349
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:4353
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:4356
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:4364
2882
msgid "Revision numbers are always relative to the source branch."
2885
#: breezy/builtins.py:4366 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:4371
2894
msgid "Use brz resolve when you have fixed a problem. See also brz conflicts."
2897
#: breezy/builtins.py:4373
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:4378
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:4382
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:4388
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:4392
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:4395
2937
" To merge all new revisions from brz.dev::"
2940
#: breezy/builtins.py:4398
2941
msgid " brz merge ../brz.dev"
2944
#: breezy/builtins.py:4400
2945
msgid " To merge changes up to and including revision 82 from brz.dev::"
2948
#: breezy/builtins.py:4402
2949
msgid " brz merge -r 82 ../brz.dev"
2952
#: breezy/builtins.py:4404
2953
msgid " To merge the changes introduced by 82, without previous changes::"
2956
#: breezy/builtins.py:4406
2957
msgid " brz merge -r 81..82 ../brz.dev"
2960
#: breezy/builtins.py:4408
2961
msgid " To apply a merge directive contained in /tmp/merge::"
2964
#: breezy/builtins.py:4410
2965
msgid " brz merge /tmp/merge"
2968
#: breezy/builtins.py:4412
2970
" To create a merge revision with three parents from two branches\n"
2971
" feature1a and feature1b:"
2974
#: breezy/builtins.py:4415
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:4427
2983
msgid "Merge even if the destination tree has uncommitted changes."
2986
# help of 'uncommitted' option of 'merge' command
2987
#: breezy/builtins.py:4433
2989
"Apply uncommitted changes from a working copy, instead of branch changes."
2992
# help of 'pull' option of 'merge' command
2993
#: breezy/builtins.py:4435
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:4440
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:4442
3008
msgid "Instead of merging, show a diff of the merge."
3011
# help of 'interactive' option of 'merge' command
3012
#: breezy/builtins.py:4444
3013
msgid "Select changes interactively."
3016
#: breezy/builtins.py:4467
3018
"Merging into empty branches not currently supported, https://bugs.launchpad."
3019
"net/bzr/+bug/308562"
3022
#: breezy/builtins.py:4489
3023
msgid "Cannot use --uncommitted with bundles or merge directives."
3026
#: breezy/builtins.py:4500
3027
msgid "Cannot use --uncommitted and --revision at the same time."
3030
#: breezy/builtins.py:4520
3034
#: breezy/builtins.py:4522 breezy/bundle/apply_bundle.py:65
3035
msgid "Nothing to do."
3038
#: breezy/builtins.py:4527
3039
msgid "Cannot pull individual files"
3042
#: breezy/builtins.py:4535
3043
msgid "This branch has no commits. (perhaps you would prefer 'brz pull')"
3046
#: breezy/builtins.py:4593
3048
msgid "Show-base is not supported for this merge type. %s"
3051
#: breezy/builtins.py:4602
3053
msgid "Conflict reduction is not supported for merge type %s."
3056
#: breezy/builtins.py:4606
3057
msgid "Cannot do conflict reduction and show base."
3060
#: breezy/builtins.py:4615
3061
msgid "Plan file merge unsupported: Merge type incompatible with tree formats."
3064
#: breezy/builtins.py:4726
3065
msgid "No location specified or remembered"
3068
#: breezy/builtins.py:4728
3069
#, python-brace-format
3070
msgid "{0} remembered {1} location {2}"
3073
#: breezy/builtins.py:4734
3074
msgid "Redo a merge."
3077
#: breezy/builtins.py:4736
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:4740
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:4744
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:4748
3099
msgid " brz remerge --show-base"
3102
#: breezy/builtins.py:4750
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:4753
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:4760
3117
msgid "Show base revision text in conflicts."
3120
#: breezy/builtins.py:4773
3122
"Sorry, remerge only works after normal merges. Not cherrypicking or multi-"
3126
#: breezy/builtins.py:4828
3128
"Set files in the working tree back to the contents of a previous revision."
3131
#: breezy/builtins.py:4830
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:4836
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:4845
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:4850
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:4855
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:4860
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:4869
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:4883
3204
msgid "Do not save backups of reverted files."
3207
# help of 'forget-merges' option of 'revert' command
3208
#: breezy/builtins.py:4885
3209
msgid "Remove pending merge marker, without changing any files."
3212
#: breezy/builtins.py:4916
3214
"Show help on a command or other topic.\n"
3218
# help of 'long' option of 'help' command
3219
#: breezy/builtins.py:4921
3220
msgid "Show help on all commands."
3223
#: breezy/builtins.py:4950
3224
msgid "Show unmerged/unpulled revisions between two branches."
3227
#: breezy/builtins.py:4952
3228
msgid "OTHER_BRANCH may be local or remote."
3231
#: breezy/builtins.py:4954
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:4958
3241
" 1 - some missing revisions\n"
3242
" 0 - no missing revisions"
3245
#: breezy/builtins.py:4964
3247
" Determine the missing revisions between this and the branch at the\n"
3248
" remembered pull location::"
3251
#: breezy/builtins.py:4967
3252
msgid " brz missing"
3255
#: breezy/builtins.py:4969
3256
msgid " Determine the missing revisions between this and another branch::"
3259
#: breezy/builtins.py:4971
3260
msgid " brz missing http://server/branch"
3263
#: breezy/builtins.py:4973
3265
" Determine the missing revisions up to a specific revision on the other\n"
3269
#: breezy/builtins.py:4976
3270
msgid " brz missing -r ..-10"
3273
#: breezy/builtins.py:4978
3275
" Determine the missing revisions up to a specific revision on this\n"
3279
#: breezy/builtins.py:4981
3280
msgid " brz missing --my-revision ..-10"
3283
# help of 'reverse' option of 'missing' command
3284
#: breezy/builtins.py:4988
3285
msgid "Reverse the order of revisions."
3288
# help of 'mine-only' option of 'missing' command
3289
#: breezy/builtins.py:4990
3290
msgid "Display changes in the local branch only."
3293
# help of 'this' option of 'missing' command
3294
#: breezy/builtins.py:4991
3295
msgid "Same as --mine-only."
3298
# help of 'theirs-only' option of 'missing' command
3299
#: breezy/builtins.py:4993
3300
msgid "Display changes in the remote branch only."
3303
# help of 'other' option of 'missing' command
3304
#: breezy/builtins.py:4994
3305
msgid "Same as --theirs-only."
3308
# help of 'revision' option of 'missing' command
3309
#: breezy/builtins.py:4999
3311
"Filter on other branch revisions (inclusive). See \"help revisionspec\" for "
3315
# help of 'my-revision' option of 'missing' command
3316
#: breezy/builtins.py:5003
3318
"Filter on local branch revisions (inclusive). See \"help revisionspec\" for "
3322
# help of 'include-merged' option of 'missing' command
3323
#: breezy/builtins.py:5006
3324
msgid "Show all revisions in addition to the mainline ones."
3327
#: breezy/builtins.py:5047
3328
msgid "No peer location known or specified."
3331
#: breezy/builtins.py:5051
3332
#, python-brace-format
3333
msgid "Using saved parent location: {0}\n"
3336
#: breezy/builtins.py:5084
3338
msgid "You have %d extra revision:\n"
3339
msgid_plural "You have %d extra revisions:\n"
3343
#: breezy/builtins.py:5104
3345
msgid "You are missing %d revision:\n"
3346
msgid_plural "You are missing %d revisions:\n"
3350
#: breezy/builtins.py:5119
3351
msgid "This branch has no new revisions.\n"
3354
#: breezy/builtins.py:5122
3355
msgid "Other branch has no new revisions.\n"
3358
#: breezy/builtins.py:5127
3359
msgid "Branches are up to date.\n"
3362
#: breezy/builtins.py:5138
3363
msgid "Compress the data within a repository."
3366
#: breezy/builtins.py:5140
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:5144
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:5150
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:5160
3392
msgid "Delete obsolete packs to save disk space."
3395
#: breezy/builtins.py:5174
3396
msgid "List the installed plugins."
3399
#: breezy/builtins.py:5176
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:5179
3406
msgid "--verbose shows the path where each plugin is located."
3409
#: breezy/builtins.py:5181
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:5187
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:5203
3427
msgid "Show testament (signing-form) of a revision."
3430
# help of 'long' option of 'testament' command
3431
#: breezy/builtins.py:5206
3432
msgid "Produce long-format testament."
3435
# help of 'strict' option of 'testament' command
3436
#: breezy/builtins.py:5208
3437
msgid "Produce a strict-format testament."
3440
#: breezy/builtins.py:5236
3441
msgid "Show the origin of each line in a file."
3444
#: breezy/builtins.py:5238
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:5241
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:5249
3458
msgid "Show annotations on all lines."
3461
# help of 'long' option of 'annotate' command
3462
#: breezy/builtins.py:5250
3463
msgid "Show commit date in annotations."
3466
#: breezy/builtins.py:5340
3467
msgid "Cannot sign a range of non-revision-history revisions"
3470
#: breezy/builtins.py:5353
3471
msgid "Please supply either one revision, or a range."
3474
#: breezy/builtins.py:5357
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:5360
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:5363
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:5379
3494
msgid "No location supplied. This format does not remember old locations."
3497
#: breezy/builtins.py:5385
3498
msgid "Branch is already bound"
3501
#: breezy/builtins.py:5388
3502
msgid "No location supplied and no previous location known"
3505
#: breezy/builtins.py:5395
3506
msgid "These branches have diverged. Try merging, and then bind again."
3509
#: breezy/builtins.py:5402
3510
msgid "Convert the current checkout into a regular branch."
3513
#: breezy/builtins.py:5404
3515
"After unbinding, the local branch is considered independent and subsequent\n"
3516
"commits will be local only."
3519
#: breezy/builtins.py:5415
3520
msgid "Local branch is not bound"
3523
#: breezy/builtins.py:5419
3524
msgid "Remove the last committed revision."
3527
#: breezy/builtins.py:5421
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:5425
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:5429
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:5440
3550
msgid "Don't actually make changes."
3553
# help of 'force' option of 'uncommit' command
3554
#: breezy/builtins.py:5441
3555
msgid "Say yes to all questions."
3558
# help of 'keep-tags' option of 'uncommit' command
3559
#: breezy/builtins.py:5443
3560
msgid "Keep tags that point to removed revisions."
3563
# help of 'local' option of 'uncommit' command
3564
#: breezy/builtins.py:5445
3565
msgid "Only remove the commits from the local branch when in a checkout."
3568
#: breezy/builtins.py:5494
3569
msgid "No revisions to uncommit.\n"
3572
#: breezy/builtins.py:5509
3573
msgid "Dry-run, pretending to remove the above revisions.\n"
3576
#: breezy/builtins.py:5513
3577
msgid "The above revision(s) will be removed.\n"
3580
#: breezy/builtins.py:5517
3581
msgid "Uncommit these revisions"
3584
#: breezy/builtins.py:5520
3588
#: breezy/builtins.py:5528
3591
"You can restore the old tip by running:\n"
3592
" brz pull . -r revid:%s\n"
3595
#: breezy/builtins.py:5534
3596
msgid "Break a dead lock."
3599
#: breezy/builtins.py:5536
3601
"This command breaks a lock on a repository, branch, working directory or\n"
3605
#: breezy/builtins.py:5539
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:5542
3613
"You can get information on what locks are open via the 'brz info\n"
3614
"[location]' command."
3617
#: breezy/builtins.py:5545
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:5554
3627
msgid "LOCATION is the directory where the config lock is."
3630
# help of 'force' option of 'break-lock' command
3631
#: breezy/builtins.py:5556
3632
msgid "Do not ask for confirmation before breaking the lock."
3635
# help of 'protocol=git' option of 'serve' command
3636
#: breezy/builtins.py:5591
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:5591
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:5591
3647
msgid "Git Smart server upload pack command. (inetd mode only)"
3650
# help of 'protocol=bzr' option of 'serve' command
3651
#: breezy/builtins.py:5591
3652
msgid "The Bazaar smart server protocol over TCP. (default port: 4155)"
3655
#: breezy/builtins.py:5592
3656
msgid "Run the brz server."
3659
# help of 'inet' option of 'serve' command
3660
#: breezy/builtins.py:5598
3661
msgid "Serve on stdin/out for use from inetd or sshd."
3664
# title of 'protocol' option of 'serve' command
3665
#: breezy/builtins.py:5599
3669
# help of 'protocol' option of 'serve' command
3670
#: breezy/builtins.py:5600
3671
msgid "Protocol to serve."
3674
# help of 'listen' option of 'serve' command
3675
#: breezy/builtins.py:5605
3676
msgid "Listen for connections on nominated address."
3679
# help of 'port' option of 'serve' command
3680
#: breezy/builtins.py:5608
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:5613
3689
msgid "Serve contents of this directory."
3692
# help of 'allow-writes' option of 'serve' command
3693
#: breezy/builtins.py:5615
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:5624
3704
msgid "Override the default idle client timeout (5min)."
3707
#: breezy/builtins.py:5642
3708
msgid "Combine a tree into its containing tree."
3711
#: breezy/builtins.py:5644
3712
msgid "This command requires the target tree to be in a rich-root format."
3715
#: breezy/builtins.py:5646
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:5650
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:5669
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:5679 breezy/builtins.py:5685
3737
#, python-brace-format
3738
msgid "Cannot join {0}. {1}"
3741
#: breezy/builtins.py:5689
3742
msgid "Split a subdirectory of a tree into a separate tree."
3745
#: breezy/builtins.py:5691
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:5695
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:5777
3760
msgid "No submit branch specified or known"
3763
#: breezy/builtins.py:5787 breezy/send.py:109
3764
msgid "No public branch specified or known"
3767
#: breezy/builtins.py:5792
3768
msgid "brz merge-directive takes at most two one revision identifiers"
3771
#: breezy/builtins.py:5801
3772
msgid "No revisions to bundle."
3775
#: breezy/builtins.py:5820
3776
msgid "Mail or create a merge-directive for submitting changes."
3779
#: breezy/builtins.py:5822
3780
msgid "A merge directive provides many things needed for requesting merges:"
3783
#: breezy/builtins.py:5824
3784
msgid "* A machine-readable description of the merge to perform"
3787
#: breezy/builtins.py:5826
3788
msgid "* An optional patch that is a preview of the changes requested"
3791
#: breezy/builtins.py:5828
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:5832
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:5835
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:5839
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:5845
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:5851
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:5857
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:5862
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:5865
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:5869
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:5875
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:5880
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:5883
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:5907
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:5911
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:5913
3907
msgid "Mail the request to this address."
3910
# help of 'body' option of 'send' command
3911
#: breezy/builtins.py:5917
3912
msgid "Body for the email."
3915
# help of 'no-bundle' option of 'send' command
3916
#: breezy/builtins.py:5964
3917
msgid "Do not include a bundle in the merge directive."
3920
# help of 'no-patch' option of 'send' command
3921
#: breezy/builtins.py:5965
3922
msgid "Do not include a preview patch in the merge directive."
3925
# help of 'remember' option of 'send' command
3926
#: breezy/builtins.py:5968
3927
msgid "Remember submit and public branch."
3930
# help of 'from' option of 'send' command
3931
#: breezy/builtins.py:5970
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:5980 breezy/cmd_version_info.py:77
3943
# help of 'format' option of 'send' command
3944
#: breezy/builtins.py:5981
3945
msgid "Use the specified output format."
3948
#: breezy/builtins.py:6003
3949
msgid "Create, remove or modify a tag naming a revision."
3952
#: breezy/builtins.py:6005
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:6009
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:6012
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:6015
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:6018
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:6028
3988
msgid "Delete this tag rather than placing it."
3991
# help of 'directory' option of 'tag' command
3992
#: breezy/builtins.py:6031
3993
msgid "Branch in which to place the tag."
3996
# help of 'force' option of 'tag' command
3997
#: breezy/builtins.py:6033
3998
msgid "Replace existing tags."
4001
#: breezy/builtins.py:6049
4002
msgid "No tag specified to delete."
4005
#: breezy/builtins.py:6051
4007
msgid "Deleted tag %s."
4010
#: breezy/builtins.py:6056
4011
msgid "Tags can only be placed on a single revision, not on a range"
4014
#: breezy/builtins.py:6065
4015
msgid "Please specify a tag name."
4018
#: breezy/builtins.py:6073
4020
msgid "Tag %s already exists for that revision."
4023
#: breezy/builtins.py:6077
4025
msgid "Created tag %s."
4028
#: breezy/builtins.py:6079
4030
msgid "Updated tag %s."
4033
#: breezy/builtins.py:6083
4037
#: breezy/builtins.py:6085
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:6091
4044
msgid "Branch whose tags should be displayed."
4047
# help of 'sort' option of 'tags' command
4048
#: breezy/builtins.py:6093
4049
msgid "Sort tags by different criteria."
4052
# title of 'sort' option of 'tags' command
4053
#: breezy/builtins.py:6093
4057
#: breezy/builtins.py:6163
4058
msgid "Reconfigure the type of a brz directory."
4061
#: breezy/builtins.py:6165
4062
msgid "A target configuration must be specified."
4065
#: breezy/builtins.py:6167
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:6181
4081
# help of 'tree_type' option of 'reconfigure' command
4082
#: breezy/builtins.py:6182
4083
msgid "The relation between branch and tree."
4086
# help of 'tree_type=branch' option of 'reconfigure' command
4087
#: breezy/builtins.py:6184
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:6185
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:6186
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:6187
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:6192
4108
msgid "Repository type"
4111
# help of 'repository_type' option of 'reconfigure' command
4112
#: breezy/builtins.py:6193
4113
msgid "Location fo the repository."
4116
# help of 'repository_type=standalone' option of 'reconfigure' command
4117
#: breezy/builtins.py:6195
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:6197
4124
msgid "Reconfigure to use a shared repository."
4127
# title of 'repository_trees' option of 'reconfigure' command
4128
#: breezy/builtins.py:6201
4129
msgid "Trees in Repository"
4132
# help of 'repository_trees' option of 'reconfigure' command
4133
#: breezy/builtins.py:6202
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:6204
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:6206
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:6209
4150
msgid "Branch to bind checkout to."
4153
# help of 'force' option of 'reconfigure' command
4154
#: breezy/builtins.py:6211
4155
msgid "Perform reconfiguration even if local changes will be lost."
4158
# help of 'stacked-on' option of 'reconfigure' command
4159
#: breezy/builtins.py:6214
4160
msgid "Reconfigure a branch to be stacked on another branch."
4163
# help of 'unstacked' option of 'reconfigure' command
4164
#: breezy/builtins.py:6218
4166
"Reconfigure a branch to be unstacked. This may require copying substantial "
4170
#: breezy/builtins.py:6229
4171
msgid "Can't use both --stacked-on and --unstacked"
4174
#: breezy/builtins.py:6243
4175
msgid "No target configuration specified"
4178
#: breezy/builtins.py:6278
4179
msgid "Set the branch of a checkout and update."
4182
#: breezy/builtins.py:6280
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:6285
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:6288
4197
msgid "Pending merges need to be committed or reverted before using switch."
4200
#: breezy/builtins.py:6290
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:6295
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:6303
4217
msgid "Switch even if local commits will be lost."
4220
# help of 'create-branch' option of 'switch' command
4221
#: breezy/builtins.py:6306
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:6309
4227
msgid "Store and restore uncommitted changes in the branch."
4230
#: breezy/builtins.py:6323
4231
msgid "You must supply either a revision or a location"
4234
#: breezy/builtins.py:6336
4235
msgid "cannot create branch without source branch"
4238
#: breezy/builtins.py:6362
4240
"switching would create a branch reference loop. Use the \"bzr up\" command "
4241
"to switch to a different revision."
4244
#: breezy/builtins.py:6373
4245
msgid "Manage filtered views."
4248
#: breezy/builtins.py:6375
4250
"Views provide a mask over the tree so that users can focus on\n"
4251
"a subset of a tree when doing their work. After creating a view,\n"
4252
"commands that support a list of files - status, diff, commit, etc -\n"
4253
"effectively have that list of files implicitly given each time.\n"
4254
"An explicit list of files can still be given but those files\n"
4255
"must be within the current view."
4258
#: breezy/builtins.py:6382
4260
"In most cases, a view has a short life-span: it is created to make\n"
4261
"a selected change and is deleted once that change is committed.\n"
4262
"At other times, you may wish to create one or more named views\n"
4263
"and switch between them."
4266
#: breezy/builtins.py:6387
4268
"To disable the current view without deleting it, you can switch to\n"
4269
"the pseudo view called ``off``. This can be useful when you need\n"
4270
"to see the whole tree for an operation or two (e.g. merge) but\n"
4271
"want to switch back to your view after that."
4274
#: breezy/builtins.py:6392
4277
" To define the current view::"
4280
#: breezy/builtins.py:6395
4281
msgid " brz view file1 dir1 ..."
4284
#: breezy/builtins.py:6397
4285
msgid " To list the current view::"
4288
#: breezy/builtins.py:6399
4292
#: breezy/builtins.py:6401
4293
msgid " To delete the current view::"
4296
#: breezy/builtins.py:6403
4297
msgid " brz view --delete"
4300
#: breezy/builtins.py:6405
4301
msgid " To disable the current view without deleting it::"
4304
#: breezy/builtins.py:6407
4305
msgid " brz view --switch off"
4308
#: breezy/builtins.py:6409
4309
msgid " To define a named view and switch to it::"
4312
#: breezy/builtins.py:6411
4313
msgid " brz view --name view-name file1 dir1 ..."
4316
#: breezy/builtins.py:6413
4317
msgid " To list a named view::"
4320
#: breezy/builtins.py:6415
4321
msgid " brz view --name view-name"
4324
#: breezy/builtins.py:6417
4325
msgid " To delete a named view::"
4328
#: breezy/builtins.py:6419
4329
msgid " brz view --name view-name --delete"
4332
#: breezy/builtins.py:6421
4333
msgid " To switch to a named view::"
4336
#: breezy/builtins.py:6423
4337
msgid " brz view --switch view-name"
4340
#: breezy/builtins.py:6425
4341
msgid " To list all views defined::"
4344
#: breezy/builtins.py:6427
4345
msgid " brz view --all"
4348
#: breezy/builtins.py:6429
4349
msgid " To delete all views::"
4352
#: breezy/builtins.py:6431
4353
msgid " brz view --delete --all"
4356
# help of 'all' option of 'view' command
4357
#: breezy/builtins.py:6438
4358
msgid "Apply list or delete action to all views."
4361
# help of 'delete' option of 'view' command
4362
#: breezy/builtins.py:6441
4363
msgid "Delete the view."
4366
# help of 'name' option of 'view' command
4367
#: breezy/builtins.py:6444
4368
msgid "Name of the view to define, list or delete."
4371
# help of 'switch' option of 'view' command
4372
#: breezy/builtins.py:6448
4373
msgid "Name of the view to switch to."
4376
#: breezy/builtins.py:6467
4377
msgid "Both --delete and a file list specified"
4380
#: breezy/builtins.py:6470
4381
msgid "Both --delete and --switch specified"
4384
#: breezy/builtins.py:6473
4385
msgid "Deleted all views.\n"
4388
#: breezy/builtins.py:6476
4389
msgid "No current view to delete"
4392
#: breezy/builtins.py:6479
4394
msgid "Deleted '%s' view.\n"
4397
#: breezy/builtins.py:6483
4398
msgid "Both --switch and a file list specified"
4401
#: breezy/builtins.py:6486
4402
msgid "Both --switch and --all specified"
4405
#: breezy/builtins.py:6490
4406
msgid "No current view to disable"
4409
#: breezy/builtins.py:6492
4411
msgid "Disabled '%s' view.\n"
4414
#: breezy/builtins.py:6498 breezy/builtins.py:6521
4415
#, python-brace-format
4416
msgid "Using '{0}' view: {1}\n"
4419
#: breezy/builtins.py:6501
4420
msgid "Views defined:\n"
4423
#: breezy/builtins.py:6510
4424
msgid "No views defined.\n"
4427
#: breezy/builtins.py:6517
4428
msgid "Cannot change the 'off' pseudo view"
4431
#: breezy/builtins.py:6526
4432
msgid "No current view.\n"
4435
#: breezy/builtins.py:6530
4436
#, python-brace-format
4437
msgid "'{0}' view is: {1}\n"
4440
#: breezy/builtins.py:6550
4441
msgid " <no hooks installed>\n"
4444
#: breezy/builtins.py:6554
4445
msgid "Remove a branch."
4448
#: breezy/builtins.py:6556
4450
"This will remove the branch from the specified location but\n"
4451
"will keep any working tree or repository in place."
4454
#: breezy/builtins.py:6561
4455
msgid " Remove the branch at repo/trunk::"
4458
#: breezy/builtins.py:6563
4459
msgid " brz remove-branch repo/trunk"
4462
# help of 'force' option of 'remove-branch' command
4463
#: breezy/builtins.py:6570
4464
msgid "Remove branch even if it is the active branch."
4467
#: breezy/builtins.py:6584
4468
msgid "Branch is active. Use --force to remove it."
4471
# help of 'writer=plain' option of 'shelve' command
4472
#: breezy/builtins.py:6588
4473
msgid "Plaintext diff output."
4476
#: breezy/builtins.py:6589
4477
msgid "Temporarily set aside some changes from the current tree."
4480
#: breezy/builtins.py:6591
4482
"Shelve allows you to temporarily put changes you've made \"on the shelf\",\n"
4483
"ie. out of the way, until a later time when you can bring them back from\n"
4484
"the shelf with the 'unshelve' command. The changes are stored alongside\n"
4485
"your working tree, and so they aren't propagated along with your branch nor\n"
4486
"will they survive its deletion."
4489
#: breezy/builtins.py:6597
4490
msgid "If shelve --list is specified, previously-shelved changes are listed."
4493
#: breezy/builtins.py:6599
4495
"Shelve is intended to help separate several sets of changes that have\n"
4496
"been inappropriately mingled. If you just want to get rid of all changes\n"
4497
"and you don't need to restore them later, use revert. If you want to\n"
4498
"shelve all text changes at once, use shelve --all."
4501
#: breezy/builtins.py:6604
4503
"If filenames are specified, only the changes to those files will be\n"
4504
"shelved. Other files will be left untouched."
4507
#: breezy/builtins.py:6607
4509
"If a revision is specified, changes since that revision will be shelved."
4512
#: breezy/builtins.py:6609
4514
"You can put multiple items on the shelf, and by default, 'unshelve' will\n"
4515
"restore the most recently shelved changes."
4518
#: breezy/builtins.py:6612
4520
"For complicated changes, it is possible to edit the changes in a separate\n"
4521
"editor program to decide what the file remaining in the working copy\n"
4522
"should look like. To do this, add the configuration option"
4525
#: breezy/builtins.py:6616
4526
msgid " change_editor = PROGRAM @new_path @old_path"
4529
#: breezy/builtins.py:6618
4531
"where @new_path is replaced with the path of the new version of the\n"
4532
"file and @old_path is replaced with the path of the old version of\n"
4533
"the file. The PROGRAM should save the new file with the desired\n"
4534
"contents of the file in the working tree."
4537
# help of 'all' option of 'shelve' command
4538
#: breezy/builtins.py:6630
4539
msgid "Shelve all changes."
4542
# help of 'writer' option of 'shelve' command
4543
#: breezy/builtins.py:6632
4544
msgid "Method to use for writing diffs."
4547
# title of 'writer' option of 'shelve' command
4548
#: breezy/builtins.py:6632
4552
# help of 'list' option of 'shelve' command
4553
#: breezy/builtins.py:6636
4554
msgid "List shelved changes."
4557
# help of 'destroy' option of 'shelve' command
4558
#: breezy/builtins.py:6638
4559
msgid "Destroy removed changes instead of shelving them."
4562
#: breezy/builtins.py:6667
4563
msgid "No shelved changes."
4566
#: breezy/builtins.py:6678
4567
msgid "Restore shelved changes."
4570
#: breezy/builtins.py:6680
4572
"By default, the most recently shelved changes are restored. However if you\n"
4573
"specify a shelf by id those changes will be restored instead. This works\n"
4574
"best when the changes don't depend on each other."
4577
# help of 'action' option of 'unshelve' command
4578
#: breezy/builtins.py:6689
4579
msgid "The action to perform."
4582
# title of 'action' option of 'resolve' command
4583
# title of 'action' option of 'unshelve' command
4584
#: breezy/builtins.py:6689 breezy/conflicts.py:707
4588
# help of 'action=apply' option of 'unshelve' command
4589
#: breezy/builtins.py:6691
4590
msgid "Apply changes and remove from the shelf."
4593
# help of 'action=dry-run' option of 'unshelve' command
4594
#: breezy/builtins.py:6692
4595
msgid "Show changes, but do not apply or remove them."
4598
# help of 'action=preview' option of 'unshelve' command
4599
#: breezy/builtins.py:6693
4601
"Instead of unshelving the changes, show the diff that would result from "
4605
# help of 'action=delete-only' option of 'unshelve' command
4606
#: breezy/builtins.py:6695
4607
msgid "Delete changes without applying them."
4610
# help of 'action=keep' option of 'unshelve' command
4611
#: breezy/builtins.py:6696
4612
msgid "Apply changes but don't delete them."
4615
#: breezy/builtins.py:6711
4616
msgid "Remove unwanted files from working tree."
4619
#: breezy/builtins.py:6713
4621
"By default, only unknown files, not ignored files, are deleted. Versioned\n"
4622
"files are never deleted."
4625
#: breezy/builtins.py:6716
4627
"Another class is 'detritus', which includes files emitted by brz during\n"
4628
"normal operations and selftests. (The value of these files decreases with\n"
4632
#: breezy/builtins.py:6720
4634
"If no options are specified, unknown files are deleted. Otherwise, option\n"
4635
"flags are respected, and may be combined."
4638
#: breezy/builtins.py:6723
4639
msgid "To check what clean-tree will do, use --dry-run."
4642
# help of 'ignored' option of 'clean-tree' command
4643
#: breezy/builtins.py:6726
4644
msgid "Delete all ignored files."
4647
# help of 'detritus' option of 'clean-tree' command
4648
#: breezy/builtins.py:6727
4650
"Delete conflict files, merge and revert backups, and failed selftest dirs."
4653
# help of 'unknown' option of 'clean-tree' command
4654
#: breezy/builtins.py:6730
4655
msgid "Delete files unknown to brz (default)."
4658
# help of 'dry-run' option of 'clean-tree' command
4659
#: breezy/builtins.py:6731
4660
msgid "Show files to delete instead of deleting them."
4663
# help of 'force' option of 'clean-tree' command
4664
#: breezy/builtins.py:6733
4665
msgid "Do not prompt before deleting."
4668
#: breezy/builtins.py:6812
4669
msgid "Import sources from a directory, tarball or zip file"
4672
#: breezy/builtins.py:6814
4674
"This command will import a directory, tarball or zip file into a bzr\n"
4675
"tree, replacing any versioned files already present. If a directory is\n"
4676
"specified, it is used as the target. If the directory does not exist, or\n"
4677
"is not versioned, it is created."
4680
#: breezy/builtins.py:6819
4681
msgid "Tarballs may be gzip or bzip2 compressed. This is autodetected."
4684
#: breezy/builtins.py:6821
4686
"If the tarball or zip has a single root directory, that directory is\n"
4687
"stripped when extracting the tarball. This is not done for directories."
4690
#: breezy/builtins.py:6833
4691
msgid "Hardlink matching files to another tree."
4694
#: breezy/builtins.py:6835
4695
msgid "Only files with identical content and execute bit will be linked."
4698
#: breezy/bundle/__init__.py:61
4699
msgid "A directory cannot be a bundle"
4702
#: breezy/bundle/apply_bundle.py:38
4703
msgid "Install revisions"
4706
#: breezy/bundle/commands.py:66
4707
msgid "--verbose requires a merge directive"
4710
#: breezy/bundle/commands.py:70
4711
msgid "Bundle format not supported"
4714
#: breezy/bundle/commands.py:80
4718
#: breezy/bundle/commands.py:84
4719
#, python-brace-format
4720
msgid "{0}: {1} ({2} multiparent)\n"
4723
#: breezy/bundle/commands.py:86
4725
msgid "unique files: %d\n"
4728
#: breezy/bundle/commands.py:95
4732
#: breezy/bundle/commands.py:96
4737
#: breezy/bundle/commands.py:98
4744
#: breezy/bundle/commands.py:107
4745
msgid "Decoded contents\n"
4748
#: breezy/bundle/serializer/v4.py:314
4750
msgid "Bundling %d revision."
4751
msgid_plural "Bundling %d revisions."
4755
#: breezy/bzr/bzrdir.py:504
4756
#, python-brace-format
4758
"making backup of {0}\n"
4762
#: breezy/bzr/bzrdir.py:525
4763
#, python-brace-format
4764
msgid "renamed {0} to {1}"
4767
#: breezy/bzr/bzrdir.py:1591
4770
"Source repository format does not support stacking, using format:\n"
4774
#: breezy/bzr/bzrdir.py:1611
4777
"Source branch format does not support stacking, using format:\n"
4781
#: breezy/bzr/bzrdir.py:1748
4782
msgid "starting repository conversion"
4785
#: breezy/bzr/bzrdir.py:1875
4786
#, python-brace-format
4787
msgid "Using default stacking branch {0} at {1}"
4790
#: breezy/bzr/check.py:99
4794
#: breezy/bzr/check.py:101
4795
msgid "checking revisions"
4798
#: breezy/bzr/check.py:103
4799
msgid "checking commit contents"
4802
#: breezy/bzr/check.py:105
4803
msgid "checking file graphs"
4806
#: breezy/bzr/check.py:109
4807
msgid "checking branches and trees"
4810
#: breezy/bzr/check.py:194
4811
#, python-brace-format
4812
msgid "checked repository {0} format {1}"
4815
#: breezy/bzr/check.py:197
4817
msgid "%6d revisions"
4820
#: breezy/bzr/check.py:198
4822
msgid "%6d file-ids"
4825
#: breezy/bzr/check.py:200
4827
msgid "%6d unreferenced text versions"
4830
#: breezy/bzr/check.py:204
4831
#, python-brace-format
4832
msgid "unreferenced version: {{{0}}} in {1}"
4835
#: breezy/bzr/check.py:207
4837
msgid "%6d revisions are missing inventory_sha1"
4840
#: breezy/bzr/check.py:210
4842
msgid "%6d revisions are mentioned but not present"
4845
#: breezy/bzr/check.py:213
4847
msgid "%6d ghost revisions"
4850
#: breezy/bzr/check.py:218
4852
msgid "%6d revisions missing parents in ancestry"
4855
#: breezy/bzr/check.py:222
4857
msgid " %s should be in the ancestry for:"
4860
#: breezy/bzr/check.py:227
4862
msgid "%6d inconsistent parents"
4865
#: breezy/bzr/check.py:232
4866
#, python-brace-format
4867
msgid " * {0} version {1} has parents ({2}) but should have ({3})"
4870
#: breezy/bzr/check.py:239
4872
msgid "%6d revisions have incorrect parents in the revision index"
4875
#: breezy/bzr/check.py:245
4876
#, python-brace-format
4877
msgid " {0} has wrong parents in index: ({1}) should be ({2})"
4880
#: breezy/bzr/check.py:261
4881
#, python-brace-format
4882
msgid "Mismatched internal revid {{{0}}} and index revid {{{1}}}"
4885
#: breezy/bzr/check.py:290
4886
#, python-brace-format
4888
"Multiple expected sha1s for {0}. {{{1}}} expects {{{2}}}, {{{3}}} expects "
4892
#: breezy/bzr/fetch.py:102
4893
msgid "Finding revisions"
4896
#: breezy/bzr/fetch.py:107
4897
msgid "Fetching revisions"
4900
#: breezy/bzr/groupcompress.py:1748
4902
msgid "Insert claimed random_id=True, but then inserted %r two times"
4905
#: breezy/bzr/knit.py:1835 breezy/bzr/knit.py:1873
4906
msgid "Walking content"
4909
#: breezy/bzr/knit.py:3406
4913
#: breezy/bzr/remote.py:1302
4915
msgid "bzr: ERROR (ignored): %s"
4918
#: breezy/bzr/remote.py:2607
4919
msgid "Copying repository content as tarball..."
4922
#: breezy/bzr/smart/medium.py:735
4923
#, python-brace-format
4924
msgid "HPSS calls: {0} ({1} vfs) {2}"
4927
#: breezy/bzr/smart/ping.py:33
4928
msgid "Pings a Bazaar smart server."
4931
#: breezy/bzr/smart/ping.py:35
4933
"This command sends a 'hello' request to the given location using the brz\n"
4934
"smart protocol, and reports the response."
4937
#: breezy/bzr/smart/server.py:169
4938
msgid "Requested to stop gracefully"
4941
#: breezy/bzr/smart/server.py:179
4943
msgid "Waiting for %d client(s) to finish"
4946
#: breezy/bzr/smart/server.py:185
4948
msgid "Still waiting for %d client(s) to finish"
4951
#: breezy/bzr/smart/server.py:219
4953
msgid "listening socket error: %s"
4956
#: breezy/bzr/smart/server.py:459
4958
msgid "listening on port: %s"
4961
#: breezy/bzr/vf_repository.py:786
4965
#: breezy/bzr/vf_repository.py:812
4969
#: breezy/bzr/vf_repository.py:1292 breezy/bzr/vf_repository.py:1302
4970
msgid "Calculating text parents"
4973
#: breezy/bzr/vf_repository.py:1380
4977
#: breezy/bzr/vf_repository.py:2253
4978
msgid "loading text store"
4981
#: breezy/bzr/vf_repository.py:2260
4982
msgid "checking text graph"
4985
#: breezy/bzr/vf_repository.py:2702 breezy/bzr/vf_repository.py:2716
4986
#: breezy/bzr/vf_repository.py:2828
4987
msgid "Transferring revisions"
4990
#: breezy/check.py:64
4992
msgid "Checking branch at '%s'."
4995
#: breezy/check.py:84
4997
msgid "Checking working tree at '%s'."
5000
#: breezy/check.py:137 breezy/check.py:151
5001
msgid "No branch found at specified location."
5004
#: breezy/check.py:139 breezy/check.py:149
5005
msgid "No working tree found at specified location."
5008
#: breezy/check.py:142
5010
msgid "Checking repository at '%s'."
5013
#: breezy/check.py:153
5014
msgid "No repository found at specified location."
5017
#: breezy/clean_tree.py:63
5018
msgid "Nothing to delete."
5021
#: breezy/clean_tree.py:68
5022
msgid "Are you sure you wish to delete these"
5025
#: breezy/clean_tree.py:70
5029
#: breezy/clean_tree.py:105
5031
msgid "unable to remove %s"
5034
#: breezy/clean_tree.py:109
5035
msgid "deleting paths:"
5038
#: breezy/clean_tree.py:123
5039
#, python-brace-format
5040
msgid "unable to remove \"{0}\": {1}."
5043
#: breezy/clean_tree.py:128
5044
msgid "No files deleted."
5047
#: breezy/cmd_version_info.py:49
5048
#, python-brace-format
5049
msgid "No known version info format {0}. Supported types are: {1}"
5052
# help of 'format=custom' option of 'version-info' command
5053
#: breezy/cmd_version_info.py:53
5054
msgid "Version info in Custom template-based format."
5057
# help of 'format=python' option of 'version-info' command
5058
#: breezy/cmd_version_info.py:53
5059
msgid "Version info in Python format."
5062
# help of 'format=rio' option of 'version-info' command
5063
#: breezy/cmd_version_info.py:53
5064
msgid "Version info in RIO (simple text) format (default)."
5067
#: breezy/cmd_version_info.py:54
5068
msgid "Show version information about this tree."
5071
#: breezy/cmd_version_info.py:56
5073
"You can use this command to add information about version into\n"
5074
"source code of an application. The output can be in one of the\n"
5075
"supported formats or in a custom format based on a template."
5078
#: breezy/cmd_version_info.py:60 en/help_topics/configuration.txt:699
5079
#: en/help_topics/configuration.txt:725
5080
msgid "For example::"
5083
#: breezy/cmd_version_info.py:62
5085
" brz version-info --custom \\\n"
5086
" --template=\"#define VERSION_INFO \\\"Project 1.2.3 (r{revno})\\\"\\n\""
5089
#: breezy/cmd_version_info.py:65
5091
"will produce a C header file with formatted string containing the\n"
5092
"current revision number. Other supported variables in templates are:"
5095
#: breezy/cmd_version_info.py:68
5097
" * {date} - date of the last revision\n"
5098
" * {build_date} - current date\n"
5099
" * {revno} - revision number\n"
5100
" * {revision_id} - revision id\n"
5101
" * {branch_nick} - branch nickname\n"
5102
" * {clean} - 0 if the source tree contains uncommitted changes,\n"
5106
# help of 'format' option of 'version-info' command
5107
#: breezy/cmd_version_info.py:78
5108
msgid "Select the output format."
5111
# help of 'all' option of 'version-info' command
5112
#: breezy/cmd_version_info.py:82
5113
msgid "Include all possible information."
5116
# help of 'check-clean' option of 'version-info' command
5117
#: breezy/cmd_version_info.py:83
5118
msgid "Check if tree is clean."
5121
# help of 'include-history' option of 'version-info' command
5122
#: breezy/cmd_version_info.py:85
5123
msgid "Include the revision-history."
5126
# help of 'include-file-revisions' option of 'version-info' command
5127
#: breezy/cmd_version_info.py:87
5128
msgid "Include the last revision for each file."
5131
# help of 'template' option of 'version-info' command
5132
#: breezy/cmd_version_info.py:89
5133
msgid "Template for the output."
5136
#: breezy/cmd_version_info.py:103
5137
msgid "brz version-info --revision takes exactly one revision specifier"
5140
#: breezy/commands.py:307
5142
msgid "unknown command \"%s\". Perhaps you meant \"%s\""
5145
#: breezy/commands.py:309
5147
msgid "unknown command \"%s\""
5150
#: breezy/commands.py:560
5151
msgid "No help for this command."
5154
#: breezy/commands.py:573
5156
msgid ":Purpose: %s\n"
5159
#: breezy/commands.py:575
5166
#: breezy/commands.py:577
5168
msgid ":Usage: %s\n"
5171
#: breezy/commands.py:597
5176
#: breezy/commands.py:608
5184
#: breezy/commands.py:618
5187
"See brz help %s for more details and examples.\n"
5191
#: breezy/commands.py:623
5195
#: breezy/commands.py:627
5197
msgid ":From: plugin \"%s\"\n"
5200
#: breezy/commands.py:639
5201
#, python-brace-format
5202
msgid ":doc:`{0} <{1}-help>`"
5205
#: breezy/commands.py:643
5207
msgid ":See also: %s"
5210
#: breezy/commands.py:917
5211
msgid "Only ASCII permitted in option names"
5214
#: breezy/commands.py:942 breezy/commands.py:950
5215
msgid "command {0!r} needs one or more {1}"
5218
#: breezy/commands.py:959
5219
msgid "command {0!r} requires argument {1}"
5222
#: breezy/commands.py:966
5223
#, python-brace-format
5224
msgid "extra argument to command {0}: {1}"
5227
#: breezy/commands.py:1038
5229
msgid "Profile data written to \"%s\"."
5232
#: breezy/commit.py:152 breezy/commit.py:727
5236
#: breezy/commit.py:152 breezy/commit.py:737
5240
#: breezy/commit.py:158
5242
msgid "Committing to: %s"
5245
#: breezy/commit.py:162
5247
msgid "Committed revision %d."
5250
#: breezy/commit.py:171
5255
#: breezy/commit.py:174
5260
#: breezy/commit.py:515
5261
#, python-brace-format
5263
"Conflicting tags in bound branch:\n"
5267
#: breezy/commit.py:729
5271
#: breezy/commit.py:794
5272
#, python-brace-format
5273
msgid "{0} [{1}] - Stage"
5276
#: breezy/commit.py:797
5281
#: breezy/commit_signature_commands.py:34
5282
msgid "Sign all commits by a given committer."
5285
#: breezy/commit_signature_commands.py:36
5287
"If location is not specified the local tree is used.\n"
5288
"If committer is not specified the default committer is used."
5291
#: breezy/commit_signature_commands.py:39
5292
msgid "This does not sign commits that already have signatures."
5295
# help of 'dry-run' option of 'sign-my-commits' command
5296
#: breezy/commit_signature_commands.py:47
5298
"Don't actually sign anything, just print the revisions that would be signed."
5301
#: breezy/commit_signature_commands.py:95
5303
msgid "Signed %d revision.\n"
5304
msgid_plural "Signed %d revisions.\n"
5308
#: breezy/commit_signature_commands.py:100
5309
msgid "Verify all commit signatures."
5312
#: breezy/commit_signature_commands.py:102
5313
msgid "Verifies that all commits in the branch are signed by known GnuPG keys."
5316
# help of 'acceptable-keys' option of 'verify-signatures' command
5317
#: breezy/commit_signature_commands.py:107
5319
"Comma separated list of GPG key patterns which are acceptable for "
5323
#: breezy/commit_signature_commands.py:146
5324
msgid "Cannot verify a range of non-revision-history revisions"
5327
#: breezy/commit_signature_commands.py:165
5328
msgid "All commits signed with verifiable keys"
5331
#: breezy/config.py:2509
5332
#, python-brace-format
5333
msgid "{0} is not an SI unit."
5336
#: breezy/config.py:3032
5337
#, python-brace-format
5339
"Option {0} in section {1} of {2} was changed from {3} to {4}. The {5} value "
5343
#: breezy/config.py:3177
5345
msgid "Invalid '%s', should be of the form 'name=value'"
5348
#: breezy/config.py:4121
5349
msgid "Display, set or remove a configuration option."
5352
#: breezy/config.py:4123
5353
msgid "Display the active value for option NAME."
5356
#: breezy/config.py:4125
5358
"If --all is specified, NAME is interpreted as a regular expression and all\n"
5359
"matching options are displayed mentioning their scope and without resolving\n"
5360
"option references in the value). The active value that bzr will take into\n"
5361
"account is the first one displayed for each option."
5364
#: breezy/config.py:4130
5366
"If NAME is not given, --all .* is implied (all options are displayed for "
5371
#: breezy/config.py:4133
5373
"Setting a value is achieved by using NAME=value without spaces. The value\n"
5374
"is set in the most relevant scope and can be checked by displaying the\n"
5378
#: breezy/config.py:4137
5379
msgid "Removing a value is achieved by using --remove NAME."
5382
# help of 'scope' option of 'config' command
5383
#: breezy/config.py:4147
5384
msgid "Reduce the scope to the specified configuration file."
5387
# help of 'all' option of 'config' command
5388
#: breezy/config.py:4151
5389
msgid "Display all the defined values for the matching options."
5392
# help of 'remove' option of 'config' command
5393
#: breezy/config.py:4153
5394
msgid "Remove the option from the configuration file."
5397
#: breezy/conflicts.py:52
5398
msgid "List files with conflicts."
5401
#: breezy/conflicts.py:59
5403
"Conflicts normally are listed as short, human-readable messages. If --text\n"
5404
"is supplied, the pathnames of files with text conflicts are listed,\n"
5405
"instead. (This is useful for editing all files with text conflicts.)"
5408
#: breezy/conflicts.py:63
5409
msgid "Use brz resolve when you have fixed a problem."
5412
# help of 'text' option of 'conflicts' command
5413
#: breezy/conflicts.py:68
5414
msgid "List paths of files with text conflicts."
5417
# help of 'action=done' option of 'resolve' command
5418
#: breezy/conflicts.py:87
5419
msgid "Marks the conflict as resolved."
5422
# help of 'action=take-this' option of 'resolve' command
5423
#: breezy/conflicts.py:90
5424
msgid "Resolve the conflict preserving the version in the working tree."
5427
# help of 'action=take-other' option of 'resolve' command
5428
#: breezy/conflicts.py:93
5429
msgid "Resolve the conflict taking the merged version into account."
5432
# help of 'action' option of 'resolve' command
5433
#: breezy/conflicts.py:101
5434
msgid "How to resolve the conflict."
5437
#: breezy/conflicts.py:107
5438
msgid "Mark a conflict as resolved."
5441
#: breezy/conflicts.py:114
5443
"Once you have fixed a problem, use \"brz resolve\" to automatically mark\n"
5444
"text conflicts as fixed, \"brz resolve FILE\" to mark a specific conflict "
5446
"resolved, or \"brz resolve --all\" to mark all conflicts as resolved."
5449
# help of 'all' option of 'resolve' command
5450
#: breezy/conflicts.py:122
5451
msgid "Resolve all conflicts in this tree."
5454
#: breezy/conflicts.py:130
5455
msgid "If --all is specified, no FILE may be provided"
5458
#: breezy/conflicts.py:155
5460
msgid "%d conflict auto-resolved."
5461
msgid_plural "%d conflicts auto-resolved."
5465
#: breezy/conflicts.py:158
5466
msgid "Remaining conflicts:"
5469
#: breezy/conflicts.py:163
5470
msgid "All conflicts resolved."
5473
#: breezy/conflicts.py:172
5474
#, python-brace-format
5475
msgid "{0} conflict resolved, {1} remaining"
5476
msgid_plural "{0} conflicts resolved, {1} remaining"
5480
#: breezy/controldir.py:731
5481
#, python-brace-format
5482
msgid "{0} is{1} redirected to {2}"
5485
#: breezy/diff.py:413
5487
msgid "*** Ignoring files outside view. View is %s"
5490
#: breezy/errors.py:167
5492
"API %(api)s is not compatible; one of versions %(wanted)r is required, but "
5493
"current version is %(current)r."
5496
#: breezy/errors.py:178
5497
msgid "The transport '%(transport)s' is only accessible within this process."
5500
#: breezy/errors.py:196
5501
msgid "Invalid revision number %(revno)s"
5504
#: breezy/errors.py:205
5505
msgid "Invalid revision-id {%(revision_id)s} in %(branch)s"
5508
#: breezy/errors.py:216
5509
msgid "Reserved revision-id {%(revision_id)s}"
5512
#: breezy/errors.py:230
5513
msgid "There is no public branch set for \"%(branch_url)s\"."
5516
#: breezy/errors.py:240
5517
msgid "The file id \"%(file_id)s\" is not present in the tree %(tree)s."
5520
#: breezy/errors.py:250
5521
msgid "The branch '%(branch)s' is not stacked."
5524
#: breezy/errors.py:264
5525
msgid "No WorkingTree exists for \"%(base)s\"."
5528
#: breezy/errors.py:273
5529
msgid "%(url)s is not a local path."
5532
#: breezy/errors.py:301
5533
msgid "%(not_locked)r is not write locked but needs to be."
5536
#: breezy/errors.py:309
5537
msgid "Commit refused because there are unknown files in the tree"
5540
#: breezy/errors.py:320
5541
msgid "Generic path error: %(path)r%(extra)s)"
5544
#: breezy/errors.py:333
5545
msgid "No such file: %(path)r%(extra)s"
5548
#: breezy/errors.py:338
5549
msgid "File exists: %(path)r%(extra)s"
5552
#: breezy/errors.py:344
5554
"Could not rename %(source)s => %(dest)s because both files exist. (Use --"
5555
"after to tell brz about a rename that has already happened)%(extra)s"
5558
#: breezy/errors.py:360
5559
msgid "\"%(path)s\" is not a directory %(extra)s"
5562
#: breezy/errors.py:365
5563
msgid "\"%(path)s\" is not in the working directory %(extra)s"
5566
#: breezy/errors.py:370
5567
msgid "Directory not empty: \"%(path)s\"%(extra)s"
5570
#: breezy/errors.py:375
5571
msgid "Hard-linking \"%(path)s\" is not supported"
5574
#: breezy/errors.py:390
5575
msgid "Device or resource busy: \"%(path)s\"%(extra)s"
5578
#: breezy/errors.py:395
5579
msgid "Permission denied: \"%(path)s\"%(extra)s"
5582
#: breezy/errors.py:412
5583
msgid "Unsupported protocol for url \"%(path)s\"%(extra)s"
5586
#: breezy/errors.py:420
5587
msgid "The branch '%(branch_url)s' cannot be stacked on '%(target_url)s'."
5590
#: breezy/errors.py:430
5592
"The repository '%(url)s'(%(format)s) is not a stackable format. You will "
5593
"need to upgrade the repository to permit branch stacking."
5596
#: breezy/errors.py:441
5597
msgid "Error reading from %(path)r."
5600
#: breezy/errors.py:460
5601
msgid "Path \"%(path)s\" is not a child of path \"%(base)s\"%(extra)s"
5604
#: breezy/errors.py:476
5605
msgid "Path \"%(path)s\" is not unicode normalized"
5608
#: breezy/errors.py:484
5609
msgid "Not a branch: \"%(path)s\"%(detail)s."
5612
#: breezy/errors.py:526
5613
msgid "No submit branch available for branch \"%(path)s\""
5616
#: breezy/errors.py:535
5617
msgid "A control directory already exists: \"%(path)s\"."
5620
#: breezy/errors.py:540
5621
msgid "Already a branch: \"%(path)s\"."
5624
#: breezy/errors.py:545
5625
msgid "Invalid branch name: %(name)s"
5628
#: breezy/errors.py:554
5629
msgid "Parent branch already exists: \"%(path)s\"."
5632
#: breezy/errors.py:560
5634
"Directory contains a branch, but no working tree (use brz checkout if you "
5635
"wish to build a working tree): \"%(path)s\""
5638
#: breezy/errors.py:565
5640
"Parent not accessible given base \"%(base)s\" and relative path \"%(path)s\""
5643
#: breezy/errors.py:575
5644
msgid "No repository present: \"%(path)s\""
5647
#: breezy/errors.py:583
5649
"Unsupported branch format: %(format)s\n"
5650
"Please run 'brz upgrade'"
5653
#: breezy/errors.py:589
5654
msgid "Unknown %(kind)s format: %(format)r"
5657
#: breezy/errors.py:598
5659
"Line ending corrupted for file: %(file)s; Maybe your files got corrupted in "
5663
#: breezy/errors.py:607
5664
msgid "Format %(format)s is not compatible with .bzr version %(controldir)s."
5667
#: breezy/errors.py:617
5668
msgid "Parse error on line %(lineno)d of %(format)s format: %(line)s"
5671
#: breezy/errors.py:632
5674
"is not compatible with\n"
5679
#: breezy/errors.py:648
5680
msgid "Revision is not compatible with %(repo_format)s"
5683
#: breezy/errors.py:658
5684
msgid "%(context_info)s%(path)s is already versioned."
5687
#: breezy/errors.py:679
5688
msgid "%(context_info)s%(path)s is not versioned."
5691
#: breezy/errors.py:700
5692
msgid "Path(s) are not versioned: %(paths_as_string)s"
5695
#: breezy/errors.py:711
5696
msgid "Path(s) do not exist: %(paths_as_string)s%(extra)s"
5699
#: breezy/errors.py:730
5700
msgid "Cannot operate on \"%(filename)s\" of unsupported kind \"%(kind)s\""
5703
#: breezy/errors.py:738
5705
"Filename %(filename)r is not valid in your current filesystem encoding "
5709
#: breezy/errors.py:749
5710
msgid "Cannot operate on \"%(filename)s\" because it is a control file"
5713
#: breezy/errors.py:767
5714
msgid "The lock for '%(lock_description)s' is in use and cannot be broken."
5717
#: breezy/errors.py:806
5718
msgid "Cannot lock %(lock)s: %(why)s"
5721
#: breezy/errors.py:816
5723
"A transaction related operation was attempted after the transaction finished."
5726
#: breezy/errors.py:843
5727
msgid "Cannot lock: transport is read only: %(transport)s"
5730
#: breezy/errors.py:851
5731
msgid "Could not acquire lock \"%(lock)s\": %(msg)s"
5734
#: breezy/errors.py:862
5735
msgid "Lock was broken while still open: %(lock)s - check storage consistency!"
5738
#: breezy/errors.py:873
5740
"Lock was released and re-acquired before being broken: %(lock)s: held by "
5741
"%(holder)r, wanted to break %(target)r"
5744
#: breezy/errors.py:885
5746
"Lock is apparently held, but corrupted: %(corruption_info)s\n"
5747
"Use 'brz break-lock' to clear it"
5750
#: breezy/errors.py:898
5751
msgid "Lock not held: %(lock)s"
5754
#: breezy/errors.py:927
5755
msgid "Upgrade URL cannot work with readonly URLs."
5758
#: breezy/errors.py:932
5759
msgid "The branch format %(format)s is already at the most recent format."
5762
#: breezy/errors.py:950
5763
msgid "Option --change does not accept revision ranges"
5766
#: breezy/errors.py:955
5767
msgid "No namespace registered for string: %(spec)r"
5770
#: breezy/errors.py:974
5772
"Requested revision: '%(spec)s' does not exist in branch: %(branch_url)s"
5776
#: breezy/errors.py:988
5778
"Operation denied because it would change the main history, which is not "
5779
"permitted by the append_revisions_only setting on branch \"%(location)s\"."
5782
#: breezy/errors.py:999
5784
"These branches have diverged. Use the missing command to see how.\n"
5785
"Use the merge command to reconcile them."
5788
#: breezy/errors.py:1019
5790
"Branches have no common ancestor, and no merge base revision was specified."
5793
#: breezy/errors.py:1025
5795
"Selected merge cannot perform reverse cherrypicks. Try merge3 or diff3."
5798
#: breezy/errors.py:1031
5799
msgid "Revisions have no common ancestor: %(revision_a)s %(revision_b)s"
5802
#: breezy/errors.py:1040
5804
"Revisions are not derived from the same root: %(revision_a)s %(revision_b)s."
5807
#: breezy/errors.py:1049
5808
msgid "Revision %(rev_id)s is not an ancestor of %(not_ancestor_id)s"
5811
#: breezy/errors.py:1058
5812
msgid "Branch %(branch)s has no commits."
5815
#: breezy/errors.py:1075
5817
"Bound branch %(branch)s is out of date with master branch %(master)s."
5821
#: breezy/errors.py:1087
5823
"Cannot commit to branch %(branch)s. It is bound to %(master)s, which is "
5824
"bound to %(remote)s."
5827
#: breezy/errors.py:1099
5828
msgid "Cannot pull --overwrite to a branch which is bound %(branch)s"
5831
#: breezy/errors.py:1108
5833
"Unable to connect to target of bound branch %(branch)s => %(target)s: "
5837
#: breezy/errors.py:1120
5838
msgid "Versioned file error"
5841
#: breezy/errors.py:1125
5842
msgid "Revision {%(revision_id)s} not present in \"%(file_id)s\"."
5845
#: breezy/errors.py:1135
5846
msgid "Revision {%(revision_id)s} already present in \"%(file_id)s\"."
5849
#: breezy/errors.py:1145
5850
msgid "Text did not match its checksum: %(msg)s"
5853
#: breezy/errors.py:1197
5854
msgid "Export format %(format)r not supported"
5857
#: breezy/errors.py:1206
5858
msgid "Transport error: %(msg)s %(orig_error)s"
5861
#: breezy/errors.py:1232
5862
msgid "Generic bzr smart protocol error: %(details)s"
5865
#: breezy/errors.py:1240
5866
msgid "Received bad protocol version marker: %(marker)r"
5869
#: breezy/errors.py:1272
5870
msgid "Transport operation not possible: %(msg)s %(orig_error)s"
5873
#: breezy/errors.py:1277
5874
msgid "Connection error: %(msg)s %(orig_error)s"
5877
#: breezy/errors.py:1282
5878
msgid "%(msg)s %(host)s%(port)s%(orig_error)s"
5881
#: breezy/errors.py:1303
5882
msgid "Connection closed: %(msg)s %(orig_error)s"
5885
#: breezy/errors.py:1308
5886
msgid "Connection Timeout: %(msg)s%(orig_error)s"
5889
#: breezy/errors.py:1313
5890
msgid "Invalid range access in %(path)s at %(offset)s: %(msg)s"
5893
#: breezy/errors.py:1323
5894
msgid "Invalid http response for %(path)s: %(msg)s%(orig_error)s"
5897
#: breezy/errors.py:1338
5898
msgid "Invalid http range %(range)r for %(path)s: %(msg)s"
5901
#: breezy/errors.py:1352
5902
msgid "HTTP MIME Boundary missing for %(path)s: %(msg)s"
5905
#: breezy/errors.py:1360
5906
msgid "Invalid http Content-type \"%(ctype)s\" for %(path)s: %(msg)s"
5909
#: breezy/errors.py:1369
5910
msgid "%(source)s is%(permanently)s redirected to %(target)s"
5913
#: breezy/errors.py:1383
5914
msgid "Too many redirections"
5917
#: breezy/errors.py:1388
5918
msgid "Working tree has conflicts."
5921
#: breezy/errors.py:1393
5922
msgid "Unable to import library \"%(library)s\": %(error)s"
5925
#: breezy/errors.py:1401
5927
"The working tree for %(basedir)s has changed since the last commit, but "
5928
"weave merge requires that it be unchanged"
5931
#: breezy/errors.py:1411
5932
msgid "Cycle in graph %(graph)r"
5935
#: breezy/errors.py:1439
5936
msgid "File %(filename)s is not conflicted."
5939
#: breezy/errors.py:1461
5940
msgid "No bundle was found in \"%(filename)s\"."
5943
#: breezy/errors.py:1470
5944
msgid "Unable to handle bundle version %(version)s: %(msg)s"
5947
#: breezy/errors.py:1480
5948
msgid "Branch %(base)s is missing revision %(text_revision)s of %(file_id)s"
5951
#: breezy/errors.py:1493
5952
msgid "File id {%(file_id)s} already exists in inventory as %(entry)s"
5955
#: breezy/errors.py:1503
5956
msgid "Key %(key)s is already present in map"
5959
#: breezy/errors.py:1508
5960
msgid "The prefix %(prefix)s is in the help search path twice."
5963
#: breezy/errors.py:1518
5965
"No final name for trans_id %(trans_id)r\n"
5966
"file-id: %(file_id)r\n"
5967
"root trans-id: %(root_trans_id)r\n"
5970
#: breezy/errors.py:1550
5971
msgid "Attempt to reuse a transform that has already been applied."
5974
#: breezy/errors.py:1555
5975
msgid "Moving the root directory is not supported at this time"
5978
#: breezy/errors.py:1560
5979
msgid "Failed to rename %(from_path)s to %(to_path)s: %(why)s"
5982
#: breezy/errors.py:1571
5984
"Could not move %(from_path)s%(operator)s %(to_path)s%(_has_extra)s%(extra)s"
5987
#: breezy/errors.py:1607
5989
"Could not rename %(from_path)s%(operator)s %(to_path)s%(_has_extra)s%(extra)s"
5992
#: breezy/errors.py:1637
5993
msgid "Unable to import paramiko (required for sftp support): %(error)s"
5996
#: breezy/errors.py:1645
5997
msgid "Nothing to merge."
6000
#: breezy/errors.py:1650
6001
msgid "Format %(format)s cannot be initialised by this version of brz."
6004
#: breezy/errors.py:1659
6006
"Cannot convert from format %(from_format)s to format %(format)s. "
6010
#: breezy/errors.py:1671
6011
msgid "Could not find an appropriate Differ for file \"%(path)s\""
6014
#: breezy/errors.py:1679
6015
msgid "%(exe_name)s could not be found on this machine"
6018
#: breezy/errors.py:1687
6019
msgid "Diff is not installed on this machine: %(msg)s"
6022
#: breezy/errors.py:1695
6023
msgid "Diff3 is not installed on this machine."
6026
#: breezy/errors.py:1701
6027
msgid "The content being inserted is already present."
6030
#: breezy/errors.py:1706
6032
"This tree contains left-over files from a failed operation.\n"
6033
" Please examine %(limbo_dir)s to see if it contains any files you wish "
6035
" keep, and delete it when you are done."
6038
#: breezy/errors.py:1717
6040
"This tree contains left-over files from a failed operation.\n"
6041
" Please examine %(pending_deletion)s to see if it contains any files you\n"
6042
" wish to keep, and delete it when you are done."
6045
#: breezy/errors.py:1727
6047
"Unable to delete transform temporary directory %(limbo_dir)s.\n"
6048
" Please examine %(limbo_dir)s to see if it contains any files you wish "
6050
" keep, and delete it when you are done."
6053
#: breezy/errors.py:1738
6055
"Unable to delete transform temporary directory %(pending_deletion)s. Please "
6056
"examine %(pending_deletion)s to see if it contains any files you wish to "
6057
"keep, and delete it when you are done."
6060
#: breezy/errors.py:1748
6061
msgid "Working tree is out of date, please run 'brz update'.%(more)s"
6064
#: breezy/errors.py:1762
6065
msgid "Public branch \"%(public_location)s\" lacks revision \"%(revstring)s\"."
6068
#: breezy/errors.py:1775
6069
msgid "Error in merge modified format"
6072
#: breezy/errors.py:1780
6073
msgid "Format error in conflict listings"
6076
#: breezy/errors.py:1784
6078
"An error has been detected in the repository %(repo_path)s.\n"
6079
"Please run brz reconcile on this repository."
6082
#: breezy/errors.py:1795
6084
"An inconsistent delta was supplied involving %(path)r, %(file_id)r\n"
6085
"reason: %(reason)s"
6088
#: breezy/errors.py:1808
6090
"An inconsistent delta was supplied: %(delta)r\n"
6091
"reason: %(reason)s"
6094
#: breezy/errors.py:1820
6095
msgid "To use this feature you must upgrade your branch at %(path)s."
6098
#: breezy/errors.py:1829
6099
msgid "To use this feature you must upgrade your repository at %(path)s."
6102
#: breezy/errors.py:1834
6104
"To use this feature you must upgrade your branch at %(path)s to a format "
6105
"which supports rich roots."
6108
#: breezy/errors.py:1840
6109
msgid "Cannot perform local-only commits on unbound branches."
6112
#: breezy/errors.py:1845
6113
msgid "The method %(mname)s is not supported on objects of type %(tname)s."
6116
#: breezy/errors.py:1870
6117
msgid "Ghost tags not supported by format %(format)r."
6120
#: breezy/errors.py:1878
6121
msgid "File is binary but should be text."
6124
#: breezy/errors.py:1883
6125
msgid "The path %(path)s is not permitted on this platform"
6128
#: breezy/errors.py:1892
6130
"Testament did not match expected value.\n"
6131
" For revision_id {%(revision_id)s}, expected {%(expected)s}, measured\n"
6135
#: breezy/errors.py:1904
6136
msgid "Not a bzr revision-bundle: %(text)r"
6139
#: breezy/errors.py:1913
6140
msgid "Bad bzr revision-bundle: %(text)r"
6143
#: breezy/errors.py:1922
6144
msgid "Malformed bzr revision-bundle header: %(text)r"
6147
#: breezy/errors.py:1927
6148
msgid "Malformed patches in bzr revision-bundle: %(text)r"
6151
#: breezy/errors.py:1932
6152
msgid "Malformed footer in bzr revision-bundle: %(text)r"
6155
#: breezy/errors.py:1937
6156
msgid "End of line marker was not \\n in bzr revision-bundle"
6159
#: breezy/errors.py:1947
6160
msgid "Bundle format %(bundle_format)s is incompatible with %(other)s"
6163
#: breezy/errors.py:1957
6164
msgid "Root class for inventory serialization errors"
6167
#: breezy/errors.py:1961
6169
"The inventory was not in the expected format:\n"
6173
#: breezy/errors.py:1970
6174
msgid "This operation requires rich root data storage"
6177
#: breezy/errors.py:1983
6178
msgid "Unrecognised value for BRZ_SSH environment variable: %(vendor)s"
6181
#: breezy/errors.py:1992
6183
"Don't know how to handle SSH connections. Please set BRZ_SSH environment "
6187
#: breezy/errors.py:1999
6189
"Could not determine revno for {%(revision_id)s} because its ancestry shows a "
6190
"ghost at {%(ghost_revision_id)s}"
6193
#: breezy/errors.py:2009
6194
msgid "Ghost revision {%(revision_id)s} cannot be used here."
6197
#: breezy/errors.py:2061
6199
"A merge directive must provide either a bundle or a public branch location."
6202
#: breezy/errors.py:2068
6203
msgid "Bad merge directive payload %(start)r"
6206
#: breezy/errors.py:2078
6207
msgid "Preview patch does not match requested changes."
6210
#: breezy/errors.py:2084
6211
msgid "Patch_type was %(patch_type)s, but no patch was supplied."
6214
#: breezy/errors.py:2094
6216
"Your branch does not have all of the revisions required in order to merge "
6217
"this merge directive and the target location specified in the merge "
6218
"directive is not a branch: %(location)s."
6221
#: breezy/errors.py:2106
6222
msgid "Unsupported entry kind %(kind)s"
6225
#: breezy/errors.py:2114
6226
msgid "Can't subsume %(other_tree)s into %(tree)s. %(reason)s"
6229
#: breezy/errors.py:2124
6230
msgid "Subsume target %(other_tree)s needs to be upgraded."
6233
#: breezy/errors.py:2132
6234
msgid "No such tag: %(tag_name)s"
6237
#: breezy/errors.py:2140
6238
msgid "Tags not supported by %(branch)s; you may be able to use brz upgrade."
6241
#: breezy/errors.py:2149
6242
msgid "Tag %(tag_name)s already exists."
6245
#: breezy/errors.py:2157
6246
msgid "Could not understand response from smart server: %(response_tuple)r"
6249
#: breezy/errors.py:2196
6250
msgid "Server sent an unexpected error: %(error_tuple)r"
6253
#: breezy/errors.py:2215
6254
msgid "Unrecognised container format: %(container_format)r"
6257
#: breezy/errors.py:2223
6258
msgid "Unexpected end of container stream"
6261
#: breezy/errors.py:2228
6262
msgid "Unknown record type: %(record_type)r"
6265
#: breezy/errors.py:2236
6266
msgid "Invalid record: %(reason)s"
6269
#: breezy/errors.py:2244
6270
msgid "Container has data after end marker: %(excess)r"
6273
#: breezy/errors.py:2252
6274
msgid "Container has multiple records with the same name: %(name)s"
6277
#: breezy/errors.py:2260
6278
msgid "Corrupt or incompatible data stream: %(reason)s"
6281
#: breezy/errors.py:2268
6283
"Working tree \"%(display_url)s\" has uncommitted changes (See brz status)."
6287
#: breezy/errors.py:2287
6289
"Branch \"%(display_url)s\" does not support storing uncommitted changes."
6292
#: breezy/errors.py:2302
6294
"Working tree \"%(display_url)s\" has shelved changes (See brz shelve --list)."
6298
#: breezy/errors.py:2308
6299
msgid "Unable to create symlink %(path_str)son this platform"
6302
#: breezy/errors.py:2323
6304
"Unable to encode %(kind)s path %(path)r in user encoding %(user_encoding)s"
6307
#: breezy/errors.py:2335
6308
msgid "The alias \"%(alias_name)s\" does not exist."
6311
#: breezy/errors.py:2343
6312
msgid "Cannot bind address \"%(host)s:%(port)i\": %(orig_error)s."
6315
#: breezy/errors.py:2356
6316
msgid "Tip change rejected: %(msg)s"
6319
#: breezy/errors.py:2364
6320
msgid "An attempt to access a url outside the server jail was made: '%(url)s'."
6323
#: breezy/errors.py:2372
6324
msgid "The user aborted the operation."
6327
#: breezy/errors.py:2424
6328
msgid "%(controldir)r does not support co-located branches."
6331
#: breezy/errors.py:2432
6333
"Branch \"%(branch_url)s\" appears to be bound to itself. Please use `brz "
6337
#: breezy/errors.py:2441
6339
"Kind change from %(from_kind)s to %(to_kind)s for %(path)s not supported by "
6343
#: breezy/errors.py:2453
6345
"Cannot store uncommitted changes because this branch already stores "
6346
"uncommitted changes."
6349
#: breezy/export_pot.py:255
6351
msgid "Exporting messages from builtin command: %s"
6354
#: breezy/export_pot.py:260
6356
msgid "Plugin %s is not loaded"
6359
#: breezy/export_pot.py:277
6360
#, python-brace-format
6361
msgid "Exporting messages from plugin command: {0} in {1}"
6364
#: breezy/export_pot.py:298
6366
msgid "Exporting message from error: %s"
6369
#: breezy/git/commands.py:115
6371
msgid "%r is not a git repository"
6374
#: breezy/git/commands.py:128
6375
msgid "Target repository doesn't support rich roots"
6378
#: breezy/git/commands.py:141
6379
msgid "creating branches"
6382
#: breezy/git/commands.py:165
6384
"Use 'bzr checkout' to create a working tree in the newly created branches."
6387
#: breezy/git/commands.py:207
6389
msgid "Object not found: %s"
6392
#: breezy/git/commands.py:280
6393
msgid "error running patch"
6396
#: breezy/gpg.py:358
6397
#, python-brace-format
6398
msgid "No GnuPG key results for pattern: {0}"
6401
#: breezy/gpg.py:364
6402
#, python-brace-format
6403
msgid "{0} commits with valid signatures"
6406
#: breezy/gpg.py:370
6407
#, python-brace-format
6408
msgid "{0} commit with unknown key"
6409
msgid_plural "{0} commits with unknown keys"
6413
#: breezy/gpg.py:378
6414
#, python-brace-format
6415
msgid "{0} commit not valid"
6416
msgid_plural "{0} commits not valid"
6420
#: breezy/gpg.py:386
6421
#, python-brace-format
6422
msgid "{0} commit not signed"
6423
msgid_plural "{0} commits not signed"
6427
#: breezy/gpg.py:394
6428
#, python-brace-format
6429
msgid "{0} commit with key now expired"
6430
msgid_plural "{0} commits with key now expired"
6434
#: breezy/gpg.py:414
6435
#, python-brace-format
6436
msgid "{0} commit by author {1} with key {2} now expired"
6437
msgid_plural "{0} commits by author {1} with key {2} now expired"
6441
#: breezy/gpg.py:430
6442
#, python-brace-format
6443
msgid "{0} signed {1} commit"
6444
msgid_plural "{0} signed {1} commits"
6448
#: breezy/gpg.py:447 breezy/gpg.py:464
6449
#, python-brace-format
6450
msgid "{0} commit by author {1}"
6451
msgid_plural "{0} commits by author {1}"
6455
#: breezy/gpg.py:479
6456
#, python-brace-format
6457
msgid "Unknown key {0} signed {1} commit"
6458
msgid_plural "Unknown key {0} signed {1} commits"
6462
#: breezy/hooks.py:320
6464
msgid "Introduced in: %s"
6467
#: breezy/hooks.py:323
6469
msgid "Deprecated in: %s"
6472
#: breezy/lock.py:546
6473
msgid "{0!r} was {1} locked again"
6476
#: breezy/lockdir.py:322
6478
msgid "error removing pending lock: %s"
6481
#: breezy/lockdir.py:614
6482
msgid "Unable to obtain"
6485
#: breezy/lockdir.py:616
6486
msgid "Lock owner changed for"
6489
#: breezy/lockdir.py:618
6490
#, python-brace-format
6491
msgid "{0} lock {1} {2}."
6494
#: breezy/lockdir.py:625
6496
msgid "Will continue to try until %s, unless you press Ctrl-C."
6499
#: breezy/lockdir.py:627
6500
msgid "See \"brz help break-lock\" for more."
6503
#: breezy/lockdir.py:737
6506
"held by %(user)s on %(hostname)s (process #%(pid)s), acquired %(time_ago)s"
6509
#: breezy/log.py:423
6510
msgid "Further revision history missing."
6513
#: breezy/log.py:579
6514
msgid "--exclude-common-ancestry requires two different revisions"
6517
#: breezy/log.py:581
6519
msgid "invalid direction %r"
6522
#: breezy/log.py:669
6523
msgid "Start revision not found in history of end revision."
6526
#: breezy/log.py:1117 breezy/log.py:1175
6527
msgid "Logging revision 0 is invalid."
6530
#: breezy/log.py:1120 breezy/log.py:1177
6531
msgid "Start revision must be older than the end revision."
6534
#: breezy/log.py:1870
6536
msgid "unknown log formatter: %r"
6539
#: breezy/log.py:2168
6541
msgid_plural "fixes bugs"
6545
#: breezy/log.py:2171
6547
msgid_plural "related bugs"
6551
#: breezy/merge.py:673
6552
msgid "All changes applied successfully."
6555
#: breezy/merge.py:675
6557
msgid "%d conflicts encountered."
6560
#: breezy/merge.py:808 breezy/merge.py:1858
6561
msgid "Preparing file merge"
6564
#: breezy/multiparent.py:437
6565
msgid "Importing revisions"
6568
# help of 'help' option
6569
#: breezy/option.py:547
6570
msgid "Show help message."
6573
# help of 'quiet' option
6574
#: breezy/option.py:549
6575
msgid "Only display errors and warnings."
6578
# help of 'usage' option
6579
#: breezy/option.py:552
6580
msgid "Show usage message and options."
6583
# help of 'verbose' option
6584
#: breezy/option.py:554
6585
msgid "Display more information."
6588
# help of 'change' option
6589
#: breezy/option.py:562
6591
"Select changes introduced by the specified revision. See also \"help "
6595
# help of 'directory' option
6596
#: breezy/option.py:564
6597
msgid "Branch to operate on, instead of working directory."
6600
# help of 'log-format=long' option
6601
#: breezy/option.py:566
6602
msgid "Detailed log format."
6605
# help of 'log-format=gnu-changelog' option
6606
#: breezy/option.py:566
6607
msgid "Format used by GNU ChangeLog files."
6610
# help of 'log-format=line' option
6611
#: breezy/option.py:566
6612
msgid "Log format with one line per revision."
6615
# help of 'log-format=short' option
6616
#: breezy/option.py:566
6617
msgid "Moderately short log format."
6620
# help of 'log-format' option
6621
#: breezy/option.py:566
6622
msgid "Use specified log format."
6625
# title of 'log-format' option
6626
#: breezy/option.py:568
6630
# help of 'merge-type=lca' option
6631
#: breezy/option.py:570
6632
msgid "LCA-newness merge."
6635
# help of 'merge-type=diff3' option
6636
#: breezy/option.py:570
6637
msgid "Merge using external diff3."
6640
# help of 'merge-type=merge3' option
6641
#: breezy/option.py:570
6642
msgid "Native diff3-style merge."
6645
# help of 'merge-type' option
6646
#: breezy/option.py:570
6647
msgid "Select a particular merge algorithm."
6650
# help of 'merge-type=weave' option
6651
#: breezy/option.py:570
6652
msgid "Weave-based merge."
6655
# title of 'merge-type' option
6656
#: breezy/option.py:572
6657
msgid "Merge algorithm"
6660
# help of 'message' option
6661
#: breezy/option.py:575
6662
msgid "Message string."
6665
# help of 'null' option
6666
#: breezy/option.py:577
6667
msgid "Use an ASCII NUL (\\0) separator rather than a newline."
6670
# help of 'overwrite' option
6671
#: breezy/option.py:579
6672
msgid "Ignore differences between branches and overwrite unconditionally."
6675
# help of 'remember' option
6676
#: breezy/option.py:581
6677
msgid "Remember the specified location as a default."
6680
# help of 'reprocess' option
6681
#: breezy/option.py:583
6682
msgid "Reprocess to reduce spurious conflicts."
6685
# help of 'revision' option
6686
#: breezy/option.py:587
6687
msgid "See \"help revisionspec\" for details."
6690
# help of 'show-ids' option
6691
#: breezy/option.py:589
6692
msgid "Show internal object ids."
6695
# help of 'timezone' option
6696
#: breezy/option.py:592
6697
msgid "Display timezone as local, original, or utc."
6700
#: breezy/osutils.py:109
6701
msgid "Parameter {0!r} encoding is unsupported by {1} application locale."
6704
#: breezy/osutils.py:234
6705
msgid "lstat/stat of ({0!r}): {1!r}"
6708
#: breezy/osutils.py:1048 breezy/osutils.py:1059
6710
msgid "sorry, %r not allowed in path"
6713
#: breezy/osutils.py:1278
6715
msgid "%r is too short to calculate a relative path"
6718
# help of 'plugin' option of 'bash-completion' command
6719
#: breezy/plugins/bash_completion/bashcomp.py:419
6720
msgid "Enable completions for the selected plugin (default: all plugins)"
6723
#: breezy/plugins/bash_completion/bashcomp.py:420
6724
msgid "Generate a shell function for bash command line completion."
6727
#: breezy/plugins/bash_completion/bashcomp.py:422
6729
"This command generates a shell function which can be used by bash to\n"
6730
"automatically complete the currently typed command when the user presses\n"
6731
"the completion key (usually tab)."
6734
#: breezy/plugins/bash_completion/bashcomp.py:426
6736
"Commonly used like this:\n"
6737
" eval \"`brz bash-completion`\""
6740
# help of 'function-name' option of 'bash-completion' command
6741
#: breezy/plugins/bash_completion/bashcomp.py:432
6742
msgid "Name of the generated function (default: _brz)"
6745
# help of 'function-only' option of 'bash-completion' command
6746
#: breezy/plugins/bash_completion/bashcomp.py:434
6747
msgid "Generate only the shell function, don't enable it"
6750
#: breezy/plugins/fastimport/cmds.py:79
6751
msgid "Backend for fast Bazaar data importers."
6754
#: breezy/plugins/fastimport/cmds.py:81
6756
"This command reads a mixed command/data stream and creates\n"
6757
"branches in a Bazaar repository accordingly. The preferred\n"
6761
#: breezy/plugins/fastimport/cmds.py:85
6762
msgid " bzr fast-import project.fi project.bzr"
6765
#: breezy/plugins/fastimport/cmds.py:87
6767
"Numerous commands are provided for generating a fast-import file\n"
6768
"to use as input. \n"
6769
"To specify standard input as the input stream, use a\n"
6770
"source name of '-' (instead of project.fi). If the source name\n"
6771
"ends in '.gz', it is assumed to be compressed in gzip format."
6774
#: breezy/plugins/fastimport/cmds.py:93
6776
"project.bzr will be created if it doesn't exist. If it exists\n"
6777
"already, it should be empty or be an existing Bazaar repository\n"
6778
"or branch. If not specified, the current directory is assumed."
6781
#: breezy/plugins/fastimport/cmds.py:97
6783
"fast-import will intelligently select the format to use when\n"
6784
"creating a repository or branch. If you are running Bazaar 1.17\n"
6785
"up to Bazaar 2.0, the default format for Bazaar 2.x (\"2a\") is used.\n"
6786
"Otherwise, the current default format (\"pack-0.92\" for Bazaar 1.x)\n"
6787
"is used. If you wish to specify a custom format, use the `--format`\n"
6791
#: breezy/plugins/fastimport/cmds.py:104 breezy/plugins/fastimport/cmds.py:176
6792
#: breezy/plugins/fastimport/cmds.py:190 breezy/plugins/fastimport/cmds.py:373
6796
#: breezy/plugins/fastimport/cmds.py:106
6798
" To maintain backwards compatibility, fast-import lets you\n"
6799
" create the target repository or standalone branch yourself.\n"
6800
" It is recommended though that you let fast-import create\n"
6801
" these for you instead."
6804
#: breezy/plugins/fastimport/cmds.py:111
6805
msgid ":Branch mapping rules:"
6808
#: breezy/plugins/fastimport/cmds.py:113
6809
msgid " Git reference names are mapped to Bazaar branch names as follows:"
6812
#: breezy/plugins/fastimport/cmds.py:115
6814
" * refs/heads/foo is mapped to foo\n"
6815
" * refs/remotes/origin/foo is mapped to foo.remote\n"
6816
" * refs/tags/foo is mapped to foo.tag\n"
6817
" * */master is mapped to trunk, trunk.remote, etc.\n"
6818
" * */trunk is mapped to git-trunk, git-trunk.remote, etc."
6821
#: breezy/plugins/fastimport/cmds.py:121
6822
msgid ":Branch creation rules:"
6825
#: breezy/plugins/fastimport/cmds.py:123
6827
" When a shared repository is created or found at the destination,\n"
6828
" branches are created inside it. In the simple case of a single\n"
6829
" branch (refs/heads/master) inside the input file, the branch is\n"
6830
" project.bzr/trunk."
6833
#: breezy/plugins/fastimport/cmds.py:128
6835
" When a standalone branch is found at the destination, the trunk\n"
6836
" is imported there and warnings are output about any other branches\n"
6837
" found in the input file."
6840
#: breezy/plugins/fastimport/cmds.py:132
6842
" When a branch in a shared repository is found at the destination,\n"
6843
" that branch is made the trunk and other branches, if any, are\n"
6844
" created in sister directories."
6847
#: breezy/plugins/fastimport/cmds.py:136
6848
msgid ":Working tree updates:"
6851
#: breezy/plugins/fastimport/cmds.py:138
6853
" The working tree is generated for the trunk branch. If multiple\n"
6854
" branches are created, a message is output on completion explaining\n"
6855
" how to create the working trees for other branches."
6858
#: breezy/plugins/fastimport/cmds.py:142
6859
msgid ":Custom exporters:"
6862
#: breezy/plugins/fastimport/cmds.py:144
6864
" The fast-export-from-xxx commands typically call more advanced\n"
6865
" xxx-fast-export scripts. You are welcome to use the advanced\n"
6866
" scripts if you prefer."
6869
#: breezy/plugins/fastimport/cmds.py:148
6871
" If you wish to write a custom exporter for your project, see\n"
6872
" http://bazaar-vcs.org/BzrFastImport for the detailed protocol\n"
6873
" specification. In many cases, exporters can be written quite\n"
6874
" quickly using whatever scripting/programming language you like."
6877
#: breezy/plugins/fastimport/cmds.py:153
6878
msgid ":User mapping:"
6881
#: breezy/plugins/fastimport/cmds.py:155
6883
" Some source repositories store just the user name while Bazaar\n"
6884
" prefers a full email address. You can adjust user-ids while\n"
6885
" importing by using the --user-map option. The argument is a\n"
6886
" text file with lines in the format::"
6889
#: breezy/plugins/fastimport/cmds.py:160
6890
msgid " old-id = new-id"
6893
#: breezy/plugins/fastimport/cmds.py:162
6895
" Blank lines and lines beginning with # are ignored.\n"
6896
" If old-id has the special value '@', then users without an\n"
6897
" email address will get one created by using the matching new-id\n"
6898
" as the domain, unless a more explicit address is given for them.\n"
6899
" For example, given the user-map of::"
6902
#: breezy/plugins/fastimport/cmds.py:168
6904
" @ = example.com\n"
6905
" bill = William Jones <bill@example.com>"
6908
#: breezy/plugins/fastimport/cmds.py:171
6909
msgid " then user-ids are mapped as follows::"
6912
#: breezy/plugins/fastimport/cmds.py:173
6914
" maria => maria <maria@example.com>\n"
6915
" bill => William Jones <bill@example.com>"
6918
#: breezy/plugins/fastimport/cmds.py:178
6920
" User mapping is supported by both the fast-import and\n"
6921
" fast-import-filter commands."
6924
#: breezy/plugins/fastimport/cmds.py:181
6925
msgid ":Blob tracking:"
6928
#: breezy/plugins/fastimport/cmds.py:183
6930
" As some exporters (like git-fast-export) reuse blob data across\n"
6931
" commits, fast-import makes two passes over the input file by\n"
6932
" default. In the first pass, it collects data about what blobs are\n"
6933
" used when, along with some other statistics (e.g. total number of\n"
6934
" commits). In the second pass, it generates the repository and\n"
6938
#: breezy/plugins/fastimport/cmds.py:192
6940
" The initial pass isn't done if the --info option is used\n"
6941
" to explicitly pass in information about the input stream.\n"
6942
" It also isn't done if the source is standard input. In the\n"
6943
" latter case, memory consumption may be higher than otherwise\n"
6944
" because some blobs may be kept in memory longer than necessary."
6947
#: breezy/plugins/fastimport/cmds.py:198
6948
msgid ":Restarting an import:"
6951
#: breezy/plugins/fastimport/cmds.py:200
6953
" At checkpoints and on completion, the commit-id -> revision-id\n"
6954
" map is saved to a file called 'fastimport-id-map' in the control\n"
6955
" directory for the repository (e.g. .bzr/repository). If the import\n"
6956
" is interrupted or unexpectedly crashes, it can be started again\n"
6957
" and this file will be used to skip over already loaded revisions.\n"
6958
" As long as subsequent exports from the original source begin\n"
6959
" with exactly the same revisions, you can use this feature to\n"
6960
" maintain a mirror of a repository managed by a foreign tool.\n"
6961
" If and when Bazaar is used to manage the repository, this file\n"
6962
" can be safely deleted."
6965
#: breezy/plugins/fastimport/cmds.py:213
6966
msgid " Import a Subversion repository into Bazaar::"
6969
#: breezy/plugins/fastimport/cmds.py:215
6971
" svn-fast-export /svn/repo/path > project.fi\n"
6972
" bzr fast-import project.fi project.bzr"
6975
#: breezy/plugins/fastimport/cmds.py:218
6976
msgid " Import a CVS repository into Bazaar::"
6979
#: breezy/plugins/fastimport/cmds.py:220
6981
" cvs2git /cvs/repo/path > project.fi\n"
6982
" bzr fast-import project.fi project.bzr"
6985
#: breezy/plugins/fastimport/cmds.py:223
6986
msgid " Import a Git repository into Bazaar::"
6989
#: breezy/plugins/fastimport/cmds.py:225
6991
" cd /git/repo/path\n"
6992
" git fast-export --all > project.fi\n"
6993
" bzr fast-import project.fi project.bzr"
6996
#: breezy/plugins/fastimport/cmds.py:229
6997
msgid " Import a Mercurial repository into Bazaar::"
7000
#: breezy/plugins/fastimport/cmds.py:231
7002
" cd /hg/repo/path\n"
7003
" hg fast-export > project.fi\n"
7004
" bzr fast-import project.fi project.bzr"
7007
#: breezy/plugins/fastimport/cmds.py:235
7008
msgid " Import a Darcs repository into Bazaar::"
7011
#: breezy/plugins/fastimport/cmds.py:237
7013
" cd /darcs/repo/path\n"
7014
" darcs-fast-export > project.fi\n"
7015
" bzr fast-import project.fi project.bzr"
7018
# help of 'user-map' option of 'fast-import' command
7019
#: breezy/plugins/fastimport/cmds.py:246
7020
msgid "Path to file containing a map of user-ids."
7023
# help of 'info' option of 'fast-import' command
7024
#: breezy/plugins/fastimport/cmds.py:249
7025
msgid "Path to file containing caching hints."
7028
# help of 'trees' option of 'fast-import' command
7029
#: breezy/plugins/fastimport/cmds.py:252
7030
msgid "Update all working trees, not just trunk's."
7033
# help of 'count' option of 'fast-import' command
7034
#: breezy/plugins/fastimport/cmds.py:255
7035
msgid "Import this many revisions then exit."
7038
# help of 'checkpoint' option of 'fast-import' command
7039
#: breezy/plugins/fastimport/cmds.py:258
7040
msgid "Checkpoint automatically every N revisions. The default is 10000."
7043
# help of 'autopack' option of 'fast-import' command
7044
#: breezy/plugins/fastimport/cmds.py:262
7045
msgid "Pack every N checkpoints. The default is 4."
7048
# help of 'inv-cache' option of 'fast-import' command
7049
#: breezy/plugins/fastimport/cmds.py:265
7050
msgid "Number of inventories to cache."
7053
# help of 'mode' option of 'fast-import' command
7054
#: breezy/plugins/fastimport/cmds.py:268
7055
msgid "The import algorithm to use."
7058
# title of 'mode' option of 'fast-import' command
7059
#: breezy/plugins/fastimport/cmds.py:269
7060
msgid "Import Algorithm"
7063
# help of 'mode=default' option of 'fast-import' command
7064
#: breezy/plugins/fastimport/cmds.py:270
7065
msgid "Use the preferred algorithm (inventory deltas)."
7068
# help of 'mode=experimental' option of 'fast-import' command
7069
#: breezy/plugins/fastimport/cmds.py:271
7070
msgid "Enable experimental features."
7073
# help of 'format' option of 'fast-import' command
7074
#: breezy/plugins/fastimport/cmds.py:281
7076
"Specify a format for the created repository. See \"bzr help formats\" for "
7080
#: breezy/plugins/fastimport/cmds.py:347
7081
msgid "Generate a fast-import stream from a Bazaar branch."
7084
#: breezy/plugins/fastimport/cmds.py:349
7086
"This program generates a stream from a Bazaar branch in fast-import\n"
7087
"format used by tools such as bzr fast-import, git-fast-import and\n"
7091
#: breezy/plugins/fastimport/cmds.py:353
7093
"It takes two optional arguments: the source bzr branch to export and\n"
7094
"the destination to write the file to write the fastimport stream to."
7097
#: breezy/plugins/fastimport/cmds.py:356
7099
"If no source is specified, it will search for a branch in the\n"
7100
"current directory."
7103
#: breezy/plugins/fastimport/cmds.py:359
7105
"If no destination is given or the destination is '-', standard output\n"
7106
"is used. Otherwise, the destination is the name of a file. If the\n"
7107
"destination ends in '.gz', the output will be compressed into gzip\n"
7111
#: breezy/plugins/fastimport/cmds.py:364
7112
msgid ":Round-tripping:"
7115
#: breezy/plugins/fastimport/cmds.py:366
7117
" Recent versions of the fast-import specification support features\n"
7118
" that allow effective round-tripping most of the metadata in Bazaar\n"
7119
" branches. As such, fast-exporting a branch and fast-importing the data\n"
7120
" produced will create a new repository with roughly equivalent history, i."
7122
" \"bzr log -v -p --include-merges --forward\" on the old branch and\n"
7123
" new branch should produce similar, if not identical, results."
7126
#: breezy/plugins/fastimport/cmds.py:375
7128
" Be aware that the new repository may appear to have similar history\n"
7129
" but internally it is quite different with new revision-ids and\n"
7130
" file-ids assigned. As a consequence, the ability to easily merge\n"
7131
" with branches based on the old repository is lost. Depending on your\n"
7132
" reasons for producing a new repository, this may or may not be an\n"
7136
#: breezy/plugins/fastimport/cmds.py:382
7137
msgid ":Interoperability:"
7140
#: breezy/plugins/fastimport/cmds.py:384
7142
" fast-export can use the following \"extended features\" to\n"
7143
" produce a richer data stream:"
7146
#: breezy/plugins/fastimport/cmds.py:387
7148
" * *multiple-authors* - if a commit has multiple authors (as commonly\n"
7149
" occurs in pair-programming), all authors will be included in the\n"
7150
" output, not just the first author"
7153
#: breezy/plugins/fastimport/cmds.py:391
7155
" * *commit-properties* - custom metadata per commit that Bazaar stores\n"
7156
" in revision properties (e.g. branch-nick and bugs fixed by this\n"
7157
" change) will be included in the output."
7160
#: breezy/plugins/fastimport/cmds.py:395
7162
" * *empty-directories* - directories, even the empty ones, will be\n"
7163
" included in the output."
7166
#: breezy/plugins/fastimport/cmds.py:398
7168
" To disable these features and produce output acceptable to git 1.6,\n"
7169
" use the --plain option. To enable these features, use --no-plain.\n"
7170
" Currently, --plain is the default but that will change in the near\n"
7171
" future once the feature names and definitions are formally agreed\n"
7172
" to by the broader fast-import developer community."
7175
#: breezy/plugins/fastimport/cmds.py:404
7177
" Git has stricter naming rules for tags and fast-export --plain\n"
7178
" will skip tags which can't be imported into git. To replace characters\n"
7179
" unsupported in git with an underscore instead, specify\n"
7180
" --rewrite-tag-names."
7183
#: breezy/plugins/fastimport/cmds.py:409
7184
msgid ":History truncation:"
7187
#: breezy/plugins/fastimport/cmds.py:411
7189
" It is sometimes convenient to simply truncate the revision history at a\n"
7190
" certain point. The --baseline option, to be used in conjunction with -r,\n"
7191
" emits a baseline commit containing the state of the entire source tree at\n"
7192
" the first requested revision. This allows a user to produce a tree\n"
7193
" identical to the original without munging multiple exports."
7196
#: breezy/plugins/fastimport/cmds.py:419
7197
msgid " To produce data destined for import into Bazaar::"
7200
#: breezy/plugins/fastimport/cmds.py:421
7201
msgid " bzr fast-export --no-plain my-bzr-branch my.fi.gz"
7204
#: breezy/plugins/fastimport/cmds.py:423
7205
msgid " To produce data destined for Git 1.6::"
7208
#: breezy/plugins/fastimport/cmds.py:425
7209
msgid " bzr fast-export --plain my-bzr-branch my.fi"
7212
#: breezy/plugins/fastimport/cmds.py:427
7214
" To import several unmerged but related branches into the same repository,\n"
7215
" use the --{export,import}-marks options, and specify a name for the git\n"
7216
" branch like this::"
7219
#: breezy/plugins/fastimport/cmds.py:431
7221
" bzr fast-export --export-marks=marks.bzr project.dev |\n"
7222
" GIT_DIR=project/.git git-fast-import --export-marks=marks.git"
7225
#: breezy/plugins/fastimport/cmds.py:434
7227
" bzr fast-export --import-marks=marks.bzr -b other project.other |\n"
7228
" GIT_DIR=project/.git git-fast-import --import-marks=marks.git"
7231
#: breezy/plugins/fastimport/cmds.py:437
7233
" If you get a \"Missing space after source\" error from git-fast-import,\n"
7234
" see the top of the commands.py module for a work-around."
7237
#: breezy/plugins/fastimport/cmds.py:440
7239
" Since bzr uses per-branch tags and git/hg use per-repo tags, the\n"
7240
" way bzr fast-export presently emits tags (unconditional reset &\n"
7241
" new ref) may result in clashes when several different branches\n"
7242
" are imported into single git/hg repo. If this occurs, use the\n"
7243
" bzr fast-export option --no-tags during the export of one or more\n"
7244
" branches to avoid the issue."
7247
# help of 'git-branch' option of 'fast-export' command
7248
#: breezy/plugins/fastimport/cmds.py:453
7249
msgid "Name of the git branch to create (default=master)."
7252
# help of 'checkpoint' option of 'fast-export' command
7253
#: breezy/plugins/fastimport/cmds.py:456
7254
msgid "Checkpoint every N revisions (default=10000)."
7257
# help of 'marks' option of 'fast-export' command
7258
#: breezy/plugins/fastimport/cmds.py:459
7259
msgid "Import marks from and export marks to file."
7262
# help of 'import-marks' option of 'fast-export' command
7263
# help of 'import-marks' option of 'fast-import' command
7264
#: breezy/plugins/fastimport/cmds.py:462
7265
msgid "Import marks from file."
7268
# help of 'export-marks' option of 'fast-export' command
7269
# help of 'export-marks' option of 'fast-import' command
7270
#: breezy/plugins/fastimport/cmds.py:465
7271
msgid "Export marks to file."
7274
# help of 'plain' option of 'fast-export' command
7275
#: breezy/plugins/fastimport/cmds.py:468
7276
msgid "Exclude metadata to maximise interoperability."
7279
# help of 'rewrite-tag-names' option of 'fast-export' command
7280
#: breezy/plugins/fastimport/cmds.py:471
7281
msgid "Replace characters invalid in git with '_' (plain mode only)."
7284
# help of 'baseline' option of 'fast-export' command
7285
#: breezy/plugins/fastimport/cmds.py:475
7286
msgid "Export an 'absolute' baseline commit prior tothe first relative commit"
7289
# help of 'no-tags' option of 'fast-export' command
7290
#: breezy/plugins/fastimport/cmds.py:479
7291
msgid "Don't export tags"
7294
#: breezy/plugins/grep/cmds.py:83
7295
msgid "Print lines matching PATTERN for specified files and revisions."
7298
#: breezy/plugins/grep/cmds.py:85
7300
"This command searches the specified files and revisions for a given\n"
7301
"pattern. The pattern is specified as a Python regular expressions[1]."
7304
#: breezy/plugins/grep/cmds.py:88
7306
"If the file name is not specified, the revisions starting with the\n"
7307
"current directory are searched recursively. If the revision number is\n"
7308
"not specified, the working copy is searched. To search the last committed\n"
7309
"revision, use the '-r -1' or '-r last:1' option."
7312
#: breezy/plugins/grep/cmds.py:93
7314
"Unversioned files are not searched unless explicitly specified on the\n"
7315
"command line. Unversioned directores are not searched."
7318
#: breezy/plugins/grep/cmds.py:96
7320
"When searching a pattern, the output is shown in the 'filepath:string'\n"
7321
"format. If a revision is explicitly searched, the output is shown as\n"
7322
"'filepath~N:string', where N is the revision number."
7325
#: breezy/plugins/grep/cmds.py:100
7327
"--include and --exclude options can be used to search only (or exclude\n"
7328
"from search) files with base name matches the specified Unix style GLOB\n"
7329
"pattern. The GLOB pattern an use *, ?, and [...] as wildcards, and \\\n"
7330
"to quote wildcard or backslash character literally. Note that the glob\n"
7331
"pattern is not a regular expression."
7334
#: breezy/plugins/grep/cmds.py:106
7335
msgid "[1] http://docs.python.org/library/re.html#regular-expression-syntax"
7338
# help of 'color' option of 'grep' command
7339
#: breezy/plugins/grep/cmds.py:115
7340
msgid "Show match in color. WHEN is never, always or auto."
7343
# help of 'diff' option of 'grep' command
7344
#: breezy/plugins/grep/cmds.py:117
7345
msgid "Grep for pattern in changeset for each revision."
7348
# help of 'exclude' option of 'grep' command
7349
#: breezy/plugins/grep/cmds.py:119
7350
msgid "Skip files whose base name matches GLOB."
7353
# help of 'include' option of 'grep' command
7354
#: breezy/plugins/grep/cmds.py:121
7355
msgid "Search only files whose base name matches GLOB."
7358
# help of 'files-with-matches' option of 'grep' command
7359
#: breezy/plugins/grep/cmds.py:123
7360
msgid "Print only the name of each input file in which PATTERN is found."
7363
# help of 'files-without-match' option of 'grep' command
7364
#: breezy/plugins/grep/cmds.py:126
7365
msgid "Print only the name of each input file in which PATTERN is not found."
7368
# help of 'fixed-string' option of 'grep' command
7369
#: breezy/plugins/grep/cmds.py:129
7370
msgid "Interpret PATTERN is a single fixed string (not regex)."
7373
# help of 'from-root' option of 'grep' command
7374
#: breezy/plugins/grep/cmds.py:131
7376
"Search for pattern starting from the root of the branch. (implies --"
7380
# help of 'ignore-case' option of 'grep' command
7381
#: breezy/plugins/grep/cmds.py:134
7382
msgid "ignore case distinctions while matching."
7385
# help of 'levels' option of 'grep' command
7386
#: breezy/plugins/grep/cmds.py:136
7388
"Number of levels to display - 0 for all, 1 for collapsed (1 is default)."
7391
# help of 'line-number' option of 'grep' command
7392
#: breezy/plugins/grep/cmds.py:141
7393
msgid "show 1-based line number."
7396
# help of 'no-recursive' option of 'grep' command
7397
#: breezy/plugins/grep/cmds.py:143
7398
msgid "Don't recurse into subdirectories. (default is --recursive)"
7401
# help of 'null' option of 'grep' command
7402
#: breezy/plugins/grep/cmds.py:145
7404
"Write an ASCII NUL (\\0) separator between output lines rather than a "
7408
#: breezy/plugins/launchpad/account.py:66
7409
msgid "Setting ssh/sftp usernames for launchpad.net."
7412
#: breezy/plugins/launchpad/cmds.py:44
7413
msgid "Open a Launchpad branch page in your web browser."
7416
# help of 'dry-run' option of 'launchpad-open' command
7417
#: breezy/plugins/launchpad/cmds.py:49
7418
msgid "Do not actually open the browser. Just say the URL we would use."
7421
#: breezy/plugins/launchpad/cmds.py:85
7423
msgid "Opening %s in web browser"
7426
#: breezy/plugins/launchpad/cmds.py:93
7427
msgid "Show or set the Launchpad user ID."
7430
#: breezy/plugins/launchpad/cmds.py:95
7432
"When communicating with Launchpad, some commands need to know your\n"
7433
"Launchpad user ID. This command can be used to set or show the\n"
7434
"user ID that Bazaar will use for such communication."
7437
#: breezy/plugins/launchpad/cmds.py:99
7440
" Show the Launchpad ID of the current user::"
7443
#: breezy/plugins/launchpad/cmds.py:102
7444
msgid " brz launchpad-login"
7447
#: breezy/plugins/launchpad/cmds.py:104
7448
msgid " Set the Launchpad ID of the current user to 'bob'::"
7451
#: breezy/plugins/launchpad/cmds.py:106
7452
msgid " brz launchpad-login bob"
7455
# help of 'no-check' option of 'launchpad-login' command
7456
#: breezy/plugins/launchpad/cmds.py:113
7457
msgid "Don't check that the user name is valid."
7460
#: breezy/plugins/launchpad/cmds.py:128 breezy/plugins/launchpad/cmds.py:139
7461
msgid "Launchpad user ID exists and has SSH keys.\n"
7464
#: breezy/plugins/launchpad/cmds.py:131
7465
msgid "No Launchpad user ID configured.\n"
7468
#: breezy/plugins/launchpad/cmds.py:142
7470
msgid "Launchpad user ID set to '%s'.\n"
7473
#: breezy/plugins/launchpad/cmds.py:147
7474
msgid "Unset the Launchpad user ID."
7477
#: breezy/plugins/launchpad/cmds.py:149
7479
"When communicating with Launchpad, some commands need to know your\n"
7480
"Launchpad user ID. This command will log you out from Launchpad.\n"
7481
"This means that communication with Launchpad will happen over\n"
7482
"HTTPS, and will not require one of your SSH keys to be available."
7485
#: breezy/plugins/launchpad/cmds.py:161
7486
msgid "Not logged into Launchpad.\n"
7489
#: breezy/plugins/launchpad/cmds.py:166
7491
msgid "Launchpad user ID %s logged out.\n"
7494
#: breezy/plugins/launchpad/cmds.py:172
7495
msgid "Ask Launchpad to mirror a branch now."
7498
#: breezy/plugins/launchpad/cmds.py:189
7499
msgid "Propose merging a branch on Launchpad."
7502
#: breezy/plugins/launchpad/cmds.py:191
7504
"This will open your usual editor to provide the initial comment. When it\n"
7505
"has created the proposal, it will open it in your default web browser."
7508
#: breezy/plugins/launchpad/cmds.py:194
7510
"The branch will be proposed to merge into SUBMIT_BRANCH. If SUBMIT_BRANCH\n"
7511
"is not supplied, the remembered submit branch will be used. If no submit\n"
7512
"branch is remembered, the development focus will be used."
7515
#: breezy/plugins/launchpad/cmds.py:198
7517
"By default, the SUBMIT_BRANCH's review team will be requested to review\n"
7518
"the merge proposal. This can be overriden by specifying --review (-R).\n"
7519
"The parameter the launchpad account name of the desired reviewer. This\n"
7520
"may optionally be followed by '=' and the review type. For example:"
7523
#: breezy/plugins/launchpad/cmds.py:203
7524
msgid " brz lp-propose-merge --review jrandom --review review-team=qa"
7527
#: breezy/plugins/launchpad/cmds.py:205
7529
"This will propose a merge, request \"jrandom\" to perform a review of\n"
7530
"unspecified type, and request \"review-team\" to perform a \"qa\" review."
7533
# help of 'staging' option of 'lp-propose-merge' command
7534
#: breezy/plugins/launchpad/cmds.py:210
7535
msgid "Propose the merge on staging."
7538
# help of 'message' option of 'lp-propose-merge' command
7539
#: breezy/plugins/launchpad/cmds.py:212
7540
msgid "Commit message."
7543
# help of 'approve' option of 'lp-propose-merge' command
7544
#: breezy/plugins/launchpad/cmds.py:214
7546
"Mark the proposal as approved immediately, setting the approved revision to "
7550
# help of 'fixes' option of 'lp-propose-merge' command
7551
#: breezy/plugins/launchpad/cmds.py:216
7552
msgid "The bug this proposal fixes."
7555
# help of 'review' option of 'lp-propose-merge' command
7556
#: breezy/plugins/launchpad/cmds.py:218
7557
msgid "Requested reviewer and optional type."
7560
#: breezy/plugins/launchpad/cmds.py:253
7561
msgid "Find the proposal to merge this revision."
7564
#: breezy/plugins/launchpad/cmds.py:255
7566
"Finds the merge proposal(s) that discussed landing the specified revision.\n"
7567
"This works only if the if the merged_revno was recorded for the merge\n"
7568
"proposal. The proposal(s) are opened in a web browser."
7571
#: breezy/plugins/launchpad/cmds.py:259
7573
"Only the revision specified is searched for. To find the mainline\n"
7574
"revision that merged it into mainline, use the \"mainline\" revision spec."
7577
#: breezy/plugins/launchpad/cmds.py:262
7578
msgid "So, to find the merge proposal that reviewed line 1 of README::"
7581
#: breezy/plugins/launchpad/cmds.py:264
7582
msgid " brz lp-find-proposal -r mainline:annotate:README:1"
7585
#: breezy/plugins/launchpad/cmds.py:281
7586
msgid "No review found."
7589
#: breezy/plugins/launchpad/cmds.py:282
7591
msgid "%d proposals(s) found."
7594
#: breezy/plugins/launchpad/cmds.py:291
7595
msgid "Finding proposals"
7598
#: breezy/plugins/launchpad/lp_api.py:240
7599
#: breezy/plugins/launchpad/lp_api.py:245
7601
msgid "%s is not registered on Launchpad"
7604
#: breezy/plugins/launchpad/lp_api.py:255
7606
msgid "%s has no development focus."
7609
#: breezy/plugins/launchpad/lp_api.py:260
7611
msgid "development focus %s has no branch."
7614
#: breezy/plugins/launchpad/lp_api.py:265
7616
msgid "source package %s has no branch."
7619
#: breezy/plugins/launchpad/lp_api.py:269
7621
msgid "%s has no associated product or source package."
7624
#: breezy/plugins/launchpad/lp_api.py:280
7626
msgid "%s is already up-to-date."
7629
#: breezy/plugins/launchpad/lp_api.py:287
7631
msgid "Pushing to %s"
7634
#: breezy/plugins/launchpad/lp_directory.py:165
7635
#, python-brace-format
7637
"resolution for {0}\n"
7642
#: breezy/plugins/launchpad/lp_propose.py:152
7644
msgid "There is already a branch merge proposal: %s"
7647
#: breezy/plugins/stats/cmds.py:236
7648
msgid "Generate statistics for LOCATION."
7651
# help of 'show-class' option of 'committer-statistics' command
7652
#: breezy/plugins/stats/cmds.py:241
7653
msgid "Show the class of contributions."
7656
#: breezy/plugins/stats/cmds.py:276
7657
msgid "Figure out the ancestor graph for LOCATION"
7660
#: breezy/plugins/stats/cmds.py:379
7661
msgid "Determine credits for LOCATION."
7664
#: breezy/plugins/upload/cmds.py:468
7665
msgid "Upload a working tree, as a whole or incrementally."
7668
#: breezy/plugins/upload/cmds.py:470
7670
"If no destination is specified use the last one used.\n"
7671
"If no revision is specified upload the changes since the last upload."
7674
#: breezy/plugins/upload/cmds.py:473
7675
msgid "Changes include files added, renamed, modified or removed."
7678
# help of 'full' option of 'upload' command
7679
#: breezy/plugins/upload/cmds.py:481
7680
msgid "Upload the full working tree."
7683
# help of 'quiet' option of 'upload' command
7684
#: breezy/plugins/upload/cmds.py:482
7685
msgid "Do not output what is being done."
7688
# help of 'directory' option of 'upload' command
7689
#: breezy/plugins/upload/cmds.py:485
7691
"Branch to upload from, rather than the one containing the working directory."
7694
# help of 'auto' option of 'upload' command
7695
#: breezy/plugins/upload/cmds.py:491
7696
msgid "Trigger an upload from this branch whenever the tip revision changes."
7699
#: breezy/plugins/weave_fmt/bzrdir.py:243
7700
msgid "pb parameter to convert() is deprecated"
7703
#: breezy/plugins/weave_fmt/bzrdir.py:245
7704
msgid "starting upgrade from format 4 to 5"
7707
#: breezy/plugins/weave_fmt/bzrdir.py:254
7708
msgid "note: upgrade may be faster if all store files are ungzipped first"
7711
#: breezy/plugins/weave_fmt/bzrdir.py:283
7712
msgid "converting revision"
7715
#: breezy/plugins/weave_fmt/bzrdir.py:288
7716
msgid "upgraded to weaves:"
7719
#: breezy/plugins/weave_fmt/bzrdir.py:289
7721
msgid "%6d revisions and inventories"
7724
#: breezy/plugins/weave_fmt/bzrdir.py:291
7726
msgid "%6d revisions not present"
7729
#: breezy/plugins/weave_fmt/bzrdir.py:293
7734
#: breezy/plugins/weave_fmt/bzrdir.py:330
7735
msgid "writing weave"
7738
#: breezy/plugins/weave_fmt/bzrdir.py:334
7739
#: breezy/plugins/weave_fmt/bzrdir.py:336
7743
#: breezy/plugins/weave_fmt/bzrdir.py:353
7744
msgid "write revision"
7747
#: breezy/plugins/weave_fmt/bzrdir.py:367
7748
msgid "loading revision"
7751
#: breezy/plugins/weave_fmt/bzrdir.py:372
7753
msgid "revision {%s} not present in branch; will be converted as a ghost"
7756
#: breezy/plugins/weave_fmt/bzrdir.py:511
7757
msgid "starting upgrade from format 5 to 6"
7760
#: breezy/plugins/weave_fmt/bzrdir.py:519
7762
msgid "adding prefixes to %s"
7765
#: breezy/plugins/weave_fmt/bzrdir.py:561
7766
msgid "starting upgrade from format 6 to metadir"
7769
#: breezy/plugins/weave_fmt/bzrdir.py:569
7770
msgid "Removing ancestry.weave"
7773
#: breezy/plugins/weave_fmt/bzrdir.py:574
7774
msgid "Finding branch files"
7777
#: breezy/plugins/weave_fmt/bzrdir.py:584
7778
msgid "Upgrading repository"
7781
#: breezy/plugins/weave_fmt/bzrdir.py:594
7782
msgid "Upgrading branch"
7785
#: breezy/plugins/weave_fmt/bzrdir.py:617
7786
msgid "No working tree."
7789
#: breezy/plugins/weave_fmt/bzrdir.py:624
7790
msgid "Upgrading working tree"
7793
#: breezy/plugins/weave_fmt/bzrdir.py:644
7795
msgid "Make %s lock"
7798
#: breezy/plugins/weave_fmt/bzrdir.py:655
7803
#: breezy/push.py:99
7806
"Target directory %s already contains a .bzr directory, but it is not valid."
7809
#: breezy/push.py:103
7812
"Target directory %s already exists, but does not have a .bzr directory. "
7813
"Supply --use-existing-dir to push there anyway."
7816
#: breezy/push.py:124
7818
msgid "Too many redirections trying to make %s."
7821
#: breezy/push.py:150
7823
"These branches have diverged. See \"brz help diverged-branches\" for more "
7827
#: breezy/push.py:155
7830
"It is not possible to losslessly push to %s. You may want to use --lossy."
7833
#: breezy/push.py:161
7836
"At %s you have a valid .bzr control directory, but not a branch or "
7837
"repository. This is an unsupported configuration. Please move the target "
7838
"directory out of the way and try again."
7841
#: breezy/reconcile.py:97
7843
msgid "Reconciling branch %s"
7846
#: breezy/reconcile.py:103
7848
msgid "Reconciling repository %s"
7851
#: breezy/reconcile.py:105
7852
msgid "Reconciling repository"
7855
#: breezy/reconcile.py:111
7857
msgid "%s cannot canonicalize CHKs."
7860
#: breezy/reconcile.py:119
7861
msgid "Reconcile aborted: revision index has inconsistent parents."
7864
#: breezy/reconcile.py:121
7865
msgid "Run \"brz check\" for more details."
7868
#: breezy/reconcile.py:123
7869
msgid "Reconciliation complete."
7872
#: breezy/reconcile.py:166
7873
#, python-brace-format
7874
msgid "Fixing last revision info {0} => {1}"
7877
#: breezy/reconcile.py:173
7878
msgid "revision_history ok."
7881
#: breezy/reconcile.py:234
7882
msgid "Reading inventory data"
7885
#: breezy/reconcile.py:254 breezy/reconcile.py:385
7886
msgid "Inventory ok."
7889
#: breezy/reconcile.py:256 breezy/reconcile.py:387
7890
msgid "Backing up inventory"
7893
#: breezy/reconcile.py:258
7894
msgid "Backup inventory created."
7897
#: breezy/reconcile.py:274 breezy/reconcile.py:406
7898
msgid "Writing weave"
7901
#: breezy/reconcile.py:277 breezy/reconcile.py:409
7902
msgid "Inventory regenerated."
7905
#: breezy/reconcile.py:372 breezy/reconcile.py:374 breezy/reconcile.py:377
7906
msgid "Reading indexes"
7909
#: breezy/reconcile.py:381 breezy/reconcile.py:383
7910
msgid "Checking unused inventories"
7913
#: breezy/reconcile.py:389
7914
msgid "Backup Inventory created"
7917
#: breezy/reconcile.py:447
7918
msgid "Fixing text parents"
7921
#: breezy/reconfigure.py:127
7922
#, python-brace-format
7923
msgid "{0} is now stacked on {1}\n"
7926
#: breezy/reconfigure.py:142
7928
msgid "%s is now not stacked\n"
7931
#: breezy/rename_map.py:73
7932
msgid "Calculating hashes"
7935
#: breezy/rename_map.py:108
7936
msgid "Determining hash hits"
7939
#: breezy/rename_map.py:235
7940
#, python-brace-format
7944
#: breezy/repository.py:287
7946
msgid "brz: ERROR (ignored): %s"
7949
#: breezy/repository.py:1595
7950
msgid "Moving repository to repository.backup"
7953
#: breezy/repository.py:1603
7954
msgid "Creating new repository"
7957
#: breezy/repository.py:1608
7958
msgid "Copying content"
7961
#: breezy/repository.py:1612
7962
msgid "Deleting old repository content"
7965
#: breezy/repository.py:1614
7966
msgid "repository converted"
7969
#: breezy/revisionspec.py:861
7970
#, python-brace-format
7971
msgid "Using {0} {1}"
7974
#: breezy/send.py:59
7976
msgid "Mail client \"%s\" does not support specifying body"
7979
#: breezy/send.py:63
7980
msgid "--remember requires a branch to be specified."
7983
#: breezy/send.py:78
7984
msgid "No submit branch known or specified"
7987
#: breezy/send.py:81
7988
#, python-brace-format
7989
msgid "Using saved {0} location \"{1}\" to determine what changes to submit."
7992
#: breezy/send.py:99
7994
msgid "No such send format '%s'."
7997
#: breezy/send.py:115
7998
msgid "bzr send takes at most two one revision identifiers"
8001
#: breezy/send.py:128
8002
msgid "No revisions to submit."
8005
#: breezy/send.py:140
8007
"- not supported for merge directives that use more than one output file."
8010
#: breezy/send.py:186
8011
msgid "Format 0.9 does not permit bundle with no patch"
8014
#: breezy/shelf_ui.py:48
8016
msgid "Shelve adding file \"%(path)s\"?"
8019
#: breezy/shelf_ui.py:49
8020
msgid "Shelve binary changes?"
8023
#: breezy/shelf_ui.py:50
8024
msgid "Shelve changing \"%s\" from %(other)s to %(this)s?"
8027
#: breezy/shelf_ui.py:52
8029
msgid "Shelve removing file \"%(path)s\"?"
8032
#: breezy/shelf_ui.py:53
8034
msgid "Shelve %d change(s)?"
8037
#: breezy/shelf_ui.py:54
8041
#: breezy/shelf_ui.py:55
8044
"Shelve changing target of \"%(path)s\" from \"%(other)s\" to \"%(this)s\"?"
8047
#: breezy/shelf_ui.py:57
8049
msgid "Shelve renaming \"%(other)s\" => \"%(this)s\"?"
8052
#: breezy/shelf_ui.py:72
8054
msgid "Changes shelved with id \"%d\"."
8057
#: breezy/shelf_ui.py:76
8058
msgid "Selected changes destroyed."
8061
#: breezy/shelf_ui.py:80
8062
msgid "Selected changes:"
8065
#: breezy/shelf_ui.py:100
8067
msgid "Delete file \"%(path)s\"?"
8070
#: breezy/shelf_ui.py:101
8071
msgid "Apply binary changes?"
8074
#: breezy/shelf_ui.py:102
8076
msgid "Change \"%(path)s\" from %(this)s to %(other)s?"
8079
#: breezy/shelf_ui.py:104
8081
msgid "Add file \"%(path)s\"?"
8084
#: breezy/shelf_ui.py:105
8086
msgid "Apply %d change(s)?"
8089
#: breezy/shelf_ui.py:106
8090
msgid "Apply change?"
8093
#: breezy/shelf_ui.py:107
8095
msgid "Change target of \"%(path)s\" from \"%(this)s\" to \"%(other)s\"?"
8098
#: breezy/shelf_ui.py:109
8100
msgid "Rename \"%(this)s\" => \"%(other)s\"?"
8103
#: breezy/shelf_ui.py:410
8104
msgid "No changes are shelved."
8107
#: breezy/shelf_ui.py:468
8109
msgid "Using changes with id \"%d\"."
8112
#: breezy/shelf_ui.py:473
8117
#: breezy/shelf_ui.py:485
8119
msgid "Deleted changes with id \"%d\"."
8122
#: breezy/switch.py:71
8123
msgid "Pending merges must be committed or reverted before using switch."
8126
#: breezy/switch.py:104
8128
msgid "Tree is up to date at revision %d."
8131
#: breezy/switch.py:112
8133
msgid "Updated to revision %d."
8136
#: breezy/switch.py:143
8138
"Cannot switch as local commits found in the checkout. Commit these to the "
8139
"bound branch or use --force to throw them away."
8142
#: breezy/switch.py:148
8145
"Unable to connect to current master branch %(target)s: %(error)s To switch "
8146
"anyway, use --force."
8149
#: breezy/switch.py:172
8150
msgid "Cannot switch a branch, only a checkout."
8153
#: breezy/transform.py:1741 breezy/transform.py:1752 breezy/transform.py:1754
8157
#: breezy/transform.py:1777 breezy/transform.py:1841
8158
msgid "removing file"
8161
#: breezy/transform.py:1792 breezy/transform.py:1871
8165
#: breezy/transform.py:2614
8166
msgid "Building tree"
8169
#: breezy/transform.py:2707 breezy/transform.py:2728
8170
msgid "Adding file contents"
8173
#: breezy/transform.py:3029
8174
msgid "Resolution pass"
8177
#: breezy/tree.py:587
8178
msgid "*** {0} content-filter: {1} => {2!r}"
8181
#: breezy/upgrade.py:77
8183
msgid "This is a checkout. The branch (%s) needs to be upgraded separately."
8186
#: breezy/upgrade.py:100
8188
msgid "cannot upgrade from bzrdir format %s"
8191
#: breezy/upgrade.py:103
8193
msgid "starting upgrade of %s"
8196
#: breezy/upgrade.py:110
8200
#: breezy/upgrade.py:120
8201
msgid "Deleting backup.bzr"
8204
#: breezy/upgrade.py:148
8205
#, python-brace-format
8208
"SUMMARY: {0} upgrades attempted, {1} succeeded, {2} failed"
8211
#: breezy/upgrade.py:205
8213
msgid "Found %d dependent branches - upgrading ..."
8216
#: breezy/upgrade.py:275
8217
msgid "Upgrading bzrdirs"
8220
#: breezy/upgrade.py:281
8222
msgid "Upgrading %s"
8225
#: breezy/upgrade.py:283
8226
#, python-brace-format
8227
msgid "Upgrading {0} {1} ..."
8230
#: breezy/upgrade.py:301
8231
msgid "Removing backup ..."
8234
#: breezy/upgrade.py:306
8235
#, python-brace-format
8236
msgid "failed to clean-up {0}: {1}"
8239
#: breezy/win32utils.py:112
8240
msgid "Failed to GetProcessMemoryInfo()"
8243
#: breezy/win32utils.py:133
8244
msgid "Cannot debug memory on win32 without ctypes or win32process"
8247
#: breezy/win32utils.py:138
8248
#, python-brace-format
8249
msgid "WorkingSize {0:>7}KiB\tPeakWorking {1:>7}KiB\t{2}"
8252
#: breezy/win32utils.py:146
8254
msgid "WorkingSize %8d KiB"
8257
#: breezy/win32utils.py:148
8259
msgid "PeakWorking %8d KiB"
8262
#: breezy/win32utils.py:150
8264
msgid "PagefileUsage %8d KiB"
8267
#: breezy/win32utils.py:152
8269
msgid "PeakPagefileUsage %8d KiB"
8272
#: breezy/win32utils.py:154
8274
msgid "PrivateUsage %8d KiB"
8277
#: breezy/win32utils.py:156
8279
msgid "PageFaultCount %8d"
8282
#: breezy/workingtree.py:1201
8283
msgid "Rerun update after fixing the conflicts."
8286
#: dummy/help_topics/authentication/summary.txt:1
8287
msgid "Information on configuring authentication"
8290
#: dummy/help_topics/basic/detail.txt:1
8292
"Breezy 3.0a2 -- a free distributed version-control tool\n"
8293
"https://www.breezy-vcs.org/"
8296
#: dummy/help_topics/basic/detail.txt:4
8299
" brz init makes this directory a versioned branch\n"
8300
" brz branch make a copy of another branch"
8303
#: dummy/help_topics/basic/detail.txt:8
8305
" brz add make files or directories versioned\n"
8306
" brz ignore ignore a file or pattern\n"
8307
" brz mv move or rename a versioned file"
8310
#: dummy/help_topics/basic/detail.txt:12
8312
" brz status summarize changes in working copy\n"
8313
" brz diff show detailed diffs"
8316
#: dummy/help_topics/basic/detail.txt:15
8318
" brz merge pull in changes from another branch\n"
8319
" brz commit save some or all changes\n"
8320
" brz send send changes via email"
8323
#: dummy/help_topics/basic/detail.txt:19
8325
" brz log show history of changes\n"
8326
" brz check validate storage"
8329
#: dummy/help_topics/basic/detail.txt:22
8331
" brz help init more help on e.g. init command\n"
8332
" brz help commands list all commands\n"
8333
" brz help topics list all help topics\n"
8336
#: dummy/help_topics/basic/summary.txt:1
8337
msgid "Basic commands"
8340
#: dummy/help_topics/branches/detail.txt:1
8344
#: dummy/help_topics/branches/detail.txt:3
8346
"A branch consists of the state of a project, including all of its\n"
8347
"history. All branches have a repository associated (which is where the\n"
8348
"branch history is stored), but multiple branches may share the same\n"
8349
"repository (a shared repository). Branches can be copied and merged."
8352
#: dummy/help_topics/branches/detail.txt:8
8354
"In addition, one branch may be bound to another one. Binding to another\n"
8355
"branch indicates that commits which happen in this branch must also \n"
8356
"happen in the other branch. Breezy ensures consistency by not allowing \n"
8357
"commits when the two branches are out of date. In order for a commit \n"
8358
"to succeed, it may be necessary to update the current branch using \n"
8362
#: dummy/help_topics/branches/detail.txt:15
8363
#: dummy/help_topics/checkouts/detail.txt:66
8364
#: dummy/help_topics/repositories/detail.txt:36
8365
msgid "Related commands::"
8368
#: dummy/help_topics/branches/detail.txt:17
8370
" init Change a directory into a versioned branch.\n"
8371
" branch Create a new branch that is a copy of an existing branch.\n"
8372
" merge Perform a three-way merge.\n"
8373
" bind Bind a branch to another one.\n"
8376
#: dummy/help_topics/branches/summary.txt:1
8377
msgid "Information on what a branch is"
8380
#: dummy/help_topics/bugs/summary.txt:1
8381
msgid "Bug tracker settings"
8384
#: dummy/help_topics/checkouts/detail.txt:1
8388
#: dummy/help_topics/checkouts/detail.txt:3
8390
"Checkouts are source trees that are connected to a branch, so that when\n"
8391
"you commit in the source tree, the commit goes into that branch. They\n"
8392
"allow you to use a simpler, more centralized workflow, ignoring some of\n"
8393
"Breezy's decentralized features until you want them. Using checkouts\n"
8394
"with shared repositories is very similar to working with SVN or CVS, but\n"
8395
"doesn't have the same restrictions. And using checkouts still allows\n"
8396
"others working on the project to use whatever workflow they like."
8399
#: dummy/help_topics/checkouts/detail.txt:11
8401
"A checkout is created with the brz checkout command (see \"help checkout"
8403
"You pass it a reference to another branch, and it will create a local copy\n"
8404
"for you that still contains a reference to the branch you created the\n"
8405
"checkout from (the master branch). Then if you make any commits they will "
8407
"made on the other branch first. This creates an instant mirror of your work, "
8409
"facilitates lockstep development, where each developer is working together,\n"
8410
"continuously integrating the changes of others."
8413
#: dummy/help_topics/checkouts/detail.txt:19
8415
"However the checkout is still a first class branch in Breezy terms, so that\n"
8416
"you have the full history locally. As you have a first class branch you "
8418
"also commit locally if you want, for instance due to the temporary loss af "
8420
"network connection. Use the --local option to commit to do this. All the "
8422
"commits will then be made on the master branch the next time you do a non-"
8427
#: dummy/help_topics/checkouts/detail.txt:26
8429
"If you are using a checkout from a shared branch you will periodically want "
8431
"pull in all the changes made by others. This is done using the \"update\"\n"
8432
"command. The changes need to be applied before any non-local commit, but\n"
8433
"Breezy will tell you if there are any changes and suggest that you use this\n"
8434
"command when needed."
8437
#: dummy/help_topics/checkouts/detail.txt:32
8439
"It is also possible to create a \"lightweight\" checkout by passing the\n"
8440
"--lightweight flag to checkout. A lightweight checkout is even closer to an\n"
8441
"SVN checkout in that it is not a first class branch, it mainly consists of "
8443
"working tree. This means that any history operations must query the master\n"
8444
"branch, which could be slow if a network connection is involved. Also, as "
8446
"don't have a local branch, then you cannot commit locally."
8449
#: dummy/help_topics/checkouts/detail.txt:39
8451
"Lightweight checkouts work best when you have fast reliable access to the\n"
8452
"master branch. This means that if the master branch is on the same disk or "
8454
"a lightweight checkout will be faster than a heavyweight one for any "
8456
"that modify the revision history (as only one copy of the branch needs to\n"
8457
"be updated). Heavyweight checkouts will generally be faster for any command\n"
8458
"that uses the history but does not change it, but if the master branch is "
8460
"the same disk then there won't be a noticeable difference."
8463
#: dummy/help_topics/checkouts/detail.txt:47
8465
"Another possible use for a checkout is to use it with a treeless repository\n"
8466
"containing your branches, where you maintain only one working tree by\n"
8467
"switching the master branch that the checkout points to when you want to\n"
8468
"work on a different branch."
8471
#: dummy/help_topics/checkouts/detail.txt:52
8473
"Obviously to commit on a checkout you need to be able to write to the "
8475
"branch. This means that the master branch must be accessible over a "
8477
"protocol , such as sftp://, and that you have write permissions at the "
8479
"end. Checkouts also work on the local file system, so that all that matters "
8484
#: dummy/help_topics/checkouts/detail.txt:58
8486
"You can change the master of a checkout by using the \"switch\" command "
8488
"\"help switch\"). This will change the location that the commits are sent "
8490
"The \"bind\" command can also be used to turn a normal branch into a heavy\n"
8491
"checkout. If you would like to convert your heavy checkout into a normal\n"
8492
"branch so that every commit is local, you can use the \"unbind\" command. To "
8494
"whether or not a branch is bound or not you can use the \"info\" command. If "
8496
"branch is bound it will tell you the location of the bound branch."
8499
#: dummy/help_topics/checkouts/detail.txt:68
8501
" checkout Create a checkout. Pass --lightweight to get a lightweight\n"
8503
" update Pull any changes in the master branch in to your checkout\n"
8504
" commit Make a commit that is sent to the master branch. If you have\n"
8505
" a heavy checkout then the --local option will commit to the\n"
8506
" checkout without sending the commit to the master\n"
8507
" switch Change the master branch that the commits in the checkout "
8510
" bind Turn a standalone branch into a heavy checkout so that any\n"
8511
" commits will be sent to the master branch\n"
8512
" unbind Turn a heavy checkout into a standalone branch so that any\n"
8513
" commits are only made locally\n"
8514
" info Displays whether a branch is bound or unbound. If the branch "
8516
" bound, then it will also display the location of the bound "
8520
#: dummy/help_topics/checkouts/summary.txt:1
8521
msgid "Information on what a checkout is"
8524
#: dummy/help_topics/configuration/summary.txt:1
8525
msgid "Details on the configuration settings available"
8528
#: dummy/help_topics/conflict-types/summary.txt:1
8529
msgid "Types of conflicts and what to do about them"
8532
#: dummy/help_topics/content-filters/summary.txt:1
8533
msgid "Conversion of content into/from working trees"
8536
#: dummy/help_topics/criss-cross/detail.txt:1
8540
#: dummy/help_topics/criss-cross/detail.txt:3
8542
"A criss-cross in the branch history can cause the default merge technique\n"
8543
"to emit more conflicts than would normally be expected."
8546
#: dummy/help_topics/criss-cross/detail.txt:6
8548
"In complex merge cases, ``brz merge --lca`` or ``brz merge --weave`` may "
8550
"better results. You may wish to ``brz revert`` the working tree and merge\n"
8551
"again. Alternatively, use ``brz remerge`` on particular conflicted files."
8554
#: dummy/help_topics/criss-cross/detail.txt:10
8556
"Criss-crosses occur in a branch's history if two branches merge the same "
8558
"and then merge one another, or if two branches merge one another at the "
8560
"time. They can be avoided by having each branch only merge from or into a\n"
8561
"designated central branch (a \"star topology\")."
8564
#: dummy/help_topics/criss-cross/detail.txt:15
8566
"Criss-crosses cause problems because of the way merge works. Breezy's "
8568
"merge is a three-way merger; in order to merge OTHER into THIS, it must\n"
8569
"find a basis for comparison, BASE. Using BASE, it can determine whether\n"
8570
"differences between THIS and OTHER are due to one side adding lines, or\n"
8571
"from another side removing lines."
8574
#: dummy/help_topics/criss-cross/detail.txt:21
8576
"Criss-crosses mean there is no good choice for a base. Selecting the "
8578
"merge points could cause one side's changes to be silently discarded.\n"
8579
"Selecting older merge points (which Breezy does) mean that extra conflicts\n"
8583
#: dummy/help_topics/criss-cross/detail.txt:26
8585
"The ``weave`` merge type is not affected by this problem because it uses\n"
8586
"line-origin detection instead of a basis revision to determine the cause of\n"
8590
#: dummy/help_topics/criss-cross/summary.txt:1
8591
msgid "Information on criss-cross merging"
8594
#: dummy/help_topics/current-formats/summary.txt:1
8595
msgid "Current storage formats"
8598
#: dummy/help_topics/debug-flags/summary.txt:1
8599
msgid "Options to show or record debug information"
8602
#: dummy/help_topics/diverged-branches/summary.txt:1
8603
msgid "How to fix diverged branches"
8606
#: dummy/help_topics/env-variables/summary.txt:1
8607
msgid "Environment variable names and values"
8610
#: dummy/help_topics/eol/summary.txt:1
8611
msgid "Information on end-of-line handling"
8614
#: dummy/help_topics/files/detail.txt:1
8618
#: dummy/help_topics/files/detail.txt:3
8620
":On Unix: ~/.config/breezy/breezy.conf\n"
8621
":On Windows: C:\\\\Documents and Settings\\\\username\\\\Application Data\\"
8622
"\\Breezy\\\\2.0\\\\breezy.conf"
8625
#: dummy/help_topics/files/detail.txt:6
8627
"Contains the user's default configuration. The section ``[DEFAULT]`` is\n"
8628
"used to define general configuration that will be applied everywhere.\n"
8629
"The section ``[ALIASES]`` can be used to create command aliases for\n"
8630
"commonly used options."
8633
#: dummy/help_topics/files/detail.txt:11
8634
msgid "A typical config file might look something like::"
8637
#: dummy/help_topics/files/detail.txt:13
8640
" email=John Doe <jdoe@isp.com>"
8643
#: dummy/help_topics/files/detail.txt:16
8646
" commit = commit --strict\n"
8647
" log10 = log --short -r -10..-1\n"
8650
#: dummy/help_topics/files/summary.txt:1
8651
msgid "Information on configuration and log files"
8654
#: dummy/help_topics/formats/detail.txt:1
8655
msgid "Storage Formats"
8658
#: dummy/help_topics/formats/detail.txt:3
8660
"To ensure that older clients do not access data incorrectly,\n"
8661
"Breezy's policy is to introduce a new storage format whenever\n"
8662
"new features requiring new metadata are added. New storage\n"
8663
"formats may also be introduced to improve performance and\n"
8667
#: dummy/help_topics/formats/detail.txt:9
8669
"The newest format, 2a, is highly recommended. If your\n"
8670
"project is not using 2a, then you should suggest to the\n"
8671
"project owner to upgrade."
8674
#: dummy/help_topics/formats/detail.txt:13
8680
#: dummy/help_topics/formats/detail.txt:16
8682
" Some of the older formats have two variants:\n"
8683
" a plain one and a rich-root one. The latter include an additional\n"
8684
" field about the root of the tree. There is no performance cost\n"
8685
" for using a rich-root format but you cannot easily merge changes\n"
8686
" from a rich-root format into a plain format. As a consequence,\n"
8687
" moving a project to a rich-root format takes some co-ordination\n"
8688
" in that all contributors need to upgrade their repositories\n"
8689
" around the same time. 2a and all future formats will be\n"
8690
" implicitly rich-root."
8693
#: dummy/help_topics/formats/detail.txt:26
8695
"See :doc:`current-formats-help` for the complete list of\n"
8696
"currently supported formats. See :doc:`other-formats-help` for\n"
8697
"descriptions of any available experimental and deprecated formats.\n"
8700
#: dummy/help_topics/formats/summary.txt:1
8701
msgid "Information on choosing a storage format"
8704
#: dummy/help_topics/git/detail.txt:1
8705
msgid "Using Bazaar with Git."
8708
#: dummy/help_topics/git/detail.txt:3
8710
"The bzr-git plugin provides support for using Bazaar with local and remote\n"
8711
"Git repositories, as just another format. You can clone, pull from and\n"
8712
"push to git repositories as you would with any native Bazaar branch."
8715
#: dummy/help_topics/git/detail.txt:7
8716
msgid "The bzr-git plugin also adds three new bzr subcommands:"
8719
#: dummy/help_topics/git/detail.txt:9
8721
" * bzr git-objects: Extracts Git objects out of a Bazaar repository\n"
8722
" * bzr git-refs: Display Git refs from a Bazaar branch or repository\n"
8723
" * bzr git-import: Imports a local or remote Git repository to a set of "
8728
#: dummy/help_topics/git/detail.txt:14
8730
"The 'git:' revision specifier can be used to find revisions by short or "
8735
#: dummy/help_topics/git/summary.txt:1
8736
msgid "Using Bazaar with Git"
8739
#: dummy/help_topics/global-options/detail.txt:1
8740
msgid "Global Options"
8743
#: dummy/help_topics/global-options/detail.txt:3
8745
"These options may be used with any command, and may appear in front of any\n"
8746
"command. (e.g. ``brz --profile help``)."
8749
#: dummy/help_topics/global-options/detail.txt:6
8751
"--version Print the version number. Must be supplied before the "
8753
"--no-aliases Do not process command aliases when running this command.\n"
8754
"--builtin Use the built-in version of a command, not the plugin "
8756
" This does not suppress other plugin effects.\n"
8757
"--no-plugins Do not process any plugins.\n"
8758
"--no-l10n Do not translate messages.\n"
8759
"--concurrency Number of processes that can be run concurrently (selftest)."
8762
#: dummy/help_topics/global-options/detail.txt:14
8764
"--profile Profile execution using the hotshot profiler.\n"
8765
"--lsprof Profile execution using the lsprof profiler.\n"
8766
"--lsprof-file Profile execution using the lsprof profiler, and write the\n"
8767
" results to a specified file. If the filename ends with \".txt"
8769
" text format will be used. If the filename either starts "
8771
" \"callgrind.out\" or end with \".callgrind\", the output will "
8773
" formatted for use with KCacheGrind. Otherwise, the output\n"
8774
" will be a pickle.\n"
8775
"--coverage Generate line coverage report in the specified directory."
8778
#: dummy/help_topics/global-options/detail.txt:24
8780
"-Oname=value Override the ``name`` config option setting it to ``value`` "
8782
" the duration of the command. This can be used multiple times "
8784
" several options need to be overridden."
8787
#: dummy/help_topics/global-options/detail.txt:28
8789
"See http://doc.bazaar.canonical.com/developers/profiling.html for more\n"
8790
"information on profiling."
8793
#: dummy/help_topics/global-options/detail.txt:31
8795
"A number of debug flags are also available to assist troubleshooting and\n"
8796
"development. See :doc:`debug-flags-help`.\n"
8799
#: dummy/help_topics/global-options/summary.txt:1
8800
msgid "Options that control how Breezy runs"
8803
#: dummy/help_topics/hooks/summary.txt:1
8804
msgid "Points at which custom processing can be added"
8807
#: dummy/help_topics/launchpad/detail.txt:1
8808
msgid "Integration with Launchpad.net"
8811
#: dummy/help_topics/launchpad/detail.txt:3
8813
"Launchpad.net provides free Bazaar branch hosting with integrated bug and\n"
8814
"specification tracking."
8817
#: dummy/help_topics/launchpad/detail.txt:6
8819
"The bzr client (through the plugin called 'launchpad') has special\n"
8820
"features to communicate with Launchpad:"
8823
#: dummy/help_topics/launchpad/detail.txt:9
8825
" * The launchpad-login command tells Bazaar your Launchpad user name. "
8827
" is then used by the 'lp:' transport to download your branches using\n"
8831
#: dummy/help_topics/launchpad/detail.txt:13
8833
" * The 'lp:' transport uses Launchpad as a directory service: for "
8835
" 'lp:bzr' and 'lp:python' refer to the main branches of the relevant\n"
8836
" projects and may be branched, logged, etc. You can also use the 'lp:'\n"
8837
" transport to refer to specific branches, e.g. lp:~bzr/bzr/trunk."
8840
#: dummy/help_topics/launchpad/detail.txt:18
8842
" * The 'lp:' bug tracker alias can expand launchpad bug numbers to their\n"
8843
" URLs for use with 'bzr commit --fixes', e.g. 'bzr commit --fixes "
8845
" will record a revision property that marks that revision as fixing\n"
8846
" Launchpad bug 12345. When you push that branch to Launchpad it will\n"
8847
" automatically be linked to the bug report."
8850
#: dummy/help_topics/launchpad/detail.txt:24
8851
msgid "For more information see http://help.launchpad.net/\n"
8854
#: dummy/help_topics/launchpad/summary.txt:1
8855
msgid "Using Bazaar with Launchpad.net"
8858
#: dummy/help_topics/location-alias/summary.txt:1
8859
msgid "Aliases for remembered locations"
8862
#: dummy/help_topics/log-formats/summary.txt:1
8863
msgid "Details on the logging formats available"
8866
#: dummy/help_topics/missing-extensions/summary.txt:1
8867
msgid "What to do when compiled extensions are missing"
8870
#: dummy/help_topics/other-formats/summary.txt:1
8871
msgid "Experimental and deprecated storage formats"
8874
#: dummy/help_topics/patterns/summary.txt:1
8875
msgid "Information on the pattern syntax"
8878
#: dummy/help_topics/repositories/detail.txt:1
8879
msgid "Repositories"
8882
#: dummy/help_topics/repositories/detail.txt:3
8884
"Repositories in Breezy are where committed information is stored. There is\n"
8885
"a repository associated with every branch."
8888
#: dummy/help_topics/repositories/detail.txt:6
8890
"Repositories are a form of database. Breezy will usually maintain this for\n"
8891
"good performance automatically, but in some situations (e.g. when doing\n"
8892
"very many commits in a short time period) you may want to ask brz to\n"
8893
"optimise the database indices. This can be done by the 'brz pack' command."
8896
#: dummy/help_topics/repositories/detail.txt:11
8898
"By default just running 'brz init' will create a repository within the new\n"
8899
"branch but it is possible to create a shared repository which allows "
8901
"branches to share their information in the same location. When a new branch "
8903
"created it will first look to see if there is a containing shared repository "
8908
#: dummy/help_topics/repositories/detail.txt:17
8910
"When two branches of the same project share a repository, there is\n"
8911
"generally a large space saving. For some operations (e.g. branching\n"
8912
"within the repository) this translates in to a large time saving."
8915
#: dummy/help_topics/repositories/detail.txt:21
8917
"To create a shared repository use the init-repository command (or the alias\n"
8918
"init-repo). This command takes the location of the repository to create. "
8920
"means that 'brz init-repository repo' will create a directory named 'repo',\n"
8921
"which contains a shared repository. Any new branches that are created in "
8923
"directory will then use it for storage."
8926
#: dummy/help_topics/repositories/detail.txt:27
8928
"It is a good idea to create a repository whenever you might create more\n"
8929
"than one branch of a project. This is true for both working areas where you\n"
8930
"are doing the development, and any server areas that you use for hosting\n"
8931
"projects. In the latter case, it is common to want branches without working\n"
8932
"trees. Since the files in the branch will not be edited directly there is "
8934
"need to use up disk space for a working tree. To create a repository in "
8936
"the branches will not have working trees pass the '--no-trees' option to\n"
8937
"'init-repository'."
8940
#: dummy/help_topics/repositories/detail.txt:38
8942
" init-repository Create a shared repository. Use --no-trees to create "
8944
" in which new branches won't get a working tree.\n"
8947
#: dummy/help_topics/repositories/summary.txt:1
8948
msgid "Basic information on shared repositories."
8951
#: dummy/help_topics/revisionspec/summary.txt:1
8952
msgid "Explain how to use --revision"
8955
#: dummy/help_topics/rules/summary.txt:1
8956
msgid "Information on defining rule-based preferences"
8959
#: dummy/help_topics/standalone-trees/detail.txt:1
8960
msgid "Standalone Trees"
8963
#: dummy/help_topics/standalone-trees/detail.txt:3
8965
"A standalone tree is a working tree with an associated repository. It\n"
8966
"is an independently usable branch, with no dependencies on any other.\n"
8967
"Creating a standalone tree (via brz init) is the quickest way to put\n"
8968
"an existing project under version control."
8971
#: dummy/help_topics/standalone-trees/detail.txt:8
8972
msgid "Related Commands::"
8975
#: dummy/help_topics/standalone-trees/detail.txt:10
8976
msgid " init Make a directory into a versioned branch.\n"
8979
#: dummy/help_topics/standalone-trees/summary.txt:1
8980
msgid "Information on what a standalone tree is"
8983
#: dummy/help_topics/standard-options/detail.txt:1
8984
msgid "Standard Options"
8987
#: dummy/help_topics/standard-options/detail.txt:3
8988
msgid "Standard options are legal for all commands."
8991
#: dummy/help_topics/standard-options/detail.txt:5
8993
"--help, -h Show help message.\n"
8994
"--verbose, -v Display more information.\n"
8995
"--quiet, -q Only display errors and warnings."
8998
#: dummy/help_topics/standard-options/detail.txt:9
8999
msgid "Unlike global options, standard options can be used in aliases.\n"
9002
#: dummy/help_topics/standard-options/summary.txt:1
9003
msgid "Options that can be used with any command"
9006
#: dummy/help_topics/status-flags/detail.txt:1
9007
msgid "Status Flags"
9010
#: dummy/help_topics/status-flags/detail.txt:3
9012
"Status flags are used to summarise changes to the working tree in a concise\n"
9013
"manner. They are in the form::"
9016
#: dummy/help_topics/status-flags/detail.txt:6
9017
msgid " xxx <filename>"
9020
#: dummy/help_topics/status-flags/detail.txt:8
9021
msgid "where the columns' meanings are as follows."
9024
#: dummy/help_topics/status-flags/detail.txt:10
9025
msgid "Column 1 - versioning/renames::"
9028
#: dummy/help_topics/status-flags/detail.txt:12
9030
" + File versioned\n"
9031
" - File unversioned\n"
9034
" X File nonexistent (and unknown to brz)\n"
9035
" C File has conflicts\n"
9036
" P Entry for a pending merge (not a file)"
9039
#: dummy/help_topics/status-flags/detail.txt:20
9040
msgid "Column 2 - contents::"
9043
#: dummy/help_topics/status-flags/detail.txt:22
9047
" K File kind changed\n"
9051
#: dummy/help_topics/status-flags/detail.txt:27
9052
msgid "Column 3 - execute::"
9055
#: dummy/help_topics/status-flags/detail.txt:29
9056
msgid " * The execute bit was changed\n"
9059
#: dummy/help_topics/status-flags/summary.txt:1
9060
msgid "Help on status flags"
9063
#: dummy/help_topics/sync-for-reconfigure/detail.txt:1
9064
msgid "Branches Out of Sync"
9067
#: dummy/help_topics/sync-for-reconfigure/detail.txt:3
9069
"When reconfiguring a checkout, tree or branch into a lightweight checkout,\n"
9070
"a local branch must be destroyed. (For checkouts, this is the local branch\n"
9071
"that serves primarily as a cache.) If the branch-to-be-destroyed does not\n"
9072
"have the same last revision as the new reference branch for the lightweight\n"
9073
"checkout, data could be lost, so Breezy refuses."
9076
#: dummy/help_topics/sync-for-reconfigure/detail.txt:9
9077
msgid "How you deal with this depends on *why* the branches are out of sync."
9080
#: dummy/help_topics/sync-for-reconfigure/detail.txt:11
9082
"If you have a checkout and have done local commits, you can get back in "
9084
"by running \"brz update\" (and possibly \"brz commit\")."
9087
#: dummy/help_topics/sync-for-reconfigure/detail.txt:14
9089
"If you have a branch and the remote branch is out-of-date, you can push\n"
9090
"the local changes using \"brz push\". If the local branch is out of date, "
9092
"can do \"brz pull\". If both branches have had changes, you can merge, "
9094
"and then push your changes. If you decide that some of the changes aren't\n"
9095
"useful, you can \"push --overwrite\" or \"pull --overwrite\" instead.\n"
9098
#: dummy/help_topics/sync-for-reconfigure/summary.txt:1
9099
msgid "Steps to resolve \"out-of-sync\" when reconfiguring"
9102
#: dummy/help_topics/topics/summary.txt:1
9106
#: dummy/help_topics/url-special-chars/summary.txt:1
9107
msgid "Special character handling in URLs"
9110
#: dummy/help_topics/urlspec/summary.txt:1
9111
msgid "Supported transport protocols"
9114
#: dummy/help_topics/working-trees/detail.txt:1
9115
msgid "Working Trees"
9118
#: dummy/help_topics/working-trees/detail.txt:3
9120
"A working tree is the contents of a branch placed on disk so that you can\n"
9121
"see the files and edit them. The working tree is where you make changes to "
9123
"branch, and when you commit the current state of the working tree is the\n"
9124
"snapshot that is recorded in the commit."
9127
#: dummy/help_topics/working-trees/detail.txt:8
9129
"When you push a branch to a remote system, a working tree will not be\n"
9130
"created. If one is already present the files will not be updated. The\n"
9131
"branch information will be updated and the working tree will be marked\n"
9132
"as out-of-date. Updating a working tree remotely is difficult, as there\n"
9133
"may be uncommitted changes or the update may cause content conflicts that "
9135
"difficult to deal with remotely."
9138
#: dummy/help_topics/working-trees/detail.txt:15
9140
"If you have a branch with no working tree you can use the 'checkout' "
9142
"to create a working tree. If you run 'brz checkout .' from the branch it "
9144
"create the working tree. If the branch is updated remotely, you can update "
9146
"working tree by running 'brz update' in that directory."
9149
#: dummy/help_topics/working-trees/detail.txt:20
9151
"If you have a branch with a working tree that you do not want the 'remove-"
9153
"command will remove the tree if it is safe. This can be done to avoid the\n"
9154
"warning about the remote working tree not being updated when pushing to the\n"
9155
"branch. It can also be useful when working with a '--no-trees' repository\n"
9156
"(see 'brz help repositories')."
9159
#: dummy/help_topics/working-trees/detail.txt:26
9161
"If you want to have a working tree on a remote machine that you push to you\n"
9162
"can either run 'brz update' in the remote branch after each push, or use "
9164
"other method to update the tree during the push. There is an 'rspush' "
9166
"that will update the working tree using rsync as well as doing a push. "
9168
"is also a 'push-and-update' plugin that automates running 'brz update' via "
9173
#: dummy/help_topics/working-trees/detail.txt:33
9174
msgid "Useful commands::"
9177
#: dummy/help_topics/working-trees/detail.txt:35
9179
" checkout Create a working tree when a branch does not have one.\n"
9180
" remove-tree Removes the working tree from a branch when it is safe to do "
9182
" update When a working tree is out of sync with its associated "
9184
" this will update the tree to match the branch.\n"
9187
#: dummy/help_topics/working-trees/summary.txt:1
9188
msgid "Information on working trees"
9191
#: en/help_topics/authentication.txt:1
9193
"Authentication Settings\n"
9194
"======================="
9197
#: en/help_topics/authentication.txt:4
9204
#: en/help_topics/authentication.txt:8
9206
"Many different authentication policies can be described in the\n"
9207
"``authentication.conf`` file but a particular user should need only a few\n"
9208
"definitions to cover his needs without having to specify a user and a "
9210
"for every branch he uses."
9213
#: en/help_topics/authentication.txt:13
9215
"The definitions found in this file are used to find the credentials to use "
9217
"a given url. The same credentials can generally be used for as many branches "
9219
"possible by grouping their declaration around the remote servers that need\n"
9220
"them. It's even possible to declare credentials that will be used by "
9225
#: en/help_topics/authentication.txt:19
9227
"The intent is to make this file as small as possible to minimize maintenance."
9230
#: en/help_topics/authentication.txt:21
9232
"Once the relevant credentials are declared in this file you may use branch "
9234
"without embedding passwords (security hazard) or even users (enabling "
9236
"of your urls with others)."
9239
#: en/help_topics/authentication.txt:25
9240
msgid "Instead of using::"
9243
#: en/help_topics/authentication.txt:27
9244
msgid " brz branch sftp://joe:secret@host.com/path/to/my/branch"
9247
#: en/help_topics/authentication.txt:29
9248
msgid "you simply use::"
9251
#: en/help_topics/authentication.txt:31
9252
msgid " brz branch sftp://host.com/path/to/my/branch"
9255
#: en/help_topics/authentication.txt:33
9256
msgid "provided you have created the following ``authentication.conf`` file::"
9259
#: en/help_topics/authentication.txt:35
9265
" password=secret\n"
9269
#: en/help_topics/authentication.txt:42
9271
"Authentication definitions\n"
9272
"--------------------------"
9275
#: en/help_topics/authentication.txt:45
9277
"There are two kinds of authentication used by the various schemes supported "
9282
#: en/help_topics/authentication.txt:48
9283
msgid "1. user and password"
9286
#: en/help_topics/authentication.txt:50
9288
"``FTP`` needs a (``user``, ``password``) to authenticate against a ``host``\n"
9289
"``SFTP`` can use either a password or a host key to authenticate. However,\n"
9290
"ssh agents are a better, more secure solution. So we have chosen to not "
9292
"our own less secure method."
9295
#: en/help_topics/authentication.txt:55
9296
msgid "2. user, realm and password"
9299
#: en/help_topics/authentication.txt:57
9301
"``HTTP`` and ``HTTPS`` needs a (``user, realm, password``) to authenticate\n"
9302
"against a host. But, by using ``.htaccess`` files, for example, it is "
9304
"to define several (``user, realm, password``) for a given ``host``. So what "
9306
"really needed is (``user``, ``password``, ``host``, ``path``). The ``realm`` "
9308
"not taken into account in the definitions, but will displayed if brz "
9310
"you for a password."
9313
#: en/help_topics/authentication.txt:64
9315
"``HTTP proxy`` can be handled as ``HTTP`` (or ``HTTPS``) by explicitly\n"
9316
"specifying the appropriate port."
9319
#: en/help_topics/authentication.txt:67
9321
"To take all schemes into account, the password will be deduced from a set "
9323
"authentication definitions (``scheme``, ``host``, ``port``, ``path``, "
9328
#: en/help_topics/authentication.txt:71
9330
" * ``scheme``: can be empty (meaning the rest of the definition can be "
9332
" for any scheme), ``SFTP`` and ``bzr+ssh`` should not be used here, "
9334
" should be used instead since this is the real scheme regarding\n"
9338
#: en/help_topics/authentication.txt:76
9339
msgid " * ``host``: can be empty (to act as a default for any host),"
9342
#: en/help_topics/authentication.txt:78
9344
" * ``port`` can be empty (useful when an host provides several servers for "
9346
" same scheme), only numerical values are allowed, this should be used "
9348
" when the server uses a port different than the scheme standard port,"
9351
#: en/help_topics/authentication.txt:82
9352
msgid " * ``path``: can be empty (FTP or SFTP will never user it),"
9355
#: en/help_topics/authentication.txt:84
9357
" * ``user``: can be empty (``bzr`` will default to python's\n"
9358
" ``getpass.get_user()``),"
9361
#: en/help_topics/authentication.txt:87
9363
" * ``password``: can be empty if you prefer to always be prompted for your\n"
9367
#: en/help_topics/authentication.txt:90
9369
"Multiple definitions can be provided and, for a given URL, brz will select "
9371
"(``user`` [, ``password``]) based on the following rules :"
9374
#: en/help_topics/authentication.txt:93
9375
msgid " 1. the first match wins,"
9378
#: en/help_topics/authentication.txt:95
9379
msgid " 2. empty fields match everything,"
9382
#: en/help_topics/authentication.txt:97
9384
" 3. ``scheme`` matches even if decorators are used in the requested URL,"
9387
#: en/help_topics/authentication.txt:99
9389
" 4. ``host`` matches exactly or act as a domain if it starts with '.'\n"
9390
" (``project.bzr.sf.net`` will match ``.bzr.sf.net`` but ``projectbzr.sf."
9392
" will not match ``bzr.sf.net``)."
9395
#: en/help_topics/authentication.txt:103
9397
" 5. ``port`` matches if included in the requested URL (exact matches only)"
9400
#: en/help_topics/authentication.txt:105
9402
" 6. ``path`` matches if included in the requested URL (and by rule #2 "
9404
" empty paths will match any provided path)."
9407
#: en/help_topics/authentication.txt:110
9413
#: en/help_topics/authentication.txt:113
9415
"The general rules for :doc:`configuration files <configuration-help>`\n"
9416
"apply except for the variable policies."
9419
#: en/help_topics/authentication.txt:116
9420
msgid "Each section describes an authentication definition."
9423
#: en/help_topics/authentication.txt:118
9425
"The section name is an arbitrary string, only the ``DEFAULT`` value is "
9427
"and should appear as the *last* section."
9430
#: en/help_topics/authentication.txt:121
9431
msgid "Each section should define:"
9434
#: en/help_topics/authentication.txt:123
9435
msgid "* ``user``: the login to be used,"
9438
#: en/help_topics/authentication.txt:125
9439
msgid "Each section could define:"
9442
#: en/help_topics/authentication.txt:127
9443
msgid "* ``host``: the remote server,"
9446
#: en/help_topics/authentication.txt:129
9447
msgid "* ``port``: the port the server is listening,"
9450
#: en/help_topics/authentication.txt:131
9451
msgid "* ``path``: the branch location,"
9454
#: en/help_topics/authentication.txt:133
9455
msgid "* ``password``: the password."
9458
#: en/help_topics/authentication.txt:135
9465
#: en/help_topics/authentication.txt:139
9468
"Personal projects hosted outside\n"
9469
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
9472
#: en/help_topics/authentication.txt:143
9474
"All connections are done with the same ``user`` (the remote one for which "
9476
"default brz one is not appropriate) and the password is always prompted "
9481
#: en/help_topics/authentication.txt:147
9483
" # Pet projects on hobby.net\n"
9485
" host=r.hobby.net\n"
9487
" password=obvious1234\n"
9494
" password=1essobV10us\n"
9497
" # Our local user is barbaz, on all remote sites we're known as "
9502
#: en/help_topics/authentication.txt:164
9505
"Source hosting provider\n"
9506
"~~~~~~~~~~~~~~~~~~~~~~~"
9509
#: en/help_topics/authentication.txt:168
9510
msgid "In the shp.net (fictitious) domain, each project has its own site::"
9513
#: en/help_topics/authentication.txt:170
9515
" [shpnet domain]\n"
9516
" # we use sftp, but ssh is the scheme used for authentication\n"
9518
" # The leading '.' ensures that 'shp.net' alone doesn't match\n"
9521
" # brz doesn't support supplying a password for sftp,\n"
9522
" # consider using an ssh agent if you don't want to supply\n"
9523
" # a password interactively. (pageant, ssh-agent, etc)"
9526
#: en/help_topics/authentication.txt:180
9528
"HTTPS, SFTP servers and their proxy\n"
9529
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
9532
#: en/help_topics/authentication.txt:183
9534
"At company.com, the server hosting release and integration branches is "
9536
"proxy, and the two branches use different authentication policies::"
9539
#: en/help_topics/authentication.txt:186
9541
" [reference code]\n"
9543
" host=dev.company.com\n"
9549
#: en/help_topics/authentication.txt:193
9551
" # development branches on dev server\n"
9553
" scheme=ssh # bzr+ssh and sftp are available here\n"
9554
" host=dev.company.com\n"
9555
" path=/dev/integration\n"
9561
" host=proxy.company.com\n"
9563
" user=proxyuser1\n"
9564
" password=proxypass1"
9567
#: en/help_topics/authentication.txt:208
9570
"Planned enhancements\n"
9571
"--------------------"
9574
#: en/help_topics/authentication.txt:212
9576
"The following are not yet implemented but planned as parts of a work in\n"
9580
#: en/help_topics/authentication.txt:215
9581
msgid "* add a ``password_encoding`` field allowing:"
9584
#: en/help_topics/authentication.txt:217
9586
" - storing the passwords in various obfuscating encodings (base64 for one),"
9589
#: en/help_topics/authentication.txt:219
9590
msgid " - delegate password storage to plugins (.netrc for example)."
9593
#: en/help_topics/authentication.txt:221
9595
"* update the credentials when the user is prompted for user or password,"
9598
#: en/help_topics/authentication.txt:223
9599
msgid "* add a ``verify_certificates`` field for ``HTTPS``."
9602
#: en/help_topics/authentication.txt:225
9604
"The ``password_encoding`` and ``verify_certificates`` fields are recognized "
9606
"ignored in the actual implementation.\n"
9609
#: en/help_topics/bugs.txt:1
9610
msgid "Bug Tracker Settings"
9613
#: en/help_topics/bugs.txt:3
9615
"When making a commit, metadata about bugs fixed by that change can be\n"
9616
"recorded by using the ``--fixes`` option. For each bug marked as fixed, an\n"
9617
"entry is included in the 'bugs' revision property stating '<url> <status>'.\n"
9618
"(The only ``status`` value currently supported is ``fixed.``)"
9621
#: en/help_topics/bugs.txt:8
9623
"The ``--fixes`` option allows you to specify a bug tracker and a bug "
9625
"rather than a full URL. This looks like::"
9628
#: en/help_topics/bugs.txt:11
9629
msgid " bzr commit --fixes <tracker>:<id>"
9632
#: en/help_topics/bugs.txt:13 en/help_topics/configuration.txt:410
9636
#: en/help_topics/bugs.txt:15
9637
msgid " bzr commit --fixes <id>"
9640
#: en/help_topics/bugs.txt:17
9642
"where \"<tracker>\" is an identifier for the bug tracker, and \"<id>\" is "
9644
"identifier for that bug within the bugtracker, usually the bug number.\n"
9645
"If \"<tracker>\" is not specified the ``bugtracker`` set in the branch\n"
9646
"or global configuration is used."
9649
#: en/help_topics/bugs.txt:22
9651
"Bazaar knows about a few bug trackers that have many users. If\n"
9652
"you use one of these bug trackers then there is no setup required to\n"
9653
"use this feature, you just need to know the tracker identifier to use.\n"
9654
"These are the bugtrackers that are built in:"
9657
#: en/help_topics/bugs.txt:27
9659
" ============================ ============ ============\n"
9660
" URL Abbreviation Example\n"
9661
" ============================ ============ ============\n"
9662
" https://bugs.launchpad.net/ lp lp:12345\n"
9663
" http://bugs.debian.org/ deb deb:12345\n"
9664
" http://bugzilla.gnome.org/ gnome gnome:12345\n"
9665
" ============================ ============ ============"
9668
#: en/help_topics/bugs.txt:35
9670
"For the bug trackers not listed above configuration is required.\n"
9671
"Support for generating the URLs for any project using Bugzilla or Trac\n"
9672
"is built in, along with a template mechanism for other bugtrackers with\n"
9673
"simple URL schemes. If your bug tracker can't be described by one\n"
9674
"of the schemes described below then you can write a plugin to support\n"
9678
#: en/help_topics/bugs.txt:42
9680
"If you use Bugzilla or Trac, then you only need to set a configuration\n"
9681
"variable which contains the base URL of the bug tracker. These options\n"
9682
"can go into ``breezy.conf``, ``branch.conf`` or into a branch-specific\n"
9683
"configuration section in ``locations.conf``. You can set up these values\n"
9684
"for each of the projects you work on."
9687
#: en/help_topics/bugs.txt:48
9689
"Note: As you provide a short name for each tracker, you can specify one or\n"
9690
"more bugs in one or more trackers at commit time if you wish."
9693
#: en/help_topics/bugs.txt:51
9699
#: en/help_topics/bugs.txt:54
9700
msgid "Use ``bzr commit --fixes lp:2`` to record that this commit fixes bug 2."
9703
#: en/help_topics/bugs.txt:56
9705
"bugzilla_<tracker>_url\n"
9706
"----------------------"
9709
#: en/help_topics/bugs.txt:59
9711
"If present, the location of the Bugzilla bug tracker referred to by\n"
9712
"<tracker>. This option can then be used together with ``bzr commit\n"
9713
"--fixes`` to mark bugs in that tracker as being fixed by that commit. For\n"
9717
#: en/help_topics/bugs.txt:64
9718
msgid " bugzilla_squid_url = http://bugs.squid-cache.org"
9721
#: en/help_topics/bugs.txt:66
9723
"would allow ``bzr commit --fixes squid:1234`` to mark Squid's bug 1234 as\n"
9727
#: en/help_topics/bugs.txt:69
9729
"trac_<tracker>_url\n"
9730
"------------------"
9733
#: en/help_topics/bugs.txt:72
9735
"If present, the location of the Trac instance referred to by\n"
9736
"<tracker>. This option can then be used together with ``bzr commit\n"
9737
"--fixes`` to mark bugs in that tracker as being fixed by that commit. For\n"
9741
#: en/help_topics/bugs.txt:77
9742
msgid " trac_twisted_url = http://www.twistedmatrix.com/trac"
9745
#: en/help_topics/bugs.txt:79
9747
"would allow ``bzr commit --fixes twisted:1234`` to mark Twisted's bug 1234 "
9752
#: en/help_topics/bugs.txt:82
9754
"bugtracker_<tracker>_url\n"
9755
"------------------------"
9758
#: en/help_topics/bugs.txt:85
9760
"If present, the location of a generic bug tracker instance referred to by\n"
9761
"<tracker>. The location must contain an ``{id}`` placeholder,\n"
9762
"which will be replaced by a specific bug ID. This option can then be used\n"
9763
"together with ``bzr commit --fixes`` to mark bugs in that tracker as being\n"
9764
"fixed by that commit. For example::"
9767
#: en/help_topics/bugs.txt:91
9768
msgid " bugtracker_python_url = http://bugs.python.org/issue{id}"
9771
#: en/help_topics/bugs.txt:93
9773
"would allow ``bzr commit --fixes python:1234`` to mark bug 1234 in Python's\n"
9774
"Roundup bug tracker as fixed, or::"
9777
#: en/help_topics/bugs.txt:96
9779
" bugtracker_cpan_url = http://rt.cpan.org/Public/Bug/Display.html?id={id}"
9782
#: en/help_topics/bugs.txt:98
9784
"would allow ``bzr commit --fixes cpan:1234`` to mark bug 1234 in CPAN's\n"
9785
"RT bug tracker as fixed, or::"
9788
#: en/help_topics/bugs.txt:101
9789
msgid " bugtracker_hudson_url = http://issues.hudson-ci.org/browse/{id}"
9792
#: en/help_topics/bugs.txt:103
9794
"would allow ``bzr commit --fixes hudson:HUDSON-1234`` to mark bug "
9796
"in Hudson's JIRA bug tracker as fixed.\n"
9799
#: en/help_topics/configuration.txt:1
9801
"Configuration Settings\n"
9802
"======================="
9805
#: en/help_topics/configuration.txt:4
9807
"Environment settings\n"
9808
"---------------------"
9811
#: en/help_topics/configuration.txt:7
9813
"While most configuration is handled by configuration files, some options\n"
9814
"which may be semi-permanent can also be controlled through the environment."
9817
#: en/help_topics/configuration.txt:10
9823
#: en/help_topics/configuration.txt:13
9824
msgid "Override the email id used by Breezy. Typical format::"
9827
#: en/help_topics/configuration.txt:15
9828
msgid " \"John Doe <jdoe@example.com>\""
9831
#: en/help_topics/configuration.txt:17
9832
msgid "See also the ``email`` configuration option."
9835
#: en/help_topics/configuration.txt:19
9837
"BRZ_PROGRESS_BAR\n"
9841
#: en/help_topics/configuration.txt:22
9843
"Override the progress display. Possible values are \"none\" or \"text\". "
9845
"the value is \"none\" then no progress bar is displayed. The value \"text\" "
9847
"the ordinary command line progress bar."
9850
#: en/help_topics/configuration.txt:26
9856
#: en/help_topics/configuration.txt:29
9857
msgid "Control whether SIGQUIT behaves normally or invokes a breakin debugger."
9860
#: en/help_topics/configuration.txt:31
9862
"* 0 = Standard SIGQUIT behavior (normally, exit with a core dump)\n"
9863
"* 1 = Invoke breakin debugger (default)"
9866
#: en/help_topics/configuration.txt:34
9872
#: en/help_topics/configuration.txt:37
9873
msgid "Override the home directory used by Breezy."
9876
#: en/help_topics/configuration.txt:39
9882
#: en/help_topics/configuration.txt:42
9883
msgid "Select a different SSH implementation."
9886
#: en/help_topics/configuration.txt:44
9892
#: en/help_topics/configuration.txt:47
9893
msgid "Control whether to launch a debugger on error."
9896
#: en/help_topics/configuration.txt:49
9898
"* 0 = Standard behavior\n"
9899
"* 1 = Launch debugger"
9902
#: en/help_topics/configuration.txt:52
9908
#: en/help_topics/configuration.txt:55
9910
"Path to the Bazaar or Breezy executable to use when using the bzr+ssh "
9914
#: en/help_topics/configuration.txt:57
9915
msgid "See also the ``bzr_remote_path`` configuration option."
9918
#: en/help_topics/configuration.txt:59
9924
#: en/help_topics/configuration.txt:62
9925
msgid "Path to the editor Breezy should use for commit messages, etc."
9928
#: en/help_topics/configuration.txt:64
9934
#: en/help_topics/configuration.txt:67
9936
"Location of the Breezy log file. You can check the current location by\n"
9937
"running ``bzr version``."
9940
#: en/help_topics/configuration.txt:70
9942
"The log file contains debug information that is useful for diagnosing or\n"
9943
"reporting problems with Breezy."
9946
#: en/help_topics/configuration.txt:73
9948
"Setting this to ``NUL`` on Windows or ``/dev/null`` on other platforms\n"
9949
"will disable logging."
9952
#: en/help_topics/configuration.txt:76
9959
#: en/help_topics/configuration.txt:80
9961
"The path to the plugins directory that Breezy should use.\n"
9962
"If not set, Breezy will search for plugins in:"
9965
#: en/help_topics/configuration.txt:83
9966
msgid "* the user specific plugin directory (containing the ``user`` plugins),"
9969
#: en/help_topics/configuration.txt:85
9970
msgid "* the breezy directory (containing the ``core`` plugins),"
9973
#: en/help_topics/configuration.txt:87
9975
"* the site specific plugin directory if applicable (containing\n"
9976
" the ``site`` plugins)."
9979
#: en/help_topics/configuration.txt:90
9981
"If ``BZR_PLUGIN_PATH`` is set in any fashion, it will change the\n"
9982
"the way the plugin are searched. "
9985
#: en/help_topics/configuration.txt:93
9987
"As for the ``PATH`` variables, if multiple directories are\n"
9988
"specified in ``BZR_PLUGIN_PATH`` they should be separated by the\n"
9989
"platform specific appropriate character (':' on Unix,\n"
9993
#: en/help_topics/configuration.txt:98
9995
"By default if ``BZR_PLUGIN_PATH`` is set, it replaces searching\n"
9996
"in ``user``. However it will continue to search in ``core`` and\n"
9997
"``site`` unless they are explicitly removed."
10000
#: en/help_topics/configuration.txt:102
10002
"If you need to change the order or remove one of these\n"
10003
"directories, you should use special values:"
10006
#: en/help_topics/configuration.txt:105
10008
"* ``-user``, ``-core``, ``-site`` will remove the corresponding\n"
10009
" path from the default values,"
10012
#: en/help_topics/configuration.txt:108
10014
"* ``+user``, ``+core``, ``+site`` will add the corresponding path\n"
10015
" before the remaining default values (and also remove it from\n"
10016
" the default values)."
10019
#: en/help_topics/configuration.txt:112
10021
"Note that the special values 'user', 'core' and 'site' should be\n"
10022
"used literally, they will be substituted by the corresponding,\n"
10023
"platform specific, values."
10026
#: en/help_topics/configuration.txt:116
10028
"The examples below use ':' as the separator, windows users\n"
10032
#: en/help_topics/configuration.txt:119
10033
msgid "Overriding the default user plugin directory::"
10036
#: en/help_topics/configuration.txt:121
10037
msgid " BZR_PLUGIN_PATH='/path/to/my/other/plugins'"
10040
#: en/help_topics/configuration.txt:123
10041
msgid "Disabling the site directory while retaining the user directory::"
10044
#: en/help_topics/configuration.txt:125
10045
msgid " BZR_PLUGIN_PATH='-site:+user'"
10048
#: en/help_topics/configuration.txt:127
10049
msgid "Disabling all plugins (better achieved with --no-plugins)::"
10052
#: en/help_topics/configuration.txt:129
10053
msgid " BZR_PLUGIN_PATH='-user:-core:-site'"
10056
#: en/help_topics/configuration.txt:131
10057
msgid "Overriding the default site plugin directory::"
10060
#: en/help_topics/configuration.txt:133
10061
msgid " BZR_PLUGIN_PATH='/path/to/my/site/plugins:-site':+user"
10064
#: en/help_topics/configuration.txt:135
10066
"BRZ_DISABLE_PLUGINS\n"
10067
"~~~~~~~~~~~~~~~~~~~"
10070
#: en/help_topics/configuration.txt:138
10072
"Under special circumstances (mostly when trying to diagnose a\n"
10073
"bug), it's better to disable a plugin (or several) rather than\n"
10074
"uninstalling them completely. Such plugins can be specified in\n"
10075
"the ``BZR_DISABLE_PLUGINS`` environment variable."
10078
#: en/help_topics/configuration.txt:143
10080
"In that case, ``bzr`` will stop loading the specified plugins and\n"
10081
"will raise an import error if they are explicitly imported (by\n"
10082
"another plugin that depends on them for example)."
10085
#: en/help_topics/configuration.txt:147
10086
msgid "Disabling ``myplugin`` and ``yourplugin`` is achieved by::"
10089
#: en/help_topics/configuration.txt:149
10090
msgid " BZR_DISABLE_PLUGINS='myplugin:yourplugin'"
10093
#: en/help_topics/configuration.txt:151
10099
#: en/help_topics/configuration.txt:154
10101
"When adding a new feature or working on a bug in a plugin,\n"
10102
"developers often need to use a specific version of a given\n"
10103
"plugin. Since python requires that the directory containing the\n"
10104
"code is named like the plugin itself this make it impossible to\n"
10105
"use arbitrary directory names (using a two-level directory scheme\n"
10106
"is inconvenient). ``BZR_PLUGINS_AT`` allows such directories even\n"
10107
"if they don't appear in ``BZR_PLUGIN_PATH`` ."
10110
#: en/help_topics/configuration.txt:162
10112
"Plugins specified in this environment variable takes precedence\n"
10113
"over the ones in ``BZR_PLUGIN_PATH``."
10116
#: en/help_topics/configuration.txt:165
10118
"The variable specified a list of ``plugin_name@plugin path``,\n"
10119
"``plugin_name`` being the name of the plugin as it appears in\n"
10120
"python module paths, ``plugin_path`` being the path to the\n"
10121
"directory containing the plugin code itself\n"
10122
"(i.e. ``plugins/myplugin`` not ``plugins``). Use ':' as the list\n"
10123
"separator, use ';' on windows."
10126
#: en/help_topics/configuration.txt:172
10132
#: en/help_topics/configuration.txt:175
10134
"Using a specific version of ``myplugin``:\n"
10135
"``BZR_PLUGINS_AT='myplugin@/home/me/bugfixes/123456-myplugin``"
10138
#: en/help_topics/configuration.txt:178
10144
#: en/help_topics/configuration.txt:181
10145
msgid "The path where Breezy should look for shell plugin external commands."
10148
#: en/help_topics/configuration.txt:183
10151
"http_proxy, https_proxy\n"
10152
"~~~~~~~~~~~~~~~~~~~~~~~"
10155
#: en/help_topics/configuration.txt:187
10156
msgid "Specifies the network proxy for outgoing connections, for example::"
10159
#: en/help_topics/configuration.txt:189
10161
" http_proxy=http://proxy.example.com:3128/ \n"
10162
" https_proxy=http://proxy.example.com:3128/"
10165
#: en/help_topics/configuration.txt:192
10168
"Configuration files\n"
10169
"-------------------"
10172
#: en/help_topics/configuration.txt:196
10178
#: en/help_topics/configuration.txt:199
10180
"Configuration files are located in ``$HOME/.bazaar`` on Unix and\n"
10181
"``C:\\Documents and Settings\\<username>\\Application Data\\Breezy\\2.0`` "
10183
"Windows. (You can check the location for your system by using\n"
10184
"``bzr version``.)"
10187
#: en/help_topics/configuration.txt:204
10188
msgid "There are three primary configuration files in this location:"
10191
#: en/help_topics/configuration.txt:206
10192
msgid "* ``breezy.conf`` describes default configuration options,"
10195
#: en/help_topics/configuration.txt:208
10197
"* ``locations.conf`` describes configuration information for\n"
10198
" specific branch locations,"
10201
#: en/help_topics/configuration.txt:211
10203
"* ``authentication.conf`` describes credential information for\n"
10207
#: en/help_topics/configuration.txt:214
10209
"Each branch can also contain a configuration file that sets values specific\n"
10210
"to that branch. This file is found at ``.bzr/branch/branch.conf`` within "
10212
"branch. This file is visible to all users of a branch, if you wish to "
10214
"one of the values for a branch with a setting that is specific to you then "
10216
"can do so in ``locations.conf``."
10219
#: en/help_topics/configuration.txt:220
10225
#: en/help_topics/configuration.txt:223
10227
"An ini file has three types of contructs: section headers, section\n"
10228
"options and comments."
10231
#: en/help_topics/configuration.txt:226
10237
#: en/help_topics/configuration.txt:229
10239
"A comment is any line that starts with a \"#\" (sometimes called a \"hash\n"
10240
"mark\", \"pound sign\" or \"number sign\"). Comment lines are ignored by\n"
10241
"Breezy when parsing ini files."
10244
#: en/help_topics/configuration.txt:233
10246
"Section headers\n"
10250
#: en/help_topics/configuration.txt:236
10252
"A section header is a word enclosed in brackets that starts at the begining\n"
10253
"of a line. A typical section header looks like this::"
10256
#: en/help_topics/configuration.txt:239
10260
#: en/help_topics/configuration.txt:241
10262
"The only valid section headers for breezy.conf currently are [DEFAULT] and\n"
10263
"[ALIASES]. Section headers are case sensitive. The default section provides "
10265
"setting options which can be overridden with the branch config file."
10268
#: en/help_topics/configuration.txt:245
10270
"For ``locations.conf``, the options from the section with the\n"
10271
"longest matching section header are used to the exclusion of other\n"
10272
"potentially valid section headers. A section header uses the path for\n"
10273
"the branch as the section header. Some examples include::"
10276
#: en/help_topics/configuration.txt:250
10278
" [http://mybranches.isp.com/~jdoe/branchdir]\n"
10279
" [/home/jdoe/branches/]"
10282
#: en/help_topics/configuration.txt:253
10285
"Section options\n"
10289
#: en/help_topics/configuration.txt:257
10291
"A section option resides within a section. A section option contains an\n"
10292
"option name, an equals sign and a value. For example::"
10295
#: en/help_topics/configuration.txt:260
10297
" email = John Doe <jdoe@isp.com>\n"
10298
" gpg_signing_key = Amy Pond <amy@example.com>"
10301
#: en/help_topics/configuration.txt:263
10303
"A option can reference other options by enclosing them in curly brackets::"
10306
#: en/help_topics/configuration.txt:265
10308
" my_branch_name = feature_x\n"
10309
" my_server = bzr+ssh://example.com\n"
10310
" push_location = {my_server}/project/{my_branch_name}"
10313
#: en/help_topics/configuration.txt:269
10315
"Option policies\n"
10319
#: en/help_topics/configuration.txt:272
10321
"Options defined in a section affect the named directory or URL plus\n"
10322
"any locations they contain. Policies can be used to change how an\n"
10323
"option value is interpreted for contained locations. Currently\n"
10324
"there are three policies available:"
10327
#: en/help_topics/configuration.txt:277
10330
" the value is interpreted the same for contained locations. This is\n"
10331
" the default behaviour.\n"
10333
" the value is only used for the exact location specified by the\n"
10336
" for contained locations, any additional path components are\n"
10337
" appended to the value."
10340
#: en/help_topics/configuration.txt:287
10342
"Policies are specified by keys with names of the form \"<option_name>:policy"
10344
"For example, to define the push location for a tree of branches, the\n"
10345
"following could be used::"
10348
#: en/help_topics/configuration.txt:291
10350
" [/top/location]\n"
10351
" push_location = sftp://example.com/location\n"
10352
" push_location:policy = appendpath"
10355
#: en/help_topics/configuration.txt:295
10357
"With this configuration, the push location for ``/top/location/branch1``\n"
10358
"would be ``sftp://example.com/location/branch1``."
10361
#: en/help_topics/configuration.txt:298
10363
"Section local options\n"
10364
"^^^^^^^^^^^^^^^^^^^^^"
10367
#: en/help_topics/configuration.txt:301
10369
"Some options are defined automatically inside a given section and can be\n"
10370
"refered to in this section only. "
10373
#: en/help_topics/configuration.txt:304
10374
msgid "For example, the ``appendpath`` policy can be used like this::"
10377
#: en/help_topics/configuration.txt:306
10379
" [/home/vila/src/bzr/bugs]\n"
10380
" mypush = lp:~vila/bzr\n"
10381
" mypush:policy=appendpath"
10384
#: en/help_topics/configuration.txt:310
10385
msgid "Using ``relpath`` to achieve the same result is done like this::"
10388
#: en/help_topics/configuration.txt:312
10390
" [/home/vila/src/bzr/bugs]\n"
10391
" mypush = lp:~vila/bzr/{relpath}"
10394
#: en/help_topics/configuration.txt:315
10396
"In both cases, when used in a directory like\n"
10397
"``/home/vila/src/bzr/bugs/832013-expand-in-stack`` we'll get::"
10400
#: en/help_topics/configuration.txt:318 en/help_topics/configuration.txt:329
10402
" $ bzr config mypush\n"
10403
" lp:~vila/bzr/832013-expand-in-stack"
10406
#: en/help_topics/configuration.txt:321
10407
msgid "Another such option is ``basename`` which can be used like this::"
10410
#: en/help_topics/configuration.txt:323
10412
" [/home/vila/src/bzr]\n"
10413
" mypush = lp:~vila/bzr/{basename}"
10416
#: en/help_topics/configuration.txt:326
10418
"When used in a directory like\n"
10419
"``/home/vila/src/bzr/bugs/832013-expand-in-stack`` we'll get::"
10422
#: en/help_topics/configuration.txt:332
10424
"Note that ``basename`` here refers to the base name of ``relpath`` which\n"
10425
"itself is defined as the relative path between the section name and the\n"
10426
"location it matches."
10429
#: en/help_topics/configuration.txt:336
10431
"Another such option is ``branchname``, which refers to the name of a "
10433
"branch. For non-colocated branches, it behaves like basename. It can be "
10438
#: en/help_topics/configuration.txt:340
10440
" [/home/vila/src/bzr/bugs]\n"
10441
" mypush = lp:~vila/bzr/{branchname}"
10444
#: en/help_topics/configuration.txt:343
10446
"When used with a colocated branch named ``832013-expand-in-stack``, we'll "
10450
#: en/help_topics/configuration.txt:345
10452
" bzr config mypush\n"
10453
" lp:~vila/bzr/832013-expand-in-stack"
10456
#: en/help_topics/configuration.txt:348
10458
"When an option is local to a Section, it cannot be referred to from option\n"
10459
"values in any other section from the same ``Store`` nor from any other\n"
10463
#: en/help_topics/configuration.txt:352
10466
"The main configuration file, breezy.conf\n"
10467
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
10470
#: en/help_topics/configuration.txt:356
10472
"``breezy.conf`` allows two sections: ``[DEFAULT]`` and ``[ALIASES]``.\n"
10473
"The default section contains the default\n"
10474
"configuration options for all branches. The default section can be\n"
10475
"overriden by providing a branch-specific section in ``locations.conf``."
10478
#: en/help_topics/configuration.txt:361
10479
msgid "A typical ``breezy.conf`` section often looks like the following::"
10482
#: en/help_topics/configuration.txt:363
10485
" email = John Doe <jdoe@isp.com>\n"
10486
" editor = /usr/bin/vim\n"
10487
" create_signatures = when-required"
10490
#: en/help_topics/configuration.txt:368
10493
"The branch location configuration file, locations.conf\n"
10494
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
10497
#: en/help_topics/configuration.txt:372
10499
"``locations.conf`` allows one to specify overriding settings for\n"
10500
"a specific branch. The format is almost identical to the default section in\n"
10501
"breezy.conf with one significant change: The section header, instead of "
10503
"default, will be the path to a branch that you wish to override a value\n"
10504
"for. The '?' and '*' wildcards are supported::"
10507
#: en/help_topics/configuration.txt:378
10509
" [/home/jdoe/branches/nethack]\n"
10510
" email = Nethack Admin <nethack@nethack.com>"
10513
#: en/help_topics/configuration.txt:381
10515
" [http://hypothetical.site.com/branches/devel-branch]\n"
10516
" create_signatures = always"
10519
#: en/help_topics/configuration.txt:384
10521
"The authentication configuration file, authentication.conf\n"
10522
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
10525
#: en/help_topics/configuration.txt:387
10527
"``authentication.conf`` allows one to specify credentials for\n"
10528
"remote servers. This can be used for all the supported transports and any "
10530
"of bzr that requires authentication (smtp for example)."
10533
#: en/help_topics/configuration.txt:391
10535
"The syntax of the file obeys the same rules as the others except for the\n"
10536
"option policies which don't apply."
10539
#: en/help_topics/configuration.txt:394
10541
"For more information on the possible uses of the authentication "
10543
"file see :doc:`authentication-help`."
10546
#: en/help_topics/configuration.txt:397
10553
#: en/help_topics/configuration.txt:401
10559
#: en/help_topics/configuration.txt:404
10561
"A comma-separated list of debugging options to turn on. The same values\n"
10562
"can be used as with the -D command-line option (see `help global-options`).\n"
10566
#: en/help_topics/configuration.txt:408
10567
msgid " debug_flags = hpss"
10570
#: en/help_topics/configuration.txt:412
10571
msgid " debug_flags = hpss,evil"
10574
#: en/help_topics/configuration.txt:414
10580
#: en/help_topics/configuration.txt:417
10582
"The email address to use when committing a branch. Typically takes the form\n"
10586
#: en/help_topics/configuration.txt:420
10587
msgid " email = Full Name <account@hostname.tld>"
10590
#: en/help_topics/configuration.txt:422
10596
#: en/help_topics/configuration.txt:425
10598
"The path of the editor that you wish to use if *bzr commit* is run without\n"
10599
"a commit message. This setting is trumped by the environment variable\n"
10600
"``BZR_EDITOR``, and overrides the ``VISUAL`` and ``EDITOR`` environment\n"
10604
#: en/help_topics/configuration.txt:430
10610
#: en/help_topics/configuration.txt:433
10612
"The default log format to use. Standard log formats are ``long``, ``short``\n"
10613
"and ``line``. Additional formats may be provided by plugins. The default\n"
10614
"value is ``long``."
10617
#: en/help_topics/configuration.txt:437
10619
"check_signatures\n"
10623
#: en/help_topics/configuration.txt:440
10625
"Reserved for future use. These options will allow a policy for branches to\n"
10626
"require signatures."
10629
#: en/help_topics/configuration.txt:443
10632
" The gnupg signature for revisions must be present and must be valid."
10635
#: en/help_topics/configuration.txt:446
10638
" Do not check gnupg signatures of revisions."
10641
#: en/help_topics/configuration.txt:449
10643
"check-available\n"
10644
" (default) If gnupg signatures for revisions are present, check them.\n"
10645
" Breezy will fail if it finds a bad signature, but will not fail if\n"
10646
" no signature is present."
10649
#: en/help_topics/configuration.txt:454
10651
"create_signatures\n"
10652
"~~~~~~~~~~~~~~~~~"
10655
#: en/help_topics/configuration.txt:457
10657
"Defines the behaviour of signing revisions on commits. By default bzr will "
10659
"sign new commits."
10662
#: en/help_topics/configuration.txt:460
10665
" Sign every new revision that is committed. If the signing fails then "
10667
" commit will not be made."
10670
#: en/help_topics/configuration.txt:464
10673
" Reserved for future use."
10676
#: en/help_topics/configuration.txt:467
10679
" Reserved for future use."
10682
#: en/help_topics/configuration.txt:470
10684
"In future it is planned that ``when-required`` will sign newly\n"
10685
"committed revisions only when the branch requires them. ``never`` will "
10687
"to sign newly committed revisions, even if the branch requires signatures."
10690
#: en/help_topics/configuration.txt:474
10692
"dirstate.fdatasync\n"
10693
"~~~~~~~~~~~~~~~~~~"
10696
#: en/help_topics/configuration.txt:477
10698
"If true (default), working tree metadata changes are flushed through the\n"
10699
"OS buffers to physical disk. This is somewhat slower, but means data\n"
10700
"should not be lost if the machine crashes. See also repository.fdatasync."
10703
#: en/help_topics/configuration.txt:481
10705
"gpg_signing_key\n"
10709
#: en/help_topics/configuration.txt:484
10711
"The GnuPG user identity to use when signing commits. Can be an e-mail\n"
10712
"address, key fingerprint or full key ID. When unset or when set to\n"
10713
"\"default\" Breezy will use the user e-mail set with ``whoami``."
10716
#: en/help_topics/configuration.txt:488
10722
#: en/help_topics/configuration.txt:491
10724
"Only useful in ``locations.conf``. Defines whether or not the\n"
10725
"configuration for this section applies to subdirectories:"
10728
#: en/help_topics/configuration.txt:494
10731
" (default) This section applies to subdirectories as well."
10734
#: en/help_topics/configuration.txt:497
10737
" This section only applies to the branch at this directory and not\n"
10738
" branches below it."
10741
#: en/help_topics/configuration.txt:501
10743
"bzr_remote_path\n"
10747
#: en/help_topics/configuration.txt:504
10749
"(Default: \"bzr\"). The path to the command that should be used to run the "
10751
"server for bzr. This value may only be specified in locations.conf, because:"
10754
#: en/help_topics/configuration.txt:507
10756
"- it's needed before branch.conf is accessible\n"
10757
"- allowing remote branch.conf files to specify commands would be a security\n"
10761
#: en/help_topics/configuration.txt:511
10762
msgid "It is overridden by the BZR_REMOTE_PATH environment variable."
10765
#: en/help_topics/configuration.txt:513
10771
#: en/help_topics/configuration.txt:516
10773
"(Default: \"localhost\"). SMTP server to use when Breezy needs to send\n"
10774
"email, eg. with ``merge-directive --mail-to``, or the bzr-email plugin."
10777
#: en/help_topics/configuration.txt:519
10779
"smtp_username, smtp_password\n"
10780
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
10783
#: en/help_topics/configuration.txt:522
10785
"User and password to authenticate to the SMTP server. If smtp_username\n"
10786
"is set, and smtp_password is not, Breezy will prompt for a password.\n"
10787
"These settings are only needed if the SMTP server requires authentication\n"
10791
#: en/help_topics/configuration.txt:527
10793
"locks.steal_dead\n"
10797
#: en/help_topics/configuration.txt:530
10799
"If set to true, bzr will automatically break locks held by processes from\n"
10800
"the same machine and user that are no longer alive. Otherwise, it will\n"
10801
"print a message and you can break the lock manually, if you are satisfied\n"
10802
"the object is no longer in use."
10805
#: en/help_topics/configuration.txt:535
10811
#: en/help_topics/configuration.txt:538
10813
"A mail client to use for sending merge requests.\n"
10814
"By default, bzr will try to use ``mapi`` on Windows. On other platforms, "
10816
"will try ``xdg-email``. If either of these fails, it will fall back to\n"
10820
#: en/help_topics/configuration.txt:543
10821
msgid "Supported values for specific clients:"
10824
#: en/help_topics/configuration.txt:545
10826
":claws: Use Claws. This skips a dialog for attaching files.\n"
10827
":evolution: Use Evolution.\n"
10828
":kmail: Use KMail.\n"
10829
":mutt: Use Mutt.\n"
10830
":thunderbird: Use Mozilla Thunderbird or Icedove. For Thunderbird/Icedove "
10832
" this works around some bugs that xdg-email doesn't handle."
10835
#: en/help_topics/configuration.txt:552
10836
msgid "Supported generic values are:"
10839
#: en/help_topics/configuration.txt:554
10841
":default: See above.\n"
10842
":editor: Use your editor to compose the merge request. This also uses\n"
10843
" your commit id, (see ``bzr whoami``), smtp_server and (optionally)\n"
10844
" smtp_username and smtp_password.\n"
10845
":mapi: Use your preferred e-mail client on Windows.\n"
10846
":xdg-email: Use xdg-email to run your preferred mail program"
10849
#: en/help_topics/configuration.txt:561
10851
"repository.fdatasync\n"
10852
"~~~~~~~~~~~~~~~~~~~~"
10855
#: en/help_topics/configuration.txt:564
10857
"If true (default), repository changes are flushed through the OS buffers\n"
10858
"to physical disk. This is somewhat slower, but means data should not be\n"
10859
"lost if the machine crashes. See also dirstate.fdatasync."
10862
#: en/help_topics/configuration.txt:568
10868
#: en/help_topics/configuration.txt:571
10870
"The branch you intend to submit your current work to. This is "
10872
"set by ``bzr send``, and is also used by the ``submit:`` revision spec. "
10874
"should usually be set on a per-branch or per-location basis."
10877
#: en/help_topics/configuration.txt:575
10883
#: en/help_topics/configuration.txt:578
10885
"A publically-accessible version of this branch (implying that this version "
10887
"not publically-accessible). Used (and set) by ``bzr send``."
10890
#: en/help_topics/configuration.txt:581
10892
"suppress_warnings\n"
10893
"~~~~~~~~~~~~~~~~~"
10896
#: en/help_topics/configuration.txt:584
10898
"A list of strings, each string represent a warning that can be emitted by\n"
10899
"bzr. Mentioning a warning in this list tells bzr to not emit it."
10902
#: en/help_topics/configuration.txt:587
10903
msgid "Valid values:"
10906
#: en/help_topics/configuration.txt:589
10908
"* ``format_deprecation``:\n"
10909
" whether the format deprecation warning is shown on repositories that "
10911
" using deprecated formats."
10914
#: en/help_topics/configuration.txt:593
10916
"* ``insecure_permissions``:\n"
10917
" whether a warning is shown if ``authentication.conf`` can be read\n"
10921
#: en/help_topics/configuration.txt:597
10927
#: en/help_topics/configuration.txt:600
10929
"A format name for the default format used when creating branches. See "
10931
"help formats`` for possible values."
10934
#: en/help_topics/configuration.txt:603
10937
"Unicode options\n"
10941
#: en/help_topics/configuration.txt:607
10943
"output_encoding\n"
10947
#: en/help_topics/configuration.txt:610
10949
"A Python unicode encoding name for text output from bzr, such as log\n"
10950
"information. Values include: utf8, cp850, ascii, iso-8859-1. The default\n"
10951
"is the terminal encoding prefered by the operating system."
10954
#: en/help_topics/configuration.txt:614
10957
"Branch type specific options\n"
10958
"----------------------------"
10961
#: en/help_topics/configuration.txt:618
10963
"These options apply only to branches that use the ``dirstate-tags`` or\n"
10964
"later format. They\n"
10965
"are usually set in ``.bzr/branch/branch.conf`` automatically, but may be\n"
10966
"manually set in ``locations.conf`` or ``breezy.conf``."
10969
#: en/help_topics/configuration.txt:623
10971
"append_revisions_only\n"
10972
"~~~~~~~~~~~~~~~~~~~~~"
10975
#: en/help_topics/configuration.txt:626
10977
"If set to \"True\" then revisions can only be appended to the log, not\n"
10978
"removed. A branch with this setting enabled can only pull from another\n"
10979
"branch if the other branch's log is a longer version of its own. This is\n"
10980
"normally set by ``bzr init --append-revisions-only``. If you set it\n"
10981
"manually, use either 'True' or 'False' (case-sensitive) to maintain\n"
10982
"compatibility with previous bzr versions (older than 2.2)."
10985
#: en/help_topics/configuration.txt:633
10987
"parent_location\n"
10991
#: en/help_topics/configuration.txt:636
10993
"If present, the location of the default branch for pull or merge. This "
10995
"is normally set when creating a branch, the first ``pull`` or by ``pull\n"
10999
#: en/help_topics/configuration.txt:640
11005
#: en/help_topics/configuration.txt:643
11007
"If present, the location of the default branch for push. This option\n"
11008
"is normally set by the first ``push`` or ``push --remember``."
11011
#: en/help_topics/configuration.txt:646
11017
#: en/help_topics/configuration.txt:649
11019
"If present, defines the ``--strict`` option default value for checking\n"
11020
"uncommitted changes before pushing."
11023
#: en/help_topics/configuration.txt:652
11029
#: en/help_topics/configuration.txt:655
11031
"The location that commits should go to when acting as a checkout.\n"
11032
"This option is normally set by ``bind``."
11035
#: en/help_topics/configuration.txt:658
11041
#: en/help_topics/configuration.txt:661
11043
"If set to \"True\", the branch should act as a checkout, and push each "
11045
"the bound_location. This option is normally set by ``bind``/``unbind``."
11048
#: en/help_topics/configuration.txt:664
11054
#: en/help_topics/configuration.txt:667
11056
"If present, defines the ``--strict`` option default value for checking\n"
11057
"uncommitted changes before sending a merge directive."
11060
#: en/help_topics/configuration.txt:670
11062
"add.maximum_file_size\n"
11063
"~~~~~~~~~~~~~~~~~~~~~"
11066
#: en/help_topics/configuration.txt:673
11068
"Defines the maximum file size the command line \"add\" operation will allow\n"
11069
"in recursive mode, with files larger than this value being skipped. You "
11071
"specify this value as an integer (in which case it is interpreted as "
11073
"or you may specify the value using SI units, i.e. 10KB, 20MB, 1G. A value of "
11075
"will disable skipping."
11078
#: en/help_topics/configuration.txt:679
11080
"External Merge Tools\n"
11081
"--------------------"
11084
#: en/help_topics/configuration.txt:682
11086
"bzr.mergetool.<name>\n"
11087
"~~~~~~~~~~~~~~~~~~~~"
11090
#: en/help_topics/configuration.txt:685
11092
"Defines an external merge tool called <name> with the given command-line.\n"
11093
"Arguments containing spaces should be quoted using single or double quotes. "
11095
"executable may omit its path if it can be found on the PATH."
11098
#: en/help_topics/configuration.txt:689
11100
"The following markers can be used in the command-line to substitute "
11102
"involved in the merge conflict::"
11105
#: en/help_topics/configuration.txt:692
11107
" {base} file.BASE\n"
11108
" {this} file.THIS\n"
11109
" {other} file.OTHER\n"
11110
" {result} output file\n"
11111
" {this_temp} temp copy of file.THIS, used to overwrite output file if "
11116
#: en/help_topics/configuration.txt:701
11117
msgid " bzr.mergetool.kdiff3 = kdiff3 {base} {this} {other} -o {result}"
11120
#: en/help_topics/configuration.txt:703
11122
"Because ``mergetool`` and ``config`` itself both use curly braces as\n"
11123
"interpolation markers, trying to display the mergetool line results in the\n"
11124
"following problem::"
11127
#: en/help_topics/configuration.txt:707
11130
" $ bzr config bzr.mergetool.kdiff3='kdiff3 {base} {this} {other} -o "
11132
" $ bzr config bzr.mergetool.kdiff3\n"
11133
" bzr: ERROR: Option base is not defined while expanding \"kdiff3 {base} "
11134
"{this} {other} -o {result}\"."
11137
#: en/help_topics/configuration.txt:712
11139
"To avoid this, ``config`` can be instructed not to try expanding variables::"
11142
#: en/help_topics/configuration.txt:714
11144
" $ bzr config --all bzr.mergetool.kdiff3\n"
11146
" bzr.mergetool.kdiff3 = kdiff3 {base} {this} {other} -o {result}"
11149
#: en/help_topics/configuration.txt:718
11152
"bzr.default_mergetool\n"
11153
"~~~~~~~~~~~~~~~~~~~~~"
11156
#: en/help_topics/configuration.txt:722
11158
"Specifies which external merge tool (as defined above) should be selected "
11160
"default in tools such as ``bzr qconflicts``."
11163
#: en/help_topics/configuration.txt:727
11164
msgid " bzr.default_mergetool = kdiff3\n"
11167
#: en/help_topics/conflict-types.txt:1
11173
#: en/help_topics/conflict-types.txt:4
11175
"Some operations, like merge, revert and pull, modify the contents of your\n"
11176
"working tree. These modifications are programmatically generated, and so "
11178
"may conflict with the current state of your working tree. "
11181
#: en/help_topics/conflict-types.txt:8
11183
"When conflicts are present in your working tree (as shown by ``brz\n"
11184
"conflicts``), you should resolve them and then inform brz that the "
11186
"have been resolved."
11189
#: en/help_topics/conflict-types.txt:12
11191
"Resolving conflicts is sometimes not obvious. Either because the user that\n"
11192
"should resolve them is not the one responsible for their occurrence, as is "
11194
"case when merging other people's work or because some conflicts are "
11196
"in a way that is not easy to understand."
11199
#: en/help_topics/conflict-types.txt:17
11201
"Bazaar tries to avoid conflicts ; its aim is to ask you to resolve the\n"
11202
"conflict if and only if there's an actual conceptual conflict in the source\n"
11203
"tree. Because Bazaar doesn't understand the real meaning of the files "
11205
"versioned, it can, when faced with ambiguities, fall short in either "
11207
"trying to resolve the conflict itself. Many kinds of changes can be "
11209
"programmatically, but sometimes only a human can determine the right thing "
11214
#: en/help_topics/conflict-types.txt:25
11216
"When Bazaar generates a conflict, it adds information into the working tree "
11218
"present the conflicting versions, and it's up to you to find the correct\n"
11222
#: en/help_topics/conflict-types.txt:29
11223
msgid "Whatever the conflict is, resolving it is roughly done in two steps:"
11226
#: en/help_topics/conflict-types.txt:31
11228
"1. Modify the working tree content so that the conflicted item is now in "
11230
" state you want to keep, then"
11233
#: en/help_topics/conflict-types.txt:34
11235
"2. Inform Bazaar that the conflict is now solved and ask to cleanup any\n"
11236
" remaining generated information (``brz resolve <item>``)."
11239
#: en/help_topics/conflict-types.txt:37
11241
"For most conflict types, there are some obvious ways to modify the working\n"
11242
"tree and put it into the desired state. For some types of conflicts, Bazaar\n"
11243
"itself already made a choice, when possible."
11246
#: en/help_topics/conflict-types.txt:41
11248
"Yet, whether Bazaar makes a choice or not, there are some other simple but\n"
11249
"different ways to resolve the conflict."
11252
#: en/help_topics/conflict-types.txt:44
11254
"Each type of conflict is explained below, and the action which must be done "
11256
"resolve the conflict is outlined."
11259
#: en/help_topics/conflict-types.txt:47
11261
"Various actions are available depending on the kind of conflict, for some "
11263
"these actions, Bazaar can provide some help. In the end you should at least\n"
11264
"inform Bazaar that you're done with the conflict with::"
11267
#: en/help_topics/conflict-types.txt:51
11268
msgid " ``brz resolve FILE --action=done'"
11271
#: en/help_topics/conflict-types.txt:53
11273
"Note that this is the default action when a single file is involved so you "
11278
#: en/help_topics/conflict-types.txt:56
11279
msgid " ``brz resolve FILE``"
11282
#: en/help_topics/conflict-types.txt:58
11283
msgid "See ``brz help resolve`` for more details."
11286
#: en/help_topics/conflict-types.txt:60
11292
#: en/help_topics/conflict-types.txt:63 en/help_topics/conflict-types.txt:120
11293
#: en/help_topics/conflict-types.txt:151 en/help_topics/conflict-types.txt:175
11294
#: en/help_topics/conflict-types.txt:198 en/help_topics/conflict-types.txt:213
11295
#: en/help_topics/conflict-types.txt:239 en/help_topics/conflict-types.txt:281
11296
#: en/help_topics/conflict-types.txt:303 en/help_topics/conflict-types.txt:339
11297
msgid "Typical message::"
11300
#: en/help_topics/conflict-types.txt:65
11301
msgid " Text conflict in FILE"
11304
#: en/help_topics/conflict-types.txt:67
11306
"These are produced when a text merge cannot completely reconcile two sets "
11308
"text changes. Bazaar will emit files for each version with the extensions\n"
11309
"THIS, OTHER, and BASE. THIS is the version of the file from the target "
11311
"i.e. the tree that you are merging changes into. OTHER is the version that "
11313
"are merging into the target. BASE is an older version that is used as a "
11318
#: en/help_topics/conflict-types.txt:74
11320
"In the main copy of the file, Bazaar will include all the changes that it\n"
11321
"could reconcile, and any un-reconciled conflicts are surrounded by\n"
11322
"\"herringbone\" markers like ``<<<<<<<``."
11325
#: en/help_topics/conflict-types.txt:78
11327
"Say the initial text is \"The project leader released it.\", and THIS "
11329
"to \"Martin Pool released it.\", while OTHER modifies it to \"The project "
11331
"released Bazaar.\" A conflict would look like this::"
11334
#: en/help_topics/conflict-types.txt:82
11337
" Martin Pool released it.\n"
11339
" The project leader released Bazaar.\n"
11340
" >>>>>>> MERGE-SOURCE"
11343
#: en/help_topics/conflict-types.txt:88
11344
msgid "The correct resolution would be \"Martin Pool released Bazaar.\""
11347
#: en/help_topics/conflict-types.txt:90
11349
"You can handle text conflicts either by editing the main copy of the file,\n"
11350
"or by invoking external tools on the THIS, OTHER and BASE versions. It's\n"
11351
"worth mentioning that resolving text conflicts rarely involves picking one\n"
11352
"set of changes over the other (but see below when you encounter these\n"
11353
"cases). More often, the two sets of changes must be intelligently combined."
11356
#: en/help_topics/conflict-types.txt:96
11358
"If you edit the main copy, be sure to remove the herringbone markers. When\n"
11359
"you are done editing, the file should look like it never had a conflict, and "
11364
#: en/help_topics/conflict-types.txt:100
11366
"When you have resolved text conflicts, just run ``brz resolve --auto``, and\n"
11367
"Bazaar will auto-detect which conflicts you have resolved."
11370
#: en/help_topics/conflict-types.txt:103
11372
"When the conflict is resolved, Bazaar deletes the previously generated\n"
11373
"``.BASE``, ``.THIS`` and ``.OTHER`` files if they are still present in the\n"
11377
#: en/help_topics/conflict-types.txt:107
11380
"When you want to pick one set of changes over the other, you can use ``brz\n"
11381
"resolve`` with one of the following actions:"
11384
#: en/help_topics/conflict-types.txt:111
11386
"* ``--action=take-this`` will issue ``mv FILE.THIS FILE``,\n"
11387
"* ``--action=take-other`` will issue ``mv FILE.OTHER FILE``."
11390
#: en/help_topics/conflict-types.txt:114
11392
"Note that if you have modified ``FILE.THIS`` or ``FILE.OTHER``, these\n"
11393
"modifications will be taken into account."
11396
#: en/help_topics/conflict-types.txt:117
11398
"Content conflicts\n"
11399
"-----------------"
11402
#: en/help_topics/conflict-types.txt:122
11403
msgid " Contents conflict in FILE"
11406
#: en/help_topics/conflict-types.txt:124
11408
"This conflict happens when there are conflicting changes in the working "
11410
"and the merge source, but the conflicted items are not text files. They "
11412
"be binary files, or symlinks, or directories. It can even happen with "
11414
"that are deleted on one side, and modified on the other."
11417
#: en/help_topics/conflict-types.txt:129
11419
"Like text conflicts, Bazaar will emit THIS, OTHER and BASE files. (They may "
11421
"regular files, symlinks or directories). But it will not include a \"main "
11423
"of the file with herringbone conflict markers. It will appear that the "
11425
"copy\" has been renamed to THIS or OTHER."
11428
#: en/help_topics/conflict-types.txt:134 en/help_topics/conflict-types.txt:182
11430
"To resolve that kind of conflict, you should rebuild FILE from either "
11432
"or a combination of both."
11435
#: en/help_topics/conflict-types.txt:137 en/help_topics/conflict-types.txt:185
11436
#: en/help_topics/conflict-types.txt:226 en/help_topics/conflict-types.txt:252
11437
#: en/help_topics/conflict-types.txt:291 en/help_topics/conflict-types.txt:326
11438
#: en/help_topics/conflict-types.txt:361
11439
msgid "``brz resolve`` recognizes the following actions:"
11442
#: en/help_topics/conflict-types.txt:139
11444
"* ``--action=take-this`` will issue ``brz mv FILE.THIS FILE``,\n"
11445
"* ``--action=take-other`` will issue ``brz mv FILE.OTHER FILE``,\n"
11446
"* ``--action=done`` will just mark the conflict as resolved."
11449
#: en/help_topics/conflict-types.txt:143
11451
"Any action will also delete the previously generated ``.BASE``, ``.THIS`` "
11453
"``.OTHER`` files if they are still present in the working tree."
11456
#: en/help_topics/conflict-types.txt:146 en/help_topics/conflict-types.txt:193
11457
#: en/help_topics/conflict-types.txt:234 en/help_topics/conflict-types.txt:276
11458
#: en/help_topics/conflict-types.txt:298 en/help_topics/conflict-types.txt:334
11459
#: en/help_topics/conflict-types.txt:369
11461
"Bazaar cannot auto-detect when conflicts of this kind have been resolved."
11464
#: en/help_topics/conflict-types.txt:148
11470
#: en/help_topics/conflict-types.txt:153
11472
" Conflicting tags:\n"
11476
#: en/help_topics/conflict-types.txt:156
11478
"When pulling from or pushing to another branch, Bazaar informs you about "
11480
"that conflict between the two branches; that is the same tag points to two\n"
11481
"different revisions. You need not resolve these conflicts, but subsequent\n"
11482
"uses of pull or push will result in the same message."
11485
#: en/help_topics/conflict-types.txt:161
11487
"To resolve the conflict, you must apply the correct tags to either the "
11489
"branch or the source branch as appropriate. Use \"brz tags --show-ids -d\n"
11490
"SOURCE_URL\" to see the tags in the source branch. If you want to make the\n"
11491
"target branch's tags match the source branch, then in the target branch do\n"
11492
"``brz tag --force -r revid:REVISION_ID CONFLICTING_TAG`` for each of the\n"
11493
"CONFLICTING_TAGs, where REVISION_ID comes from the list of tags in the "
11495
"branch. You need not call \"brz resolve\" after doing this. To resolve in\n"
11496
"favor of the target branch, you need to similarly use ``tag --force`` in "
11498
"source branch. (Note that pulling or pushing using --overwrite will "
11500
"all tags as well.)"
11503
#: en/help_topics/conflict-types.txt:172
11505
"Duplicate paths\n"
11509
#: en/help_topics/conflict-types.txt:177
11510
msgid " Conflict adding file FILE. Moved existing file to FILE.moved."
11513
#: en/help_topics/conflict-types.txt:179
11515
"Sometimes Bazaar will attempt to create a file using a pathname that has\n"
11516
"already been used. The existing file will be renamed to \"FILE.moved\". "
11519
#: en/help_topics/conflict-types.txt:187
11521
"* ``--action=take-this`` will issue ``brz rm FILE ; brz mv FILE.moved "
11523
"* ``--action=take-other`` will issue ``brz rm FILE.moved``,\n"
11524
"* ``--action=done`` will just mark the conflict as resolved."
11527
#: en/help_topics/conflict-types.txt:191
11529
"Note that you must get rid of FILE.moved before using ``--action=done``."
11532
#: en/help_topics/conflict-types.txt:195
11534
"Unversioned parent\n"
11535
"------------------"
11538
#: en/help_topics/conflict-types.txt:200
11539
msgid " Conflict because FILE is not versioned, but has versioned children."
11542
#: en/help_topics/conflict-types.txt:202
11544
"Sometimes Bazaar will attempt to create a file whose parent directory is "
11546
"versioned. This happens when the directory has been deleted in the target,\n"
11547
"but has a new child in the source, or vice versa. In this situation, "
11549
"will version the parent directory as well. Resolving this issue depends\n"
11550
"very much on the particular scenario. You may wish to rename or delete "
11552
"the file or the directory. When you are satisfied, you can run \"brz "
11554
"FILE\" to mark the conflict as resolved."
11557
#: en/help_topics/conflict-types.txt:210
11563
#: en/help_topics/conflict-types.txt:215
11564
msgid " Conflict adding files to FILE. Created directory."
11567
#: en/help_topics/conflict-types.txt:217
11569
"This happens when a directory has been deleted in the target, but has new\n"
11570
"children in the source. This is similar to the \"unversioned parent\" "
11572
"except that the parent directory does not *exist*, instead of just being\n"
11573
"unversioned. In this situation, Bazaar will create the missing parent.\n"
11574
"Resolving this issue depends very much on the particular scenario."
11577
#: en/help_topics/conflict-types.txt:223 en/help_topics/conflict-types.txt:249
11579
"To resolve that kind of conflict, you should either remove or rename the\n"
11580
"children or the directory or a combination of both."
11583
#: en/help_topics/conflict-types.txt:228
11585
"* ``--action=take-this`` will issue ``brz rm directory`` including the\n"
11587
"* ``--action=take-other`` will acknowledge Bazaar choice to keep the "
11589
" and restoring the directory,\n"
11590
"* ``--action=done`` will just mark the conflict as resolved."
11593
#: en/help_topics/conflict-types.txt:236
11595
"Deleting parent\n"
11599
#: en/help_topics/conflict-types.txt:241
11600
msgid " Conflict: can't delete DIR because it is not empty. Not deleting."
11603
#: en/help_topics/conflict-types.txt:243
11605
"This is the opposite of \"missing parent\". A directory is deleted in the\n"
11606
"source, but has new children in the target (either because a directory\n"
11607
"deletion is merged or because the merge introduce new children). Bazaar\n"
11608
"will retain the directory. Resolving this issue depends very much on the\n"
11609
"particular scenario."
11612
#: en/help_topics/conflict-types.txt:254
11614
"* ``--action=take-this`` will acknowledge Bazaar choice to keep the "
11618
#: en/help_topics/conflict-types.txt:256
11620
"* ``--action=take-other`` will issue ``brz rm directory`` including the \n"
11624
#: en/help_topics/conflict-types.txt:259
11625
msgid "* ``--action=done`` will just mark the conflict as resolved."
11628
#: en/help_topics/conflict-types.txt:261
11630
"Note that when merging a directory deletion, if unversioned files are\n"
11631
"present, they become potential orphans has they don't have a directory\n"
11635
#: en/help_topics/conflict-types.txt:265
11637
"Handling such orphans, *before* the conflict is created, is controlled by\n"
11638
"setting the ``brz.transform.orphan_policy`` configuration option."
11641
#: en/help_topics/conflict-types.txt:268
11642
msgid "There are two possible values for this option:"
11645
#: en/help_topics/conflict-types.txt:270
11647
"* ``conflict`` (the default): will leave the orphans in place and\n"
11648
" generate a conflicts,"
11651
#: en/help_topics/conflict-types.txt:273
11653
"* ``move``: will move the orphans to a ``brz-orphans`` directory at the "
11655
" of the working tree with names like ``<file>.~#~``."
11658
#: en/help_topics/conflict-types.txt:278
11664
#: en/help_topics/conflict-types.txt:283
11665
msgid " Path conflict: PATH1 / PATH2"
11668
#: en/help_topics/conflict-types.txt:285
11670
"This happens when the source and target have each modified the name or "
11672
"directory of a file. Bazaar will use the path elements from the source."
11675
#: en/help_topics/conflict-types.txt:288
11677
"To resolve that kind of conflict, you just have to decide what name should "
11679
"retained for the file involved."
11682
#: en/help_topics/conflict-types.txt:293
11684
"* ``--action=take-this`` will revert Bazaar choice and keep ``PATH1`` by\n"
11685
" issuing ``brz mv PATH2 PATH1``,\n"
11686
"* ``--action=take-other`` will acknowledge Bazaar choice of keeping "
11688
"* ``--action=done`` will just mark the conflict as resolved."
11691
#: en/help_topics/conflict-types.txt:300
11697
#: en/help_topics/conflict-types.txt:305
11698
msgid " Conflict moving FILE into DIRECTORY. Cancelled move."
11701
#: en/help_topics/conflict-types.txt:307
11703
"This happens when the source and the target have each moved directories, so\n"
11704
"that, if the change could be applied, a directory would be contained by "
11709
#: en/help_topics/conflict-types.txt:311
11712
" $ brz mkdir white\n"
11713
" $ brz mkdir black\n"
11714
" $ brz commit -m \"BASE\"\n"
11715
" $ brz branch . ../other\n"
11716
" $ brz mv white black\n"
11717
" $ brz commit -m \"THIS\"\n"
11718
" $ brz mv ../other/black ../other/white\n"
11719
" $ brz commit ../other -m \"OTHER\"\n"
11720
" $ brz merge ../other"
11723
#: en/help_topics/conflict-types.txt:322
11725
"In this situation, Bazaar will cancel the move, and leave ``white`` in\n"
11726
"``black``. To resolve that kind of conflict, you just have to decide what\n"
11727
"name should be retained for the directories involved."
11730
#: en/help_topics/conflict-types.txt:328
11732
"* ``--action=take-this`` will acknowledge Bazaar choice of leaving "
11735
"* ``--action=take-other`` will revert Bazaar choice and move ``black`` in\n"
11736
" ``white`` by issuing ``brz mv black/white white ; brz mv black white``,\n"
11737
"* ``--action=done`` will just mark the conflict as resolved."
11740
#: en/help_topics/conflict-types.txt:336
11742
"Non-directory parent\n"
11743
"--------------------"
11746
#: en/help_topics/conflict-types.txt:341
11748
" Conflict: foo.new is not a directory, but has files in it.\n"
11749
" Created directory."
11752
#: en/help_topics/conflict-types.txt:344
11754
"This happens when one side has added files to a directory, and the other "
11756
"has changed the directory into a file or symlink. For example::"
11759
#: en/help_topics/conflict-types.txt:347
11762
" $ brz mkdir foo\n"
11763
" $ brz commit -m \"BASE\"\n"
11764
" $ brz branch . ../other\n"
11767
" $ brz commit -m \"THIS\"\n"
11768
" $ brz mkdir ../other/foo/bar\n"
11769
" $ brz commit ../other -m \"OTHER\"\n"
11770
" $ brz merge ../other"
11773
#: en/help_topics/conflict-types.txt:358
11775
"To resolve that kind of conflict, you have to decide what name should be\n"
11776
"retained for the file, directory or symlink involved."
11779
#: en/help_topics/conflict-types.txt:363
11781
"* ``--action=take-this`` will issue ``brz rm --force foo.new`` and \n"
11782
" ``brz add foo``,\n"
11783
"* ``--action=take-other`` will issue ``brz rm --force foo`` and \n"
11784
" ``brz mv foo.new foo``,\n"
11785
"* ``--action=done`` will just mark the conflict as resolved."
11788
#: en/help_topics/conflict-types.txt:371
11790
"MalformedTransform\n"
11791
"------------------"
11794
#: en/help_topics/conflict-types.txt:374
11796
"It is possible (though very rare) for Bazaar to raise a MalformedTransform\n"
11797
"exception. This means that Bazaar encountered a filesystem conflict that it "
11799
"unable to resolve. This usually indicates a bug. Please let us know if "
11801
"encounter this. Our bug tracker is at https://launchpad.net/bzr/+bugs\n"
11804
#: en/help_topics/content-filters.txt:1
11806
"Content Filters\n"
11810
#: en/help_topics/content-filters.txt:4
11812
"Content formats\n"
11816
#: en/help_topics/content-filters.txt:7
11818
"Bazaar's content filtering allows you to store files in a different\n"
11819
"format from the copy in your working tree. This lets you, or your\n"
11820
"co-developers, use Windows development tools that expect CRLF files\n"
11821
"on projects that use other line-ending conventions. Among other things,\n"
11822
"content filters also let Unix developers more easily work on projects\n"
11823
"using Windows line-ending conventions, keyword expansion/compression,\n"
11824
"and trailing spaces on lines in text files to be implicitly stripped\n"
11828
#: en/help_topics/content-filters.txt:16
11829
msgid "To generalize, there are two content formats supported by Bazaar:"
11832
#: en/help_topics/content-filters.txt:18
11834
"* a canonical format - how files are stored internally\n"
11835
"* a convenience format - how files are created in a working tree."
11838
#: en/help_topics/content-filters.txt:21
11841
"Format conversion\n"
11842
"-----------------"
11845
#: en/help_topics/content-filters.txt:25
11847
"The conversion between these formats is done by content filters.\n"
11848
"A content filter has two parts:"
11851
#: en/help_topics/content-filters.txt:28
11853
"* a read converter - converts from convenience to canonical format\n"
11854
"* a write converter - converts from canonical to convenience format."
11857
#: en/help_topics/content-filters.txt:31
11859
"Many of these converters will provide *round-trip* conversion,\n"
11860
"i.e. applying the read converter followed by the write converter\n"
11861
"gives back the original content. However, others may provide an\n"
11862
"asymmetric conversion. For example, a read converter might strip\n"
11863
"trailing whitespace off lines in source code while the matching\n"
11864
"write converter might pass content through unchanged."
11867
#: en/help_topics/content-filters.txt:38
11870
"Enabling content filters\n"
11871
"------------------------"
11874
#: en/help_topics/content-filters.txt:42
11876
"Content filters are typically provided by plugins, so the first step\n"
11877
"in using them is to install the relevant plugins and read their\n"
11878
"documentation. Some plugins may be very specific about which files\n"
11879
"they filter, e.g. only files ending in ``.java`` or ``.php``.\n"
11880
"In other cases, the plugin may leave it in the user's hands to\n"
11881
"define which files are to be filtered. This is typically done\n"
11882
"using rule-based preferences. See ``brz help rules`` for general\n"
11883
"information about defining these."
11886
#: en/help_topics/content-filters.txt:51
11889
"Impact on commands\n"
11890
"------------------"
11893
#: en/help_topics/content-filters.txt:55
11895
"Read converters are only applied to commands that read content from\n"
11896
"a working tree, e.g. status, diff and commit. For example, ``brz diff``\n"
11897
"will apply read converters to files in the working tree, then compare\n"
11898
"the results to the content last committed."
11901
#: en/help_topics/content-filters.txt:60
11903
"Write converters are only applied by commands that **create files in a\n"
11904
"working tree**, e.g. branch, checkout, update. If you wish to see the\n"
11905
"canonical format of a file or tree, use ``brz cat`` or ``brz export``\n"
11909
#: en/help_topics/content-filters.txt:65
11911
"Note: ``brz commit`` does not implicitly apply write converters after\n"
11912
"comitting files. If this makes sense for a given plugin providing\n"
11913
"a content filter, the plugin can usually achieve this effect by using a\n"
11914
"``start_commit`` or ``post_commit`` hook say. See :doc:`hooks-help`\n"
11915
"for more information on hooks."
11918
#: en/help_topics/content-filters.txt:71
11921
"Refreshing your working tree\n"
11922
"----------------------------"
11925
#: en/help_topics/content-filters.txt:75
11927
"For performance reasons, Bazaar caches the timestamps of files in\n"
11928
"a working tree, and assumes files are unchanged if their timestamps\n"
11929
"match the cached values. As a consequence, there are times when\n"
11930
"you may need to explicitly ask for content filtering to be reapplied\n"
11931
"in one or both directions, e.g. after installing or reconfiguring\n"
11932
"plugins providing it."
11935
#: en/help_topics/content-filters.txt:82
11936
msgid "Here are some general guidelines for doing this:"
11939
#: en/help_topics/content-filters.txt:84
11941
" * To reapply read converters, ``touch`` files, i.e. update their\n"
11942
" timestamp. Operations like ``brz status`` should then reapply the\n"
11943
" relevant read converters and compare the end result with the\n"
11944
" canonical format."
11947
#: en/help_topics/content-filters.txt:89
11949
" * To reapply write converters, ensure there are no local changes,\n"
11950
" delete the relevant files and run ``brz revert`` on those files."
11953
#: en/help_topics/content-filters.txt:92
11955
"Note: In the future, it is likely that additional options will be added\n"
11956
"to commands to make this refreshing process faster and safer.\n"
11959
#: en/help_topics/current-formats.txt:1
11960
msgid "Current Storage Formats"
11963
#: en/help_topics/current-formats.txt:3
11966
" (native) (default) Format for the bzr 2.0 series."
11969
#: en/help_topics/current-formats.txt:6
11975
#: en/help_topics/current-formats.txt:9
11978
" Bare GIT repository (no working tree)."
11981
#: en/help_topics/current-formats.txt:12 en/help_topics/other-formats.txt:8
11984
"See :doc:`formats-help` for more about storage formats."
11987
#: en/help_topics/debug-flags.txt:1
11993
#: en/help_topics/debug-flags.txt:4
11995
"These flags can be passed on the brz command line or (without the ``-D``\n"
11996
"prefix) put in the ``debug_flags`` variable in ``breezy.conf``."
11999
#: en/help_topics/debug-flags.txt:7
12001
"-Dauth Trace authentication sections used.\n"
12002
"-Dbytes Print out how many bytes were transferred\n"
12003
"-Ddirstate Trace dirstate activity (verbose!)\n"
12004
"-Derror Instead of normal error handling, always print a "
12007
"-Devil Capture call sites that do expensive or badly-scaling\n"
12009
"-Dfetch Trace history copying between repositories.\n"
12010
"-Dfilters Emit information for debugging content filtering.\n"
12011
"-Dforceinvdeltas Force use of inventory deltas during generic streaming "
12013
"-Dgraph Trace graph traversal.\n"
12014
"-Dhashcache Log every time a working file is read to determine its "
12016
"-Dhooks Trace hook execution.\n"
12017
"-Dhpss Trace smart protocol requests and responses.\n"
12018
"-Dhpssdetail More hpss details.\n"
12019
"-Dhpssvfs Traceback on vfs access to Remote objects.\n"
12020
"-Dhttp Trace http connections, requests and responses.\n"
12021
"-Dindex Trace major index operations.\n"
12022
"-Dknit Trace knit operations.\n"
12023
"-Dlock Trace when lockdir locks are taken or released.\n"
12024
"-Dnoretry If a connection is reset, fail immediately rather than\n"
12025
" retrying the request.\n"
12026
"-Dprogress Trace progress bar operations.\n"
12027
"-Dmem_dump Dump memory to a file upon an out of memory error.\n"
12028
"-Dmerge Emit information for debugging merges.\n"
12029
"-Dno_apport Don't use apport to report crashes.\n"
12030
"-Dno_activity \t Don't show transport activity indicator in progress bar.\n"
12031
"-Dpack Emit information about pack operations.\n"
12032
"-Drelock Emit a message every time a branch or repository object "
12034
" unlocked then relocked the same way.\n"
12035
"-Dsftp Trace SFTP internals.\n"
12036
"-Dstatic_tuple Error when a tuple is used where a StaticTuple is "
12038
"-Dstream Trace fetch streams.\n"
12039
"-Dstrict_locks Trace when OS locks are potentially used in a non-"
12042
"-Dunlock Some errors during unlock are treated as warnings.\n"
12043
"-DIDS_never Never use InterDifferingSerializer when fetching.\n"
12044
"-DIDS_always Always use InterDifferingSerializer to fetch if "
12046
" for the format, even for non-local fetches.\n"
12049
#: en/help_topics/diverged-branches.txt:1
12051
"Diverged Branches\n"
12052
"================="
12055
#: en/help_topics/diverged-branches.txt:4
12057
"When Bazaar tries to push one branch onto another, it requires that the\n"
12058
"destination branch must be ready to receive the source branch. If this "
12060
"the case, then we say that the branches have ``diverged``. Branches are\n"
12061
"considered diverged if the destination branch's most recent commit is one "
12063
"has not been merged (directly or indirectly) by the source branch. To "
12065
"from diverged branches, one must merge the missing revisions into the "
12070
#: en/help_topics/diverged-branches.txt:12
12072
"This situation commonly arises when using a centralized workflow with local\n"
12073
"commits. If someone else has committed new work to the mainline since your\n"
12074
"last pull and you have local commits that have not yet been pushed to the\n"
12075
"mainline, then your local branch and the mainline have diverged."
12078
#: en/help_topics/diverged-branches.txt:17
12080
"Discovering What Has Diverged\n"
12081
"-----------------------------"
12084
#: en/help_topics/diverged-branches.txt:20
12086
"The ``brz missing`` command is used to find out what revisions are in "
12088
"branch that are not present in the current branch, and vice-versa. It shows "
12090
"summary of which extra revisions exist in each branch. If you want to see "
12092
"precise effects of those revisions, you can use ``brz diff --"
12093
"old=other_branch``\n"
12094
"to show the differences between other_branch and your current branch."
12097
#: en/help_topics/diverged-branches.txt:26
12103
#: en/help_topics/diverged-branches.txt:29
12105
"The solution is to merge the revisions from the mainline into your local\n"
12106
"branch. To do so, use ``brz merge`` to get the new revisions from the\n"
12107
"mainline. This merge may result in conflicts if the other developer's "
12109
"overlap with your changes. These conflicts should be resolved before\n"
12110
"continuing. After any conflicts have been resolved, or even if there were "
12112
"conflicts, Bazaar requires that you explicitly commit these new revisions\n"
12113
"to your local branch. This requirement gives you an opportunity to test "
12115
"resulting working tree for correctness, since the merged revisions could "
12117
"made arbitrary changes. After testing, you should commit the merge using\n"
12118
"``brz commit``. This clears up the diverged branches situation. Your "
12120
"branch can now be pushed to the mainline.\n"
12123
#: en/help_topics/env-variables.txt:1
12124
msgid "Environment Variables"
12127
#: en/help_topics/env-variables.txt:3
12128
msgid "See brz help configuration for more details."
12131
#: en/help_topics/env-variables.txt:5
12133
"=================== "
12134
"===========================================================\n"
12135
"BRZPATH Path where brz is to look for shell plugin external\n"
12137
"BRZ_EMAIL E-Mail address of the user. Overrides EMAIL.\n"
12138
"EMAIL E-Mail address of the user.\n"
12139
"BRZ_EDITOR Editor for editing commit messages. Overrides EDITOR.\n"
12140
"EDITOR Editor for editing commit messages.\n"
12141
"BRZ_PLUGIN_PATH Paths where brz should look for plugins.\n"
12142
"BRZ_DISABLE_PLUGINS Plugins that brz should not load.\n"
12143
"BRZ_PLUGINS_AT Plugins to load from a directory not in "
12144
"BRZ_PLUGIN_PATH.\n"
12145
"BRZ_HOME Directory holding breezy config dir. Overrides HOME.\n"
12146
"BRZ_HOME (Win32) Directory holding breezy config dir. Overrides APPDATA "
12149
"BZR_REMOTE_PATH Full name of remote 'brz' command (for brz+ssh:// "
12151
"BRZ_SSH Path to SSH client, or one of paramiko, openssh, "
12154
"BRZ_LOG Location of .brz.log (use '/dev/null' to suppress log).\n"
12155
"BRZ_LOG (Win32) Location of .brz.log (use 'NUL' to suppress log).\n"
12156
"BRZ_COLUMNS Override implicit terminal width.\n"
12157
"BRZ_CONCURRENCY Number of processes that can be run concurrently "
12159
"BRZ_PROGRESS_BAR Override the progress display. Values are 'none' or "
12161
"BRZ_PDB Control whether to launch a debugger on error.\n"
12162
"BRZ_SIGQUIT_PDB Control whether SIGQUIT behaves normally or invokes a\n"
12163
" breakin debugger.\n"
12164
"BRZ_TEXTUI_INPUT Force console input mode for prompts to line-based "
12166
" of char-based).\n"
12167
"=================== "
12168
"===========================================================\n"
12171
#: en/help_topics/eol.txt:1
12173
"End of Line Conversion\n"
12174
"======================"
12177
#: en/help_topics/eol.txt:4
12179
"EOL conversion is provided as a content filter where Bazaar internally\n"
12180
"stores a canonical format but outputs a convenience format. See\n"
12181
"``brz help content-filters`` for general information about using these."
12184
#: en/help_topics/eol.txt:8
12186
"Note: Content filtering is only supported in recently added formats,\n"
12187
"e.g. 1.14. Be sure that both the repository *and* the branch are\n"
12188
"in a recent format. (Just setting the format on the repository\n"
12189
"is not enough.) If content filtering does not appear to be working, use\n"
12190
"'brz info -v' to confirm that the branch is using \"Working tree format 5\"\n"
12194
#: en/help_topics/eol.txt:15
12196
"EOL conversion needs to be enabled for selected file patterns using\n"
12197
"rules. See ``brz help rules`` for general information on defining rules.\n"
12198
"Currently, rules are only supported in $brz_HOME/.bazaar/rules (or\n"
12199
"%brz_HOME%/bazaar/2.0/rules on Windows). Branch specific rules will be\n"
12200
"supported in a future verison of Bazaar."
12203
#: en/help_topics/eol.txt:21
12205
"To configure which files to filter, set ``eol`` to one of the values below.\n"
12206
"(If a value is not set, ``exact`` is the default.)"
12209
#: en/help_topics/eol.txt:24
12211
" ========== ===================================== ======================\n"
12212
" Value Checkout end-of-lines as Commit end-of-lines as\n"
12213
" ========== ===================================== ======================\n"
12214
" ``native`` ``crlf`` on Windows, ``lf`` otherwise ``lf``\n"
12215
" ---------- ------------------------------------- ----------------------\n"
12216
" ``lf`` ``lf`` ``lf``\n"
12217
" ---------- ------------------------------------- ----------------------\n"
12218
" ``crlf`` ``crlf`` ``lf``\n"
12219
" ---------- ------------------------------------- ----------------------\n"
12220
" ``exact`` No conversion Exactly as in file\n"
12221
" ========== ===================================== ======================"
12224
#: en/help_topics/eol.txt:36
12226
"Note: For safety reasons, no conversion is applied to any file where a null\n"
12227
"byte is detected in the file."
12230
#: en/help_topics/eol.txt:39
12232
"For users working on a cross-platform project, here is a suggested rule\n"
12233
"to use as a starting point::"
12236
#: en/help_topics/eol.txt:42 en/help_topics/eol.txt:52
12237
#: en/help_topics/eol.txt:67 en/help_topics/eol.txt:82
12243
#: en/help_topics/eol.txt:45
12245
"If you have binary files that do not contain a null byte though, be\n"
12246
"sure to add ``eol = exact`` rules for those as well. You can do this\n"
12247
"by giving more explicit patterns earlier in the rules file. For example::"
12250
#: en/help_topics/eol.txt:49
12256
#: en/help_topics/eol.txt:55
12258
"If your working tree is on a network drive shared by users on different\n"
12259
"operating systems, you typically want to force certain conventions for\n"
12260
"certain files. In that way, if a file is created with the wrong line\n"
12261
"endings or line endings get mixed during editing, it gets committed\n"
12262
"correctly and gets checked out correctly. For example::"
12265
#: en/help_topics/eol.txt:61
12271
#: en/help_topics/eol.txt:64
12277
#: en/help_topics/eol.txt:70
12279
"If you take the care to create files with their required endings, you can\n"
12280
"achieve *almost* the same thing by using ``eol = exact``. It is slightly\n"
12281
"safer to use ``lf`` and ``crlf`` though because edits accidentally\n"
12282
"introducing mixed line endings will be corrected during commit for files\n"
12283
"with those settings."
12286
#: en/help_topics/eol.txt:76
12288
"If you have sample test data that deliberately has text files with mixed\n"
12289
"newline conventions, you can ask for those to be left alone like this::"
12292
#: en/help_topics/eol.txt:79
12294
" [name test_data/]\n"
12298
#: en/help_topics/eol.txt:85
12300
"Note that ``exact`` does not imply the file is binary but it does mean\n"
12301
"that no conversion of end-of-lines will be done. (Bazaar currently relies\n"
12302
"of content analysis to detect binary files for commands like ``diff``.\n"
12303
"In the future, a ``binary = true`` rule may be added but it is not\n"
12307
#: en/help_topics/eol.txt:91
12309
"If you have an existing repository with text files already stored using\n"
12310
"Windows newline conventions (``crlf``), then you may want to keep using "
12312
"convention in the repository. Forcing certain files to this convention\n"
12313
"may also help users who do not have rules configured. To do this, set\n"
12314
"``eol`` to one of the values below."
12317
#: en/help_topics/eol.txt:97
12319
" ============================ ======================== "
12320
"======================\n"
12321
" Value Checkout end-of-lines as Commit end-of-lines "
12323
" ============================ ======================== "
12324
"======================\n"
12325
" ``native-with-crlf-in-repo`` ``crlf`` on Windows, ``crlf``\n"
12326
" ``lf`` otherwise\n"
12327
" ---------------------------- ------------------------ "
12328
"----------------------\n"
12329
" ``lf-with-crlf-in-repo`` ``lf`` ``crlf``\n"
12330
" ---------------------------- ------------------------ "
12331
"----------------------\n"
12332
" ``crlf-with-crlf-in-repo`` ``crlf`` ``crlf``\n"
12333
" ============================ ======================== ======================"
12336
#: en/help_topics/eol.txt:108
12338
"For users working on an existing project that uses Windows newline\n"
12339
"conventions in their Bazaar repository, this rule is suggested as a\n"
12343
#: en/help_topics/eol.txt:112
12346
" eol = native-with-crlf-in-repo"
12349
#: en/help_topics/eol.txt:115
12351
"For new projects, it is recommended that end-of-lines be stored as ``lf``\n"
12352
"and that users stick to the basic settings, i.e. ``native``, ``lf``,\n"
12353
"``crlf`` and ``exact``."
12356
#: en/help_topics/eol.txt:119
12358
"Note: Bazaar's EOL conversion will convert the content of files but\n"
12359
"never reject files because a given line ending or mixed line endings\n"
12360
"are found. A precommit hook should be used if you wish to validate\n"
12361
"(and not just convert) content before committing.\n"
12364
#: en/help_topics/hooks.txt:1
12371
#: en/help_topics/hooks.txt:5 en/help_topics/rules.txt:4
12377
#: en/help_topics/hooks.txt:8
12378
msgid "A hook of type *xxx* of class *yyy* needs to be registered using::"
12381
#: en/help_topics/hooks.txt:10
12382
msgid " yyy.hooks.install_named_hook(\"xxx\", ...)"
12385
#: en/help_topics/hooks.txt:12
12387
"See :doc:`Using hooks<../user-guide/hooks>` in the User Guide for examples."
12390
#: en/help_topics/hooks.txt:14
12392
"The class that contains each hook is given before the hooks it supplies. "
12394
"instance, BranchHooks as the class is the hooks class for\n"
12395
"`breezy.branch.Branch.hooks`."
12398
#: en/help_topics/hooks.txt:18
12400
"Each description also indicates whether the hook runs on the client (the\n"
12401
"machine where bzr was invoked) or the server (the machine addressed by\n"
12402
"the branch URL). These may be, but are not necessarily, the same machine."
12405
#: en/help_topics/hooks.txt:22
12407
"Plugins (including hooks) are run on the server if all of these is true:"
12410
#: en/help_topics/hooks.txt:24
12412
" * The connection is via a smart server (accessed with a URL starting with\n"
12413
" \"bzr://\", \"bzr+ssh://\" or \"bzr+http://\", or accessed via a "
12415
" URL when a smart server is available via HTTP)."
12418
#: en/help_topics/hooks.txt:28
12420
" * The hook is either server specific or part of general infrastructure "
12422
" than client specific code (such as commit)."
12425
#: en/help_topics/hooks.txt:31
12432
#: en/help_topics/hooks.txt:35
12434
"automatic_tag_name\n"
12435
"~~~~~~~~~~~~~~~~~~"
12438
#: en/help_topics/hooks.txt:38 en/help_topics/hooks.txt:56
12439
#: en/help_topics/hooks.txt:102 en/help_topics/hooks.txt:315
12440
msgid "Introduced in: 2.2"
12443
#: en/help_topics/hooks.txt:40
12445
"Called to determine an automatic tag name for a revision.\n"
12446
"automatic_tag_name is called with (branch, revision_id) and should\n"
12447
"return a tag name or None if no tag name could be determined. The\n"
12448
"first non-None tag name returned will be used."
12451
#: en/help_topics/hooks.txt:45
12457
#: en/help_topics/hooks.txt:48 en/help_topics/hooks.txt:346
12458
#: en/help_topics/hooks.txt:360
12459
msgid "Introduced in: 1.8"
12462
#: en/help_topics/hooks.txt:50
12464
"Called with the Branch object that has been opened after a branch is\n"
12468
#: en/help_topics/hooks.txt:53
12470
"post_branch_init\n"
12474
#: en/help_topics/hooks.txt:58
12476
"Called after new branch initialization completes. post_branch_init is\n"
12477
"called with a breezy.branch.BranchInitHookParams. Note that init,\n"
12478
"branch and checkout (both heavyweight and lightweight) will all\n"
12479
"trigger this hook."
12482
#: en/help_topics/hooks.txt:63
12484
"post_change_branch_tip\n"
12485
"~~~~~~~~~~~~~~~~~~~~~~"
12488
#: en/help_topics/hooks.txt:66 en/help_topics/hooks.txt:474
12489
msgid "Introduced in: 1.4"
12492
#: en/help_topics/hooks.txt:68
12494
"Called in bzr client and server after a change to the tip of a branch\n"
12495
"is made. post_change_branch_tip is called with a\n"
12496
"breezy.branch.ChangeBranchTipParams. Note that push, pull, commit,\n"
12497
"uncommit will all trigger this hook."
12500
#: en/help_topics/hooks.txt:73 en/help_topics/hooks.txt:445
12506
#: en/help_topics/hooks.txt:76 en/help_topics/hooks.txt:86
12507
#: en/help_topics/hooks.txt:94 en/help_topics/hooks.txt:110
12508
msgid "Introduced in: 0.15"
12511
#: en/help_topics/hooks.txt:78
12513
"Called in the bzr client after a commit has completed. post_commit is\n"
12514
"called with (local, master, old_revno, old_revid, new_revno,\n"
12515
"new_revid). old_revid is NULL_REVISION for the first commit to a\n"
12519
#: en/help_topics/hooks.txt:83
12525
#: en/help_topics/hooks.txt:88
12527
"Called after a pull operation completes. post_pull is called with a\n"
12528
"breezy.branch.PullResult object and only runs in the bzr client."
12531
#: en/help_topics/hooks.txt:91
12537
#: en/help_topics/hooks.txt:96
12539
"Called after a push operation completes. post_push is called with a\n"
12540
"breezy.branch.BranchPushResult object and only runs in the bzr client."
12543
#: en/help_topics/hooks.txt:99
12549
#: en/help_topics/hooks.txt:104
12551
"Called after a checkout switches branch. post_switch is called with a\n"
12552
"breezy.branch.SwitchHookParams."
12555
#: en/help_topics/hooks.txt:107
12561
#: en/help_topics/hooks.txt:112
12563
"Called in the bzr client after an uncommit completes. post_uncommit is\n"
12564
"called with (local, master, old_revno, old_revid, new_revno,\n"
12565
"new_revid) where local is the local branch or None, master is the\n"
12566
"target branch, and an empty branch receives new_revno of 0, new_revid\n"
12570
#: en/help_topics/hooks.txt:118
12572
"pre_change_branch_tip\n"
12573
"~~~~~~~~~~~~~~~~~~~~~"
12576
#: en/help_topics/hooks.txt:121
12577
msgid "Introduced in: 1.6"
12580
#: en/help_topics/hooks.txt:123
12582
"Called in bzr client and server before a change to the tip of a branch\n"
12583
"is made. pre_change_branch_tip is called with a\n"
12584
"breezy.branch.ChangeBranchTipParams. Note that push, pull, commit,\n"
12585
"uncommit will all trigger this hook."
12588
#: en/help_topics/hooks.txt:128
12594
#: en/help_topics/hooks.txt:131
12595
msgid "Introduced in: 0.91"
12598
#: en/help_topics/hooks.txt:133
12600
"Called after a commit is calculated but before it is completed.\n"
12601
"pre_commit is called with (local, master, old_revno, old_revid,\n"
12602
"future_revno, future_revid, tree_delta, future_tree). old_revid is\n"
12603
"NULL_REVISION for the first commit to a branch, tree_delta is a\n"
12604
"TreeDelta object describing changes from the basis revision. hooks\n"
12605
"MUST NOT modify this delta. future_tree is an in-memory tree obtained\n"
12606
"from CommitBuilder.revision_tree() and hooks MUST NOT modify this\n"
12610
#: en/help_topics/hooks.txt:142
12612
"transform_fallback_location\n"
12613
"~~~~~~~~~~~~~~~~~~~~~~~~~~~"
12616
#: en/help_topics/hooks.txt:145
12617
msgid "Introduced in: 1.9"
12620
#: en/help_topics/hooks.txt:147
12622
"Called when a stacked branch is activating its fallback locations.\n"
12623
"transform_fallback_location is called with (branch, url), and should\n"
12624
"return a new url. Returning the same url allows it to be used as-is,\n"
12625
"returning a different one can be used to cause the branch to stack on\n"
12626
"a closer copy of that fallback_location. Note that the branch cannot\n"
12627
"have history accessing methods called on it during this hook because\n"
12628
"the fallback locations have not been activated. When there are\n"
12629
"multiple hooks installed for transform_fallback_location, all are\n"
12630
"called with the url returned from the previous hook.The order is\n"
12631
"however undefined."
12634
#: en/help_topics/hooks.txt:158
12636
"SmartClientHooks\n"
12640
#: en/help_topics/hooks.txt:161
12646
#: en/help_topics/hooks.txt:164
12647
msgid "Introduced in: unknown"
12650
#: en/help_topics/hooks.txt:166
12652
"Called when the smart client is submitting a request to the smart\n"
12653
"server. Called with a breezy.bzr.smart.client.CallHookParams object.\n"
12654
"Streaming request bodies, and responses, are not accessible."
12657
#: en/help_topics/hooks.txt:170
12659
"SmartServerHooks\n"
12663
#: en/help_topics/hooks.txt:173
12665
"server_exception\n"
12669
#: en/help_topics/hooks.txt:176 en/help_topics/hooks.txt:274
12670
#: en/help_topics/hooks.txt:282 en/help_topics/hooks.txt:289
12671
#: en/help_topics/hooks.txt:297 en/help_topics/hooks.txt:304
12672
#: en/help_topics/hooks.txt:426
12673
msgid "Introduced in: 2.4"
12676
#: en/help_topics/hooks.txt:178
12678
"Called by the bzr server when an exception occurs. server_exception is\n"
12679
"called with the sys.exc_info() tuple return true for the hook if the\n"
12680
"exception has been handled, in which case the server will exit\n"
12684
#: en/help_topics/hooks.txt:183
12690
#: en/help_topics/hooks.txt:186 en/help_topics/hooks.txt:205
12691
msgid "Introduced in: 0.16"
12694
#: en/help_topics/hooks.txt:188
12696
"Called by the bzr server when it starts serving a directory.\n"
12697
"server_started is called with (backing urls, public url), where\n"
12698
"backing_url is a list of URLs giving the server-specific directory\n"
12699
"locations, and public_url is the public URL for the directory being\n"
12703
#: en/help_topics/hooks.txt:194
12705
"server_started_ex\n"
12706
"~~~~~~~~~~~~~~~~~"
12709
#: en/help_topics/hooks.txt:197 en/help_topics/hooks.txt:226
12710
#: en/help_topics/hooks.txt:238 en/help_topics/hooks.txt:247
12711
msgid "Introduced in: 1.17"
12714
#: en/help_topics/hooks.txt:199
12716
"Called by the bzr server when it starts serving a directory.\n"
12717
"server_started is called with (backing_urls, server_obj)."
12720
#: en/help_topics/hooks.txt:202
12726
#: en/help_topics/hooks.txt:207
12728
"Called by the bzr server when it stops serving a directory.\n"
12729
"server_stopped is called with the same parameters as the\n"
12730
"server_started hook: (backing_urls, public_url)."
12733
#: en/help_topics/hooks.txt:211
12739
#: en/help_topics/hooks.txt:214
12745
#: en/help_topics/hooks.txt:217
12746
msgid "Introduced in: 1.13"
12749
#: en/help_topics/hooks.txt:219
12751
"Called after creating a command object to allow modifications such as\n"
12752
"adding or removing options, docs etc. Called with the new\n"
12753
"breezy.commands.Command object."
12756
#: en/help_topics/hooks.txt:223
12762
#: en/help_topics/hooks.txt:228
12764
"Called when creating a single command. Called with (cmd_or_None,\n"
12765
"command_name). get_command should either return the cmd_or_None\n"
12766
"parameter, or a replacement Command object that should be used for the\n"
12767
"command. Note that the Command.hooks hooks are core infrastructure.\n"
12768
"Many users will prefer to use breezy.commands.register_command or\n"
12769
"plugin_cmds.register_lazy."
12772
#: en/help_topics/hooks.txt:235
12774
"get_missing_command\n"
12775
"~~~~~~~~~~~~~~~~~~~"
12778
#: en/help_topics/hooks.txt:240
12780
"Called when creating a single command if no command could be found.\n"
12781
"Called with (command_name). get_missing_command should either return\n"
12782
"None, or a Command object to be used for the command."
12785
#: en/help_topics/hooks.txt:244
12791
#: en/help_topics/hooks.txt:249
12793
"Called when enumerating commands. Called with a set of cmd_name\n"
12794
"strings for all the commands found so far. This set is safe to mutate\n"
12795
"- e.g. to remove a command. list_commands should return the updated\n"
12796
"set of command names."
12799
#: en/help_topics/hooks.txt:254
12805
#: en/help_topics/hooks.txt:257 en/help_topics/hooks.txt:264
12806
msgid "Introduced in: 2.6"
12809
#: en/help_topics/hooks.txt:259
12810
msgid "Called after executing a command. Called with the command object."
12813
#: en/help_topics/hooks.txt:261
12819
#: en/help_topics/hooks.txt:266
12820
msgid "Called prior to executing a command. Called with the command object."
12823
#: en/help_topics/hooks.txt:268
12829
#: en/help_topics/hooks.txt:271
12835
#: en/help_topics/hooks.txt:276
12837
"Invoked when a config option is read. The signature is (stack, name,\n"
12841
#: en/help_topics/hooks.txt:279
12847
#: en/help_topics/hooks.txt:284
12848
msgid "Invoked when a config store is loaded. The signature is (store)."
12851
#: en/help_topics/hooks.txt:286
12857
#: en/help_topics/hooks.txt:291
12859
"Invoked when a config option is removed. The signature is (stack,\n"
12863
#: en/help_topics/hooks.txt:294
12869
#: en/help_topics/hooks.txt:299
12870
msgid "Invoked when a config store is saved. The signature is (store)."
12873
#: en/help_topics/hooks.txt:301
12879
#: en/help_topics/hooks.txt:306
12881
"Invoked when a config option is set. The signature is (stack, name,\n"
12885
#: en/help_topics/hooks.txt:309
12887
"ControlDirHooks\n"
12891
#: en/help_topics/hooks.txt:312
12897
#: en/help_topics/hooks.txt:317
12899
"Invoked after a repository has been initialized. post_repo_init is\n"
12900
"called with a breezy.controldir.RepoInitHookParams."
12903
#: en/help_topics/hooks.txt:320
12909
#: en/help_topics/hooks.txt:323
12910
msgid "Introduced in: 1.14"
12913
#: en/help_topics/hooks.txt:325
12915
"Invoked before attempting to open a ControlDir with the transport that\n"
12916
"the open will use."
12919
#: en/help_topics/hooks.txt:328
12925
#: en/help_topics/hooks.txt:331
12931
#: en/help_topics/hooks.txt:334 en/help_topics/hooks.txt:353
12932
#: en/help_topics/hooks.txt:524
12933
msgid "Introduced in: 1.15"
12936
#: en/help_topics/hooks.txt:336
12938
"Invoked when displaying the statistics for a repository. repository is\n"
12939
"called with a statistics dictionary as returned by the repository and\n"
12940
"a file-like object to write to."
12943
#: en/help_topics/hooks.txt:340
12949
#: en/help_topics/hooks.txt:343
12955
#: en/help_topics/hooks.txt:348
12956
msgid "Called with a breezy.lock.LockResult when a physical lock is acquired."
12959
#: en/help_topics/hooks.txt:350
12965
#: en/help_topics/hooks.txt:355
12966
msgid "Called with a breezy.lock.LockResult when a physical lock is broken."
12969
#: en/help_topics/hooks.txt:357
12975
#: en/help_topics/hooks.txt:362
12976
msgid "Called with a breezy.lock.LockResult when a physical lock is released."
12979
#: en/help_topics/hooks.txt:364
12985
#: en/help_topics/hooks.txt:367
12987
"merge_file_content\n"
12988
"~~~~~~~~~~~~~~~~~~"
12991
#: en/help_topics/hooks.txt:370
12992
msgid "Introduced in: 2.1"
12995
#: en/help_topics/hooks.txt:372
12997
"Called with a breezy.merge.Merger object to create a per file merge\n"
12998
"object when starting a merge. Should return either None or a subclass\n"
12999
"of ``breezy.merge.AbstractPerFileMerger``. Such objects will then be\n"
13000
"called per file that needs to be merged (including when one side has\n"
13001
"deleted the file and the other has changed it). See the\n"
13002
"AbstractPerFileMerger API docs for details on how it is used by merge."
13005
#: en/help_topics/hooks.txt:379
13011
#: en/help_topics/hooks.txt:382 en/help_topics/hooks.txt:390
13012
#: en/help_topics/hooks.txt:440 en/help_topics/hooks.txt:458
13013
#: en/help_topics/hooks.txt:466 en/help_topics/hooks.txt:512
13014
msgid "Introduced in: 2.5"
13017
#: en/help_topics/hooks.txt:384
13019
"Called after a merge. Receives a Merger object as the single argument.\n"
13020
"The return value is ignored."
13023
#: en/help_topics/hooks.txt:387
13029
#: en/help_topics/hooks.txt:392
13031
"Called before a merge. Receives a Merger object as the single\n"
13035
#: en/help_topics/hooks.txt:395
13037
"MergeDirectiveHooks\n"
13038
"-------------------"
13041
#: en/help_topics/hooks.txt:398
13043
"merge_request_body\n"
13044
"~~~~~~~~~~~~~~~~~~"
13047
#: en/help_topics/hooks.txt:401
13048
msgid "Introduced in: 1.15.0"
13051
#: en/help_topics/hooks.txt:403
13053
"Called with a MergeRequestBodyParams when a body is needed for a merge\n"
13054
"request. Callbacks must return a body. If more than one callback is\n"
13055
"registered, the output of one callback is provided to the next."
13058
#: en/help_topics/hooks.txt:407
13060
"MessageEditorHooks\n"
13061
"------------------"
13064
#: en/help_topics/hooks.txt:410
13066
"commit_message_template\n"
13067
"~~~~~~~~~~~~~~~~~~~~~~~"
13070
#: en/help_topics/hooks.txt:413
13071
msgid "Introduced in: 1.10"
13074
#: en/help_topics/hooks.txt:415
13076
"Called when a commit message is being generated.\n"
13077
"commit_message_template is called with the breezy.commit.Commit object\n"
13078
"and the message that is known so far. commit_message_template must\n"
13079
"return a new message to use (which could be the same as it was given).\n"
13080
"When there are multiple hooks registered for commit_message_template,\n"
13081
"they are chained with the result from the first passed into the\n"
13082
"second, and so on."
13085
#: en/help_topics/hooks.txt:423
13087
"set_commit_message\n"
13088
"~~~~~~~~~~~~~~~~~~"
13091
#: en/help_topics/hooks.txt:428
13093
"Set a fixed commit message. set_commit_message is called with the\n"
13094
"breezy.commit.Commit object (so you can also change e.g. revision\n"
13095
"properties by editing commit.builder._revprops) and the message so\n"
13096
"far. set_commit_message must return the message to use or None if it\n"
13097
"should use the message editor as normal."
13100
#: en/help_topics/hooks.txt:434
13102
"MutableTreeHooks\n"
13106
#: en/help_topics/hooks.txt:437
13108
"post_build_tree\n"
13112
#: en/help_topics/hooks.txt:442
13114
"Called after a completely new tree is built. The hook is called with\n"
13115
"the tree as its only argument."
13118
#: en/help_topics/hooks.txt:448
13119
msgid "Introduced in: 2.0"
13122
#: en/help_topics/hooks.txt:450
13124
"Called after a commit is performed on a tree. The hook is called with\n"
13125
"a breezy.mutabletree.PostCommitHookParams object. The mutable tree the\n"
13126
"commit was performed on is available via the mutable_tree attribute of\n"
13130
#: en/help_topics/hooks.txt:455
13136
#: en/help_topics/hooks.txt:460
13138
"Called after a tree transform has been performed on a tree. The hook\n"
13139
"is called with the tree that is being transformed and the transform."
13142
#: en/help_topics/hooks.txt:463
13148
#: en/help_topics/hooks.txt:468
13150
"Called before a tree transform on this tree. The hook is called with\n"
13151
"the tree that is being transformed and the transform."
13154
#: en/help_topics/hooks.txt:471
13160
#: en/help_topics/hooks.txt:476
13162
"Called before a commit is performed on a tree. The start commit hook\n"
13163
"is able to change the tree before the commit takes place. start_commit\n"
13164
"is called with the breezy.mutabletree.MutableTree that the commit is\n"
13165
"being performed on."
13168
#: en/help_topics/hooks.txt:481
13174
#: en/help_topics/hooks.txt:484
13180
#: en/help_topics/hooks.txt:487 en/help_topics/hooks.txt:498
13181
msgid "Introduced in: 2.3"
13184
#: en/help_topics/hooks.txt:489
13186
"Called with argument StatusHookParams after Bazaar has displayed the\n"
13187
"status. StatusHookParams has the attributes (old_tree, new_tree,\n"
13188
"to_file, versioned, show_ids, short, verbose). The last four arguments\n"
13189
"correspond to the command line options specified by the user for the\n"
13190
"status command. to_file is the output stream for writing."
13193
#: en/help_topics/hooks.txt:495
13199
#: en/help_topics/hooks.txt:500
13201
"Called with argument StatusHookParams before Bazaar displays the\n"
13202
"status. StatusHookParams has the attributes (old_tree, new_tree,\n"
13203
"to_file, versioned, show_ids, short, verbose). The last four arguments\n"
13204
"correspond to the command line options specified by the user for the\n"
13205
"status command. to_file is the output stream for writing."
13208
#: en/help_topics/hooks.txt:506
13214
#: en/help_topics/hooks.txt:509
13220
#: en/help_topics/hooks.txt:514
13222
"Called after a new connection is established or a reconnect occurs.\n"
13223
"The sole argument passed is either the connected transport or smart\n"
13227
#: en/help_topics/hooks.txt:518
13229
"RioVersionInfoBuilderHooks\n"
13230
"--------------------------"
13233
#: en/help_topics/hooks.txt:521
13239
#: en/help_topics/hooks.txt:526
13241
"Invoked when adding information about a revision to the RIO stanza\n"
13242
"that is printed. revision is called with a revision object and a RIO\n"
13246
#: en/help_topics/location-alias.txt:1
13248
"Location aliases\n"
13252
#: en/help_topics/location-alias.txt:4
13254
"Bazaar defines several aliases for locations associated with a branch. "
13256
"can be used with most commands that expect a location, such as `brz push`."
13259
#: en/help_topics/location-alias.txt:7
13260
msgid "The aliases are::"
13263
#: en/help_topics/location-alias.txt:9
13265
" :bound The branch this branch is bound to, for bound branches.\n"
13266
" :parent The parent of this branch.\n"
13267
" :public The public location of this branch.\n"
13268
" :push The saved location used for `brz push` with no arguments.\n"
13269
" :submit The submit branch for this branch.\n"
13270
" :this This branch."
13273
#: en/help_topics/location-alias.txt:16
13274
msgid "For example, to push to the parent location::"
13277
#: en/help_topics/location-alias.txt:18
13278
msgid " brz push :parent\n"
13281
#: en/help_topics/log-formats.txt:1
13287
#: en/help_topics/log-formats.txt:4
13289
"A log format controls how information about each revision is displayed.\n"
13290
"The standard log formats are compared below::"
13293
#: en/help_topics/log-formats.txt:7
13295
" Feature long short line\n"
13296
" ---------------------- ------------- ------------ -------------------\n"
13297
" design goal detailed view concise view 1 revision per line\n"
13298
" committer name+email name only name only\n"
13299
" author name+email - -\n"
13300
" date-time format full date only date only\n"
13301
" commit message full full top line\n"
13302
" tags yes yes yes\n"
13303
" merges indicator - yes -\n"
13304
" status/delta optional optional -\n"
13305
" diff/patch optional optional -\n"
13306
" revision-id optional optional -\n"
13307
" branch nick yes - -\n"
13308
" foreign vcs properties yes yes -\n"
13309
" preferred levels all 1 1\n"
13310
" digital signature optional - -"
13313
#: en/help_topics/log-formats.txt:24
13315
"The default format is ``long``. To change this, define the ``log_format``\n"
13316
"setting in the ``[DEFAULT]`` section of ``breezy.conf`` like this (say)::"
13319
#: en/help_topics/log-formats.txt:27
13322
" log_format = short"
13325
#: en/help_topics/log-formats.txt:30
13327
"Alternatively, to change the log format used for a given query, use the\n"
13328
"--long, --short or --line options."
13331
#: en/help_topics/log-formats.txt:33
13333
"If one of the standard log formats does not meet your needs, additional\n"
13334
"formats can be provided by plugins.\n"
13337
#: en/help_topics/missing-extensions.txt:1
13339
"Missing Extensions\n"
13340
"=================="
13343
#: en/help_topics/missing-extensions.txt:4
13345
"Breezy gives a warning if it failed to load some compiled extensions. (See\n"
13346
"http://bazaarvcs.wordpress.com/2009/09/17/extension-warnings/ for "
13350
#: en/help_topics/missing-extensions.txt:7
13352
"This may indicate either that there's been a problem installing or "
13354
"Breezy, or it may just be a case where you don't want to use the compiled\n"
13358
#: en/help_topics/missing-extensions.txt:11
13360
"1. If you installed Breezy from an official binary package or a "
13362
"and you're seeing this warning, please report a bug."
13365
#: en/help_topics/missing-extensions.txt:14
13367
"2. If you're running Breezy from a source tree or tarball, please run 'make' "
13369
"that directory to compile the extensions. You should do this every time you\n"
13370
"update the tree. To do this you will need some build dependencies installed\n"
13371
"including make, a C compiler, and the Python header files."
13374
#: en/help_topics/missing-extensions.txt:19
13376
"3. If you can't or don't want to build the extensions, add this line to\n"
13377
"breezy.conf (whose location is shown by 'brz --version')::"
13380
#: en/help_topics/missing-extensions.txt:22
13381
msgid " suppress_warnings=missing_extensions"
13384
#: en/help_topics/missing-extensions.txt:24
13385
msgid "Breezy will work normally but some operations may be slower."
13388
#: en/help_topics/missing-extensions.txt:26
13389
msgid "The specific modules that failed, and why, are listed in .brz.log.\n"
13392
#: en/help_topics/other-formats.txt:1
13393
msgid "Other Storage Formats"
13396
#: en/help_topics/other-formats.txt:3
13397
msgid "No experimental formats are available."
13400
#: en/help_topics/other-formats.txt:5
13403
"No deprecated formats are available."
13406
#: en/help_topics/patterns.txt:1
13412
#: en/help_topics/patterns.txt:4
13414
"Bazaar uses patterns to match files at various times. For example,\n"
13415
"the ``add`` command skips over files that match ignore patterns\n"
13416
"and preferences can be associated with files using rule patterns.\n"
13417
"The pattern syntax is described below."
13420
#: en/help_topics/patterns.txt:9
13422
"Trailing slashes on patterns are ignored. If the pattern contains a\n"
13423
"slash or is a regular expression, it is compared to the whole path\n"
13424
"from the branch root. Otherwise, it is compared to only the last\n"
13425
"component of the path. To match a file only in the root directory,\n"
13426
"prepend ``./``. Patterns specifying absolute paths are not allowed."
13429
#: en/help_topics/patterns.txt:15
13430
msgid "Patterns may include globbing wildcards such as::"
13433
#: en/help_topics/patterns.txt:17
13435
" ? - Matches any single character except '/'\n"
13436
" * - Matches 0 or more characters except '/'\n"
13437
" /**/ - Matches 0 or more directories in a path\n"
13438
" [a-z] - Matches a single character from within a group of characters"
13441
#: en/help_topics/patterns.txt:22
13443
"Patterns may also be `Python regular expressions`_. Regular expression\n"
13444
"patterns are identified by a ``RE:`` prefix followed by the regular\n"
13445
"expression. Regular expression patterns may not include named or\n"
13449
#: en/help_topics/patterns.txt:27
13451
"Case insensitive ignore patterns can be specified with regular expressions\n"
13452
"by using the ``i`` (for ignore case) flag in the pattern."
13455
#: en/help_topics/patterns.txt:30
13456
msgid "For example, a case insensitive match for ``foo`` may be specified as::"
13459
#: en/help_topics/patterns.txt:32
13460
msgid " RE:(?i)foo"
13463
#: en/help_topics/patterns.txt:34
13465
"Ignore patterns may be prefixed with ``!``, which means that a filename\n"
13466
"matched by that pattern will not be ignored."
13469
#: en/help_topics/patterns.txt:37
13470
msgid ".. _Python regular expressions: http://docs.python.org/library/re.html"
13473
#: en/help_topics/revisionspec.txt:1
13474
msgid "Revision Identifiers"
13477
#: en/help_topics/revisionspec.txt:3
13479
"A revision identifier refers to a specific state of a branch's history. It\n"
13480
"can be expressed in several ways. It can begin with a keyword to\n"
13481
"unambiguously specify a given lookup type; some examples are 'last:1',\n"
13482
"'before:yesterday' and 'submit:'."
13485
#: en/help_topics/revisionspec.txt:8
13487
"Alternately, it can be given without a keyword, in which case it will be\n"
13488
"checked as a revision number, a tag, a revision id, a date specification, or "
13490
"branch specification, in that order. For example, 'date:today' could be\n"
13491
"written as simply 'today', though if you have a tag called 'today' that "
13496
#: en/help_topics/revisionspec.txt:14
13498
"If 'REV1' and 'REV2' are revision identifiers, then 'REV1..REV2' denotes a\n"
13499
"revision range. Examples: '3647..3649', 'date:yesterday..-1' and\n"
13500
"'branch:/path/to/branch1/..branch:/branch2' (note that there are no quotes "
13502
"spaces around the '..')."
13505
#: en/help_topics/revisionspec.txt:19
13507
"Ranges are interpreted differently by different commands. To the \"log\" "
13509
"a range is a sequence of log messages, but to the \"diff\" command, the "
13511
"denotes a change between revisions (and not a sequence of changes). In\n"
13512
"addition, \"log\" considers a closed range whereas \"diff\" and \"merge\" "
13514
"to be open-ended, that is, they include one end but not the other. For "
13516
"\"brz log -r 3647..3649\" shows the messages of revisions 3647, 3648 and "
13518
"while \"brz diff -r 3647..3649\" includes the changes done in revisions 3648 "
13520
"3649, but not 3647."
13523
#: en/help_topics/revisionspec.txt:28
13524
msgid "The keywords used as revision selection methods are the following:"
13527
#: en/help_topics/revisionspec.txt:30
13530
"\tSelects a revision using the revision id.\n"
13532
"\tSelects a common ancestor with the submit branch.\n"
13534
"\tSelects a common ancestor with a second branch.\n"
13536
"\tSelects a revision on the basis of a datestamp.\n"
13538
"\tSelects the last revision of a specified branch.\n"
13540
"\tSelects a revision identified by a tag name.\n"
13542
"\tSelects a revision using a number.\n"
13544
"\tSelects the parent of the revision specified.\n"
13546
"\tSelect the revision that last modified the specified line.\n"
13548
"\tSelect mainline revision that merged the specified revision.\n"
13550
"\tSelects a revision using a Git revision sha1.\n"
13552
"\tSelects the nth revision from the end."
13555
#: en/help_topics/revisionspec.txt:55
13556
msgid "In addition, plugins can provide other keywords."
13559
#: en/help_topics/revisionspec.txt:57
13560
msgid "A detailed description of each keyword is given below."
13563
#: en/help_topics/revisionspec.txt:59
13567
#: en/help_topics/revisionspec.txt:61
13569
" Supply a specific revision id, that can be used to specify any\n"
13570
" revision id in the ancestry of the branch.\n"
13571
" Including merges, and pending merges.\n"
13575
#: en/help_topics/revisionspec.txt:66
13577
" revid:aaaa@bbbb-123456789 -> Select revision 'aaaa@bbbb-123456789'"
13580
#: en/help_topics/revisionspec.txt:68
13584
#: en/help_topics/revisionspec.txt:70
13586
" Diffing against this shows all the changes that were made in this "
13588
" and is a good predictor of what merge will do. The submit branch is\n"
13589
" used by the bundle and merge directive commands. If no submit branch\n"
13590
" is specified, the parent branch is used instead."
13593
#: en/help_topics/revisionspec.txt:75 en/help_topics/revisionspec.txt:87
13595
" The common ancestor is the last revision that existed in both\n"
13596
" branches. Usually this is the branch point, but it could also be\n"
13597
" a revision that was merged."
13600
#: en/help_topics/revisionspec.txt:79 en/help_topics/revisionspec.txt:95
13601
#: en/help_topics/revisionspec.txt:111 en/help_topics/revisionspec.txt:121
13602
#: en/help_topics/revisionspec.txt:155
13603
msgid " Examples::"
13606
#: en/help_topics/revisionspec.txt:81
13607
msgid " $ bzr diff -r submit:"
13610
#: en/help_topics/revisionspec.txt:83
13614
#: en/help_topics/revisionspec.txt:85
13615
msgid " Supply the path to a branch to select the common ancestor."
13618
#: en/help_topics/revisionspec.txt:91
13620
" This is frequently used with 'diff' to return all of the changes\n"
13621
" that your branch introduces, while excluding the changes that you\n"
13622
" have not merged from the remote branch."
13625
#: en/help_topics/revisionspec.txt:97
13627
" ancestor:/path/to/branch\n"
13628
" $ bzr diff -r ancestor:../../mainline/branch"
13631
#: en/help_topics/revisionspec.txt:100
13635
#: en/help_topics/revisionspec.txt:102
13637
" Supply a datestamp to select the first revision that matches the date.\n"
13638
" Date can be 'yesterday', 'today', 'tomorrow' or a YYYY-MM-DD string.\n"
13639
" Matches the first entry after a given date (either at midnight or\n"
13640
" at a specified time)."
13643
#: en/help_topics/revisionspec.txt:107
13644
msgid " One way to display all the changes since yesterday would be::"
13647
#: en/help_topics/revisionspec.txt:109
13648
msgid " brz log -r date:yesterday.."
13651
#: en/help_topics/revisionspec.txt:113
13653
" date:yesterday -> select the first revision since "
13655
" date:2006-08-14,17:10:14 -> select the first revision after\n"
13656
" August 14th, 2006 at 5:10pm."
13659
#: en/help_topics/revisionspec.txt:117
13663
#: en/help_topics/revisionspec.txt:119
13664
msgid " Supply the path to a branch to select its last revision."
13667
#: en/help_topics/revisionspec.txt:123
13668
msgid " branch:/path/to/branch"
13671
#: en/help_topics/revisionspec.txt:125
13675
#: en/help_topics/revisionspec.txt:127
13676
msgid " Tags are stored in the branch and created by the 'tag' command."
13679
#: en/help_topics/revisionspec.txt:129
13683
#: en/help_topics/revisionspec.txt:131
13685
" Use an integer to specify a revision in the history of the branch.\n"
13686
" Optionally a branch can be specified. A negative number will count\n"
13687
" from the end of the branch (-1 is the last revision, -2 the previous\n"
13688
" one). If the negative number is larger than the branch's history, the\n"
13689
" first revision is returned.\n"
13693
#: en/help_topics/revisionspec.txt:138
13695
" revno:1 -> return the first revision of this branch\n"
13696
" revno:3:/path/to/branch -> return the 3rd revision of\n"
13697
" the branch '/path/to/branch'\n"
13698
" revno:-1 -> The last revision in a branch.\n"
13699
" -2:http://other/branch -> The second to last revision in the\n"
13700
" remote branch.\n"
13701
" -1000000 -> Most likely the first revision, unless\n"
13702
" your history is very long."
13705
#: en/help_topics/revisionspec.txt:147
13709
#: en/help_topics/revisionspec.txt:149
13711
" Supply any revision spec to return the parent of that revision. This "
13713
" mostly useful when inspecting revisions that are not in the revision "
13718
#: en/help_topics/revisionspec.txt:153
13720
" It is an error to request the parent of the null revision (before:0)."
13723
#: en/help_topics/revisionspec.txt:157
13725
" before:1913 -> Return the parent of revno 1913 (revno 1912)\n"
13726
" before:revid:aaaa@bbbb-1234567890 -> return the parent of revision\n"
13727
" aaaa@bbbb-1234567890\n"
13728
" bzr diff -r before:1913..1913\n"
13729
" -> Find the changes between revision 1913 and its parent "
13731
" (What changes did revision 1913 introduce).\n"
13732
" This is equivalent to: bzr diff -c 1913"
13735
#: en/help_topics/revisionspec.txt:165
13739
#: en/help_topics/revisionspec.txt:167
13741
" Select the revision that last modified the specified line. Line is\n"
13742
" specified as path:number. Path is a relative path to the file. "
13744
" start at 1, and are relative to the current version, not the last-\n"
13745
" committed version of the file."
13748
#: en/help_topics/revisionspec.txt:172
13752
#: en/help_topics/revisionspec.txt:174
13754
" Select the revision that merged the specified revision into mainline."
13757
#: en/help_topics/revisionspec.txt:176
13761
#: en/help_topics/revisionspec.txt:178
13765
#: en/help_topics/revisionspec.txt:180
13767
" Supply a positive number to get the nth revision from the end.\n"
13768
" This is the same as supplying negative numbers to the 'revno:' spec.\n"
13772
#: en/help_topics/revisionspec.txt:184
13774
" last:1 -> return the last revision\n"
13775
" last:3 -> return the revision 2 before the end.\n"
13778
#: en/help_topics/rules.txt:1
13784
#: en/help_topics/rules.txt:7
13786
"Rules are defined in ini file format where the sections are file glob\n"
13787
"patterns and the contents of each section are the preferences for files\n"
13788
"matching that pattern(s). For example::"
13791
#: en/help_topics/rules.txt:11
13797
#: en/help_topics/rules.txt:14
13799
" [name *.html *.xml]\n"
13800
" keywords = xml_escape"
13803
#: en/help_topics/rules.txt:17
13805
"Preferences like these are useful for commands and plugins wishing to\n"
13806
"provide custom behaviour for selected files. For more information on \n"
13807
"end of line conversion see :doc:`eol-help`.\n"
13808
"Keyword support is provided by the `keywords plugin\n"
13809
"<http://doc.bazaar.canonical.com/plugins/en/keywords-plugin.html>`_."
13812
#: en/help_topics/rules.txt:23
13818
#: en/help_topics/rules.txt:26
13820
"Default rules for all branches are defined in the optional file\n"
13821
"``BRZ_HOME/rules``. "
13824
#: en/help_topics/rules.txt:29
13830
#: en/help_topics/rules.txt:32
13832
"Patterns are ordered and searching stops as soon as one matches.\n"
13833
"As a consequence, more explicit patterns should be placed towards\n"
13834
"the top of the file. Rule patterns use exactly the same conventions\n"
13835
"as ignore patterns. See :doc:`patterns-help` for details."
13838
#: en/help_topics/rules.txt:37
13842
#: en/help_topics/rules.txt:39
13844
" Patterns containing square brackets or spaces should be\n"
13845
" surrounded in quotes to ensure they are correctly parsed.\n"
13848
#: en/help_topics/topics.txt:1
13850
"authentication Information on configuring authentication\n"
13851
"basic Basic commands\n"
13852
"branches Information on what a branch is\n"
13853
"bugs Bug tracker settings\n"
13854
"checkouts Information on what a checkout is\n"
13855
"configuration Details on the configuration settings available\n"
13856
"conflict-types Types of conflicts and what to do about them\n"
13857
"content-filters Conversion of content into/from working trees\n"
13858
"criss-cross Information on criss-cross merging\n"
13859
"current-formats Current storage formats\n"
13860
"debug-flags Options to show or record debug information\n"
13861
"diverged-branches How to fix diverged branches\n"
13862
"env-variables Environment variable names and values\n"
13863
"eol Information on end-of-line handling\n"
13864
"files Information on configuration and log files\n"
13865
"formats Information on choosing a storage format\n"
13866
"git Using Bazaar with Git\n"
13867
"global-options Options that control how Breezy runs\n"
13868
"hooks Points at which custom processing can be added\n"
13869
"launchpad Using Bazaar with Launchpad.net\n"
13870
"location-alias Aliases for remembered locations\n"
13871
"log-formats Details on the logging formats available\n"
13872
"missing-extensions What to do when compiled extensions are missing\n"
13873
"other-formats Experimental and deprecated storage formats\n"
13874
"patterns Information on the pattern syntax\n"
13875
"repositories Basic information on shared repositories.\n"
13876
"revisionspec Explain how to use --revision\n"
13877
"rules Information on defining rule-based preferences\n"
13878
"standalone-trees Information on what a standalone tree is\n"
13879
"standard-options Options that can be used with any command\n"
13880
"status-flags Help on status flags\n"
13881
"sync-for-reconfigure Steps to resolve \"out-of-sync\" when reconfiguring\n"
13882
"topics Topics list\n"
13883
"url-special-chars Special character handling in URLs\n"
13884
"urlspec Supported transport protocols\n"
13885
"working-trees Information on working trees\n"
13888
#: en/help_topics/url-special-chars.txt:1
13890
"Special character handling in URLs\n"
13891
"=================================="
13894
#: en/help_topics/url-special-chars.txt:4
13895
msgid "Bazaar allows locations to be specified in multiple ways, either:"
13898
#: en/help_topics/url-special-chars.txt:6
13899
msgid " * Fully qualified URLs"
13902
#: en/help_topics/url-special-chars.txt:8
13903
msgid " * File system paths, relative or absolute"
13906
#: en/help_topics/url-special-chars.txt:10
13908
"Internally brz treats all locations as URLs. For any file system paths\n"
13909
"that are specified it will automatically determine the appropriate URL\n"
13910
"representation, and escape special characters where necessary."
13913
#: en/help_topics/url-special-chars.txt:14
13915
"There are a few characters which have special meaning in URLs and need "
13917
"handling to avoid ambiguities. Characters can be escaped with a % and a hex\n"
13918
"value in URLs. Any non-ASCII characters in a file path will automatically "
13920
"urlencoded when the path is converted to a URL."
13923
#: en/help_topics/url-special-chars.txt:19
13925
"URLs represent non-ASCII characters in an encoding defined by the server, "
13927
"usually UTF-8. The % escapes should be of the UTF-8 bytes. Bazaar tries to "
13929
"generous in what it accepts as a URL and to print them in a way that\n"
13930
"will be readable."
13933
#: en/help_topics/url-special-chars.txt:24
13935
"For example, if you have a directory named '/tmp/%2False' these are all "
13937
"ways of accessing the content (0x2F, or 47, is the ASCII code for forward "
13941
#: en/help_topics/url-special-chars.txt:27
13944
" brz log /tmp/%2False\n"
13945
" brz log %2False\n"
13946
" brz log file:///tmp/%252False\n"
13947
" brz log file://localhost/tmp/%252False\n"
13948
" brz log file:%252False"
13951
#: en/help_topics/url-special-chars.txt:34
13952
msgid "These are valid but do not refer to the same file::"
13955
#: en/help_topics/url-special-chars.txt:36
13957
" brz log file:///tmp/%2False (refers to a file called /tmp/\\/alse)\n"
13958
" brz log %252False (refers to a file called /tmp/%252False)"
13961
#: en/help_topics/url-special-chars.txt:39
13963
"Comma also has special meaning in URLs, because it denotes `segment "
13967
#: en/help_topics/url-special-chars.txt:41
13969
"_`segment parameters`: http://www.ietf.org/rfc/rfc3986.txt (section 3.3)"
13972
#: en/help_topics/url-special-chars.txt:43
13974
"Comma is also special in any file system paths that are specified. To use a "
13976
"comma in a file system path, specify a URL and URL encode the comma::"
13979
#: en/help_topics/url-special-chars.txt:46
13981
" brz log foo,branch=bla # path \"foo\" with the segment parameter \"branch"
13982
"\" set to \"bla\"\n"
13983
" brz log file:foo%2Cbranch=bla # path \"foo,branch=bla\"\n"
13984
" brz log file:foo,branch=bla # path \"foo\" with segment parameter \"branch"
13985
"\" set to \"bla\"\n"
13988
#: en/help_topics/urlspec.txt:1
13989
msgid "URL Identifiers"
13992
#: en/help_topics/urlspec.txt:3
13993
msgid "Supported URL prefixes::"
13996
#: en/help_topics/urlspec.txt:5
13998
" bzr:// Fast access using the Bazaar smart server.\n"
13999
" bzr+ssh:// Fast access using the Bazaar smart server over SSH.\n"
14000
" file:// Access using the standard filesystem (default)\n"
14001
" git:// Access using the Git smart server protocol.\n"
14002
" git+ssh:// Access using the Git smart server protocol over SSH.\n"
14003
" http:// Read-only access of branches exported on the web.\n"
14004
" https:// Read-only access of branches exported on the web using "
14006
" sftp:// Access using SFTP (most SSH servers provide SFTP)."
14009
#: en/help_topics/urlspec.txt:14
14010
msgid "Supported modifiers::"
14013
#: en/help_topics/urlspec.txt:16
14014
msgid " gio+ Access using any GIO supported protocols."
14017
#: en/help_topics/urlspec.txt:18
14018
msgid "Breezy supports all of the standard parts within the URL::"
14021
#: en/help_topics/urlspec.txt:20
14022
msgid " <protocol>://[user[:password]@]host[:port]/[path]"
14025
#: en/help_topics/urlspec.txt:22
14026
msgid "allowing URLs such as::"
14029
#: en/help_topics/urlspec.txt:24
14030
msgid " http://brzuser:BadPass@brz.example.com:8080/brz/trunk"
14033
#: en/help_topics/urlspec.txt:26
14035
"For brz+ssh:// and sftp:// URLs, Breezy also supports paths that begin\n"
14036
"with '~' as meaning that the rest of the path should be interpreted\n"
14037
"relative to the remote user's home directory. For example if the user\n"
14038
"``remote`` has a home directory of ``/home/remote`` on the server\n"
14039
"shell.example.com, then::"
14042
#: en/help_topics/urlspec.txt:32
14043
msgid " brz+ssh://remote@shell.example.com/~/myproject/trunk"
14046
#: en/help_topics/urlspec.txt:34
14047
msgid "would refer to ``/home/remote/myproject/trunk``."
14050
#: en/help_topics/urlspec.txt:36
14052
"Many commands that accept URLs also accept location aliases too.\n"
14053
"See :doc:`location-alias-help` and :doc:`url-special-chars-help`.\n"