~xmlce-translators/xml-copy-editor/stable

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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-07-27 00:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"

#: xmlcopyeditorcopy.h:2
msgid ""
"All files (*.*)|*.*|XML (*.xml)|*.xml|XHTML (*.html)|*.html|DTD (*.dtd)|*."
"dtd|XML Schema (*.xsd)|*.xsd|RELAX NG grammar (*.rng)|*.rng|XSL (*.xsl)|*.xsl"
msgstr ""

#: xmlcopyeditorcopy.h:3
msgid "Copyright © 2005-2007 Gerald Schmidt <gnschmidt@users.sourceforge.net>"
msgstr ""

#: xmlcopyeditorcopy.h:4
msgid ""
"\n"
"XML Copy Editor is free software released under the GNU\n"
"General Public License.\n"
"\n"
"Many thanks are due to Tim van Niekerk, Matt Smigielski,\n"
"David Scholl, Jan Merka, Marcus Bingenheimer, Roberto\n"
"Rosselli Del Turco, Ken Zalewski, C.J. Meidlinger,\n"
"Thomas Zajic, Viliam Búr, David Håsäther, François\n"
"Badier, Thomas Wenzel, Roger Sperberg, SHiNE CsyFeK,\n"
"HSU PICHAN, YANG SHUFUN, CHENG PAULIAN and\n"
"CHUANG KUO-PING."
msgstr ""

#: aboutdialog.cpp:29
msgid "OK"
msgstr ""

#: associatedialog.cpp:55 mypropertysheet.cpp:151 mypropertysheet.cpp:167
msgid "Browse"
msgstr ""

#: associatedialog.cpp:103
msgid "Provides a space for you to type the path of the file"
msgstr ""

#: associatedialog.cpp:107
msgid "Opens a standard file dialog"
msgstr ""

#: associatedialog.cpp:111
msgid "Provides a space for you to type additional information"
msgstr ""

#: associatedialog.cpp:115
msgid "Closes this dialog without making any changes"
msgstr ""

#: associatedialog.cpp:119
msgid "Selects the file specified"
msgstr ""

#: associatedialog.cpp:141
msgid "|All files (*.*)|*.*"
msgstr ""

#: associatedialog.cpp:144
msgid "Select "
msgstr ""

#: commandpanel.cpp:26 commandpanel.cpp:159
msgid "{path}"
msgstr ""

#: commandpanel.cpp:27 commandpanel.cpp:160
msgid "{name}"
msgstr ""

#: commandpanel.cpp:28 commandpanel.cpp:161
msgid "{extension}"
msgstr ""

#: commandpanel.cpp:29 commandpanel.cpp:158
msgid "{fullpath}"
msgstr ""

#: commandpanel.cpp:49
msgid "&Run"
msgstr ""

#: commandpanel.cpp:57
msgid "&Wait"
msgstr ""

#: commandpanel.cpp:63
msgid "Output options"
msgstr ""

#: commandpanel.cpp:68
msgid "I&gnore"
msgstr ""

#: commandpanel.cpp:74
msgid "I&nsert"
msgstr ""

#: commandpanel.cpp:79
msgid "New &document"
msgstr ""

#: commandpanel.cpp:100
msgid "Variables"
msgstr ""

#: findreplacepanel.cpp:28
msgid "Find:"
msgstr ""

#: findreplacepanel.cpp:29 findreplacepanel.cpp:30
msgid " "
msgstr ""

#: findreplacepanel.cpp:42
msgid "Replace with:"
msgstr ""

#: findreplacepanel.cpp:54
msgid "Find &Next"
msgstr ""

#: findreplacepanel.cpp:61
msgid "&Replace"
msgstr ""

#: findreplacepanel.cpp:68
msgid "Replace &All"
msgstr ""

#: findreplacepanel.cpp:76 globalreplacedialog.cpp:58
msgid "&Match case"
msgstr ""

#: findreplacepanel.cpp:83
msgid "Re&gex"
msgstr ""

#: globalreplacedialog.cpp:30 globalreplacedialog.cpp:111
msgid "Global Find and Replace"
msgstr ""

#: globalreplacedialog.cpp:36
msgid "&Find what: "
msgstr ""

#: globalreplacedialog.cpp:38
msgid "Replace with: "
msgstr ""

#: globalreplacedialog.cpp:54
msgid "&Regex"
msgstr ""

#: globalreplacedialog.cpp:62
msgid "R&eplace in all open documents"
msgstr ""

#: globalreplacedialog.cpp:107
msgid "Cannot compile regular expression '"
msgstr ""

#: globalreplacedialog.cpp:126
msgid "Provides a space for you to type the text you want to find"
msgstr ""

#: globalreplacedialog.cpp:130
msgid ""
"Provides a space for you to type the text you want to replace the text you "
"typed in Find what"
msgstr ""

#: globalreplacedialog.cpp:134
msgid ""
"Finds only text with lowercase and uppercase letters as specified in Find "
"what"
msgstr ""

#: globalreplacedialog.cpp:138
msgid "Extends the scope to all open documents"
msgstr ""

#: globalreplacedialog.cpp:142
msgid "Interprets the text specified in Find what as a regular expression"
msgstr ""

#: globalreplacedialog.cpp:146
msgid ""
"Finds all instances of the text specified in Find what and replaces them "
"with the text in Replace with"
msgstr ""

#: globalreplacedialog.cpp:150
msgid "Closes the dialog box without saving any changes you have made"
msgstr ""

#: mynotebook.cpp:65 xmlcopyeditor.cpp:5226
msgid "Close"
msgstr ""

#: mynotebook.cpp:66
msgid "Close all"
msgstr ""

