~bzr/bzr-explorer/ppa-daily

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
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
# Danish 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: 2010-08-04 04:30+0300\n"
"PO-Revision-Date: 2010-03-01 14:56+0000\n"
"Last-Translator: nanker <Unknown>\n"
"Language-Team: Danish <da@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: 2010-09-28 12:00+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

#: lib/accessories_dialog.py:80
msgid "Accessories"
msgstr "Tilbehør"

#: lib/accessories_dialog.py:84
msgid "Introduction"
msgstr "Indledning"

#: lib/accessories_dialog.py:86
msgid "Clothes"
msgstr "Tøj"

#: lib/accessories_dialog.py:88
msgid "Bags"
msgstr "Tasker"

#: lib/accessories_dialog.py:90
msgid "Wallet"
msgstr "Tegnebog"

#: lib/accessories_dialog.py:92 lib/accessories_dialog.py:235
msgid "Hat"
msgstr "Hat"

#: lib/accessories_dialog.py:131
msgid "&Enable"
msgstr "&Aktiver"

#: lib/accessories_dialog.py:134
msgid "&Disable"
msgstr "&Deaktiver"

#: lib/accessories_dialog.py:140
msgid "&Reload"
msgstr "&Genindlæs"

#: lib/accessories_dialog.py:171
#, python-format
msgid "Clothes found: %(rows)d"
msgstr ""

#: lib/accessories_dialog.py:187
#, python-format
msgid "Bags found: %(rows)d"
msgstr ""

#: lib/accessories_dialog.py:204
msgid "Directory:"
msgstr "Katalog:"

#: lib/accessories_dialog.py:213
#, python-format
msgid "Hats found: %(rows)d"
msgstr ""

#: lib/accessories_dialog.py:218
msgid "Installed hats"
msgstr ""

#: lib/accessories_dialog.py:235
msgid "Directory"
msgstr "Katalog"

#: lib/accessories_dialog.py:236
#, python-format
msgid "Selection rules found: %(rows)d"
msgstr ""

#: lib/accessories_dialog.py:252
msgid "Hat selection rules"
msgstr ""

#: lib/app_runner.py:28
msgid "failed to start"
msgstr "kunne ikke starte"

#: lib/app_runner.py:29
msgid "process crashed"
msgstr "proces nedbrud"

#: lib/app_runner.py:30
msgid "process timed out"
msgstr "processens tid løb ud"

#: lib/app_runner.py:31
msgid "write error"
msgstr "skrive fejl"

#: lib/app_runner.py:32
msgid "read error"
msgstr "læse fejl"

#: lib/app_runner.py:33 lib/app_runner.py:35
msgid "unknown error"
msgstr "ukendt fejl"

#: lib/app_runner.py:61
#, python-format
msgid "Process error: %s"
msgstr "Proces fejl: %s"

#: lib/desktop_env.py:48 lib/desktop_env.py:52 lib/desktop_env.py:53
#: lib/ui_explorer.py:649
msgid "Prefere&nces..."
msgstr "Indstilli&nger"

#: lib/desktop_env.py:49
msgid "&Configure Bazaar Explorer..."
msgstr "&Konfigurer Bazaar Explorer..."

#: lib/desktop_env.py:50
msgid "&Options..."
msgstr "&Indstillinger..."

#: lib/desktop_env.py:59
msgid "Bazaar Explorer &Handbook"
msgstr "Bazaar Explorer &Håndbog"

#: lib/desktop_env.py:60 lib/desktop_env.py:70
msgid "&About Bazaar Explorer"
msgstr "&Om Bazaar Explorer"

#: lib/desktop_env.py:68
msgid "E&xit"
msgstr "&Afslut"

#: lib/desktop_env.py:69 lib/desktop_env.py:73
msgid "Bazaar Explorer &Help"
msgstr "Bazaar Explorer &Hjælp"

#: lib/explorer.py:142
msgid "Bazaar Explorer"
msgstr "Bazaar Explorer"

#: lib/explorer.py:178 lib/explorer_preferences.py:270
msgid "Toolbar"
msgstr "Værktøjslinje"

#: lib/explorer.py:193 lib/explorer_preferences.py:296
#: lib/sidebar_toolbox.py:46
msgid "Toolbox"
msgstr "Værktøjskasse"

#: lib/explorer.py:197 lib/explorer_preferences.py:306 lib/ui_explorer.py:685
msgid "Working Tree"
msgstr "Arbejdstræ"

#: lib/explorer.py:324
msgid "Open on hosting service"
msgstr "Åben på værtsservice"

#: lib/explorer.py:650
msgid "Error"
msgstr "Fejl"

#: lib/explorer.py:651
#, python-format
msgid "Unable to change to %s - closing page."
msgstr "Kunne ikke ændre til %s - lukker siden."

#: lib/explorer.py:704
msgid "Hat Available"
msgstr ""

#: lib/explorer.py:706
#, python-format
msgid ""
"A %(hat)s hat is available but not associated with this location. Would you "
"like to use it when visiting %(path)s?"
msgstr ""

#: lib/explorer.py:989
msgid "Restart Required"
msgstr "Genstart påkrævet"

#: lib/explorer.py:990
msgid "Please restart Bazaar Explorer for this preference to take effect."
msgstr ""

#: lib/explorer.py:1048 lib/explorer.py:1188 lib/explorer.py:1218
#: lib/explorer.py:1292 lib/explorer.py:1312
msgid "Sorry"
msgstr "Beklager"

#: lib/explorer.py:1049
msgid "The hosted web URL for this location is unknown."
msgstr "Web URL for denne lokation er ukendt."

