~qbzr-dev/qbzr/0.22

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
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
# English translations for PACKAGE package.
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Automatically generated, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-22 19:25+0900\n"
"PO-Revision-Date: 2012-02-22 19:25+0900\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: lib\add.py:45 lib\config.py:139 lib\config.py:160 lib\config.py:191
#: lib\ui_merge_config.py:60
msgid "Add"
msgstr "Add"

#: lib\add.py:57
msgid "Unversioned Files"
msgstr "Unversioned Files"

#: lib\add.py:106
msgid "Show ignored files"
msgstr "Show ignored files"

#: lib\annotate.py:271 lib\annotate.py:387 lib\annotate.py:457
#: lib\annotate.py:461 lib\log.py:570
msgid "Annotate"
msgstr "Annotate"

#: lib\annotate.py:271 lib\diffwindow.py:122 lib\util.py:476
msgid "Loading..."
msgstr "Loading..."

#: lib\annotate.py:336 lib/widgets\shelve.py:316 lib/widgets\shelvelist.py:125
msgid "Encoding"
msgstr "Encoding"

#: lib\annotate.py:358 lib/widgets\shelve.py:300 lib/widgets\shelvelist.py:106
#: lib/widgets\toolbars.py:63
msgid "Find"
msgstr "Find"

#: lib\annotate.py:362 lib\annotate.py:704
msgid "Goto Line"
msgstr "Goto Line"

#: lib\annotate.py:366 lib\diffwindow.py:261 lib/widgets\shelve.py:320
#: lib/widgets\shelvelist.py:129
msgid "&View Options"
msgstr "&View Options"

#: lib\annotate.py:367 lib\diffwindow.py:262 lib/widgets\shelve.py:304
#: lib/widgets\shelvelist.py:112
msgid "View Options"
msgstr "View Options"

#: lib\annotate.py:370
msgid "Word Wrap"
msgstr "Word Wrap"

#: lib\annotate.py:380
msgid "Tab Width"
msgstr "Tab Width"

#: lib\annotate.py:458
#, python-format
msgid "Revision %s"
msgstr "Revision %s"

#: lib\annotate.py:712
msgid "Goto Line: "
msgstr "Goto Line: "

#: lib\annotate.py:720
msgid "Go"
msgstr "Go"

#: lib\annotate.py:732
msgid "Close Goto Line"
msgstr "Close Goto Line"

#: lib\annotate.py:767
msgid "&Annotate this revision"
msgstr "&Annotate this revision"

#: lib\bind.py:44
msgid "Bind branch"
msgstr "Bind branch"

#: lib\bind.py:54
msgid "Bind"
msgstr "Bind"

#: lib\bind.py:56
msgid "Branch location:"
msgstr "Branch location:"

#: lib\bind.py:60
msgid "Currently bound to:"
msgstr "Currently bound to:"

#: lib\bind.py:64
msgid "Bind to:"
msgstr "Bind to:"

#: lib\bind.py:68 lib\browse.py:65 lib\browse.py:236 lib\export.py:182
#: lib\export.py:200 lib\send.py:62 lib\send.py:86 lib\send.py:152
#: lib\switch.py:100
msgid "Browse"
msgstr "Browse"

#: lib\bind.py:109 lib\switch.py:158 lib\tag.py:190
msgid "Select branch location"
msgstr "Select branch location"

#: lib\bind.py:120
msgid "Master branch location not specified."
msgstr "Master branch location not specified."

#: lib\browse.py:74 lib\export.py:179 lib\ui_info.py:86
msgid "Location:"
msgstr "Location:"

#: lib\browse.py:79 lib\export.py:216 lib\revisionmessagebrowser.py:160
#: lib\ui_new_tree.py:160
msgid "Revision:"
msgstr "Revision:"

#: lib\browse.py:84
msgid "Show"
msgstr "Show"

#: lib\browse.py:90 lib\treewidget.py:1300
msgid "&Filter"
msgstr "&Filter"

#: lib\cat.py:86 lib\cat.py:286
msgid "View"
msgstr "View"

#: lib\cat.py:104 lib\encoding_selector.py:115
msgid "Encoding:"
msgstr "Encoding:"

#: lib\commit.py:221 lib\commit.py:637 lib\commit.py:665 lib\commit.py:673
#: lib\subprocess.py:181
msgid "Commit"
msgstr "Commit"

#: lib\commit.py:247 lib\ui_branch.py:99 lib\ui_new_tree.py:130
#: lib\ui_tag.py:89
msgid "Branch"
msgstr "Branch"

#: lib\commit.py:259
msgid "&Local commit"
msgstr "&Local commit"

#: lib\commit.py:261
msgid ""
"Local commits are not pushed to the master branch until a normal commit is "
"performed"
msgstr ""
"Local commits are not pushed to the master branch until a normal commit is "
"performed"

#: lib\commit.py:265
msgid "Description:"
msgstr "Description:"

#: lib\commit.py:280
msgid ""
"Local branch is out of date with master branch.\n"
"To commit to master branch, update the local branch.\n"
"You can also pass select local to commit to continue working disconnected."
msgstr ""
"Local branch is out of date with master branch.\n"
"To commit to master branch, update the local branch.\n"
"You can also pass select local to commit to continue working disconnected."

#: lib\commit.py:284
msgid "Working tree is out of date. To commit, update the working tree."
msgstr "Working tree is out of date. To commit, update the working tree."

#: lib\commit.py:298 lib\logwidget.py:475
msgid "Update"
msgstr "Update"

#: lib\commit.py:309 lib\logmodel.py:44 lib\treewidget.py:355
#: lib/widgets\shelve.py:262 lib/widgets\shelvelist.py:84
msgid "Message"
msgstr "Message"

#: lib\commit.py:317
msgid "Show non-versioned files"
msgstr "Show non-versioned files"

#: lib\commit.py:344
msgid "Enter the commit message"
msgstr "Enter the commit message"

#: lib\commit.py:358
msgid "&Fixed bugs:"
msgstr "&Fixed bugs:"

#: lib\commit.py:359
msgid "Set the IDs of bugs fixed by this commit"
msgstr "Set the IDs of bugs fixed by this commit"

#: lib\commit.py:362
msgid ""
"Enter the list of bug IDs in format <i>tag:id</i> separated by a space, e.g. "
"<i>project:123 project:765</i>"
msgstr ""
"Enter the list of bug IDs in format <i>tag:id</i> separated by a space, e.g. "
"<i>project:123 project:765</i>"

#: lib\commit.py:372
msgid "&Author:"
msgstr "&Author:"

#: lib\commit.py:373
msgid "Set the author of this change, if it's different from the committer"
msgstr "Set the author of this change, if it's different from the committer"

#: lib\commit.py:376
msgid "Enter the author's name, e.g. <i>John Doe &lt;jdoe@example.com&gt;</i>"
msgstr "Enter the author's name, e.g. <i>John Doe &lt;jdoe@example.com&gt;</i>"

#: lib\commit.py:391
msgid "Changes"
msgstr "Changes"

#: lib\commit.py:408
msgid "Pending Merges"
msgstr "Pending Merges"

#: lib\commit.py:419 lib\main.py:355 lib\subprocess.py:195
#: lib\treewidget.py:357 lib/widgets\shelve.py:284
#: lib/widgets\shelvelist.py:89
msgid "Status"
msgstr "Status"

#: lib\commit.py:431
msgid "View changes in files selected to commit"
msgstr "View changes in files selected to commit"

#: lib\commit.py:638
msgid "You should provide a commit message."
msgstr "You should provide a commit message."

#: lib\commit.py:639 lib\conflicts.py:189 lib\conflicts.py:194
#: lib\diffwindow.py:486 lib\util.py:69 lib/widgets\shelve.py:623
#: lib/widgets\shelve.py:667 lib/widgets\shelve.py:714
#: lib/widgets\shelve.py:718
msgid "&OK"
msgstr "&OK"

#: lib\commit.py:666
msgid "No changes to commit."
msgstr "No changes to commit."