#: mypropertysheet.cpp:53
msgid "Font"
msgstr ""

#: mypropertysheet.cpp:68
msgid "I&ntelligent backspace/delete"
msgstr ""

#: mypropertysheet.cpp:71
msgid "&Tag completion"
msgstr ""

#: mypropertysheet.cpp:74
msgid "&Folding"
msgstr ""

#: mypropertysheet.cpp:77
msgid "&Highlight current line"
msgstr ""

#: mypropertysheet.cpp:80
msgid "&Indentation guides"
msgstr ""

#: mypropertysheet.cpp:83
msgid "&Always insert closing tag"
msgstr ""

#: mypropertysheet.cpp:86
msgid "Hi&ghlight syntax"
msgstr ""

#: mypropertysheet.cpp:89
msgid "&Line numbers"
msgstr ""

#: mypropertysheet.cpp:92
msgid "L&ock hidden tags"
msgstr ""

#: mypropertysheet.cpp:95
msgid "&White space visible"
msgstr ""

#: mypropertysheet.cpp:98
msgid "&Validate as you type"
msgstr ""

#: mypropertysheet.cpp:101
msgid "Va&riable highlight in tag free view"
msgstr ""

#: mypropertysheet.cpp:141
msgid "Application directory"
msgstr ""

#: mypropertysheet.cpp:157 xmlcopyeditor.cpp:4950 xmlcopyeditor.cpp:5330
#: xmlcopyeditor.cpp:5334
msgid "Browser"
msgstr ""

#: mypropertysheet.cpp:174
msgid "Language (restart required)"
msgstr ""

#: mypropertysheet.cpp:212
msgid "&Enable network access for DTD validation"
msgstr ""

#: mypropertysheet.cpp:215
msgid "E&xpand internal entities on open"
msgstr ""

#: mypropertysheet.cpp:218
msgid "&One application instance only"
msgstr ""

#: mypropertysheet.cpp:221
msgid "Re&member layout on close"
msgstr ""

#: mypropertysheet.cpp:224
msgid "&Remember open tabs on close"
msgstr ""

#: mypropertysheet.cpp:227
msgid "Re&tain undo history on save"
msgstr ""

#: mypropertysheet.cpp:231
msgid "&Save UTF-8 byte order mark"
msgstr ""

#: mypropertysheet.cpp:235
msgid "S&how full path on frame"
msgstr ""

#: mypropertysheet.cpp:240
msgid "&Use Microsoft rebar control (restart required)"
msgstr ""

#: mypropertysheet.cpp:274
msgid "General"
msgstr ""

#: mypropertysheet.cpp:275
msgid "Editor"
msgstr ""

#: mypropertysheet.cpp:301
msgid "Cannot access application directory"
msgstr ""

#: mypropertysheet.cpp:301 xmlcopyeditor.cpp:2314
msgid "Options"
msgstr ""

#: styledialog.cpp:42 xmlcopyeditor.cpp:5337 xmlcopyeditor.cpp:5341
msgid "Spelling and Style"
msgstr ""

#: styledialog.cpp:78
msgid "&Report"
msgstr ""

#: styledialog.cpp:96
msgid "No."
msgstr ""

#: styledialog.cpp:97 styledialog.cpp:99
msgid "Context"
msgstr ""

#: styledialog.cpp:98
msgid "Match"
msgstr ""

#: styledialog.cpp:100
msgid "Suggestion"
msgstr ""

#: styledialog.cpp:101
msgid "Rule"
msgstr ""

#: styledialog.cpp:102
msgid "Action"
msgstr ""

#: styledialog.cpp:110 xmlcopyeditor.cpp:5196
msgid "&Edit"
msgstr ""

#: styledialog.cpp:118
msgid "&Printable report"
msgstr ""

#: styledialog.cpp:126
msgid "Pr&intable summary"
msgstr ""

#: styledialog.cpp:134
msgid "&Change all"
msgstr ""

#: styledialog.cpp:142
msgid "I&gnore all"
msgstr ""

#: styledialog.cpp:150
msgid "C&ancel"
msgstr ""

#: styledialog.cpp:198
msgid "(No rule sets found)"
msgstr ""

#: styledialog.cpp:204 xmlcopyeditor.cpp:620
msgid "(No filter)"
msgstr ""

#: styledialog.cpp:227
msgid "(No filters found)"
msgstr ""

#: styledialog.cpp:271 styledialog.cpp:301 styledialog.cpp:573
#: styledialog.cpp:578
msgid "Ignore"
msgstr ""

#: styledialog.cpp:285
msgid "Ignore once"
msgstr ""

#: styledialog.cpp:287
msgid "Ignore all"
msgstr ""

#: styledialog.cpp:289
msgid "Change once"
msgstr ""

#: styledialog.cpp:290
msgid "Change all"
msgstr ""

#: styledialog.cpp:293
msgid "New suggestion..."
msgstr ""

#: styledialog.cpp:316 styledialog.cpp:349
msgid "Creating report..."
msgstr ""

#: styledialog.cpp:354
msgid "Cannot create report: "
msgstr ""

#: styledialog.cpp:387
#, c-format
msgid "%i match"
msgid_plural "%i matches"
msgstr[0] ""
msgstr[1] ""

#: styledialog.cpp:402
msgid "No items selected"
msgstr ""

#: styledialog.cpp:578 styledialog.cpp:606
msgid "Change"
msgstr ""

#: styledialog.cpp:731
msgid "Enter new suggestion:"
msgstr ""

#: styledialog.cpp:732
msgid "New Suggestion"
msgstr ""