#: lib/explorer.py:1186
msgid "Cannot edit remote file."
msgstr "Kan ikke redigere fjern fil."

#: lib/explorer.py:1187
#, python-format
msgid "URL is: %s"
msgstr "URL er: %s"

#: lib/explorer.py:1213
#, python-format
msgid "Failed to edit '%(path)s' using '%(editor)s'."
msgstr ""

#: lib/explorer.py:1216
msgid ""
"You may want to install the matching application or change the configured "
"editor."
msgstr ""

#: lib/explorer.py:1259
msgid "Delete Directory"
msgstr "Slet mappe"

#: lib/explorer.py:1262
#, python-format
msgid "Delete directory %s and all its children?"
msgstr "Slet katalog %s og alle underliggende kataloger?"

#: lib/explorer.py:1264
#, python-format
msgid "Delete empty directory %s?"
msgstr "Slet tomt katalog %s?"

#: lib/explorer.py:1266
msgid "Delete Symlink"
msgstr "Slet Symlink"

#: lib/explorer.py:1267
#, python-format
msgid "Delete symlink %s?"
msgstr "Slet symlink %s?"

#: lib/explorer.py:1269
msgid "Delete File"
msgstr "Slet fil"

#: lib/explorer.py:1270
#, python-format
msgid "Delete file %s?"
msgstr "Slet file %s?"

#: lib/explorer.py:1282
msgid "New File"
msgstr "Ny fil"

#: lib/explorer.py:1283 lib/explorer.py:1303
#, python-format
msgid "Destination directory: %s"
msgstr ""

#: lib/explorer.py:1284
msgid "Name of new file:"
msgstr "Ny fils navn:"

#: lib/explorer.py:1294
msgid "Unable to create file"
msgstr "Kunne ikke danne fil"

#: lib/explorer.py:1302
msgid "New Directory"
msgstr "Nyt katalog"

#: lib/explorer.py:1304
msgid "Name of new directory:"
msgstr "Nyt katalogs navn:"

#: lib/explorer.py:1314
msgid "Unable to create directory"
msgstr "Kunne ikke oprette katalog"

#: lib/explorer.py:1581
#, python-format
msgid "Opening %s"
msgstr "Åbner %s"

#: lib/explorer.py:1586
msgid "Unable to open location"
msgstr "Kunne ikke åbne lokation"

#: lib/explorer.py:1593
#, python-format
msgid "%s is not a branch, checkout or repository."
msgstr ""

#: lib/explorer.py:1596
msgid ""
"Do you want to open it as a virtual repository, searching for nested "
"locations?"
msgstr ""

#: lib/explorer.py:1608
msgid "Unable to open"
msgstr "Kunne ikke åbne"

#: lib/explorer.py:1624
msgid "Open Directory"
msgstr "Åben mappe"

#: lib/explorer.py:1629 lib/ui_explorer.py:659
msgid "Open Location"
msgstr "Åbn placering"

#: lib/explorer.py:1630
msgid "Enter the location URL, e.g. lp:bzr, http://example.com/my.bzr/"
msgstr "Angiv lokations URL, f.ex. lp:bzr, http://example.com/my.bzr/"

#: lib/explorer.py:1657 lib/workspace_dialogs.py:207
msgid "Options"
msgstr "Indstillinger"

#: lib/explorer.py:1885
msgid "Bookmarks"
msgstr "Bogmærker"

#: lib/explorer.py:1886
msgid "Recently Opened"
msgstr "Nyligt åbnede"

#: lib/explorer.py:1889
msgid "Welcome"
msgstr "Velkommen"

#: lib/explorer.py:1920
msgid "Version Control for Human Beings"
msgstr "Versionshåndtering for mennesker"

#: lib/explorer.py:1921
msgid "Version"
msgstr "Version"

#: lib/explorer.py:1922
msgid "Copyright"
msgstr "Ophavsret"

#: lib/explorer.py:1924
#, python-format
msgid "About %s"
msgstr "Om %s"

#: lib/explorer_preferences.py:207
msgid "Preferences"
msgstr "Præferencer"

#: lib/explorer_preferences.py:210
msgid "Appearance"
msgstr "Udseende"

#: lib/explorer_preferences.py:212
msgid "Behavior"
msgstr "Opførsel"

#: lib/explorer_preferences.py:214
msgid "Applications"
msgstr "Programmer"

#: lib/explorer_preferences.py:229
msgid "Use custom initialize dialog"
msgstr ""

#: lib/explorer_preferences.py:231
msgid "Use custom branch dialog"
msgstr ""

#: lib/explorer_preferences.py:233
msgid "Use custom checkout dialog"
msgstr ""

#: lib/explorer_preferences.py:235
msgid "Use custom switch dialog"
msgstr ""

#: lib/explorer_preferences.py:241
msgid "Custom Dialogs"
msgstr ""

#: lib/explorer_preferences.py:248
msgid "Open terminal shell for 'All commands'"
msgstr ""

#: lib/explorer_preferences.py:252
msgid "Suite"
msgstr "Suite"

#: lib/explorer_preferences.py:268
msgid "Contents"
msgstr "Indhold"

#: lib/explorer_preferences.py:269 lib/explorer_preferences.py:278
#: lib/explorer_preferences.py:292 lib/explorer_preferences.py:305
msgid "Style"
msgstr "Stil"

#: lib/explorer_preferences.py:279
msgid "Location Selector"
msgstr ""

#: lib/explorer_preferences.py:286
msgid "Show the toolbox on the status view"
msgstr ""

#: lib/explorer_preferences.py:288
msgid "Show the toolbox on the repository view"
msgstr ""