#: lib\commit.py:674
msgid ""
"No changes selected to commit.\n"
"Do you want to commit anyway?"
msgstr ""
"No changes selected to commit.\n"
"Do you want to commit anyway?"

#: lib\commit.py:747
msgid ""
"A commit will be made directly to the master branch, keeping the local and "
"master branches in sync."
msgstr ""
"A commit will be made directly to the master branch, keeping the local and "
"master branches in sync."

#: lib\commit.py:753
msgid ""
"A local commit to the branch will be performed. The master branch will not "
"be updated until a non-local commit is made."
msgstr ""
"A local commit to the branch will be performed. The master branch will not "
"be updated until a non-local commit is made."

#: lib\commit.py:786 lib\diff.py:114 lib\diffwindow.py:122
#: lib\diffwindow.py:178 lib\diffwindow.py:392 lib\diffwindow.py:476
#: lib\diffwindow.py:484 lib\revert.py:291
msgid "Diff"
msgstr "Diff"

#: lib\config.py:49
msgid "Default"
msgstr "Default"

#: lib\config.py:50
msgid "Thunderbird"
msgstr "Thunderbird"

#: lib\config.py:51
msgid "Evolution"
msgstr "Evolution"

#: lib\config.py:52
msgid "KMail"
msgstr "KMail"

#: lib\config.py:53
msgid "Mutt"
msgstr "Mutt"

#: lib\config.py:54
msgid "XDG e-mail client"
msgstr "XDG e-mail client"

#: lib\config.py:55
msgid "MAPI e-mail client"
msgstr "MAPI e-mail client"

#: lib\config.py:56
msgid "Editor"
msgstr "Editor"

#: lib\config.py:79
msgid "Configuration"
msgstr "Configuration"

#: lib\config.py:89 lib\ui_bookmark.py:50
msgid "&Name:"
msgstr "&Name:"

#: lib\config.py:95
msgid "E-&mail:"
msgstr "E-&mail:"

#: lib\config.py:101 lib\ui_run.py:110 lib\ui_tag.py:90
msgid "&Browse..."
msgstr "&Browse..."

#: lib\config.py:108
msgid "&Editor:"
msgstr "&Editor:"

#: lib\config.py:116
msgid "E-mail &client:"
msgstr "E-mail &client:"

#: lib\config.py:123
msgid ""
"Tab width in characters\n"
"option is used in qdiff, qannotate and qcat windows"
msgstr ""
"Tab width in characters\n"
"option is used in qdiff, qannotate and qcat windows"

#: lib\config.py:125
msgid "Tab &Width:"
msgstr "Tab &Width:"

#: lib\config.py:137
msgid "Alias"
msgstr "Alias"

#: lib\config.py:137 lib\config.py:185
msgid "Command"
msgstr "Command"

#: lib\config.py:142 lib\config.py:163 lib\config.py:194
#: lib\treewidget.py:1723 lib\treewidget.py:2066 lib\ui_merge_config.py:61
msgid "Remove"
msgstr "Remove"

#: lib\config.py:158
msgid "Abbreviation"
msgstr "Abbreviation"

#: lib\config.py:158
msgid "URL"
msgstr "URL"

#: lib\config.py:179
msgid "Show inter-group inserts and deletes in green and red"
msgstr "Show inter-group inserts and deletes in green and red"

#: lib\config.py:181
msgid "External Diff Apps:"
msgstr "External Diff Apps:"

#: lib\config.py:184 lib\config.py:971 lib\main.py:353 lib\plugins.py:56
#: lib\plugins.py:61
msgid "Name"
msgstr "Name"

#: lib\config.py:238
msgid "Bazaar 2.4 or newer is required to configure mergetools."
msgstr "Bazaar 2.4 or newer is required to configure mergetools."

#: lib\config.py:241
msgid "General"
msgstr "General"

#: lib\config.py:242
msgid "Aliases"
msgstr "Aliases"

#: lib\config.py:243
msgid "Bug Trackers"
msgstr "Bug Trackers"

#: lib\config.py:244
msgid "&User Interface"
msgstr "&User Interface"

#: lib\config.py:245
msgid "&Diff"
msgstr "&Diff"

#: lib\config.py:246
msgid "&Merge"
msgstr "&Merge"

#: lib\config.py:271
msgid "Spell check &language:"
msgstr "Spell check &language:"

#: lib\config.py:278
msgid ""
"This directory will be automatically filled in your branch source input field"
msgstr ""
"This directory will be automatically filled in your branch source input field"

#: lib\config.py:279 lib\config.py:293 lib\ui_branch.py:102
#: lib\ui_branch.py:104 lib\ui_init.py:120 lib\ui_merge.py:65
#: lib\ui_new_tree.py:132 lib\ui_new_tree.py:134 lib\ui_pull.py:63
#: lib\ui_push.py:65 lib\ui_update_branch.py:85 lib\ui_update_checkout.py:79
msgid "Browse..."
msgstr "Browse..."

#: lib\config.py:286
msgid ""
"Base directory\n"
"for &branch sources:"
msgstr ""
"Base directory\n"
"for &branch sources:"

#: lib\config.py:292
msgid ""
"This directory will be automatically filled in your checkout destination "
"input field"
msgstr ""
"This directory will be automatically filled in your checkout destination "
"input field"

#: lib\config.py:300
msgid ""
"Base directory\n"
"for &checkouts:"
msgstr ""
"Base directory\n"
"for &checkouts:"

#: lib\config.py:412 lib\diff.py:45
msgid "Builtin Diff"
msgstr "Builtin Diff"

#: lib\config.py:442
msgid "Import old external merge tool"
msgstr "Import old external merge tool"

#: lib\config.py:443
#, python-format
msgid ""
"Would you like to import your previously configured external merge tool:\n"
"\n"
"  %(old_cmdline)s\n"
"\n"
"as:\n"
"\n"
"  %(new_cmdline)s"
msgstr ""
"Would you like to import your previously configured external merge tool:\n"
"\n"
"  %(old_cmdline)s\n"
"\n"
"as:\n"
"\n"
"  %(new_cmdline)s"

#: lib\config.py:608
msgid "&Ignore and proceed"
msgstr "&Ignore and proceed"

#: lib\config.py:609
msgid "&Change the values"
msgstr "&Change the values"

#: lib\config.py:719
msgid "Select editor executable"
msgstr "Select editor executable"

#: lib\config.py:726
msgid "Select base directory for checkouts"
msgstr "Select base directory for checkouts"

#: lib\config.py:733
msgid "Select default directory for branch sources"
msgstr "Select default directory for branch sources"

#: lib\config.py:974
msgid "Command Line"
msgstr "Command Line"

#: lib\conflicts.py:50 lib\conflicts.py:166 lib\conflicts.py:185
#: lib\conflicts.py:192
msgid "Conflicts"
msgstr "Conflicts"

#: lib\conflicts.py:61 lib\ignore.py:57
msgid "File"
msgstr "File"

#: lib\conflicts.py:62
msgid "Conflict"
msgstr "Conflict"

#: lib\conflicts.py:94
msgid "&Launch..."
msgstr "&Launch..."

#: lib\conflicts.py:100
msgid "M&erge tool:"
msgstr "M&erge tool:"

#: lib\conflicts.py:116
msgid "Auto-resolve"
msgstr "Auto-resolve"

#: lib\conflicts.py:148 lib\treewidget.py:1706
msgid "&Merge conflict"
msgstr "&Merge conflict"

#: lib\conflicts.py:154
msgid "Mark as &resolved"
msgstr "Mark as &resolved"

#: lib\conflicts.py:186
#, python-format
msgid "%d conflict auto-resolved."
msgid_plural "%d conflicts auto-resolved."
msgstr[0] "%d conflict auto-resolved."
msgstr[1] "%d conflicts auto-resolved."

#: lib\conflicts.py:193
msgid "All conflicts resolved."
msgstr "All conflicts resolved."

#: lib\conflicts.py:228
#, python-format
msgid "Error while running merge tool (code %d)"
msgstr "Error while running merge tool (code %d)"