#: xmlcopyeditor.cpp:318 xmlcopyeditor.cpp:1178 xmlcopyeditor.cpp:1272
#: xmlcopyeditor.cpp:1502 xmlcopyeditor.cpp:1527
msgid "XML Copy Editor"
msgstr ""

#: xmlcopyeditor.cpp:334 xmlcopyeditor.cpp:398
msgid "(unknown error)"
msgstr ""

#: xmlcopyeditor.cpp:336
msgid ""
"XML Copy Editor has encountered the following error and needs to close: "
msgstr ""

#: xmlcopyeditor.cpp:343 xmlcopyeditor.cpp:346 xmlcopyeditor.cpp:363
#: xmlcopyeditor.cpp:368 xmlcopyeditor.cpp:407 xmlcopyeditor.cpp:427
#: xmlcopyeditor.cpp:439 xmlcopyeditor.cpp:445 xmlcopyeditor.cpp:474
msgid "Error"
msgstr ""

#: xmlcopyeditor.cpp:362 xmlcopyeditor.cpp:367 xmlcopyeditor.cpp:434
msgid "XML Copy Editor has encountered an error and needs to close."
msgstr ""

#: xmlcopyeditor.cpp:384 xmlcopyeditor.cpp:463
msgid "The operating system has turned down a request for additional memory"
msgstr ""

#: xmlcopyeditor.cpp:385 xmlcopyeditor.cpp:464
msgid "Out of memory"
msgstr ""

#: xmlcopyeditor.cpp:400
msgid "The following error has occurred: "
msgstr ""

#: xmlcopyeditor.cpp:402
msgid ""
".\n"
"\n"
"Select \"Abort\" to exit, \"Retry\" to close this window and \"Ignore\" to "
"continue."
msgstr ""

#: xmlcopyeditor.cpp:618 xmlcopyeditor.cpp:670
msgid "Default dictionary and style"
msgstr ""

#: xmlcopyeditor.cpp:671
msgid "No filter"
msgstr ""

#: xmlcopyeditor.cpp:808 xmlcopyeditor.cpp:816
msgid "Current Element"
msgstr ""

#: xmlcopyeditor.cpp:809 xmlcopyeditor.cpp:815
msgid "Insert Element"
msgstr ""

#: xmlcopyeditor.cpp:810 xmlcopyeditor.cpp:814
msgid "Insert Sibling"
msgstr ""

#: xmlcopyeditor.cpp:811 xmlcopyeditor.cpp:813
msgid "Insert Entity"
msgstr ""

#: xmlcopyeditor.cpp:877
msgid "Cannot open application directory: see Tools, Options..., General"
msgstr ""

#: xmlcopyeditor.cpp:1084
msgid "Unknown command line switch (expecting 'w' or 's')"
msgstr ""

#: xmlcopyeditor.cpp:1093
msgid "Command line processing incomplete: no file specified"
msgstr ""

#: xmlcopyeditor.cpp:1182
msgid "Gerald Schmidt (development) <gnschmidt@users.sourceforge.net>"
msgstr ""

#: xmlcopyeditor.cpp:1183
msgid "Matt Smigielski (testing) <alectrus@users.sourceforge.net>"
msgstr ""

#: xmlcopyeditor.cpp:1184
msgid "Viliam Búr (Slovak) <viliam@bur.sk>"
msgstr ""

#: xmlcopyeditor.cpp:1185
msgid "David Håsäther (Swedish) <hasather@gmail.com>"
msgstr ""

#: xmlcopyeditor.cpp:1186
msgid "François Badier (French) <frabad@gmail.com>"
msgstr ""

#: xmlcopyeditor.cpp:1187
msgid "Thomas Wenzel (German) <thowen@users.sourceforge.net>"
msgstr ""

#: xmlcopyeditor.cpp:1188
msgid "SHiNE CsyFeK (Chinese Simplified) <csyfek@gmail.com>"
msgstr ""

#: xmlcopyeditor.cpp:1189
msgid ""
"HSU PICHAN, YANG SHUFUN, CHENG PAULIAN, CHUANG KUO-PING, Marcus Bingenheimer "
"(Chinese Traditional)"
msgstr ""

#: xmlcopyeditor.cpp:1219
msgid "Parse in progress..."
msgstr ""

#: xmlcopyeditor.cpp:1240
msgid "well-formed"
msgstr ""

#: xmlcopyeditor.cpp:1271
msgid "Do you want to save the changes to "
msgstr ""

#: xmlcopyeditor.cpp:1454 xmlcopyeditor.cpp:1456
msgid "Attributes hidden"
msgstr ""

#: xmlcopyeditor.cpp:1461 xmlcopyeditor.cpp:1463
msgid "Tags hidden"
msgstr ""

#: xmlcopyeditor.cpp:1476 xmlcopyeditor.cpp:1478
msgid "Tags locked"
msgstr ""

#: xmlcopyeditor.cpp:1541 xmlcopyeditor.cpp:1543
msgid "Modified"
msgstr ""

#: xmlcopyeditor.cpp:1576
#, c-format
msgid "Ln %i Col %i"
msgstr ""

#: xmlcopyeditor.cpp:1756
msgid "Cannot open clipboard"
msgstr ""

#: xmlcopyeditor.cpp:1761
msgid "Cannot paste as new document: no text on clipboard"
msgstr ""

#: xmlcopyeditor.cpp:1846 xmlcopyeditor.cpp:2536
#, c-format
msgid "%i replacement made"
msgid_plural "%i replacements made"
msgstr[0] ""
msgstr[1] ""

#: xmlcopyeditor.cpp:1872
msgid "Preparing Print Preview..."
msgstr ""

#: xmlcopyeditor.cpp:1893
msgid "Preparing to print..."
msgstr ""