#: lib/explorer_preferences.py:290
msgid "Show the toolbox on the welcome view"
msgstr ""

#: lib/explorer_preferences.py:312
msgid "Language"
msgstr ""

#: lib/explorer_preferences.py:313
msgid "User Interface"
msgstr ""

#: lib/explorer_preferences.py:327
msgid "Edit items in Working Tree browser by default"
msgstr ""

#: lib/explorer_preferences.py:329
msgid "Automatically refresh status report"
msgstr "Opdater statusrapport automatisk"

#: lib/explorer_preferences.py:333
msgid "Status View"
msgstr ""

#: lib/explorer_preferences.py:342
msgid "Bind branches by default"
msgstr ""

#: lib/explorer_preferences.py:344 lib/workspace_dialogs.py:153
msgid "Workspace Model"
msgstr ""

#: lib/explorer_preferences.py:347
msgid "Default Values in Dialogs"
msgstr ""

#: lib/explorer_preferences.py:422
#, python-format
msgid "System default (%s)"
msgstr ""

#: lib/explorer_preferences.py:440
msgid "Change language"
msgstr ""

#: lib/explorer_preferences.py:441
msgid "Restart Bazaar Explorer to apply new language settings"
msgstr ""

#: lib/html_extras.py:46
msgid "No parent location defined yet."
msgstr ""

#: lib/html_extras.py:51
#, python-format
msgid "Not a branch: %s"
msgstr ""

#: lib/html_extras.py:54
#, python-format
msgid "Could not connect to branch: %s"
msgstr ""

#: lib/html_extras.py:63
#, python-format
msgid "Revisions in parent branch but not here: %d"
msgstr ""

#: lib/html_extras.py:64
msgid "All parent branch revisions are present here."
msgstr ""

#: lib/html_extras.py:67
#, python-format
msgid "Revisions here but not in parent branch: %d"
msgstr ""

#: lib/html_extras.py:68
msgid "All revisions present in parent branch."
msgstr ""

#: lib/html_log.py:38
msgid "No revisions in log."
msgstr ""

#: lib/i18n.py:140
msgid "Arabic"
msgstr ""

#: lib/i18n.py:141
msgid "Catalan"
msgstr ""

#: lib/i18n.py:142
msgid "Czech"
msgstr ""

#: lib/i18n.py:143
msgid "Danish"
msgstr ""

#: lib/i18n.py:144
msgid "German"
msgstr ""

#: lib/i18n.py:145
msgid "Greek"
msgstr ""

#: lib/i18n.py:146
msgid "English"
msgstr ""

#: lib/i18n.py:147
msgid "English (Australia)"
msgstr ""

#: lib/i18n.py:148
msgid "English (Canada)"
msgstr ""

#: lib/i18n.py:149
msgid "English (United Kingdom)"
msgstr ""

#: lib/i18n.py:150
msgid "Spanish"
msgstr ""

#: lib/i18n.py:151
msgid "Estonian"
msgstr ""

#: lib/i18n.py:152
msgid "Finnish"
msgstr ""

#: lib/i18n.py:153
msgid "French"
msgstr ""

#: lib/i18n.py:154
msgid "Galician"
msgstr ""

#: lib/i18n.py:155
msgid "Hebrew"
msgstr ""

#: lib/i18n.py:156
msgid "Hungarian"
msgstr ""

#: lib/i18n.py:157
msgid "Indonesian"
msgstr ""

#: lib/i18n.py:158
msgid "Italian"
msgstr ""

#: lib/i18n.py:159
msgid "Japanese"
msgstr ""

#: lib/i18n.py:160
msgid "Lao"
msgstr ""

#: lib/i18n.py:161
msgid "Lithuanian"
msgstr ""

#: lib/i18n.py:162
msgid "Dutch"
msgstr ""

#: lib/i18n.py:163
msgid "Occitan (post 1500)"
msgstr ""

#: lib/i18n.py:164
msgid "Polish"
msgstr ""

#: lib/i18n.py:165
msgid "Brazilian Portuguese"
msgstr ""

#: lib/i18n.py:166
msgid "Russian"
msgstr ""

#: lib/i18n.py:167
msgid "Slovak"
msgstr ""

#: lib/i18n.py:168
msgid "Serbian"
msgstr ""

#: lib/i18n.py:169
msgid "Swedish"
msgstr ""

#: lib/i18n.py:170
msgid "Thai"
msgstr ""

#: lib/i18n.py:171
msgid "Turkish"
msgstr ""

#: lib/i18n.py:172
msgid "Ukrainian"
msgstr ""

#: lib/i18n.py:173
msgid "Chinese (Simplified)"
msgstr ""

#: lib/i18n.py:174
msgid "Chinese (Traditional)"
msgstr ""

#: lib/location.py:160
msgid "Default"
msgstr "Standard"

#: lib/location.py:398
msgid "Repository"
msgstr "Arkiv"

#: lib/location.py:466
msgid "Working Tree Status"
msgstr ""

#: lib/location.py:467
msgid "Working Tree Status (Commit Preview)"
msgstr ""

#: lib/location.py:472
msgid "Repository Overview"
msgstr "Arkivoversigt"

#: lib/location.py:474 lib/location.py:477
msgid "Overview"
msgstr "Oversigt"

#: lib/location_selector.py:475
msgid "Locations"
msgstr ""

#: lib/options_panel.py:81
msgid ":"
msgstr ":"

#: lib/status_report.py:90
msgid "What's next?"
msgstr "Hvad er det næste?"

#: lib/status_report.py:224
#, python-format
msgid "Working tree differs from revision %s."
msgstr ""

