~ian-clatworthy/bzr-explorer/extensible-init-workspace

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
# Spanish translation for bzr-explorer
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the bzr-explorer package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: bzr-explorer\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-06-28 22:13+0300\n"
"PO-Revision-Date: 2009-06-26 06:28+0000\n"
"Last-Translator: Martitza <Unknown>\n"
"Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-07-20 08:44+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

#: lib\desktop_env.py:36 lib\desktop_env.py:40 lib\desktop_env.py:41
#: lib\ui_explorer.py:660
msgid "Prefere&nces..."
msgstr ""

#: lib\desktop_env.py:37
msgid "&Configure Bazaar Explorer..."
msgstr ""

#: lib\desktop_env.py:38
msgid "&Options..."
msgstr ""

#: lib\desktop_env.py:47
msgid "Bazaar Explorer &Handbook"
msgstr ""

#: lib\desktop_env.py:48 lib\desktop_env.py:58
msgid "&About Bazaar Explorer"
msgstr ""

#: lib\desktop_env.py:56
msgid "E&xit"
msgstr ""

#: lib\desktop_env.py:57 lib\desktop_env.py:61
msgid "Bazaar Explorer &Help"
msgstr ""

#: lib\explorer.py:91 lib\ui_explorer.py:695
msgid "Working Tree"
msgstr "'tree' de trabajo"

#: lib\explorer.py:95
msgid "Bazaar Explorer"
msgstr ""

#: lib\explorer.py:569
msgid "None"
msgstr ""

#: lib\explorer.py:579
#, python-format
msgid "&Edit %s Bookmarks"
msgstr ""

#: lib\explorer.py:580
#, python-format
msgid "&Edit %s Tools"
msgstr ""

#: lib\explorer.py:892
msgid "Sorry"
msgstr "Lo siento"

#: lib\explorer.py:894
msgid "Unable to open"
msgstr "No puedo abrir"

#: lib\explorer.py:897
msgid "Not a branch."
msgstr "No es un 'branch'"

#: lib\explorer.py:914
#, python-format
msgid "Opening %s"
msgstr "Abriendo %s"

#: lib\explorer.py:921
msgid "Open Directory"
msgstr "Abrir directorio"

#: lib\explorer.py:927 lib\ui_explorer.py:669
msgid "Open Location"
msgstr "Abrir dirección"

#: lib\explorer.py:928
msgid "Enter the location URL, e.g. lp:bzr, http://example.com/my.bzr/"
msgstr "Escriba la dirección URL, e.g. lp:bzr, http://example.com/my.bzr/"

#: lib\explorer.py:1150
msgid "Welcome"
msgstr ""

#: lib\explorer.py:1175
#, python-format
msgid "About %s"
msgstr "Acerca de %s"

#: lib\explorer.py:1176
#, python-format
msgid ""
"<b>%(app_name)s</b> — Version Control for Human Beings<br><small>Version "
"%(explorer_version)s (QBzr %(qbzr_version)s, bzrlib "
"%(bzrlib_version)s)</small><br><br>Copyright © 2009 Canonical Ltd<br><br><a "
"href=\"%(project_url)s\">%(project_url)s</a>"
msgstr ""
"<b>%(app_name)s</b> — Control de versiones para el pueblo<br><small>Versión "
"%(explorer_version)s (QBzr %(qbzr_version)s, bzrlib "
"%(bzrlib_version)s)</small><br><br>Copyright © 2009 Canonical Ltd<br><br><a "
"href=\"%(project_url)s\">%(project_url)s</a>"

#: lib\explorer.py:1220
msgid "No working tree"
msgstr "'Tree' no existe para el trabajo"

#: lib\explorer_profile.py:102
msgid "My"
msgstr ""

#: lib\ui_explorer.py:495
msgid "MainWindow"
msgstr "Ventana principal"

#: lib\ui_explorer.py:496
msgid "&File"
msgstr "&Fiche"

#: lib\ui_explorer.py:497
msgid "S&witch Hat"
msgstr ""

#: lib\ui_explorer.py:498
msgid "&Edit"
msgstr "&Editar"

#: lib\ui_explorer.py:499
msgid "&View"
msgstr "&Vista"