#: xmlcopyeditor.cpp:1952 xmlcopyeditor.cpp:1972
msgid "Find"
msgstr ""

#: xmlcopyeditor.cpp:1979 xmlcopyeditor.cpp:2010 xmlcopyeditor.cpp:2104
msgid "This functionality requires Microsoft Windows"
msgstr ""

#: xmlcopyeditor.cpp:1985
msgid "Import Microsoft Word Document"
msgstr ""

#: xmlcopyeditor.cpp:2019
#, c-format
msgid "Cannot open %s for import"
msgstr ""

#: xmlcopyeditor.cpp:2029
msgid "Import in progress..."
msgstr ""

#: xmlcopyeditor.cpp:2037
msgid "(lossless conversion requires version 2003 or later)"
msgstr ""

#: xmlcopyeditor.cpp:2044 xmlcopyeditor.cpp:2161
msgid "Cannot start Microsoft Word"
msgstr ""

#: xmlcopyeditor.cpp:2048 xmlcopyeditor.cpp:2165
msgid "A more recent version of Microsoft Word is required"
msgstr ""

#: xmlcopyeditor.cpp:2055
#, c-format
msgid "Microsoft Word cannot save %s as XML"
msgstr ""

#: xmlcopyeditor.cpp:2060
msgid "Microsoft Word cannot save this document as WordprocessingML "
msgstr ""

#: xmlcopyeditor.cpp:2068
msgid "Opening imported file..."
msgstr ""

#: xmlcopyeditor.cpp:2085
msgid "Cannot open imported file"
msgstr ""

#: xmlcopyeditor.cpp:2137
msgid "Export Microsoft Word Document"
msgstr ""

#: xmlcopyeditor.cpp:2154
msgid "Export in progress..."
msgstr ""

#: xmlcopyeditor.cpp:2168
#, c-format
msgid "Microsoft Word cannot save %s"
msgstr ""

#: xmlcopyeditor.cpp:2197
msgid "Cannot save temporary file"
msgstr ""

#: xmlcopyeditor.cpp:2375
msgid "Enter line number:"
msgstr ""

#: xmlcopyeditor.cpp:2376
msgid "Go To"
msgstr ""

#: xmlcopyeditor.cpp:2385
#, c-format
msgid "'%s' is not a valid line number"
msgstr ""

#: xmlcopyeditor.cpp:2414
msgid "Replace"
msgstr ""

#: xmlcopyeditor.cpp:2435
msgid "Find and Replace"
msgstr ""

#: xmlcopyeditor.cpp:2526
msgid "Cannot replace: "
msgstr ""

#: xmlcopyeditor.cpp:2557
msgid "XML document (*.xml)"
msgstr ""

#: xmlcopyeditor.cpp:2598
msgid "Choose a document type:"
msgstr ""

#: xmlcopyeditor.cpp:2598
msgid "New Document"
msgstr ""

#: xmlcopyeditor.cpp:2640
#, c-format
msgid "Document%i"
msgstr ""

#: xmlcopyeditor.cpp:2703
msgid "Open Large Document"
msgstr ""

#: xmlcopyeditor.cpp:2703 xmlcopyeditor.cpp:5311 xmlcopyeditor.cpp:5313
msgid "Open"
msgstr ""

#: xmlcopyeditor.cpp:2729 xmlcopyeditor.cpp:2787
#, c-format
msgid "Cannot open %s"
msgstr ""

#: xmlcopyeditor.cpp:2737 xmlcopyeditor.cpp:3349
#, c-format
msgid "%s is already open"
msgstr ""

#: xmlcopyeditor.cpp:2887
#, c-format
msgid "Cannot open %s: unknown encoding %s"
msgstr ""

#: xmlcopyeditor.cpp:2916
#, c-format
msgid "Cannot open %s: conversion from encoding %s failed"
msgstr ""

#: xmlcopyeditor.cpp:2927
msgid "Creating document view..."
msgstr ""

#: xmlcopyeditor.cpp:3207
msgid "Opening spelling and style check in read-only mode: "
msgstr ""

#: xmlcopyeditor.cpp:3237
msgid "Edited document empty"
msgstr ""

#: xmlcopyeditor.cpp:3334
msgid "Save As"
msgstr ""

#: xmlcopyeditor.cpp:3537 xmlcopyeditor.cpp:3633 xmlcopyeditor.cpp:3723
msgid ""
"Cannot save temporary copy for validation; please save or discard changes"
msgstr ""

#: xmlcopyeditor.cpp:3547
msgid "DTD validation in progress..."
msgstr ""

#: xmlcopyeditor.cpp:3571 xmlcopyeditor.cpp:3666 xmlcopyeditor.cpp:3750
#: xmlcopyeditor.cpp:3786
msgid "valid"
msgstr ""

#: xmlcopyeditor.cpp:3593
msgid "Select RELAX NG grammar"
msgstr ""

#: xmlcopyeditor.cpp:3594 xmlcopyeditor.cpp:3945 xmlcopyeditor.cpp:5654
msgid "Choose a file:"
msgstr ""

#: xmlcopyeditor.cpp:3595
msgid "RELAX NG grammar"
msgstr ""

#: xmlcopyeditor.cpp:3641
msgid "RELAX NG validation in progress..."
msgstr ""

#: xmlcopyeditor.cpp:3743
msgid "Validation in progress..."
msgstr ""

#: xmlcopyeditor.cpp:3753
msgid "MSXML validation failed (version 4.0 or later required)"
msgstr ""

#: xmlcopyeditor.cpp:3763
msgid "Validation error"
msgstr ""

#: xmlcopyeditor.cpp:3832
msgid "Enter XPath:"
msgstr ""