#: lib\conflicts.py:229 lib\conflicts.py:282 lib\tag.py:204 lib\trace.py:177
#: lib\trace.py:184 lib\tree_branch.py:95 lib\util.py:975 lib\util.py:985
msgid "Error"
msgstr "Error"

#: lib\conflicts.py:249
msgid "Bazaar 2.4 or later is required for external mergetools support"
msgstr "Bazaar 2.4 or later is required for external mergetools support"

#: lib\conflicts.py:259
msgid "Set up external_merge app in qconfig under the Merge tab"
msgstr "Set up external_merge app in qconfig under the Merge tab"

#: lib\conflicts.py:263
#, python-format
msgid "External merge tool %(tool)s is not available"
msgstr "External merge tool %(tool)s is not available"

#: lib\conflicts.py:283
#, python-format
msgid ""
"The extmerge definition: '%(tool)s' is invalid.\n"
"Missing the flag: %(flags)s. This must be fixed in qconfig under the Merge "
"tab."
msgstr ""
"The extmerge definition: '%(tool)s' is invalid.\n"
"Missing the flag: %(flags)s. This must be fixed in qconfig under the Merge "
"tab."

#: lib\conflicts.py:289
#, python-format
msgid "Missing the flag: %s. Configure in qconfig under the merge tab."
msgstr "Missing the flag: %s. Configure in qconfig under the merge tab."

#: lib\conflicts.py:294
msgid "path conflict"
msgstr "path conflict"

#: lib\conflicts.py:295
msgid "contents conflict"
msgstr "contents conflict"

#: lib\conflicts.py:296
msgid "text conflict"
msgstr "text conflict"

#: lib\conflicts.py:297
msgid "duplicate id"
msgstr "duplicate id"

#: lib\conflicts.py:298
msgid "duplicate"
msgstr "duplicate"

#: lib\conflicts.py:299
msgid "parent loop"
msgstr "parent loop"

#: lib\conflicts.py:300
msgid "unversioned parent"
msgstr "unversioned parent"

#: lib\conflicts.py:301
msgid "missing parent"
msgstr "missing parent"

#: lib\conflicts.py:302
msgid "deleting parent"
msgstr "deleting parent"

#: lib\conflicts.py:303
msgid "non-directory parent"
msgstr "non-directory parent"

#: lib\diff.py:90 lib\treewidget.py:1701
msgid "Show &differences"
msgstr "Show &differences"

#: lib\diff.py:199 lib\treewidget.py:331
msgid "removed"
msgstr "removed"

#: lib\diff.py:201 lib\treewidget.py:329
msgid "added"
msgstr "added"

#: lib\diff.py:203
msgid "renamed and modified"
msgstr "renamed and modified"

#: lib\diff.py:205 lib\treewidget.py:342
msgid "renamed"
msgstr "renamed"

#: lib\diff.py:207 lib\treewidget.py:344
msgid "modified"
msgstr "modified"

#: lib\diffview.py:461
msgid "Last modified:"
msgstr "Last modified:"

#: lib\diffview.py:462
msgid "Status:"
msgstr "Status:"

#: lib\diffview.py:463
msgid "Kind:"
msgstr "Kind:"

#: lib\diffview.py:464
msgid "Properties:"
msgstr "Properties:"

#: lib\diffview.py:726
#, python-format
msgid "[binary file (%d bytes)]"
msgstr "[binary file (%d bytes)]"

#: lib\diffview.py:925
msgid "\\ No newline at end of file"
msgstr "\\ No newline at end of file"

#: lib\diffwindow.py:80
#, python-format
msgid "Working Tree for %s"
msgstr "Working Tree for %s"

#: lib\diffwindow.py:82
msgid "Working Tree"
msgstr "Working Tree"

#: lib\diffwindow.py:101
#, python-format
msgid "Rev %(rev)s for %(branch)s"
msgstr "Rev %(rev)s for %(branch)s"

#: lib\diffwindow.py:103
#, python-format
msgid "Rev %s"
msgstr "Rev %s"

#: lib\diffwindow.py:106
#, python-format
msgid "Revid: %(revid)s for %(branch)s"
msgstr "Revid: %(revid)s for %(branch)s"

#: lib\diffwindow.py:108
#, python-format
msgid "Revid: %s"
msgstr "Revid: %s"

#: lib\diffwindow.py:111
msgid "Merge Preview"
msgstr "Merge Preview"

#: lib\diffwindow.py:215
msgid "&Find"
msgstr "&Find"

#: lib\diffwindow.py:217
msgid "Find on active panel"
msgstr "Find on active panel"

#: lib\diffwindow.py:224 lib/widgets\shelvelist.py:109
msgid "Unidiff"
msgstr "Unidiff"

#: lib\diffwindow.py:226
msgid "Toggle between Side by side and Unidiff view modes"
msgstr "Toggle between Side by side and Unidiff view modes"

#: lib\diffwindow.py:238 lib\main.py:274 lib\util.py:73
#: lib/widgets\shelve.py:367 lib/widgets\shelvelist.py:201
msgid "&Refresh"
msgstr "&Refresh"

#: lib\diffwindow.py:249
msgid "&External Diff"
msgstr "&External Diff"

#: lib\diffwindow.py:251
msgid "Launch an external diff application"
msgstr "Launch an external diff application"

#: lib\diffwindow.py:265 lib/widgets\shelvelist.py:114
msgid "&Complete"
msgstr "&Complete"

#: lib\diffwindow.py:281 lib/widgets\shelve.py:311
#: lib/widgets\shelvelist.py:121
msgid "Tab width"
msgstr "Tab width"

#: lib\diffwindow.py:291
msgid "Left side tab width"
msgstr "Left side tab width"

#: lib\diffwindow.py:301
msgid "Right side tab width"
msgstr "Right side tab width"

#: lib\diffwindow.py:317
msgid "Left side encoding"
msgstr "Left side encoding"

#: lib\diffwindow.py:327
msgid "Right side encoding"
msgstr "Right side encoding"

#: lib\diffwindow.py:333
msgid "&Ignore whitespace changes"
msgstr "&Ignore whitespace changes"

#: lib\diffwindow.py:398 lib/widgets\shelve.py:460
#, python-format
msgid "%d file"
msgid_plural "%d files"
msgstr[0] "%d file"
msgstr[1] "%d files"

#: lib\diffwindow.py:477
#, python-format
msgid ""
"File %s is not versioned.\n"
"Operation aborted."
msgstr ""
"File %s is not versioned.\n"
"Operation aborted."

#: lib\diffwindow.py:479 lib\tag.py:138 lib\tag.py:169 lib\tag.py:206
#: lib\tree_branch.py:97 lib\util.py:71 lib\util.py:978 lib\util.py:988
msgid "&Close"
msgstr "&Close"

#: lib\diffwindow.py:485
msgid "No changes found."
msgstr "No changes found."

#: lib\encoding_selector.py:76
msgid "Wrong encoding"
msgstr "Wrong encoding"

#: lib\encoding_selector.py:77
#, python-format
msgid "Encoding \"%s\" is invalid or not supported."
msgstr "Encoding \"%s\" is invalid or not supported."

#: lib\export.py:61 lib\export.py:80
msgid "Export"
msgstr "Export"

#: lib\export.py:75 lib\uncommit.py:51
#, python-format
msgid "Branch: %s"
msgstr "Branch: %s"

#: lib\export.py:146
msgid "Archive type:"
msgstr "Archive type:"

#: lib\export.py:168
msgid "Root directory name:"
msgstr "Root directory name:"

#: lib\export.py:236 lib\ui_branch.py:105 lib\ui_merge.py:63 lib\ui_pull.py:61
#: lib\ui_push.py:63 lib\ui_run.py:108
msgid "Options"
msgstr "Options"

#: lib\help.py:59
#, python-format
msgid "No help can be found for <i>%s</i>"
msgstr "No help can be found for <i>%s</i>"

#: lib\help.py:103
msgid "Help"
msgstr "Help"

#: lib\i18n.py:95
msgid "file"
msgstr "file"

#: lib\i18n.py:96
msgid "directory"
msgstr "directory"