#: lib\ui_explorer.py:500
msgid "&Bazaar"
msgstr ""

#: lib\ui_explorer.py:501
msgid "&Start"
msgstr "&Iniciar"

#: lib\ui_explorer.py:502
msgid "C&ollaborate"
msgstr "C&olaborar"

#: lib\ui_explorer.py:503
msgid "E&xplore"
msgstr "E&xplorar"

#: lib\ui_explorer.py:504
msgid "&Work"
msgstr "&Trabajar"

#: lib\ui_explorer.py:505
msgid "&Settings"
msgstr "Opcione&s"

#: lib\ui_explorer.py:506
msgid "&Branch Specific"
msgstr ""

#: lib\ui_explorer.py:507
msgid "&Tools"
msgstr "&Herramientas"

#: lib\ui_explorer.py:508
msgid "&Manage Tools"
msgstr ""

#: lib\ui_explorer.py:509
msgid "&Help"
msgstr "&Ayuda"

#: lib\ui_explorer.py:510
msgid "Book&marks"
msgstr "&Favoritos"

#: lib\ui_explorer.py:511
msgid "&Manage Bookmarks"
msgstr "Ad&ministrar Favoritos"

#: lib\ui_explorer.py:512
msgid "toolBar"
msgstr ""

#: lib\ui_explorer.py:513
msgid "&Quit"
msgstr "Salir"

#: lib\ui_explorer.py:514
msgid "Exit Bazaar Explorer"
msgstr "Salir Bazar Explorer"

#: lib\ui_explorer.py:515
msgid "Ctrl+Q"
msgstr ""

#: lib\ui_explorer.py:516
msgid "Cu&t"
msgstr ""

#: lib\ui_explorer.py:517
msgid "Ctrl+X"
msgstr ""

#: lib\ui_explorer.py:518
msgid "&Copy"
msgstr ""

#: lib\ui_explorer.py:519
msgid "Ctrl+C"
msgstr ""

#: lib\ui_explorer.py:520
msgid "&Contents"
msgstr "&Contenidos"

#: lib\ui_explorer.py:521
msgid "Help"
msgstr "Ayuda"

#: lib\ui_explorer.py:522
msgid "User documentation"
msgstr "Documentación de usuario"

#: lib\ui_explorer.py:523
msgid "Show user documentation for Bazaar Explorer"
msgstr "Leer la documentación de usuario de Explorer Bazar"

#: lib\ui_explorer.py:524
msgid "F1"
msgstr ""

#: lib\ui_explorer.py:525
msgid "Report a Problem..."
msgstr ""

#: lib\ui_explorer.py:526
msgid "Bug"
msgstr "Problema"

#: lib\ui_explorer.py:527
msgid "Report a problem found in Bazaar Explorer"
msgstr ""

#: lib\ui_explorer.py:528
msgid "Co&nfiguration"
msgstr "Configuración"

#: lib\ui_explorer.py:529
msgid "Edit user-specific configuration settings"
msgstr "Modificar las opciones de un usuario"

#: lib\ui_explorer.py:530 lib\ui_explorer.py:680
msgid "&Ignores"
msgstr "Patrones de ignorar"

#: lib\ui_explorer.py:531
msgid "Edit patterns used to ignore unimportant files (all branches)"
msgstr ""

#: lib\ui_explorer.py:532
msgid "&Rules"
msgstr "Reglas"

#: lib\ui_explorer.py:533
msgid "Edit rules for end-of-line conversions, keywords, etc"
msgstr ""

#: lib\ui_explorer.py:534
msgid "&Locations"
msgstr "Direcciones"

#: lib\ui_explorer.py:535
msgid "Edit settings that apply to branches under locations"
msgstr ""

#: lib\ui_explorer.py:536
msgid "Cre&dentials"
msgstr ""

#: lib\ui_explorer.py:537
msgid "Edit settings used for logging on to remote locations"
msgstr ""

#: lib\ui_explorer.py:538
msgid "&Add Items..."
msgstr ""

#: lib\ui_explorer.py:539
msgid "Add"
msgstr ""

#: lib\ui_explorer.py:540
msgid "Add Items"
msgstr ""