#: xmlcopyeditor.cpp:3833
msgid "Evaluate XPath"
msgstr ""

#: xmlcopyeditor.cpp:3869
msgid "Cannot evaluate XPath"
msgstr ""

#: xmlcopyeditor.cpp:3880
msgid "No matching nodes found"
msgstr ""

#: xmlcopyeditor.cpp:3931
#, c-format
msgid "Cannot open stylesheet %s"
msgstr ""

#: xmlcopyeditor.cpp:3944
msgid "Select stylesheet"
msgstr ""

#: xmlcopyeditor.cpp:3946 xmlcopyeditor.cpp:5627
msgid "XSLT stylesheet"
msgstr ""

#: xmlcopyeditor.cpp:4000
msgid "XSL transformation in progress..."
msgstr ""

#: xmlcopyeditor.cpp:4009
msgid "Cannot transform: "
msgstr ""

#: xmlcopyeditor.cpp:4017
msgid "Output document empty"
msgstr ""

#: xmlcopyeditor.cpp:4047
msgid "Pretty-printing in progress..."
msgstr ""

#: xmlcopyeditor.cpp:4066
msgid "Cannot pretty-print: "
msgstr ""

#: xmlcopyeditor.cpp:4077
msgid "Pretty-print unsuccessful: output document empty"
msgstr ""

#: xmlcopyeditor.cpp:4123
msgid "Choose an encoding:"
msgstr ""

#: xmlcopyeditor.cpp:4123
msgid "Encoding"
msgstr ""

#: xmlcopyeditor.cpp:4150
msgid "Cannot set encoding: "
msgstr ""

#: xmlcopyeditor.cpp:4159
msgid "Cannot set encoding (cannot open temporary file)"
msgstr ""

#: xmlcopyeditor.cpp:4170
msgid "Cannot set encoding (cannot parse temporary file)"
msgstr ""

#: xmlcopyeditor.cpp:4401
msgid ""
"Cannot open in browser: no browser defined (see Tools, Options..., General)"
msgstr ""

#: xmlcopyeditor.cpp:4409
#, c-format
msgid "Cannot open in browser: %s not found (see Tools, Options..., General)"
msgstr ""

#: xmlcopyeditor.cpp:4479
#, c-format
msgid "Cannot find '%s'"
msgstr ""

#: xmlcopyeditor.cpp:4539
msgid ""
"File has been modified by another application.\n"
"Do you want to proceed?"
msgstr ""

#: xmlcopyeditor.cpp:4540
msgid "Confirmation"
msgstr ""

#: xmlcopyeditor.cpp:4605
#, c-format
msgid "Cannot save %s: unknown encoding %s"
msgstr ""

#: xmlcopyeditor.cpp:4639
#, c-format
msgid "Cannot save %s: conversion to encoding %s failed"
msgstr ""

#: xmlcopyeditor.cpp:4714
#, c-format
msgid "Cannot save document in %s: %s (saved in default encoding UTF-8)"
msgstr ""

#: xmlcopyeditor.cpp:4729
#, c-format
msgid "Cannot save %s"
msgstr ""

#: xmlcopyeditor.cpp:4735
#, c-format
msgid "Memory low: %s saved in large document mode"
msgstr ""

#: xmlcopyeditor.cpp:4790
msgid "MB"
msgstr ""

#: xmlcopyeditor.cpp:4795
msgid "kB"
msgstr ""

#: xmlcopyeditor.cpp:4800
msgid "byte"
msgid_plural "bytes"
msgstr[0] ""
msgstr[1] ""

#: xmlcopyeditor.cpp:4808
#, c-format
msgid "%g %s saved"
msgstr ""

#: xmlcopyeditor.cpp:4837
msgid "&Undo\tCtrl+Z"
msgstr ""

#: xmlcopyeditor.cpp:4837
msgid "Undo"
msgstr ""

#: xmlcopyeditor.cpp:4841
msgid "&Redo\tCtrl+Y"
msgstr ""

#: xmlcopyeditor.cpp:4841
msgid "Redo"
msgstr ""

#: xmlcopyeditor.cpp:4845
msgid "&Cut\tCtrl+X"
msgstr ""

#: xmlcopyeditor.cpp:4845
msgid "Cut"
msgstr ""

#: xmlcopyeditor.cpp:4849
msgid "C&opy\tCtrl+C"
msgstr ""

#: xmlcopyeditor.cpp:4849
msgid "Copy"
msgstr ""

#: xmlcopyeditor.cpp:4853
msgid "&Paste\tCtrl+V"
msgstr ""

#: xmlcopyeditor.cpp:4853
msgid "Paste"
msgstr ""

#: xmlcopyeditor.cpp:4860
msgid "P&aste As New Document"
msgstr ""

#: xmlcopyeditor.cpp:4861
msgid "Paste As New Document"
msgstr ""

#: xmlcopyeditor.cpp:4865
msgid "&Find...\tCtrl+F"
msgstr ""

#: xmlcopyeditor.cpp:4865
msgid "Find..."
msgstr ""

#: xmlcopyeditor.cpp:4869
msgid "F&ind Again\tF3"
msgstr ""

#: xmlcopyeditor.cpp:4869
msgid "Find Again"
msgstr ""

#: xmlcopyeditor.cpp:4873
msgid "&Replace...\tCtrl+R"
msgstr ""

#: xmlcopyeditor.cpp:4873
msgid "Replace..."
msgstr ""

#: xmlcopyeditor.cpp:4880
msgid "&Global Replace...\tCtrl+Shift+R"
msgstr ""

#: xmlcopyeditor.cpp:4881
msgid "Global Replace..."
msgstr ""

#: xmlcopyeditor.cpp:4885
msgid "G&o To...\tCtrl+G"
msgstr ""