#: lib\i18n.py:97
msgid "symlink"
msgstr "symlink"

#: lib\i18n.py:99
msgid "fixed"
msgstr "fixed"

#: lib\i18n.py:101
msgid "View text file"
msgstr "View text file"

#: lib\i18n.py:102
msgid "View image file"
msgstr "View image file"

#: lib\i18n.py:103
msgid "View binary file"
msgstr "View binary file"

#: lib\i18n.py:104
msgid "View symlink"
msgstr "View symlink"

#: lib\i18n.py:105
msgid "View directory"
msgstr "View directory"

#: lib\i18n.py:107
msgid "No changes selected to commit"
msgstr "No changes selected to commit"

#: lib\i18n.py:108
msgid "No changes selected to revert"
msgstr "No changes selected to revert"

#: lib\ignore.py:37 lib\ignore.py:113
msgid "Ignore"
msgstr "Ignore"

#: lib\ignore.py:49
msgid "Unknown Files"
msgstr "Unknown Files"

#: lib\ignore.py:58
msgid "Extension"
msgstr "Extension"

#: lib\ignore.py:59
msgid "Ignore as"
msgstr "Ignore as"

#: lib\ignore.py:67
msgid "No action"
msgstr "No action"

#: lib\ignore.py:70
msgid "Ignore all files with this extension"
msgstr "Ignore all files with this extension"

#: lib\ignore.py:74
msgid "Case-insensitive pattern"
msgstr "Case-insensitive pattern"

#: lib\ignore.py:77
msgid "Ignore by basename"
msgstr "Ignore by basename"

#: lib\ignore.py:79
msgid "Ignore by fullname"
msgstr "Ignore by fullname"

#: lib\ignore.py:227
msgid "Cancelled"
msgstr "Cancelled"

#: lib\ignore.py:228
msgid "No action selected"
msgstr "No action selected"

#: lib\info.py:38 lib\ui_info.py:88 lib\ui_info.py:90
msgid "Info"
msgstr "Info"

#: lib\init.py:37 lib\ui_init.py:118
msgid "Initialize"
msgstr "Initialize"

#: lib\init.py:72
msgid "You must specify a location"
msgstr "You must specify a location"

#: lib\log.py:111
msgid "Log"
msgstr "Log"

#: lib\log.py:141
msgid "&Search:"
msgstr "&Search:"

#: lib\log.py:157
msgid "Messages"
msgstr "Messages"

#: lib\log.py:159
msgid "Authors"
msgstr "Authors"

#: lib\log.py:161
msgid "Revision IDs"
msgstr "Revision IDs"

#: lib\log.py:163
msgid "Revision Numbers"
msgstr "Revision Numbers"

#: lib\log.py:165
msgid "Tags"
msgstr "Tags"

#: lib\log.py:167
msgid "Bugs"
msgstr "Bugs"

#: lib\log.py:340
msgid ""
"It is not possible to specify different file paths and different branches at "
"the same time."
msgstr ""
"It is not possible to specify different file paths and different branches at "
"the same time."

#: lib\log.py:364
msgid "Messages and File text (indexed)"
msgstr "Messages and File text (indexed)"

#: lib\log.py:565 lib\logwidget.py:162
msgid "Show &differences..."
msgstr "Show &differences..."

#: lib\log.py:573
msgid "View file"
msgstr "View file"

#: lib\log.py:577
msgid "Save file on this revision as..."
msgstr "Save file on this revision as..."

#: lib\log.py:581
msgid "Revert to this revision"
msgstr "Revert to this revision"

#: lib\log.py:830
msgid "Not a file"
msgstr "Not a file"

#: lib\log.py:831
#, python-format
msgid ""
"Operation is supported for a single file only,\n"
"not for a %s."
msgstr ""
"Operation is supported for a single file only,\n"
"not for a %s."

#: lib\log.py:835
msgid "Save file in this revision as..."
msgstr "Save file in this revision as..."

#: lib\log.py:846
msgid "Revert File"
msgstr "Revert File"

#: lib\log.py:847
msgid ""
"Are you sure you want to revert this file to the state it was at the "
"selected revision?"
msgstr ""
"Are you sure you want to revert this file to the state it was at the "
"selected revision?"

#: lib\logmodel.py:43 lib\treewidget.py:354
msgid "Rev"
msgstr "Rev"

#: lib\logmodel.py:45 lib\treewidget.py:353
msgid "Date"
msgstr "Date"

#: lib\logmodel.py:46 lib\treewidget.py:356
msgid "Author"
msgstr "Author"

#: lib\logmodel.py:165
#, python-format
msgid "bug #%s"
msgstr "bug #%s"

#: lib\logwidget.py:134
msgid "Show file &differences"
msgstr "Show file &differences"

#: lib\logwidget.py:140
msgid "Show all &differences"
msgstr "Show all &differences"

#: lib\logwidget.py:146
msgid "Show file &differences..."
msgstr "Show file &differences..."

#: lib\logwidget.py:151
msgid "Show all &differences..."
msgstr "Show all &differences..."

#: lib\logwidget.py:168
msgid "Show &tree..."
msgstr "Show &tree..."

#: lib\logwidget.py:188
msgid "Tag &revision..."
msgstr "Tag &revision..."

#: lib\logwidget.py:191
msgid "R&evert to this revision"
msgstr "R&evert to this revision"

#: lib\logwidget.py:195
msgid "&Update to this revision"
msgstr "&Update to this revision"

#: lib\logwidget.py:203
msgid "&Cherry pick"
msgstr "&Cherry pick"

#: lib\logwidget.py:209
msgid "Re&verse Cherry pick"
msgstr "Re&verse Cherry pick"

#: lib\logwidget.py:445
#, python-format
msgid "Revert to revision %s revid:%s."
msgstr "Revert to revision %s revid:%s."

#: lib\logwidget.py:448
#, python-format
msgid "Revert %s to revision %s revid:%s."
msgstr "Revert %s to revision %s revid:%s."

#: lib\logwidget.py:453 lib\revert.py:54 lib\subprocess.py:186
#: lib\treewidget.py:1953
msgid "Revert"
msgstr "Revert"

#: lib\logwidget.py:467
#, python-format
msgid "Update to revision %s revid:%s."
msgstr "Update to revision %s revid:%s."

#: lib\logwidget.py:470
#, python-format
msgid "Update %s to revision %s revid:%s."
msgstr "Update %s to revision %s revid:%s."

#: lib\logwidget.py:491
#, python-format
msgid "Cherry-pick revisions %s - %s from %s to %s."
msgstr "Cherry-pick revisions %s - %s from %s to %s."

#: lib\logwidget.py:498
msgid "Cherry-pick"
msgstr "Cherry-pick"

#: lib\logwidget.py:511
#, python-format
msgid "Reverse cherry-pick revisions %s - %s"
msgstr "Reverse cherry-pick revisions %s - %s"

#: lib\logwidget.py:514
#, python-format
msgid "Reverse cherry-pick revisions %s - %s in %s."
msgstr "Reverse cherry-pick revisions %s - %s in %s."

#: lib\logwidget.py:520
msgid "Reverse cherry-pick"
msgstr "Reverse cherry-pick"

#: lib\main.py:120
msgid "Computer"
msgstr "Computer"

#: lib\main.py:149
msgid "&Edit Bookmark..."
msgstr "&Edit Bookmark..."

#: lib\main.py:150
msgid "&Remove Bookmark..."
msgstr "&Remove Bookmark..."

#: lib\main.py:165
msgid "Bookmarks"
msgstr "Bookmarks"

#: lib\main.py:276
msgid "Refresh the directory tree"
msgstr "Refresh the directory tree"

#: lib\main.py:280
msgid "&Commit"
msgstr "&Commit"

#: lib\main.py:281
msgid "Commit changes into a new revision"
msgstr "Commit changes into a new revision"

#: lib\main.py:285
msgid "&Push"
msgstr "&Push"

#: lib\main.py:286
msgid "Turn this branch into a mirror of another branch"
msgstr "Turn this branch into a mirror of another branch"