#: lib\ui_explorer.py:541
msgid "Add files to the list of those being tracked"
msgstr ""

#: lib\ui_explorer.py:542
msgid "&Show Differences"
msgstr ""

#: lib\ui_explorer.py:543
msgid "Diff"
msgstr ""

#: lib\ui_explorer.py:544
msgid "Show Differences"
msgstr ""

#: lib\ui_explorer.py:545
msgid "Show differences that will be committed"
msgstr ""

#: lib\ui_explorer.py:546
msgid "F3"
msgstr ""

#: lib\ui_explorer.py:547
msgid "&Commit Content..."
msgstr ""

#: lib\ui_explorer.py:548
msgid "Commit"
msgstr ""

#: lib\ui_explorer.py:549
msgid "Commit Content"
msgstr ""

#: lib\ui_explorer.py:550
msgid "Snapshot the current content as a new revision"
msgstr ""

#: lib\ui_explorer.py:551
msgid "F4"
msgstr ""

#: lib\ui_explorer.py:552
msgid "&Toolbar"
msgstr ""

#: lib\ui_explorer.py:553
msgid "Show/hide toolbar"
msgstr ""

#: lib\ui_explorer.py:554
msgid "Status &Bar"
msgstr ""

#: lib\ui_explorer.py:555
msgid "Show/hide status bar"
msgstr ""

#: lib\ui_explorer.py:556
msgid "&Paste"
msgstr ""

#: lib\ui_explorer.py:557
msgid "Ctrl+V"
msgstr ""

#: lib\ui_explorer.py:558
msgid "I&nitialize..."
msgstr ""

#: lib\ui_explorer.py:559
msgid "Init"
msgstr ""

#: lib\ui_explorer.py:560
msgid "Initialize"
msgstr ""

#: lib\ui_explorer.py:561
msgid "Create a new branch or repository"
msgstr ""

#: lib\ui_explorer.py:562
msgid "&Branch..."
msgstr ""

#: lib\ui_explorer.py:563
msgid "Branch"
msgstr ""

#: lib\ui_explorer.py:564
msgid "Clone a branch creating a new one"
msgstr ""

#: lib\ui_explorer.py:565
msgid "&Checkout..."
msgstr ""

#: lib\ui_explorer.py:566
msgid "Checkout"
msgstr ""

#: lib\ui_explorer.py:567
msgid "Checkout a branch creating just a working tree"
msgstr ""

#: lib\ui_explorer.py:568
msgid "&Browse Items"
msgstr ""

#: lib\ui_explorer.py:569
msgid "Browse"
msgstr ""

#: lib\ui_explorer.py:570
msgid "Browse Items"
msgstr ""

#: lib\ui_explorer.py:571
msgid "Browse files, directories, etc. in a branch"
msgstr ""

#: lib\ui_explorer.py:572
msgid "&Log History"
msgstr ""

#: lib\ui_explorer.py:573
msgid "Log"
msgstr ""

#: lib\ui_explorer.py:574
msgid "Log History"
msgstr ""

#: lib\ui_explorer.py:575
msgid "Browse revisions in the history log"
msgstr ""

#: lib\ui_explorer.py:576
msgid "&Annotate File"
msgstr ""

#: lib\ui_explorer.py:577
msgid "Annotate"
msgstr ""

#: lib\ui_explorer.py:578
msgid "Annotate File"
msgstr ""

#: lib\ui_explorer.py:579
msgid "Show who changed what when in a file"
msgstr ""

#: lib\ui_explorer.py:580
msgid "Location &Information"
msgstr ""

#: lib\ui_explorer.py:581
msgid "Info"
msgstr ""

#: lib\ui_explorer.py:582
msgid "Location Information"
msgstr ""

#: lib\ui_explorer.py:583
msgid "Show information about a location"
msgstr ""

#: lib\ui_explorer.py:584
msgid "&System Information"
msgstr ""

#: lib\ui_explorer.py:585
msgid "System"
msgstr ""

#: lib\ui_explorer.py:586
msgid "System Information"
msgstr ""

#: lib\ui_explorer.py:587
msgid "Show information about your Bazaar installation"
msgstr ""