#: xmlcopyeditor.cpp:4885
msgid "Go To..."
msgstr ""

#: xmlcopyeditor.cpp:4906
msgid "Increase\tCtrl+U"
msgstr ""

#: xmlcopyeditor.cpp:4906
msgid "Increase"
msgstr ""

#: xmlcopyeditor.cpp:4908
msgid "Decrease\tCtrl+D"
msgstr ""

#: xmlcopyeditor.cpp:4908
msgid "Decrease"
msgstr ""

#: xmlcopyeditor.cpp:4910
msgid "Normal\tCtrl+0"
msgstr ""

#: xmlcopyeditor.cpp:4910
msgid "Normal"
msgstr ""

#: xmlcopyeditor.cpp:4915
msgid "&Default"
msgstr ""

#: xmlcopyeditor.cpp:4915
msgid "Default"
msgstr ""

#: xmlcopyeditor.cpp:4918
msgid "&Blue background, white text"
msgstr ""

#: xmlcopyeditor.cpp:4919
msgid "Blue background, white text"
msgstr ""

#: xmlcopyeditor.cpp:4922
msgid "&Light"
msgstr ""

#: xmlcopyeditor.cpp:4923
msgid "Light"
msgstr ""

#: xmlcopyeditor.cpp:4926
msgid "&None"
msgstr ""

#: xmlcopyeditor.cpp:4927
msgid "None"
msgstr ""

#: xmlcopyeditor.cpp:4948
msgid "&Previous Document\tCtrl+PgUp"
msgstr ""

#: xmlcopyeditor.cpp:4948
msgid "Previous Document"
msgstr ""

#: xmlcopyeditor.cpp:4949
msgid "&Next Document\tCtrl+PgDn"
msgstr ""

#: xmlcopyeditor.cpp:4949
msgid "Next Document"
msgstr ""

#: xmlcopyeditor.cpp:4950
msgid "&Browser\tCtrl+B"
msgstr ""

#: xmlcopyeditor.cpp:4954
msgid "&Show Tags and Attributes\tCtrl+T"
msgstr ""

#: xmlcopyeditor.cpp:4954
msgid "Show Tags and Attributes"
msgstr ""

#: xmlcopyeditor.cpp:4957
msgid "&Hide Attributes Only\tCtrl+Shift+A"
msgstr ""

#: xmlcopyeditor.cpp:4957
msgid "Hide Attributes Only"
msgstr ""

#: xmlcopyeditor.cpp:4960
msgid "H&ide Tags and Attributes\tCtrl+Shift+T"
msgstr ""

#: xmlcopyeditor.cpp:4960
msgid "Hide Tags and Attributes"
msgstr ""

#: xmlcopyeditor.cpp:4979
msgid "&Toggle Fold"
msgstr ""

#: xmlcopyeditor.cpp:4979
msgid "Toggle Fold"
msgstr ""

#: xmlcopyeditor.cpp:4981
msgid "&Fold Tags\tCtrl+Shift+F"
msgstr ""

#: xmlcopyeditor.cpp:4981
msgid "Fold Tags"
msgstr ""

#: xmlcopyeditor.cpp:4983
msgid "&Unfold Tags\tCtrl+Shift+U"
msgstr ""

#: xmlcopyeditor.cpp:4986
msgid "&Wrap Words\tCtrl+W"
msgstr ""

#: xmlcopyeditor.cpp:4988
msgid "&Color Scheme"
msgstr ""

#: xmlcopyeditor.cpp:4989
msgid "&Text Size"
msgstr ""

#: xmlcopyeditor.cpp:4994
msgid "S&how Current Element Pane"
msgstr ""

#: xmlcopyeditor.cpp:4995
msgid "Show Current ElementPane"
msgstr ""

#: xmlcopyeditor.cpp:4998
msgid "Sh&ow Toolbar"
msgstr ""

#: xmlcopyeditor.cpp:4998
msgid "Show Toolbar"
msgstr ""

#: xmlcopyeditor.cpp:5001
msgid "C&lose Message Pane\tAlt+C"
msgstr ""

#: xmlcopyeditor.cpp:5001
msgid "Close Message Pane"
msgstr ""

#: xmlcopyeditor.cpp:5005
msgid "&Element...\tCtrl+I"
msgstr ""

#: xmlcopyeditor.cpp:5005
msgid "Element..."
msgstr ""

#: xmlcopyeditor.cpp:5006
msgid "&Sibling...\tCtrl+Shift+I"
msgstr ""

#: xmlcopyeditor.cpp:5006
msgid "Sibling..."
msgstr ""

#: xmlcopyeditor.cpp:5007
msgid "&Entity...\tCtrl+E"
msgstr ""

#: xmlcopyeditor.cpp:5007
msgid "Entity..."
msgstr ""

#: xmlcopyeditor.cpp:5009
msgid "&Twin\tCtrl+Enter"
msgstr ""

#: xmlcopyeditor.cpp:5009
msgid "Twin"
msgstr ""

#: xmlcopyeditor.cpp:5011
msgid "S&ymbol..."
msgstr ""

#: xmlcopyeditor.cpp:5011
msgid "Symbol..."
msgstr ""

#: xmlcopyeditor.cpp:5015
msgid "&DTD\tF4"
msgstr ""

#: xmlcopyeditor.cpp:5015
msgid "DTD"
msgstr ""

#: xmlcopyeditor.cpp:5017
msgid "&XML Schema\tF5"
msgstr ""

#: xmlcopyeditor.cpp:5017 xmlcopyeditor.cpp:5621
msgid "XML Schema"
msgstr ""

