Merge lp:~jr/bzr/i18n-topic-help into lp:bzr

Proposed by Jonathan Riddell
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: no longer in the source branch.
Merged at revision: 6135
Proposed branch: lp:~jr/bzr/i18n-topic-help
Merge into: lp:bzr
Prerequisite: lp:~jr/bzr/i18n-errors
Diff against target: 10852 lines (+6566/-818)
4 files modified
bzrlib/export_pot.py (+7/-3)
bzrlib/help_topics/__init__.py (+3/-0)
bzrlib/tests/test_i18n.py (+9/-0)
po/bzr.pot (+6547/-815)
To merge this branch: bzr merge lp:~jr/bzr/i18n-topic-help
Reviewer Review Type Date Requested Status
Jelmer Vernooij (community) Approve
Review via email: mp+73653@code.launchpad.net

This proposal supersedes a proposal from 2011-09-01.

Commit message

Turn on translations for help topics.

Description of the change

Add topic help to translations (bzr.pot will be updated before sending to PQM)

To post a comment you must log in.
Revision history for this message
Jelmer Vernooij (jelmer) wrote : Posted in a previous version of this proposal

Should this also be guarded against initializing i18n twice?

review: Needs Fixing
Revision history for this message
Jonathan Riddell (jr) wrote :

> Should this also be guarded against initializing i18n twice?

No need since https://code.launchpad.net/~jr/bzr/i18n-install-once/+merge/73508 is in trunk

Revision history for this message
Jelmer Vernooij (jelmer) :
review: Approve
Revision history for this message
Jelmer Vernooij (jelmer) wrote :

sent to pqm by email

Revision history for this message
Jonathan Riddell (jr) wrote :