#: lib\ui_explorer.py:588
msgid "&Send New Revisions..."
msgstr ""

#: lib\ui_explorer.py:589
msgid "Send"
msgstr ""

#: lib\ui_explorer.py:590
msgid "Send New Revisions"
msgstr ""

#: lib\ui_explorer.py:591
msgid "Send changes (vs parent branch) to a mail address or file"
msgstr ""

#: lib\ui_explorer.py:592
msgid "&Push New Revisions..."
msgstr ""

#: lib\ui_explorer.py:593
msgid "Push"
msgstr ""

#: lib\ui_explorer.py:594
msgid "Push New Revisions"
msgstr ""

#: lib\ui_explorer.py:595
msgid "Push new revisions to another branch making it a mirror of this one"
msgstr ""

#: lib\ui_explorer.py:596
msgid "F6"
msgstr ""

#: lib\ui_explorer.py:597
msgid "Pu&ll New Revisions..."
msgstr ""

#: lib\ui_explorer.py:598
msgid "Pull"
msgstr ""

#: lib\ui_explorer.py:599
msgid "Pull New Revisions"
msgstr ""

#: lib\ui_explorer.py:600
msgid ""
"Pull new revisions from another branch making this branch a mirror of it"
msgstr ""

#: lib\ui_explorer.py:601
msgid "&Merge Changes..."
msgstr ""

#: lib\ui_explorer.py:602
msgid "Merge"
msgstr ""

#: lib\ui_explorer.py:603
msgid "Merge Changes"
msgstr ""

#: lib\ui_explorer.py:604
msgid "Merge changes from another branch into this one"
msgstr ""

#: lib\ui_explorer.py:605
msgid "&Update Working Tree..."
msgstr ""

#: lib\ui_explorer.py:606
msgid "Update"
msgstr ""

#: lib\ui_explorer.py:607
msgid "Update Working Tree"
msgstr ""

#: lib\ui_explorer.py:608
msgid "Update branch and working tree, merging if necessary"
msgstr ""

#: lib\ui_explorer.py:609
msgid "E&xport..."
msgstr ""

#: lib\ui_explorer.py:610
msgid "Export"
msgstr ""

#: lib\ui_explorer.py:611
msgid "Export a snapshot to a directory or archive"
msgstr ""

#: lib\ui_explorer.py:612
msgid "&Rename..."
msgstr ""

#: lib\ui_explorer.py:613
msgid "Rename an item"
msgstr ""

#: lib\ui_explorer.py:614
msgid "&Delete"
msgstr ""

#: lib\ui_explorer.py:615
msgid "Delete an item"
msgstr ""

#: lib\ui_explorer.py:616
msgid "&Switch Checkout..."
msgstr ""

#: lib\ui_explorer.py:617
msgid "Switch"
msgstr ""

#: lib\ui_explorer.py:618
msgid "Switch Checkout"
msgstr ""

#: lib\ui_explorer.py:619
msgid "Switch a checkout to another branch"
msgstr ""

#: lib\ui_explorer.py:620
msgid "Re&vert Working Tree..."
msgstr ""

#: lib\ui_explorer.py:621
msgid "Revert"
msgstr ""

#: lib\ui_explorer.py:622
msgid "Change working tree content to an earlier revision"
msgstr ""

#: lib\ui_explorer.py:623
msgid "&Uncommit Revisions..."
msgstr ""

#: lib\ui_explorer.py:624
msgid "Uncommit"
msgstr ""

#: lib\ui_explorer.py:625
msgid "Move branch tip to an earlier revision"
msgstr ""

#: lib\ui_explorer.py:626
msgid "She&lve Changes..."
msgstr ""

#: lib\ui_explorer.py:627
msgid "Shelve"
msgstr ""

#: lib\ui_explorer.py:628
msgid "Select changes in the working tree to be put to one side"
msgstr ""

#: lib\ui_explorer.py:629
msgid "Unsh&elve Changes..."
msgstr ""

#: lib\ui_explorer.py:630
msgid "Merge shelved changes back into the working tree"
msgstr ""

#: lib\ui_explorer.py:631
msgid "&Filter View..."
msgstr ""