#: lib\main.py:290
msgid "Pu&ll"
msgstr "Pu&ll"

#: lib\main.py:291
msgid "Update a mirror of this branch"
msgstr "Update a mirror of this branch"

#: lib\main.py:294
msgid "&Add Bookmark..."
msgstr "&Add Bookmark..."

#: lib\main.py:301
msgid "&File"
msgstr "&File"

#: lib\main.py:302
msgid "&Configure..."
msgstr "&Configure..."

#: lib\main.py:304
msgid "&Quit"
msgstr "&Quit"

#: lib\main.py:305
msgid "&View"
msgstr "&View"

#: lib\main.py:307
msgid "&Branch"
msgstr "&Branch"

#: lib\main.py:311
msgid "&Bookmarks"
msgstr "&Bookmarks"

#: lib\main.py:313 lib\util.py:72
msgid "&Help"
msgstr "&Help"

#: lib\main.py:314
msgid "&Help..."
msgstr "&Help..."

#: lib\main.py:316
msgid "&About..."
msgstr "&About..."

#: lib\main.py:354
msgid "Size"
msgstr "Size"

#: lib\main.py:406
msgid "About QBzr"
msgstr "About QBzr"

#: lib\main.py:407
#, python-format
msgid ""
"<b>QBzr</b> — A graphical user interface for Bazaar<br><small>Version %"
"(qbzr_version)s (bzrlib %(bzrlib_version)s)</small><br><br>Copyright © 2006-"
"2008 Lukáš Lalinský and others<br><br><a href=\"http://bazaar-vcs.org/QBzr"
"\">http://bazaar-vcs.org/QBzr</a>"
msgstr ""
"<b>QBzr</b> — A graphical user interface for Bazaar<br><small>Version %"
"(qbzr_version)s (bzrlib %(bzrlib_version)s)</small><br><br>Copyright © 2006-"
"2008 Lukáš Lalinský and others<br><br><a href=\"http://bazaar-vcs.org/QBzr"
"\">http://bazaar-vcs.org/QBzr</a>"

#: lib\main.py:472
msgid "Add Bookmark"
msgstr "Add Bookmark"

#: lib\main.py:483
msgid "Edit Bookmark"
msgstr "Edit Bookmark"

#: lib\main.py:493
msgid "Remove Bookmark"
msgstr "Remove Bookmark"

#: lib\main.py:494
msgid "Do you really want to remove the selected bookmark?"
msgstr "Do you really want to remove the selected bookmark?"

#: lib\plugins.py:44
msgid "Plugins"
msgstr "Plugins"

#: lib\plugins.py:57
msgid "Version"
msgstr "Version"

#: lib\plugins.py:58 lib\subprocess.py:402
msgid "Description"
msgstr "Description"

#: lib\plugins.py:62
msgid "Directory"
msgstr "Directory"

#: lib\plugins.py:64
#, python-format
msgid "Plugins installed: %(rows)d"
msgstr "Plugins installed: %(rows)d"

#: lib\plugins.py:71
msgid "Summary"
msgstr "Summary"

#: lib\plugins.py:72 lib\ui_branch.py:100
msgid "Locations"
msgstr "Locations"

#: lib\plugins.py:111
msgid "(no description)"
msgstr "(no description)"

#: lib\pull.py:251 lib\subprocess.py:177
msgid "Working tree has uncommitted changes."
msgstr "Working tree has uncommitted changes."

#: lib\pull.py:256
msgid "Working tree is out of date, please run 'bzr update'."
msgstr "Working tree is out of date, please run 'bzr update'."

#: lib\pull.py:262 lib\ui_push.py:62
msgid "Push"
msgstr "Push"

#: lib\pull.py:264
msgid "Do you want to continue anyway?"
msgstr "Do you want to continue anyway?"

#: lib\pull.py:265 lib\uncommit.py:126
msgid "&Yes"
msgstr "&Yes"

#: lib\pull.py:265 lib\uncommit.py:126
msgid "&No"
msgstr "&No"

#: lib\revert.py:65
msgid "Select changes to revert"
msgstr "Select changes to revert"

#: lib\revert.py:81
msgid "Do not save backups of reverted files"
msgstr "Do not save backups of reverted files"

#: lib\revert.py:93
msgid "Forget pending merges"
msgstr "Forget pending merges"

#: lib\revert.py:140
msgid "View changes in files selected to revert"
msgstr "View changes in files selected to revert"

#: lib\revert.py:235
msgid ""
"You are reverting all changed paths without also reverting pending merges. "
"Do you want to continue?"
msgstr ""
"You are reverting all changed paths without also reverting pending merges. "
"Do you want to continue?"

#: lib\revisionmessagebrowser.py:195
msgid "Parents:"
msgstr "Parents:"

#: lib\revisionmessagebrowser.py:198
msgid "Children:"
msgstr "Children:"

#: lib\revisionmessagebrowser.py:205
msgid "Signature:"
msgstr "Signature:"

#: lib\revisionmessagebrowser.py:221
msgid "Uncommited Working Tree Changes"
msgstr "Uncommited Working Tree Changes"

#: lib\revisionmessagebrowser.py:256
msgid "Date:"
msgstr "Date:"

#: lib\revisionmessagebrowser.py:258
msgid "Committer:"
msgstr "Committer:"

#: lib\revisionmessagebrowser.py:264
msgid "Author:"
msgstr "Author:"

#: lib\revisionmessagebrowser.py:268 lib\unbind.py:50
msgid "Branch:"
msgstr "Branch:"

#: lib\revisionmessagebrowser.py:273
msgid "Tags:"
msgstr "Tags:"

#: lib\revisionmessagebrowser.py:285
msgid "Bug:"
msgid_plural "Bugs:"
msgstr[0] "Bug:"
msgstr[1] "Bugs:"

#: lib\revisionview.py:65 lib\ui_new_tree.py:158
msgid "Revision"
msgstr "Revision"

#: lib\run.py:98
msgid "Select working directory"
msgstr "Select working directory"

#: lib\run.py:119
msgid "&Edit"
msgstr "&Edit"

#: lib\run.py:167
msgid "Help for command"
msgstr "Help for command"

#: lib\run.py:284
msgid "Select path to insert"
msgstr "Select path to insert"

#: lib\run.py:294
msgid "Select files to insert"
msgstr "Select files to insert"

#: lib\send.py:34
msgid "Send"
msgstr "Send"

#: lib\send.py:47
msgid "Merge Directive Options"
msgstr "Merge Directive Options"

#: lib\send.py:53
msgid "Submit Branch:"
msgstr "Submit Branch:"

#: lib\send.py:77
msgid "Public Branch:"
msgstr "Public Branch:"

#: lib\send.py:99
msgid "Remember these locations as defaults"
msgstr "Remember these locations as defaults"

#: lib\send.py:103
msgid "Include a bundle in the merge directive"
msgstr "Include a bundle in the merge directive"

#: lib\send.py:107
msgid "Include a preview patch in the merge directive"
msgstr "Include a preview patch in the merge directive"

#: lib\send.py:112
msgid "Action"
msgstr "Action"

#: lib\send.py:122
msgid "Address:"
msgstr "Address:"

#: lib\send.py:132
msgid "Message:"
msgstr "Message:"

#: lib\send.py:149
msgid "Filename:"
msgstr "Filename:"

#: lib\send.py:163
msgid "Revisions:"
msgstr "Revisions:"

#: lib\shelvewindow.py:63 lib\shelvewindow.py:111 lib\shelvewindow.py:120
#: lib\shelvewindow.py:122 lib/widgets\shelvelist.py:507
msgid "Shelve Manager"
msgstr "Shelve Manager"

#: lib\shelvewindow.py:85 lib/widgets\shelve.py:344 lib/widgets\shelve.py:348
#: lib/widgets\shelve.py:622 lib/widgets\shelve.py:661
#: lib/widgets\shelve.py:666 lib/widgets\shelve.py:712
#: lib/widgets\shelve.py:717 lib/widgets\shelvelist.py:479
msgid "Shelve"
msgstr "Shelve"