#: xmlcopyeditor.cpp:5020
msgid "&RELAX NG...\tF6"
msgstr ""

#: xmlcopyeditor.cpp:5020
msgid "RELAX NG..."
msgstr ""

#: xmlcopyeditor.cpp:5023
msgid "&Public DTD..."
msgstr ""

#: xmlcopyeditor.cpp:5023
msgid "Public DTD..."
msgstr ""

#: xmlcopyeditor.cpp:5024
msgid "&System DTD..."
msgstr ""

#: xmlcopyeditor.cpp:5024
msgid "System DTD..."
msgstr ""

#: xmlcopyeditor.cpp:5025
msgid "&XML Schema..."
msgstr ""

#: xmlcopyeditor.cpp:5025
msgid "XML Schema..."
msgstr ""

#: xmlcopyeditor.cpp:5026
msgid "XS&LT stylesheet..."
msgstr ""

#: xmlcopyeditor.cpp:5026
msgid "XSLT stylesheet..."
msgstr ""

#: xmlcopyeditor.cpp:5041 xmlcopyeditor.cpp:5052
#, c-format
msgid "\tCtrl+%i"
msgstr ""

#: xmlcopyeditor.cpp:5061
msgid "&XSL Transform...\tF8"
msgstr ""

#: xmlcopyeditor.cpp:5062
msgid "XSL Transform..."
msgstr ""

#: xmlcopyeditor.cpp:5066
msgid "&DocBook to HTML\tAlt+1"
msgstr ""

#: xmlcopyeditor.cpp:5066
msgid "DocBook to HTML"
msgstr ""

#: xmlcopyeditor.cpp:5069
msgid "&DocBook to XHTML\tAlt+2"
msgstr ""

#: xmlcopyeditor.cpp:5069
msgid "DocBook to XHTML"
msgstr ""

#: xmlcopyeditor.cpp:5072
msgid "D&ocBook to XSL-FO\tAlt+3"
msgstr ""

#: xmlcopyeditor.cpp:5072
msgid "DocBook to XSL-FO"
msgstr ""

#: xmlcopyeditor.cpp:5075
msgid "&TEI to HTML\tAlt+4"
msgstr ""

#: xmlcopyeditor.cpp:5075
msgid "TEI to HTML"
msgstr ""

#: xmlcopyeditor.cpp:5078
msgid "T&EI to LaTeX\tAlt+5"
msgstr ""

#: xmlcopyeditor.cpp:5078
msgid "TEI to LaTeX"
msgstr ""

#: xmlcopyeditor.cpp:5081
msgid "TE&I to XHTML\tAlt+6"
msgstr ""

#: xmlcopyeditor.cpp:5081
msgid "TEI to XHTML"
msgstr ""

#: xmlcopyeditor.cpp:5084
msgid "TEI to &XSL-FO\tAlt+7"
msgstr ""

#: xmlcopyeditor.cpp:5084
msgid "TEI to XSL-FO"
msgstr ""

#: xmlcopyeditor.cpp:5090
msgid "&Check Well-formedness\tF2"
msgstr ""

#: xmlcopyeditor.cpp:5090
msgid "Check Well-formedness"
msgstr ""

#: xmlcopyeditor.cpp:5093
msgid "&Validate"
msgstr ""

#: xmlcopyeditor.cpp:5098
msgid "&Associate"
msgstr ""

#: xmlcopyeditor.cpp:5101
msgid "&XSLT"
msgstr ""

#: xmlcopyeditor.cpp:5104
msgid "&Evaluate XPath...\tF9"
msgstr ""

#: xmlcopyeditor.cpp:5105
msgid "Evaluate XPath..."
msgstr ""

#: xmlcopyeditor.cpp:5110
msgid "&Pretty-print\tF11"
msgstr ""

#: xmlcopyeditor.cpp:5110
msgid "Pretty-print"
msgstr ""

#: xmlcopyeditor.cpp:5114
msgid "&Lock Tags\tCtrl+L"
msgstr ""

#: xmlcopyeditor.cpp:5115 xmlcopyeditor.cpp:5345 xmlcopyeditor.cpp:5348
msgid "Lock Tags"
msgstr ""

#: xmlcopyeditor.cpp:5120
msgid "E&ncoding..."
msgstr ""

#: xmlcopyeditor.cpp:5120
msgid "Encoding..."
msgstr ""

#: xmlcopyeditor.cpp:5129
msgid "&Spelling and Style...\tF7"
msgstr ""

#: xmlcopyeditor.cpp:5130
msgid "Spelling and Style..."
msgstr ""

#: xmlcopyeditor.cpp:5137
msgid "&Word Count"
msgstr ""

#: xmlcopyeditor.cpp:5138
msgid "Word Count"
msgstr ""

#: xmlcopyeditor.cpp:5145
msgid "&Command\tCtrl+Alt+C"
msgstr ""

#: xmlcopyeditor.cpp:5146
msgid "Command"
msgstr ""

#: xmlcopyeditor.cpp:5153
msgid "&Options..."
msgstr ""

#: xmlcopyeditor.cpp:5154
msgid "Options..."
msgstr ""

#: xmlcopyeditor.cpp:5169
msgid "&XML Copy Editor Help\tF1"
msgstr ""

#: xmlcopyeditor.cpp:5169
msgid "Help"
msgstr ""

#: xmlcopyeditor.cpp:5173
msgid "&Home Page"
msgstr ""

#: xmlcopyeditor.cpp:5173
msgid "Home Page"
msgstr ""

#: xmlcopyeditor.cpp:5176
msgid "&Forum"
msgstr ""

#: xmlcopyeditor.cpp:5176
msgid "Forum"
msgstr ""