#: lib/status_report.py:227
#, python-format
msgid "Working tree is up to date at revision %s."
msgstr ""

#: lib/status_report.py:231
#, python-format
msgid "This branch has no working tree. Last revision is %s."
msgstr ""

#: lib/status_report.py:260
msgid "Add, ignore or delete unversioned items"
msgstr ""

#: lib/status_report.py:314
msgid "Branch has changes not present in its submit branch."
msgstr ""

#: lib/status_report.py:317
msgid "Branch is fully merged into its submit branch."
msgstr ""

#: lib/status_report.py:339
msgid "Open parent branch and merge these changes"
msgstr ""

#: lib/tool_dialogs.py:29
msgid "Add Tool"
msgstr "Tilføj værktøj"

#: lib/tool_dialogs.py:36
msgid "Bazaar Command"
msgstr ""

#: lib/tool_dialogs.py:37
msgid "Web Link"
msgstr "Web-link"

#: lib/tool_dialogs.py:38
msgid "Local Application"
msgstr ""

#: lib/tool_dialogs.py:43
msgid "Title"
msgstr "Titel"

#: lib/tool_dialogs.py:44
msgid "Type"
msgstr "Type"

#: lib/tool_dialogs.py:45
msgid "Command"
msgstr "Kommando"

#: lib/tool_dialogs.py:46
msgid "Icon"
msgstr "Ikon"

#: lib/ui_explorer.py:483
msgid "MainWindow"
msgstr "Hovedvindue"

#: lib/ui_explorer.py:484
msgid "&File"
msgstr "&Filer"

#: lib/ui_explorer.py:485
msgid "Open &Recent"
msgstr "Åbn &seneste"

#: lib/ui_explorer.py:486 lib/wt_browser.py:120
msgid "&Edit"
msgstr "&Rediger"

#: lib/ui_explorer.py:487
msgid "&View"
msgstr "&Vis"

#: lib/ui_explorer.py:488
msgid "&Bazaar"
msgstr "&Bazaar"

#: lib/ui_explorer.py:489
msgid "&Start"
msgstr "&Start"

#: lib/ui_explorer.py:490
msgid "C&ollaborate"
msgstr ""

#: lib/ui_explorer.py:491
msgid "E&xplore"
msgstr ""

#: lib/ui_explorer.py:492
msgid "&Work"
msgstr "&Arbejde"

#: lib/ui_explorer.py:493
msgid "&Settings"
msgstr "&Indstillinger"

#: lib/ui_explorer.py:494
msgid "&Configuration"
msgstr "&Konfiguration"

#: lib/ui_explorer.py:495
msgid "Ignores"
msgstr ""

#: lib/ui_explorer.py:496
msgid "&Tools"
msgstr "&Værktøjer"

#: lib/ui_explorer.py:497
msgid "&Help"
msgstr "&Hjælp"

#: lib/ui_explorer.py:498
msgid "Book&marks"
msgstr "Bog&mærker"

#: lib/ui_explorer.py:499
msgid "&Quit"
msgstr "&Afslut"

#: lib/ui_explorer.py:500
msgid "Exit Bazaar Explorer"
msgstr "Forlad Bazaar Explorer"

#: lib/ui_explorer.py:501
msgid "Ctrl+Q"
msgstr "Ctrl+Q"

#: lib/ui_explorer.py:502
msgid "Cu&t"
msgstr "&Klip"

#: lib/ui_explorer.py:503
msgid "Ctrl+X"
msgstr "Ctrl+X"

#: lib/ui_explorer.py:504
msgid "&Copy"
msgstr "&Kopier"

#: lib/ui_explorer.py:505
msgid "Ctrl+C"
msgstr "Ctrl+C"

#: lib/ui_explorer.py:506
msgid "&Contents"
msgstr "&Indhold"

#: lib/ui_explorer.py:507 lib/welcome.py:176
msgid "Help"
msgstr "Hjælp"

#: lib/ui_explorer.py:508
msgid "User documentation"
msgstr "Bruger dokumentation"

#: lib/ui_explorer.py:509
msgid "Show user documentation for Bazaar Explorer"
msgstr "Vis bruger dokumentation for Bazaar Explorer"

#: lib/ui_explorer.py:510
msgid "F1"
msgstr "F1"

#: lib/ui_explorer.py:511
msgid "Report a Problem..."
msgstr "Rapporter et problem..."

#: lib/ui_explorer.py:512
msgid "Bug"
msgstr "Programfejl"

#: lib/ui_explorer.py:513
msgid "Report a problem found in Bazaar Explorer"
msgstr "Rapporter et problem i Bazaar Explorer"

#: lib/ui_explorer.py:514
msgid "&User Configuration"
msgstr "&Bruger konfiguration"

#: lib/ui_explorer.py:515
msgid "Configuration"
msgstr "Konfiguration"

#: lib/ui_explorer.py:516
msgid "Edit user-specific configuration settings"
msgstr ""

#: lib/ui_explorer.py:517
msgid "&User Ignores"
msgstr ""

#: lib/ui_explorer.py:518
msgid "Edit user-specific patterns used to ignore unimportant files"
msgstr ""

#: lib/ui_explorer.py:519
msgid "&Rules"
msgstr "&Regler"

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

#: lib/ui_explorer.py:521
msgid "&Locations"
msgstr "&Steder"

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

#: lib/ui_explorer.py:523
msgid "Cre&dentials"
msgstr ""

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

#: lib/ui_explorer.py:525
msgid "&Add Items..."
msgstr "&Tilføj emner..."

#: lib/ui_explorer.py:526
msgid "Add"
msgstr "Tilføj"