#: lib\shelvewindow.py:86
msgid "View shelved changes"
msgstr "View shelved changes"

#: lib\subprocess.py:154
msgid "&Retry"
msgstr "&Retry"

#: lib\subprocess.py:440
msgid "Ready"
msgstr "Ready"

#: lib\subprocess.py:512
msgid "Starting..."
msgstr "Starting..."

#: lib\subprocess.py:575
msgid "Could not locate \"bzr.exe\"."
msgstr "Could not locate \"bzr.exe\"."

#: lib\subprocess.py:594
msgid "Could not locate \"bzr\" script."
msgstr "Could not locate \"bzr\" script."

#: lib\subprocess.py:615
msgid "Aborting..."
msgstr "Aborting..."

#: lib\subprocess.py:626 lib\subprocess.py:760
msgid "Finished!"
msgstr "Finished!"

#: lib\subprocess.py:653 lib\uifactory.py:108
msgid "Enter Password"
msgstr "Enter Password"

#: lib\subprocess.py:663 lib\uifactory.py:119
msgid "Enter Username"
msgstr "Enter Username"

#: lib\subprocess.py:740 lib\subprocess.py:763
msgid "Failed!"
msgstr "Failed!"

#: lib\subprocess.py:743
msgid "Failed to start bzr."
msgstr "Failed to start bzr."

#: lib\subprocess.py:745
#, python-format
msgid "Error while running bzr. (error code: %d)"
msgstr "Error while running bzr. (error code: %d)"

#: lib\subprocess.py:753
msgid "Aborted!"
msgstr "Aborted!"

#: lib\switch.py:46
msgid "Switch"
msgstr "Switch"

#: lib\switch.py:57
msgid "Switch checkout"
msgstr "Switch checkout"

#: lib\switch.py:65
msgid "Heavyweight checkout:"
msgstr "Heavyweight checkout:"

#: lib\switch.py:69
msgid "Lightweight checkout:"
msgstr "Lightweight checkout:"

#: lib\switch.py:76
msgid "Checkout of branch:"
msgstr "Checkout of branch:"

#: lib\switch.py:89
msgid "Switch to branch:"
msgstr "Switch to branch:"

#: lib\switch.py:113
msgid "Create Branch before switching"
msgstr "Create Branch before switching"

#: lib\sysinfo.py:35 lib\ui_sysinfo.py:112
msgid "System Information"
msgstr "System Information"

#: lib\tag.py:137
msgid "You should specify tag name"
msgstr "You should specify tag name"

#: lib\tag.py:143
#, python-format
msgid ""
"Tag \"%s\" already exists.\n"
"Do you want to move existing tag?"
msgstr ""
"Tag \"%s\" already exists.\n"
"Do you want to move existing tag?"

#: lib\tag.py:146
msgid "&Move"
msgstr "&Move"

#: lib\tag.py:146 lib\tag.py:159 lib\util.py:70
msgid "&Cancel"
msgstr "&Cancel"

#: lib\tag.py:156
#, python-format
msgid ""
"Tag \"%s\" does not exists yet.\n"
"Do you want to create new tag?"
msgstr ""
"Tag \"%s\" does not exists yet.\n"
"Do you want to create new tag?"

#: lib\tag.py:159
msgid "Cre&ate"
msgstr "Cre&ate"

#: lib\tag.py:168
#, python-format
msgid "Tag \"%s\" does not exists"
msgstr "Tag \"%s\" does not exists"

#: lib\tag.py:205
#, python-format
msgid ""
"Not a branch:\n"
"%s"
msgstr ""
"Not a branch:\n"
"%s"

#: lib\trace.py:233
#, python-format
msgid "Close %s Window"
msgstr "Close %s Window"

#: lib\trace.py:235
msgid "Close Window"
msgstr "Close Window"

#: lib\trace.py:237
msgid "Close Application"
msgstr "Close Application"

#: lib\trace.py:247
msgid "Close Error Dialog"
msgstr "Close Error Dialog"

#: lib\trace.py:252
msgid "Ignore Error"
msgstr "Ignore Error"

#: lib\trace.py:278
msgid "Report Bazaar Error"
msgstr "Report Bazaar Error"

#: lib\trace.py:299 lib\trace.py:345
msgid "Show Error Details >>>"
msgstr "Show Error Details >>>"

#: lib\trace.py:343
msgid "<<< Hide Error Details"
msgstr "<<< Hide Error Details"

#: lib\treewidget.py:322
msgid "ignored"
msgstr "ignored"

#: lib\treewidget.py:324
msgid "non-versioned"
msgstr "non-versioned"

#: lib\treewidget.py:327
msgid "added, missing"
msgstr "added, missing"

#: lib\treewidget.py:333
msgid "missing"
msgstr "missing"

#: lib\treewidget.py:340
msgid "moved"
msgstr "moved"

#: lib\treewidget.py:346
msgid "x-bit"
msgstr "x-bit"

#: lib\treewidget.py:352 lib/widgets\shelve.py:284
#: lib/widgets\shelvelist.py:89
msgid "File Name"
msgstr "File Name"

#: lib\treewidget.py:1302
msgid "Unchanged"
msgstr "Unchanged"

#: lib\treewidget.py:1303
msgid "Changed"
msgstr "Changed"

#: lib\treewidget.py:1304
msgid "Unversioned"
msgstr "Unversioned"

#: lib\treewidget.py:1305
msgid "Ignored"
msgstr "Ignored"

#: lib\treewidget.py:1682
msgid "&Open"
msgstr "&Open"

#: lib\treewidget.py:1685
msgid "&View file"
msgstr "&View file"

#: lib\treewidget.py:1688
msgid "Show &annotate"
msgstr "Show &annotate"

#: lib\treewidget.py:1691
msgid "Show &log"
msgstr "Show &log"

#: lib\treewidget.py:1709
msgid "Mark conflict &resolved"
msgstr "Mark conflict &resolved"

#: lib\treewidget.py:1714
msgid "&Add"
msgstr "&Add"

#: lib\treewidget.py:1717
msgid "&Revert"
msgstr "&Revert"

#: lib\treewidget.py:1720
msgid "Re&name"
msgstr "Re&name"

#: lib\treewidget.py:1781
msgid "&Mark as moved and renamed"
msgstr "&Mark as moved and renamed"

#: lib\treewidget.py:1783
msgid "&Mark as moved"
msgstr "&Mark as moved"

#: lib\treewidget.py:1785
msgid "&Mark as renamed"
msgstr "&Mark as renamed"

#: lib\treewidget.py:1954
msgid "Do you really want to revert the selected file(s)?"
msgstr "Do you really want to revert the selected file(s)?"

#: lib\treewidget.py:1987
msgid "External Merge"
msgstr "External Merge"

#: lib\treewidget.py:2067
msgid ""
"Some of the files selected cannot be recovered if removed. Are you sure you "
"want to remove these files?"
msgstr ""
"Some of the files selected cannot be recovered if removed. Are you sure you "
"want to remove these files?"

#: lib\treewidget.py:2082
msgid "Select / deselect all"
msgstr "Select / deselect all"

#: lib\tree_branch.py:91 lib\util.py:976
#, python-format
msgid "Not a branch \"%s\""
msgstr "Not a branch \"%s\""

#: lib\tree_branch.py:93 lib\util.py:986
#, python-format
msgid "No working tree exists for \"%s\""
msgstr "No working tree exists for \"%s\""

#: lib\ui_bookmark.py:51 lib\ui_merge.py:64 lib\ui_pull.py:62
#: lib\ui_push.py:64
msgid "&Location:"
msgstr "&Location:"

#: lib\ui_branch.py:101
msgid "&From:"
msgstr "&From:"

#: lib\ui_branch.py:103
msgid "&To:"
msgstr "&To:"

#: lib\ui_branch.py:106
msgid "Bind new branch to parent location"
msgstr "Bind new branch to parent location"

#: lib\ui_branch.py:107 lib\ui_merge.py:66 lib\ui_pull.py:64 lib\ui_tag.py:97
msgid "&Revision:"
msgstr "&Revision:"