#: lib\ui_explorer.py:632
msgid "View"
msgstr ""

#: lib\ui_explorer.py:633
msgid "Change the mask applied to working tree operations"
msgstr ""

#: lib\ui_explorer.py:634
msgid "&Tag..."
msgstr ""

#: lib\ui_explorer.py:635
msgid "Create, delete or move a tag"
msgstr ""

#: lib\ui_explorer.py:636
msgid "Ad&vanced Commands..."
msgstr ""

#: lib\ui_explorer.py:637
msgid "Run advanced commands for administration, etc."
msgstr ""

#: lib\ui_explorer.py:638
msgid "S&ystem Log"
msgstr ""

#: lib\ui_explorer.py:639
msgid "&Select All"
msgstr ""

#: lib\ui_explorer.py:640
msgid "Ctrl+A"
msgstr ""

#: lib\ui_explorer.py:641
msgid "I&mport..."
msgstr ""

#: lib\ui_explorer.py:642
msgid "Create new branches from external content"
msgstr ""

#: lib\ui_explorer.py:643
msgid "Translate This Application..."
msgstr ""

#: lib\ui_explorer.py:644
msgid "Translate"
msgstr ""

#: lib\ui_explorer.py:645
msgid "Connect to the Launchpad website to help translate this application"
msgstr ""

#: lib\ui_explorer.py:646
msgid "Get Help Online..."
msgstr ""

#: lib\ui_explorer.py:647
msgid "Ask"
msgstr ""

#: lib\ui_explorer.py:648
msgid "Connect to the Launchpad website for online help"
msgstr ""

#: lib\ui_explorer.py:649
msgid "&About"
msgstr ""

#: lib\ui_explorer.py:650
msgid "Show version and copyright information"
msgstr ""

#: lib\ui_explorer.py:651
msgid "&Plug-ins"
msgstr ""

#: lib\ui_explorer.py:652
msgid "Show and manage Bazaar plug-ins"
msgstr ""

#: lib\ui_explorer.py:653
msgid "&Open..."
msgstr ""

#: lib\ui_explorer.py:654
msgid "Open"
msgstr ""

#: lib\ui_explorer.py:655
msgid "Open a directory (local location)"
msgstr ""

#: lib\ui_explorer.py:656
msgid "Ctrl+O"
msgstr ""

#: lib\ui_explorer.py:657
msgid "&Find..."
msgstr ""

#: lib\ui_explorer.py:658
msgid "Find revisions matching certain conditions"
msgstr ""

#: lib\ui_explorer.py:659
msgid "Ctrl+F"
msgstr ""

#: lib\ui_explorer.py:661
msgid "Tune the appearance and behavior of Bazaar Explorer"
msgstr ""

#: lib\ui_explorer.py:662
msgid "&Close"
msgstr ""

#: lib\ui_explorer.py:663
msgid "Close the current location"
msgstr ""

#: lib\ui_explorer.py:664
msgid "Ctrl+W"
msgstr ""

#: lib\ui_explorer.py:665
msgid "&Refresh"
msgstr ""

#: lib\ui_explorer.py:666
msgid "Refresh the information displayed"
msgstr ""

#: lib\ui_explorer.py:667
msgid "F5"
msgstr ""

#: lib\ui_explorer.py:668
msgid "Open &Location..."
msgstr ""

#: lib\ui_explorer.py:670
msgid "Open a location by entering a URL"
msgstr ""

#: lib\ui_explorer.py:671
msgid "Ctrl+L"
msgstr ""

#: lib\ui_explorer.py:672
msgid "&Diagnostic Mode"
msgstr ""

#: lib\ui_explorer.py:673
msgid "Enable/disable diagnostic mode to assist debugging problems"
msgstr ""

#: lib\ui_explorer.py:674
msgid "&Bind Branch..."
msgstr ""

#: lib\ui_explorer.py:675
msgid "Bind/unbind branch to another, enabling/disabling lockstep commits"
msgstr ""

#: lib\ui_explorer.py:676
msgid "&Conflicts"
msgstr ""

#: lib\ui_explorer.py:677
msgid "View and resolve conflicts in the working tree"
msgstr ""