#: lib/ui_explorer.py:527
msgid "Add Items"
msgstr "Tilføj emner"

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

#: lib/ui_explorer.py:529
msgid "&Show Differences"
msgstr "&Vis forskelle"

#: lib/ui_explorer.py:530
msgid "Diff"
msgstr "Forskelle"

#: lib/ui_explorer.py:531
msgid "Show Differences"
msgstr "Vis forskelle"

#: lib/ui_explorer.py:532
msgid "Show differences that will be committed"
msgstr ""

#: lib/ui_explorer.py:533
msgid "F3"
msgstr "F3"

#: lib/ui_explorer.py:534
msgid "&Commit Content..."
msgstr ""

#: lib/ui_explorer.py:535
msgid "Commit"
msgstr ""

#: lib/ui_explorer.py:536
msgid "Commit Content"
msgstr ""

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

#: lib/ui_explorer.py:538
msgid "F4"
msgstr "F4"

#: lib/ui_explorer.py:539
msgid "&Toolbar"
msgstr "&Værktøjslinje"

#: lib/ui_explorer.py:540
msgid "Show/hide toolbar"
msgstr "Vis/skjul værktøjslinje"

#: lib/ui_explorer.py:541
msgid "Status &Bar"
msgstr ""

#: lib/ui_explorer.py:542
msgid "Show/hide status bar"
msgstr "Vis/skjul status linjen"

#: lib/ui_explorer.py:543
msgid "&Paste"
msgstr "&Indsæt"

#: lib/ui_explorer.py:544
msgid "Ctrl+V"
msgstr "Ctrl+V"

#: lib/ui_explorer.py:545
msgid "I&nitialize..."
msgstr ""

#: lib/ui_explorer.py:546 lib/ui_explorer.py:547 lib/workspace_dialogs.py:59
msgid "Initialize"
msgstr ""

#: lib/ui_explorer.py:548
msgid "Create a new branch or repository"
msgstr ""

#: lib/ui_explorer.py:549
msgid "&Branch..."
msgstr ""

#: lib/ui_explorer.py:550 lib/workspace_dialogs.py:318
msgid "Branch"
msgstr ""

#: lib/ui_explorer.py:551
msgid "Clone a branch creating a new one"
msgstr ""

#: lib/ui_explorer.py:552
msgid "&Checkout..."
msgstr "&Tjek ud..."

#: lib/ui_explorer.py:553
msgid "Checkout"
msgstr "Tjek ud"

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

#: lib/ui_explorer.py:555
msgid "&Browse Items"
msgstr ""

#: lib/ui_explorer.py:556 lib/workspace_dialogs.py:99
#: widgets/filesystem_browser.py:41
msgid "Browse"
msgstr "Gennemse"

#: lib/ui_explorer.py:557
msgid "Browse Items"
msgstr "Gennemse emner"

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

#: lib/ui_explorer.py:559
msgid "&Log History"
msgstr ""

#: lib/ui_explorer.py:560 lib/view_repository.py:122
msgid "Log"
msgstr "Log"

#: lib/ui_explorer.py:561
msgid "Log History"
msgstr "Log historik"

#: lib/ui_explorer.py:562
msgid "Browse revisions in the history log"
msgstr ""

#: lib/ui_explorer.py:563
msgid "&Annotate File"
msgstr ""

#: lib/ui_explorer.py:564
msgid "Annotate"
msgstr ""

#: lib/ui_explorer.py:565
msgid "Annotate File"
msgstr ""

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

#: lib/ui_explorer.py:567
msgid "Location &Information"
msgstr ""

#: lib/ui_explorer.py:568
msgid "Info"
msgstr "Info"

#: lib/ui_explorer.py:569
msgid "Location Information"
msgstr ""

#: lib/ui_explorer.py:570
msgid "Show information about a location"
msgstr ""

#: lib/ui_explorer.py:571
msgid "&System Information"
msgstr ""

#: lib/ui_explorer.py:572
msgid "System Info"
msgstr "Systeminfo"

#: lib/ui_explorer.py:573
msgid "System Information"
msgstr "System information"

#: lib/ui_explorer.py:574
msgid "Show information about your Bazaar installation"
msgstr ""

#: lib/ui_explorer.py:575
msgid "&Send New Revisions..."
msgstr ""

#: lib/ui_explorer.py:576
msgid "Send"
msgstr "Send"

#: lib/ui_explorer.py:577
msgid "Send New Revisions"
msgstr ""

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

#: lib/ui_explorer.py:579
msgid "&Push New Revisions..."
msgstr ""

#: lib/ui_explorer.py:580
msgid "Push"
msgstr ""

#: lib/ui_explorer.py:581
msgid "Push New Revisions"
msgstr ""

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

#: lib/ui_explorer.py:583
msgid "F6"
msgstr "F6"

#: lib/ui_explorer.py:584
msgid "Pu&ll New Revisions..."
msgstr ""

#: lib/ui_explorer.py:585
msgid "Pull"
msgstr ""

#: lib/ui_explorer.py:586
msgid "Pull New Revisions"
msgstr ""

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

#: lib/ui_explorer.py:588
msgid "&Merge Changes..."
msgstr ""

#: lib/ui_explorer.py:589
msgid "Merge"
msgstr "Sammenflet"

#: lib/ui_explorer.py:590
msgid "Merge Changes"
msgstr "Sammenflet ændringer"

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

#: lib/ui_explorer.py:592
msgid "&Update Working Tree..."
msgstr ""

#: lib/ui_explorer.py:593
msgid "Update"
msgstr "Opdatér"