#: lib\ui_info.py:87
msgid "..."
msgstr "..."

#: lib\ui_info.py:89
msgid "&Basic"
msgstr "&Basic"

#: lib\ui_info.py:91
msgid "&Detailed"
msgstr "&Detailed"

#: lib\ui_init.py:119
msgid "Local Directory"
msgstr "Local Directory"

#: lib\ui_init.py:121
msgid "Repository"
msgstr "Repository"

#: lib\ui_init.py:122
msgid "Create a new standalone tree"
msgstr "Create a new standalone tree"

#: lib\ui_init.py:123
msgid "Ensure all revisions are appended to the log"
msgstr "Ensure all revisions are appended to the log"

#: lib\ui_init.py:124
msgid "Create a new shared repository"
msgstr "Create a new shared repository"

#: lib\ui_init.py:125
msgid "Skip the creation of working trees in this repository"
msgstr "Skip the creation of working trees in this repository"

#: lib\ui_init.py:131
msgid "Repository Format:"
msgstr "Repository Format:"

#: lib\ui_init.py:132
msgid "Description of format"
msgstr "Description of format"

#: lib\ui_merge.py:62
msgid "Merge"
msgstr "Merge"

#: lib\ui_merge.py:67 lib\ui_pull.py:65 lib\ui_push.py:66
msgid "Remember this location as a default"
msgstr "Remember this location as a default"

#: lib\ui_merge.py:68
msgid "Merge even if the working tree has uncommitted changes"
msgstr "Merge even if the working tree has uncommitted changes"

#: lib\ui_merge.py:69
msgid "Merge uncommitted changes instead of committed ones"
msgstr "Merge uncommitted changes instead of committed ones"

#: lib\ui_merge_config.py:58
msgid "Form"
msgstr "Form"

#: lib\ui_merge_config.py:59
msgid "External Merge Tools"
msgstr "External Merge Tools"

#: lib\ui_merge_config.py:62
msgid "Sets the selected merge tool as the default to use in qconflicts."
msgstr "Sets the selected merge tool as the default to use in qconflicts."

#: lib\ui_merge_config.py:63
msgid "Set Default"
msgstr "Set Default"

#: lib\ui_new_tree.py:129
msgid "Create a new Bazaar Working Tree"
msgstr "Create a new Bazaar Working Tree"

#: lib\ui_new_tree.py:131
msgid ""
"Branch source (enter a URL or select a local directory with an existing "
"branch)"
msgstr ""
"Branch source (enter a URL or select a local directory with an existing "
"branch)"

#: lib\ui_new_tree.py:133
msgid "Local directory where the working tree will be created"
msgstr "Local directory where the working tree will be created"

#: lib\ui_new_tree.py:135
msgid "Working Tree Options"
msgstr "Working Tree Options"

#: lib\ui_new_tree.py:136
msgid "Create a checkout"
msgstr "Create a checkout"

#: lib\ui_new_tree.py:144
msgid "Light-weight checkout"
msgstr "Light-weight checkout"

#: lib\ui_new_tree.py:145
msgid "Make a local copy of the branch"
msgstr "Make a local copy of the branch"

#: lib\ui_new_tree.py:151
msgid "Create a stacked branch referring to the source branch"
msgstr "Create a stacked branch referring to the source branch"

#: lib\ui_new_tree.py:152
msgid "Click a link for more information about checkouts and branches."
msgstr "Click a link for more information about checkouts and branches."

#: lib\ui_new_tree.py:159
msgid "Most recent (tip) revision"
msgstr "Most recent (tip) revision"

#: lib\ui_new_tree.py:161
msgid "Show Log..."
msgstr "Show Log..."

#: lib\ui_pull.py:60
msgid "Pull"
msgstr "Pull"

#: lib\ui_pull.py:66 lib\ui_push.py:67 lib\ui_update_branch.py:88
#: lib\ui_update_checkout.py:80
msgid "Overwrite differences between branches"
msgstr "Overwrite differences between branches"

#: lib\ui_push.py:68
msgid "Use existing directory"
msgstr "Use existing directory"

#: lib\ui_push.py:69
msgid "Create the path up to the branch if it does not exist"
msgstr "Create the path up to the branch if it does not exist"

#: lib\ui_run.py:107
msgid "Run bzr command"
msgstr "Run bzr command"

#: lib\ui_run.py:109
msgid "&Working directory:"
msgstr "&Working directory:"

#: lib\ui_run.py:111
msgid "C&ategory:"
msgstr "C&ategory:"

#: lib\ui_run.py:112
msgid "&Command:"
msgstr "&Command:"

#: lib\ui_run.py:113
msgid "&Show hidden commands"
msgstr "&Show hidden commands"

#: lib\ui_run.py:114
msgid "&Options and arguments for command:"
msgstr "&Options and arguments for command:"

#: lib\ui_run.py:115
msgid "Insert &directory..."
msgstr "Insert &directory..."

#: lib\ui_run.py:116
msgid "Insert &filenames..."
msgstr "Insert &filenames..."

#: lib\ui_sysinfo.py:113
msgid "Bazaar Library"
msgstr "Bazaar Library"

#: lib\ui_sysinfo.py:114 lib\ui_sysinfo.py:124
msgid "Version:"
msgstr "Version:"

#: lib\ui_sysinfo.py:115
msgid "(bzr-version)"
msgstr "(bzr-version)"

#: lib\ui_sysinfo.py:116 lib\ui_sysinfo.py:126
msgid "Path:"
msgstr "Path:"

#: lib\ui_sysinfo.py:117
msgid "(bzr-lib-path)"
msgstr "(bzr-lib-path)"

#: lib\ui_sysinfo.py:118
msgid "Bazaar Configuration"
msgstr "Bazaar Configuration"

#: lib\ui_sysinfo.py:119
msgid "Settings:"
msgstr "Settings:"

#: lib\ui_sysinfo.py:120
msgid "(bzr-config-dir)"
msgstr "(bzr-config-dir)"

#: lib\ui_sysinfo.py:121
msgid "Log File:"
msgstr "Log File:"

#: lib\ui_sysinfo.py:122
msgid "(bzr-log-file)"
msgstr "(bzr-log-file)"

#: lib\ui_sysinfo.py:123
msgid "Python Interpreter"
msgstr "Python Interpreter"

#: lib\ui_sysinfo.py:125
msgid "(python-version)"
msgstr "(python-version)"

#: lib\ui_sysinfo.py:127
msgid "(python-file)"
msgstr "(python-file)"

#: lib\ui_sysinfo.py:128
msgid "Library:"
msgstr "Library:"

#: lib\ui_sysinfo.py:129
msgid "(python-lib-dir)"
msgstr "(python-lib-dir)"

#: lib\ui_tag.py:88
msgid "Edit tag"
msgstr "Edit tag"

#: lib\ui_tag.py:91
msgid "Tag"
msgstr "Tag"

#: lib\ui_tag.py:92
msgid "&Action:"
msgstr "&Action:"

#: lib\ui_tag.py:93
msgid "Create new tag"
msgstr "Create new tag"

#: lib\ui_tag.py:94
msgid "Move existing tag"
msgstr "Move existing tag"

#: lib\ui_tag.py:95
msgid "Delete existing tag"
msgstr "Delete existing tag"

#: lib\ui_tag.py:96
msgid "&Tag name:"
msgstr "&Tag name:"

#: lib\ui_tag.py:98
msgid "&Select..."
msgstr "&Select..."

#: lib\ui_update_branch.py:82
msgid "Update Branch"
msgstr "Update Branch"

#: lib\ui_update_branch.py:83
msgid ""
"This directory is a branch.  Please select what you would like to update"
msgstr ""
"This directory is a branch.  Please select what you would like to update"

#: lib\ui_update_branch.py:84 lib\ui_update_checkout.py:76
msgid "Update source"
msgstr "Update source"

#: lib\ui_update_branch.py:86
msgid "Pull most recent changes from:"
msgstr "Pull most recent changes from:"