#: lib\ui_explorer.py:678
msgid "&Configuration"
msgstr ""

#: lib\ui_explorer.py:679
msgid "Edit branch-specific configuration settings"
msgstr ""

#: lib\ui_explorer.py:681
msgid "Edit patterns used to ignore unimportant files (this branch)"
msgstr ""

#: lib\ui_explorer.py:682
msgid "U&nbind Branch"
msgstr ""

#: lib\ui_explorer.py:683
msgid "&Bookmark This Location"
msgstr ""

#: lib\ui_explorer.py:684
msgid "Bookmark This"
msgstr ""

#: lib\ui_explorer.py:685
msgid "Remember this location as a bookmark"
msgstr ""

#: lib\ui_explorer.py:686
msgid "Edit &My Bookmarks"
msgstr ""

#: lib\ui_explorer.py:687
msgid "Organize and delete bookmarks"
msgstr ""

#: lib\ui_explorer.py:688
msgid "&Refresh Bookmarks"
msgstr ""

#: lib\ui_explorer.py:689
msgid "Refresh Bookmarks"
msgstr ""

#: lib\ui_explorer.py:690
msgid "Reload bookmarks from disk"
msgstr ""

#: lib\ui_explorer.py:691
msgid "Start"
msgstr ""

#: lib\ui_explorer.py:692
msgid "Explore"
msgstr ""

#: lib\ui_explorer.py:693
msgid "Work"
msgstr ""

#: lib\ui_explorer.py:694
msgid "&Working Tree"
msgstr ""

#: lib\ui_explorer.py:696
msgid "Show/hide working tree browser"
msgstr ""

#: lib\ui_explorer.py:697
msgid "Edit &My Tools"
msgstr ""

#: lib\ui_explorer.py:698
msgid "Organize and delete tools"
msgstr ""

#: lib\ui_explorer.py:699
msgid "&Refresh Tools"
msgstr ""

#: lib\ui_explorer.py:700
msgid "Reload tools from disk"
msgstr ""

#: lib\ui_explorer.py:701
msgid "&Edit Hat-specific Tools"
msgstr ""

#: lib\ui_explorer.py:702
msgid "Organise and delete tools related to the current hat"
msgstr ""

#: lib\ui_explorer.py:703
msgid "&Edit Hat-specific Bookmarks"
msgstr ""

#: lib\ui_explorer.py:704
msgid "Organise and delete bookmarks related to the current hat"
msgstr ""

#: lib\ui_explorer.py:705
msgid "&Welcome"
msgstr ""

#: lib\ui_explorer.py:706
msgid "Open the welcome panel"
msgstr ""

#: lib\view_repository.py:66
msgid "All"
msgstr ""

#: lib\view_repository.py:68
#, python-format
msgid "Locations found below this repository: %(rows)d"
msgstr ""

#: lib\view_repository.py:69
msgid "Branches"
msgstr ""

#: lib\view_repository.py:71
#, python-format
msgid "Branches found below this repository: %(rows)d"
msgstr ""

#: lib\view_repository.py:72
msgid "Bound Branches"
msgstr ""

#: lib\view_repository.py:74
#, python-format
msgid "Bound branches found below this repository: %(rows)d"
msgstr ""

#: lib\view_repository.py:75
msgid "Checkouts"
msgstr ""

#: lib\view_repository.py:77
#, python-format
msgid "Checkouts found below this repository: %(rows)d"
msgstr ""

#: lib\view_repository.py:78
msgid "Repositories"
msgstr ""

#: lib\view_repository.py:80
#, python-format
msgid "Repositories found below this repository: %(rows)d"
msgstr ""

#: lib\view_workingtree.py:178
msgid "Working tree has uncommitted changes or unknown files."
msgstr ""

#: lib\view_workingtree.py:182
msgid "Working tree is up to date."
msgstr ""

#: lib\view_workingtree.py:185
msgid "This branch has no working tree."
msgstr ""

#: lib\welcome.py:58
msgid "Welcome to Bazaar Explorer. To get started, select an action below."
msgstr ""

#: lib\welcome.py:75
msgid "Getting Started"
msgstr ""

#: lib\welcome.py:96
msgid "Bookmarks"
msgstr ""