#: lib/ui_explorer.py:594
msgid "Update Working Tree"
msgstr ""

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

#: lib/ui_explorer.py:596
msgid "E&xport..."
msgstr "E&ksport..."

#: lib/ui_explorer.py:597
msgid "Export"
msgstr "Eksport"

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

#: lib/ui_explorer.py:599
msgid "&Move/Rename Item"
msgstr ""

#: lib/ui_explorer.py:600
msgid "Rename an item"
msgstr ""

#: lib/ui_explorer.py:601
msgid "&Remove/Unversion Item"
msgstr ""

#: lib/ui_explorer.py:602
msgid "Delete an item"
msgstr ""

#: lib/ui_explorer.py:603
msgid "&Switch Checkout..."
msgstr ""

#: lib/ui_explorer.py:604
msgid "Switch"
msgstr "Skift"

#: lib/ui_explorer.py:605
msgid "Switch Checkout"
msgstr ""

#: lib/ui_explorer.py:606
msgid "Switch a checkout to another branch"
msgstr ""

#: lib/ui_explorer.py:607
msgid "Re&vert Working Tree..."
msgstr ""

#: lib/ui_explorer.py:608
msgid "Revert"
msgstr ""

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

#: lib/ui_explorer.py:610
msgid "&Uncommit Revisions..."
msgstr ""

#: lib/ui_explorer.py:611
msgid "Uncommit"
msgstr ""

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

#: lib/ui_explorer.py:613
msgid "She&lve Changes..."
msgstr ""

#: lib/ui_explorer.py:614
msgid "Shelve"
msgstr "Hylden"

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

#: lib/ui_explorer.py:616
msgid "Unsh&elve Changes..."
msgstr ""

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

#: lib/ui_explorer.py:618
msgid "&Filter View..."
msgstr ""

#: lib/ui_explorer.py:619
msgid "View"
msgstr "Vis"

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

#: lib/ui_explorer.py:621
msgid "&Tag..."
msgstr ""

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

#: lib/ui_explorer.py:623
msgid "A&ll Commands..."
msgstr ""

#: lib/ui_explorer.py:624 lib/view_repository.py:87 lib/wt_browser.py:531
msgid "All"
msgstr "Alle"

#: lib/ui_explorer.py:625
msgid "Run an arbitrary Bazaar command"
msgstr ""

#: lib/ui_explorer.py:626
msgid "F8"
msgstr "F8"

#: lib/ui_explorer.py:627
msgid "S&ystem Log"
msgstr ""

#: lib/ui_explorer.py:628
msgid "&Select All"
msgstr "&Vælg alle"

#: lib/ui_explorer.py:629
msgid "Ctrl+A"
msgstr "Ctrl+A"

#: lib/ui_explorer.py:630
msgid "I&mport..."
msgstr "I&mporterer..."

#: lib/ui_explorer.py:631
msgid "Create new branches from external content"
msgstr ""

#: lib/ui_explorer.py:632
msgid "Translate This Application..."
msgstr "Oversæt dette program..."

#: lib/ui_explorer.py:633
msgid "Translate"
msgstr "Oversæt"

#: lib/ui_explorer.py:634
msgid "Connect to the Launchpad website to help translate this application"
msgstr ""
"Forbind til Launchpad-hjemmesiden for at hjælpe med at oversætte dette "
"program"

#: lib/ui_explorer.py:635
msgid "Get Help Online..."
msgstr "Få hjælp online..."

#: lib/ui_explorer.py:636
msgid "Ask"
msgstr "Spørg"

#: lib/ui_explorer.py:637
msgid "Connect to the Launchpad website for online help"
msgstr "Forbind til Launchpad-hjemmesiden for hjælp"

#: lib/ui_explorer.py:638
msgid "&About"
msgstr "&Om"

#: lib/ui_explorer.py:639
msgid "Show version and copyright information"
msgstr "Vis version og info om ophavsrettigheder"

#: lib/ui_explorer.py:640
msgid "&Plug-ins"
msgstr ""

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

#: lib/ui_explorer.py:642
msgid "&Open..."
msgstr "Å&ben..."

#: lib/ui_explorer.py:643
msgid "Open"
msgstr "Åben"

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

#: lib/ui_explorer.py:645
msgid "Ctrl+O"
msgstr "Ctrl+B"

#: lib/ui_explorer.py:646
msgid "&Find..."
msgstr "&Find..."

#: lib/ui_explorer.py:647
msgid "Find revisions matching certain conditions"
msgstr ""

#: lib/ui_explorer.py:648
msgid "Ctrl+F"
msgstr "Ctrl+F"

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

#: lib/ui_explorer.py:651
msgid "&Close"
msgstr "&Luk"

#: lib/ui_explorer.py:652
msgid "Close the current location"
msgstr ""

#: lib/ui_explorer.py:653
msgid "Ctrl+W"
msgstr ""

#: lib/ui_explorer.py:654
msgid "&Refresh"
msgstr "&Opdater"

#: lib/ui_explorer.py:655
msgid "Refresh the information displayed"
msgstr "Opdater den information der vises"

#: lib/ui_explorer.py:656
msgid "F5"
msgstr "F5"

#: lib/ui_explorer.py:657
msgid "Open &Location..."
msgstr "Åben &lokation"

#: lib/ui_explorer.py:658
msgid "Open URL"
msgstr "Åbn URL"

#: lib/ui_explorer.py:660
msgid "Open a location by entering a URL"
msgstr "Åben lokation ved at indtaste en URL"

#: lib/ui_explorer.py:661
msgid "Ctrl+L"
msgstr "Ctrl+L"