sent to pqm by email

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bzrlib/export_pot.py'
--- bzrlib/export_pot.py 2011-05-28 12:17:22 +0000
+++ bzrlib/export_pot.py 2011-09-07 14:35:33 +0000
@@ -28,6 +28,7 @@
28 errors,28 errors,
29 help_topics,29 help_topics,
30 plugin,30 plugin,
31 help,
31 )32 )
32from bzrlib.trace import (33from bzrlib.trace import (
33 mutter,34 mutter,
@@ -234,7 +235,11 @@
234 outf,235 outf,
235 'dummy/help_topics/'+key+'/detail.txt',236 'dummy/help_topics/'+key+'/detail.txt',
236 1, doc)237 1, doc)
237238 elif callable(doc): # help topics from files
239 _poentry_per_paragraph(
240 outf,
241 'en/help_topics/'+key+'.txt',
242 1, doc(key))
238 summary = topic_registry.get_summary(key)243 summary = topic_registry.get_summary(key)
239 if summary is not None:244 if summary is not None:
240 _poentry(outf, 'dummy/help_topics/'+key+'/summary.txt',245 _poentry(outf, 'dummy/help_topics/'+key+'/summary.txt',
@@ -246,5 +251,4 @@
246 _standard_options(outf)251 _standard_options(outf)
247 _command_helps(outf)252 _command_helps(outf)
248 _error_messages(outf)253 _error_messages(outf)
249 # disable exporting help topics until we decide how to translate it.254 _help_topics(outf)
250 #_help_topics(outf)
251255
=== modified file 'bzrlib/help_topics/__init__.py'
--- bzrlib/help_topics/__init__.py 2011-08-24 18:42:15 +0000
+++ bzrlib/help_topics/__init__.py 2011-09-07 14:35:33 +0000
@@ -40,6 +40,7 @@
40 config,40 config,
41 osutils,41 osutils,
42 registry,42 registry,
43 i18n,
43 )44 )
4445
4546
@@ -879,6 +880,8 @@
879 result += _format_see_also(additional_see_also)880 result += _format_see_also(additional_see_also)
880 if plain:881 if plain:
881 result = help_as_plain_text(result)882 result = help_as_plain_text(result)
883 i18n.install()
884 result = i18n.gettext_per_paragraph(result)
882 return result885 return result
883886
884 def get_help_topic(self):887 def get_help_topic(self):
885888
=== modified file 'bzrlib/tests/test_i18n.py'
--- bzrlib/tests/test_i18n.py 2011-09-07 10:50:09 +0000
+++ bzrlib/tests/test_i18n.py 2011-09-07 14:35:33 +0000
@@ -125,3 +125,12 @@
125 except errors.NotBranchError,e:125 except errors.NotBranchError,e:
126 err = str(e)126 err = str(e)
127 self.assertContainsRe(err, u"zz\xe5{{Not a branch: .*}}".encode("utf-8"))127 self.assertContainsRe(err, u"zz\xe5{{Not a branch: .*}}".encode("utf-8"))
128 def test_topic_help_translation(self):
129 """does topic help get translated?"""
130 from bzrlib import help
131 i18n.install()
132 self.overrideAttr(i18n, '_translations', ZzzTranslations())
133 from StringIO import StringIO
134 out = StringIO()
135 help.help("authentication", out)
136 self.assertContainsRe(out.getvalue(), "zz\xe5{{Authentication Settings")
128137
=== modified file 'po/bzr.pot'
--- po/bzr.pot 2011-08-24 14:14:42 +0000
+++ po/bzr.pot 2011-09-07 14:35:33 +0000
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: bzr\n"9"Project-Id-Version: bzr\n"
10"Report-Msgid-Bugs-To: <bazaar@canonical.com>\n"10"Report-Msgid-Bugs-To: <bazaar@canonical.com>\n"
11"POT-Creation-Date: 2011-08-24 15:14+0100\n"11"POT-Creation-Date: 2011-09-07 15:32+0100\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -327,7 +327,7 @@
327#: bzrlib/builtins.py:979327#: bzrlib/builtins.py:979
328msgid ""328msgid ""
329"If there is no default location set, the first pull will set it (use\n"329"If there is no default location set, the first pull will set it (use\n"
330"--no-remember to avoid settting it). After that, you can omit the\n"330"--no-remember to avoid setting it). After that, you can omit the\n"
331"location to use the default. To change the default, use --remember. The\n"331"location to use the default. To change the default, use --remember. The\n"
332"value will only be saved if the remote location can be accessed."332"value will only be saved if the remote location can be accessed."
333msgstr ""333msgstr ""
@@ -357,72 +357,72 @@
357"master branch."357"master branch."
358msgstr ""358msgstr ""
359359
360#: bzrlib/builtins.py:1097360#: bzrlib/builtins.py:1096
361msgid "Update a mirror of this branch."361msgid "Update a mirror of this branch."
362msgstr ""362msgstr ""
363363
364#: bzrlib/builtins.py:1099364#: bzrlib/builtins.py:1098
365msgid ""365msgid ""
366"The target branch will not have its working tree populated because this\n"366"The target branch will not have its working tree populated because this\n"
367"is both expensive, and is not supported on remote file systems."367"is both expensive, and is not supported on remote file systems."
368msgstr ""368msgstr ""
369369
370#: bzrlib/builtins.py:1102370#: bzrlib/builtins.py:1101
371msgid ""371msgid ""
372"Some smart servers or protocols *may* put the working tree in place in\n"372"Some smart servers or protocols *may* put the working tree in place in\n"
373"the future."373"the future."
374msgstr ""374msgstr ""
375375
376#: bzrlib/builtins.py:1105376#: bzrlib/builtins.py:1104
377msgid ""377msgid ""
378"This command only works on branches that have not diverged. Branches are\n"378"This command only works on branches that have not diverged. Branches are\n"
379"considered diverged if the destination branch's most recent commit is one\n"379"considered diverged if the destination branch's most recent commit is one\n"
380"that has not been merged (directly or indirectly) by the source branch."380"that has not been merged (directly or indirectly) by the source branch."
381msgstr ""381msgstr ""
382382
383#: bzrlib/builtins.py:1109383#: bzrlib/builtins.py:1108
384msgid ""384msgid ""
385"If branches have diverged, you can use 'bzr push --overwrite' to replace\n"385"If branches have diverged, you can use 'bzr push --overwrite' to replace\n"
386"the other branch completely, discarding its unmerged changes."386"the other branch completely, discarding its unmerged changes."
387msgstr ""387msgstr ""
388388
389#: bzrlib/builtins.py:1112389#: bzrlib/builtins.py:1111
390msgid ""390msgid ""
391"If you want to ensure you have the different changes in the other branch,\n"391"If you want to ensure you have the different changes in the other branch,\n"
392"do a merge (see bzr help merge) from the other branch, and commit that.\n"392"do a merge (see bzr help merge) from the other branch, and commit that.\n"
393"After that you will be able to do a push without '--overwrite'."393"After that you will be able to do a push without '--overwrite'."
394msgstr ""394msgstr ""
395395
396#: bzrlib/builtins.py:1116396#: bzrlib/builtins.py:1115
397msgid ""397msgid ""
398"If there is no default push location set, the first push will set it (use\n"398"If there is no default push location set, the first push will set it (use\n"
399"--no-remember to avoid settting it). After that, you can omit the\n"399"--no-remember to avoid setting it). After that, you can omit the\n"
400"location to use the default. To change the default, use --remember. The\n"400"location to use the default. To change the default, use --remember. The\n"
401"value will only be saved if the remote location can be accessed."401"value will only be saved if the remote location can be accessed."
402msgstr ""402msgstr ""
403403
404# help of 'directory' option of 'push' command404# help of 'directory' option of 'push' command
405#: bzrlib/builtins.py:1128405#: bzrlib/builtins.py:1127
406msgid ""406msgid ""
407"Branch to push from, rather than the one containing the working directory."407"Branch to push from, rather than the one containing the working directory."
408msgstr ""408msgstr ""
409409
410# help of 'use-existing-dir' option of 'push' command410# help of 'use-existing-dir' option of 'push' command
411#: bzrlib/builtins.py:1131411#: bzrlib/builtins.py:1130
412msgid ""412msgid ""
413"By default push will fail if the target directory exists, but does not "413"By default push will fail if the target directory exists, but does not "
414"already have a control directory. This flag will allow push to proceed."414"already have a control directory. This flag will allow push to proceed."
415msgstr ""415msgstr ""
416416
417# help of 'stacked' option of 'push' command417# help of 'stacked' option of 'push' command
418#: bzrlib/builtins.py:1136418#: bzrlib/builtins.py:1135
419msgid ""419msgid ""
420"Create a stacked branch that references the public location of the parent "420"Create a stacked branch that references the public location of the parent "
421"branch."421"branch."
422msgstr ""422msgstr ""
423423
424# help of 'stacked-on' option of 'push' command424# help of 'stacked-on' option of 'push' command
425#: bzrlib/builtins.py:1139425#: bzrlib/builtins.py:1138
426msgid ""426msgid ""
427"Create a stacked branch that refers to another branch for the commit "427"Create a stacked branch that refers to another branch for the commit "
428"history. Only the work not present in the referenced branch is included in "428"history. Only the work not present in the referenced branch is included in "
@@ -430,22 +430,22 @@
430msgstr ""430msgstr ""
431431
432# help of 'strict' option of 'push' command432# help of 'strict' option of 'push' command
433#: bzrlib/builtins.py:1144433#: bzrlib/builtins.py:1143
434msgid ""434msgid ""
435"Refuse to push if there are uncommitted changes in the working tree, --no-"435"Refuse to push if there are uncommitted changes in the working tree, --no-"
436"strict disables the check."436"strict disables the check."
437msgstr ""437msgstr ""
438438
439# help of 'no-tree' option of 'push' command439# help of 'no-tree' option of 'push' command
440#: bzrlib/builtins.py:1147440#: bzrlib/builtins.py:1146
441msgid "Don't populate the working tree, even for protocols that support it."441msgid "Don't populate the working tree, even for protocols that support it."
442msgstr ""442msgstr ""
443443
444#: bzrlib/builtins.py:1212444#: bzrlib/builtins.py:1211
445msgid "Create a new branch that is a copy of an existing branch."445msgid "Create a new branch that is a copy of an existing branch."
446msgstr ""446msgstr ""
447447
448#: bzrlib/builtins.py:1214448#: bzrlib/builtins.py:1213
449msgid ""449msgid ""
450"If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will\n"450"If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will\n"
451"be used. In other words, \"branch ../foo/bar\" will attempt to create ./"451"be used. In other words, \"branch ../foo/bar\" will attempt to create ./"
@@ -456,65 +456,65 @@
456"create ./foo-bar."456"create ./foo-bar."
457msgstr ""457msgstr ""
458458
459#: bzrlib/builtins.py:1221459#: bzrlib/builtins.py:1220
460msgid ""460msgid ""
461"To retrieve the branch as of a particular revision, supply the --revision\n"461"To retrieve the branch as of a particular revision, supply the --revision\n"
462"parameter, as in \"branch foo/bar -r 5\"."462"parameter, as in \"branch foo/bar -r 5\"."
463msgstr ""463msgstr ""
464464
465#: bzrlib/builtins.py:1224465#: bzrlib/builtins.py:1223
466msgid "The synonyms 'clone' and 'get' for this command are deprecated."466msgid "The synonyms 'clone' and 'get' for this command are deprecated."
467msgstr ""467msgstr ""
468468
469# help of 'no-tree' option of 'branch' command469# help of 'no-tree' option of 'branch' command
470#: bzrlib/builtins.py:1234470#: bzrlib/builtins.py:1233
471msgid "Create a branch without a working-tree."471msgid "Create a branch without a working-tree."
472msgstr ""472msgstr ""
473473
474# help of 'switch' option of 'branch' command474# help of 'switch' option of 'branch' command
475#: bzrlib/builtins.py:1236475#: bzrlib/builtins.py:1235
476msgid "Switch the checkout in the current directory to the new branch."476msgid "Switch the checkout in the current directory to the new branch."
477msgstr ""477msgstr ""
478478
479# help of 'stacked' option of 'branch' command479# help of 'stacked' option of 'branch' command
480#: bzrlib/builtins.py:1239480#: bzrlib/builtins.py:1238
481msgid ""481msgid ""
482"Create a stacked branch referring to the source branch. The new branch will "482"Create a stacked branch referring to the source branch. The new branch will "
483"depend on the availability of the source branch for all operations."483"depend on the availability of the source branch for all operations."
484msgstr ""484msgstr ""
485485
486# help of 'standalone' option of 'branch' command486# help of 'standalone' option of 'branch' command
487#: bzrlib/builtins.py:1243487#: bzrlib/builtins.py:1242
488msgid "Do not use a shared repository, even if available."488msgid "Do not use a shared repository, even if available."
489msgstr ""489msgstr ""
490490
491# help of 'use-existing-dir' option of 'branch' command491# help of 'use-existing-dir' option of 'branch' command
492#: bzrlib/builtins.py:1245492#: bzrlib/builtins.py:1244
493msgid ""493msgid ""
494"By default branch will fail if the target directory exists, but does not "494"By default branch will fail if the target directory exists, but does not "
495"already have a control directory. This flag will allow branch to proceed."495"already have a control directory. This flag will allow branch to proceed."
496msgstr ""496msgstr ""
497497
498# help of 'bind' option of 'branch' command498# help of 'bind' option of 'branch' command
499#: bzrlib/builtins.py:1250499#: bzrlib/builtins.py:1249
500msgid "Bind new branch to from location."500msgid "Bind new branch to from location."
501msgstr ""501msgstr ""
502502
503#: bzrlib/builtins.py:1342503#: bzrlib/builtins.py:1341
504msgid "List the branches available at the current location."504msgid "List the branches available at the current location."
505msgstr ""505msgstr ""
506506
507#: bzrlib/builtins.py:1344507#: bzrlib/builtins.py:1343
508msgid ""508msgid ""
509"This command will print the names of all the branches at the current "509"This command will print the names of all the branches at the current "
510"location."510"location."
511msgstr ""511msgstr ""
512512
513#: bzrlib/builtins.py:1359513#: bzrlib/builtins.py:1358
514msgid "Create a new checkout of an existing branch."514msgid "Create a new checkout of an existing branch."
515msgstr ""515msgstr ""
516516
517#: bzrlib/builtins.py:1361517#: bzrlib/builtins.py:1360
518msgid ""518msgid ""
519"If BRANCH_LOCATION is omitted, checkout will reconstitute a working tree "519"If BRANCH_LOCATION is omitted, checkout will reconstitute a working tree "
520"for\n"520"for\n"
@@ -524,7 +524,7 @@
524"location using SFTP."524"location using SFTP."
525msgstr ""525msgstr ""
526526
527#: bzrlib/builtins.py:1366527#: bzrlib/builtins.py:1365
528msgid ""528msgid ""
529"If the TO_LOCATION is omitted, the last component of the BRANCH_LOCATION "529"If the TO_LOCATION is omitted, the last component of the BRANCH_LOCATION "
530"will\n"530"will\n"
@@ -536,7 +536,7 @@
536"create ./foo-bar."536"create ./foo-bar."
537msgstr ""537msgstr ""
538538
539#: bzrlib/builtins.py:1373539#: bzrlib/builtins.py:1372
540msgid ""540msgid ""
541"To retrieve the branch as of a particular revision, supply the --revision\n"541"To retrieve the branch as of a particular revision, supply the --revision\n"
542"parameter, as in \"checkout foo/bar -r 5\". Note that this will be "542"parameter, as in \"checkout foo/bar -r 5\". Note that this will be "
@@ -547,7 +547,7 @@
547msgstr ""547msgstr ""
548548
549# help of 'lightweight' option of 'checkout' command549# help of 'lightweight' option of 'checkout' command
550#: bzrlib/builtins.py:1383550#: bzrlib/builtins.py:1382
551msgid ""551msgid ""
552"Perform a lightweight checkout. Lightweight checkouts depend on access to "552"Perform a lightweight checkout. Lightweight checkouts depend on access to "
553"the branch for every operation. Normal checkouts can perform common "553"the branch for every operation. Normal checkouts can perform common "
@@ -556,103 +556,103 @@
556msgstr ""556msgstr ""
557557
558# help of 'files-from' option of 'branch' command558# help of 'files-from' option of 'branch' command
559#: bzrlib/builtins.py:1390559#: bzrlib/builtins.py:1389
560msgid "Get file contents from this tree."560msgid "Get file contents from this tree."
561msgstr ""561msgstr ""
562562
563# help of 'hardlink' option of 'branch' command563# help of 'hardlink' option of 'branch' command
564#: bzrlib/builtins.py:1392564#: bzrlib/builtins.py:1391
565msgid "Hard-link working tree files where possible."565msgid "Hard-link working tree files where possible."
566msgstr ""566msgstr ""
567567
568#: bzrlib/builtins.py:1433568#: bzrlib/builtins.py:1432
569msgid ""569msgid ""
570"Show list of renamed files.\n"570"Show list of renamed files.\n"
571" "571" "
572msgstr ""572msgstr ""
573573
574#: bzrlib/builtins.py:1463574#: bzrlib/builtins.py:1462
575msgid "Update a tree to have the latest code committed to its branch."575msgid "Update a tree to have the latest code committed to its branch."
576msgstr ""576msgstr ""
577577
578#: bzrlib/builtins.py:1465578#: bzrlib/builtins.py:1464
579msgid ""579msgid ""
580"This will perform a merge into the working tree, and may generate\n"580"This will perform a merge into the working tree, and may generate\n"
581"conflicts. If you have any local changes, you will still\n"581"conflicts. If you have any local changes, you will still\n"
582"need to commit them after the update for the update to be complete."582"need to commit them after the update for the update to be complete."
583msgstr ""583msgstr ""
584584
585#: bzrlib/builtins.py:1469585#: bzrlib/builtins.py:1468
586msgid ""586msgid ""
587"If you want to discard your local changes, you can just do a\n"587"If you want to discard your local changes, you can just do a\n"
588"'bzr revert' instead of 'bzr commit' after the update."588"'bzr revert' instead of 'bzr commit' after the update."
589msgstr ""589msgstr ""
590590
591#: bzrlib/builtins.py:1472591#: bzrlib/builtins.py:1471
592msgid ""592msgid ""
593"If you want to restore a file that has been removed locally, use\n"593"If you want to restore a file that has been removed locally, use\n"
594"'bzr revert' instead of 'bzr update'."594"'bzr revert' instead of 'bzr update'."
595msgstr ""595msgstr ""
596596
597#: bzrlib/builtins.py:1475597#: bzrlib/builtins.py:1474
598msgid ""598msgid ""
599"If the tree's branch is bound to a master branch, it will also update\n"599"If the tree's branch is bound to a master branch, it will also update\n"
600"the branch from the master."600"the branch from the master."
601msgstr ""601msgstr ""
602602
603#: bzrlib/builtins.py:1556603#: bzrlib/builtins.py:1555
604msgid "Show information about a working tree, branch or repository."604msgid "Show information about a working tree, branch or repository."
605msgstr ""605msgstr ""
606606
607#: bzrlib/builtins.py:1558607#: bzrlib/builtins.py:1557
608msgid ""608msgid ""
609"This command will show all known locations and formats associated to the\n"609"This command will show all known locations and formats associated to the\n"
610"tree, branch or repository."610"tree, branch or repository."
611msgstr ""611msgstr ""
612612
613#: bzrlib/builtins.py:1561613#: bzrlib/builtins.py:1560
614msgid ""614msgid ""
615"In verbose mode, statistical information is included with each report.\n"615"In verbose mode, statistical information is included with each report.\n"
616"To see extended statistic information, use a verbosity level of 2 or\n"616"To see extended statistic information, use a verbosity level of 2 or\n"
617"higher by specifying the verbose option multiple times, e.g. -vv."617"higher by specifying the verbose option multiple times, e.g. -vv."
618msgstr ""618msgstr ""
619619
620#: bzrlib/builtins.py:1565620#: bzrlib/builtins.py:1564
621msgid "Branches and working trees will also report any missing revisions."621msgid "Branches and working trees will also report any missing revisions."
622msgstr ""622msgstr ""
623623
624#: bzrlib/builtins.py:1569624#: bzrlib/builtins.py:1568
625msgid " Display information on the format and related locations:"625msgid " Display information on the format and related locations:"
626msgstr ""626msgstr ""
627627
628#: bzrlib/builtins.py:1571628#: bzrlib/builtins.py:1570
629msgid " bzr info"629msgid " bzr info"
630msgstr ""630msgstr ""
631631
632#: bzrlib/builtins.py:1573632#: bzrlib/builtins.py:1572
633msgid ""633msgid ""
634" Display the above together with extended format information and\n"634" Display the above together with extended format information and\n"
635" basic statistics (like the number of files in the working tree and\n"635" basic statistics (like the number of files in the working tree and\n"
636" number of revisions in the branch and repository):"636" number of revisions in the branch and repository):"
637msgstr ""637msgstr ""
638638
639#: bzrlib/builtins.py:1577639#: bzrlib/builtins.py:1576
640msgid " bzr info -v"640msgid " bzr info -v"
641msgstr ""641msgstr ""
642642
643#: bzrlib/builtins.py:1579643#: bzrlib/builtins.py:1578
644msgid " Display the above together with number of committers to the branch:"644msgid " Display the above together with number of committers to the branch:"
645msgstr ""645msgstr ""
646646
647#: bzrlib/builtins.py:1581647#: bzrlib/builtins.py:1580
648msgid " bzr info -vv"648msgid " bzr info -vv"
649msgstr ""649msgstr ""
650650
651#: bzrlib/builtins.py:1600651#: bzrlib/builtins.py:1599
652msgid "Remove files or directories."652msgid "Remove files or directories."
653msgstr ""653msgstr ""
654654
655#: bzrlib/builtins.py:1602655#: bzrlib/builtins.py:1601
656msgid ""656msgid ""
657"This makes Bazaar stop tracking changes to the specified files. Bazaar will\n"657"This makes Bazaar stop tracking changes to the specified files. Bazaar will\n"
658"delete them if they can easily be recovered using revert otherwise they\n"658"delete them if they can easily be recovered using revert otherwise they\n"
@@ -662,25 +662,25 @@
662msgstr ""662msgstr ""
663663
664# help of 'new' option of 'remove' command664# help of 'new' option of 'remove' command
665#: bzrlib/builtins.py:1610665#: bzrlib/builtins.py:1609
666msgid "Only remove files that have never been committed."666msgid "Only remove files that have never been committed."
667msgstr ""667msgstr ""
668668
669# help of 'file-deletion-strategy' option of 'remove' command669# help of 'file-deletion-strategy' option of 'remove' command
670#: bzrlib/builtins.py:1612670#: bzrlib/builtins.py:1611
671msgid "The file deletion mode to be used."671msgid "The file deletion mode to be used."
672msgstr ""672msgstr ""
673673
674# title of 'file-deletion-strategy' option of 'remove' command674# title of 'file-deletion-strategy' option of 'remove' command
675#: bzrlib/builtins.py:1613675#: bzrlib/builtins.py:1612
676msgid "Deletion Strategy"676msgid "Deletion Strategy"
677msgstr ""677msgstr ""
678678
679#: bzrlib/builtins.py:1704679#: bzrlib/builtins.py:1703
680msgid "Reconcile bzr metadata in a branch."680msgid "Reconcile bzr metadata in a branch."
681msgstr ""681msgstr ""
682682
683#: bzrlib/builtins.py:1706683#: bzrlib/builtins.py:1705
684msgid ""684msgid ""
685"This can correct data mismatches that may have been caused by\n"685"This can correct data mismatches that may have been caused by\n"
686"previous ghost operations or bzr upgrades. You should only\n"686"previous ghost operations or bzr upgrades. You should only\n"
@@ -688,7 +688,7 @@
688"advises you to run it."688"advises you to run it."
689msgstr ""689msgstr ""
690690
691#: bzrlib/builtins.py:1711691#: bzrlib/builtins.py:1710
692msgid ""692msgid ""
693"If a second branch is provided, cross-branch reconciliation is\n"693"If a second branch is provided, cross-branch reconciliation is\n"
694"also attempted, which will check that data like the tree root\n"694"also attempted, which will check that data like the tree root\n"
@@ -696,27 +696,27 @@
696"correctly in both branches."696"correctly in both branches."
697msgstr ""697msgstr ""
698698
699#: bzrlib/builtins.py:1716699#: bzrlib/builtins.py:1715
700msgid ""700msgid ""
701"At the same time it is run it may recompress data resulting in\n"701"At the same time it is run it may recompress data resulting in\n"
702"a potential saving in disk space or performance gain."702"a potential saving in disk space or performance gain."
703msgstr ""703msgstr ""
704704
705#: bzrlib/builtins.py:1719705#: bzrlib/builtins.py:1718
706msgid "The branch *MUST* be on a listable system such as local disk or sftp."706msgid "The branch *MUST* be on a listable system such as local disk or sftp."
707msgstr ""707msgstr ""
708708
709#: bzrlib/builtins.py:1783709#: bzrlib/builtins.py:1782
710msgid "Make a directory into a versioned branch."710msgid "Make a directory into a versioned branch."
711msgstr ""711msgstr ""
712712
713#: bzrlib/builtins.py:1785713#: bzrlib/builtins.py:1784
714msgid ""714msgid ""
715"Use this to create an empty branch, or before importing an\n"715"Use this to create an empty branch, or before importing an\n"
716"existing project."716"existing project."
717msgstr ""717msgstr ""
718718
719#: bzrlib/builtins.py:1788719#: bzrlib/builtins.py:1787
720msgid ""720msgid ""
721"If there is a repository in a parent directory of the location, then\n"721"If there is a repository in a parent directory of the location, then\n"
722"the history of the branch will be stored in the repository. Otherwise\n"722"the history of the branch will be stored in the repository. Otherwise\n"
@@ -724,17 +724,17 @@
724"in the .bzr directory."724"in the .bzr directory."
725msgstr ""725msgstr ""
726726
727#: bzrlib/builtins.py:1793727#: bzrlib/builtins.py:1792
728msgid ""728msgid ""
729"If there is already a branch at the location but it has no working tree,\n"729"If there is already a branch at the location but it has no working tree,\n"
730"the tree can be populated with 'bzr checkout'."730"the tree can be populated with 'bzr checkout'."
731msgstr ""731msgstr ""
732732
733#: bzrlib/builtins.py:1796733#: bzrlib/builtins.py:1795
734msgid "Recipe for importing a tree of files::"734msgid "Recipe for importing a tree of files::"
735msgstr ""735msgstr ""
736736
737#: bzrlib/builtins.py:1798737#: bzrlib/builtins.py:1797
738msgid ""738msgid ""
739" cd ~/project\n"739" cd ~/project\n"
740" bzr init\n"740" bzr init\n"
@@ -744,30 +744,30 @@
744msgstr ""744msgstr ""
745745
746# help of 'create-prefix' option of 'init' command746# help of 'create-prefix' option of 'init' command
747#: bzrlib/builtins.py:1809747#: bzrlib/builtins.py:1808
748msgid "Create the path leading up to the branch if it does not already exist."748msgid "Create the path leading up to the branch if it does not already exist."
749msgstr ""749msgstr ""
750750
751# help of 'format' option of 'init' command751# help of 'format' option of 'init' command
752#: bzrlib/builtins.py:1812752#: bzrlib/builtins.py:1811
753msgid "Specify a format for this branch. See \"help formats\"."753msgid "Specify a format for this branch. See \"help formats\"."
754msgstr ""754msgstr ""
755755
756# help of 'append-revisions-only' option of 'init' command756# help of 'append-revisions-only' option of 'init' command
757#: bzrlib/builtins.py:1820757#: bzrlib/builtins.py:1819
758msgid "Never change revnos or the existing log. Append revisions to it only."758msgid "Never change revnos or the existing log. Append revisions to it only."
759msgstr ""759msgstr ""
760760
761# help of 'no-tree' option of 'init' command761# help of 'no-tree' option of 'init' command
762#: bzrlib/builtins.py:1823762#: bzrlib/builtins.py:1822
763msgid "Create a branch without a working tree."763msgid "Create a branch without a working tree."
764msgstr ""764msgstr ""
765765
766#: bzrlib/builtins.py:1900766#: bzrlib/builtins.py:1899
767msgid "Create a shared repository for branches to share storage space."767msgid "Create a shared repository for branches to share storage space."
768msgstr ""768msgstr ""
769769
770#: bzrlib/builtins.py:1902770#: bzrlib/builtins.py:1901
771msgid ""771msgid ""
772"New branches created under the repository directory will store their\n"772"New branches created under the repository directory will store their\n"
773"revisions in the repository, not in the branch directory. For branches\n"773"revisions in the repository, not in the branch directory. For branches\n"
@@ -775,7 +775,7 @@
775"speeds up the creation of new branches."775"speeds up the creation of new branches."
776msgstr ""776msgstr ""
777777
778#: bzrlib/builtins.py:1907778#: bzrlib/builtins.py:1906
779msgid ""779msgid ""
780"If the --no-trees option is given then the branches in the repository\n"780"If the --no-trees option is given then the branches in the repository\n"
781"will not have working trees by default. They will still exist as \n"781"will not have working trees by default. They will still exist as \n"
@@ -785,23 +785,23 @@
785"branches, such as on a server."785"branches, such as on a server."
786msgstr ""786msgstr ""
787787
788#: bzrlib/builtins.py:1914788#: bzrlib/builtins.py:1913
789msgid ""789msgid ""
790":Examples:\n"790":Examples:\n"
791" Create a shared repository holding just branches::"791" Create a shared repository holding just branches::"
792msgstr ""792msgstr ""
793793
794#: bzrlib/builtins.py:1917794#: bzrlib/builtins.py:1916
795msgid ""795msgid ""
796" bzr init-repo --no-trees repo\n"796" bzr init-repo --no-trees repo\n"
797" bzr init repo/trunk"797" bzr init repo/trunk"
798msgstr ""798msgstr ""
799799
800#: bzrlib/builtins.py:1920800#: bzrlib/builtins.py:1919
801msgid " Make a lightweight checkout elsewhere::"801msgid " Make a lightweight checkout elsewhere::"
802msgstr ""802msgstr ""
803803
804#: bzrlib/builtins.py:1922804#: bzrlib/builtins.py:1921
805msgid ""805msgid ""
806" bzr checkout --lightweight repo/trunk trunk-checkout\n"806" bzr checkout --lightweight repo/trunk trunk-checkout\n"
807" cd trunk-checkout\n"807" cd trunk-checkout\n"
@@ -809,26 +809,26 @@
809msgstr ""809msgstr ""
810810
811# help of 'format' option of 'init-repository' command811# help of 'format' option of 'init-repository' command
812#: bzrlib/builtins.py:1930812#: bzrlib/builtins.py:1929
813msgid ""813msgid ""
814"Specify a format for this repository. See \"bzr help formats\" for details."814"Specify a format for this repository. See \"bzr help formats\" for details."
815msgstr ""815msgstr ""
816816
817# title of 'format' option of 'init-repository' command817# title of 'format' option of 'init-repository' command
818#: bzrlib/builtins.py:1934818#: bzrlib/builtins.py:1933
819msgid "Repository format"819msgid "Repository format"
820msgstr ""820msgstr ""
821821
822# help of 'no-trees' option of 'init-repository' command822# help of 'no-trees' option of 'init-repository' command
823#: bzrlib/builtins.py:1936823#: bzrlib/builtins.py:1935
824msgid "Branches in the repository will default to not having a working tree."824msgid "Branches in the repository will default to not having a working tree."
825msgstr ""825msgstr ""
826826
827#: bzrlib/builtins.py:1960827#: bzrlib/builtins.py:1959
828msgid "Show differences in the working tree, between revisions or branches."828msgid "Show differences in the working tree, between revisions or branches."
829msgstr ""829msgstr ""
830830
831#: bzrlib/builtins.py:1962831#: bzrlib/builtins.py:1961
832msgid ""832msgid ""
833"If no arguments are given, all changes for the current tree are listed.\n"833"If no arguments are given, all changes for the current tree are listed.\n"
834"If files are given, only the changes in those files are listed.\n"834"If files are given, only the changes in those files are listed.\n"
@@ -838,13 +838,13 @@
838"given."838"given."
839msgstr ""839msgstr ""
840840
841#: bzrlib/builtins.py:1969841#: bzrlib/builtins.py:1968
842msgid ""842msgid ""
843"\"bzr diff -p1\" is equivalent to \"bzr diff --prefix old/:new/\", and\n"843"\"bzr diff -p1\" is equivalent to \"bzr diff --prefix old/:new/\", and\n"
844"produces patches suitable for \"patch -p1\"."844"produces patches suitable for \"patch -p1\"."
845msgstr ""845msgstr ""
846846
847#: bzrlib/builtins.py:1972847#: bzrlib/builtins.py:1971
848msgid ""848msgid ""
849"Note that when using the -r argument with a range of revisions, the\n"849"Note that when using the -r argument with a range of revisions, the\n"
850"differences are computed between the two specified revisions. That\n"850"differences are computed between the two specified revisions. That\n"
@@ -854,7 +854,7 @@
854"in the range."854"in the range."
855msgstr ""855msgstr ""
856856
857#: bzrlib/builtins.py:1979857#: bzrlib/builtins.py:1978
858msgid ""858msgid ""
859":Exit values:\n"859":Exit values:\n"
860" 1 - changed\n"860" 1 - changed\n"
@@ -863,113 +863,113 @@
863" 0 - no change"863" 0 - no change"
864msgstr ""864msgstr ""
865865
866#: bzrlib/builtins.py:1985866#: bzrlib/builtins.py:1984
867msgid ""867msgid ""
868":Examples:\n"868":Examples:\n"
869" Shows the difference in the working tree versus the last commit::"869" Shows the difference in the working tree versus the last commit::"
870msgstr ""870msgstr ""
871871
872#: bzrlib/builtins.py:1988872#: bzrlib/builtins.py:1987
873msgid " bzr diff"873msgid " bzr diff"
874msgstr ""874msgstr ""
875875
876#: bzrlib/builtins.py:1990876#: bzrlib/builtins.py:1989
877msgid " Difference between the working tree and revision 1::"877msgid " Difference between the working tree and revision 1::"
878msgstr ""878msgstr ""
879879
880#: bzrlib/builtins.py:1992880#: bzrlib/builtins.py:1991
881msgid " bzr diff -r1"881msgid " bzr diff -r1"
882msgstr ""882msgstr ""
883883
884#: bzrlib/builtins.py:1994884#: bzrlib/builtins.py:1993
885msgid " Difference between revision 3 and revision 1::"885msgid " Difference between revision 3 and revision 1::"
886msgstr ""886msgstr ""
887887
888#: bzrlib/builtins.py:1996888#: bzrlib/builtins.py:1995
889msgid " bzr diff -r1..3"889msgid " bzr diff -r1..3"
890msgstr ""890msgstr ""
891891
892#: bzrlib/builtins.py:1998892#: bzrlib/builtins.py:1997
893msgid " Difference between revision 3 and revision 1 for branch xxx::"893msgid " Difference between revision 3 and revision 1 for branch xxx::"
894msgstr ""894msgstr ""
895895
896#: bzrlib/builtins.py:2000896#: bzrlib/builtins.py:1999
897msgid " bzr diff -r1..3 xxx"897msgid " bzr diff -r1..3 xxx"
898msgstr ""898msgstr ""
899899
900#: bzrlib/builtins.py:2002900#: bzrlib/builtins.py:2001
901msgid " The changes introduced by revision 2 (equivalent to -r1..2)::"901msgid " The changes introduced by revision 2 (equivalent to -r1..2)::"
902msgstr ""902msgstr ""
903903
904#: bzrlib/builtins.py:2004904#: bzrlib/builtins.py:2003
905msgid " bzr diff -c2"905msgid " bzr diff -c2"
906msgstr ""906msgstr ""
907907
908#: bzrlib/builtins.py:2006908#: bzrlib/builtins.py:2005
909msgid ""909msgid ""
910" To see the changes introduced by revision X::\n"910" To see the changes introduced by revision X::\n"
911" \n"911" \n"
912" bzr diff -cX"912" bzr diff -cX"
913msgstr ""913msgstr ""
914914
915#: bzrlib/builtins.py:2010915#: bzrlib/builtins.py:2009
916msgid ""916msgid ""
917" Note that in the case of a merge, the -c option shows the changes\n"917" Note that in the case of a merge, the -c option shows the changes\n"
918" compared to the left hand parent. To see the changes against\n"918" compared to the left hand parent. To see the changes against\n"
919" another parent, use::"919" another parent, use::"
920msgstr ""920msgstr ""
921921
922#: bzrlib/builtins.py:2014922#: bzrlib/builtins.py:2013
923msgid " bzr diff -r<chosen_parent>..X"923msgid " bzr diff -r<chosen_parent>..X"
924msgstr ""924msgstr ""
925925
926#: bzrlib/builtins.py:2016926#: bzrlib/builtins.py:2015
927msgid ""927msgid ""
928" The changes between the current revision and the previous revision\n"928" The changes between the current revision and the previous revision\n"
929" (equivalent to -c-1 and -r-2..-1)"929" (equivalent to -c-1 and -r-2..-1)"
930msgstr ""930msgstr ""
931931
932#: bzrlib/builtins.py:2019932#: bzrlib/builtins.py:2018
933msgid " bzr diff -r-2.."933msgid " bzr diff -r-2.."
934msgstr ""934msgstr ""
935935
936#: bzrlib/builtins.py:2021936#: bzrlib/builtins.py:2020
937msgid " Show just the differences for file NEWS::"937msgid " Show just the differences for file NEWS::"
938msgstr ""938msgstr ""
939939
940#: bzrlib/builtins.py:2023940#: bzrlib/builtins.py:2022
941msgid " bzr diff NEWS"941msgid " bzr diff NEWS"
942msgstr ""942msgstr ""
943943
944#: bzrlib/builtins.py:2025944#: bzrlib/builtins.py:2024
945msgid " Show the differences in working tree xxx for file NEWS::"945msgid " Show the differences in working tree xxx for file NEWS::"
946msgstr ""946msgstr ""
947947
948#: bzrlib/builtins.py:2027948#: bzrlib/builtins.py:2026
949msgid " bzr diff xxx/NEWS"949msgid " bzr diff xxx/NEWS"
950msgstr ""950msgstr ""
951951
952#: bzrlib/builtins.py:2029952#: bzrlib/builtins.py:2028
953msgid " Show the differences from branch xxx to this working tree:"953msgid " Show the differences from branch xxx to this working tree:"
954msgstr ""954msgstr ""
955955
956#: bzrlib/builtins.py:2031956#: bzrlib/builtins.py:2030
957msgid " bzr diff --old xxx"957msgid " bzr diff --old xxx"
958msgstr ""958msgstr ""
959959
960#: bzrlib/builtins.py:2033960#: bzrlib/builtins.py:2032
961msgid " Show the differences between two branches for file NEWS::"961msgid " Show the differences between two branches for file NEWS::"
962msgstr ""962msgstr ""
963963
964#: bzrlib/builtins.py:2035964#: bzrlib/builtins.py:2034
965msgid " bzr diff --old xxx --new yyy NEWS"965msgid " bzr diff --old xxx --new yyy NEWS"
966msgstr ""966msgstr ""
967967
968#: bzrlib/builtins.py:2037968#: bzrlib/builtins.py:2036
969msgid " Same as 'bzr diff' but prefix paths with old/ and new/::"969msgid " Same as 'bzr diff' but prefix paths with old/ and new/::"
970msgstr ""970msgstr ""
971971
972#: bzrlib/builtins.py:2039972#: bzrlib/builtins.py:2038
973msgid ""973msgid ""
974" bzr diff --prefix old/:new/\n"974" bzr diff --prefix old/:new/\n"
975" \n"975" \n"
@@ -979,63 +979,63 @@
979msgstr ""979msgstr ""
980980
981# help of 'diff-options' option of 'diff' command981# help of 'diff-options' option of 'diff' command
982#: bzrlib/builtins.py:2049982#: bzrlib/builtins.py:2048
983msgid "Pass these options to the external diff program."983msgid "Pass these options to the external diff program."
984msgstr ""984msgstr ""
985985
986# help of 'prefix' option of 'diff' command986# help of 'prefix' option of 'diff' command
987#: bzrlib/builtins.py:2052987#: bzrlib/builtins.py:2051
988msgid ""988msgid ""
989"Set prefixes added to old and new filenames, as two values separated by a "989"Set prefixes added to old and new filenames, as two values separated by a "
990"colon. (eg \"old/:new/\")."990"colon. (eg \"old/:new/\")."
991msgstr ""991msgstr ""
992992
993# help of 'old' option of 'diff' command993# help of 'old' option of 'diff' command
994#: bzrlib/builtins.py:2055994#: bzrlib/builtins.py:2054
995msgid "Branch/tree to compare from."995msgid "Branch/tree to compare from."
996msgstr ""996msgstr ""
997997
998# help of 'new' option of 'diff' command998# help of 'new' option of 'diff' command
999#: bzrlib/builtins.py:2059999#: bzrlib/builtins.py:2058
1000msgid "Branch/tree to compare to."1000msgid "Branch/tree to compare to."
1001msgstr ""1001msgstr ""
10021002
1003# help of 'using' option of 'diff' command1003# help of 'using' option of 'diff' command
1004#: bzrlib/builtins.py:20651004#: bzrlib/builtins.py:2064
1005msgid "Use this command to compare files."1005msgid "Use this command to compare files."
1006msgstr ""1006msgstr ""
10071007
1008# help of 'format' option of 'diff' command1008# help of 'format' option of 'diff' command
1009#: bzrlib/builtins.py:20701009#: bzrlib/builtins.py:2069
1010msgid "Diff format to use."1010msgid "Diff format to use."
1011msgstr ""1011msgstr ""
10121012
1013# title of 'format' option of 'diff' command1013# title of 'format' option of 'diff' command
1014#: bzrlib/builtins.py:20721014#: bzrlib/builtins.py:2071
1015msgid "Diff format"1015msgid "Diff format"
1016msgstr ""1016msgstr ""
10171017
1018#: bzrlib/builtins.py:21221018#: bzrlib/builtins.py:2121
1019msgid ""1019msgid ""
1020"List files deleted in the working tree.\n"1020"List files deleted in the working tree.\n"
1021" "1021" "
1022msgstr ""1022msgstr ""
10231023
1024#: bzrlib/builtins.py:22001024#: bzrlib/builtins.py:2199
1025msgid "Show the tree root directory."1025msgid "Show the tree root directory."
1026msgstr ""1026msgstr ""
10271027
1028#: bzrlib/builtins.py:22021028#: bzrlib/builtins.py:2201
1029msgid ""1029msgid ""
1030"The root is the nearest enclosing directory with a .bzr control\n"1030"The root is the nearest enclosing directory with a .bzr control\n"
1031"directory."1031"directory."
1032msgstr ""1032msgstr ""
10331033
1034#: bzrlib/builtins.py:22301034#: bzrlib/builtins.py:2229
1035msgid "Show historical log for a branch or subset of a branch."1035msgid "Show historical log for a branch or subset of a branch."
1036msgstr ""1036msgstr ""
10371037
1038#: bzrlib/builtins.py:22321038#: bzrlib/builtins.py:2231
1039msgid ""1039msgid ""
1040"log is bzr's default tool for exploring the history of a branch.\n"1040"log is bzr's default tool for exploring the history of a branch.\n"
1041"The branch to use is taken from the first parameter. If no parameters\n"1041"The branch to use is taken from the first parameter. If no parameters\n"
@@ -1043,14 +1043,14 @@
1043"Here are some simple examples::"1043"Here are some simple examples::"
1044msgstr ""1044msgstr ""
10451045
1046#: bzrlib/builtins.py:22371046#: bzrlib/builtins.py:2236
1047msgid ""1047msgid ""
1048" bzr log log the current branch\n"1048" bzr log log the current branch\n"
1049" bzr log foo.py log a file in its branch\n"1049" bzr log foo.py log a file in its branch\n"
1050" bzr log http://server/branch log a branch on a server"1050" bzr log http://server/branch log a branch on a server"
1051msgstr ""1051msgstr ""
10521052
1053#: bzrlib/builtins.py:22411053#: bzrlib/builtins.py:2240
1054msgid ""1054msgid ""
1055"The filtering, ordering and information shown for each revision can\n"1055"The filtering, ordering and information shown for each revision can\n"
1056"be controlled as explained below. By default, all revisions are\n"1056"be controlled as explained below. By default, all revisions are\n"
@@ -1060,11 +1060,11 @@
1060"were merged."1060"were merged."
1061msgstr ""1061msgstr ""
10621062
1063#: bzrlib/builtins.py:22481063#: bzrlib/builtins.py:2247
1064msgid ":Output control:"1064msgid ":Output control:"
1065msgstr ""1065msgstr ""
10661066
1067#: bzrlib/builtins.py:22501067#: bzrlib/builtins.py:2249
1068msgid ""1068msgid ""
1069" The log format controls how information about each revision is\n"1069" The log format controls how information about each revision is\n"
1070" displayed. The standard log formats are called ``long``, ``short``\n"1070" displayed. The standard log formats are called ``long``, ``short``\n"
@@ -1072,13 +1072,13 @@
1072" for more details on log formats."1072" for more details on log formats."
1073msgstr ""1073msgstr ""
10741074
1075#: bzrlib/builtins.py:22551075#: bzrlib/builtins.py:2254
1076msgid ""1076msgid ""
1077" The following options can be used to control what information is\n"1077" The following options can be used to control what information is\n"
1078" displayed::"1078" displayed::"
1079msgstr ""1079msgstr ""
10801080
1081#: bzrlib/builtins.py:22581081#: bzrlib/builtins.py:2257
1082msgid ""1082msgid ""
1083" -l N display a maximum of N revisions\n"1083" -l N display a maximum of N revisions\n"
1084" -n N display N levels of revisions (0 for all, 1 for collapsed)\n"1084" -n N display N levels of revisions (0 for all, 1 for collapsed)\n"
@@ -1087,25 +1087,25 @@
1087" --show-ids display revision-ids (and file-ids), not just revnos"1087" --show-ids display revision-ids (and file-ids), not just revnos"
1088msgstr ""1088msgstr ""
10891089
1090#: bzrlib/builtins.py:22641090#: bzrlib/builtins.py:2263
1091msgid ""1091msgid ""
1092" Note that the default number of levels to display is a function of the\n"1092" Note that the default number of levels to display is a function of the\n"
1093" log format. If the -n option is not used, the standard log formats show\n"1093" log format. If the -n option is not used, the standard log formats show\n"
1094" just the top level (mainline)."1094" just the top level (mainline)."
1095msgstr ""1095msgstr ""
10961096
1097#: bzrlib/builtins.py:22681097#: bzrlib/builtins.py:2267
1098msgid ""1098msgid ""
1099" Status summaries are shown using status flags like A, M, etc. To see\n"1099" Status summaries are shown using status flags like A, M, etc. To see\n"
1100" the changes explained using words like ``added`` and ``modified``\n"1100" the changes explained using words like ``added`` and ``modified``\n"
1101" instead, use the -vv option."1101" instead, use the -vv option."
1102msgstr ""1102msgstr ""
11031103
1104#: bzrlib/builtins.py:22721104#: bzrlib/builtins.py:2271
1105msgid ":Ordering control:"1105msgid ":Ordering control:"
1106msgstr ""1106msgstr ""
11071107
1108#: bzrlib/builtins.py:22741108#: bzrlib/builtins.py:2273
1109msgid ""1109msgid ""
1110" To display revisions from oldest to newest, use the --forward option.\n"1110" To display revisions from oldest to newest, use the --forward option.\n"
1111" In most cases, using this option will have little impact on the total\n"1111" In most cases, using this option will have little impact on the total\n"
@@ -1113,17 +1113,17 @@
1113" display revisions like --reverse does when it can."1113" display revisions like --reverse does when it can."
1114msgstr ""1114msgstr ""
11151115
1116#: bzrlib/builtins.py:22791116#: bzrlib/builtins.py:2278
1117msgid ":Revision filtering:"1117msgid ":Revision filtering:"
1118msgstr ""1118msgstr ""
11191119
1120#: bzrlib/builtins.py:22811120#: bzrlib/builtins.py:2280
1121msgid ""1121msgid ""
1122" The -r option can be used to specify what revision or range of revisions\n"1122" The -r option can be used to specify what revision or range of revisions\n"
1123" to filter against. The various forms are shown below::"1123" to filter against. The various forms are shown below::"
1124msgstr ""1124msgstr ""
11251125
1126#: bzrlib/builtins.py:22841126#: bzrlib/builtins.py:2283
1127msgid ""1127msgid ""
1128" -rX display revision X\n"1128" -rX display revision X\n"
1129" -rX.. display revision X and later\n"1129" -rX.. display revision X and later\n"
@@ -1131,13 +1131,13 @@
1131" -rX..Y display from X to Y inclusive"1131" -rX..Y display from X to Y inclusive"
1132msgstr ""1132msgstr ""
11331133
1134#: bzrlib/builtins.py:22891134#: bzrlib/builtins.py:2288
1135msgid ""1135msgid ""
1136" See ``bzr help revisionspec`` for details on how to specify X and Y.\n"1136" See ``bzr help revisionspec`` for details on how to specify X and Y.\n"
1137" Some common examples are given below::"1137" Some common examples are given below::"
1138msgstr ""1138msgstr ""
11391139
1140#: bzrlib/builtins.py:22921140#: bzrlib/builtins.py:2291
1141msgid ""1141msgid ""
1142" -r-1 show just the tip\n"1142" -r-1 show just the tip\n"
1143" -r-10.. show the last 10 mainline revisions\n"1143" -r-10.. show the last 10 mainline revisions\n"
@@ -1147,7 +1147,7 @@
1147" -rdate:yesterday.. show changes since yesterday"1147" -rdate:yesterday.. show changes since yesterday"
1148msgstr ""1148msgstr ""
11491149
1150#: bzrlib/builtins.py:22991150#: bzrlib/builtins.py:2298
1151msgid ""1151msgid ""
1152" When logging a range of revisions using -rX..Y, log starts at\n"1152" When logging a range of revisions using -rX..Y, log starts at\n"
1153" revision Y and searches back in history through the primary\n"1153" revision Y and searches back in history through the primary\n"
@@ -1157,73 +1157,73 @@
1157" a nested merge revision and the log will be truncated accordingly."1157" a nested merge revision and the log will be truncated accordingly."
1158msgstr ""1158msgstr ""
11591159
1160#: bzrlib/builtins.py:23061160#: bzrlib/builtins.py:2305
1161msgid ":Path filtering:"1161msgid ":Path filtering:"
1162msgstr ""1162msgstr ""
11631163
1164#: bzrlib/builtins.py:23081164#: bzrlib/builtins.py:2307
1165msgid ""1165msgid ""
1166" If parameters are given and the first one is not a branch, the log\n"1166" If parameters are given and the first one is not a branch, the log\n"
1167" will be filtered to show only those revisions that changed the\n"1167" will be filtered to show only those revisions that changed the\n"
1168" nominated files or directories."1168" nominated files or directories."
1169msgstr ""1169msgstr ""
11701170
1171#: bzrlib/builtins.py:23121171#: bzrlib/builtins.py:2311
1172msgid ""1172msgid ""
1173" Filenames are interpreted within their historical context. To log a\n"1173" Filenames are interpreted within their historical context. To log a\n"
1174" deleted file, specify a revision range so that the file existed at\n"1174" deleted file, specify a revision range so that the file existed at\n"
1175" the end or start of the range."1175" the end or start of the range."
1176msgstr ""1176msgstr ""
11771177
1178#: bzrlib/builtins.py:23161178#: bzrlib/builtins.py:2315
1179msgid ""1179msgid ""
1180" Historical context is also important when interpreting pathnames of\n"1180" Historical context is also important when interpreting pathnames of\n"
1181" renamed files/directories. Consider the following example:"1181" renamed files/directories. Consider the following example:"
1182msgstr ""1182msgstr ""
11831183
1184#: bzrlib/builtins.py:23191184#: bzrlib/builtins.py:2318
1185msgid ""1185msgid ""
1186" * revision 1: add tutorial.txt\n"1186" * revision 1: add tutorial.txt\n"
1187" * revision 2: modify tutorial.txt\n"1187" * revision 2: modify tutorial.txt\n"
1188" * revision 3: rename tutorial.txt to guide.txt; add tutorial.txt"1188" * revision 3: rename tutorial.txt to guide.txt; add tutorial.txt"
1189msgstr ""1189msgstr ""
11901190
1191#: bzrlib/builtins.py:23231191#: bzrlib/builtins.py:2322
1192msgid " In this case:"1192msgid " In this case:"
1193msgstr ""1193msgstr ""
11941194
1195#: bzrlib/builtins.py:23251195#: bzrlib/builtins.py:2324
1196msgid " * ``bzr log guide.txt`` will log the file added in revision 1"1196msgid " * ``bzr log guide.txt`` will log the file added in revision 1"
1197msgstr ""1197msgstr ""
11981198
1199#: bzrlib/builtins.py:23271199#: bzrlib/builtins.py:2326
1200msgid " * ``bzr log tutorial.txt`` will log the new file added in revision 3"1200msgid " * ``bzr log tutorial.txt`` will log the new file added in revision 3"
1201msgstr ""1201msgstr ""
12021202
1203#: bzrlib/builtins.py:23291203#: bzrlib/builtins.py:2328
1204msgid ""1204msgid ""
1205" * ``bzr log -r2 -p tutorial.txt`` will show the changes made to\n"1205" * ``bzr log -r2 -p tutorial.txt`` will show the changes made to\n"
1206" the original file in revision 2."1206" the original file in revision 2."
1207msgstr ""1207msgstr ""
12081208
1209#: bzrlib/builtins.py:23321209#: bzrlib/builtins.py:2331
1210msgid ""1210msgid ""
1211" * ``bzr log -r2 -p guide.txt`` will display an error message as there\n"1211" * ``bzr log -r2 -p guide.txt`` will display an error message as there\n"
1212" was no file called guide.txt in revision 2."1212" was no file called guide.txt in revision 2."
1213msgstr ""1213msgstr ""
12141214
1215#: bzrlib/builtins.py:23351215#: bzrlib/builtins.py:2334
1216msgid ""1216msgid ""
1217" Renames are always followed by log. By design, there is no need to\n"1217" Renames are always followed by log. By design, there is no need to\n"
1218" explicitly ask for this (and no way to stop logging a file back\n"1218" explicitly ask for this (and no way to stop logging a file back\n"
1219" until it was last renamed)."1219" until it was last renamed)."
1220msgstr ""1220msgstr ""
12211221
1222#: bzrlib/builtins.py:23391222#: bzrlib/builtins.py:2338
1223msgid ":Other filtering:"1223msgid ":Other filtering:"
1224msgstr ""1224msgstr ""
12251225
1226#: bzrlib/builtins.py:23411226#: bzrlib/builtins.py:2340
1227msgid ""1227msgid ""
1228" The --match option can be used for finding revisions that match a\n"1228" The --match option can be used for finding revisions that match a\n"
1229" regular expression in a commit message, committer, author or bug.\n"1229" regular expression in a commit message, committer, author or bug.\n"
@@ -1232,11 +1232,11 @@
1232" --match-message can be used to only match a specific field."1232" --match-message can be used to only match a specific field."
1233msgstr ""1233msgstr ""
12341234
1235#: bzrlib/builtins.py:23471235#: bzrlib/builtins.py:2346
1236msgid ":Tips & tricks:"1236msgid ":Tips & tricks:"
1237msgstr ""1237msgstr ""
12381238
1239#: bzrlib/builtins.py:23491239#: bzrlib/builtins.py:2348
1240msgid ""1240msgid ""
1241" GUI tools and IDEs are often better at exploring history than command\n"1241" GUI tools and IDEs are often better at exploring history than command\n"
1242" line tools: you may prefer qlog or viz from qbzr or bzr-gtk, the\n"1242" line tools: you may prefer qlog or viz from qbzr or bzr-gtk, the\n"
@@ -1245,11 +1245,11 @@
1245" <http://wiki.bazaar.canonical.com/IDEIntegration>. "1245" <http://wiki.bazaar.canonical.com/IDEIntegration>. "
1246msgstr ""1246msgstr ""
12471247
1248#: bzrlib/builtins.py:23551248#: bzrlib/builtins.py:2354
1249msgid " You may find it useful to add the aliases below to ``bazaar.conf``::"1249msgid " You may find it useful to add the aliases below to ``bazaar.conf``::"
1250msgstr ""1250msgstr ""
12511251
1252#: bzrlib/builtins.py:23571252#: bzrlib/builtins.py:2356
1253msgid ""1253msgid ""
1254" [ALIASES]\n"1254" [ALIASES]\n"
1255" tip = log -r-1\n"1255" tip = log -r-1\n"
@@ -1257,20 +1257,20 @@
1257" show = log -v -p"1257" show = log -v -p"
1258msgstr ""1258msgstr ""
12591259
1260#: bzrlib/builtins.py:23621260#: bzrlib/builtins.py:2361
1261msgid ""1261msgid ""
1262" ``bzr tip`` will then show the latest revision while ``bzr top``\n"1262" ``bzr tip`` will then show the latest revision while ``bzr top``\n"
1263" will show the last 10 mainline revisions. To see the details of a\n"1263" will show the last 10 mainline revisions. To see the details of a\n"
1264" particular revision X, ``bzr show -rX``."1264" particular revision X, ``bzr show -rX``."
1265msgstr ""1265msgstr ""
12661266
1267#: bzrlib/builtins.py:23661267#: bzrlib/builtins.py:2365
1268msgid ""1268msgid ""
1269" If you are interested in looking deeper into a particular merge X,\n"1269" If you are interested in looking deeper into a particular merge X,\n"
1270" use ``bzr log -n0 -rX``."1270" use ``bzr log -n0 -rX``."
1271msgstr ""1271msgstr ""
12721272
1273#: bzrlib/builtins.py:23691273#: bzrlib/builtins.py:2368
1274msgid ""1274msgid ""
1275" ``bzr log -v`` on a branch with lots of history is currently\n"1275" ``bzr log -v`` on a branch with lots of history is currently\n"
1276" very slow. A fix for this issue is currently under development.\n"1276" very slow. A fix for this issue is currently under development.\n"
@@ -1278,7 +1278,7 @@
1278" be given when using the -v option."1278" be given when using the -v option."
1279msgstr ""1279msgstr ""
12801280
1281#: bzrlib/builtins.py:23741281#: bzrlib/builtins.py:2373
1282msgid ""1282msgid ""
1283" bzr has a generic full-text matching plugin, bzr-search, that can be\n"1283" bzr has a generic full-text matching plugin, bzr-search, that can be\n"
1284" used to find revisions matching user names, commit messages, etc.\n"1284" used to find revisions matching user names, commit messages, etc.\n"
@@ -1286,7 +1286,7 @@
1286" a list of words but not others."1286" a list of words but not others."
1287msgstr ""1287msgstr ""
12881288
1289#: bzrlib/builtins.py:23791289#: bzrlib/builtins.py:2378
1290msgid ""1290msgid ""
1291" When exploring non-mainline history on large projects with deep\n"1291" When exploring non-mainline history on large projects with deep\n"
1292" history, the performance of log can be greatly improved by installing\n"1292" history, the performance of log can be greatly improved by installing\n"
@@ -1295,132 +1295,132 @@
1295msgstr ""1295msgstr ""
12961296
1297# help of 'forward' option of 'log' command1297# help of 'forward' option of 'log' command
1298#: bzrlib/builtins.py:23881298#: bzrlib/builtins.py:2387
1299msgid "Show from oldest to newest."1299msgid "Show from oldest to newest."
1300msgstr ""1300msgstr ""
13011301
1302# help of 'verbose' option of 'log' command1302# help of 'verbose' option of 'log' command
1303#: bzrlib/builtins.py:23911303#: bzrlib/builtins.py:2390
1304msgid "Show files changed in each revision."1304msgid "Show files changed in each revision."
1305msgstr ""1305msgstr ""
13061306
1307# help of 'change' option of 'log' command1307# help of 'change' option of 'log' command
1308#: bzrlib/builtins.py:23971308#: bzrlib/builtins.py:2396
1309msgid "Show just the specified revision. See also \"help revisionspec\"."1309msgid "Show just the specified revision. See also \"help revisionspec\"."
1310msgstr ""1310msgstr ""
13111311
1312# help of 'authors' option of 'log' command1312# help of 'authors' option of 'log' command
1313#: bzrlib/builtins.py:24011313#: bzrlib/builtins.py:2400
1314msgid "What names to list as authors - first, all or committer."1314msgid "What names to list as authors - first, all or committer."
1315msgstr ""1315msgstr ""
13161316
1317# title of 'authors' option of 'log' command1317# title of 'authors' option of 'log' command
1318#: bzrlib/builtins.py:24021318#: bzrlib/builtins.py:2401
1319msgid "Authors"1319msgid "Authors"
1320msgstr ""1320msgstr ""
13211321
1322# help of 'levels' option of 'log' command1322# help of 'levels' option of 'log' command
1323#: bzrlib/builtins.py:24071323#: bzrlib/builtins.py:2406
1324msgid "Number of levels to display - 0 for all, 1 for flat."1324msgid "Number of levels to display - 0 for all, 1 for flat."
1325msgstr ""1325msgstr ""
13261326
1327# help of 'limit' option of 'log' command1327# help of 'limit' option of 'log' command
1328#: bzrlib/builtins.py:24171328#: bzrlib/builtins.py:2416
1329msgid "Limit the output to the first N revisions."1329msgid "Limit the output to the first N revisions."
1330msgstr ""1330msgstr ""
13311331
1332# help of 'show-diff' option of 'log' command1332# help of 'show-diff' option of 'log' command
1333#: bzrlib/builtins.py:24221333#: bzrlib/builtins.py:2421
1334msgid "Show changes made in each revision as a patch."1334msgid "Show changes made in each revision as a patch."
1335msgstr ""1335msgstr ""
13361336
1337# help of 'include-merges' option of 'log' command1337# help of 'include-merges' option of 'log' command
1338#: bzrlib/builtins.py:24241338#: bzrlib/builtins.py:2423
1339msgid "Show merged revisions like --levels 0 does."1339msgid "Show merged revisions like --levels 0 does."
1340msgstr ""1340msgstr ""
13411341
1342# help of 'exclude-common-ancestry' option of 'log' command1342# help of 'exclude-common-ancestry' option of 'log' command
1343#: bzrlib/builtins.py:24261343#: bzrlib/builtins.py:2425
1344msgid ""1344msgid ""
1345"Display only the revisions that are not part of both ancestries (require -"1345"Display only the revisions that are not part of both ancestries (require -"
1346"rX..Y)"1346"rX..Y)"
1347msgstr ""1347msgstr ""
13481348
1349# help of 'signatures' option of 'log' command1349# help of 'signatures' option of 'log' command
1350#: bzrlib/builtins.py:24301350#: bzrlib/builtins.py:2429
1351msgid "Show digital signature validity"1351msgid "Show digital signature validity"
1352msgstr ""1352msgstr ""
13531353
1354# help of 'match' option of 'log' command1354# help of 'match' option of 'log' command
1355#: bzrlib/builtins.py:24331355#: bzrlib/builtins.py:2432
1356msgid "Show revisions whose properties match this expression."1356msgid "Show revisions whose properties match this expression."
1357msgstr ""1357msgstr ""
13581358
1359# help of 'match-message' option of 'log' command1359# help of 'match-message' option of 'log' command
1360#: bzrlib/builtins.py:24371360#: bzrlib/builtins.py:2436
1361msgid "Show revisions whose message matches this expression."1361msgid "Show revisions whose message matches this expression."
1362msgstr ""1362msgstr ""
13631363
1364# help of 'match-committer' option of 'log' command1364# help of 'match-committer' option of 'log' command
1365#: bzrlib/builtins.py:24411365#: bzrlib/builtins.py:2440
1366msgid "Show revisions whose committer matches this expression."1366msgid "Show revisions whose committer matches this expression."
1367msgstr ""1367msgstr ""
13681368
1369# help of 'match-author' option of 'log' command1369# help of 'match-author' option of 'log' command
1370#: bzrlib/builtins.py:24451370#: bzrlib/builtins.py:2444
1371msgid "Show revisions whose authors match this expression."1371msgid "Show revisions whose authors match this expression."
1372msgstr ""1372msgstr ""
13731373
1374# help of 'match-bugs' option of 'log' command1374# help of 'match-bugs' option of 'log' command
1375#: bzrlib/builtins.py:24491375#: bzrlib/builtins.py:2448
1376msgid "Show revisions whose bugs match this expression."1376msgid "Show revisions whose bugs match this expression."
1377msgstr ""1377msgstr ""
13781378
1379#: bzrlib/builtins.py:26901379#: bzrlib/builtins.py:2689
1380msgid ""1380msgid ""
1381"List files in a tree.\n"1381"List files in a tree.\n"
1382" "1382" "
1383msgstr ""1383msgstr ""
13841384
1385# help of 'recursive' option of 'ls' command1385# help of 'recursive' option of 'ls' command
1386#: bzrlib/builtins.py:26991386#: bzrlib/builtins.py:2698
1387msgid "Recurse into subdirectories."1387msgid "Recurse into subdirectories."
1388msgstr ""1388msgstr ""
13891389
1390# help of 'from-root' option of 'ls' command1390# help of 'from-root' option of 'ls' command
1391#: bzrlib/builtins.py:27011391#: bzrlib/builtins.py:2700
1392msgid "Print paths relative to the root of the branch."1392msgid "Print paths relative to the root of the branch."
1393msgstr ""1393msgstr ""
13941394
1395# help of 'unknown' option of 'ls' command1395# help of 'unknown' option of 'ls' command
1396#: bzrlib/builtins.py:27031396#: bzrlib/builtins.py:2702
1397msgid "Print unknown files."1397msgid "Print unknown files."
1398msgstr ""1398msgstr ""
13991399
1400# help of 'versioned' option of 'ls' command1400# help of 'versioned' option of 'ls' command
1401#: bzrlib/builtins.py:27041401#: bzrlib/builtins.py:2703
1402msgid "Print versioned files."1402msgid "Print versioned files."
1403msgstr ""1403msgstr ""
14041404
1405# help of 'ignored' option of 'ls' command1405# help of 'ignored' option of 'ls' command
1406#: bzrlib/builtins.py:27071406#: bzrlib/builtins.py:2706
1407msgid "Print ignored files."1407msgid "Print ignored files."
1408msgstr ""1408msgstr ""
14091409
1410# help of 'kind' option of 'ls' command1410# help of 'kind' option of 'ls' command
1411#: bzrlib/builtins.py:27091411#: bzrlib/builtins.py:2708
1412msgid "List entries of a particular kind: file, directory, symlink."1412msgid "List entries of a particular kind: file, directory, symlink."
1413msgstr ""1413msgstr ""
14141414
1415#: bzrlib/builtins.py:28211415#: bzrlib/builtins.py:2820
1416msgid "Ignore specified files or patterns."1416msgid "Ignore specified files or patterns."
1417msgstr ""1417msgstr ""
14181418
1419#: bzrlib/builtins.py:28231419#: bzrlib/builtins.py:2822
1420msgid "See ``bzr help patterns`` for details on the syntax of patterns."1420msgid "See ``bzr help patterns`` for details on the syntax of patterns."
1421msgstr ""1421msgstr ""
14221422
1423#: bzrlib/builtins.py:28251423#: bzrlib/builtins.py:2824
1424msgid ""1424msgid ""
1425"If a .bzrignore file does not exist, the ignore command\n"1425"If a .bzrignore file does not exist, the ignore command\n"
1426"will create one and add the specified files or patterns to the newly\n"1426"will create one and add the specified files or patterns to the newly\n"
@@ -1429,7 +1429,7 @@
1429"the use of the ignore command will require an explicit add command."1429"the use of the ignore command will require an explicit add command."
1430msgstr ""1430msgstr ""
14311431
1432#: bzrlib/builtins.py:28311432#: bzrlib/builtins.py:2830
1433msgid ""1433msgid ""
1434"To remove patterns from the ignore list, edit the .bzrignore file.\n"1434"To remove patterns from the ignore list, edit the .bzrignore file.\n"
1435"After adding, editing or deleting that file either indirectly by\n"1435"After adding, editing or deleting that file either indirectly by\n"
@@ -1437,7 +1437,7 @@
1437"it."1437"it."
1438msgstr ""1438msgstr ""
14391439
1440#: bzrlib/builtins.py:28361440#: bzrlib/builtins.py:2835
1441msgid ""1441msgid ""
1442"Bazaar also supports a global ignore file ~/.bazaar/ignore. On Windows\n"1442"Bazaar also supports a global ignore file ~/.bazaar/ignore. On Windows\n"
1443"the global ignore file can be found in the application data directory as\n"1443"the global ignore file can be found in the application data directory as\n"
@@ -1446,20 +1446,20 @@
1446"can be edited directly using an editor."1446"can be edited directly using an editor."
1447msgstr ""1447msgstr ""
14481448
1449#: bzrlib/builtins.py:28421449#: bzrlib/builtins.py:2841
1450msgid ""1450msgid ""
1451"Patterns prefixed with '!' are exceptions to ignore patterns and take\n"1451"Patterns prefixed with '!' are exceptions to ignore patterns and take\n"
1452"precedence over regular ignores. Such exceptions are used to specify\n"1452"precedence over regular ignores. Such exceptions are used to specify\n"
1453"files that should be versioned which would otherwise be ignored."1453"files that should be versioned which would otherwise be ignored."
1454msgstr ""1454msgstr ""
14551455
1456#: bzrlib/builtins.py:28461456#: bzrlib/builtins.py:2845
1457msgid ""1457msgid ""
1458"Patterns prefixed with '!!' act as regular ignore patterns, but have\n"1458"Patterns prefixed with '!!' act as regular ignore patterns, but have\n"
1459"precedence over the '!' exception patterns."1459"precedence over the '!' exception patterns."
1460msgstr ""1460msgstr ""
14611461
1462#: bzrlib/builtins.py:28491462#: bzrlib/builtins.py:2848
1463msgid ""1463msgid ""
1464":Notes: \n"1464":Notes: \n"
1465" \n"1465" \n"
@@ -1467,63 +1467,63 @@
1467" the shell on Unix."1467" the shell on Unix."
1468msgstr ""1468msgstr ""
14691469
1470#: bzrlib/builtins.py:28541470#: bzrlib/builtins.py:2853
1471msgid ""1471msgid ""
1472"* Ignore patterns starting with \"#\" act as comments in the ignore file.\n"1472"* Ignore patterns starting with \"#\" act as comments in the ignore file.\n"
1473" To ignore patterns that begin with that character, use the \"RE:\" prefix."1473" To ignore patterns that begin with that character, use the \"RE:\" prefix."
1474msgstr ""1474msgstr ""
14751475
1476#: bzrlib/builtins.py:28571476#: bzrlib/builtins.py:2856
1477msgid ""1477msgid ""
1478":Examples:\n"1478":Examples:\n"
1479" Ignore the top level Makefile::"1479" Ignore the top level Makefile::"
1480msgstr ""1480msgstr ""
14811481
1482#: bzrlib/builtins.py:28601482#: bzrlib/builtins.py:2859
1483msgid " bzr ignore ./Makefile"1483msgid " bzr ignore ./Makefile"
1484msgstr ""1484msgstr ""
14851485
1486#: bzrlib/builtins.py:28621486#: bzrlib/builtins.py:2861
1487msgid " Ignore .class files in all directories...::"1487msgid " Ignore .class files in all directories...::"
1488msgstr ""1488msgstr ""
14891489
1490#: bzrlib/builtins.py:28641490#: bzrlib/builtins.py:2863
1491msgid " bzr ignore \"*.class\""1491msgid " bzr ignore \"*.class\""
1492msgstr ""1492msgstr ""
14931493
1494#: bzrlib/builtins.py:28661494#: bzrlib/builtins.py:2865
1495msgid " ...but do not ignore \"special.class\"::"1495msgid " ...but do not ignore \"special.class\"::"
1496msgstr ""1496msgstr ""
14971497
1498#: bzrlib/builtins.py:28681498#: bzrlib/builtins.py:2867
1499msgid " bzr ignore \"!special.class\""1499msgid " bzr ignore \"!special.class\""
1500msgstr ""1500msgstr ""
15011501
1502#: bzrlib/builtins.py:28701502#: bzrlib/builtins.py:2869
1503msgid " Ignore files whose name begins with the \"#\" character::"1503msgid " Ignore files whose name begins with the \"#\" character::"
1504msgstr ""1504msgstr ""
15051505
1506#: bzrlib/builtins.py:28721506#: bzrlib/builtins.py:2871
1507msgid " bzr ignore \"RE:^#\""1507msgid " bzr ignore \"RE:^#\""
1508msgstr ""1508msgstr ""
15091509
1510#: bzrlib/builtins.py:28741510#: bzrlib/builtins.py:2873
1511msgid " Ignore .o files under the lib directory::"1511msgid " Ignore .o files under the lib directory::"
1512msgstr ""1512msgstr ""
15131513
1514#: bzrlib/builtins.py:28761514#: bzrlib/builtins.py:2875
1515msgid " bzr ignore \"lib/**/*.o\""1515msgid " bzr ignore \"lib/**/*.o\""
1516msgstr ""1516msgstr ""
15171517
1518#: bzrlib/builtins.py:28801518#: bzrlib/builtins.py:2879
1519msgid " bzr ignore \"RE:lib/.*\\.o\""1519msgid " bzr ignore \"RE:lib/.*\\.o\""
1520msgstr ""1520msgstr ""
15211521
1522#: bzrlib/builtins.py:28821522#: bzrlib/builtins.py:2881
1523msgid " Ignore everything but the \"debian\" toplevel directory::"1523msgid " Ignore everything but the \"debian\" toplevel directory::"
1524msgstr ""1524msgstr ""
15251525
1526#: bzrlib/builtins.py:28841526#: bzrlib/builtins.py:2883
1527msgid ""1527msgid ""
1528" bzr ignore \"RE:(?!debian/).*\"\n"1528" bzr ignore \"RE:(?!debian/).*\"\n"
1529" \n"1529" \n"
@@ -1536,61 +1536,61 @@
1536msgstr ""1536msgstr ""
15371537
1538# help of 'default-rules' option of 'ignore' command1538# help of 'default-rules' option of 'ignore' command
1539#: bzrlib/builtins.py:28981539#: bzrlib/builtins.py:2897
1540msgid "Display the default ignore rules that bzr uses."1540msgid "Display the default ignore rules that bzr uses."
1541msgstr ""1541msgstr ""
15421542
1543#: bzrlib/builtins.py:29461543#: bzrlib/builtins.py:2945
1544msgid "List ignored files and the patterns that matched them."1544msgid "List ignored files and the patterns that matched them."
1545msgstr ""1545msgstr ""
15461546
1547#: bzrlib/builtins.py:29481547#: bzrlib/builtins.py:2947
1548msgid ""1548msgid ""
1549"List all the ignored files and the ignore pattern that caused the file to\n"1549"List all the ignored files and the ignore pattern that caused the file to\n"
1550"be ignored."1550"be ignored."
1551msgstr ""1551msgstr ""
15521552
1553#: bzrlib/builtins.py:29511553#: bzrlib/builtins.py:2950
1554msgid "Alternatively, to list just the files::"1554msgid "Alternatively, to list just the files::"
1555msgstr ""1555msgstr ""
15561556
1557#: bzrlib/builtins.py:29531557#: bzrlib/builtins.py:2952
1558msgid " bzr ls --ignored"1558msgid " bzr ls --ignored"
1559msgstr ""1559msgstr ""
15601560
1561#: bzrlib/builtins.py:29941561#: bzrlib/builtins.py:2993
1562msgid "Export current or past revision to a destination directory or archive."1562msgid "Export current or past revision to a destination directory or archive."
1563msgstr ""1563msgstr ""
15641564
1565#: bzrlib/builtins.py:29961565#: bzrlib/builtins.py:2995
1566msgid "If no revision is specified this exports the last committed revision."1566msgid "If no revision is specified this exports the last committed revision."
1567msgstr ""1567msgstr ""
15681568
1569#: bzrlib/builtins.py:29981569#: bzrlib/builtins.py:2997
1570msgid ""1570msgid ""
1571"Format may be an \"exporter\" name, such as tar, tgz, tbz2. If none is\n"1571"Format may be an \"exporter\" name, such as tar, tgz, tbz2. If none is\n"
1572"given, try to find the format with the extension. If no extension\n"1572"given, try to find the format with the extension. If no extension\n"
1573"is found exports to a directory (equivalent to --format=dir)."1573"is found exports to a directory (equivalent to --format=dir)."
1574msgstr ""1574msgstr ""
15751575
1576#: bzrlib/builtins.py:30021576#: bzrlib/builtins.py:3001
1577msgid ""1577msgid ""
1578"If root is supplied, it will be used as the root directory inside\n"1578"If root is supplied, it will be used as the root directory inside\n"
1579"container formats (tar, zip, etc). If it is not supplied it will default\n"1579"container formats (tar, zip, etc). If it is not supplied it will default\n"
1580"to the exported filename. The root option has no effect for 'dir' format."1580"to the exported filename. The root option has no effect for 'dir' format."
1581msgstr ""1581msgstr ""
15821582
1583#: bzrlib/builtins.py:30061583#: bzrlib/builtins.py:3005
1584msgid ""1584msgid ""
1585"If branch is omitted then the branch containing the current working\n"1585"If branch is omitted then the branch containing the current working\n"
1586"directory will be used."1586"directory will be used."
1587msgstr ""1587msgstr ""
15881588
1589#: bzrlib/builtins.py:30091589#: bzrlib/builtins.py:3008
1590msgid "Note: Export of tree with non-ASCII filenames to zip is not supported."1590msgid "Note: Export of tree with non-ASCII filenames to zip is not supported."
1591msgstr ""1591msgstr ""
15921592
1593#: bzrlib/builtins.py:30111593#: bzrlib/builtins.py:3010
1594msgid ""1594msgid ""
1595" ================= =========================\n"1595" ================= =========================\n"
1596" Supported formats Autodetected by extension\n"1596" Supported formats Autodetected by extension\n"
@@ -1604,51 +1604,51 @@
1604msgstr ""1604msgstr ""
16051605
1606# help of 'format' option of 'export' command1606# help of 'format' option of 'export' command
1607#: bzrlib/builtins.py:30251607#: bzrlib/builtins.py:3024
1608msgid "Type of file to export to."1608msgid "Type of file to export to."
1609msgstr ""1609msgstr ""
16101610
1611# help of 'filters' option of 'export' command1611# help of 'filters' option of 'export' command
1612#: bzrlib/builtins.py:30281612#: bzrlib/builtins.py:3027
1613msgid "Apply content filters to export the convenient form."1613msgid "Apply content filters to export the convenient form."
1614msgstr ""1614msgstr ""
16151615
1616# help of 'root' option of 'export' command1616# help of 'root' option of 'export' command
1617#: bzrlib/builtins.py:30321617#: bzrlib/builtins.py:3031
1618msgid "Name of the root directory inside the exported file."1618msgid "Name of the root directory inside the exported file."
1619msgstr ""1619msgstr ""
16201620
1621# help of 'per-file-timestamps' option of 'export' command1621# help of 'per-file-timestamps' option of 'export' command
1622#: bzrlib/builtins.py:30341622#: bzrlib/builtins.py:3033
1623msgid ""1623msgid ""
1624"Set modification time of files to that of the last revision in which it was "1624"Set modification time of files to that of the last revision in which it was "
1625"changed."1625"changed."
1626msgstr ""1626msgstr ""
16271627
1628#: bzrlib/builtins.py:30581628#: bzrlib/builtins.py:3057
1629msgid "Write the contents of a file as of a given revision to standard output."1629msgid "Write the contents of a file as of a given revision to standard output."
1630msgstr ""1630msgstr ""
16311631
1632#: bzrlib/builtins.py:30601632#: bzrlib/builtins.py:3059
1633msgid "If no revision is nominated, the last revision is used."1633msgid "If no revision is nominated, the last revision is used."
1634msgstr ""1634msgstr ""
16351635
1636#: bzrlib/builtins.py:30621636#: bzrlib/builtins.py:3061
1637msgid ""1637msgid ""
1638"Note: Take care to redirect standard output when using this command on a\n"1638"Note: Take care to redirect standard output when using this command on a\n"
1639"binary file."1639"binary file."
1640msgstr ""1640msgstr ""
16411641
1642# help of 'filters' option of 'cat' command1642# help of 'filters' option of 'cat' command
1643#: bzrlib/builtins.py:30691643#: bzrlib/builtins.py:3068
1644msgid "Apply content filters to display the convenience form."1644msgid "Apply content filters to display the convenience form."
1645msgstr ""1645msgstr ""
16461646
1647#: bzrlib/builtins.py:31401647#: bzrlib/builtins.py:3139
1648msgid "Commit changes into a new revision."1648msgid "Commit changes into a new revision."
1649msgstr ""1649msgstr ""
16501650
1651#: bzrlib/builtins.py:31421651#: bzrlib/builtins.py:3141
1652msgid ""1652msgid ""
1653"An explanatory message needs to be given for each commit. This is\n"1653"An explanatory message needs to be given for each commit. This is\n"
1654"often done by using the --message option (getting the message from the\n"1654"often done by using the --message option (getting the message from the\n"
@@ -1658,44 +1658,44 @@
1658"boilerplate text loaded into the editor, use the --show-diff option."1658"boilerplate text loaded into the editor, use the --show-diff option."
1659msgstr ""1659msgstr ""
16601660
1661#: bzrlib/builtins.py:31491661#: bzrlib/builtins.py:3148
1662msgid ""1662msgid ""
1663"By default, the entire tree is committed and the person doing the\n"1663"By default, the entire tree is committed and the person doing the\n"
1664"commit is assumed to be the author. These defaults can be overridden\n"1664"commit is assumed to be the author. These defaults can be overridden\n"
1665"as explained below."1665"as explained below."
1666msgstr ""1666msgstr ""
16671667
1668#: bzrlib/builtins.py:31531668#: bzrlib/builtins.py:3152
1669msgid ":Selective commits:"1669msgid ":Selective commits:"
1670msgstr ""1670msgstr ""
16711671
1672#: bzrlib/builtins.py:31551672#: bzrlib/builtins.py:3154
1673msgid ""1673msgid ""
1674" If selected files are specified, only changes to those files are\n"1674" If selected files are specified, only changes to those files are\n"
1675" committed. If a directory is specified then the directory and\n"1675" committed. If a directory is specified then the directory and\n"
1676" everything within it is committed."1676" everything within it is committed."
1677msgstr ""1677msgstr ""
16781678
1679#: bzrlib/builtins.py:31591679#: bzrlib/builtins.py:3158
1680msgid ""1680msgid ""
1681" When excludes are given, they take precedence over selected files.\n"1681" When excludes are given, they take precedence over selected files.\n"
1682" For example, to commit only changes within foo, but not changes\n"1682" For example, to commit only changes within foo, but not changes\n"
1683" within foo/bar::"1683" within foo/bar::"
1684msgstr ""1684msgstr ""
16851685
1686#: bzrlib/builtins.py:31631686#: bzrlib/builtins.py:3162
1687msgid " bzr commit foo -x foo/bar"1687msgid " bzr commit foo -x foo/bar"
1688msgstr ""1688msgstr ""
16891689
1690#: bzrlib/builtins.py:31651690#: bzrlib/builtins.py:3164
1691msgid " A selective commit after a merge is not yet supported."1691msgid " A selective commit after a merge is not yet supported."
1692msgstr ""1692msgstr ""
16931693
1694#: bzrlib/builtins.py:31671694#: bzrlib/builtins.py:3166
1695msgid ":Custom authors:"1695msgid ":Custom authors:"
1696msgstr ""1696msgstr ""
16971697
1698#: bzrlib/builtins.py:31691698#: bzrlib/builtins.py:3168
1699msgid ""1699msgid ""
1700" If the author of the change is not the same person as the committer,\n"1700" If the author of the change is not the same person as the committer,\n"
1701" you can specify the author's name using the --author option. The\n"1701" you can specify the author's name using the --author option. The\n"
@@ -1705,11 +1705,11 @@
1705" author."1705" author."
1706msgstr ""1706msgstr ""
17071707
1708#: bzrlib/builtins.py:31761708#: bzrlib/builtins.py:3175
1709msgid ":Checks:"1709msgid ":Checks:"
1710msgstr ""1710msgstr ""
17111711
1712#: bzrlib/builtins.py:31781712#: bzrlib/builtins.py:3177
1713msgid ""1713msgid ""
1714" A common mistake is to forget to add a new file or directory before\n"1714" A common mistake is to forget to add a new file or directory before\n"
1715" running the commit command. The --strict option checks for unknown\n"1715" running the commit command. The --strict option checks for unknown\n"
@@ -1718,18 +1718,18 @@
1718" for details."1718" for details."
1719msgstr ""1719msgstr ""
17201720
1721#: bzrlib/builtins.py:31841721#: bzrlib/builtins.py:3183
1722msgid ":Things to note:"1722msgid ":Things to note:"
1723msgstr ""1723msgstr ""
17241724
1725#: bzrlib/builtins.py:31861725#: bzrlib/builtins.py:3185
1726msgid ""1726msgid ""
1727" If you accidentially commit the wrong changes or make a spelling\n"1727" If you accidentially commit the wrong changes or make a spelling\n"
1728" mistake in the commit message say, you can use the uncommit command\n"1728" mistake in the commit message say, you can use the uncommit command\n"
1729" to undo it. See ``bzr help uncommit`` for details."1729" to undo it. See ``bzr help uncommit`` for details."
1730msgstr ""1730msgstr ""
17311731
1732#: bzrlib/builtins.py:31901732#: bzrlib/builtins.py:3189
1733msgid ""1733msgid ""
1734" Hooks can also be configured to run after a commit. This allows you\n"1734" Hooks can also be configured to run after a commit. This allows you\n"
1735" to trigger updates to external systems like bug trackers. The --fixes\n"1735" to trigger updates to external systems like bug trackers. The --fixes\n"
@@ -1738,100 +1738,100 @@
1738msgstr ""1738msgstr ""
17391739
1740# help of 'exclude' option of 'commit' command1740# help of 'exclude' option of 'commit' command
1741#: bzrlib/builtins.py:32001741#: bzrlib/builtins.py:3199
1742msgid "Do not consider changes made to a given path."1742msgid "Do not consider changes made to a given path."
1743msgstr ""1743msgstr ""
17441744
1745# help of 'message' option of 'commit' command1745# help of 'message' option of 'commit' command
1746#: bzrlib/builtins.py:32031746#: bzrlib/builtins.py:3202
1747msgid "Description of the new revision."1747msgid "Description of the new revision."
1748msgstr ""1748msgstr ""
17491749
1750# help of 'unchanged' option of 'commit' command1750# help of 'unchanged' option of 'commit' command
1751#: bzrlib/builtins.py:32061751#: bzrlib/builtins.py:3205
1752msgid "Commit even if nothing has changed."1752msgid "Commit even if nothing has changed."
1753msgstr ""1753msgstr ""
17541754
1755# help of 'file' option of 'commit' command1755# help of 'file' option of 'commit' command
1756#: bzrlib/builtins.py:32101756#: bzrlib/builtins.py:3209
1757msgid "Take commit message from this file."1757msgid "Take commit message from this file."
1758msgstr ""1758msgstr ""
17591759
1760# help of 'strict' option of 'commit' command1760# help of 'strict' option of 'commit' command
1761#: bzrlib/builtins.py:32121761#: bzrlib/builtins.py:3211
1762msgid "Refuse to commit if there are unknown files in the working tree."1762msgid "Refuse to commit if there are unknown files in the working tree."
1763msgstr ""1763msgstr ""
17641764
1765# help of 'commit-time' option of 'commit' command1765# help of 'commit-time' option of 'commit' command
1766#: bzrlib/builtins.py:32151766#: bzrlib/builtins.py:3214
1767msgid ""1767msgid ""
1768"Manually set a commit time using commit date format, e.g. '2009-10-10 "1768"Manually set a commit time using commit date format, e.g. '2009-10-10 "
1769"08:00:00 +0100'."1769"08:00:00 +0100'."
1770msgstr ""1770msgstr ""
17711771
1772# help of 'fixes' option of 'commit' command1772# help of 'fixes' option of 'commit' command
1773#: bzrlib/builtins.py:32181773#: bzrlib/builtins.py:3217
1774msgid "Mark a bug as being fixed by this revision (see \"bzr help bugs\")."1774msgid "Mark a bug as being fixed by this revision (see \"bzr help bugs\")."
1775msgstr ""1775msgstr ""
17761776
1777# help of 'author' option of 'commit' command1777# help of 'author' option of 'commit' command
1778#: bzrlib/builtins.py:32211778#: bzrlib/builtins.py:3220
1779msgid "Set the author's name, if it's different from the committer."1779msgid "Set the author's name, if it's different from the committer."
1780msgstr ""1780msgstr ""
17811781
1782# help of 'local' option of 'commit' command1782# help of 'local' option of 'commit' command
1783#: bzrlib/builtins.py:32241783#: bzrlib/builtins.py:3223
1784msgid ""1784msgid ""
1785"Perform a local commit in a bound branch. Local commits are not pushed to "1785"Perform a local commit in a bound branch. Local commits are not pushed to "
1786"the master branch until a normal commit is performed."1786"the master branch until a normal commit is performed."
1787msgstr ""1787msgstr ""
17881788
1789# help of 'show-diff' option of 'commit' command1789# help of 'show-diff' option of 'commit' command
1790#: bzrlib/builtins.py:32301790#: bzrlib/builtins.py:3229
1791msgid ""1791msgid ""
1792"When no message is supplied, show the diff along with the status summary in "1792"When no message is supplied, show the diff along with the status summary in "
1793"the message editor."1793"the message editor."
1794msgstr ""1794msgstr ""
17951795
1796# help of 'lossy' option of 'commit' command1796# help of 'lossy' option of 'commit' command
1797#: bzrlib/builtins.py:32331797#: bzrlib/builtins.py:3232
1798msgid ""1798msgid ""
1799"When committing to a foreign version control system do not push data that "1799"When committing to a foreign version control system do not push data that "
1800"can not be natively represented."1800"can not be natively represented."
1801msgstr ""1801msgstr ""
18021802
1803#: bzrlib/builtins.py:33911803#: bzrlib/builtins.py:3406
1804msgid ""1804msgid ""
1805"Validate working tree structure, branch consistency and repository history."1805"Validate working tree structure, branch consistency and repository history."
1806msgstr ""1806msgstr ""
18071807
1808#: bzrlib/builtins.py:33931808#: bzrlib/builtins.py:3408
1809msgid ""1809msgid ""
1810"This command checks various invariants about branch and repository storage\n"1810"This command checks various invariants about branch and repository storage\n"
1811"to detect data corruption or bzr bugs."1811"to detect data corruption or bzr bugs."
1812msgstr ""1812msgstr ""
18131813
1814#: bzrlib/builtins.py:33961814#: bzrlib/builtins.py:3411
1815msgid ""1815msgid ""
1816"The working tree and branch checks will only give output if a problem is\n"1816"The working tree and branch checks will only give output if a problem is\n"
1817"detected. The output fields of the repository check are:"1817"detected. The output fields of the repository check are:"
1818msgstr ""1818msgstr ""
18191819
1820#: bzrlib/builtins.py:33991820#: bzrlib/builtins.py:3414
1821msgid ""1821msgid ""
1822"revisions\n"1822"revisions\n"
1823" This is just the number of revisions checked. It doesn't\n"1823" This is just the number of revisions checked. It doesn't\n"
1824" indicate a problem."1824" indicate a problem."
1825msgstr ""1825msgstr ""
18261826
1827#: bzrlib/builtins.py:34031827#: bzrlib/builtins.py:3418
1828msgid ""1828msgid ""
1829"versionedfiles\n"1829"versionedfiles\n"
1830" This is just the number of versionedfiles checked. It\n"1830" This is just the number of versionedfiles checked. It\n"
1831" doesn't indicate a problem."1831" doesn't indicate a problem."
1832msgstr ""1832msgstr ""
18331833
1834#: bzrlib/builtins.py:34071834#: bzrlib/builtins.py:3422
1835msgid ""1835msgid ""
1836"unreferenced ancestors\n"1836"unreferenced ancestors\n"
1837" Texts that are ancestors of other texts, but\n"1837" Texts that are ancestors of other texts, but\n"
@@ -1839,14 +1839,14 @@
1839" subtle problem that Bazaar can work around."1839" subtle problem that Bazaar can work around."
1840msgstr ""1840msgstr ""
18411841
1842#: bzrlib/builtins.py:34121842#: bzrlib/builtins.py:3427
1843msgid ""1843msgid ""
1844"unique file texts\n"1844"unique file texts\n"
1845" This is the total number of unique file contents\n"1845" This is the total number of unique file contents\n"
1846" seen in the checked revisions. It does not indicate a problem."1846" seen in the checked revisions. It does not indicate a problem."
1847msgstr ""1847msgstr ""
18481848
1849#: bzrlib/builtins.py:34161849#: bzrlib/builtins.py:3431
1850msgid ""1850msgid ""
1851"repeated file texts\n"1851"repeated file texts\n"
1852" This is the total number of repeated texts seen\n"1852" This is the total number of repeated texts seen\n"
@@ -1855,61 +1855,61 @@
1855" indicate a problem."1855" indicate a problem."
1856msgstr ""1856msgstr ""
18571857
1858#: bzrlib/builtins.py:34221858#: bzrlib/builtins.py:3437
1859msgid ""1859msgid ""
1860"If no restrictions are specified, all Bazaar data that is found at the "1860"If no restrictions are specified, all Bazaar data that is found at the "
1861"given\n"1861"given\n"
1862"location will be checked."1862"location will be checked."
1863msgstr ""1863msgstr ""
18641864
1865#: bzrlib/builtins.py:34251865#: bzrlib/builtins.py:3440
1866msgid ":Examples:"1866msgid ":Examples:"
1867msgstr ""1867msgstr ""
18681868
1869#: bzrlib/builtins.py:34271869#: bzrlib/builtins.py:3442
1870msgid " Check the tree and branch at 'foo'::"1870msgid " Check the tree and branch at 'foo'::"
1871msgstr ""1871msgstr ""
18721872
1873#: bzrlib/builtins.py:34291873#: bzrlib/builtins.py:3444
1874msgid " bzr check --tree --branch foo"1874msgid " bzr check --tree --branch foo"
1875msgstr ""1875msgstr ""
18761876
1877#: bzrlib/builtins.py:34311877#: bzrlib/builtins.py:3446
1878msgid " Check only the repository at 'bar'::"1878msgid " Check only the repository at 'bar'::"
1879msgstr ""1879msgstr ""
18801880
1881#: bzrlib/builtins.py:34331881#: bzrlib/builtins.py:3448
1882msgid " bzr check --repo bar"1882msgid " bzr check --repo bar"
1883msgstr ""1883msgstr ""
18841884
1885#: bzrlib/builtins.py:34351885#: bzrlib/builtins.py:3450
1886msgid " Check everything at 'baz'::"1886msgid " Check everything at 'baz'::"
1887msgstr ""1887msgstr ""
18881888
1889#: bzrlib/builtins.py:34371889#: bzrlib/builtins.py:3452
1890msgid " bzr check baz"1890msgid " bzr check baz"
1891msgstr ""1891msgstr ""
18921892
1893# help of 'branch' option of 'check' command1893# help of 'branch' option of 'check' command
1894#: bzrlib/builtins.py:34431894#: bzrlib/builtins.py:3458
1895msgid "Check the branch related to the current directory."1895msgid "Check the branch related to the current directory."
1896msgstr ""1896msgstr ""
18971897
1898# help of 'repo' option of 'check' command1898# help of 'repo' option of 'check' command
1899#: bzrlib/builtins.py:34451899#: bzrlib/builtins.py:3460
1900msgid "Check the repository related to the current directory."1900msgid "Check the repository related to the current directory."
1901msgstr ""1901msgstr ""
19021902
1903# help of 'tree' option of 'check' command1903# help of 'tree' option of 'check' command
1904#: bzrlib/builtins.py:34471904#: bzrlib/builtins.py:3462
1905msgid "Check the working tree related to the current directory."1905msgid "Check the working tree related to the current directory."
1906msgstr ""1906msgstr ""
19071907
1908#: bzrlib/builtins.py:34611908#: bzrlib/builtins.py:3476
1909msgid "Upgrade a repository, branch or working tree to a newer format."1909msgid "Upgrade a repository, branch or working tree to a newer format."
1910msgstr ""1910msgstr ""
19111911
1912#: bzrlib/builtins.py:34631912#: bzrlib/builtins.py:3478
1913msgid ""1913msgid ""
1914"When the default format has changed after a major new release of\n"1914"When the default format has changed after a major new release of\n"
1915"Bazaar, you may be informed during certain operations that you\n"1915"Bazaar, you may be informed during certain operations that you\n"
@@ -1918,7 +1918,7 @@
1918"with older repositories or with older versions of Bazaar."1918"with older repositories or with older versions of Bazaar."
1919msgstr ""1919msgstr ""
19201920
1921#: bzrlib/builtins.py:34691921#: bzrlib/builtins.py:3484
1922msgid ""1922msgid ""
1923"If you wish to upgrade to a particular format rather than the\n"1923"If you wish to upgrade to a particular format rather than the\n"
1924"current default, that can be specified using the --format option.\n"1924"current default, that can be specified using the --format option.\n"
@@ -1928,7 +1928,7 @@
1928"2.x default) so downgrading is not always possible."1928"2.x default) so downgrading is not always possible."
1929msgstr ""1929msgstr ""
19301930
1931#: bzrlib/builtins.py:34761931#: bzrlib/builtins.py:3491
1932msgid ""1932msgid ""
1933"A backup.bzr.~#~ directory is created at the start of the conversion\n"1933"A backup.bzr.~#~ directory is created at the start of the conversion\n"
1934"process (where # is a number). By default, this is left there on\n"1934"process (where # is a number). By default, this is left there on\n"
@@ -1939,7 +1939,7 @@
1939"afterwards."1939"afterwards."
1940msgstr ""1940msgstr ""
19411941
1942#: bzrlib/builtins.py:34841942#: bzrlib/builtins.py:3499
1943msgid ""1943msgid ""
1944"If the location given is a shared repository, dependent branches\n"1944"If the location given is a shared repository, dependent branches\n"
1945"are also converted provided the repository converts successfully.\n"1945"are also converted provided the repository converts successfully.\n"
@@ -1947,132 +1947,132 @@
1947"tried."1947"tried."
1948msgstr ""1948msgstr ""
19491949
1950#: bzrlib/builtins.py:34891950#: bzrlib/builtins.py:3504
1951msgid ""1951msgid ""
1952"For more information on upgrades, see the Bazaar Upgrade Guide,\n"1952"For more information on upgrades, see the Bazaar Upgrade Guide,\n"
1953"http://doc.bazaar.canonical.com/latest/en/upgrade-guide/."1953"http://doc.bazaar.canonical.com/latest/en/upgrade-guide/."
1954msgstr ""1954msgstr ""
19551955
1956# help of 'format' option of 'upgrade' command1956# help of 'format' option of 'upgrade' command
1957#: bzrlib/builtins.py:34971957#: bzrlib/builtins.py:3512
1958msgid "Upgrade to a specific format. See \"bzr help formats\" for details."1958msgid "Upgrade to a specific format. See \"bzr help formats\" for details."
1959msgstr ""1959msgstr ""
19601960
1961# title of 'format' option of 'init' command1961# title of 'format' option of 'init' command
1962#: bzrlib/builtins.py:35011962#: bzrlib/builtins.py:3516
1963msgid "Branch format"1963msgid "Branch format"
1964msgstr ""1964msgstr ""
19651965
1966# help of 'clean' option of 'upgrade' command1966# help of 'clean' option of 'upgrade' command
1967#: bzrlib/builtins.py:35031967#: bzrlib/builtins.py:3518
1968msgid "Remove the backup.bzr directory if successful."1968msgid "Remove the backup.bzr directory if successful."
1969msgstr ""1969msgstr ""
19701970
1971#: bzrlib/builtins.py:35201971#: bzrlib/builtins.py:3535
1972msgid "Show or set bzr user id."1972msgid "Show or set bzr user id."
1973msgstr ""1973msgstr ""
19741974
1975#: bzrlib/builtins.py:35221975#: bzrlib/builtins.py:3537
1976msgid ""1976msgid ""
1977":Examples:\n"1977":Examples:\n"
1978" Show the email of the current user::"1978" Show the email of the current user::"
1979msgstr ""1979msgstr ""
19801980
1981#: bzrlib/builtins.py:35251981#: bzrlib/builtins.py:3540
1982msgid " bzr whoami --email"1982msgid " bzr whoami --email"
1983msgstr ""1983msgstr ""
19841984
1985#: bzrlib/builtins.py:35271985#: bzrlib/builtins.py:3542
1986msgid " Set the current user::"1986msgid " Set the current user::"
1987msgstr ""1987msgstr ""
19881988
1989#: bzrlib/builtins.py:35291989#: bzrlib/builtins.py:3544
1990msgid " bzr whoami \"Frank Chu <fchu@example.com>\""1990msgid " bzr whoami \"Frank Chu <fchu@example.com>\""
1991msgstr ""1991msgstr ""
19921992
1993# help of 'email' option of 'whoami' command1993# help of 'email' option of 'whoami' command
1994#: bzrlib/builtins.py:35331994#: bzrlib/builtins.py:3548
1995msgid "Display email address only."1995msgid "Display email address only."
1996msgstr ""1996msgstr ""
19971997
1998# help of 'branch' option of 'whoami' command1998# help of 'branch' option of 'whoami' command
1999#: bzrlib/builtins.py:35351999#: bzrlib/builtins.py:3550
2000msgid "Set identity for the current branch instead of globally."2000msgid "Set identity for the current branch instead of globally."
2001msgstr ""2001msgstr ""
20022002
2003#: bzrlib/builtins.py:35812003#: bzrlib/builtins.py:3596
2004msgid "Print or set the branch nickname."2004msgid "Print or set the branch nickname."
2005msgstr ""2005msgstr ""
20062006
2007#: bzrlib/builtins.py:35832007#: bzrlib/builtins.py:3598
2008msgid ""2008msgid ""
2009"If unset, the tree root directory name is used as the nickname.\n"2009"If unset, the tree root directory name is used as the nickname.\n"
2010"To print the current nickname, execute with no argument."2010"To print the current nickname, execute with no argument."
2011msgstr ""2011msgstr ""
20122012
2013#: bzrlib/builtins.py:35862013#: bzrlib/builtins.py:3601
2014msgid ""2014msgid ""
2015"Bound branches use the nickname of its master branch unless it is set\n"2015"Bound branches use the nickname of its master branch unless it is set\n"
2016"locally."2016"locally."
2017msgstr ""2017msgstr ""
20182018
2019#: bzrlib/builtins.py:36062019#: bzrlib/builtins.py:3621
2020msgid "Set/unset and display aliases."2020msgid "Set/unset and display aliases."
2021msgstr ""2021msgstr ""
20222022
2023#: bzrlib/builtins.py:36082023#: bzrlib/builtins.py:3623
2024msgid ""2024msgid ""
2025":Examples:\n"2025":Examples:\n"
2026" Show the current aliases::"2026" Show the current aliases::"
2027msgstr ""2027msgstr ""
20282028
2029#: bzrlib/builtins.py:36112029#: bzrlib/builtins.py:3626
2030msgid " bzr alias"2030msgid " bzr alias"
2031msgstr ""2031msgstr ""
20322032
2033#: bzrlib/builtins.py:36132033#: bzrlib/builtins.py:3628
2034msgid " Show the alias specified for 'll'::"2034msgid " Show the alias specified for 'll'::"
2035msgstr ""2035msgstr ""
20362036
2037#: bzrlib/builtins.py:36152037#: bzrlib/builtins.py:3630
2038msgid " bzr alias ll"2038msgid " bzr alias ll"
2039msgstr ""2039msgstr ""
20402040
2041#: bzrlib/builtins.py:36172041#: bzrlib/builtins.py:3632
2042msgid " Set an alias for 'll'::"2042msgid " Set an alias for 'll'::"
2043msgstr ""2043msgstr ""
20442044
2045#: bzrlib/builtins.py:36192045#: bzrlib/builtins.py:3634
2046msgid " bzr alias ll=\"log --line -r-10..-1\""2046msgid " bzr alias ll=\"log --line -r-10..-1\""
2047msgstr ""2047msgstr ""
20482048
2049#: bzrlib/builtins.py:36212049#: bzrlib/builtins.py:3636
2050msgid " To remove an alias for 'll'::"2050msgid " To remove an alias for 'll'::"
2051msgstr ""2051msgstr ""
20522052
2053#: bzrlib/builtins.py:36232053#: bzrlib/builtins.py:3638
2054msgid " bzr alias --remove ll"2054msgid " bzr alias --remove ll"
2055msgstr ""2055msgstr ""
20562056
2057# help of 'remove' option of 'alias' command2057# help of 'remove' option of 'alias' command
2058#: bzrlib/builtins.py:36282058#: bzrlib/builtins.py:3643
2059msgid "Remove the alias."2059msgid "Remove the alias."
2060msgstr ""2060msgstr ""
20612061
2062#: bzrlib/builtins.py:38672062#: bzrlib/builtins.py:3897
2063msgid "Show version of bzr."2063msgid "Show version of bzr."
2064msgstr ""2064msgstr ""
20652065
2066# help of 'short' option of 'version' command2066# help of 'short' option of 'version' command
2067#: bzrlib/builtins.py:38712067#: bzrlib/builtins.py:3901
2068msgid "Print just the version number."2068msgid "Print just the version number."
2069msgstr ""2069msgstr ""
20702070
2071#: bzrlib/builtins.py:39182071#: bzrlib/builtins.py:3948
2072msgid "Perform a three-way merge."2072msgid "Perform a three-way merge."
2073msgstr ""2073msgstr ""
20742074
2075#: bzrlib/builtins.py:39202075#: bzrlib/builtins.py:3950
2076msgid ""2076msgid ""
2077"The source of the merge can be specified either in the form of a branch,\n"2077"The source of the merge can be specified either in the form of a branch,\n"
2078"or in the form of a path to a file containing a merge directive generated\n"2078"or in the form of a path to a file containing a merge directive generated\n"
@@ -2083,20 +2083,20 @@
2083"the current working tree."2083"the current working tree."
2084msgstr ""2084msgstr ""
20852085
2086#: bzrlib/builtins.py:39282086#: bzrlib/builtins.py:3958
2087msgid ""2087msgid ""
2088"When merging from a branch, by default bzr will try to merge in all new\n"2088"When merging from a branch, by default bzr will try to merge in all new\n"
2089"work from the other branch, automatically determining an appropriate base\n"2089"work from the other branch, automatically determining an appropriate base\n"
2090"revision. If this fails, you may need to give an explicit base."2090"revision. If this fails, you may need to give an explicit base."
2091msgstr ""2091msgstr ""
20922092
2093#: bzrlib/builtins.py:39322093#: bzrlib/builtins.py:3962
2094msgid ""2094msgid ""
2095"To pick a different ending revision, pass \"--revision OTHER\". bzr will\n"2095"To pick a different ending revision, pass \"--revision OTHER\". bzr will\n"
2096"try to merge in all new work up to and including revision OTHER."2096"try to merge in all new work up to and including revision OTHER."
2097msgstr ""2097msgstr ""
20982098
2099#: bzrlib/builtins.py:39352099#: bzrlib/builtins.py:3965
2100msgid ""2100msgid ""
2101"If you specify two values, \"--revision BASE..OTHER\", only revisions BASE\n"2101"If you specify two values, \"--revision BASE..OTHER\", only revisions BASE\n"
2102"through OTHER, excluding BASE but including OTHER, will be merged. If this\n"2102"through OTHER, excluding BASE but including OTHER, will be merged. If this\n"
@@ -2107,30 +2107,30 @@
2107"changes from the other branch is not stored in the commit."2107"changes from the other branch is not stored in the commit."
2108msgstr ""2108msgstr ""
21092109
2110#: bzrlib/builtins.py:39432110#: bzrlib/builtins.py:3973
2111msgid "Revision numbers are always relative to the source branch."2111msgid "Revision numbers are always relative to the source branch."
2112msgstr ""2112msgstr ""
21132113
2114#: bzrlib/builtins.py:39502114#: bzrlib/builtins.py:3980
2115msgid "Use bzr resolve when you have fixed a problem. See also bzr conflicts."2115msgid "Use bzr resolve when you have fixed a problem. See also bzr conflicts."
2116msgstr ""2116msgstr ""
21172117
2118#: bzrlib/builtins.py:39522118#: bzrlib/builtins.py:3982
2119msgid ""2119msgid ""
2120"If there is no default branch set, the first merge will set it (use\n"2120"If there is no default branch set, the first merge will set it (use\n"
2121"--no-remember to avoid settting it). After that, you can omit the branch\n"2121"--no-remember to avoid setting it). After that, you can omit the branch\n"
2122"to use the default. To change the default, use --remember. The value will\n"2122"to use the default. To change the default, use --remember. The value will\n"
2123"only be saved if the remote location can be accessed."2123"only be saved if the remote location can be accessed."
2124msgstr ""2124msgstr ""
21252125
2126#: bzrlib/builtins.py:39572126#: bzrlib/builtins.py:3987
2127msgid ""2127msgid ""
2128"The results of the merge are placed into the destination working\n"2128"The results of the merge are placed into the destination working\n"
2129"directory, where they can be reviewed (with bzr diff), tested, and then\n"2129"directory, where they can be reviewed (with bzr diff), tested, and then\n"
2130"committed to record the result of the merge."2130"committed to record the result of the merge."
2131msgstr ""2131msgstr ""
21322132
2133#: bzrlib/builtins.py:39612133#: bzrlib/builtins.py:3991
2134msgid ""2134msgid ""
2135"merge refuses to run if there are any uncommitted changes, unless\n"2135"merge refuses to run if there are any uncommitted changes, unless\n"
2136"--force is given. If --force is given, then the changes from the source \n"2136"--force is given. If --force is given, then the changes from the source \n"
@@ -2139,60 +2139,60 @@
2139"merge revision which has more than two parents."2139"merge revision which has more than two parents."
2140msgstr ""2140msgstr ""
21412141
2142#: bzrlib/builtins.py:39672142#: bzrlib/builtins.py:3997
2143msgid ""2143msgid ""
2144"If one would like to merge changes from the working tree of the other\n"2144"If one would like to merge changes from the working tree of the other\n"
2145"branch without merging any committed revisions, the --uncommitted option\n"2145"branch without merging any committed revisions, the --uncommitted option\n"
2146"can be given."2146"can be given."
2147msgstr ""2147msgstr ""
21482148
2149#: bzrlib/builtins.py:39712149#: bzrlib/builtins.py:4001
2150msgid ""2150msgid ""
2151"To select only some changes to merge, use \"merge -i\", which will prompt\n"2151"To select only some changes to merge, use \"merge -i\", which will prompt\n"
2152"you to apply each diff hunk and file change, similar to \"shelve\"."2152"you to apply each diff hunk and file change, similar to \"shelve\"."
2153msgstr ""2153msgstr ""
21542154
2155#: bzrlib/builtins.py:39742155#: bzrlib/builtins.py:4004
2156msgid ""2156msgid ""
2157":Examples:\n"2157":Examples:\n"
2158" To merge all new revisions from bzr.dev::"2158" To merge all new revisions from bzr.dev::"
2159msgstr ""2159msgstr ""
21602160
2161#: bzrlib/builtins.py:39772161#: bzrlib/builtins.py:4007
2162msgid " bzr merge ../bzr.dev"2162msgid " bzr merge ../bzr.dev"
2163msgstr ""2163msgstr ""
21642164
2165#: bzrlib/builtins.py:39792165#: bzrlib/builtins.py:4009
2166msgid " To merge changes up to and including revision 82 from bzr.dev::"2166msgid " To merge changes up to and including revision 82 from bzr.dev::"
2167msgstr ""2167msgstr ""
21682168
2169#: bzrlib/builtins.py:39812169#: bzrlib/builtins.py:4011
2170msgid " bzr merge -r 82 ../bzr.dev"2170msgid " bzr merge -r 82 ../bzr.dev"
2171msgstr ""2171msgstr ""
21722172
2173#: bzrlib/builtins.py:39832173#: bzrlib/builtins.py:4013
2174msgid " To merge the changes introduced by 82, without previous changes::"2174msgid " To merge the changes introduced by 82, without previous changes::"
2175msgstr ""2175msgstr ""
21762176
2177#: bzrlib/builtins.py:39852177#: bzrlib/builtins.py:4015
2178msgid " bzr merge -r 81..82 ../bzr.dev"2178msgid " bzr merge -r 81..82 ../bzr.dev"
2179msgstr ""2179msgstr ""
21802180
2181#: bzrlib/builtins.py:39872181#: bzrlib/builtins.py:4017
2182msgid " To apply a merge directive contained in /tmp/merge::"2182msgid " To apply a merge directive contained in /tmp/merge::"
2183msgstr ""2183msgstr ""
21842184
2185#: bzrlib/builtins.py:39892185#: bzrlib/builtins.py:4019
2186msgid " bzr merge /tmp/merge"2186msgid " bzr merge /tmp/merge"
2187msgstr ""2187msgstr ""
21882188
2189#: bzrlib/builtins.py:39912189#: bzrlib/builtins.py:4021
2190msgid ""2190msgid ""
2191" To create a merge revision with three parents from two branches\n"2191" To create a merge revision with three parents from two branches\n"
2192" feature1a and feature1b:"2192" feature1a and feature1b:"
2193msgstr ""2193msgstr ""
21942194
2195#: bzrlib/builtins.py:39942195#: bzrlib/builtins.py:4024
2196msgid ""2196msgid ""
2197" bzr merge ../feature1a\n"2197" bzr merge ../feature1a\n"
2198" bzr merge ../feature1b --force\n"2198" bzr merge ../feature1b --force\n"
@@ -2200,18 +2200,18 @@
2200msgstr ""2200msgstr ""
22012201
2202# help of 'force' option of 'merge' command2202# help of 'force' option of 'merge' command
2203#: bzrlib/builtins.py:40062203#: bzrlib/builtins.py:4036
2204msgid "Merge even if the destination tree has uncommitted changes."2204msgid "Merge even if the destination tree has uncommitted changes."
2205msgstr ""2205msgstr ""
22062206
2207# help of 'uncommitted' option of 'merge' command2207# help of 'uncommitted' option of 'merge' command
2208#: bzrlib/builtins.py:40122208#: bzrlib/builtins.py:4042
2209msgid ""2209msgid ""
2210"Apply uncommitted changes from a working copy, instead of branch changes."2210"Apply uncommitted changes from a working copy, instead of branch changes."
2211msgstr ""2211msgstr ""
22122212
2213# help of 'pull' option of 'merge' command2213# help of 'pull' option of 'merge' command
2214#: bzrlib/builtins.py:40142214#: bzrlib/builtins.py:4044
2215msgid ""2215msgid ""
2216"If the destination is already completely merged into the source, pull from "2216"If the destination is already completely merged into the source, pull from "
2217"the source rather than merging. When this happens, you do not need to "2217"the source rather than merging. When this happens, you do not need to "
@@ -2219,77 +2219,77 @@
2219msgstr ""2219msgstr ""
22202220
2221# help of 'directory' option of 'merge' command2221# help of 'directory' option of 'merge' command
2222#: bzrlib/builtins.py:40192222#: bzrlib/builtins.py:4049
2223msgid ""2223msgid ""
2224"Branch to merge into, rather than the one containing the working directory."2224"Branch to merge into, rather than the one containing the working directory."
2225msgstr ""2225msgstr ""
22262226
2227# help of 'preview' option of 'merge' command2227# help of 'preview' option of 'merge' command
2228#: bzrlib/builtins.py:40212228#: bzrlib/builtins.py:4051
2229msgid "Instead of merging, show a diff of the merge."2229msgid "Instead of merging, show a diff of the merge."
2230msgstr ""2230msgstr ""
22312231
2232# help of 'interactive' option of 'merge' command2232# help of 'interactive' option of 'merge' command
2233#: bzrlib/builtins.py:40232233#: bzrlib/builtins.py:4053
2234msgid "Select changes interactively."2234msgid "Select changes interactively."
2235msgstr ""2235msgstr ""
22362236
2237#: bzrlib/builtins.py:43072237#: bzrlib/builtins.py:4337
2238msgid "Redo a merge."2238msgid "Redo a merge."
2239msgstr ""2239msgstr ""
22402240
2241#: bzrlib/builtins.py:43092241#: bzrlib/builtins.py:4339
2242msgid ""2242msgid ""
2243"Use this if you want to try a different merge technique while resolving\n"2243"Use this if you want to try a different merge technique while resolving\n"
2244"conflicts. Some merge techniques are better than others, and remerge\n"2244"conflicts. Some merge techniques are better than others, and remerge\n"
2245"lets you try different ones on different files."2245"lets you try different ones on different files."
2246msgstr ""2246msgstr ""
22472247
2248#: bzrlib/builtins.py:43132248#: bzrlib/builtins.py:4343
2249msgid ""2249msgid ""
2250"The options for remerge have the same meaning and defaults as the ones for\n"2250"The options for remerge have the same meaning and defaults as the ones for\n"
2251"merge. The difference is that remerge can (only) be run when there is a\n"2251"merge. The difference is that remerge can (only) be run when there is a\n"
2252"pending merge, and it lets you specify particular files."2252"pending merge, and it lets you specify particular files."
2253msgstr ""2253msgstr ""
22542254
2255#: bzrlib/builtins.py:43172255#: bzrlib/builtins.py:4347
2256msgid ""2256msgid ""
2257":Examples:\n"2257":Examples:\n"
2258" Re-do the merge of all conflicted files, and show the base text in\n"2258" Re-do the merge of all conflicted files, and show the base text in\n"
2259" conflict regions, in addition to the usual THIS and OTHER texts::"2259" conflict regions, in addition to the usual THIS and OTHER texts::"
2260msgstr ""2260msgstr ""
22612261
2262#: bzrlib/builtins.py:43212262#: bzrlib/builtins.py:4351
2263msgid " bzr remerge --show-base"2263msgid " bzr remerge --show-base"
2264msgstr ""2264msgstr ""
22652265
2266#: bzrlib/builtins.py:43232266#: bzrlib/builtins.py:4353
2267msgid ""2267msgid ""
2268" Re-do the merge of \"foobar\", using the weave merge algorithm, with\n"2268" Re-do the merge of \"foobar\", using the weave merge algorithm, with\n"
2269" additional processing to reduce the size of conflict regions::"2269" additional processing to reduce the size of conflict regions::"
2270msgstr ""2270msgstr ""
22712271
2272#: bzrlib/builtins.py:43262272#: bzrlib/builtins.py:4356
2273msgid " bzr remerge --merge-type weave --reprocess foobar"2273msgid " bzr remerge --merge-type weave --reprocess foobar"
2274msgstr ""2274msgstr ""
22752275
2276# help of 'show-base' option of 'merge' command2276# help of 'show-base' option of 'merge' command
2277#: bzrlib/builtins.py:43332277#: bzrlib/builtins.py:4363
2278msgid "Show base revision text in conflicts."2278msgid "Show base revision text in conflicts."
2279msgstr ""2279msgstr ""
22802280
2281#: bzrlib/builtins.py:44012281#: bzrlib/builtins.py:4431
2282msgid "Revert files to a previous revision."2282msgid "Revert files to a previous revision."
2283msgstr ""2283msgstr ""
22842284
2285#: bzrlib/builtins.py:44032285#: bzrlib/builtins.py:4433
2286msgid ""2286msgid ""
2287"Giving a list of files will revert only those files. Otherwise, all files\n"2287"Giving a list of files will revert only those files. Otherwise, all files\n"
2288"will be reverted. If the revision is not specified with '--revision', the\n"2288"will be reverted. If the revision is not specified with '--revision', the\n"
2289"last committed revision is used."2289"last committed revision is used."
2290msgstr ""2290msgstr ""
22912291
2292#: bzrlib/builtins.py:44072292#: bzrlib/builtins.py:4437
2293msgid ""2293msgid ""
2294"To remove only some changes, without reverting to a prior version, use\n"2294"To remove only some changes, without reverting to a prior version, use\n"
2295"merge instead. For example, \"merge . -r -2..-3\" (don't forget the \".\")\n"2295"merge instead. For example, \"merge . -r -2..-3\" (don't forget the \".\")\n"
@@ -2298,14 +2298,14 @@
2298"certain changes on a hunk-by-hunk basis, see the shelve command."2298"certain changes on a hunk-by-hunk basis, see the shelve command."
2299msgstr ""2299msgstr ""
23002300
2301#: bzrlib/builtins.py:44132301#: bzrlib/builtins.py:4443
2302msgid ""2302msgid ""
2303"By default, any files that have been manually changed will be backed up\n"2303"By default, any files that have been manually changed will be backed up\n"
2304"first. (Files changed only by merge are not backed up.) Backup files have\n"2304"first. (Files changed only by merge are not backed up.) Backup files have\n"
2305"'.~#~' appended to their name, where # is a number."2305"'.~#~' appended to their name, where # is a number."
2306msgstr ""2306msgstr ""
23072307
2308#: bzrlib/builtins.py:44172308#: bzrlib/builtins.py:4447
2309msgid ""2309msgid ""
2310"When you provide files, you can use their current pathname or the pathname\n"2310"When you provide files, you can use their current pathname or the pathname\n"
2311"from the target revision. So you can use revert to \"undelete\" a file by\n"2311"from the target revision. So you can use revert to \"undelete\" a file by\n"
@@ -2313,7 +2313,7 @@
2313"reverted."2313"reverted."
2314msgstr ""2314msgstr ""
23152315
2316#: bzrlib/builtins.py:44222316#: bzrlib/builtins.py:4452
2317msgid ""2317msgid ""
2318"If you have newly added files since the target revision, they will be\n"2318"If you have newly added files since the target revision, they will be\n"
2319"removed. If the files to be removed have been changed, backups will be\n"2319"removed. If the files to be removed have been changed, backups will be\n"
@@ -2321,7 +2321,7 @@
2321"deleted."2321"deleted."
2322msgstr ""2322msgstr ""
23232323
2324#: bzrlib/builtins.py:44272324#: bzrlib/builtins.py:4457
2325msgid ""2325msgid ""
2326"The working tree contains a list of revisions that have been merged but\n"2326"The working tree contains a list of revisions that have been merged but\n"
2327"not yet committed. These revisions will be included as additional parents\n"2327"not yet committed. These revisions will be included as additional parents\n"
@@ -2333,7 +2333,7 @@
2333"reverting any files."2333"reverting any files."
2334msgstr ""2334msgstr ""
23352335
2336#: bzrlib/builtins.py:44362336#: bzrlib/builtins.py:4466
2337msgid ""2337msgid ""
2338"Using \"bzr revert --forget-merges\", it is possible to apply all of the\n"2338"Using \"bzr revert --forget-merges\", it is possible to apply all of the\n"
2339"changes from a branch in a single revision. To do this, perform the merge\n"2339"changes from a branch in a single revision. To do this, perform the merge\n"
@@ -2348,35 +2348,35 @@
2348msgstr ""2348msgstr ""
23492349
2350# help of 'no-backup' option of 'revert' command2350# help of 'no-backup' option of 'revert' command
2351#: bzrlib/builtins.py:44502351#: bzrlib/builtins.py:4480
2352msgid "Do not save backups of reverted files."2352msgid "Do not save backups of reverted files."
2353msgstr ""2353msgstr ""
23542354
2355# help of 'forget-merges' option of 'revert' command2355# help of 'forget-merges' option of 'revert' command
2356#: bzrlib/builtins.py:44522356#: bzrlib/builtins.py:4482
2357msgid "Remove pending merge marker, without changing any files."2357msgid "Remove pending merge marker, without changing any files."
2358msgstr ""2358msgstr ""
23592359
2360#: bzrlib/builtins.py:44832360#: bzrlib/builtins.py:4513
2361msgid ""2361msgid ""
2362"Show help on a command or other topic.\n"2362"Show help on a command or other topic.\n"
2363" "2363" "
2364msgstr ""2364msgstr ""
23652365
2366# help of 'long' option of 'help' command2366# help of 'long' option of 'help' command
2367#: bzrlib/builtins.py:44882367#: bzrlib/builtins.py:4518
2368msgid "Show help on all commands."2368msgid "Show help on all commands."
2369msgstr ""2369msgstr ""
23702370
2371#: bzrlib/builtins.py:45172371#: bzrlib/builtins.py:4547
2372msgid "Show unmerged/unpulled revisions between two branches."2372msgid "Show unmerged/unpulled revisions between two branches."
2373msgstr ""2373msgstr ""
23742374
2375#: bzrlib/builtins.py:45192375#: bzrlib/builtins.py:4549
2376msgid "OTHER_BRANCH may be local or remote."2376msgid "OTHER_BRANCH may be local or remote."
2377msgstr ""2377msgstr ""
23782378
2379#: bzrlib/builtins.py:45212379#: bzrlib/builtins.py:4551
2380msgid ""2380msgid ""
2381"To filter on a range of revisions, you can use the command -r begin..end\n"2381"To filter on a range of revisions, you can use the command -r begin..end\n"
2382"-r revision requests a specific revision, -r ..end or -r begin.. are\n"2382"-r revision requests a specific revision, -r ..end or -r begin.. are\n"
@@ -2387,100 +2387,100 @@
2387" 0 - no missing revisions"2387" 0 - no missing revisions"
2388msgstr ""2388msgstr ""
23892389
2390#: bzrlib/builtins.py:45312390#: bzrlib/builtins.py:4561
2391msgid ""2391msgid ""
2392" Determine the missing revisions between this and the branch at the\n"2392" Determine the missing revisions between this and the branch at the\n"
2393" remembered pull location::"2393" remembered pull location::"
2394msgstr ""2394msgstr ""
23952395
2396#: bzrlib/builtins.py:45342396#: bzrlib/builtins.py:4564
2397msgid " bzr missing"2397msgid " bzr missing"
2398msgstr ""2398msgstr ""
23992399
2400#: bzrlib/builtins.py:45362400#: bzrlib/builtins.py:4566
2401msgid " Determine the missing revisions between this and another branch::"2401msgid " Determine the missing revisions between this and another branch::"
2402msgstr ""2402msgstr ""
24032403
2404#: bzrlib/builtins.py:45382404#: bzrlib/builtins.py:4568
2405msgid " bzr missing http://server/branch"2405msgid " bzr missing http://server/branch"
2406msgstr ""2406msgstr ""
24072407
2408#: bzrlib/builtins.py:45402408#: bzrlib/builtins.py:4570
2409msgid ""2409msgid ""
2410" Determine the missing revisions up to a specific revision on the other\n"2410" Determine the missing revisions up to a specific revision on the other\n"
2411" branch::"2411" branch::"
2412msgstr ""2412msgstr ""
24132413
2414#: bzrlib/builtins.py:45432414#: bzrlib/builtins.py:4573
2415msgid " bzr missing -r ..-10"2415msgid " bzr missing -r ..-10"
2416msgstr ""2416msgstr ""
24172417
2418#: bzrlib/builtins.py:45452418#: bzrlib/builtins.py:4575
2419msgid ""2419msgid ""
2420" Determine the missing revisions up to a specific revision on this\n"2420" Determine the missing revisions up to a specific revision on this\n"
2421" branch::"2421" branch::"
2422msgstr ""2422msgstr ""
24232423
2424#: bzrlib/builtins.py:45482424#: bzrlib/builtins.py:4578
2425msgid " bzr missing --my-revision ..-10"2425msgid " bzr missing --my-revision ..-10"
2426msgstr ""2426msgstr ""
24272427
2428# help of 'reverse' option of 'missing' command2428# help of 'reverse' option of 'missing' command
2429#: bzrlib/builtins.py:45552429#: bzrlib/builtins.py:4585
2430msgid "Reverse the order of revisions."2430msgid "Reverse the order of revisions."
2431msgstr ""2431msgstr ""
24322432
2433# help of 'mine-only' option of 'missing' command2433# help of 'mine-only' option of 'missing' command
2434#: bzrlib/builtins.py:45572434#: bzrlib/builtins.py:4587
2435msgid "Display changes in the local branch only."2435msgid "Display changes in the local branch only."
2436msgstr ""2436msgstr ""
24372437
2438# help of 'this' option of 'missing' command2438# help of 'this' option of 'missing' command
2439#: bzrlib/builtins.py:45582439#: bzrlib/builtins.py:4588
2440msgid "Same as --mine-only."2440msgid "Same as --mine-only."
2441msgstr ""2441msgstr ""
24422442
2443# help of 'theirs-only' option of 'missing' command2443# help of 'theirs-only' option of 'missing' command
2444#: bzrlib/builtins.py:45602444#: bzrlib/builtins.py:4590
2445msgid "Display changes in the remote branch only."2445msgid "Display changes in the remote branch only."
2446msgstr ""2446msgstr ""
24472447
2448# help of 'other' option of 'missing' command2448# help of 'other' option of 'missing' command
2449#: bzrlib/builtins.py:45612449#: bzrlib/builtins.py:4591
2450msgid "Same as --theirs-only."2450msgid "Same as --theirs-only."
2451msgstr ""2451msgstr ""
24522452
2453# help of 'revision' option of 'missing' command2453# help of 'revision' option of 'missing' command
2454#: bzrlib/builtins.py:45662454#: bzrlib/builtins.py:4596
2455msgid ""2455msgid ""
2456"Filter on other branch revisions (inclusive). See \"help revisionspec\" for "2456"Filter on other branch revisions (inclusive). See \"help revisionspec\" for "
2457"details."2457"details."
2458msgstr ""2458msgstr ""
24592459
2460# help of 'my-revision' option of 'missing' command2460# help of 'my-revision' option of 'missing' command
2461#: bzrlib/builtins.py:45702461#: bzrlib/builtins.py:4600
2462msgid ""2462msgid ""
2463"Filter on local branch revisions (inclusive). See \"help revisionspec\" for "2463"Filter on local branch revisions (inclusive). See \"help revisionspec\" for "
2464"details."2464"details."
2465msgstr ""2465msgstr ""
24662466
2467# help of 'include-merges' option of 'missing' command2467# help of 'include-merges' option of 'missing' command
2468#: bzrlib/builtins.py:45732468#: bzrlib/builtins.py:4603
2469msgid "Show all revisions in addition to the mainline ones."2469msgid "Show all revisions in addition to the mainline ones."
2470msgstr ""2470msgstr ""
24712471
2472#: bzrlib/builtins.py:46892472#: bzrlib/builtins.py:4719
2473msgid "Compress the data within a repository."2473msgid "Compress the data within a repository."
2474msgstr ""2474msgstr ""
24752475
2476#: bzrlib/builtins.py:46912476#: bzrlib/builtins.py:4721
2477msgid ""2477msgid ""
2478"This operation compresses the data within a bazaar repository. As\n"2478"This operation compresses the data within a bazaar repository. As\n"
2479"bazaar supports automatic packing of repository, this operation is\n"2479"bazaar supports automatic packing of repository, this operation is\n"
2480"normally not required to be done manually."2480"normally not required to be done manually."
2481msgstr ""2481msgstr ""
24822482
2483#: bzrlib/builtins.py:46952483#: bzrlib/builtins.py:4725
2484msgid ""2484msgid ""
2485"During the pack operation, bazaar takes a backup of existing repository\n"2485"During the pack operation, bazaar takes a backup of existing repository\n"
2486"data, i.e. pack files. This backup is eventually removed by bazaar\n"2486"data, i.e. pack files. This backup is eventually removed by bazaar\n"
@@ -2489,7 +2489,7 @@
2489"used."2489"used."
2490msgstr ""2490msgstr ""
24912491
2492#: bzrlib/builtins.py:47012492#: bzrlib/builtins.py:4731
2493msgid ""2493msgid ""
2494"Warning: If you use --clean-obsolete-packs and your machine crashes\n"2494"Warning: If you use --clean-obsolete-packs and your machine crashes\n"
2495"during or immediately after repacking, you may be left with a state\n"2495"during or immediately after repacking, you may be left with a state\n"
@@ -2498,25 +2498,25 @@
2498msgstr ""2498msgstr ""
24992499
2500# help of 'clean-obsolete-packs' option of 'pack' command2500# help of 'clean-obsolete-packs' option of 'pack' command
2501#: bzrlib/builtins.py:47102501#: bzrlib/builtins.py:4740
2502msgid "Delete obsolete packs to save disk space."2502msgid "Delete obsolete packs to save disk space."
2503msgstr ""2503msgstr ""
25042504
2505#: bzrlib/builtins.py:47242505#: bzrlib/builtins.py:4754
2506msgid "List the installed plugins."2506msgid "List the installed plugins."
2507msgstr ""2507msgstr ""
25082508
2509#: bzrlib/builtins.py:47262509#: bzrlib/builtins.py:4756
2510msgid ""2510msgid ""
2511"This command displays the list of installed plugins including\n"2511"This command displays the list of installed plugins including\n"
2512"version of plugin and a short description of each."2512"version of plugin and a short description of each."
2513msgstr ""2513msgstr ""
25142514
2515#: bzrlib/builtins.py:47292515#: bzrlib/builtins.py:4759
2516msgid "--verbose shows the path where each plugin is located."2516msgid "--verbose shows the path where each plugin is located."
2517msgstr ""2517msgstr ""
25182518
2519#: bzrlib/builtins.py:47312519#: bzrlib/builtins.py:4761
2520msgid ""2520msgid ""
2521"A plugin is an external component for Bazaar that extends the\n"2521"A plugin is an external component for Bazaar that extends the\n"
2522"revision control system, by adding or replacing code in Bazaar.\n"2522"revision control system, by adding or replacing code in Bazaar.\n"
@@ -2525,7 +2525,7 @@
2525"customizing log output."2525"customizing log output."
2526msgstr ""2526msgstr ""
25272527
2528#: bzrlib/builtins.py:47372528#: bzrlib/builtins.py:4767
2529msgid ""2529msgid ""
2530"See the Bazaar Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/>\n"2530"See the Bazaar Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/>\n"
2531"for further information on plugins including where to find them and how to\n"2531"for further information on plugins including where to find them and how to\n"
@@ -2533,94 +2533,94 @@
2533"plugins using the Python programming language."2533"plugins using the Python programming language."
2534msgstr ""2534msgstr ""
25352535
2536#: bzrlib/builtins.py:47532536#: bzrlib/builtins.py:4783
2537msgid "Show testament (signing-form) of a revision."2537msgid "Show testament (signing-form) of a revision."
2538msgstr ""2538msgstr ""
25392539
2540# help of 'long' option of 'testament' command2540# help of 'long' option of 'testament' command
2541#: bzrlib/builtins.py:47562541#: bzrlib/builtins.py:4786
2542msgid "Produce long-format testament."2542msgid "Produce long-format testament."
2543msgstr ""2543msgstr ""
25442544
2545# help of 'strict' option of 'testament' command2545# help of 'strict' option of 'testament' command
2546#: bzrlib/builtins.py:47582546#: bzrlib/builtins.py:4788
2547msgid "Produce a strict-format testament."2547msgid "Produce a strict-format testament."
2548msgstr ""2548msgstr ""
25492549
2550#: bzrlib/builtins.py:47842550#: bzrlib/builtins.py:4814
2551msgid "Show the origin of each line in a file."2551msgid "Show the origin of each line in a file."
2552msgstr ""2552msgstr ""
25532553
2554#: bzrlib/builtins.py:47862554#: bzrlib/builtins.py:4816
2555msgid ""2555msgid ""
2556"This prints out the given file with an annotation on the left side\n"2556"This prints out the given file with an annotation on the left side\n"
2557"indicating which revision, author and date introduced the change."2557"indicating which revision, author and date introduced the change."
2558msgstr ""2558msgstr ""
25592559
2560#: bzrlib/builtins.py:47892560#: bzrlib/builtins.py:4819
2561msgid ""2561msgid ""
2562"If the origin is the same for a run of consecutive lines, it is\n"2562"If the origin is the same for a run of consecutive lines, it is\n"
2563"shown only at the top, unless the --all option is given."2563"shown only at the top, unless the --all option is given."
2564msgstr ""2564msgstr ""
25652565
2566# help of 'all' option of 'annotate' command2566# help of 'all' option of 'annotate' command
2567#: bzrlib/builtins.py:47972567#: bzrlib/builtins.py:4827
2568msgid "Show annotations on all lines."2568msgid "Show annotations on all lines."
2569msgstr ""2569msgstr ""
25702570
2571# help of 'long' option of 'annotate' command2571# help of 'long' option of 'annotate' command
2572#: bzrlib/builtins.py:47982572#: bzrlib/builtins.py:4828
2573msgid "Show commit date in annotations."2573msgid "Show commit date in annotations."
2574msgstr ""2574msgstr ""
25752575
2576#: bzrlib/builtins.py:49012576#: bzrlib/builtins.py:4931
2577msgid ""2577msgid ""
2578"Convert the current branch into a checkout of the supplied branch.\n"2578"Convert the current branch into a checkout of the supplied branch.\n"
2579"If no branch is supplied, rebind to the last bound location."2579"If no branch is supplied, rebind to the last bound location."
2580msgstr ""2580msgstr ""
25812581
2582#: bzrlib/builtins.py:49042582#: bzrlib/builtins.py:4934
2583msgid ""2583msgid ""
2584"Once converted into a checkout, commits must succeed on the master branch\n"2584"Once converted into a checkout, commits must succeed on the master branch\n"
2585"before they will be applied to the local branch."2585"before they will be applied to the local branch."
2586msgstr ""2586msgstr ""
25872587
2588#: bzrlib/builtins.py:49072588#: bzrlib/builtins.py:4937
2589msgid ""2589msgid ""
2590"Bound branches use the nickname of its master branch unless it is set\n"2590"Bound branches use the nickname of its master branch unless it is set\n"
2591"locally, in which case binding will update the local nickname to be\n"2591"locally, in which case binding will update the local nickname to be\n"
2592"that of the master."2592"that of the master."
2593msgstr ""2593msgstr ""
25942594
2595#: bzrlib/builtins.py:49422595#: bzrlib/builtins.py:4972
2596msgid "Convert the current checkout into a regular branch."2596msgid "Convert the current checkout into a regular branch."
2597msgstr ""2597msgstr ""
25982598
2599#: bzrlib/builtins.py:49442599#: bzrlib/builtins.py:4974
2600msgid ""2600msgid ""
2601"After unbinding, the local branch is considered independent and subsequent\n"2601"After unbinding, the local branch is considered independent and subsequent\n"
2602"commits will be local only."2602"commits will be local only."
2603msgstr ""2603msgstr ""
26042604
2605#: bzrlib/builtins.py:49592605#: bzrlib/builtins.py:4989
2606msgid "Remove the last committed revision."2606msgid "Remove the last committed revision."
2607msgstr ""2607msgstr ""
26082608
2609#: bzrlib/builtins.py:49612609#: bzrlib/builtins.py:4991
2610msgid ""2610msgid ""
2611"--verbose will print out what is being removed.\n"2611"--verbose will print out what is being removed.\n"
2612"--dry-run will go through all the motions, but not actually\n"2612"--dry-run will go through all the motions, but not actually\n"
2613"remove anything."2613"remove anything."
2614msgstr ""2614msgstr ""
26152615
2616#: bzrlib/builtins.py:49652616#: bzrlib/builtins.py:4995
2617msgid ""2617msgid ""
2618"If --revision is specified, uncommit revisions to leave the branch at the\n"2618"If --revision is specified, uncommit revisions to leave the branch at the\n"
2619"specified revision. For example, \"bzr uncommit -r 15\" will leave the\n"2619"specified revision. For example, \"bzr uncommit -r 15\" will leave the\n"
2620"branch at revision 15."2620"branch at revision 15."
2621msgstr ""2621msgstr ""
26222622
2623#: bzrlib/builtins.py:49692623#: bzrlib/builtins.py:4999
2624msgid ""2624msgid ""
2625"Uncommit leaves the working tree ready for a new commit. The only change\n"2625"Uncommit leaves the working tree ready for a new commit. The only change\n"
2626"it may make is to restore any pending merges that were present before\n"2626"it may make is to restore any pending merges that were present before\n"
@@ -2628,43 +2628,48 @@
2628msgstr ""2628msgstr ""
26292629
2630# help of 'dry-run' option of 'uncommit' command2630# help of 'dry-run' option of 'uncommit' command
2631#: bzrlib/builtins.py:49802631#: bzrlib/builtins.py:5010
2632msgid "Don't actually make changes."2632msgid "Don't actually make changes."
2633msgstr ""2633msgstr ""
26342634
2635# help of 'force' option of 'uncommit' command2635# help of 'force' option of 'uncommit' command
2636#: bzrlib/builtins.py:49812636#: bzrlib/builtins.py:5011
2637msgid "Say yes to all questions."2637msgid "Say yes to all questions."
2638msgstr ""2638msgstr ""
26392639
2640# help of 'keep-tags' option of 'uncommit' command
2641#: bzrlib/builtins.py:5013
2642msgid "Keep tags that point to removed revisions."
2643msgstr ""
2644
2640# help of 'local' option of 'uncommit' command2645# help of 'local' option of 'uncommit' command
2641#: bzrlib/builtins.py:49832646#: bzrlib/builtins.py:5015
2642msgid "Only remove the commits from the local branch when in a checkout."2647msgid "Only remove the commits from the local branch when in a checkout."
2643msgstr ""2648msgstr ""
26442649
2645#: bzrlib/builtins.py:50682650#: bzrlib/builtins.py:5101
2646msgid "Break a dead lock."2651msgid "Break a dead lock."
2647msgstr ""2652msgstr ""
26482653
2649#: bzrlib/builtins.py:50702654#: bzrlib/builtins.py:5103
2650msgid ""2655msgid ""
2651"This command breaks a lock on a repository, branch, working directory or\n"2656"This command breaks a lock on a repository, branch, working directory or\n"
2652"config file."2657"config file."
2653msgstr ""2658msgstr ""
26542659
2655#: bzrlib/builtins.py:50732660#: bzrlib/builtins.py:5106
2656msgid ""2661msgid ""
2657"CAUTION: Locks should only be broken when you are sure that the process\n"2662"CAUTION: Locks should only be broken when you are sure that the process\n"
2658"holding the lock has been stopped."2663"holding the lock has been stopped."
2659msgstr ""2664msgstr ""
26602665
2661#: bzrlib/builtins.py:50762666#: bzrlib/builtins.py:5109
2662msgid ""2667msgid ""
2663"You can get information on what locks are open via the 'bzr info\n"2668"You can get information on what locks are open via the 'bzr info\n"
2664"[location]' command."2669"[location]' command."
2665msgstr ""2670msgstr ""
26662671
2667#: bzrlib/builtins.py:50792672#: bzrlib/builtins.py:5112
2668msgid ""2673msgid ""
2669":Examples:\n"2674":Examples:\n"
2670" bzr break-lock\n"2675" bzr break-lock\n"
@@ -2673,36 +2678,36 @@
2673msgstr ""2678msgstr ""
26742679
2675# help of 'config' option of 'break-lock' command2680# help of 'config' option of 'break-lock' command
2676#: bzrlib/builtins.py:50882681#: bzrlib/builtins.py:5121
2677msgid "LOCATION is the directory where the config lock is."2682msgid "LOCATION is the directory where the config lock is."
2678msgstr ""2683msgstr ""
26792684
2680# help of 'force' option of 'break-lock' command2685# help of 'force' option of 'break-lock' command
2681#: bzrlib/builtins.py:50902686#: bzrlib/builtins.py:5123
2682msgid "Do not ask for confirmation before breaking the lock."2687msgid "Do not ask for confirmation before breaking the lock."
2683msgstr ""2688msgstr ""
26842689
2685#: bzrlib/builtins.py:51262690#: bzrlib/builtins.py:5159
2686msgid "Run the bzr server."2691msgid "Run the bzr server."
2687msgstr ""2692msgstr ""
26882693
2689# help of 'inet' option of 'serve' command2694# help of 'inet' option of 'serve' command
2690#: bzrlib/builtins.py:51322695#: bzrlib/builtins.py:5165
2691msgid "Serve on stdin/out for use from inetd or sshd."2696msgid "Serve on stdin/out for use from inetd or sshd."
2692msgstr ""2697msgstr ""
26932698
2694# title of 'protocol' option of 'serve' command2699# title of 'protocol' option of 'serve' command
2695#: bzrlib/builtins.py:51332700#: bzrlib/builtins.py:5166
2696msgid "protocol"2701msgid "protocol"
2697msgstr ""2702msgstr ""
26982703
2699# help of 'protocol' option of 'serve' command2704# help of 'protocol' option of 'serve' command
2700#: bzrlib/builtins.py:51342705#: bzrlib/builtins.py:5167
2701msgid "Protocol to serve."2706msgid "Protocol to serve."
2702msgstr ""2707msgstr ""
27032708
2704# help of 'port' option of 'serve' command2709# help of 'port' option of 'serve' command
2705#: bzrlib/builtins.py:51382710#: bzrlib/builtins.py:5171
2706msgid ""2711msgid ""
2707"Listen for connections on nominated port of the form [hostname:]portnumber. "2712"Listen for connections on nominated port of the form [hostname:]portnumber. "
2708"Passing 0 as the port number will result in a dynamically allocated port. "2713"Passing 0 as the port number will result in a dynamically allocated port. "
@@ -2710,12 +2715,12 @@
2710msgstr ""2715msgstr ""
27112716
2712# help of 'directory' option of 'serve' command2717# help of 'directory' option of 'serve' command
2713#: bzrlib/builtins.py:51442718#: bzrlib/builtins.py:5177
2714msgid "Serve contents of this directory."2719msgid "Serve contents of this directory."
2715msgstr ""2720msgstr ""
27162721
2717# help of 'allow-writes' option of 'serve' command2722# help of 'allow-writes' option of 'serve' command
2718#: bzrlib/builtins.py:51462723#: bzrlib/builtins.py:5179
2719msgid ""2724msgid ""
2720"By default the server is a readonly server. Supplying --allow-writes "2725"By default the server is a readonly server. Supplying --allow-writes "
2721"enables write access to the contents of the served directory and below. "2726"enables write access to the contents of the served directory and below. "
@@ -2724,83 +2729,83 @@
2724"uncontrolled write access to your file system."2729"uncontrolled write access to your file system."
2725msgstr ""2730msgstr ""
27262731
2727#: bzrlib/builtins.py:51912732#: bzrlib/builtins.py:5224
2728msgid "Combine a tree into its containing tree."2733msgid "Combine a tree into its containing tree."
2729msgstr ""2734msgstr ""
27302735
2731#: bzrlib/builtins.py:51932736#: bzrlib/builtins.py:5226
2732msgid "This command requires the target tree to be in a rich-root format."2737msgid "This command requires the target tree to be in a rich-root format."
2733msgstr ""2738msgstr ""
27342739
2735#: bzrlib/builtins.py:51952740#: bzrlib/builtins.py:5228
2736msgid ""2741msgid ""
2737"The TREE argument should be an independent tree, inside another tree, but\n"2742"The TREE argument should be an independent tree, inside another tree, but\n"
2738"not part of it. (Such trees can be produced by \"bzr split\", but also by\n"2743"not part of it. (Such trees can be produced by \"bzr split\", but also by\n"
2739"running \"bzr branch\" with the target inside a tree.)"2744"running \"bzr branch\" with the target inside a tree.)"
2740msgstr ""2745msgstr ""
27412746
2742#: bzrlib/builtins.py:51992747#: bzrlib/builtins.py:5232
2743msgid ""2748msgid ""
2744"The result is a combined tree, with the subtree no longer an independent\n"2749"The result is a combined tree, with the subtree no longer an independent\n"
2745"part. This is marked as a merge of the subtree into the containing tree,\n"2750"part. This is marked as a merge of the subtree into the containing tree,\n"
2746"and all history is preserved."2751"and all history is preserved."
2747msgstr ""2752msgstr ""
27482753
2749#: bzrlib/builtins.py:52372754#: bzrlib/builtins.py:5270
2750msgid "Split a subdirectory of a tree into a separate tree."2755msgid "Split a subdirectory of a tree into a separate tree."
2751msgstr ""2756msgstr ""
27522757
2753#: bzrlib/builtins.py:52392758#: bzrlib/builtins.py:5272
2754msgid ""2759msgid ""
2755"This command will produce a target tree in a format that supports\n"2760"This command will produce a target tree in a format that supports\n"
2756"rich roots, like 'rich-root' or 'rich-root-pack'. These formats cannot be\n"2761"rich roots, like 'rich-root' or 'rich-root-pack'. These formats cannot be\n"
2757"converted into earlier formats like 'dirstate-tags'."2762"converted into earlier formats like 'dirstate-tags'."
2758msgstr ""2763msgstr ""
27592764
2760#: bzrlib/builtins.py:52432765#: bzrlib/builtins.py:5276
2761msgid ""2766msgid ""
2762"The TREE argument should be a subdirectory of a working tree. That\n"2767"The TREE argument should be a subdirectory of a working tree. That\n"
2763"subdirectory will be converted into an independent tree, with its own\n"2768"subdirectory will be converted into an independent tree, with its own\n"
2764"branch. Commits in the top-level tree will not apply to the new subtree."2769"branch. Commits in the top-level tree will not apply to the new subtree."
2765msgstr ""2770msgstr ""
27662771
2767#: bzrlib/builtins.py:53642772#: bzrlib/builtins.py:5397
2768msgid "Mail or create a merge-directive for submitting changes."2773msgid "Mail or create a merge-directive for submitting changes."
2769msgstr ""2774msgstr ""
27702775
2771#: bzrlib/builtins.py:53662776#: bzrlib/builtins.py:5399
2772msgid "A merge directive provides many things needed for requesting merges:"2777msgid "A merge directive provides many things needed for requesting merges:"
2773msgstr ""2778msgstr ""
27742779
2775#: bzrlib/builtins.py:53682780#: bzrlib/builtins.py:5401
2776msgid "* A machine-readable description of the merge to perform"2781msgid "* A machine-readable description of the merge to perform"
2777msgstr ""2782msgstr ""
27782783
2779#: bzrlib/builtins.py:53702784#: bzrlib/builtins.py:5403
2780msgid "* An optional patch that is a preview of the changes requested"2785msgid "* An optional patch that is a preview of the changes requested"
2781msgstr ""2786msgstr ""
27822787
2783#: bzrlib/builtins.py:53722788#: bzrlib/builtins.py:5405
2784msgid ""2789msgid ""
2785"* An optional bundle of revision data, so that the changes can be applied\n"2790"* An optional bundle of revision data, so that the changes can be applied\n"
2786" directly from the merge directive, without retrieving data from a\n"2791" directly from the merge directive, without retrieving data from a\n"
2787" branch."2792" branch."
2788msgstr ""2793msgstr ""
27892794
2790#: bzrlib/builtins.py:53762795#: bzrlib/builtins.py:5409
2791msgid ""2796msgid ""
2792"`bzr send` creates a compact data set that, when applied using bzr\n"2797"`bzr send` creates a compact data set that, when applied using bzr\n"
2793"merge, has the same effect as merging from the source branch. "2798"merge, has the same effect as merging from the source branch. "
2794msgstr ""2799msgstr ""
27952800
2796#: bzrlib/builtins.py:53792801#: bzrlib/builtins.py:5412
2797msgid ""2802msgid ""
2798"By default the merge directive is self-contained and can be applied to any\n"2803"By default the merge directive is self-contained and can be applied to any\n"
2799"branch containing submit_branch in its ancestory without needing access to\n"2804"branch containing submit_branch in its ancestory without needing access to\n"
2800"the source branch."2805"the source branch."
2801msgstr ""2806msgstr ""
28022807
2803#: bzrlib/builtins.py:53832808#: bzrlib/builtins.py:5416
2804msgid ""2809msgid ""
2805"If --no-bundle is specified, then Bazaar doesn't send the contents of the\n"2810"If --no-bundle is specified, then Bazaar doesn't send the contents of the\n"
2806"revisions, but only a structured request to merge from the\n"2811"revisions, but only a structured request to merge from the\n"
@@ -2809,7 +2814,7 @@
2809"included if known, so that people can check it later."2814"included if known, so that people can check it later."
2810msgstr ""2815msgstr ""
28112816
2812#: bzrlib/builtins.py:53892817#: bzrlib/builtins.py:5422
2813msgid ""2818msgid ""
2814"The submit branch defaults to the parent of the source branch, but can be\n"2819"The submit branch defaults to the parent of the source branch, but can be\n"
2815"overridden. Both submit branch and public branch will be remembered in\n"2820"overridden. Both submit branch and public branch will be remembered in\n"
@@ -2818,16 +2823,16 @@
2818"be changed using --from."2823"be changed using --from."
2819msgstr ""2824msgstr ""
28202825
2821#: bzrlib/builtins.py:53952826#: bzrlib/builtins.py:5428
2822msgid ""2827msgid ""
2823"Both the submit branch and the public branch follow the usual behavior with\n"2828"Both the submit branch and the public branch follow the usual behavior with\n"
2824"respect to --remember: If there is no default location set, the first send\n"2829"respect to --remember: If there is no default location set, the first send\n"
2825"will set it (use --no-remember to avoid settting it). After that, you can\n"2830"will set it (use --no-remember to avoid setting it). After that, you can\n"
2826"omit the location to use the default. To change the default, use\n"2831"omit the location to use the default. To change the default, use\n"
2827"--remember. The value will only be saved if the location can be accessed."2832"--remember. The value will only be saved if the location can be accessed."
2828msgstr ""2833msgstr ""
28292834
2830#: bzrlib/builtins.py:54012835#: bzrlib/builtins.py:5434
2831msgid ""2836msgid ""
2832"In order to calculate those changes, bzr must analyse the submit branch.\n"2837"In order to calculate those changes, bzr must analyse the submit branch.\n"
2833"Therefore it is most efficient for the submit branch to be a local mirror.\n"2838"Therefore it is most efficient for the submit branch to be a local mirror.\n"
@@ -2835,20 +2840,20 @@
2835"in the merge directive."2840"in the merge directive."
2836msgstr ""2841msgstr ""
28372842
2838#: bzrlib/builtins.py:54062843#: bzrlib/builtins.py:5439
2839msgid ""2844msgid ""
2840"The default behaviour is to send the merge directive by mail, unless -o is\n"2845"The default behaviour is to send the merge directive by mail, unless -o is\n"
2841"given, in which case it is sent to a file."2846"given, in which case it is sent to a file."
2842msgstr ""2847msgstr ""
28432848
2844#: bzrlib/builtins.py:54092849#: bzrlib/builtins.py:5442
2845msgid ""2850msgid ""
2846"Mail is sent using your preferred mail program. This should be transparent\n"2851"Mail is sent using your preferred mail program. This should be transparent\n"
2847"on Windows (it uses MAPI). On Unix, it requires the xdg-email utility.\n"2852"on Windows (it uses MAPI). On Unix, it requires the xdg-email utility.\n"
2848"If the preferred client can't be found (or used), your editor will be used."2853"If the preferred client can't be found (or used), your editor will be used."
2849msgstr ""2854msgstr ""
28502855
2851#: bzrlib/builtins.py:54132856#: bzrlib/builtins.py:5446
2852msgid ""2857msgid ""
2853"To use a specific mail program, set the mail_client configuration option.\n"2858"To use a specific mail program, set the mail_client configuration option.\n"
2854"(For Thunderbird 1.5, this works around some bugs.) Supported values for\n"2859"(For Thunderbird 1.5, this works around some bugs.) Supported values for\n"
@@ -2860,7 +2865,7 @@
2860"supported clients."2865"supported clients."
2861msgstr ""2866msgstr ""
28622867
2863#: bzrlib/builtins.py:54202868#: bzrlib/builtins.py:5453
2864msgid ""2869msgid ""
2865"If mail is being sent, a to address is required. This can be supplied\n"2870"If mail is being sent, a to address is required. This can be supplied\n"
2866"either on the commandline, by setting the submit_to configuration\n"2871"either on the commandline, by setting the submit_to configuration\n"
@@ -2868,7 +2873,7 @@
2868"in the submit branch."2873"in the submit branch."
2869msgstr ""2874msgstr ""
28702875
2871#: bzrlib/builtins.py:54252876#: bzrlib/builtins.py:5458
2872msgid ""2877msgid ""
2873"Two formats are currently supported: \"4\" uses revision bundle format 4 "2878"Two formats are currently supported: \"4\" uses revision bundle format 4 "
2874"and\n"2879"and\n"
@@ -2878,13 +2883,13 @@
2878"format 1. It is compatible with Bazaar 0.12 - 0.18."2883"format 1. It is compatible with Bazaar 0.12 - 0.18."
2879msgstr ""2884msgstr ""
28802885
2881#: bzrlib/builtins.py:54312886#: bzrlib/builtins.py:5464
2882msgid ""2887msgid ""
2883"The merge directives created by bzr send may be applied using bzr merge or\n"2888"The merge directives created by bzr send may be applied using bzr merge or\n"
2884"bzr pull by specifying a file containing a merge directive as the location."2889"bzr pull by specifying a file containing a merge directive as the location."
2885msgstr ""2890msgstr ""
28862891
2887#: bzrlib/builtins.py:54342892#: bzrlib/builtins.py:5467
2888msgid ""2893msgid ""
2889"bzr send makes extensive use of public locations to map local locations "2894"bzr send makes extensive use of public locations to map local locations "
2890"into\n"2895"into\n"
@@ -2893,90 +2898,90 @@
2893msgstr ""2898msgstr ""
28942899
2895# help of 'output' option of 'send' command2900# help of 'output' option of 'send' command
2896#: bzrlib/builtins.py:54582901#: bzrlib/builtins.py:5491
2897msgid "Write merge directive to this file or directory; use - for stdout."2902msgid "Write merge directive to this file or directory; use - for stdout."
2898msgstr ""2903msgstr ""
28992904
2900# help of 'strict' option of 'send' command2905# help of 'strict' option of 'send' command
2901#: bzrlib/builtins.py:54622906#: bzrlib/builtins.py:5495
2902msgid ""2907msgid ""
2903"Refuse to send if there are uncommitted changes in the working tree, --no-"2908"Refuse to send if there are uncommitted changes in the working tree, --no-"
2904"strict disables the check."2909"strict disables the check."
2905msgstr ""2910msgstr ""
29062911
2907# help of 'mail-to' option of 'send' command2912# help of 'mail-to' option of 'send' command
2908#: bzrlib/builtins.py:54642913#: bzrlib/builtins.py:5497
2909msgid "Mail the request to this address."2914msgid "Mail the request to this address."
2910msgstr ""2915msgstr ""
29112916
2912# help of 'body' option of 'send' command2917# help of 'body' option of 'send' command
2913#: bzrlib/builtins.py:54682918#: bzrlib/builtins.py:5501
2914msgid "Body for the email."2919msgid "Body for the email."
2915msgstr ""2920msgstr ""
29162921
2917# help of 'no-bundle' option of 'send' command2922# help of 'no-bundle' option of 'send' command
2918#: bzrlib/builtins.py:55212923#: bzrlib/builtins.py:5554
2919msgid "Do not include a bundle in the merge directive."2924msgid "Do not include a bundle in the merge directive."
2920msgstr ""2925msgstr ""
29212926
2922# help of 'no-patch' option of 'send' command2927# help of 'no-patch' option of 'send' command
2923#: bzrlib/builtins.py:55222928#: bzrlib/builtins.py:5555
2924msgid "Do not include a preview patch in the merge directive."2929msgid "Do not include a preview patch in the merge directive."
2925msgstr ""2930msgstr ""
29262931
2927# help of 'remember' option of 'send' command2932# help of 'remember' option of 'send' command
2928#: bzrlib/builtins.py:55252933#: bzrlib/builtins.py:5558
2929msgid "Remember submit and public branch."2934msgid "Remember submit and public branch."
2930msgstr ""2935msgstr ""
29312936
2932# help of 'from' option of 'send' command2937# help of 'from' option of 'send' command
2933#: bzrlib/builtins.py:55272938#: bzrlib/builtins.py:5560
2934msgid ""2939msgid ""
2935"Branch to generate the submission from, rather than the one containing the "2940"Branch to generate the submission from, rather than the one containing the "
2936"working directory."2941"working directory."
2937msgstr ""2942msgstr ""
29382943
2939# title of 'format' option of 'send' command2944# title of 'format' option of 'send' command
2940#: bzrlib/builtins.py:55372945#: bzrlib/builtins.py:5570
2941msgid "format"2946msgid "format"
2942msgstr ""2947msgstr ""
29432948
2944# help of 'format' option of 'send' command2949# help of 'format' option of 'send' command
2945#: bzrlib/builtins.py:55382950#: bzrlib/builtins.py:5571
2946msgid "Use the specified output format."2951msgid "Use the specified output format."
2947msgstr ""2952msgstr ""
29482953
2949#: bzrlib/builtins.py:55602954#: bzrlib/builtins.py:5593
2950msgid "Create, remove or modify a tag naming a revision."2955msgid "Create, remove or modify a tag naming a revision."
2951msgstr ""2956msgstr ""
29522957
2953#: bzrlib/builtins.py:55622958#: bzrlib/builtins.py:5595
2954msgid ""2959msgid ""
2955"Tags give human-meaningful names to revisions. Commands that take a -r\n"2960"Tags give human-meaningful names to revisions. Commands that take a -r\n"
2956"(--revision) option can be given -rtag:X, where X is any previously\n"2961"(--revision) option can be given -rtag:X, where X is any previously\n"
2957"created tag."2962"created tag."
2958msgstr ""2963msgstr ""
29592964
2960#: bzrlib/builtins.py:55662965#: bzrlib/builtins.py:5599
2961msgid ""2966msgid ""
2962"Tags are stored in the branch. Tags are copied from one branch to another\n"2967"Tags are stored in the branch. Tags are copied from one branch to another\n"
2963"along when you branch, push, pull or merge."2968"along when you branch, push, pull or merge."
2964msgstr ""2969msgstr ""
29652970
2966#: bzrlib/builtins.py:55692971#: bzrlib/builtins.py:5602
2967msgid ""2972msgid ""
2968"It is an error to give a tag name that already exists unless you pass\n"2973"It is an error to give a tag name that already exists unless you pass\n"
2969"--force, in which case the tag is moved to point to the new revision."2974"--force, in which case the tag is moved to point to the new revision."
2970msgstr ""2975msgstr ""
29712976
2972#: bzrlib/builtins.py:55722977#: bzrlib/builtins.py:5605
2973msgid ""2978msgid ""
2974"To rename a tag (change the name but keep it on the same revsion), run "2979"To rename a tag (change the name but keep it on the same revsion), run "
2975"``bzr\n"2980"``bzr\n"
2976"tag new-name -r tag:old-name`` and then ``bzr tag --delete oldname``."2981"tag new-name -r tag:old-name`` and then ``bzr tag --delete oldname``."
2977msgstr ""2982msgstr ""
29782983
2979#: bzrlib/builtins.py:55752984#: bzrlib/builtins.py:5608
2980msgid ""2985msgid ""
2981"If no tag name is specified it will be determined through the \n"2986"If no tag name is specified it will be determined through the \n"
2982"'automatic_tag_name' hook. This can e.g. be used to automatically tag\n"2987"'automatic_tag_name' hook. This can e.g. be used to automatically tag\n"
@@ -2985,53 +2990,53 @@
2985msgstr ""2990msgstr ""
29862991
2987# help of 'delete' option of 'tag' command2992# help of 'delete' option of 'tag' command
2988#: bzrlib/builtins.py:55852993#: bzrlib/builtins.py:5618
2989msgid "Delete this tag rather than placing it."2994msgid "Delete this tag rather than placing it."
2990msgstr ""2995msgstr ""
29912996
2992# help of 'directory' option of 'tag' command2997# help of 'directory' option of 'tag' command
2993#: bzrlib/builtins.py:55882998#: bzrlib/builtins.py:5621
2994msgid "Branch in which to place the tag."2999msgid "Branch in which to place the tag."
2995msgstr ""3000msgstr ""
29963001
2997# help of 'force' option of 'tag' command3002# help of 'force' option of 'tag' command
2998#: bzrlib/builtins.py:55903003#: bzrlib/builtins.py:5623
2999msgid "Replace existing tags."3004msgid "Replace existing tags."
3000msgstr ""3005msgstr ""
30013006
3002#: bzrlib/builtins.py:56293007#: bzrlib/builtins.py:5672
3003msgid "List tags."3008msgid "List tags."
3004msgstr ""3009msgstr ""
30053010
3006#: bzrlib/builtins.py:56313011#: bzrlib/builtins.py:5674
3007msgid ""3012msgid ""
3008"This command shows a table of tag names and the revisions they reference."3013"This command shows a table of tag names and the revisions they reference."
3009msgstr ""3014msgstr ""
30103015
3011# help of 'directory' option of 'tags' command3016# help of 'directory' option of 'tags' command
3012#: bzrlib/builtins.py:56373017#: bzrlib/builtins.py:5680
3013msgid "Branch whose tags should be displayed."3018msgid "Branch whose tags should be displayed."
3014msgstr ""3019msgstr ""
30153020
3016# help of 'sort' option of 'tags' command3021# help of 'sort' option of 'tags' command
3017#: bzrlib/builtins.py:56393022#: bzrlib/builtins.py:5682
3018msgid "Sort tags by different criteria."3023msgid "Sort tags by different criteria."
3019msgstr ""3024msgstr ""
30203025
3021# title of 'sort' option of 'tags' command3026# title of 'sort' option of 'tags' command
3022#: bzrlib/builtins.py:56393027#: bzrlib/builtins.py:5682
3023msgid "Sorting"3028msgid "Sorting"
3024msgstr ""3029msgstr ""
30253030
3026#: bzrlib/builtins.py:56843031#: bzrlib/builtins.py:5727
3027msgid "Reconfigure the type of a bzr directory."3032msgid "Reconfigure the type of a bzr directory."
3028msgstr ""3033msgstr ""
30293034
3030#: bzrlib/builtins.py:56863035#: bzrlib/builtins.py:5729
3031msgid "A target configuration must be specified."3036msgid "A target configuration must be specified."
3032msgstr ""3037msgstr ""
30333038
3034#: bzrlib/builtins.py:56883039#: bzrlib/builtins.py:5731
3035msgid ""3040msgid ""
3036"For checkouts, the bind-to location will be auto-detected if not specified.\n"3041"For checkouts, the bind-to location will be auto-detected if not specified.\n"
3037"The order of preference is\n"3042"The order of preference is\n"
@@ -3043,42 +3048,42 @@
3043msgstr ""3048msgstr ""
30443049
3045# title of 'target_type' option of 'reconfigure' command3050# title of 'target_type' option of 'reconfigure' command
3046#: bzrlib/builtins.py:57023051#: bzrlib/builtins.py:5745
3047msgid "Target type"3052msgid "Target type"
3048msgstr ""3053msgstr ""
30493054
3050# help of 'target_type' option of 'reconfigure' command3055# help of 'target_type' option of 'reconfigure' command
3051#: bzrlib/builtins.py:57033056#: bzrlib/builtins.py:5746
3052msgid "The type to reconfigure the directory to."3057msgid "The type to reconfigure the directory to."
3053msgstr ""3058msgstr ""
30543059
3055# help of 'bind-to' option of 'reconfigure' command3060# help of 'bind-to' option of 'reconfigure' command
3056#: bzrlib/builtins.py:57183061#: bzrlib/builtins.py:5761
3057msgid "Branch to bind checkout to."3062msgid "Branch to bind checkout to."
3058msgstr ""3063msgstr ""
30593064
3060# help of 'force' option of 'reconfigure' command3065# help of 'force' option of 'reconfigure' command
3061#: bzrlib/builtins.py:57203066#: bzrlib/builtins.py:5763
3062msgid "Perform reconfiguration even if local changes will be lost."3067msgid "Perform reconfiguration even if local changes will be lost."
3063msgstr ""3068msgstr ""
30643069
3065# help of 'stacked-on' option of 'reconfigure' command3070# help of 'stacked-on' option of 'reconfigure' command
3066#: bzrlib/builtins.py:57233071#: bzrlib/builtins.py:5766
3067msgid "Reconfigure a branch to be stacked on another branch."3072msgid "Reconfigure a branch to be stacked on another branch."
3068msgstr ""3073msgstr ""
30693074
3070# help of 'unstacked' option of 'reconfigure' command3075# help of 'unstacked' option of 'reconfigure' command
3071#: bzrlib/builtins.py:57273076#: bzrlib/builtins.py:5770
3072msgid ""3077msgid ""
3073"Reconfigure a branch to be unstacked. This may require copying substantial "3078"Reconfigure a branch to be unstacked. This may require copying substantial "
3074"data into it."3079"data into it."
3075msgstr ""3080msgstr ""
30763081
3077#: bzrlib/builtins.py:57753082#: bzrlib/builtins.py:5818
3078msgid "Set the branch of a checkout and update."3083msgid "Set the branch of a checkout and update."
3079msgstr ""3084msgstr ""
30803085
3081#: bzrlib/builtins.py:57773086#: bzrlib/builtins.py:5820
3082msgid ""3087msgid ""
3083"For lightweight checkouts, this changes the branch being referenced.\n"3088"For lightweight checkouts, this changes the branch being referenced.\n"
3084"For heavyweight checkouts, this checks that there are no local commits\n"3089"For heavyweight checkouts, this checks that there are no local commits\n"
@@ -3086,17 +3091,17 @@
3086"of the new location and binds to it."3091"of the new location and binds to it."
3087msgstr ""3092msgstr ""
30883093
3089#: bzrlib/builtins.py:57823094#: bzrlib/builtins.py:5825
3090msgid ""3095msgid ""
3091"In both cases, the working tree is updated and uncommitted changes\n"3096"In both cases, the working tree is updated and uncommitted changes\n"
3092"are merged. The user can commit or revert these as they desire."3097"are merged. The user can commit or revert these as they desire."
3093msgstr ""3098msgstr ""
30943099
3095#: bzrlib/builtins.py:57853100#: bzrlib/builtins.py:5828
3096msgid "Pending merges need to be committed or reverted before using switch."3101msgid "Pending merges need to be committed or reverted before using switch."
3097msgstr ""3102msgstr ""
30983103
3099#: bzrlib/builtins.py:57873104#: bzrlib/builtins.py:5830
3100msgid ""3105msgid ""
3101"The path to the branch to switch to can be specified relative to the parent\n"3106"The path to the branch to switch to can be specified relative to the parent\n"
3102"directory of the current branch. For example, if you are currently in a\n"3107"directory of the current branch. For example, if you are currently in a\n"
@@ -3104,7 +3109,7 @@
3104"/path/to/newbranch."3109"/path/to/newbranch."
3105msgstr ""3110msgstr ""
31063111
3107#: bzrlib/builtins.py:57923112#: bzrlib/builtins.py:5835
3108msgid ""3113msgid ""
3109"Bound branches use the nickname of its master branch unless it is set\n"3114"Bound branches use the nickname of its master branch unless it is set\n"
3110"locally, in which case switching will update the local nickname to be\n"3115"locally, in which case switching will update the local nickname to be\n"
@@ -3112,20 +3117,20 @@
3112msgstr ""3117msgstr ""
31133118
3114# help of 'force' option of 'switch' command3119# help of 'force' option of 'switch' command
3115#: bzrlib/builtins.py:58003120#: bzrlib/builtins.py:5843
3116msgid "Switch even if local commits will be lost."3121msgid "Switch even if local commits will be lost."
3117msgstr ""3122msgstr ""
31183123
3119# help of 'create-branch' option of 'switch' command3124# help of 'create-branch' option of 'switch' command
3120#: bzrlib/builtins.py:58033125#: bzrlib/builtins.py:5846
3121msgid "Create the target branch from this one before switching to it."3126msgid "Create the target branch from this one before switching to it."
3122msgstr ""3127msgstr ""
31233128
3124#: bzrlib/builtins.py:58723129#: bzrlib/builtins.py:5915
3125msgid "Manage filtered views."3130msgid "Manage filtered views."
3126msgstr ""3131msgstr ""
31273132
3128#: bzrlib/builtins.py:58743133#: bzrlib/builtins.py:5917
3129msgid ""3134msgid ""
3130"Views provide a mask over the tree so that users can focus on\n"3135"Views provide a mask over the tree so that users can focus on\n"
3131"a subset of a tree when doing their work. After creating a view,\n"3136"a subset of a tree when doing their work. After creating a view,\n"
@@ -3135,7 +3140,7 @@
3135"must be within the current view."3140"must be within the current view."
3136msgstr ""3141msgstr ""
31373142
3138#: bzrlib/builtins.py:58813143#: bzrlib/builtins.py:5924
3139msgid ""3144msgid ""
3140"In most cases, a view has a short life-span: it is created to make\n"3145"In most cases, a view has a short life-span: it is created to make\n"
3141"a selected change and is deleted once that change is committed.\n"3146"a selected change and is deleted once that change is committed.\n"
@@ -3143,7 +3148,7 @@
3143"and switch between them."3148"and switch between them."
3144msgstr ""3149msgstr ""
31453150
3146#: bzrlib/builtins.py:58863151#: bzrlib/builtins.py:5929
3147msgid ""3152msgid ""
3148"To disable the current view without deleting it, you can switch to\n"3153"To disable the current view without deleting it, you can switch to\n"
3149"the pseudo view called ``off``. This can be useful when you need\n"3154"the pseudo view called ``off``. This can be useful when you need\n"
@@ -3151,131 +3156,131 @@
3151"want to switch back to your view after that."3156"want to switch back to your view after that."
3152msgstr ""3157msgstr ""
31533158
3154#: bzrlib/builtins.py:58913159#: bzrlib/builtins.py:5934
3155msgid ""3160msgid ""
3156":Examples:\n"3161":Examples:\n"
3157" To define the current view::"3162" To define the current view::"
3158msgstr ""3163msgstr ""
31593164
3160#: bzrlib/builtins.py:58943165#: bzrlib/builtins.py:5937
3161msgid " bzr view file1 dir1 ..."3166msgid " bzr view file1 dir1 ..."
3162msgstr ""3167msgstr ""
31633168
3164#: bzrlib/builtins.py:58963169#: bzrlib/builtins.py:5939
3165msgid " To list the current view::"3170msgid " To list the current view::"
3166msgstr ""3171msgstr ""
31673172
3168#: bzrlib/builtins.py:58983173#: bzrlib/builtins.py:5941
3169msgid " bzr view"3174msgid " bzr view"
3170msgstr ""3175msgstr ""
31713176
3172#: bzrlib/builtins.py:59003177#: bzrlib/builtins.py:5943
3173msgid " To delete the current view::"3178msgid " To delete the current view::"
3174msgstr ""3179msgstr ""
31753180
3176#: bzrlib/builtins.py:59023181#: bzrlib/builtins.py:5945
3177msgid " bzr view --delete"3182msgid " bzr view --delete"
3178msgstr ""3183msgstr ""
31793184
3180#: bzrlib/builtins.py:59043185#: bzrlib/builtins.py:5947
3181msgid " To disable the current view without deleting it::"3186msgid " To disable the current view without deleting it::"
3182msgstr ""3187msgstr ""
31833188
3184#: bzrlib/builtins.py:59063189#: bzrlib/builtins.py:5949
3185msgid " bzr view --switch off"3190msgid " bzr view --switch off"
3186msgstr ""3191msgstr ""
31873192
3188#: bzrlib/builtins.py:59083193#: bzrlib/builtins.py:5951
3189msgid " To define a named view and switch to it::"3194msgid " To define a named view and switch to it::"
3190msgstr ""3195msgstr ""
31913196
3192#: bzrlib/builtins.py:59103197#: bzrlib/builtins.py:5953
3193msgid " bzr view --name view-name file1 dir1 ..."3198msgid " bzr view --name view-name file1 dir1 ..."
3194msgstr ""3199msgstr ""
31953200
3196#: bzrlib/builtins.py:59123201#: bzrlib/builtins.py:5955
3197msgid " To list a named view::"3202msgid " To list a named view::"
3198msgstr ""3203msgstr ""
31993204
3200#: bzrlib/builtins.py:59143205#: bzrlib/builtins.py:5957
3201msgid " bzr view --name view-name"3206msgid " bzr view --name view-name"
3202msgstr ""3207msgstr ""
32033208
3204#: bzrlib/builtins.py:59163209#: bzrlib/builtins.py:5959
3205msgid " To delete a named view::"3210msgid " To delete a named view::"
3206msgstr ""3211msgstr ""
32073212
3208#: bzrlib/builtins.py:59183213#: bzrlib/builtins.py:5961
3209msgid " bzr view --name view-name --delete"3214msgid " bzr view --name view-name --delete"
3210msgstr ""3215msgstr ""
32113216
3212#: bzrlib/builtins.py:59203217#: bzrlib/builtins.py:5963
3213msgid " To switch to a named view::"3218msgid " To switch to a named view::"
3214msgstr ""3219msgstr ""
32153220
3216#: bzrlib/builtins.py:59223221#: bzrlib/builtins.py:5965
3217msgid " bzr view --switch view-name"3222msgid " bzr view --switch view-name"
3218msgstr ""3223msgstr ""
32193224
3220#: bzrlib/builtins.py:59243225#: bzrlib/builtins.py:5967
3221msgid " To list all views defined::"3226msgid " To list all views defined::"
3222msgstr ""3227msgstr ""
32233228
3224#: bzrlib/builtins.py:59263229#: bzrlib/builtins.py:5969
3225msgid " bzr view --all"3230msgid " bzr view --all"
3226msgstr ""3231msgstr ""
32273232
3228#: bzrlib/builtins.py:59283233#: bzrlib/builtins.py:5971
3229msgid " To delete all views::"3234msgid " To delete all views::"
3230msgstr ""3235msgstr ""
32313236
3232#: bzrlib/builtins.py:59303237#: bzrlib/builtins.py:5973
3233msgid " bzr view --delete --all"3238msgid " bzr view --delete --all"
3234msgstr ""3239msgstr ""
32353240
3236# help of 'all' option of 'view' command3241# help of 'all' option of 'view' command
3237#: bzrlib/builtins.py:59373242#: bzrlib/builtins.py:5980
3238msgid "Apply list or delete action to all views."3243msgid "Apply list or delete action to all views."
3239msgstr ""3244msgstr ""
32403245
3241# help of 'delete' option of 'view' command3246# help of 'delete' option of 'view' command
3242#: bzrlib/builtins.py:59403247#: bzrlib/builtins.py:5983
3243msgid "Delete the view."3248msgid "Delete the view."
3244msgstr ""3249msgstr ""
32453250
3246# help of 'name' option of 'view' command3251# help of 'name' option of 'view' command
3247#: bzrlib/builtins.py:59433252#: bzrlib/builtins.py:5986
3248msgid "Name of the view to define, list or delete."3253msgid "Name of the view to define, list or delete."
3249msgstr ""3254msgstr ""
32503255
3251# help of 'switch' option of 'view' command3256# help of 'switch' option of 'view' command
3252#: bzrlib/builtins.py:59473257#: bzrlib/builtins.py:5990
3253msgid "Name of the view to switch to."3258msgid "Name of the view to switch to."
3254msgstr ""3259msgstr ""
32553260
3256#: bzrlib/builtins.py:60473261#: bzrlib/builtins.py:6090
3257msgid "Remove a branch."3262msgid "Remove a branch."
3258msgstr ""3263msgstr ""
32593264
3260#: bzrlib/builtins.py:60493265#: bzrlib/builtins.py:6092
3261msgid ""3266msgid ""
3262"This will remove the branch from the specified location but \n"3267"This will remove the branch from the specified location but \n"
3263"will keep any working tree or repository in place."3268"will keep any working tree or repository in place."
3264msgstr ""3269msgstr ""
32653270
3266#: bzrlib/builtins.py:60543271#: bzrlib/builtins.py:6097
3267msgid " Remove the branch at repo/trunk::"3272msgid " Remove the branch at repo/trunk::"
3268msgstr ""3273msgstr ""
32693274
3270#: bzrlib/builtins.py:60563275#: bzrlib/builtins.py:6099
3271msgid " bzr remove-branch repo/trunk"3276msgid " bzr remove-branch repo/trunk"
3272msgstr ""3277msgstr ""
32733278
3274#: bzrlib/builtins.py:60723279#: bzrlib/builtins.py:6115
3275msgid "Temporarily set aside some changes from the current tree."3280msgid "Temporarily set aside some changes from the current tree."
3276msgstr ""3281msgstr ""
32773282
3278#: bzrlib/builtins.py:60743283#: bzrlib/builtins.py:6117
3279msgid ""3284msgid ""
3280"Shelve allows you to temporarily put changes you've made \"on the shelf\",\n"3285"Shelve allows you to temporarily put changes you've made \"on the shelf\",\n"
3281"ie. out of the way, until a later time when you can bring them back from\n"3286"ie. out of the way, until a later time when you can bring them back from\n"
@@ -3284,11 +3289,11 @@
3284"will they survive its deletion."3289"will they survive its deletion."
3285msgstr ""3290msgstr ""
32863291
3287#: bzrlib/builtins.py:60803292#: bzrlib/builtins.py:6123
3288msgid "If shelve --list is specified, previously-shelved changes are listed."3293msgid "If shelve --list is specified, previously-shelved changes are listed."
3289msgstr ""3294msgstr ""
32903295
3291#: bzrlib/builtins.py:60823296#: bzrlib/builtins.py:6125
3292msgid ""3297msgid ""
3293"Shelve is intended to help separate several sets of changes that have\n"3298"Shelve is intended to help separate several sets of changes that have\n"
3294"been inappropriately mingled. If you just want to get rid of all changes\n"3299"been inappropriately mingled. If you just want to get rid of all changes\n"
@@ -3296,35 +3301,35 @@
3296"shelve all text changes at once, use shelve --all."3301"shelve all text changes at once, use shelve --all."
3297msgstr ""3302msgstr ""
32983303
3299#: bzrlib/builtins.py:60873304#: bzrlib/builtins.py:6130
3300msgid ""3305msgid ""
3301"If filenames are specified, only the changes to those files will be\n"3306"If filenames are specified, only the changes to those files will be\n"
3302"shelved. Other files will be left untouched."3307"shelved. Other files will be left untouched."
3303msgstr ""3308msgstr ""
33043309
3305#: bzrlib/builtins.py:60903310#: bzrlib/builtins.py:6133
3306msgid ""3311msgid ""
3307"If a revision is specified, changes since that revision will be shelved."3312"If a revision is specified, changes since that revision will be shelved."
3308msgstr ""3313msgstr ""
33093314
3310#: bzrlib/builtins.py:60923315#: bzrlib/builtins.py:6135
3311msgid ""3316msgid ""
3312"You can put multiple items on the shelf, and by default, 'unshelve' will\n"3317"You can put multiple items on the shelf, and by default, 'unshelve' will\n"
3313"restore the most recently shelved changes."3318"restore the most recently shelved changes."
3314msgstr ""3319msgstr ""
33153320
3316#: bzrlib/builtins.py:60953321#: bzrlib/builtins.py:6138
3317msgid ""3322msgid ""
3318"For complicated changes, it is possible to edit the changes in a separate\n"3323"For complicated changes, it is possible to edit the changes in a separate\n"
3319"editor program to decide what the file remaining in the working copy\n"3324"editor program to decide what the file remaining in the working copy\n"
3320"should look like. To do this, add the configuration option"3325"should look like. To do this, add the configuration option"
3321msgstr ""3326msgstr ""
33223327
3323#: bzrlib/builtins.py:60993328#: bzrlib/builtins.py:6142
3324msgid " change_editor = PROGRAM @new_path @old_path"3329msgid " change_editor = PROGRAM @new_path @old_path"
3325msgstr ""3330msgstr ""
33263331
3327#: bzrlib/builtins.py:61013332#: bzrlib/builtins.py:6144
3328msgid ""3333msgid ""
3329"where @new_path is replaced with the path of the new version of the \n"3334"where @new_path is replaced with the path of the new version of the \n"
3330"file and @old_path is replaced with the path of the old version of \n"3335"file and @old_path is replaced with the path of the old version of \n"
@@ -3334,35 +3339,35 @@
3334msgstr ""3339msgstr ""
33353340
3336# help of 'all' option of 'shelve' command3341# help of 'all' option of 'shelve' command
3337#: bzrlib/builtins.py:61133342#: bzrlib/builtins.py:6156
3338msgid "Shelve all changes."3343msgid "Shelve all changes."
3339msgstr ""3344msgstr ""
33403345
3341# help of 'writer' option of 'shelve' command3346# help of 'writer' option of 'shelve' command
3342#: bzrlib/builtins.py:61153347#: bzrlib/builtins.py:6158
3343msgid "Method to use for writing diffs."3348msgid "Method to use for writing diffs."
3344msgstr ""3349msgstr ""
33453350
3346# title of 'writer' option of 'shelve' command3351# title of 'writer' option of 'shelve' command
3347#: bzrlib/builtins.py:61153352#: bzrlib/builtins.py:6158
3348msgid "writer"3353msgid "writer"
3349msgstr ""3354msgstr ""
33503355
3351# help of 'list' option of 'shelve' command3356# help of 'list' option of 'shelve' command
3352#: bzrlib/builtins.py:61193357#: bzrlib/builtins.py:6162
3353msgid "List shelved changes."3358msgid "List shelved changes."
3354msgstr ""3359msgstr ""
33553360
3356# help of 'destroy' option of 'shelve' command3361# help of 'destroy' option of 'shelve' command
3357#: bzrlib/builtins.py:61213362#: bzrlib/builtins.py:6164
3358msgid "Destroy removed changes instead of shelving them."3363msgid "Destroy removed changes instead of shelving them."
3359msgstr ""3364msgstr ""
33603365
3361#: bzrlib/builtins.py:61613366#: bzrlib/builtins.py:6204
3362msgid "Restore shelved changes."3367msgid "Restore shelved changes."
3363msgstr ""3368msgstr ""
33643369
3365#: bzrlib/builtins.py:61633370#: bzrlib/builtins.py:6206
3366msgid ""3371msgid ""
3367"By default, the most recently shelved changes are restored. However if you\n"3372"By default, the most recently shelved changes are restored. However if you\n"
3368"specify a shelf by id those changes will be restored instead. This works\n"3373"specify a shelf by id those changes will be restored instead. This works\n"
@@ -3370,60 +3375,60 @@
3370msgstr ""3375msgstr ""
33713376
3372# help of 'action' option of 'unshelve' command3377# help of 'action' option of 'unshelve' command
3373#: bzrlib/builtins.py:61723378#: bzrlib/builtins.py:6215
3374msgid "The action to perform."3379msgid "The action to perform."
3375msgstr ""3380msgstr ""
33763381
3377#: bzrlib/builtins.py:61943382#: bzrlib/builtins.py:6237
3378msgid "Remove unwanted files from working tree."3383msgid "Remove unwanted files from working tree."
3379msgstr ""3384msgstr ""
33803385
3381#: bzrlib/builtins.py:61963386#: bzrlib/builtins.py:6239
3382msgid ""3387msgid ""
3383"By default, only unknown files, not ignored files, are deleted. Versioned\n"3388"By default, only unknown files, not ignored files, are deleted. Versioned\n"
3384"files are never deleted."3389"files are never deleted."
3385msgstr ""3390msgstr ""
33863391
3387#: bzrlib/builtins.py:61993392#: bzrlib/builtins.py:6242
3388msgid ""3393msgid ""
3389"Another class is 'detritus', which includes files emitted by bzr during\n"3394"Another class is 'detritus', which includes files emitted by bzr during\n"
3390"normal operations and selftests. (The value of these files decreases with\n"3395"normal operations and selftests. (The value of these files decreases with\n"
3391"time.)"3396"time.)"
3392msgstr ""3397msgstr ""
33933398
3394#: bzrlib/builtins.py:62033399#: bzrlib/builtins.py:6246
3395msgid ""3400msgid ""
3396"If no options are specified, unknown files are deleted. Otherwise, option\n"3401"If no options are specified, unknown files are deleted. Otherwise, option\n"
3397"flags are respected, and may be combined."3402"flags are respected, and may be combined."
3398msgstr ""3403msgstr ""
33993404
3400#: bzrlib/builtins.py:62063405#: bzrlib/builtins.py:6249
3401msgid "To check what clean-tree will do, use --dry-run."3406msgid "To check what clean-tree will do, use --dry-run."
3402msgstr ""3407msgstr ""
34033408
3404# help of 'ignored' option of 'clean-tree' command3409# help of 'ignored' option of 'clean-tree' command
3405#: bzrlib/builtins.py:62093410#: bzrlib/builtins.py:6252
3406msgid "Delete all ignored files."3411msgid "Delete all ignored files."
3407msgstr ""3412msgstr ""
34083413
3409# help of 'detritus' option of 'clean-tree' command3414# help of 'detritus' option of 'clean-tree' command
3410#: bzrlib/builtins.py:62103415#: bzrlib/builtins.py:6253
3411msgid ""3416msgid ""
3412"Delete conflict files, merge and revert backups, and failed selftest dirs."3417"Delete conflict files, merge and revert backups, and failed selftest dirs."
3413msgstr ""3418msgstr ""
34143419
3415# help of 'unknown' option of 'clean-tree' command3420# help of 'unknown' option of 'clean-tree' command
3416#: bzrlib/builtins.py:62133421#: bzrlib/builtins.py:6256
3417msgid "Delete files unknown to bzr (default)."3422msgid "Delete files unknown to bzr (default)."
3418msgstr ""3423msgstr ""
34193424
3420# help of 'dry-run' option of 'clean-tree' command3425# help of 'dry-run' option of 'clean-tree' command
3421#: bzrlib/builtins.py:62143426#: bzrlib/builtins.py:6257
3422msgid "Show files to delete instead of deleting them."3427msgid "Show files to delete instead of deleting them."
3423msgstr ""3428msgstr ""
34243429
3425# help of 'force' option of 'clean-tree' command3430# help of 'force' option of 'clean-tree' command
3426#: bzrlib/builtins.py:62163431#: bzrlib/builtins.py:6259
3427msgid "Do not prompt before deleting."3432msgid "Do not prompt before deleting."
3428msgstr ""3433msgstr ""
34293434
@@ -3594,26 +3599,26 @@
3594msgid "All commits signed with verifiable keys"3599msgid "All commits signed with verifiable keys"
3595msgstr ""3600msgstr ""
35963601
3597#: bzrlib/config.py:31183602#: bzrlib/config.py:3277
3598msgid "Display, set or remove a configuration option."3603msgid "Display, set or remove a configuration option."
3599msgstr ""3604msgstr ""
36003605
3601#: bzrlib/config.py:31203606#: bzrlib/config.py:3279
3602msgid "Display the active value for a given option."3607msgid "Display the active value for a given option."
3603msgstr ""3608msgstr ""
36043609
3605#: bzrlib/config.py:31223610#: bzrlib/config.py:3281
3606msgid ""3611msgid ""
3607"If --all is specified, NAME is interpreted as a regular expression and all\n"3612"If --all is specified, NAME is interpreted as a regular expression and all\n"
3608"matching options are displayed mentioning their scope. The active value\n"3613"matching options are displayed mentioning their scope. The active value\n"
3609"that bzr will take into account is the first one displayed for each option."3614"that bzr will take into account is the first one displayed for each option."
3610msgstr ""3615msgstr ""
36113616
3612#: bzrlib/config.py:31263617#: bzrlib/config.py:3285
3613msgid "If no NAME is given, --all .* is implied."3618msgid "If no NAME is given, --all .* is implied."
3614msgstr ""3619msgstr ""
36153620
3616#: bzrlib/config.py:31283621#: bzrlib/config.py:3287
3617msgid ""3622msgid ""
3618"Setting a value is achieved by using name=value without spaces. The value\n"3623"Setting a value is achieved by using name=value without spaces. The value\n"
3619"is set in the most relevant scope and can be checked by displaying the\n"3624"is set in the most relevant scope and can be checked by displaying the\n"
@@ -3621,17 +3626,17 @@
3621msgstr ""3626msgstr ""
36223627
3623# help of 'scope' option of 'config' command3628# help of 'scope' option of 'config' command
3624#: bzrlib/config.py:31393629#: bzrlib/config.py:3298
3625msgid "Reduce the scope to the specified configuration file"3630msgid "Reduce the scope to the specified configuration file"
3626msgstr ""3631msgstr ""
36273632
3628# help of 'all' option of 'config' command3633# help of 'all' option of 'config' command
3629#: bzrlib/config.py:31433634#: bzrlib/config.py:3302
3630msgid "Display all the defined values for the matching options."3635msgid "Display all the defined values for the matching options."
3631msgstr ""3636msgstr ""
36323637
3633# help of 'remove' option of 'config' command3638# help of 'remove' option of 'config' command
3634#: bzrlib/config.py:31453639#: bzrlib/config.py:3304
3635msgid "Remove the option from the configuration file"3640msgid "Remove the option from the configuration file"
3636msgstr ""3641msgstr ""
36373642
@@ -3690,244 +3695,244 @@
3690msgid "action"3695msgid "action"
3691msgstr ""3696msgstr ""
36923697
3693#: bzrlib/errors.py:2083698#: bzrlib/errors.py:215
3694msgid "The tree builder is already building a tree."3699msgid "The tree builder is already building a tree."
3695msgstr ""3700msgstr ""
36963701
3697#: bzrlib/errors.py:2293702#: bzrlib/errors.py:236
3698msgid "The dirstate file (%(state)s) appears to be corrupt: %(msg)s"3703msgid "The dirstate file (%(state)s) appears to be corrupt: %(msg)s"
3699msgstr ""3704msgstr ""
37003705
3701#: bzrlib/errors.py:2483706#: bzrlib/errors.py:255
3702msgid ""3707msgid ""
3703"The API for \"%(api)s\" is not compatible with \"%(wanted)s\". It supports "3708"The API for \"%(api)s\" is not compatible with \"%(wanted)s\". It supports "
3704"versions \"%(minimum)s\" to \"%(current)s\"."3709"versions \"%(minimum)s\" to \"%(current)s\"."
3705msgstr ""3710msgstr ""
37063711
3707#: bzrlib/errors.py:2603712#: bzrlib/errors.py:267
3708msgid "The transport '%(transport)s' is only accessible within this process."3713msgid "The transport '%(transport)s' is only accessible within this process."
3709msgstr ""3714msgstr ""
37103715
3711#: bzrlib/errors.py:2783716#: bzrlib/errors.py:285
3712msgid "Invalid revision number %(revno)s"3717msgid "Invalid revision number %(revno)s"
3713msgstr ""3718msgstr ""
37143719
3715#: bzrlib/errors.py:2873720#: bzrlib/errors.py:294
3716msgid "Invalid revision-id {%(revision_id)s} in %(branch)s"3721msgid "Invalid revision-id {%(revision_id)s} in %(branch)s"
3717msgstr ""3722msgstr ""
37183723
3719#: bzrlib/errors.py:2983724#: bzrlib/errors.py:305
3720msgid "Reserved revision-id {%(revision_id)s}"3725msgid "Reserved revision-id {%(revision_id)s}"
3721msgstr ""3726msgstr ""
37223727
3723#: bzrlib/errors.py:3123728#: bzrlib/errors.py:319
3724msgid "There is no public branch set for \"%(branch_url)s\"."3729msgid "There is no public branch set for \"%(branch_url)s\"."
3725msgstr ""3730msgstr ""
37263731
3727#: bzrlib/errors.py:3223732#: bzrlib/errors.py:329
3728msgid ""3733msgid ""
3729"No help could be found for '%(topic)s'. Please use 'bzr help topics' to "3734"No help could be found for '%(topic)s'. Please use 'bzr help topics' to "
3730"obtain a list of topics."3735"obtain a list of topics."
3731msgstr ""3736msgstr ""
37323737
3733#: bzrlib/errors.py:3313738#: bzrlib/errors.py:338
3734msgid "The file id \"%(file_id)s\" is not present in the tree %(tree)s."3739msgid "The file id \"%(file_id)s\" is not present in the tree %(tree)s."
3735msgstr ""3740msgstr ""
37363741
3737#: bzrlib/errors.py:3413742#: bzrlib/errors.py:348
3738msgid ""3743msgid ""
3739"The file id \"%(file_id)s\" is not present in the repository %(repository)r"3744"The file id \"%(file_id)s\" is not present in the repository %(repository)r"
3740msgstr ""3745msgstr ""
37413746
3742#: bzrlib/errors.py:3503747#: bzrlib/errors.py:357
3743msgid "The branch '%(branch)s' is not stacked."3748msgid "The branch '%(branch)s' is not stacked."
3744msgstr ""3749msgstr ""
37453750
3746#: bzrlib/errors.py:3643751#: bzrlib/errors.py:371
3747msgid "No WorkingTree exists for \"%(base)s\"."3752msgid "No WorkingTree exists for \"%(base)s\"."
3748msgstr ""3753msgstr ""
37493754
3750#: bzrlib/errors.py:3733755#: bzrlib/errors.py:380
3751msgid "Not currently building a tree."3756msgid "Not currently building a tree."
3752msgstr ""3757msgstr ""
37533758
3754#: bzrlib/errors.py:3783759#: bzrlib/errors.py:385
3755msgid "%(url)s is not a local path."3760msgid "%(url)s is not a local path."
3756msgstr ""3761msgstr ""
37573762
3758#: bzrlib/errors.py:4063763#: bzrlib/errors.py:413
3759msgid "%(not_locked)r is not write locked but needs to be."3764msgid "%(not_locked)r is not write locked but needs to be."
3760msgstr ""3765msgstr ""
37613766
3762#: bzrlib/errors.py:4143767#: bzrlib/errors.py:421
3763msgid "Error in command line options"3768msgid "Error in command line options"
3764msgstr ""3769msgstr ""
37653770
3766#: bzrlib/errors.py:4193771#: bzrlib/errors.py:426
3767msgid "%(value)s is not an index of type %(_type)s."3772msgid "%(value)s is not an index of type %(_type)s."
3768msgstr ""3773msgstr ""
37693774
3770#: bzrlib/errors.py:4293775#: bzrlib/errors.py:436
3771msgid "Error in data for index %(value)s."3776msgid "Error in data for index %(value)s."
3772msgstr ""3777msgstr ""
37733778
3774#: bzrlib/errors.py:4383779#: bzrlib/errors.py:445
3775msgid "The key '%(key)s' is already in index '%(index)s'."3780msgid "The key '%(key)s' is already in index '%(index)s'."
3776msgstr ""3781msgstr ""
37773782
3778#: bzrlib/errors.py:4483783#: bzrlib/errors.py:455
3779msgid "The key '%(key)s' is not a valid key."3784msgid "The key '%(key)s' is not a valid key."
3780msgstr ""3785msgstr ""
37813786
3782#: bzrlib/errors.py:4573787#: bzrlib/errors.py:464
3783msgid "Could not parse options for index %(value)s."3788msgid "Could not parse options for index %(value)s."
3784msgstr ""3789msgstr ""
37853790
3786#: bzrlib/errors.py:4663791#: bzrlib/errors.py:473
3787msgid "The value '%(value)s' is not a valid value."3792msgid "The value '%(value)s' is not a valid value."
3788msgstr ""3793msgstr ""
37893794
3790#: bzrlib/errors.py:4943795#: bzrlib/errors.py:501
3791msgid "Generic path error: %(path)r%(extra)s)"3796msgid "Generic path error: %(path)r%(extra)s)"
3792msgstr ""3797msgstr ""
37933798
3794#: bzrlib/errors.py:5073799#: bzrlib/errors.py:514
3795msgid "No such file: %(path)r%(extra)s"3800msgid "No such file: %(path)r%(extra)s"
3796msgstr ""3801msgstr ""
37973802
3798#: bzrlib/errors.py:5123803#: bzrlib/errors.py:519
3799msgid "File exists: %(path)r%(extra)s"3804msgid "File exists: %(path)r%(extra)s"
3800msgstr ""3805msgstr ""
38013806
3802#: bzrlib/errors.py:5183807#: bzrlib/errors.py:525
3803msgid ""3808msgid ""
3804"Could not rename %(source)s => %(dest)s because both files exist. (Use --"3809"Could not rename %(source)s => %(dest)s because both files exist. (Use --"
3805"after to tell bzr about a rename that has already happened)%(extra)s"3810"after to tell bzr about a rename that has already happened)%(extra)s"
3806msgstr ""3811msgstr ""
38073812
3808#: bzrlib/errors.py:5343813#: bzrlib/errors.py:541
3809msgid "\"%(path)s\" is not a directory %(extra)s"3814msgid "\"%(path)s\" is not a directory %(extra)s"
3810msgstr ""3815msgstr ""
38113816
3812#: bzrlib/errors.py:5393817#: bzrlib/errors.py:546
3813msgid "\"%(path)s\" is not in the working directory %(extra)s"3818msgid "\"%(path)s\" is not in the working directory %(extra)s"
3814msgstr ""3819msgstr ""
38153820
3816#: bzrlib/errors.py:5443821#: bzrlib/errors.py:551
3817msgid "Directory not empty: \"%(path)s\"%(extra)s"3822msgid "Directory not empty: \"%(path)s\"%(extra)s"
3818msgstr ""3823msgstr ""
38193824
3820#: bzrlib/errors.py:5493825#: bzrlib/errors.py:556
3821msgid "Hard-linking \"%(path)s\" is not supported"3826msgid "Hard-linking \"%(path)s\" is not supported"
3822msgstr ""3827msgstr ""
38233828
3824#: bzrlib/errors.py:5643829#: bzrlib/errors.py:571
3825msgid "Device or resource busy: \"%(path)s\"%(extra)s"3830msgid "Device or resource busy: \"%(path)s\"%(extra)s"
3826msgstr ""3831msgstr ""
38273832
3828#: bzrlib/errors.py:5693833#: bzrlib/errors.py:576
3829msgid "Permission denied: \"%(path)s\"%(extra)s"3834msgid "Permission denied: \"%(path)s\"%(extra)s"
3830msgstr ""3835msgstr ""
38313836
3832#: bzrlib/errors.py:5743837#: bzrlib/errors.py:581
3833msgid "Invalid url supplied to transport: \"%(path)s\"%(extra)s"3838msgid "Invalid url supplied to transport: \"%(path)s\"%(extra)s"
3834msgstr ""3839msgstr ""
38353840
3836#: bzrlib/errors.py:5793841#: bzrlib/errors.py:586
3837msgid "Invalid URL join request: %(reason)s: %(base)r + %(join_args)r"3842msgid "Invalid URL join request: %(reason)s: %(base)r + %(join_args)r"
3838msgstr ""3843msgstr ""
38393844
3840#: bzrlib/errors.py:5903845#: bzrlib/errors.py:597
3841msgid "URLs differ by more than path: %(from_)r and %(to)r"3846msgid "URLs differ by more than path: %(from_)r and %(to)r"
3842msgstr ""3847msgstr ""
38433848
3844#: bzrlib/errors.py:6123849#: bzrlib/errors.py:619
3845msgid "The %(type)s hook '%(hook)s' is unknown in this version of bzrlib."3850msgid "The %(type)s hook '%(hook)s' is unknown in this version of bzrlib."
3846msgstr ""3851msgstr ""
38473852
3848#: bzrlib/errors.py:6223853#: bzrlib/errors.py:629
3849msgid "Unsupported protocol for url \"%(path)s\"%(extra)s"3854msgid "Unsupported protocol for url \"%(path)s\"%(extra)s"
3850msgstr ""3855msgstr ""
38513856
3852#: bzrlib/errors.py:6303857#: bzrlib/errors.py:637
3853msgid ""3858msgid ""
3854"The branch '%(url)s'(%(format)s) is not a stackable format. You will need to "3859"The branch '%(url)s'(%(format)s) is not a stackable format. You will need to "
3855"upgrade the branch to permit branch stacking."3860"upgrade the branch to permit branch stacking."
3856msgstr ""3861msgstr ""
38573862
3858#: bzrlib/errors.py:6413863#: bzrlib/errors.py:648
3859msgid "The branch '%(branch_url)s' cannot be stacked on '%(target_url)s'."3864msgid "The branch '%(branch_url)s' cannot be stacked on '%(target_url)s'."
3860msgstr ""3865msgstr ""
38613866
3862#: bzrlib/errors.py:6513867#: bzrlib/errors.py:658
3863msgid ""3868msgid ""
3864"The repository '%(url)s'(%(format)s) is not a stackable format. You will "3869"The repository '%(url)s'(%(format)s) is not a stackable format. You will "
3865"need to upgrade the repository to permit branch stacking."3870"need to upgrade the repository to permit branch stacking."
3866msgstr ""3871msgstr ""
38673872
3868#: bzrlib/errors.py:6623873#: bzrlib/errors.py:669
3869msgid "Error reading from %(path)r."3874msgid "Error reading from %(path)r."
3870msgstr ""3875msgstr ""
38713876
3872#: bzrlib/errors.py:6813877#: bzrlib/errors.py:688
3873msgid "Path \"%(path)s\" is not a child of path \"%(base)s\"%(extra)s"3878msgid "Path \"%(path)s\" is not a child of path \"%(base)s\"%(extra)s"
3874msgstr ""3879msgstr ""
38753880
3876#: bzrlib/errors.py:6973881#: bzrlib/errors.py:704
3877msgid "Path \"%(path)s\" is not unicode normalized"3882msgid "Path \"%(path)s\" is not unicode normalized"
3878msgstr ""3883msgstr ""
38793884
3880#: bzrlib/errors.py:7053885#: bzrlib/errors.py:712
3881msgid "Not a branch: \"%(path)s\"%(detail)s."3886msgid "Not a branch: \"%(path)s\"%(detail)s."
3882msgstr ""3887msgstr ""
38833888
3884#: bzrlib/errors.py:7473889#: bzrlib/errors.py:754
3885msgid "No submit branch available for branch \"%(path)s\""3890msgid "No submit branch available for branch \"%(path)s\""
3886msgstr ""3891msgstr ""
38873892
3888#: bzrlib/errors.py:7563893#: bzrlib/errors.py:763
3889msgid "Already a branch: \"%(path)s\"."3894msgid "Already a branch: \"%(path)s\"."
3890msgstr ""3895msgstr ""
38913896
3892#: bzrlib/errors.py:7623897#: bzrlib/errors.py:769
3893msgid ""3898msgid ""
3894"Directory contains a branch, but no working tree (use bzr checkout if you "3899"Directory contains a branch, but no working tree (use bzr checkout if you "
3895"wish to build a working tree): \"%(path)s\""3900"wish to build a working tree): \"%(path)s\""
3896msgstr ""3901msgstr ""
38973902
3898#: bzrlib/errors.py:7673903#: bzrlib/errors.py:774
3899msgid ""3904msgid ""
3900"\"%(function)s\" called on an AtomicFile after it was closed: \"%(path)s\""3905"\"%(function)s\" called on an AtomicFile after it was closed: \"%(path)s\""
3901msgstr ""3906msgstr ""
39023907
3903#: bzrlib/errors.py:7773908#: bzrlib/errors.py:784
3904msgid ""3909msgid ""
3905"Parent not accessible given base \"%(base)s\" and relative path \"%(path)s\""3910"Parent not accessible given base \"%(base)s\" and relative path \"%(path)s\""
3906msgstr ""3911msgstr ""
39073912
3908#: bzrlib/errors.py:7873913#: bzrlib/errors.py:794
3909msgid "No repository present: \"%(path)s\""3914msgid "No repository present: \"%(path)s\""
3910msgstr ""3915msgstr ""
39113916
3912#: bzrlib/errors.py:7953917#: bzrlib/errors.py:802
3913msgid "File \"%(path)s\" is not in branch %(branch_base)s."3918msgid "File \"%(path)s\" is not in branch %(branch_base)s."
3914msgstr ""3919msgstr ""
39153920
3916#: bzrlib/errors.py:8073921#: bzrlib/errors.py:814
3917msgid ""3922msgid ""
3918"Unsupported branch format: %(format)s\n"3923"Unsupported branch format: %(format)s\n"
3919"Please run 'bzr upgrade'"3924"Please run 'bzr upgrade'"
3920msgstr ""3925msgstr ""
39213926
3922#: bzrlib/errors.py:8133927#: bzrlib/errors.py:820
3923msgid "Unknown %(kind)s format: %(format)r"3928msgid "Unknown %(kind)s format: %(format)r"
3924msgstr ""3929msgstr ""
39253930
3926#: bzrlib/errors.py:8223931#: bzrlib/errors.py:829
3927msgid "Format %(format)s is not compatible with .bzr version %(bzrdir)s."3932msgid "Format %(format)s is not compatible with .bzr version %(bzrdir)s."
3928msgstr ""3933msgstr ""
39293934
3930#: bzrlib/errors.py:8353935#: bzrlib/errors.py:842
3931msgid ""3936msgid ""
3932"%(target)s\n"3937"%(target)s\n"
3933"is not compatible with\n"3938"is not compatible with\n"
@@ -3935,452 +3940,452 @@
3935"%(details)s"3940"%(details)s"
3936msgstr ""3941msgstr ""
39373942
3938#: bzrlib/errors.py:8513943#: bzrlib/errors.py:858
3939msgid "Revision is not compatible with %(repo_format)s"3944msgid "Revision is not compatible with %(repo_format)s"
3940msgstr ""3945msgstr ""
39413946
3942#: bzrlib/errors.py:8613947#: bzrlib/errors.py:868
3943msgid "%(context_info)s%(path)s is already versioned."3948msgid "%(context_info)s%(path)s is already versioned."
3944msgstr ""3949msgstr ""
39453950
3946#: bzrlib/errors.py:8823951#: bzrlib/errors.py:889
3947msgid "%(context_info)s%(path)s is not versioned."3952msgid "%(context_info)s%(path)s is not versioned."
3948msgstr ""3953msgstr ""
39493954
3950#: bzrlib/errors.py:9033955#: bzrlib/errors.py:910
3951msgid "Path(s) are not versioned: %(paths_as_string)s"3956msgid "Path(s) are not versioned: %(paths_as_string)s"
3952msgstr ""3957msgstr ""
39533958
3954#: bzrlib/errors.py:9143959#: bzrlib/errors.py:921
3955msgid "Path(s) do not exist: %(paths_as_string)s%(extra)s"3960msgid "Path(s) do not exist: %(paths_as_string)s%(extra)s"
3956msgstr ""3961msgstr ""
39573962
3958#: bzrlib/errors.py:9333963#: bzrlib/errors.py:940
3959msgid "Cannot operate on \"%(filename)s\" of unsupported kind \"%(kind)s\""3964msgid "Cannot operate on \"%(filename)s\" of unsupported kind \"%(kind)s\""
3960msgstr ""3965msgstr ""
39613966
3962#: bzrlib/errors.py:9413967#: bzrlib/errors.py:948
3963msgid ""3968msgid ""
3964"Filename %(filename)r is not valid in your current filesystem encoding "3969"Filename %(filename)r is not valid in your current filesystem encoding "
3965"%(fs_encoding)s"3970"%(fs_encoding)s"
3966msgstr ""3971msgstr ""
39673972
3968#: bzrlib/errors.py:9523973#: bzrlib/errors.py:959
3969msgid "Cannot operate on \"%(filename)s\" because it is a control file"3974msgid "Cannot operate on \"%(filename)s\" because it is a control file"
3970msgstr ""3975msgstr ""
39713976
3972#: bzrlib/errors.py:9703977#: bzrlib/errors.py:977
3973msgid "The lock for '%(lock_description)s' is in use and cannot be broken."3978msgid "The lock for '%(lock_description)s' is in use and cannot be broken."
3974msgstr ""3979msgstr ""
39753980
3976#: bzrlib/errors.py:10093981#: bzrlib/errors.py:1016
3977msgid "Cannot lock %(lock)s: %(why)s"3982msgid "Cannot lock %(lock)s: %(why)s"
3978msgstr ""3983msgstr ""
39793984
3980#: bzrlib/errors.py:10193985#: bzrlib/errors.py:1026
3981msgid ""3986msgid ""
3982"A transaction related operation was attempted after the transaction finished."3987"A transaction related operation was attempted after the transaction finished."
3983msgstr ""3988msgstr ""
39843989
3985#: bzrlib/errors.py:10463990#: bzrlib/errors.py:1053
3986msgid "Cannot lock: transport is read only: %(transport)s"3991msgid "Cannot lock: transport is read only: %(transport)s"
3987msgstr ""3992msgstr ""
39883993
3989#: bzrlib/errors.py:10543994#: bzrlib/errors.py:1061
3990msgid "Could not acquire lock \"%(lock)s\": %(msg)s"3995msgid "Could not acquire lock \"%(lock)s\": %(msg)s"
3991msgstr ""3996msgstr ""
39923997
3993#: bzrlib/errors.py:10653998#: bzrlib/errors.py:1072
3994msgid "Lock was broken while still open: %(lock)s - check storage consistency!"3999msgid "Lock was broken while still open: %(lock)s - check storage consistency!"
3995msgstr ""4000msgstr ""
39964001
3997#: bzrlib/errors.py:10764002#: bzrlib/errors.py:1083
3998msgid ""4003msgid ""
3999"Lock was released and re-acquired before being broken: %(lock)s: held by "4004"Lock was released and re-acquired before being broken: %(lock)s: held by "
4000"%(holder)r, wanted to break %(target)r"4005"%(holder)r, wanted to break %(target)r"
4001msgstr ""4006msgstr ""
40024007
4003#: bzrlib/errors.py:10884008#: bzrlib/errors.py:1095
4004msgid ""4009msgid ""
4005"Lock is apparently held, but corrupted: %(corruption_info)s\n"4010"Lock is apparently held, but corrupted: %(corruption_info)s\n"
4006"Use 'bzr break-lock' to clear it"4011"Use 'bzr break-lock' to clear it"
4007msgstr ""4012msgstr ""
40084013
4009#: bzrlib/errors.py:11014014#: bzrlib/errors.py:1108
4010msgid "Lock not held: %(lock)s"4015msgid "Lock not held: %(lock)s"
4011msgstr ""4016msgstr ""
40124017
4013#: bzrlib/errors.py:11304018#: bzrlib/errors.py:1137
4014msgid "No changes to commit"4019msgid "No changes to commit"
4015msgstr ""4020msgstr ""
40164021
4017#: bzrlib/errors.py:11354022#: bzrlib/errors.py:1142
4018msgid ""4023msgid ""
4019"Selected-file commit of merges is not supported yet: files %(files_str)s"4024"Selected-file commit of merges is not supported yet: files %(files_str)s"
4020msgstr ""4025msgstr ""
40214026
4022#: bzrlib/errors.py:11454027#: bzrlib/errors.py:1152
4023msgid ""4028msgid ""
4024"Excluding paths during commit is not supported by repository at %(repository)"4029"Excluding paths during commit is not supported by repository at %(repository)"
4025"r."4030"r."
4026msgstr ""4031msgstr ""
40274032
4028#: bzrlib/errors.py:11544033#: bzrlib/errors.py:1161
4029msgid ""4034msgid ""
4030"The specified commit message contains characters unsupported by the current "4035"The specified commit message contains characters unsupported by the current "
4031"encoding."4036"encoding."
4032msgstr ""4037msgstr ""
40334038
4034#: bzrlib/errors.py:11604039#: bzrlib/errors.py:1167
4035msgid "Upgrade URL cannot work with readonly URLs."4040msgid "Upgrade URL cannot work with readonly URLs."
4036msgstr ""4041msgstr ""
40374042
4038#: bzrlib/errors.py:11654043#: bzrlib/errors.py:1172
4039msgid "The branch format %(format)s is already at the most recent format."4044msgid "The branch format %(format)s is already at the most recent format."
4040msgstr ""4045msgstr ""
40414046
4042#: bzrlib/errors.py:11884047#: bzrlib/errors.py:1195
4043msgid "Option --change does not accept revision ranges"4048msgid "Option --change does not accept revision ranges"
4044msgstr ""4049msgstr ""
40454050
4046#: bzrlib/errors.py:11934051#: bzrlib/errors.py:1200
4047msgid "No namespace registered for string: %(spec)r"4052msgid "No namespace registered for string: %(spec)r"
4048msgstr ""4053msgstr ""
40494054
4050#: bzrlib/errors.py:12124055#: bzrlib/errors.py:1219
4051msgid ""4056msgid ""
4052"Requested revision: '%(spec)s' does not exist in branch: %(branch_url)s"4057"Requested revision: '%(spec)s' does not exist in branch: %(branch_url)s"
4053"%(extra)s"4058"%(extra)s"
4054msgstr ""4059msgstr ""
40554060
4056#: bzrlib/errors.py:12264061#: bzrlib/errors.py:1233
4057msgid "%(branch)s is missing %(object_type)s {%(object_id)s}"4062msgid "%(branch)s is missing %(object_type)s {%(object_id)s}"
4058msgstr ""4063msgstr ""
40594064
4060#: bzrlib/errors.py:12314065#: bzrlib/errors.py:1238
4061msgid ""4066msgid ""
4062"Operation denied because it would change the main history, which is not "4067"Operation denied because it would change the main history, which is not "
4063"permitted by the append_revisions_only setting on branch \"%(location)s\"."4068"permitted by the append_revisions_only setting on branch \"%(location)s\"."
4064msgstr ""4069msgstr ""
40654070
4066#: bzrlib/errors.py:12424071#: bzrlib/errors.py:1249
4067msgid ""4072msgid ""
4068"These branches have diverged. Use the missing command to see how.\n"4073"These branches have diverged. Use the missing command to see how.\n"
4069"Use the merge command to reconcile them."4074"Use the merge command to reconcile them."
4070msgstr ""4075msgstr ""
40714076
4072#: bzrlib/errors.py:12624077#: bzrlib/errors.py:1269
4073msgid ""4078msgid ""
4074"Branches have no common ancestor, and no merge base revision was specified."4079"Branches have no common ancestor, and no merge base revision was specified."
4075msgstr ""4080msgstr ""
40764081
4077#: bzrlib/errors.py:12684082#: bzrlib/errors.py:1275
4078msgid ""4083msgid ""
4079"Selected merge cannot perform reverse cherrypicks. Try merge3 or diff3."4084"Selected merge cannot perform reverse cherrypicks. Try merge3 or diff3."
4080msgstr ""4085msgstr ""
40814086
4082#: bzrlib/errors.py:12744087#: bzrlib/errors.py:1281
4083msgid "Revisions have no common ancestor: %(revision_a)s %(revision_b)s"4088msgid "Revisions have no common ancestor: %(revision_a)s %(revision_b)s"
4084msgstr ""4089msgstr ""
40854090
4086#: bzrlib/errors.py:12834091#: bzrlib/errors.py:1290
4087msgid ""4092msgid ""
4088"Revisions are not derived from the same root: %(revision_a)s %(revision_b)s."4093"Revisions are not derived from the same root: %(revision_a)s %(revision_b)s."
4089msgstr ""4094msgstr ""
40904095
4091#: bzrlib/errors.py:12924096#: bzrlib/errors.py:1299
4092msgid "Revision %(rev_id)s is not an ancestor of %(not_ancestor_id)s"4097msgid "Revision %(rev_id)s is not an ancestor of %(not_ancestor_id)s"
4093msgstr ""4098msgstr ""
40944099
4095#: bzrlib/errors.py:13124100#: bzrlib/errors.py:1319
4096msgid "Branch %(branch)s has no commits."4101msgid "Branch %(branch)s has no commits."
4097msgstr ""4102msgstr ""
40984103
4099#: bzrlib/errors.py:13304104#: bzrlib/errors.py:1337
4100msgid ""4105msgid ""
4101"Bound branch %(branch)s is out of date with master branch %(master)s."4106"Bound branch %(branch)s is out of date with master branch %(master)s."
4102"%(extra_help)s"4107"%(extra_help)s"
4103msgstr ""4108msgstr ""
41044109
4105#: bzrlib/errors.py:13424110#: bzrlib/errors.py:1349
4106msgid ""4111msgid ""
4107"Cannot commit to branch %(branch)s. It is bound to %(master)s, which is "4112"Cannot commit to branch %(branch)s. It is bound to %(master)s, which is "
4108"bound to %(remote)s."4113"bound to %(remote)s."
4109msgstr ""4114msgstr ""
41104115
4111#: bzrlib/errors.py:13544116#: bzrlib/errors.py:1361
4112msgid "Cannot pull --overwrite to a branch which is bound %(branch)s"4117msgid "Cannot pull --overwrite to a branch which is bound %(branch)s"
4113msgstr ""4118msgstr ""
41144119
4115#: bzrlib/errors.py:13634120#: bzrlib/errors.py:1370
4116msgid ""4121msgid ""
4117"Unable to connect to target of bound branch %(branch)s => %(target)s: "4122"Unable to connect to target of bound branch %(branch)s => %(target)s: "
4118"%(error)s"4123"%(error)s"
4119msgstr ""4124msgstr ""
41204125
4121#: bzrlib/errors.py:13754126#: bzrlib/errors.py:1382
4122msgid "Error in processing weave: %(msg)s"4127msgid "Error in processing weave: %(msg)s"
4123msgstr ""4128msgstr ""
41244129
4125#: bzrlib/errors.py:13844130#: bzrlib/errors.py:1391
4126msgid "Revision {%(revision_id)s} already present in %(weave)s"4131msgid "Revision {%(revision_id)s} already present in %(weave)s"
4127msgstr ""4132msgstr ""
41284133
4129#: bzrlib/errors.py:13954134#: bzrlib/errors.py:1402
4130msgid "Revision {%(revision_id)s} not present in %(weave)s"4135msgid "Revision {%(revision_id)s} not present in %(weave)s"
4131msgstr ""4136msgstr ""
41324137
4133#: bzrlib/errors.py:14054138#: bzrlib/errors.py:1412
4134msgid "Weave invariant violated: %(what)s"4139msgid "Weave invariant violated: %(what)s"
4135msgstr ""4140msgstr ""
41364141
4137#: bzrlib/errors.py:14144142#: bzrlib/errors.py:1421
4138msgid "Parents are mismatched between two revisions. %(msg)s"4143msgid "Parents are mismatched between two revisions. %(msg)s"
4139msgstr ""4144msgstr ""
41404145
4141#: bzrlib/errors.py:14364146#: bzrlib/errors.py:1443
4142msgid ""4147msgid ""
4143"Weaves differ on text content. Revision: {%(revision_id)s}, %(weave_a)s, "4148"Weaves differ on text content. Revision: {%(revision_id)s}, %(weave_a)s, "
4144"%(weave_b)s"4149"%(weave_b)s"
4145msgstr ""4150msgstr ""
41464151
4147#: bzrlib/errors.py:14484152#: bzrlib/errors.py:1455
4148msgid "Versioned file error"4153msgid "Versioned file error"
4149msgstr ""4154msgstr ""
41504155
4151#: bzrlib/errors.py:14534156#: bzrlib/errors.py:1460
4152msgid "Revision {%(revision_id)s} not present in \"%(file_id)s\"."4157msgid "Revision {%(revision_id)s} not present in \"%(file_id)s\"."
4153msgstr ""4158msgstr ""
41544159
4155#: bzrlib/errors.py:14634160#: bzrlib/errors.py:1470
4156msgid "Revision {%(revision_id)s} already present in \"%(file_id)s\"."4161msgid "Revision {%(revision_id)s} already present in \"%(file_id)s\"."
4157msgstr ""4162msgstr ""
41584163
4159#: bzrlib/errors.py:14734164#: bzrlib/errors.py:1480
4160msgid "Text did not match its checksum: %(msg)s"4165msgid "Text did not match its checksum: %(msg)s"
4161msgstr ""4166msgstr ""
41624167
4163#: bzrlib/errors.py:15984168#: bzrlib/errors.py:1605
4164msgid "Export format %(format)r not supported"4169msgid "Export format %(format)r not supported"
4165msgstr ""4170msgstr ""
41664171
4167#: bzrlib/errors.py:16074172#: bzrlib/errors.py:1614
4168msgid "Transport error: %(msg)s %(orig_error)s"4173msgid "Transport error: %(msg)s %(orig_error)s"
4169msgstr ""4174msgstr ""
41704175
4171#: bzrlib/errors.py:16334176#: bzrlib/errors.py:1640
4172msgid "Generic bzr smart protocol error: %(details)s"4177msgid "Generic bzr smart protocol error: %(details)s"
4173msgstr ""4178msgstr ""
41744179
4175#: bzrlib/errors.py:16414180#: bzrlib/errors.py:1648
4176msgid "Received bad protocol version marker: %(marker)r"4181msgid "Received bad protocol version marker: %(marker)r"
4177msgstr ""4182msgstr ""
41784183
4179#: bzrlib/errors.py:16724184#: bzrlib/errors.py:1679
4180msgid "Transport operation not possible: %(msg)s %(orig_error)s"4185msgid "Transport operation not possible: %(msg)s %(orig_error)s"
4181msgstr ""4186msgstr ""
41824187
4183#: bzrlib/errors.py:16774188#: bzrlib/errors.py:1684
4184msgid "Connection error: %(msg)s %(orig_error)s"4189msgid "Connection error: %(msg)s %(orig_error)s"
4185msgstr ""4190msgstr ""
41864191
4187#: bzrlib/errors.py:16824192#: bzrlib/errors.py:1689
4188msgid "%(msg)s %(host)s%(port)s%(orig_error)s"4193msgid "%(msg)s %(host)s%(port)s%(orig_error)s"
4189msgstr ""4194msgstr ""
41904195
4191#: bzrlib/errors.py:17034196#: bzrlib/errors.py:1710
4192msgid "Connection closed: %(msg)s %(orig_error)s"4197msgid "Connection closed: %(msg)s %(orig_error)s"
4193msgstr ""4198msgstr ""
41944199
4195#: bzrlib/errors.py:17084200#: bzrlib/errors.py:1715
4196msgid "Invalid range access in %(path)s at %(offset)s: %(msg)s"4201msgid "Invalid range access in %(path)s at %(offset)s: %(msg)s"
4197msgstr ""4202msgstr ""
41984203
4199#: bzrlib/errors.py:17184204#: bzrlib/errors.py:1725
4200msgid "Invalid http response for %(path)s: %(msg)s%(orig_error)s"4205msgid "Invalid http response for %(path)s: %(msg)s%(orig_error)s"
4201msgstr ""4206msgstr ""
42024207
4203#: bzrlib/errors.py:17334208#: bzrlib/errors.py:1740
4204msgid "Invalid http range %(range)r for %(path)s: %(msg)s"4209msgid "Invalid http range %(range)r for %(path)s: %(msg)s"
4205msgstr ""4210msgstr ""
42064211
4207#: bzrlib/errors.py:17474212#: bzrlib/errors.py:1754
4208msgid "HTTP MIME Boundary missing for %(path)s: %(msg)s"4213msgid "HTTP MIME Boundary missing for %(path)s: %(msg)s"
4209msgstr ""4214msgstr ""
42104215
4211#: bzrlib/errors.py:17554216#: bzrlib/errors.py:1762
4212msgid "Invalid http Content-type \"%(ctype)s\" for %(path)s: %(msg)s"4217msgid "Invalid http Content-type \"%(ctype)s\" for %(path)s: %(msg)s"
4213msgstr ""4218msgstr ""
42144219
4215#: bzrlib/errors.py:17644220#: bzrlib/errors.py:1771
4216msgid "%(source)s is%(permanently)s redirected to %(target)s"4221msgid "%(source)s is%(permanently)s redirected to %(target)s"
4217msgstr ""4222msgstr ""
42184223
4219#: bzrlib/errors.py:17784224#: bzrlib/errors.py:1785
4220msgid "Too many redirections"4225msgid "Too many redirections"
4221msgstr ""4226msgstr ""
42224227
4223#: bzrlib/errors.py:17834228#: bzrlib/errors.py:1790
4224msgid "Working tree has conflicts."4229msgid "Working tree has conflicts."
4225msgstr ""4230msgstr ""
42264231
4227#: bzrlib/errors.py:17874232#: bzrlib/errors.py:1794
4228msgid "Config file %(filename)s is not UTF-8 encoded\n"4233msgid "Config file %(filename)s is not UTF-8 encoded\n"
4229msgstr ""4234msgstr ""
42304235
4231#: bzrlib/errors.py:17964236#: bzrlib/errors.py:1803
4232msgid ""4237msgid ""
4233"Error(s) parsing config file %(filename)s:\n"4238"Error(s) parsing config file %(filename)s:\n"
4234"%(errors)s"4239"%(errors)s"
4235msgstr ""4240msgstr ""
42364241
4237#: bzrlib/errors.py:18074242#: bzrlib/errors.py:1814
4238msgid "Bad value \"%(value)s\" for option \"%(name)s\"."4243msgid "Bad value \"%(value)s\" for option \"%(name)s\"."
4239msgstr ""4244msgstr ""
42404245
4241#: bzrlib/errors.py:18154246#: bzrlib/errors.py:1822
4242msgid "%(username)r does not seem to contain a reasonable email address"4247msgid "%(username)r does not seem to contain a reasonable email address"
4243msgstr ""4248msgstr ""
42444249
4245#: bzrlib/errors.py:18244250#: bzrlib/errors.py:1831
4246msgid "Failed to GPG sign data with command \"%(command_line)s\""4251msgid "Failed to GPG sign data with command \"%(command_line)s\""
4247msgstr ""4252msgstr ""
42484253
4249#: bzrlib/errors.py:18324254#: bzrlib/errors.py:1839
4250msgid "Failed to verify GPG signature data with error \"%(error)s\""4255msgid "Failed to verify GPG signature data with error \"%(error)s\""
4251msgstr ""4256msgstr ""
42524257
4253#: bzrlib/errors.py:18404258#: bzrlib/errors.py:1847
4254msgid "Unable to import library \"%(library)s\": %(error)s"4259msgid "Unable to import library \"%(library)s\": %(error)s"
4255msgstr ""4260msgstr ""
42564261
4257#: bzrlib/errors.py:18484262#: bzrlib/errors.py:1855
4258msgid "python-gpgme is not installed, it is needed to verify signatures"4263msgid "python-gpgme is not installed, it is needed to verify signatures"
4259msgstr ""4264msgstr ""
42604265
4261#: bzrlib/errors.py:18564266#: bzrlib/errors.py:1863
4262msgid ""4267msgid ""
4263"The working tree for %(basedir)s has changed since the last commit, but "4268"The working tree for %(basedir)s has changed since the last commit, but "
4264"weave merge requires that it be unchanged"4269"weave merge requires that it be unchanged"
4265msgstr ""4270msgstr ""
42664271
4267#: bzrlib/errors.py:18664272#: bzrlib/errors.py:1873
4268msgid ""4273msgid ""
4269"Can't reprocess and show base, because reprocessing obscures the "4274"Can't reprocess and show base, because reprocessing obscures the "
4270"relationship of conflicting lines to the base"4275"relationship of conflicting lines to the base"
4271msgstr ""4276msgstr ""
42724277
4273#: bzrlib/errors.py:18724278#: bzrlib/errors.py:1879
4274msgid "Cycle in graph %(graph)r"4279msgid "Cycle in graph %(graph)r"
4275msgstr ""4280msgstr ""
42764281
4277#: bzrlib/errors.py:19004282#: bzrlib/errors.py:1907
4278msgid "File %(filename)s is not conflicted."4283msgid "File %(filename)s is not conflicted."
4279msgstr ""4284msgstr ""
42804285
4281#: bzrlib/errors.py:19224286#: bzrlib/errors.py:1929
4282msgid "No bundle was found in \"%(filename)s\"."4287msgid "No bundle was found in \"%(filename)s\"."
4283msgstr ""4288msgstr ""
42844289
4285#: bzrlib/errors.py:19314290#: bzrlib/errors.py:1938
4286msgid "Unable to handle bundle version %(version)s: %(msg)s"4291msgid "Unable to handle bundle version %(version)s: %(msg)s"
4287msgstr ""4292msgstr ""
42884293
4289#: bzrlib/errors.py:19414294#: bzrlib/errors.py:1948
4290msgid "Branch %(base)s is missing revision %(text_revision)s of %(file_id)s"4295msgid "Branch %(base)s is missing revision %(text_revision)s of %(file_id)s"
4291msgstr ""4296msgstr ""
42924297
4293#: bzrlib/errors.py:19544298#: bzrlib/errors.py:1961
4294msgid "File id {%(file_id)s} already exists in inventory as %(entry)s"4299msgid "File id {%(file_id)s} already exists in inventory as %(entry)s"
4295msgstr ""4300msgstr ""
42964301
4297#: bzrlib/errors.py:19644302#: bzrlib/errors.py:1971
4298msgid "Key %(key)s is already present in map"4303msgid "Key %(key)s is already present in map"
4299msgstr ""4304msgstr ""
43004305
4301#: bzrlib/errors.py:19694306#: bzrlib/errors.py:1976
4302msgid "The prefix %(prefix)s is in the help search path twice."4307msgid "The prefix %(prefix)s is in the help search path twice."
4303msgstr ""4308msgstr ""
43044309
4305#: bzrlib/errors.py:19774310#: bzrlib/errors.py:1984
4306msgid "Tree transform is malformed %(conflicts)r"4311msgid "Tree transform is malformed %(conflicts)r"
4307msgstr ""4312msgstr ""
43084313
4309#: bzrlib/errors.py:19794314#: bzrlib/errors.py:1986
4310msgid ""4315msgid ""
4311"No final name for trans_id %(trans_id)r\n"4316"No final name for trans_id %(trans_id)r\n"
4312"file-id: %(file_id)r\n"4317"file-id: %(file_id)r\n"
4313"root trans-id: %(root_trans_id)r\n"4318"root trans-id: %(root_trans_id)r\n"
4314msgstr ""4319msgstr ""
43154320
4316#: bzrlib/errors.py:20114321#: bzrlib/errors.py:2018
4317msgid "Attempt to reuse a transform that has already been applied."4322msgid "Attempt to reuse a transform that has already been applied."
4318msgstr ""4323msgstr ""
43194324
4320#: bzrlib/errors.py:20164325#: bzrlib/errors.py:2023
4321msgid "Moving the root directory is not supported at this time"4326msgid "Moving the root directory is not supported at this time"
4322msgstr ""4327msgstr ""
43234328
4324#: bzrlib/errors.py:20214329#: bzrlib/errors.py:2028
4325msgid "Failed to rename %(from_path)s to %(to_path)s: %(why)s"4330msgid "Failed to rename %(from_path)s to %(to_path)s: %(why)s"
4326msgstr ""4331msgstr ""
43274332
4328#: bzrlib/errors.py:20324333#: bzrlib/errors.py:2039
4329msgid ""4334msgid ""
4330"Could not move %(from_path)s%(operator)s %(to_path)s%(_has_extra)s%(extra)s"4335"Could not move %(from_path)s%(operator)s %(to_path)s%(_has_extra)s%(extra)s"
4331msgstr ""4336msgstr ""
43324337
4333#: bzrlib/errors.py:20684338#: bzrlib/errors.py:2075
4334msgid ""4339msgid ""
4335"Could not rename %(from_path)s%(operator)s %(to_path)s%(_has_extra)s%(extra)s"4340"Could not rename %(from_path)s%(operator)s %(to_path)s%(_has_extra)s%(extra)s"
4336msgstr ""4341msgstr ""
43374342
4338#: bzrlib/errors.py:20774343#: bzrlib/errors.py:2084
4339msgid ""4344msgid ""
4340"Can't safely remove modified or unknown files:\n"4345"Can't safely remove modified or unknown files:\n"
4341"%(changes_as_text)sUse --keep to not delete them, or --force to delete them "4346"%(changes_as_text)sUse --keep to not delete them, or --force to delete them "
4342"regardless."4347"regardless."
4343msgstr ""4348msgstr ""
43444349
4345#: bzrlib/errors.py:21144350#: bzrlib/errors.py:2121
4346msgid "Unable to import paramiko (required for sftp support): %(error)s"4351msgid "Unable to import paramiko (required for sftp support): %(error)s"
4347msgstr ""4352msgstr ""
43484353
4349#: bzrlib/errors.py:21224354#: bzrlib/errors.py:2129
4350msgid "Nothing to merge."4355msgid "Nothing to merge."
4351msgstr ""4356msgstr ""
43524357
4353#: bzrlib/errors.py:21274358#: bzrlib/errors.py:2134
4354msgid "Format %(format)s cannot be initialised by this version of bzr."4359msgid "Format %(format)s cannot be initialised by this version of bzr."
4355msgstr ""4360msgstr ""
43564361
4357#: bzrlib/errors.py:21364362#: bzrlib/errors.py:2143
4358msgid ""4363msgid ""
4359"Cannot convert from format %(from_format)s to format %(format)s. "4364"Cannot convert from format %(from_format)s to format %(format)s. "
4360"%(problem)s"4365"%(problem)s"
4361msgstr ""4366msgstr ""
43624367
4363#: bzrlib/errors.py:21484368#: bzrlib/errors.py:2155
4364msgid "Could not find an appropriate Differ for file \"%(path)s\""4369msgid "Could not find an appropriate Differ for file \"%(path)s\""
4365msgstr ""4370msgstr ""
43664371
4367#: bzrlib/errors.py:21564372#: bzrlib/errors.py:2163
4368msgid "%(exe_name)s could not be found on this machine"4373msgid "%(exe_name)s could not be found on this machine"
4369msgstr ""4374msgstr ""
43704375
4371#: bzrlib/errors.py:21644376#: bzrlib/errors.py:2171
4372msgid "Diff is not installed on this machine: %(msg)s"4377msgid "Diff is not installed on this machine: %(msg)s"
4373msgstr ""4378msgstr ""
43744379
4375#: bzrlib/errors.py:21724380#: bzrlib/errors.py:2179
4376msgid "Diff3 is not installed on this machine."4381msgid "Diff3 is not installed on this machine."
4377msgstr ""4382msgstr ""
43784383
4379#: bzrlib/errors.py:21784384#: bzrlib/errors.py:2185
4380msgid "The content being inserted is already present."4385msgid "The content being inserted is already present."
4381msgstr ""4386msgstr ""
43824387
4383#: bzrlib/errors.py:21834388#: bzrlib/errors.py:2190
4384msgid ""4389msgid ""
4385"This tree contains left-over files from a failed operation.\n"4390"This tree contains left-over files from a failed operation.\n"
4386" Please examine %(limbo_dir)s to see if it contains any files you wish "4391" Please examine %(limbo_dir)s to see if it contains any files you wish "
@@ -4388,14 +4393,14 @@
4388" keep, and delete it when you are done."4393" keep, and delete it when you are done."
4389msgstr ""4394msgstr ""
43904395
4391#: bzrlib/errors.py:21944396#: bzrlib/errors.py:2201
4392msgid ""4397msgid ""
4393"This tree contains left-over files from a failed operation.\n"4398"This tree contains left-over files from a failed operation.\n"
4394" Please examine %(pending_deletion)s to see if it contains any files you\n"4399" Please examine %(pending_deletion)s to see if it contains any files you\n"
4395" wish to keep, and delete it when you are done."4400" wish to keep, and delete it when you are done."
4396msgstr ""4401msgstr ""
43974402
4398#: bzrlib/errors.py:22044403#: bzrlib/errors.py:2211
4399msgid ""4404msgid ""
4400"Unable to delete transform temporary directory %(limbo_dir)s.\n"4405"Unable to delete transform temporary directory %(limbo_dir)s.\n"
4401" Please examine %(limbo_dir)s to see if it contains any files you wish "4406" Please examine %(limbo_dir)s to see if it contains any files you wish "
@@ -4403,487 +4408,497 @@
4403" keep, and delete it when you are done."4408" keep, and delete it when you are done."
4404msgstr ""4409msgstr ""
44054410
4406#: bzrlib/errors.py:22154411#: bzrlib/errors.py:2222
4407msgid ""4412msgid ""
4408"Unable to delete transform temporary directory %(pending_deletion)s. Please "4413"Unable to delete transform temporary directory %(pending_deletion)s. Please "
4409"examine %(pending_deletion)s to see if it contains any files you wish to "4414"examine %(pending_deletion)s to see if it contains any files you wish to "
4410"keep, and delete it when you are done."4415"keep, and delete it when you are done."
4411msgstr ""4416msgstr ""
44124417
4413#: bzrlib/errors.py:22254418#: bzrlib/errors.py:2232
4414msgid "Working tree is out of date, please run 'bzr update'.%(more)s"4419msgid "Working tree is out of date, please run 'bzr update'.%(more)s"
4415msgstr ""4420msgstr ""
44164421
4417#: bzrlib/errors.py:22394422#: bzrlib/errors.py:2246
4418msgid "Public branch \"%(public_location)s\" lacks revision \"%(revstring)s\"."4423msgid "Public branch \"%(public_location)s\" lacks revision \"%(revstring)s\"."
4419msgstr ""4424msgstr ""
44204425
4421#: bzrlib/errors.py:22524426#: bzrlib/errors.py:2259
4422msgid "Error in merge modified format"4427msgid "Error in merge modified format"
4423msgstr ""4428msgstr ""
44244429
4425#: bzrlib/errors.py:22574430#: bzrlib/errors.py:2264
4426msgid "Format error in conflict listings"4431msgid "Format error in conflict listings"
4427msgstr ""4432msgstr ""
44284433
4429#: bzrlib/errors.py:22614434#: bzrlib/errors.py:2268
4430msgid ""4435msgid ""
4431"Inconsistency in dirstate file %(dirstate_path)s.\n"4436"Inconsistency in dirstate file %(dirstate_path)s.\n"
4432"Error: %(description)s"4437"Error: %(description)s"
4433msgstr ""4438msgstr ""
44344439
4435#: bzrlib/errors.py:22724440#: bzrlib/errors.py:2279
4436msgid ""4441msgid ""
4437"An error has been detected in the repository %(repo_path)s.\n"4442"An error has been detected in the repository %(repo_path)s.\n"
4438"Please run bzr reconcile on this repository."4443"Please run bzr reconcile on this repository."
4439msgstr ""4444msgstr ""
44404445
4441#: bzrlib/errors.py:22834446#: bzrlib/errors.py:2290
4442msgid ""4447msgid ""
4443"An inconsistent delta was supplied involving %(path)r, %(file_id)r\n"4448"An inconsistent delta was supplied involving %(path)r, %(file_id)r\n"
4444"reason: %(reason)s"4449"reason: %(reason)s"
4445msgstr ""4450msgstr ""
44464451
4447#: bzrlib/errors.py:22964452#: bzrlib/errors.py:2303
4448msgid ""4453msgid ""
4449"An inconsistent delta was supplied: %(delta)r\n"4454"An inconsistent delta was supplied: %(delta)r\n"
4450"reason: %(reason)s"4455"reason: %(reason)s"
4451msgstr ""4456msgstr ""
44524457
4453#: bzrlib/errors.py:23084458#: bzrlib/errors.py:2315
4454msgid "To use this feature you must upgrade your branch at %(path)s."4459msgid "To use this feature you must upgrade your branch at %(path)s."
4455msgstr ""4460msgstr ""
44564461
4457#: bzrlib/errors.py:23174462#: bzrlib/errors.py:2324
4458msgid "To use this feature you must upgrade your repository at %(path)s."4463msgid "To use this feature you must upgrade your repository at %(path)s."
4459msgstr ""4464msgstr ""
44604465
4461#: bzrlib/errors.py:23224466#: bzrlib/errors.py:2329
4462msgid ""4467msgid ""
4463"To use this feature you must upgrade your branch at %(path)s to a format "4468"To use this feature you must upgrade your branch at %(path)s to a format "
4464"which supports rich roots."4469"which supports rich roots."
4465msgstr ""4470msgstr ""
44664471
4467#: bzrlib/errors.py:23284472#: bzrlib/errors.py:2335
4468msgid "Cannot perform local-only commits on unbound branches."4473msgid "Cannot perform local-only commits on unbound branches."
4469msgstr ""4474msgstr ""
44704475
4471#: bzrlib/errors.py:23334476#: bzrlib/errors.py:2340
4472msgid "The method %(mname)s is not supported on objects of type %(tname)s."4477msgid "The method %(mname)s is not supported on objects of type %(tname)s."
4473msgstr ""4478msgstr ""
44744479
4475#: bzrlib/errors.py:23544480#: bzrlib/errors.py:2361
4481msgid "Ghost tags not supported by format %(format)r."
4482msgstr ""
4483
4484#: bzrlib/errors.py:2369
4476msgid "File is binary but should be text."4485msgid "File is binary but should be text."
4477msgstr ""4486msgstr ""
44784487
4479#: bzrlib/errors.py:23594488#: bzrlib/errors.py:2374
4480msgid "The path %(path)s is not permitted on this platform"4489msgid "The path %(path)s is not permitted on this platform"
4481msgstr ""4490msgstr ""
44824491
4483#: bzrlib/errors.py:23684492#: bzrlib/errors.py:2383
4484msgid ""4493msgid ""
4485"Testament did not match expected value.\n"4494"Testament did not match expected value.\n"
4486" For revision_id {%(revision_id)s}, expected {%(expected)s}, measured\n"4495" For revision_id {%(revision_id)s}, expected {%(expected)s}, measured\n"
4487" {%(measured)s}"4496" {%(measured)s}"
4488msgstr ""4497msgstr ""
44894498
4490#: bzrlib/errors.py:23804499#: bzrlib/errors.py:2395
4491msgid "Not a bzr revision-bundle: %(text)r"4500msgid "Not a bzr revision-bundle: %(text)r"
4492msgstr ""4501msgstr ""
44934502
4494#: bzrlib/errors.py:23894503#: bzrlib/errors.py:2404
4495msgid "Bad bzr revision-bundle: %(text)r"4504msgid "Bad bzr revision-bundle: %(text)r"
4496msgstr ""4505msgstr ""
44974506
4498#: bzrlib/errors.py:23984507#: bzrlib/errors.py:2413
4499msgid "Malformed bzr revision-bundle header: %(text)r"4508msgid "Malformed bzr revision-bundle header: %(text)r"
4500msgstr ""4509msgstr ""
45014510
4502#: bzrlib/errors.py:24034511#: bzrlib/errors.py:2418
4503msgid "Malformed patches in bzr revision-bundle: %(text)r"4512msgid "Malformed patches in bzr revision-bundle: %(text)r"
4504msgstr ""4513msgstr ""
45054514
4506#: bzrlib/errors.py:24084515#: bzrlib/errors.py:2423
4507msgid "Malformed footer in bzr revision-bundle: %(text)r"4516msgid "Malformed footer in bzr revision-bundle: %(text)r"
4508msgstr ""4517msgstr ""
45094518
4510#: bzrlib/errors.py:24134519#: bzrlib/errors.py:2428
4511msgid "End of line marker was not \\n in bzr revision-bundle"4520msgid "End of line marker was not \\n in bzr revision-bundle"
4512msgstr ""4521msgstr ""
45134522
4514#: bzrlib/errors.py:24234523#: bzrlib/errors.py:2438
4515msgid "Bundle format %(bundle_format)s is incompatible with %(other)s"4524msgid "Bundle format %(bundle_format)s is incompatible with %(other)s"
4516msgstr ""4525msgstr ""
45174526
4518#: bzrlib/errors.py:24334527#: bzrlib/errors.py:2448
4519msgid "Root class for inventory serialization errors"4528msgid "Root class for inventory serialization errors"
4520msgstr ""4529msgstr ""
45214530
4522#: bzrlib/errors.py:24374531#: bzrlib/errors.py:2452
4523msgid ""4532msgid ""
4524"The inventory was not in the expected format:\n"4533"The inventory was not in the expected format:\n"
4525" %(msg)s"4534" %(msg)s"
4526msgstr ""4535msgstr ""
45274536
4528#: bzrlib/errors.py:24464537#: bzrlib/errors.py:2461
4529msgid "This operation requires rich root data storage"4538msgid "This operation requires rich root data storage"
4530msgstr ""4539msgstr ""
45314540
4532#: bzrlib/errors.py:24594541#: bzrlib/errors.py:2474
4533msgid "Unrecognised value for BZR_SSH environment variable: %(vendor)s"4542msgid "Unrecognised value for BZR_SSH environment variable: %(vendor)s"
4534msgstr ""4543msgstr ""
45354544
4536#: bzrlib/errors.py:24684545#: bzrlib/errors.py:2483
4537msgid ""4546msgid ""
4538"Don't know how to handle SSH connections. Please set BZR_SSH environment "4547"Don't know how to handle SSH connections. Please set BZR_SSH environment "
4539"variable."4548"variable."
4540msgstr ""4549msgstr ""
45414550
4542#: bzrlib/errors.py:24754551#: bzrlib/errors.py:2490
4543msgid ""4552msgid ""
4544"Could not determine revno for {%(revision_id)s} because its ancestry shows a "4553"Could not determine revno for {%(revision_id)s} because its ancestry shows a "
4545"ghost at {%(ghost_revision_id)s}"4554"ghost at {%(ghost_revision_id)s}"
4546msgstr ""4555msgstr ""
45474556
4548#: bzrlib/errors.py:24854557#: bzrlib/errors.py:2500
4549msgid "Ghost revision {%(revision_id)s} cannot be used here."4558msgid "Ghost revision {%(revision_id)s} cannot be used here."
4550msgstr ""4559msgstr ""
45514560
4552#: bzrlib/errors.py:25364561#: bzrlib/errors.py:2551
4553msgid ""4562msgid ""
4554"A merge directive must provide either a bundle or a public branch location."4563"A merge directive must provide either a bundle or a public branch location."
4555msgstr ""4564msgstr ""
45564565
4557#: bzrlib/errors.py:25434566#: bzrlib/errors.py:2558
4558msgid "Bad merge directive payload %(start)r"4567msgid "Bad merge directive payload %(start)r"
4559msgstr ""4568msgstr ""
45604569
4561#: bzrlib/errors.py:25534570#: bzrlib/errors.py:2568
4562msgid "Preview patch does not match requested changes."4571msgid "Preview patch does not match requested changes."
4563msgstr ""4572msgstr ""
45644573
4565#: bzrlib/errors.py:25594574#: bzrlib/errors.py:2574
4566msgid "Patch_type was %(patch_type)s, but no patch was supplied."4575msgid "Patch_type was %(patch_type)s, but no patch was supplied."
4567msgstr ""4576msgstr ""
45684577
4569#: bzrlib/errors.py:25694578#: bzrlib/errors.py:2584
4570msgid ""4579msgid ""
4571"Your branch does not have all of the revisions required in order to merge "4580"Your branch does not have all of the revisions required in order to merge "
4572"this merge directive and the target location specified in the merge "4581"this merge directive and the target location specified in the merge "
4573"directive is not a branch: %(location)s."4582"directive is not a branch: %(location)s."
4574msgstr ""4583msgstr ""
45754584
4576#: bzrlib/errors.py:25814585#: bzrlib/errors.py:2596
4577msgid "Unsupported entry kind %(kind)s"4586msgid "Unsupported entry kind %(kind)s"
4578msgstr ""4587msgstr ""
45794588
4580#: bzrlib/errors.py:25894589#: bzrlib/errors.py:2604
4581msgid "Can't subsume %(other_tree)s into %(tree)s. %(reason)s"4590msgid "Can't subsume %(other_tree)s into %(tree)s. %(reason)s"
4582msgstr ""4591msgstr ""
45834592
4584#: bzrlib/errors.py:25994593#: bzrlib/errors.py:2614
4585msgid "Subsume target %(other_tree)s needs to be upgraded."4594msgid "Subsume target %(other_tree)s needs to be upgraded."
4586msgstr ""4595msgstr ""
45874596
4588#: bzrlib/errors.py:26184597#: bzrlib/errors.py:2633
4589msgid "No such tag: %(tag_name)s"4598msgid "No such tag: %(tag_name)s"
4590msgstr ""4599msgstr ""
45914600
4592#: bzrlib/errors.py:26264601#: bzrlib/errors.py:2641
4593msgid "Tags not supported by %(branch)s; you may be able to use bzr upgrade."4602msgid "Tags not supported by %(branch)s; you may be able to use bzr upgrade."
4594msgstr ""4603msgstr ""
45954604
4596#: bzrlib/errors.py:26354605#: bzrlib/errors.py:2650
4597msgid "Tag %(tag_name)s already exists."4606msgid "Tag %(tag_name)s already exists."
4598msgstr ""4607msgstr ""
45994608
4600#: bzrlib/errors.py:26434609#: bzrlib/errors.py:2658
4601msgid ""4610msgid ""
4602"Did not understand bug identifier %(bug_id)s: %(reason)s. See \"bzr help bugs"4611"Did not understand bug identifier %(bug_id)s: %(reason)s. See \"bzr help bugs"
4603"\" for more information on this feature."4612"\" for more information on this feature."
4604msgstr ""4613msgstr ""
46054614
4606#: bzrlib/errors.py:26534615#: bzrlib/errors.py:2668
4607msgid ""4616msgid ""
4608"The URL for bug tracker \"%(abbreviation)s\" doesn't contain {id}: %(url)s"4617"The URL for bug tracker \"%(abbreviation)s\" doesn't contain {id}: %(url)s"
4609msgstr ""4618msgstr ""
46104619
4611#: bzrlib/errors.py:26634620#: bzrlib/errors.py:2678
4612msgid ""4621msgid ""
4613"Cannot find registered bug tracker called %(abbreviation)s on %(branch)s"4622"Cannot find registered bug tracker called %(abbreviation)s on %(branch)s"
4614msgstr ""4623msgstr ""
46154624
4616#: bzrlib/errors.py:26734625#: bzrlib/errors.py:2688
4617msgid "Invalid line in bugs property: '%(line)s'"4626msgid "Invalid line in bugs property: '%(line)s'"
4618msgstr ""4627msgstr ""
46194628
4620#: bzrlib/errors.py:26814629#: bzrlib/errors.py:2696
4621msgid "Invalid bug status: '%(status)s'"4630msgid "Invalid bug status: '%(status)s'"
4622msgstr ""4631msgstr ""
46234632
4624#: bzrlib/errors.py:26894633#: bzrlib/errors.py:2704
4625msgid "Could not understand response from smart server: %(response_tuple)r"4634msgid "Could not understand response from smart server: %(response_tuple)r"
4626msgstr ""4635msgstr ""
46274636
4628#: bzrlib/errors.py:27284637#: bzrlib/errors.py:2743
4629msgid "Server sent an unexpected error: %(error_tuple)r"4638msgid "Server sent an unexpected error: %(error_tuple)r"
4630msgstr ""4639msgstr ""
46314640
4632#: bzrlib/errors.py:27474641#: bzrlib/errors.py:2762
4633msgid "Unrecognised container format: %(container_format)r"4642msgid "Unrecognised container format: %(container_format)r"
4634msgstr ""4643msgstr ""
46354644
4636#: bzrlib/errors.py:27554645#: bzrlib/errors.py:2770
4637msgid "Unexpected end of container stream"4646msgid "Unexpected end of container stream"
4638msgstr ""4647msgstr ""
46394648
4640#: bzrlib/errors.py:27604649#: bzrlib/errors.py:2775
4641msgid "Unknown record type: %(record_type)r"4650msgid "Unknown record type: %(record_type)r"
4642msgstr ""4651msgstr ""
46434652
4644#: bzrlib/errors.py:27684653#: bzrlib/errors.py:2783
4645msgid "Invalid record: %(reason)s"4654msgid "Invalid record: %(reason)s"
4646msgstr ""4655msgstr ""
46474656
4648#: bzrlib/errors.py:27764657#: bzrlib/errors.py:2791
4649msgid "Container has data after end marker: %(excess)r"4658msgid "Container has data after end marker: %(excess)r"
4650msgstr ""4659msgstr ""
46514660
4652#: bzrlib/errors.py:27844661#: bzrlib/errors.py:2799
4653msgid "Container has multiple records with the same name: %(name)s"4662msgid "Container has multiple records with the same name: %(name)s"
4654msgstr ""4663msgstr ""
46554664
4656#: bzrlib/errors.py:27974665#: bzrlib/errors.py:2812
4657msgid "Corrupt or incompatible data stream: %(reason)s"4666msgid "Corrupt or incompatible data stream: %(reason)s"
4658msgstr ""4667msgstr ""
46594668
4660#: bzrlib/errors.py:28054669#: bzrlib/errors.py:2820
4661msgid "SMTP error: %(error)s"4670msgid "SMTP error: %(error)s"
4662msgstr ""4671msgstr ""
46634672
4664#: bzrlib/errors.py:28134673#: bzrlib/errors.py:2828
4665msgid "No message supplied."4674msgid "No message supplied."
4666msgstr ""4675msgstr ""
46674676
4668#: bzrlib/errors.py:28184677#: bzrlib/errors.py:2833
4669msgid "No mail-to address (--mail-to) or output (-o) specified."4678msgid "No mail-to address (--mail-to) or output (-o) specified."
4670msgstr ""4679msgstr ""
46714680
4672#: bzrlib/errors.py:28234681#: bzrlib/errors.py:2838
4673msgid "Unknown mail client: %(mail_client)s"4682msgid "Unknown mail client: %(mail_client)s"
4674msgstr ""4683msgstr ""
46754684
4676#: bzrlib/errors.py:28314685#: bzrlib/errors.py:2846
4677msgid ""4686msgid ""
4678"Unable to find mail client with the following names: "4687"Unable to find mail client with the following names: "
4679"%(mail_command_list_string)s"4688"%(mail_command_list_string)s"
4680msgstr ""4689msgstr ""
46814690
4682#: bzrlib/errors.py:28414691#: bzrlib/errors.py:2856
4683msgid "SMTP connection to %(host)s refused"4692msgid "SMTP connection to %(host)s refused"
4684msgstr ""4693msgstr ""
46854694
4686#: bzrlib/errors.py:28504695#: bzrlib/errors.py:2865
4687msgid "Please specify smtp_server. No server at default %(host)s."4696msgid "Please specify smtp_server. No server at default %(host)s."
4688msgstr ""4697msgstr ""
46894698
4690#: bzrlib/errors.py:28644699#: bzrlib/errors.py:2879
4691msgid ""4700msgid ""
4692"'%(display_url)s' is not in sync with %(target_url)s. See bzr help sync-for-"4701"'%(display_url)s' is not in sync with %(target_url)s. See bzr help sync-for-"
4693"reconfigure."4702"reconfigure."
4694msgstr ""4703msgstr ""
46954704
4696#: bzrlib/errors.py:28764705#: bzrlib/errors.py:2891
4697msgid "'%(display_url)s' is already a branch."4706msgid "'%(display_url)s' is already a branch."
4698msgstr ""4707msgstr ""
46994708
4700#: bzrlib/errors.py:28814709#: bzrlib/errors.py:2896
4701msgid "'%(display_url)s' is already a tree."4710msgid "'%(display_url)s' is already a tree."
4702msgstr ""4711msgstr ""
47034712
4704#: bzrlib/errors.py:28864713#: bzrlib/errors.py:2901
4705msgid "'%(display_url)s' is already a checkout."4714msgid "'%(display_url)s' is already a checkout."
4706msgstr ""4715msgstr ""
47074716
4708#: bzrlib/errors.py:28914717#: bzrlib/errors.py:2906
4709msgid "'%(display_url)s' is already a lightweight checkout."4718msgid "'%(display_url)s' is already a lightweight checkout."
4710msgstr ""4719msgstr ""
47114720
4712#: bzrlib/errors.py:28964721#: bzrlib/errors.py:2911
4713msgid "'%(display_url)s' is already using a shared repository."4722msgid "'%(display_url)s' is already using a shared repository."
4714msgstr ""4723msgstr ""
47154724
4716#: bzrlib/errors.py:29014725#: bzrlib/errors.py:2916
4717msgid "'%(display_url)s' is already standalone."4726msgid "'%(display_url)s' is already standalone."
4718msgstr ""4727msgstr ""
47194728
4720#: bzrlib/errors.py:29064729#: bzrlib/errors.py:2921
4721msgid "Shared repository '%(display_url)s' already creates working trees."4730msgid "Shared repository '%(display_url)s' already creates working trees."
4722msgstr ""4731msgstr ""
47234732
4724#: bzrlib/errors.py:29124733#: bzrlib/errors.py:2927
4725msgid ""4734msgid ""
4726"Shared repository '%(display_url)s' already doesn't create working trees."4735"Shared repository '%(display_url)s' already doesn't create working trees."
4727msgstr ""4736msgstr ""
47284737
4729#: bzrlib/errors.py:29184738#: bzrlib/errors.py:2933
4730msgid "Requested reconfiguration of '%(display_url)s' is not supported."4739msgid "Requested reconfiguration of '%(display_url)s' is not supported."
4731msgstr ""4740msgstr ""
47324741
4733#: bzrlib/errors.py:29234742#: bzrlib/errors.py:2938
4734msgid "No location could be found to bind to at %(display_url)s."4743msgid "No location could be found to bind to at %(display_url)s."
4735msgstr ""4744msgstr ""
47364745
4737#: bzrlib/errors.py:29284746#: bzrlib/errors.py:2943
4738msgid ""4747msgid ""
4739"Working tree \"%(display_url)s\" has uncommitted changes (See bzr status)."4748"Working tree \"%(display_url)s\" has uncommitted changes (See bzr status)."
4740"%(more)s"4749"%(more)s"
4741msgstr ""4750msgstr ""
47424751
4743#: bzrlib/errors.py:29474752#: bzrlib/errors.py:2962
4744msgid ""4753msgid ""
4745"Working tree \"%(display_url)s\" has shelved changes (See bzr shelve --list)."4754"Working tree \"%(display_url)s\" has shelved changes (See bzr shelve --list)."
4746"%(more)s"4755"%(more)s"
4747msgstr ""4756msgstr ""
47484757
4749#: bzrlib/errors.py:29534758#: bzrlib/errors.py:2968
4750msgid "Variable {%(name)s} is not available."4759msgid "Variable {%(name)s} is not available."
4751msgstr ""4760msgstr ""
47524761
4753#: bzrlib/errors.py:29614762#: bzrlib/errors.py:2976
4754msgid "No template specified."4763msgid "No template specified."
4755msgstr ""4764msgstr ""
47564765
4757#: bzrlib/errors.py:29664766#: bzrlib/errors.py:2981
4758msgid "Unable to create symlink %(path_str)son this platform"4767msgid "Unable to create symlink %(path_str)son this platform"
4759msgstr ""4768msgstr ""
47604769
4761#: bzrlib/errors.py:29814770#: bzrlib/errors.py:2996
4762msgid ""4771msgid ""
4763"Unsupported timezone format \"%(timezone)s\", options are \"utc\", \"original"4772"Unsupported timezone format \"%(timezone)s\", options are \"utc\", \"original"
4764"\", \"local\"."4773"\", \"local\"."
4765msgstr ""4774msgstr ""
47664775
4767#: bzrlib/errors.py:30154776#: bzrlib/errors.py:3030
4768msgid ""4777msgid ""
4769"Unable to encode %(kind)s path %(path)r in user encoding %(user_encoding)s"4778"Unable to encode %(kind)s path %(path)r in user encoding %(user_encoding)s"
4770msgstr ""4779msgstr ""
47714780
4772#: bzrlib/errors.py:30274781#: bzrlib/errors.py:3042
4773msgid "The \"%(config_id)s\" configuration does not exist."4782msgid "The \"%(config_id)s\" configuration does not exist."
4774msgstr ""4783msgstr ""
47754784
4776#: bzrlib/errors.py:30354785#: bzrlib/errors.py:3050
4777msgid "The \"%(option_name)s\" configuration option does not exist."4786msgid "The \"%(option_name)s\" configuration option does not exist."
4778msgstr ""4787msgstr ""
47794788
4780#: bzrlib/errors.py:30434789#: bzrlib/errors.py:3058
4781msgid "The alias \"%(alias_name)s\" does not exist."4790msgid "The alias \"%(alias_name)s\" does not exist."
4782msgstr ""4791msgstr ""
47834792
4784#: bzrlib/errors.py:30574793#: bzrlib/errors.py:3072
4785msgid "\"%(alias_name)s\" is not a valid location alias."4794msgid "\"%(alias_name)s\" is not a valid location alias."
4786msgstr ""4795msgstr ""
The diff has been truncated for viewing.