#: lib\ui_update_branch.py:87
msgid "Remember this as the new parent branch"
msgstr "Remember this as the new parent branch"

#: lib\ui_update_branch.py:89
msgid "<Parent Branch shown here>"
msgstr "<Parent Branch shown here>"

#: lib\ui_update_branch.py:90
msgid "Update working tree to the latest changes in the branch"
msgstr "Update working tree to the latest changes in the branch"

#: lib\ui_update_checkout.py:74
msgid "Update Checkout"
msgstr "Update Checkout"

#: lib\ui_update_checkout.py:75
#, python-format
msgid "This directory is a checkout of: %s"
msgstr "This directory is a checkout of: %s"

#: lib\ui_update_checkout.py:77
msgid "Update the working tree from the bound branch"
msgstr "Update the working tree from the bound branch"

#: lib\ui_update_checkout.py:78
msgid "Pull a different branch"
msgstr "Pull a different branch"

#: lib\unbind.py:36
msgid "Unbind branch"
msgstr "Unbind branch"

#: lib\unbind.py:47
msgid "Unbind"
msgstr "Unbind"

#: lib\unbind.py:55
msgid "Bound to:"
msgstr "Bound to:"

#: lib\uncommit.py:40 lib\uncommit.py:124
msgid "Uncommit"
msgstr "Uncommit"

#: lib\uncommit.py:57
msgid "Move tip to"
msgstr "Move tip to"

#: lib\uncommit.py:59
msgid "Parent of current tip revision"
msgstr "Parent of current tip revision"

#: lib\uncommit.py:61
msgid "Other revision:"
msgstr "Other revision:"

#: lib\uncommit.py:104
msgid "No other revision specified."
msgstr "No other revision specified."

#: lib\uncommit.py:122
msgid "Do you really want to uncommit these revisions?"
msgstr "Do you really want to uncommit these revisions?"

#: lib\update.py:33
msgid "Update working tree"
msgstr "Update working tree"

#: lib\update.py:34
#, python-format
msgid "Update tree %s"
msgstr "Update tree %s"

#: lib\util.py:547
msgid "Select Source Directory"
msgstr "Select Source Directory"

#: lib\util.py:549
msgid "Select Target Directory"
msgstr "Select Target Directory"

#: lib\util.py:690
msgid "deleted files"
msgstr "deleted files"

#: lib\util.py:692
msgid "added files"
msgstr "added files"

#: lib\util.py:694
msgid "renamed files"
msgstr "renamed files"

#: lib\util.py:696
msgid "modified files"
msgstr "modified files"

#: lib\util.py:938 lib\util.py:939 lib\util.py:942
msgid "(no message)"
msgstr "(no message)"

#: lib\verify_signatures.py:52
msgid "Verify Signatures"
msgstr "Verify Signatures"

#: lib\verify_signatures.py:118
msgid "All commits signed with verifiable keys"
msgstr "All commits signed with verifiable keys"

#: lib/widgets\shelve.py:74
msgid "delete file"
msgstr "delete file"

#: lib/widgets\shelve.py:74
msgid "rename"
msgstr "rename"

#: lib/widgets\shelve.py:74
msgid "add file"
msgstr "add file"

#: lib/widgets\shelve.py:75
msgid "modify text"
msgstr "modify text"

#: lib/widgets\shelve.py:75
msgid "modify target"
msgstr "modify target"

#: lib/widgets\shelve.py:75
msgid "modify binary"
msgstr "modify binary"

#: lib/widgets\shelve.py:270
msgid "Enter the shelve message"
msgstr "Enter the shelve message"

#: lib/widgets\shelve.py:284
msgid "Hunks"
msgstr "Hunks"

#: lib/widgets\shelve.py:306
msgid "Complete"
msgstr "Complete"

#: lib/widgets\shelve.py:324
msgid "Previous hunk"
msgstr "Previous hunk"

#: lib/widgets\shelve.py:326
msgid "Next hunk"
msgstr "Next hunk"

#: lib/widgets\shelve.py:329
msgid "Use editor"
msgstr "Use editor"

#: lib/widgets\shelve.py:345
msgid "Destroy"
msgstr "Destroy"

#: lib/widgets\shelve.py:354
msgid "Select all"
msgstr "Select all"

#: lib/widgets\shelve.py:357
msgid "Unselect all"
msgstr "Unselect all"

#: lib/widgets\shelve.py:364 lib/widgets\shelvelist.py:198
msgid "&Layout"
msgstr "&Layout"

#: lib/widgets\shelve.py:623
msgid "Change editor is not defined."
msgstr "Change editor is not defined."

#: lib/widgets\shelve.py:654
#, python-format
msgid "Delete changes of %d file without shelving"
msgid_plural "Delete changes of %d files without shelving"
msgstr[0] "Delete changes of %d file without shelving"
msgstr[1] "Delete changes of %d files without shelving"

#: lib/widgets\shelve.py:658
#, python-format
msgid "Shelve changes of %d file"
msgid_plural "Shelve changes of %d files"
msgstr[0] "Shelve changes of %d file"
msgstr[1] "Shelve changes of %d files"

#: lib/widgets\shelve.py:667
msgid "No changes selected."
msgstr "No changes selected."

#: lib/widgets\shelve.py:704 lib/widgets\shelvelist.py:284
msgid "<no message>"
msgstr "<no message>"

#: lib/widgets\shelve.py:713
msgid "Operation aborted because working tree has pending merges."
msgstr "Operation aborted because working tree has pending merges."

#: lib/widgets\shelve.py:718
msgid "Operation aborted because target files has been changed."
msgstr "Operation aborted because target files has been changed."

#: lib/widgets\shelve.py:958
msgid "Edited by change editor.\n"
msgstr "Edited by change editor.\n"

#: lib/widgets\shelvelist.py:84
msgid "Id"
msgstr "Id"

#: lib/widgets\shelvelist.py:118
msgid "Ignore whitespace"
msgstr "Ignore whitespace"

#: lib/widgets\shelvelist.py:173 lib/widgets\shelvelist.py:181
msgid "Unshelve"
msgstr "Unshelve"

#: lib/widgets\shelvelist.py:174
msgid "Dry run"
msgstr "Dry run"

#: lib/widgets\shelvelist.py:176
msgid "Keep"
msgstr "Keep"

#: lib/widgets\shelvelist.py:178
msgid "Delete"
msgstr "Delete"

#: lib/widgets\shelvelist.py:192
msgid "Show filelist"
msgstr "Show filelist"

#: lib/widgets\shelvelist.py:485
#, python-format
msgid "Apply changes in shelf[%(id)d], and remove from the shelf"
msgstr "Apply changes in shelf[%(id)d], and remove from the shelf"

#: lib/widgets\shelvelist.py:487
#, python-format
msgid ""
"Simulate to apply changes in shelf[%(id)d] without changing working tree"
msgstr ""
"Simulate to apply changes in shelf[%(id)d] without changing working tree"

#: lib/widgets\shelvelist.py:489
#, python-format
msgid "Apply changes in shelf[%(id)d], but keep it shelved"
msgstr "Apply changes in shelf[%(id)d], but keep it shelved"

#: lib/widgets\shelvelist.py:491
#, python-format
msgid "Remove shelf[%(id)d] without applying"
msgstr "Remove shelf[%(id)d] without applying"

#: lib/widgets\toolbars.py:74
msgid "Find: "
msgstr "Find: "

#: lib/widgets\toolbars.py:90
msgid "Previous"
msgstr "Previous"

#: lib/widgets\toolbars.py:94
msgid "Next"
msgstr "Next"

#: lib/widgets\toolbars.py:98
msgid "Case sensitive"
msgstr "Case sensitive"

#: lib/widgets\toolbars.py:100
msgid "Whole words"
msgstr "Whole words"

#: lib/widgets\toolbars.py:109
msgid "Close find"
msgstr "Close find"

#: lib/widgets\toolbars.py:300
msgid "Layout"
msgstr "Layout"

#: lib/widgets\toolbars.py:314
#, python-format
msgid "Layout %d"
msgstr "Layout %d"