#: lib/ui_explorer.py:662
msgid "&Diagnostic Mode"
msgstr ""

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

#: lib/ui_explorer.py:664
msgid "&Bind Branch..."
msgstr ""

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

#: lib/ui_explorer.py:666
msgid "Resolve &Conflicts..."
msgstr ""

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

#: lib/ui_explorer.py:668
msgid "&Branch Configuration"
msgstr ""

#: lib/ui_explorer.py:669
msgid "Edit branch-specific configuration settings"
msgstr ""

#: lib/ui_explorer.py:670
msgid "&Ignores"
msgstr ""

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

#: lib/ui_explorer.py:672
msgid "U&nbind Branch"
msgstr ""

#: lib/ui_explorer.py:673
msgid "&Bookmark This Location"
msgstr "Sæt &bogmærke til dette sted"

#: lib/ui_explorer.py:674
msgid "Bookmark This"
msgstr "Bogmærk dette"

#: lib/ui_explorer.py:675
msgid "Remember this location as a bookmark"
msgstr "Husk denne lokation som et bogmærke"

#: lib/ui_explorer.py:676
msgid "Edit &My Bookmarks"
msgstr ""

#: lib/ui_explorer.py:677
msgid "Organize and delete bookmarks"
msgstr ""

#: lib/ui_explorer.py:678
msgid "&Refresh Bookmarks"
msgstr ""

#: lib/ui_explorer.py:679
msgid "Refresh Bookmarks"
msgstr ""

#: lib/ui_explorer.py:680
msgid "Reload bookmarks from disk"
msgstr ""

#: lib/ui_explorer.py:681
msgid "Start"
msgstr "Start"

#: lib/ui_explorer.py:682
msgid "Explore"
msgstr "Udforsk"

#: lib/ui_explorer.py:683
msgid "Work"
msgstr "Arbejde"

#: lib/ui_explorer.py:684
msgid "&Working Tree"
msgstr ""

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

#: lib/ui_explorer.py:687
msgid "Edit &My Tools"
msgstr ""

#: lib/ui_explorer.py:688
msgid "Organize and delete tools"
msgstr ""

#: lib/ui_explorer.py:689
msgid "&Refresh Tools"
msgstr ""

#: lib/ui_explorer.py:690
msgid "Reload tools from disk"
msgstr ""

#: lib/ui_explorer.py:691
msgid "&Edit Hat-specific Tools"
msgstr ""

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

#: lib/ui_explorer.py:693
msgid "&Edit Hat-specific Bookmarks"
msgstr ""

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

#: lib/ui_explorer.py:695
msgid "&Welcome"
msgstr "&Velkommen"

#: lib/ui_explorer.py:696
msgid "Open the welcome panel"
msgstr ""

#: lib/ui_explorer.py:697
msgid "Collaborate"
msgstr "Samarbejd"

#: lib/ui_explorer.py:698
msgid "&Working Tree Ignores"
msgstr ""

#: lib/ui_explorer.py:699
msgid "Edit tree-specific patterns used to ignore unimportant files"
msgstr ""

#: lib/ui_explorer.py:700
msgid "T&oolbox"
msgstr "Værktøjs&kasse"

#: lib/ui_explorer.py:701
msgid "&Add Tool"
msgstr "&Tilføj værktøj"

#: lib/ui_explorer.py:702
msgid "Add a tool"
msgstr "Tilf'øj værktøj"

#: lib/ui_explorer.py:703
msgid "Add a tool to your toolset"
msgstr ""

#: lib/ui_explorer.py:704
msgid "&Accessories..."
msgstr ""

#: lib/ui_explorer.py:705
msgid "Manage extensions to Bazaar Explorer"
msgstr ""

#: lib/view_repository.py:89
msgid "Branches"
msgstr ""

#: lib/view_repository.py:91
msgid "Bound Branches"
msgstr ""

#: lib/view_repository.py:93
msgid "Checkouts"
msgstr ""

#: lib/view_repository.py:95
msgid "Repositories"
msgstr "Arkiver"

#: lib/view_repository.py:113
msgid "Show filter bar"
msgstr "Vis filterlinje"

#: lib/view_repository.py:116 lib/wt_browser.py:126
msgid "&Manage"
msgstr "&Håndtere"

#: lib/view_repository.py:119
msgid "&Branch"
msgstr ""

#: lib/view_repository.py:126
msgid "Delete"
msgstr "Slet"

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

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

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

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

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

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

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

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

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

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

#: lib/view_repository.py:463
msgid "Recent History"
msgstr ""

#: lib/view_repository.py:464
msgid "Local Changes"
msgstr ""

#: lib/view_repository.py:465
msgid "Missing Revisions"
msgstr ""

#: lib/view_repository.py:471
msgid "No details"
msgstr "Ingen detaljer"

#: lib/view_repository.py:473
msgid ""
"This location cannot be opened. It may have been deleted. Please refresh "
"this page."
msgstr ""

#: lib/view_repository.py:513
msgid "Fetching ..."
msgstr "Henter..."

#: lib/view_repository.py:520
msgid "Fetching recent history"
msgstr ""

#: lib/view_repository.py:530
msgid "Fetching local changes"
msgstr ""

#: lib/view_repository.py:537
msgid "Fetching missing revisions"
msgstr ""

#: lib/view_workingtree.py:54
msgid "Submit delta"
msgstr ""

#: lib/welcome.py:30
#, python-format
msgid ""
"\n"
"<p>Configure your identity and preferred text editor using the\n"
"%(Configuration)s action. The settings configured here apply to\n"
"all Bazaar programs, including the command line tool (bzr).</p>\n"
"<p>Use the %(Preferences)s action to personalize Bazaar Explorer.\n"
"The settings configured here only apply to this application.</p>\n"
msgstr ""