#: xmlcopyeditor.cpp:5180
msgid "&About XML Copy Editor"
msgstr ""

#: xmlcopyeditor.cpp:5180
msgid "About"
msgstr ""

#: xmlcopyeditor.cpp:5184
msgid "&Download Source"
msgstr ""

#: xmlcopyeditor.cpp:5184
msgid "Download Source"
msgstr ""

#: xmlcopyeditor.cpp:5195
msgid "&File"
msgstr ""

#: xmlcopyeditor.cpp:5197
msgid "&View"
msgstr ""

#: xmlcopyeditor.cpp:5198
msgid "&Insert"
msgstr ""

#: xmlcopyeditor.cpp:5199
msgid "&XML"
msgstr ""

#: xmlcopyeditor.cpp:5200
msgid "&Tools"
msgstr ""

#: xmlcopyeditor.cpp:5201
msgid "&Help"
msgstr ""

#: xmlcopyeditor.cpp:5216
msgid "&New...\tCtrl+N"
msgstr ""

#: xmlcopyeditor.cpp:5216
msgid "New..."
msgstr ""

#: xmlcopyeditor.cpp:5219
msgid "&Open...\tCtrl+O"
msgstr ""

#: xmlcopyeditor.cpp:5219
msgid "Open..."
msgstr ""

#: xmlcopyeditor.cpp:5223
msgid "O&pen Large Document...\tCtrl+Shift+O"
msgstr ""

#: xmlcopyeditor.cpp:5223
msgid "Open Large Document..."
msgstr ""

#: xmlcopyeditor.cpp:5226
msgid "&Close\tCtrl+F4"
msgstr ""

#: xmlcopyeditor.cpp:5229
msgid "C&lose All"
msgstr ""

#: xmlcopyeditor.cpp:5229
msgid "Close All"
msgstr ""

#: xmlcopyeditor.cpp:5232
msgid "&Save\tCtrl+S"
msgstr ""

#: xmlcopyeditor.cpp:5232 xmlcopyeditor.cpp:5316 xmlcopyeditor.cpp:5320
msgid "Save"
msgstr ""

#: xmlcopyeditor.cpp:5236
msgid "S&ave As...\tF12"
msgstr ""

#: xmlcopyeditor.cpp:5236
msgid "Save As..."
msgstr ""

#: xmlcopyeditor.cpp:5239
msgid "&Revert"
msgstr ""

#: xmlcopyeditor.cpp:5239
msgid "Revert"
msgstr ""

#: xmlcopyeditor.cpp:5242
msgid "Pa&ge Setup..."
msgstr ""

#: xmlcopyeditor.cpp:5242
msgid "Page Setup..."
msgstr ""

#: xmlcopyeditor.cpp:5245
msgid "P&rint Preview..."
msgstr ""

#: xmlcopyeditor.cpp:5245
msgid "Print Preview..."
msgstr ""

#: xmlcopyeditor.cpp:5248
msgid "Pr&int...\tCtrl+P"
msgstr ""

#: xmlcopyeditor.cpp:5248
msgid "Print..."
msgstr ""

#: xmlcopyeditor.cpp:5252
msgid "I&mport Microsoft Word Document..."
msgstr ""

#: xmlcopyeditor.cpp:5256
msgid "&Export Microsoft Word Document..."
msgstr ""

#: xmlcopyeditor.cpp:5260
msgid "E&xit"
msgstr ""

#: xmlcopyeditor.cpp:5260
msgid "Exit"
msgstr ""

#: xmlcopyeditor.cpp:5306 xmlcopyeditor.cpp:5308
msgid "New"
msgstr ""

#: xmlcopyeditor.cpp:5323 xmlcopyeditor.cpp:5327
msgid "Print"
msgstr ""

#: xmlcopyeditor.cpp:5396
msgid "Information"
msgstr ""

#: xmlcopyeditor.cpp:5399
msgid "Warning"
msgstr ""

#: xmlcopyeditor.cpp:5402
msgid "Stopped"
msgstr ""

#: xmlcopyeditor.cpp:5405
msgid "Question"
msgstr ""

#: xmlcopyeditor.cpp:5408
msgid "Message"
msgstr ""

#: xmlcopyeditor.cpp:5464
#, c-format
msgid "%s is %s"
msgstr ""

#: xmlcopyeditor.cpp:5489
msgid "Document has been modified: save or discard changes"
msgstr ""

#: xmlcopyeditor.cpp:5550
msgid "Encoding should be one of "
msgstr ""

#: xmlcopyeditor.cpp:5609
msgid "Public DTD"
msgstr ""

#: xmlcopyeditor.cpp:5615
msgid "System DTD"
msgstr ""

#: xmlcopyeditor.cpp:5645
#, c-format
msgid "Cannot associate %s: %s"
msgstr ""

#: xmlcopyeditor.cpp:5653
#, c-format
msgid "Associate %s"
msgstr ""

#: xmlcopyeditor.cpp:5661
msgid "Choose a public identifier:"
msgstr ""

#: xmlcopyeditor.cpp:5808
#, c-format
msgid "Cannot count words: %s"
msgstr ""

#: xmlcopyeditor.cpp:5816
#, c-format
msgid "%s contains %i word"
msgid_plural "%s contains %i words"
msgstr[0] ""
msgstr[1] ""

#: xmlctrl.cpp:207 xmlctrl.cpp:342
msgid "Delete tag?"
msgstr ""

#: xmlctrl.cpp:208 xmlctrl.cpp:239 xmlctrl.cpp:343 xmlctrl.cpp:374
msgid "Tags Locked"
msgstr ""

#: xmlctrl.cpp:238 xmlctrl.cpp:373
msgid "Delete entity reference?"
msgstr ""