#: lib/welcome.py:38
#, python-format
msgid ""
"\n"
"<p>Fetch a copy of a project using the %(Branch)s action.\n"
"A branch requires a little more disk space than a checkout but\n"
"operations are faster and you can work offline.</p>\n"
"\n"
"<p>To fetch just a snapshot of a project, use the %(Checkout)s action.\n"
"A checkout is useful for in-house development where you have\n"
"reliable and high speed network access to the server.\n"
"If in doubt, use %(Branch)s instead of %(Checkout)s.</p>\n"
"\n"
"<p>See also: <a href=\"help bound-branches\">bound branches</a>.</p>\n"
msgstr ""

#: lib/welcome.py:51
#, python-format
msgid ""
"\n"
"<p>To begin a new project from scratch, use the %(Initialize)s action.</p>\n"
"<p>To migrate a project from another tool, see the\n"
"<a href=\"help migration\">Data Migration Guide</a>.\n"
msgstr ""

#: lib/welcome.py:57
#, python-format
msgid ""
"\n"
"<p>Use the %(Open)s action to work on repositories and branches\n"
"you already have locally.</p>\n"
"<p>To open and browse a remote repository or branch, use %(Open_Location)s "
"instead.\n"
"</p>\n"
msgstr ""

#: lib/welcome.py:65
msgid ""
"\n"
"<p>In a normal branch, you can snapshot changes locally\n"
"and only publish them to a central location when you are ready.</p>\n"
"<p>If you want changes automatically committed to both the central\n"
"and local location at the same time, create a branch and <i>bind</i>\n"
"it. The <i>Bind Branch</i> action is available under the Work menu.</p>\n"
msgstr ""

#: lib/welcome.py:119
msgid "What would you like to do?"
msgstr "Hvad vil du gerne gøre?"

#: lib/welcome.py:127
msgid "Setup and personalize Bazaar"
msgstr ""

#: lib/welcome.py:132
msgid "Get project source from elsewhere"
msgstr ""

#: lib/welcome.py:137
msgid "Start a new project"
msgstr "Start et nyt projekt"

#: lib/welcome.py:143
msgid "Open an existing location"
msgstr ""

#: lib/workspace_dialogs.py:97
msgid "Location:"
msgstr ""

#: lib/workspace_dialogs.py:111 widgets/filesystem_browser.py:65
#: widgets/filesystem_browser.py:73 widgets/filesystem_browser.py:81
msgid "Select location"
msgstr ""

#: lib/workspace_dialogs.py:148
msgid "For more information about each model, see the tooltip."
msgstr ""

#: lib/workspace_dialogs.py:169
msgid "2.0 default"
msgstr ""

#: lib/workspace_dialogs.py:171
msgid "1.x default"
msgstr ""

#: lib/workspace_dialogs.py:173
msgid "Other"
msgstr "Andet"

#: lib/workspace_dialogs.py:194
msgid "Format"
msgstr "Format"

#: lib/workspace_dialogs.py:203
msgid "Create parent directories of location, if required"
msgstr ""

#: lib/workspace_dialogs.py:315
msgid ""
"The destination is outside a shared repository. Would you like to initialize "
"one now? This is generally recommended."
msgstr ""

#: lib/workspace_dialogs.py:319
msgid "&Yes"
msgstr "&Ja"

#: lib/workspace_dialogs.py:319
msgid "&No"
msgstr "&Nej"

#: lib/wt_browser.py:47
msgid "No working tree"
msgstr ""

#: lib/wt_browser.py:115
msgid "&Open"
msgstr "Å&ben"

#: lib/wt_browser.py:116
msgid "Open selected item"
msgstr ""

#: lib/wt_browser.py:121
msgid "Edit selected item"
msgstr ""

#: lib/wt_browser.py:127
msgid "Open file manager on folder"
msgstr ""

#: lib/wt_browser.py:131
msgid "&New File"
msgstr "&Ny fil"

#: lib/wt_browser.py:132
msgid "Create a new file"
msgstr "Opret en ny fil"

#: lib/wt_browser.py:136
msgid "New &Folder"
msgstr "Ny &mappe"

#: lib/wt_browser.py:137
msgid "Create a new folder"
msgstr "Opret en ny mappe"

#: lib/wt_browser.py:148
msgid "&Collapse"
msgstr ""

#: lib/wt_browser.py:149
msgid "Fully collapse tree"
msgstr ""

#: lib/wt_browser.py:153
msgid "&Expand"
msgstr ""

#: lib/wt_browser.py:154
msgid "Fully expand tree"
msgstr ""

#: lib/wt_browser.py:238
msgid "Filter:"
msgstr "Filter:"

#: lib/wt_browser.py:245
msgid "Clear the filter"
msgstr "Ryd filteret"

#: lib/wt_browser.py:532
msgid "Changed"
msgstr "Ændret"

#: lib/wt_browser.py:533
msgid "Versioned"
msgstr "Versioneret"

#: lib/wt_browser.py:534
msgid "Unversioned"
msgstr "Ikke versioneret"

#: lib/wt_browser.py:535
msgid "Ignored"
msgstr "Ignoreret"

#: lib/wt_browser.py:536
msgid "Unignored"
msgstr ""

#: lib/builders/toolset_builders.py:506
msgid "My Tools"
msgstr ""

#: lib/extensions/accessories.py:213
msgid "Skin"
msgstr ""

#: lib/extensions/accessories.py:218
msgid "My"
msgstr "Min"