[go: up one dir, main page]

Menu

[r767]: / openxp-e.rq  Maximize  Restore  History

Download this file

4184 lines (3995 with data), 106.8 kB

   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
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
K OpenXP v5.0.xx resource file
K English
K (c) '93-99 Peter Mandrella
K (c) '00-19 OpenXP Team
# Online Help File, Key Macros
1 OPENXP-E.HLP
2 keys-e.cfg
5 Changing language ...
# file version
6 13
# --- Menus -----------------------------------------------------------
# Main menu hot keys: Messages, Others, AutoSend
7 XRMNFDCT?
8 XRMNFDCT?
9 XR¨¨¨DCT?
+ 10
# Achtung: Das erste Wort in den folgen Zeilen (Main, XPoint, Nachricht etc.)
# darf *nicht* übersetzt werden. Es wird von OpenXP nur intern verwendet
# und nicht angezeigt.
0 Main,001Open^XP¨1,002^Re-Org¨7,003^Message¨3,004^Netcall¨15,005^Fido¨31,006E^dit¨16,007^Config¨6,008^Tools¨2,009^41
1 XPoint,011I^nformation,012^Import¨10,013^Export¨36,014^Statistics¨17,015^Terminal,016S^hell F9,-,018^Quit
2 Zusatz,021^Calendar,022^Archive Viewer
3 Nachricht,031^Search¨5,032E^xport¨12,033^Unsent¨4,034^All¨14,035^Change¨22,036Ac^tion¨21,-,038Area ^Manager¨19,039F^ileserver¨20,03aP^GP¨40,03b^Direct
4 Unversandt,041^Edit,042^Change,043^Delete,044^Statistics,045S^how
5 Suchen,051^Text,052^Subject,053^User @U,054S^pecial,055M^arked(for reply),056^Marked,057U^nmark,058Message^ID
6 Config,061^Options¨28,062E^xternal¨24,063^Paths,064^Display¨9,065^Modem,066P^rinter,067^Keys¨23,068^Tools Menu,069^Save
7 Wartung,071^Messages,072^Pack,073^Newsgroups,074^Users,075^Address book,076^Dupekill,-,078^Change Server,079Mi^sc¨33
8 Schablonen,081!^Header (Pub),082!Header (^Priv),-,083!Quote (P^ub),084!Quote (Pu^b > Priv),085!Quote (Pri^v),086!^QuoteTo (other area),087!^Forward,088!^Repost,-,08a!^Signature (Pub),08b!Signature (Pr^iv),08c!R^eceipt req.,08d!^Cancel,08e!^Others
9 Anzeige,091^Colors,092^Newsgroups,093^Messages,094^Header,095^Lines,096M^isc,098^Accessibility
10 Import,0a1Read Zerberus ^Puffer,0a2Read ^other format,0a3^User list,0a4^Newsgroup list
11
# Dummy for XPME:
12 Extrakt,0c1^Message,0c2^UUdecode,0c7M^IME-Decode,0c3^Newsgroup,0c4^Reference tree,0c5Mar^ked,0c6!^As.. w/o Header¨13
13 Als,0d1with^out Header,0d2^with Header,0d3^Puffer,0d4^Quote
14 Alle,0e1^Hold,0e2^Delete,0e3^Mark,0e4^Normal,0e5^Read,0e6U^nread,0e7^Kill,0e8^Print
15 Netcall,0f1^Single,0f2^All,0f3^Last calls,0f4^Time,0f5^Relogin,0f6^Online,-,0f8S^pecial,0f9Sp^ecial List,-,0fbA^utomatic,0fcT^iming list
16 Edit,101^Templates¨8,102^Servers,103^Groups,104S^Ystems,105S^hort names,106^AutoSend,108^Viewer,107T^ext @E
17 Status,111^Memory,112M^essagebase,113^Database,-,115^Groups,116S^Ystems,117^Newsgroups,-,119^Phone charges¨26
18
#18 Modem,121COM^1,122COM^2,123COM^3,124COM^4,125ISDN
19 MAPS,131^Subscribe,132^Unsubscribe,133^Get list,134^Others,-,136^Import list,137Read ^file
20 Fileserver,141^Request,142^Send,143^List¨27,144^Help,145^Transfer,146S^ervice
21 Weiter,151^Copy,152^Original,153^Forward,154^Quote,-,156C^onfirmation,157Ca^ncel,158^Supersede,159^Repost @R,15a^Archive @A,15bUser-^PM @P
22 Ändern,161^Subject,162^Receive date,163R^ot13,164^Text,165T^ype,166r^ead,167^Highlight
23 FKeys,171^Shift-Fx,172^Ctrl-Fx,173^Alt-Fx,174^Macros
24 Extern,181^Lister,182^Editor,183^Shell,184Un^packer,185pm^Crypt,186P^GP
25
26 Gebühren,1a1^All,1a2^Single
27 Liste,1b1^Request,1b2read ^message,1b3read ^file
28 Optionen,1c1^Miscellaneous,1c2^User interface,1c3Me^ssage Reader,1cdEd^itor,1ce^Viewer,1c4M^essages,1ccA^ddresses,1c5^Networks¨37,-,1c6Net^call,1c7P^hone fees¨39,1cb^Terminal,-,1c9^Password,1caL^anguage
29 Brettindex,1d1^Rebuild,1d2^Alphabetic
30 Nodelist,1e1^Config,1e2^Update,1e3Sh^rink,1e4Rebuild ^Index,-,1e6S^tatistics,1e7^Search,1e8^Find @N
31 Fido,1f1^Request,1f2^File lists¨32,1f3File ^Areas¨38,1f4^Crash,1f5^Nodelists¨30,1f6^Options
32 Fidoliste,201^Read,202^Delete,203^Search
33 Sonstiges,211Re-link ^References,212Read ^MsgIDs,213^Test Messagebase,214Read ^dates,215Newsgrp ^index..¨29
34 Pointlist,221^Activate,222^Read diff
35
36 Export,241^User list,242^Newsgroup list,243^Message list,244^Screenshot @I
37 Netze,251^Miscellaneous,252^PM limits
38 Filescan,261^Subscribe,262^Unsubscribe,263^Get list,264^Import list,265Import ^File,266^Others
39 Tarifzonen,271^Zones,272^Fees,273^Holidays,274^Misc
40 PGP,281^Request key,282^Import key,283^Decode message,284^Test signature,-,286^Edit key,287^Remove UserID
41 ?,291^Current F1,292^Previous Topic @F1,-,293Help Con^tents 2*F1,294^Help on Help,-,295OpenXP ^Usage,296Current ^Macros F6,-,298^About OpenXP
#42
#42 Spezial,2a1^PGP Encryption,2a2XP and ^Mailing lists,2a3Net type ^RFC/Client,2a4XP as ^Windows Mailer
# Tools Menu
100 021^Calendar
101 022^Archive Viewer
# special menu choices
200 $069,$097,$0b1,$11a,$1ca,$125
+ 11
1 Error
2 Attention!
# Length of Week days:
3 9
4 Monday Tuesday WednesdayThursday Friday Saturday Sunday
# internal newsgroups
5 Statistics
6 Unsent
7 Netcall
# Yes/No
8 YN
9 MoTuWeThFrSaSu
10 January
11 February
12 March
13 April
14 May
15 June
16 July
17 August
18 September
19 October
20 November
21 December
# Lister
22 Help
23 Search for:~
24 Searching...
25 * not found *
26 Copied:
-
12 Press any key ...
13 ~Bytes
14 KBytes
# --- Keys in main window ---
+ 20
0 mark
# Newsgroups, Users, Newsgroups/Special, Users/Special
1 ^All ^Write T^ext B^in ^Special See^k S^how:
2 ^All S^ort ^Write T^ext B^inary ^Special See^k Address-^book ^PW
3 Ne^w De^lete ^Edit ^Join M^ove ~Split ^Access ^Special
4 ^All S^ort Ne^w CarbonCop^y De^l ^Edit ^Spec. Addr.-^book ^PW
# Messages, User messages, marked messages
5 ^All ^Hold De^lete ^Kill R^eference Repl^y ^PM ^User ^Info ^Other
6 ^All ^Hold De^lete ^Kill R^eference ^PM ^Info ^Other
7 ^Hold De^lete ^Kill Repl^y ^PM ^Info ^Sender ^Other
8 ^Address ^Hold De^lete ^Kill Repl^y ^PM ^Info ^Other
9 confirm
10 ^All
11 unsubscribe
12 subscribe
13 E^xtract
14 show
15 Create newsgroups
16 Start netcall immediately
# AutoSend
17 Acti^ve ^Add C^opy De^lete ^Edit ^FileEdit ^Info ^Send
18 ~Time
19 Start netcall
20 Start call
# Fileserver
21 order
22 See^k
# Newsgroup list
23 ^Search
+ 22
# Keys in Newsgroup window:
# Special Mode, All Newsgroups, Add newsgroup, Add from MAPS list, Delete,
# Edit, Join, Split line, Move newsgroups, Read mode, Write message,
# Send binary file, Send text file, Mark group, unmark, Auto advance,
# record no, Access, Crossposting
1 S A W ^W L E J ^S O H w I E ^G ^E ^W ^R A W
# Keys in User window:
# Special Mode, Address book switch, Add user, Add Verteiler, Delete user,
# Edit user, Join, Write message, Send binary file, Send text file,
# Address book entry, Password, Unmark users, Auto advance, Search,
# Crossposting
2 S A W Y L E J w I E B P ^E ^W K W O
# Keys in Message window:
# Special menu, Rot13, HexDump, Info window, Original header, Hold, Delete,
# Kill, UserEdit, Wiedervorlage, Entmarkieren, User window, Send text file,
# Send binary file, Seek reference, Fido - switch display, Address display
# in reference tree, Show address (marked messages), Auto Advance, Show Date
# Print, Show Realnames, Reference tree, unsent <-> all, Reply, Quote reply,
# multiquote reply, PM, Quote PM, Multiquote PM, Edit password, indirect quote
# MessageID-Request
3 O ^X ^H I ^O H L K ^U V ^E U ^F ^I E ^A A S ^W ^D ^T ^N # A y ^R B p ^P P ^S ^Q +
# Keys in AutoSend window
# New entry, Edit, Delete, Active, TextEdit, File info, Send, Copy
4 A E L V F I S O
# Lister keys
# Print, write to file, flag message "deleted" and leave lister,
# flag message "deleted", flag message "hold", *higlight* color switch,
# URL->Clipboard
5 D W L ^L H F C
+ 23
# Message window, menu "other"
2 ^EditUser ^U,^Rot13 ^X,^Hex Dump ^H,^Date ^D,^Print ^T,^Mark,M^ark(for reply) V,^Text file ^F,B^inary file ^I,indir.^Quote ^Q
3 ,^Seek user @U,See^k Subj. @B
-
# --- XP1, XPKEYS -----------------------------------------------------
100 Help
101 Macros
102 File I/O Error
103 Edit template
# Extract as..
+ 104
1 0c6!^As..~~~~~~
# Länge der Teilstrings:
2 10
3 w/o Header with Head Puffer Quote
-
105 Working, please wait ...
106 File name:~
107 ~^Yes , ^No~
+ 108
0 All
1 Z-Netz
2 None
3 PMs
-
113 Type EXIT to return to OpenXP.
115 Error while executing program.
116 DOS shell is not possible right now.
# XP1O
117 ~already exists.
118 ~^Append , ^Overwrite , ^Cancel~
119 Printing...
120 Write text to file
121 Message has been flagged 'deleted'.
122 Message has been flagged 'hold'.
123 Error %s while copying %s
# XP1O2
124 Printer not ready!
125 ~^Repeat , ^Cancel~
126 %s - making index
# position of "%" must be kept:
127 working ... %
128 Packing %s
129 converting %s
130 Loading file ...
131 Flushing Smartdrive cache ...
+ 132
1 Template for new public messages
2 Template for new private messages
3 Quote template for public messages
4 Quote template for private replies to public messages
5 Quote template for private replies
6 Template for /Message/Action/Quote
7 Template for /Message/Action/Forward
8 Template for /Message/Action/Repost
10 Signature for public messages
11 Signature for private messages
12 Signature for automatic receipt
13 Signature for /Message/Action/Cancel
14
-
133 Menu
134 %s is being copied
# XP1O
135 waiting for end of external viewer ...
136 List of marked messages active -> search function disabled!
# XPKEYS
150 No files in AUTOEXEC directory
151 $ASK-Parameter:
# XP1
160 Interrupt process
+ 161
1 A internal databse error has occured. If the error occurs again ~
2 after restarting OpenXP, probaby a message database file has been~
3 damaged. Then first delete the index files (DEL *.IX1). If that ~
4 doesn't help, read the hints in the manual. ~
-
# --- XP2, XP2F, XP2C -------------------------------------------------
200 Color Setup
+ 201
0 ^Main menu,^1st menu level,^2nd menu level,^3rd menu level,^F-Keys,M^iscellaneous,^User/Newsgr.,Messa^ges,Message ^window,^Dialog window,Selection 1,Selection 2,^Buttons,Uti^lities,Hel^p,Reade^r,^Editor,uu^cico/Mailer,»Defaul^,»^Save«,»^OK«
1 ^Text,^Keys,^Bar,^Selected key,^Inactive
2 ^Text,^Keys,^Bar,^Selected key,^Inactive,I^nactive+selected
3 ^Text,^Keys,^Bar,^Selected key,^Inactive,I^nactive+selected
4 ^Text,^Keys,^Bar,^Selected key,^Inactive,I^nactive+selected
5 ^Key,Te^xt,^Active key,Active ^Text
6 ^Split lines,S^tatus line ArcViewer,subscribed ^newsgroups
7 ^Text,^Selected,^Marked,S^plit line
8 ^Text,^Marked,^Selected,^Info line,^Highlighted,S^elected+highlighted,Priority ^1 (highest),Priority ^2 (high),Priority ^4 (low),Priority ^5 (lowest)
9 ^Text,^Border,^Highlighted
10 ^Text,^Border,^Highlighted,^Input field,^Marked input field,^Arrows,^Selection list,S^election Bar,B^utton
11 ^Text,^Border,^Highlighted,B^ar
12 ^Text,^Border,^Highlighted,B^ar
13 ^Text,^Hotkey,^Arrows
14 ^Text,^Highlighted,^Inverse
15 ^Text,^Highlighted,^Reference,^Selected Reference
16 ^Message Header,H^eader highlight,^Text,^Selection bar,Marked ^Line,Marked ^Word,St^atus line,Sc^roller,^highlighted,^Quote,H^ighlited quote,S^ignatur
17 ^Head,^Status line,^Text,^Quote,^Marked,^End marker,M^enu,Me^nu keys,Menu ^Bar,^selected key
18 ^Text,^Data,^Status line
19 Level ^1,Level ^2,Level ^3,Level ^4,Level ^5,Level ^6,Level ^7,Level ^8,Level ^9
-
+ 202
1 Syntax: openxp [/Opt1 /Opt2 ...]
2
3 Options:
4 ~ /nb disable "About" dialogue at startup
5
6 ~ /q no audio alerts (quiet)
7 ~ /ss start screen saver at once
8 ~ /nolock no check for multiple instances
9 ~ /dl:... enable debug logs (debuglog.txt). Parameters adjust
10 ~ verbosity ("/dl:default=10").
11
12 ~ /k:X send key X (for key macro)
13 ~ /pw:xx enter start password xx
14 ~ /z:nn set nn screen lines
15 ~ /l:X set language (e.g. /l:E for English)
16
17 ~ /tcptimeout:nnnn TCP timeout in seconds (1..3600, Default:10)
18 ~ /ipv4 always use IPv4, regardless of server config
19 ~ /ipv6 always use IPv6, regardless of server config
20 ~ /n:Server[:hh:mm] start netcall to Server
21 ~ /n:* netcall to all Servers
22 ~ /nr:Server relogin netcall to Server
23 ~ /user:Server:NAME set user name at Server to NAME
24 ~ /ips:Server:PUFFER import and send puffer file
25 ~ /autostart:... start program by time range
26
27 ~ /av:<File> view archive file in archive viewer
28
29 ~ /nocryptpwd disables password encryption in config file
30 ~ /maxablagen:nnn maximum number of messagebase files
31 ~ where nnn is the number of messagebase
32 ~ files (20 - 250).
33 ~ WARNING: Do NOT use this parameter unless
34 ~ you fully understand the implications.
35
36 ~ /ip:PUF import puffer file
37 ~ /ipe:PUF import puffer file with receive date = creation date
38 ~ /g sets /ip and /ips messages to status 'read'
39 ~ /eb return receipts (for /ip..)
40 ~ /r start messagebase reorganisation
41 ~ /pack execute /Reorg/Pack
42 ~ /t:n start timing list no. n
43
44 ~ /x quit program
-
203 Error: Can't create directory %s !
204 Error in group file (GRUPPEN.DB1)!
205 Error: Not enough disk space on drive %s !
+ 206
1 WARNING!
2 There are only %s MB disk space left on
3 drive %s !
-
207 User defined nodelist %s not found!
210 Not enough disk space!
+ 211
0 WARNING!
1 ~^stop , ^rebuild~
# The Windows width must be kept, the number of lines may vary:
2 The file USER.EB1 is missing! This file contains all
3 user password definitions and forward addresses.
4 Do you want to stop OpenXP in order to recover the file
5 manually - e.g. from a backup -, or shall OpenXP rebuild
6 the file (which will result in losing all passwords and
7 forward addresses)?
-
212 Program stopped.
213 illegal color configuration: ~
+ 214
1 OpenXP - Configuration file
2 User setup
3 miscellaneous
4 Z-Netz (German version only)
5 MausNet (German version only)
6 RFC/UUCP
7 Fido
8 F-Keys
9 Modem setup
10 Terminal
-
216 internal configuration
217 Saving settings ...
218 illegal F-Key config line: ~
# Max len of line 219: 32 chars!
219 illegal configuration line: ~
220 Font file not found or invalid: %s
+ 221
1 (dummy)
+ 222
0 --- -----------------
1 EMP To
2 ABS From
3 BET Subject
4 EDA Date
5 ROT (Path)
6 MID (Message ID)
7 LEN Size
8 BEZ (Reference ID)
9 MAILER (Software)
10 FILE (File)
11 STAT (Status)
12 ORG (Organization)
13 OAB (Original from)
14 OEM (Original to)
15 WAB (Resent by)
16 ERR (Error message)
17 ANTW (Reply to)
18 DISK (Followup to)
19 STW (Keywords)
20 ZUSF (Summary)
21 DIST (Distribution)
22 POST (Postal address)
23 TEL (Phone number(s))
24 MSTAT (MausNet PM Status)
25 KOP (CC)
26 PGP (PGP status)
27 URL (Homepage)
28 PART (Msg Part)
29 CST1 (User defined 1)
30 CST2 (User defined 2)
31 PRIO (Priority)
+ 223
1 ## Forwarded message of $MSGDATE
2 ## Origin : $BRETT
3 ## Creator : $USER
-
224 Settings have changed - save
+ 225
1 More than %s days have passed since your last use of OpenXP.
2 The system date has been changed.
3 Please check date:~
-
# XP2F
+ 240
1 Tools Menu
2 Function keys
3 Menu Program $FILE S W L A Mem
4 Menu display~
5 Program name~
6 $FILE-Msg. ~
7 w/o header
8 with head.
9 Puffer
10 Quote
11 Subject-name
12 Wait
13 Fullscreen
14 Output to lister
15 Memory:~
16 KBytes
17 Look for files in AUTOEXEC directory
-
241 OpenXP - Color configuration
242 Reset default color settings
+ 243
1 # This file is used for phone fee calculations.
2
3 # The first coloumn contains the date (dd.mm.yy format), the second
4 # coloumn the holiday type (1 to 3) and the last an arbitrary comment.
5
6 01.01.96 1 New year
+ 244
1 OpenXP is already running in another window.
2 It is not possible to run multiple instances
3 of OpenXP at the same time.
-
+ 245
1 !!! Beware Linux/Unix users: !!!
2 !!! This warning is issued only once !!!
-
# XP2C
+ 250
1 Miscellaneous Options
2 Quote string ~
3 Line break ~
4 User base ~
5 All
6 Z-Netz
7 PMs
10 Confirm exit
11 No storage warning
12 Archive prefix~
13 Delete archived messages
14 Append new message areas at end
15 Full name/address in Private mail areas
16 Minimum disk space on drive %s~
17 MBytes
19 Use descriptions from newsgroup list
20 Enable umlauts for new Users
21 Enable alternative quote characters
22 Sort User-window by Server name
23 Default Usergroup ~
24 Create an archive-note
25 Minimum disk space ~
+ 251
# Extract as
0 Text w/o head
1 Text with head
2 Puffer
3 Quote
# Read mode
5 All
6 Unread
7 New
8 Today
# Maus double click speed
10 slow
11 normal
12 fast
15 User Interface
16 Message auto advance
17 Newsgroup auto advance
18 User auto advance
19 Show mode ~
20 Extract as ~
21 Use mouse
22 Swap mouse keys
23 Initialization
24 Double click
25 Leave config menu on <Esc>
26 Save ~
27 Audible warning in message, newsgroup and user list
28 Stop at last newsgroup
29 No Re-Org confirmation
# save config
40 automatic
41 manual
42 ask on quit
+ 252
5 Message options
6 Save binary messages up to: ~
7 KB
8 %
9 Bytes
10 Maximum percentage of cited text lines: ~
11 Standard news hold time: ~
12 Days
13 Standard user PM hold time:~
14 Hold own messages
15 Creation time = 00:00
16 Use Re^n
17 Store unsent messages in /»Unsent
18 Send automatic receipts on request
19 Automatic PM archiving
23 Time zone
24 Delete X-postings in more than
25 Newsgroups
26 Send all carbon copies as BCC
27 mail as well
28 deactivate internal spamfilter
29 don't archive news
30 ignore cancels/supersedes
31 Hold own PMs
32 deactivate manual spamfilter
39 User selection list: ~
40 always
41 Carbon Copies + Reply-To
42 Carbon Copies
43 Reply-To
44 never
50 user defined
51 Changeover
52 manual
53 Date
54 TZ Var.
55 TZ/Date
56 Automatic time zone changeover activated.
57 Please check settings under /Config/Options/Messages
58 and change or correct if necessary.
59 Time zone has been changed to "%s"
60 Environment variable "TZ" is invalid!
#
100 68
101 Address options
102 Organization ~
103 Postal address~
104 Phone ~
105 Homepage ~
109 Address, phone and homepage in Private messages ONLY!
+ 253
1 Net Options
2 Z-Netz
3 Lower case User names
4 Z-Netz only
5 Warning!
6 Lower case names are not allowed in Z-Netz. Do you really want to
7 activate this option?
8 ~^Yes , ^No ~
10 ZCONNECT: ISO charset
11 MIME: quoted-printable
12 Use MIME for header contents
13 remove unnessecary header lines
14 use references
15 no single-part messages
16 concatenate old subject
17 Magics in <F3> file request
18 OpenXP version in tear line
20 Enable MIME
21 The use of MIME is only specified in version 3.1 of the
22 ZConnect specification, which is not supported by most
23 point software and gateways.
25 SMTP/NNTP
26 UUCP (RFC)
+ 254
1 Netcall Options
2 Show login screen
3 Interrupt login screen
4 Hayes commands
5 Rename CALLED
6 Delete mail packets after importing
7 Convert all Z-Netz addresses to upper case
8 Warning!
9 You may deactivate this option only if you don't use a modem and
10 the connection is established in some other way (e.g. by manual
11 dialing).
12 Do you really want do deactivate Hayes commands?
13 ~^Yes , ^No ~
14 Complete netcall logfile (NETCALL.LOG)
15 Un-mark messages after netcall
+ 255
# window width
0 46
1 Internal message reader options
4 Full screen
5 Line break in column 80
6 Show reference arrows
7 Fixed message header display
8 Convert German ISO Umlauts
9 *Highlight* words by colour
10 Mouse scroll bar
11 AutoScrolling
12 Multi-coloured quotes
13 Exit message reader with <Return>
14 Display clock
15 Use UTF-8
16 Viewer for URLs
#
20 51
21 External lister options
22 Lister~
23 KBytes:
+ 256
# window width
0 57
1 large messages
2 all messages
3 all texts
5 Editor Options
6 Editor~
7 KBytes:
8 Backup file extension ~
9 Use external editor for ~
10 Automatic <Ctrl PgDn>
11 Internal editor - full screen
12 Keep filename of Edit/Text
13 25 screen lines for ext. editor
14 Editor Charset
15 IBM437¨ISO-8859-1¨UTF-8
16 IBM437¨Windows-1252¨UTF-8
+ 257
# window width
0 40
1 Shell
2 25 screen lines for DOS shell
3 Environment space: ~
4 Show command line
5 Wait for key
+ 258
# Message Area/User display
# window width
0 43
1 normal
2 special
3 small
5 Message Area display
6 "/" for PM Message Areas
7 Split lines in "All" mode
8 Message Area display~
9 Usenet groups with "."
10 Separator comment ~
11 ... applies to all Message Areas
12 combined Unread mode
21 left
22 middle
23 right
+ 259
0 normal
1 small
2 small/space
3 name only
4 name/small
5 Columns
6 Col./small
10 Message display
11 Message date
12 User names ~
13 Show complete user addresses in reference tree
14 Show realnames, if possible
15 Show recipients of echomail messages (FidoNet)
16 Show newest messages on top of list
17 Long message date
+ 260
1 Screen-saver (sec.) ~
2 Scroll out
3 Password at startup?
4 Show User-name
5 Cursor in menus and lists
6 Lock screen-blanker
7 visual warnings
8 Blank window background
10 Terminal BIOS output
11 Accessibility options
12 acoustic warnings
13 Headline 1
14 Headline 2
15 Message-list column order
16 User-list column order ~
+ 261
# Window width
0 50
1 Configuration of COM%s
2 Port address (hex)~
3 IRQ number~
4 Modem init~
5 Modem exit~
6 Wait for modem answer:~
7 sec.
8 Ignore CD
9 Ignore CTS
10 Detect RING
11 16550A FIFO
12 Sure? OpenXP did not recognize a 16550A!
13 Use FOSSIL driver
14 No FOSSIL driver installed.
15 Dial comm.~
16 Pause between dialing
17 Use RTS
18 ...trigger level
19 Comminit ~
20 Configure Device Number %s
+ 262
# Window width
0 58
1 Directory not found. Create it
2 Temporary directory~
3 Extract directory ~
4 Send directory ~
5 Log file directory ~
6 FileReq directory ~
-
263 Archive unpacker for...
+ 264
# Window width
0 51
1 Printer Options
2 Interface ~
3 Form length~
4 Printer init~
5 Printer exit~
6 Form feed ~
7 Left margin:~
8 chars.
9 Program:~
+ 265
1 External encryption programs
2 Name Crypter Decrypter binary
-
266 Viewer programs for ...
+ 267
# window width
0 48
1 Fido Options
2 Int. dial prefix ~
3 Nat. dial prefix ~
4 Your dialing code~
5 Point lists~
6 Point diffs~
7 Import nodelist updates automatically
# length of field "standard echomail recipient" (maximum: 20)
8 13
9 Default echomail recipient~
10 Delete empty messages
11 4D point list
12 Automatic TIC file processing
13 Hold requests if files are missing
14 Automatic nodelist indexing
15 Delete hidden kludges
16 Use TZUTC kludge
+ 268
1 PM size limits / bytes
2 net
3 local
+ 269
1 German ISDN/CAPI Configuration (1TR6/X.75 only)
2 CAPI Interrupt~
3 EAZ~
10 not installed
+ 270
0 34
1 Terminal settings
2 COM port ~
3 Speed ~
4 bps
5 Modem init~
6 Zmodem AutoDownload
7 Zmodem AutoUpload
8 Status line
+ 271
0 49
1 PGP settings
2 PGP version
3 PGP support
4 Batch mode
5 Wait for key after PGP call
6 Log file for automatic actions
7 Automatic key import from Mails
8 Automatic key import from News
9 Sign all messages
10 User ID~
11 GPG options
12 Use PGP for RFC/UUCP
13 Use PGP for Fido (not allowed in FidoNet!)
14 Use PGP/MIME
+ 272
# 06.02.2000 MH: RFC: X-Priority: 1, 2, 3, 4, 5
0 30
1 Very High
2 High
3 Normal
4 Low
5 Very Low
6 None
7 Send-Priority
8 Priority~
9 Very High¨High¨Normal¨Low¨Very Low¨None
+ 273
# 09.05.00 JG: Neue Viewer-Optionen
0 55
1 Viewer-Options
2 Safety for multiformat-mime-types
3 Safe file-extensions (use external Viewer)
4 Use internal viewer for these extensions
5 Viewer-program for suspicious file extensions
6 Miscellaneous
7 No waiting-batch for windows-viewers
-
+ 274
# Config/Display/Lines
1 Screen resolution
2 Lines ~
3 Columns ~
-
# --- XP3 -------------------------------------------------------------
# internal messagebase file errors
300 ; wrong size field
301 ; messagebase file missing
302 ; wrong file address index
303 message is bad (messagebase file~
304 messagebase file no %s is bad!
305 messagebase file %s not found!
306 Error reading from messagebase file %s
307 Error writing in file
# XP3O
320 Rereading group dates... %
321 ~done.~~
+ 322
1 Move messages to another Newsgroup
2 Source
3 Dest.~~~~~~
4 Change message header?
5 Working ...
6 Newsgroup does not exist!
-
+ 323
1 Move messages to other mailgroup
2 from User
3 to User~~~~
4 User not found
5 Working ...
-
+ 324
1 Extract messages
2 Extract newsgroup messages
3 Extract %s marked messages
4 Extract reply tree
5 wrong file or path name
6 extracting message...
7 done.~~
-
325 Delete all displayed messages in this newsgroup
326 Delete all displayed messages
327 Message list
328 ~No Bytes Type Date From Subject
329 Working on message:
+ 330
1 Read message packet
2 Receipt date = date of creation
3 Take server from path line
4 Send receipts on request
5 Mark messages as "read"
6 Import messages...
-
331 Testing messages...
332 Linking references...
333 Reading message packet
334 empty file
335 Copying file...
+ 336
1 WARNING !
2 Bad message packet: ~
3 Disk full.
4 Messages were NOT imported!
5 File was moved to subdirectory BAD.
6 Bad message packed was moved to subdirectory BAD.
8 Netcall packet was not imported:~
-
+ 337
1 Receipt by
2 Automatic receipt by
3 Received message:
4 Newsgroup: ~
5 Message-ID:~
6 Date: ~
7 Size: %s Bytes
8 Path: ~
-
338 Testing message packet... ~
339 Building newsgroup index... %
340 Rebuilding newsgroup index ... %
341 Processing control messages ...~
342 Form feed after each message
343 <no subject>
344 Delete "held" messages as well?
# XP3EX
360 DES decoding... %
+ 361
1 ~ (internal OpenXP Newsgroup)
2 To: ~
3 Followup: ~
4 Copy: ~
5 Subject: ~
6 From: ~
7 Path: ~
8 MessageID:~
9 Date: ~
10 received:~
11 Size: %s Bytes
12 File: ~
13 PM Status:~
14 Error! ~
15 ~ ~
16 Orig. To: ~
17 Forwarder:~
18 Orig.From:~
19 Reference:~
20 Software: ~
21 Status: ~
22 Keywords: ~
23 Summary: ~
24 Organiz.: ~
25 Address: ~
26 Phone: ~
27 Reply to: ~
28 CC: ~
29 PGP staus:~
30 Fido-To: ~
31 Distrib.: ~
32 Homepage: ~
# [!MF!]
33 Part: ~
34 ~of~
# [..]
35 Priority: ~
48 private mail
50
51 voice
52 fax
53 BBS
54 pager
55 answering machine
60 (unregistered)
-
# first 6 chars of 361.6:
362 From ~
+ 363
1 , Receipt Request
2 , IsReceipt
3 , Control-Message
4 , pulblic key available
5 , mesage contains public key
6 , key request
7 , signature o.k.
8 , invalid siganture!
9 , message has signature
-
364 BLOWFISH decoding... %
# --- XP4 -------------------------------------------------------------
400 all ~
401 unread ~
402 new ~
403 from~
404 quote %s marked messages
405 invalid address:~
406 That's a binary message! Do you really want to quote it
407 Move message to archive
# Quit
408 Do you really want to quit
409 no newsgroups
410 no users in address book
411 no users
412 no messages
413 no entries found
# /M/Seek
414 Text
415 Subject
416 User
417 Special
418 Delete user group %s
419 A maximum of %s messages may be marked at the same time!
420 A maximum of %s Users/Newsgroups may be marked at the same time!
421 ~%s marked messages
422 ~References of "%s"
423 unread messages
424 messages since last netcall
425 messages since %s
426 ~Select archive newsgroup:
427 ~Select destination
428 ~Select user
429 Record no:~
430 Show file contents
431 The Sender wants a mail reply - do you really want to post it
432 Finding next marked user ...
433 Show comment
#
435 no newsgroups with new messages
436 no newsgroups with unread messages
437 MessageID
438 (mark) Text
439 Function is supported only for RFC/Client and RFC/NNTP
# XP4O
+ 441
1 Search %s
2 Search for ~
3 Options ~
4 Newsgr.~
5 Search for: ~
6 Sender ~
7 Subject ~
8 Text ~
9 Fido-To ~
10 from Date~
11 to Date ~
12 Type ~
13 Status ~
14 Newsgroups
15 Options ~
16 Search: found:
17 No newsgroups selected
18 No messages found
19 from~
20 to ~
21 Search Library
-
+ 442
0 All
1 Net
2 User
3 marked
4 selected
10 All
11 hold
12 delete
13 h. or d.
14 unread
15 read
20 All
21 Text
22 Binary
23 FAttach
24 Multipart
25 Find MID-Parts
-
443 One moment please... %
444 No marked messages found
+ 445
1 User
2 Newsgroups
3 Ask before deleting users
4 Ask before deleting newsgroups
5 Ask before deleting users from address book
6 deleted:
7 User ..... :
# ?? ausgetragen:
8 deleted .. :
9 delete %s from address book
10 delete %s
-
446 Stop reorganisation
447 Stop
+ 448
1 Messagebase Reorganisation
2 Messagebase Test
3 Messagebase Statistics
# die Länge von Feld Nr. 4 bestimmt die Fensterbreite:
4 messages :
5 deleted :
6 bad :
7 no bad messages found
8 Messagebase reorganisation is destructive. Continue
-
449 Stop at the end of file
450 ~Stop at the end of file.
+ 451
1 Reorganisation
2 File No %s
3 ~- not enough disk space!
4 not enough disk space to pack messagebase file no %s
5 ~- packing ... %
6 One moment please... %
7 Nothing to delete!
-
+ 452
# 452,1 must start with "N"!
1 New receive date:
2 Use creation date
-
# 453 und 455 sind Menüpunkte aus /Nachricht/Unversandt
453 Change
454 new Subject:
455 Edit
+ 456
1 Read newsgroup list
2 File not found
3 Creating newsgroups ...
11 Read user list
12 User in Adreßbuch eintragen
13 Create user newsgroups
-
+ 457
1 Create user list
2 Create newsgroup list
3 invalid file name
4 Export comments, too
5 creating user list... %
6 creating newsgroup list... %
7 Sort by groups
8 Sort by Server
9 Export users registered in address book only
10 Keep sorting order from Message Areas Overview
-
458 NO unsent messages found ...
+ 459
1 ~ (Text)
2 ~ (binary)
3 Msg. Area :
4 To :
5 Subject :
6 Sender :
7 Realname :
8 Organizat.:
9 Reply to :
10 Date :
11 Path :
12 ~ ~
13 MessageID :
14 Reference :
15 PM Status :
16 Type :
17 Mailer :
18 File :
19 Size :
20 ~Bytes
21 Comment :
22 Attributes:
23 Message header
24 ZConnect format
25 Z-Netz format
26 Size of header:~
27 Receive date:~
28 MBase file :~
29 Press any key~
30 Crossposting list
31 Reference list
32 Database info
40 Area No. :
41 Subject :
42 Sender :
43 Sent date :
44 Rcvd date :
45 Size :
46 Type :
47 Hold flags:
48 Read :
49 Unsent :
50 Index :
51 Address :
52 Msg Size :
53 WV date :
54 MsgID :
55 Net type :
56 ~ Flags :
57 Name :
58 Flags :
59 Mime type :
64 ~(intern)
65 ~(PM)
66 ~(Netz)
67 ~(User)
70 SPAM
71 SPAM-Status
72 SPAM-Wahrscheinlichkeit:%5.1f%%
73 %-7s: %4d : %-4d %5.1f%%
-
460 Message header
461 %s already exists. Overwrite
462 Extract
463 Destination directory:~
464 ~File name OrgSize CompSize % Method Date Time
465 Archive or text file
+ 466
1 Copying message file...
2 DupeKill
3 Total messages:
4 ~ processed:
5 ~ deleted:
6 DupeKill started on~
7 ~at~
-
+ 467
1 (mark) User
2 Search for:
3 Searching % found..:
4 no matching users found
5 (mark) Message Area
6 no matching Message Areas found
-
468 Newsgroup index no
469 Type of net: ~
470 Delete message
471 ~(will break reference link)
472 Linking references ... %
473 ~done.~~
474 Reading Message-IDs ... %
475 Reading reply tree...
+ 476
1 Original sender :~
2 Forwarding sender :~
3 CC recipient :~
4 Select recipient ...
5 Sender :~
6 Forward address :~
7 Reply-To recipient :~
8 Original recipient :~
9 Recipient :~
10 --- all (without own and marked addresses) ---
11 --- marked ---
-
# XP4W
+ 480
1 Usergroup:
# --- XP5 -------------------------------------------------------------
# /XPoint/Statistics/Memory
+ 500
1 Memory usage
2 Total
3 OpenXP
4 Free
6 Available
7 ~version
8 Drive
9 Press any key
10 Key
11 ~ > 2 GB
12 Swap total
13 Swap free
14 Shared
15 Buffer
-
+ 501
1 Mo Tu We Th Fr Sa~~
2 Su
3 ~ Calendar
4 CW
-
+ 502
1 Database
2 File Records Usage Bytes
-
503 Screenshot
504 Password is being saved.
505 ~Password is deleted.~
506 Old~
507 Main password
508 Start password
509 Password
+ 510
1 Which password do you want to change?
2 ~^Main password , ^Start password~
3 new~
4 Delete %s
5 Repeat %s
6 Different input
19 65
20 WARNING!
21 3
22 If you enter a new password, please note this password at
23 a safe place! If you forget it, you will have to re-install
24 OpenXP!
-
+ 520
# number of lines
0 16
1 This program is free software; you can redistribute it and/or
2 modify it under the terms of the GNU General Public License as
3 published by the Free Software Foundation; either version 2 of
4 the License, or (at your option) any later version.
5 This program is distributed in the hope that it will be useful,
6 but without any warranty; without even the implied warranty of
7 merchantibility or fitness for a particular purpose.
8
9 See the GNU General Public License for more details.
10
11 Portions of this software are Copyright (c) 1993-2003
12 Chad Z. Hower (Kudzu) and the Indy Pit Crew
13 http://www.IndyProject.org/
14
15 This product includes software developed by the OpenSSL Project
16 for use in the OpenSSL Toolkit. (http://www.openssl.org/)
#
20 Choose "Continue" if you agree to these terms of license.
21
26 You have been using OpenXP unregistered for more than %s months!
30 ^Continue
# same key for printing as in 22.5:
42 D=Print <Esc>=End~
+ 521
1 You are registered already. Would you like to delete the reg. key
2 Registration key:~
3 Changed your mind?
4 Oops... I guess that wasn't a OpenXP registration key.
5 The registration key has been saved. OpenXP
6 will quit now and must be restarted to have
7 registation taking effect.
8 Key was deleted.
-
+ 530
# Zeilenanzahl
0 10
1 This program is distributed without any warranty; without even the
2 implied warranty of merchantibility or fitness for a particular
3 purpose.
4 For questions, bug reports and feature requests, the OpenXP-Team
5 may be contacted by the following means:
6
7 ~Usenet: de.comm.software.crosspoint
8 Fidonet: POINTS echomail area
9
10 This notice may be turned off with the command line parameter /nb.
30 ~^Continue , ^Cancel~
-
# --- XP6 -------------------------------------------------------------
# Don't use any non-7bit characters in the following line:
600 ## Original recipient:
+ 601
# Crypting
1 %s possible
2 no password
3 not possible
4 maybe QPC possible
-
# CC's
602 none
+ 603
1 Special... ~
2 Send... ~
3 Change... ~
-
+ 604
# Flags im Sendefenster
1 withoutSig~
2 RecConf~
3 delete~
4 (MausNet)~
5 (lokal)~
6 direct-mail~
7 direct~
8 express-mail~
9 express~
10 PGP-Key~
11 PGP-Sig~
12 PGP-Req~
13 BCC~
14 Highest
15 High~
16 Normal~
17 Low~
18 Lowest~
19 PGP/MIME-Sig~
-
605 DES encoding... %
+ 606
0 Note
# Number of lines:
1 4
2 Your message contains %s% of quoted Text.
3 Long quoted passages are annoying and cause
4 unnecessary costs for all nodes in the net.
5 Do you really want to send THIS message?
6 ~^Yes , ^No ~
# key for reediting text:
7 T
-
607 send on~
608 Saving message...
+ 609
# Address errors:
1 "@" is missing!
2 Warning: Space in address! Send it, anyway
3 .ZER is missing! Send it, anyway
4 Fido net number is missing!
5 Domain is missing!
6 Illegal address: %s
7 Invalid control characters in user address!
-
+ 610
1 Saving message
2 Parking message
3 Sending message
4 Saving message in~
5 Sending message to~
-
+ 611
1 Private message
2 Internal message
3 Public message
4 ~(quote)
5 ~(binary)
# Subject winwow
6 To ~
7 Subject ~
8 Fido-to ~
# Send window
10 To^: ~
11 ^Recipient
12 Subject
13 Ser^ver
14 Size
15 Code:
16 Copies:
20 ^Park,^Date,R^ecConf,^w/o Sig,de^lete,Cras^h,P^GP,^Origin,^Back
21 ^Park,^Date,R^ecConf,^withoutSig,de^lete,^MausNet,^Lokal,^Back
22 ^Park,^Date,R^ecConf,^w/o Sig,de^lete,P^rio,^More,P^GP,^Back
23 ^Park,^Date,R^ecConf,^w/o Sig,de^lete,P^rio,^More,P^GP,^Back
24 ^Park,^Date,R^ecConf,^withoutSig,de^lete,^Back
25 YNI¨SVOT
28 ^Yes,^No,^Internal,S^pecial,^Subj.,Ser^ver,C^ode,^Attach
29 ,^Text
30 PDEWLH¨LMG
# Editor Header
40 Message to ~
41 Message in ~
42 Subject: ~
43 ~ to ~
49 ^Yes,^No,^Internal,S^pecial,^Subj.,Ser^ver,C^ode
# PGP key
50 G
+ 612
1 Message limit exceeded by %s Bytes! Send message, anyway
2 Sent binary file
3 File name: %s
4 Size : %s Bytes
-
613 Send binary file
614 Send text file
615 Start crash netcall
+ 616
# Width of window
0 60
1 Followup to ~
2 Keywords ~
3 Summary ~
4 Distribution~
5 Reply to ~
6 Additional information
-
617 Subject changed - keep reference
618 Send message without subject
619 was
620 Checking for crosspostings ...
621 Origin file not found (%s)
622 No function in this net
623 BLOWFISH encoding... %
+ 624
0 ~^New , ^Edit , De^lete , ^Up , ^Down ,¨8 ^Close~
1 Attach a ^file,Create new ^text
2 ~^New , ^Edit ,¨38 ^Close~
3 Send message part
4 This message part has been created or modified.
5 ~ ^Save to file , ^Don't save , ^Cancel ~
7 ^Text,
8 M^etadata,File t^ype
10 (no description)
21 Metadata
# +------------------------------------------------------------+
13 File name ~
14 Description~
12 Disposition~
15 Modified ~
16 Created ~
17 Accessed ~
# +------------------------------------------------------------+
24 Attachment
25 Inline
26 CRLF (DOS)
27 LF (Unix)
28 CR (Mac)
29 None/Binary
30 7 Bit
31 8 Bit
32 Quoted-Printable
33 Base64
60 PGP-ASCII
# GnuPG:
61 ISO-8859-1¨ISO-8859-2¨KOI8-R¨UTF-8
# PGP2:
62 ISO-8859-1¨KOI8-R
35 ISO-8859-1¨UTF-8¨Windows-1252¨IBM437
36 ISO-8859-1¨UTF-8
38 US-ASCII
39 IBM437
37 text/plain¨application/octet-stream
40 File type and encoding
# +------------------------------------------------------------+
41 Vorsicht: Änderungen an diesen Einstellungen können zu un-
42 erwünschten Nebeneffekten führen.
45 Network File type ~
46 ~ Encoding ~
47 ~ Charset ~
43 Original EOL type ~
44 ~ Charset ~
50 Attach a file
52 No file selected or file doesn't exist
100 Can't copy file for editing.
101 Can't create a new file.
102 File does not exist.
103 A message must contain at least one part.
-
# XP6.INC
640 Rebuilding message packet...
+ 641
1 ## Archived message on %s
2 ## Origin
3 ## Creator:~
-
642 Message is being archived...
+ 643
1 Forward %s marked messages
2 Forward 1 marked message
3 Archive %s marked messages
4 Archive 1 marked message
+ 644
1 Forward to ...
2 ~^Newsgroup , ^User , ^Direct~
3 PM is being archived ...
4 Archiving PMs ...
5 Archive all marked PMs
6 Archive message of %s
7 Archiving message ...
8 Message forward
+ 645
0 28
1 PGP Options
2 Sign message
3 Request public key
4 send own key
-
# --- XP7 -------------------------------------------------------------
+ 700
1 Phone charges~
3 Net transfer
4 Netcall
# Datum
5 ~of~
# Zeit
6 ~at~
# Netztransfer-Box
7 ~to~
# Netzanruf-Box
8 ~to~
9 Output packet : %s Bytes
10 Input packet : %s Bytes
11 == Netcall was aborted! ==
12 Dial start :~
13 Dials :~
14 Connection :~
15 Connect .... :~
16 Connect time :~
17 Send packet :
18 Login time :~
19 Packed packet :
20 Waiting time :~
21 Received packet:
22 BiModem time :~
23 Send time :~
24 Unpacked packet:
25 Receive time :~
26 Hangup time :~
27 Send rate :
28 ~cps
29 ---------------------
30 Receive rate :
31 Total time :~
32 Average :
33 incoming messages:
34 outgoing messages:
35 -------------------- MausTausch-Logfile --------------------
36 ----------------------- Fido Logfile -----------------------
37 Direct call to~
38 ~(error)
39 UUCP init :~
40 ----------------------- Fido Logfile -----------------------
41 -------------------------- Logfile -------------------------
42 additional outgoing messages:
-
701 Netcalls not allowed between %s and %s!
# wrong server config
702 ~- please check server config
+ 703
1 Initializing modem...
2 Netcall to~
3 Calling~
4 ~at~
5 no Connection
6 Waiting for next netcall...~
7 Waiting for next call...~
+ 704
1 Automatic Netcall at~
2
3 To ~
4 Netcall to~
5 ~at~
6 Time left:~~
+ 705
# Fido-Crash
1 other
2 all
3 Crash call...
4 Node/Name~
5 marked
+ 706
1 no input packet file name
2 no output packet file name
3 incomplete point data
4 incomplete packer settings
5 no uploader setting
6 unpacker not found
7 Entry "Client directory" is missing
8 Entry "Client directory" not OK
9 Entry "Client call" is missing
10 Entry "Client call" not OK
11 Entry "Additional servers" not OK
12 Entry "Envelope address" is missing
-
707 <broken in>
708 Break
+ 709
1 busy
2 voice?!
3 no dial tone
4 no dial tone
5 no answer
-
710 Node name...
711 Password...
712 Incoming call detected! <Enter>=continue, <Esc>=stop
+ 713
1 Error - %s renamed to %s
2 Error renaming file :-(
3 Netcall stopped; CALLED could not be renamed!?
4 Netcall stopped; renamed CALLED to %s
5 Netcall stopped; incomplete packed moved to directory BAD.
-
714 Server is unpacking messages...~
715 Server is packing messages...~
716 %s: Netall to %s at %s
717 Temporary fido mailer config file
718 Temporary uucico config file
719 uucico call
720 Turbo-Box Mailer
721 Temporary fido config file
+ 722
1 Destination directory: ~
2 requested file got file size
3 total
4 ~file(s)
5 UUCP file request / file transfer
6 * file not found *
-
723 Merging JANUS buffer files:
724 disk full - file will be moved to BAD directory
725 Unknown fido node: %s. Delete request
+ 726
0 35
1 %s already exists
2 ~^Replace , ^Append~
-
727 Phone fee zone:~
728 Temporary MAGGI and UUZ configuration files
# --- XP8 -------------------------------------------------------------
+ 800
1 Dear system administrator,
2 Newsgroups
3 Newsgroups
4 I would like to unsubscribe the %s listed below.
5 I would like to subscribe the %s listed below.
6 virtual greetings from
-
801 Loading Newsgroup list for %s...
802 ~ ^Yes , ^No , ^List~
803 Unsubscribe %s marked newsgroups
804 Unsubscribe %s
805 Are you sure that this is a newsgroup list
806 Newsgroup list for %s is being copied ...
+ 807
1 Newsgroup
2 Newsgroups
# subscribe number of newsgroups at server
3 Subscribe to %s %s at %s
4 Unsubscribe from %s %s at %s
5 Create %s %s
6 Request contents of the selected newsgroups
10 Creating newsgroups ...
-
# MAPS-Befehl INFO
808 Info <System>
809 System name
+ 810
0 Message to~
1 Help for all MAPS commands
2 Help for one command
3 List of commands
4 Request newsgroup contents list
5 Info about your own system
6 Info about all systems
7 Info about one system
8 User, newsgroup and system list
9 Newsgroup list
10 System list
11 User list
12 Subscribed newsgroups
13 Unsubscribed newsgroups
14 Clear your BBS mailbox contents
15 Determine MAPS version
16 Subscribe newsgroups
17 Unsubscribe newsgroups
18 Get your user status
20 Verbose list
# Fido Areafix
40 List of available echos
41 List of subscribed echos
42 List of unsubscribed echos
43 Help for Areafix commands
44 Rescan echo contents
# Alphanet 2000 AREAFIX
50 Help for AREAFIX commands
51 List of newsgroups
# Edgar REQUEST
55 Help for REQUEST commands
56 List of newsgroups
57 List of unsubscribed newsgroups
# changesys / gup
60 get newsgroup list
61 changesys instructions
62 get sysfile entry
63 resend last sysfile entry
70 gup instructions
71 list of subscribed newsgroups
72 list of available newsgroups
75 AutoSys instructions
76 query newsgroup access rights
77 traffic statistics
80 feeder instructions
81 suspend all newsgroups
82 resume all newsgroups
83 Order Newsgroups
84 Headers only
85 Article count
86 0¨10¨25¨50¨100¨150¨200¨250¨500¨1000¨2500¨5000¨10000
-
811 Are you sure that this is a file list
812 Fileserver list
813 Readinf file list for %s...
+ 814
1 File
2 Files
# Request number of files at fileserver
3 request %s %s at %s
-
815 Service Command
816 Command:~
817 Delete %s
+ 818
0 66
1 Send file to UUCP system
2 Source file ~
3 Destination file~
10 59
11 UUCP File Request
12 Files ~
-
819 Start netcall at once
820 Reading sysfile entry ...
821 Import newsgroup list
822 Import file-area list
# XP8.INC
850 Reading file echo list for %s ...
+ 851
# Window width
0 50
1 Message to %s
# number of commands
2 11
3 LIST List of all available file areas
4 QUERY List of all subscribed file areas
5 UNLINKED List of all unsubscribed file areas
6 PAUSE Stop file transfer
7 RESUME Restart file transfer
8 HELP Get help
9 PWD Change password
10 INFO Get status information
11 STATUS Get status information
12 NOTIFY ON Subscribe monthly file list
13 NOTIFY OFF Unsubscribe monthly file list
20 New FileScan password:~
+ 852
1 Subscribe to file area %s
2 Subscribe to %s marked file areas
3 Unsubscribe from file area %s
4 Unsubscribe from %s marked file areas
5 Unsubscribe from file area %s?
6 Unsubscribe from all marked file areas?
7 ~^Yes , ^No , ^List~
-
# --- XPConfigEdit -------------------------------------------------------------
900 Directory not found. Create it
+ 901
# window width
0 51
1 Edit Group
2 Create new group
3 Name ~
4 Name
5 Limit ~
6 Hold: ~
7 days
8 Spec.chr.
9 Head ~
10 Quote ~
11 Signature ~
15 Default
16 Re^n:
17 Re:
18 none
20 Replies ~
21 ^General,^RFC,^Fido
+ 902
1 Fido settings
2 Origin~
3 Address
10 RFC settings
11 Public messages
12 Private messages
13 Realname
14 E-Mail ~
15 Reply-To
16 FQDN ~
+ 903
# window width
0 48
1 Edit systems
2 Append new system
3 System name
4 Comment ~
5 Fileserver~
6 Password ~
7 Index file~
8 Converter ~
-
904 Delete %s
+ 905
# window width
0 54
1 Edit short name
2 Append new short name
3 Short name ~
4 Nwsgrp./User
5 Server ~
-
906 Delete "%s"
# Servers
907 ~^New , ^Delete , ^Select , ^Edit , Net ^type , ^OK~
# Groups
908 ~^New , ^Delete , ^Edit , ^OK~
# Systems, Short names
909 ~^New , ^Delete , ^Edit , ^OK~
910 user name:~
+ 911
# Window width
0 52
1 Please enter the account type, the name of the
2 account and your username or eMail address.
3 A RFC/Client account requires a third-party
4 mail/news module such as UKAW.
5 Account type
6 Server name~
7 User name ~
+ 912
0 49
1 Node number~
2 Account name
3 Identity ~
4 Origin ~
5 Server name~
6 Comment ~
7 News manager
8 Real name ~
9 Domain ~
10 Server dom.~
11 FQDN ~
12 Identity ~
13 Account name
14 Organization
+ 913
0 30
1 Type of net~
-
914 New server
915 Create new server entry (Type: %s)
916 Poll data exist!!~
917 Do you really want to delete %s
918 ^Primary server,Primary ^Fido server
+ 920
# Maus Password
1 Password~
# Fido
2 Point No.
3 Point Net
# Turbobox-PW
4 Password
# Pronet
5 Phone ~
6 Password
7 Point no ~
#
10 Point name
11 Password ~
12 Phone ~
13 Ser.No.
# QM
14 Login ~
# Fido
15 Password
# UUCP
16 Login ~
17 Password~
18 UUCP name
#
70 Mode ~
71 Modem
72 TCP/IP
73 Phone ~
74 Host ~
75 Port
76 Telnet
#
20 Upload protocol ~
21 Download protocol~
22 Protocol type ~
23 Upload packer ~
24 Download unpacker~
25 Uncompress ~
26 Unfreeze ~
27 gunzip ~
57 bunzip2 ~
28 Zmodem options ~
# UUCP
30 max. UUCP-g packet size ~
31 max. UUCP-g window size ~
62 maximum file size ~
32 variable UUCP-g packet size
80 Client settings
81 Server
82 Name
83 Comment ~
84 User
85 eMail address
86 Real name ~
87 Reply to ~
88 FQDN ~
89 Client
90 Client directory ~
91 Client call ~
92 Additional servers
93 Connection/Login
94 Dial-Up~
95 Phone ~
96 Login ~
97 Password
98 Ask before Dial
99 Ask before Disconnect
100 Keep connect status
110 Mail server for incoming mail (POP3/SMTP/IMAP)
111 Mail server for outgoing mail (SMTP)
112 News server (NNTP)
113 Server name ~
114 Port
115 Protoc.
116 Fallback server~
117 Envelope address
118 User name ~
119 Password ~
120 Use Envelope Header
121 Keep mail on server
122 APOP Authentication
123 SMTP after POP
124 SMTP Login acc. RFC 2554
125 Update Newsgroup list
126 Max. article length (KB)~
127 Max. articles per group
60 force send packet size
61 7/E/1 login
33 G protocol
34 g protocol
35 Size negotiation
36 Batched SMTP
37 z protocol
38 f protocol
39 e protocol
66 t protocol
63 a protocol
64 i protocol
65 j protocol
#
40 UpPack extension ~
41 DownPack ext.~
# Pronet
42 Downpack extension
# ZConnect
43 UpPack extension ~
44 Janus Plus
# Fido
46 4D addresses
47 TosScan
48 Set system clock
49 Packet password
50 Use Node address
51 Send dummy packet
52 Extended packet names
53 Additional Servers
# Turbo
55 Get news
56 Serial no
+ 921
0 59
1 Wait for connection ~
2 Wait for login ~
3 Dial pause ~
4 max. dialing attempts
5 Login attempts ~
6 Wait for data ~
7 max. connects ~
8 min. cps rate ~
9 Modem init~
10 Interface ~
11 ~ Speed:
12 baud
+ 922
0 43
1 Phone fee zone~
5 Connect time: ~
6 sec.
+ 923
# Window width of Fido and UUCP SysOp Mode
0 61
# Window width of other SysOp Modes
1 59
2 Sysop Mode
3 Inbound directory ~
4 Outbound directory~
5 Input file ~
6 Output file ~
7 /»Netcall report
8 Name without @BOX
9 Pack outbound mail
# Position of 923.8
10 31
11 Enable Sysop Mode
# QWK
12 Inbound packets ~
13 Outbound directory~
14 Transfer
15 Enable QWK Transfer
#
20 Start programme
21 End programme ~
+ 924
0 58
1 Miscellaneous Options
2 Online Call
3 Password
4 Logfile~
5 Netcall
6 from
7 to
8 Filter
9 Input ~
10 Output ~
11 Misc.
12 /Netcall/All
13 Script ~
14 Exclude
15 times
16 Reply servers
17 for News ~
18 for Mails ~
19 Call
20 prevent creation of dupes
21 no duping of own messages
22 External program~
23 replace HeaderOnly messages
+ 925
1 Net Options
2 Message IDs
3 Alias point
4 LightNET login
5 Net name~
6 Newsgrps.
7 Sender User@Point.ZER
8 Reply to ~
9 newsgroup manager~
10 ... passsword ~
12 Sender User@Point.domain
+ 926
0 42
1 Robots Options
2 Areafix
3 Name ~
4 Password ~
5 "+" for area requests
6 Commands in subject
7 Misc.
8 Area prefix~
9 AllFix
10 Name ~
11 Password ~
12 d'Bridge Areafix
13 Packet PW ~
+ 927
1 ^Point,^Modem,^Charges,
2 ^Names,%sM^isc.
3 ,^Sysop Mode
4 ,^Transfer
5 ^Point,
6 A^ccess,
7 ^Modem,
8 C^harges,
9 ^Names,
10 ^Misc
11 ,^Sysop Mode
12 ,^Local Mode
13 empty
14 empty
15 empty
16 empty
17 empty
18 empty
19 empty
20 Netcall ^3.8,
21 ^ZConnect,
22 M^aus,
23 M^agicNET,
24 P^ronet,
25 ^Robots,
26 NNT^P,
27 ^POP3,
28 ^UUCP,
29 ^QWK,
30 ^SMTP,
31 ^IMAP,
# RFC/Client
40 Mail/^News Servers,
41 E^xternal Settings,
42 Load external configuration file
43 ^POP3,
44 ^SMTP,
45 ^NNTP,
+ 928
1 UUCP Configuration
2 Reply-to address
3 Area Manager ~
4 Type ~
5 Name ~
6 Password~
7 Complete domain
8 Sysfile subject~
9 Sender = user@server.serverdomain
+ 929
# [!MF!]
1 There is an unsent mail packet (%s.PP) for this
2 Server, therefore, the type of net cannot be changed.
3 Either send or delete the mail packet first!
# [..]
4
5 Do you really want to change the net type of %s
-
# *SETUSER
930 New user name for %s ~
931 New real name
+ 932
1 Please note that Janus Plus needs other download protocol
2 settings than Janus. For Janus Plus, the download file
3 name ($DOWNFILE) must be specified, for Janus the down-
4 load destination directory ($DOWNPATH).
5
6 You cannot use protocols for Janus Plus which do not
7 support download destination paths.
+ 933
0 44
1 QWK settings
2 Newsgroups ~
3 Netmail type ~
4 Netmail echo ~
5 Privmail echo ~
6 MessageID type~
7 Header in message body
8 delete QWK packets
9 E-Mail echo ~
-
934 (intern)
+ 935
0 57
1 Add viewer
2 Change Viewer
3 MIME type ~
4 File extension ~
5 Viewer programme~
-
+ 936
# Fensterbreite /Edit/Boxen/Edit/Client/Zusätzliche_Server/<F2>
# und /Netcall/Spezial-Liste/2x<Enter>
1 52
2 ~^Add , ^Move , ^Delete , ^OK~
3 Server (Net-type %s)
4 Delete Server "%s"
-
+ 950
# NNTP
0 45
1 NNTP settings
2 Host ~
3 Port ~
4 User ID ~
5 Password ~
6 Messages to fetch initially
7 Maximum messages to fetch ~
8 Force authentication
9 Use IPv6
-
+ 951
# POP3
0 45
1 POP3 settings
2 Server ~
3 Login name~
4 Password ~
5 Delete messages on Server
6 Encrypt passwords (APOP)
7 Get new mail only
8 Put all mails in one message area
9 Maximum size of Mail (KB) ~
10 Port ~
11 Secure Connection ~
12 STARTTLS required
13 Use IPv6
-
+ 952
# SMTP
0 45
1 SMTP settings
2 Server ~
3 Login name~
4 Password ~
5 Force AUTH CRAM-MD5
6 SMTP-after-POP
7 Port ~
8 Secure Connection ~
9 STARTTLS required
10 Use IPv6
-
+ 953
# IMAP
0 46
1 IMAP settings
2 Server ~
3 Login name~
4 Password ~
5 Delete messages on Server
6 Encrypt passwords (APOP)
7 Get new mail only
8 Put all mails in one message area
9 Port ~
10 Secure Connection ~
11 STARTTLS required
12 Messages on Server
13 Mark as seen
14 Delete
15 Leave unchanged
16 Use IPv6
-
# --- XP10 ------------------------------------------------------------
+ 1000
# Key macros
0 NUMLAET
1 All
2 Newsgrps.
3 Users
4 Messages
5 Lister
6 ArcViewer
7 Editor
8 Terminal
-
1001 Timing list no~
1002 Phone fee zones
+ 1003
1 ~Number
2 ~Numbers
+ 1004
1 all
2 Edit entry
3 New entry
4 Time from~~
5 ~until~
6 Date from ~
7 until~
8 Week days ~
9 Action ~
-
1005 Delete selected entry
+ 1006
1 Create key macro
2 Macro for~
3 Comment ~
4 Key
5 Macro
6 delete
7 Break
8 ok
+ 1007
1 Modify key macro
2 Macro ~
3 Comment ~
-
1008 Change key
+ 1009
0 Macro valid for..
1 Newsgrp. window
2 Users window
3 Message window
4 Lister
5 Archive Viewer
6 Editor
7 Terminal
+ 1010
1 Zone~
2 ~ The area code list is only
3 ~ needed for direct Fido calls.
10 Page ^1,Page ^2,Page ^3,Page ^4,Page ^5,Page ^6,Page ^7,Page ^8,Page ^9
11 Page %s
-
# Timing lists, key macros, phone zones
1011 ~^New , ^Delete , ^Edit , ^Active , ^Save , ^OK~
1012 ~^New , ^Delete , ^Edit , ^Key , ^*** , ^Save , ^OK~
1013 ~^New , ^Delete , ^Edit , ^Save , ^OK~
1014 ~normal/cheap~
1015 Discard changes
+ 1016
1 Netcall to:
2 -- no more tasks listed for current date --
3 Netcall Automatics
+ 1017
1 You haven't defined any key macros for this window!
2 Select macro ...
3 No key macros defined!
+ 1018
# window width /config/display/header
1 45
2 ~^Insert , ^Move , ^Delete , ^OK ~
3 add line:
4 seperator
5 Delete line '%s'
6 Delete seperator
+ 1019
1 ~^New , ^Edit , ^TextEdit , ^Delete , ^Info , ^OK ~
2 37
3 Delete Node/Pointlist entry?
4 ~^Yes , ^No , with ^File~
10 Add new Node or Pointlist
-
1020 Update nodediff/pointdiff
1021 phone fees
+ 1022
1 Phone fee group
2 MoTuWeThFrSaSuH1H2H3
3 Page ^1,Page ^2,Page ^3,^Days
4 from
5 to
6 page
7 Scope of phone fee group %s
8 Holiday
# width of weekday window
9 42
# position of holiday coloumn
10 24
11 Delete phone fee group %s
+ 1023
0 39
1 Phone fee settings
2 Fees for unsucessfull dial~
3 Currency ~
4 cFos phone fee calculation
5 German holidays
# Netcall/Special
+ 1024
1 Special Netcall to:
2 Server list for
3 /Netcall/Special
4 No. Server
5 to:
-
# --- XPTERM ----------------------------------------------------------
+ 2000
1 Help
2 Settings
-
2001 opening logfile ...
2002 closing logfile ...
2003 Close logfile
2004 hanging up
2005 Mini Terminal - <Alt X> to quit
2006 Connection closed - <Alt X> to quit
2007 Upload
2008 Mini Telnet - <Alt X> to quit
+ 2009
0 CrossTelnet - Connect to
1 Hostname
2 Port
-
+ 2010
0 Line %s:~
1 '"' is missing
2 Label "%s" already exists
3 Max. %s labels are possible!
4 unexpected end of line
5 invalid ON function
6 nested ON statements are not allowed
7 text parameter expected
8 invalid words at end of line
9 ON or OFF expected
10 ERROR or FAIL expected
11 invalid delay parameterr (expected number > 0)
12 numeric parameter expected
13 Label is missing: %s
14 invalid text macro: %s
15 invalid command: %s
16 invalid parameter: %s
-
+ 2011
1 Script protocol:
2 End of script:
3 *** Script error:
4 CALL without RETURN
5 Stack overflow (too many nested CALLs)
6 RETURN without CALL
-
# --- XPFIDO ----------------------------------------------------------
+ 2100
1 Find Node info (Esc to quit)
2 BBS
3 AKA [ ]
4 Sysop
5 Phone
6 Flags
7 Search
8 File
9 Status
10 E-Mail
-
+ 2101
1 Building nodelist index
2 File
3 Net
4 User
5 Sorting Net index ...
6 Sorting User index ...
7 Packing User index ... %
-
2102 Nodelist configuration - see FIDO.TXT
2103 Copying Pointlist
+ 2104
1 Shrink nodelist
2 Zones/Regions~
3 Restrictions deleted - reactivate complete NL if necessary
4 invalid entry
-
2105 Delete file list
2106 File Request
2107 Node/Name~
2108 Nodelist says: No requests at this BBS. Try requesting, anyway
+ 2109
1 Box
2 Phone
3 Flags
4 Status
-
2110 Loading file list ...
2111 File Request
+ 2112
1 Files~
2 ~start at once
3 Deleting request ...
4 Saving request ...
-
2113 ~already exists - overwrite
2114 disk full
2115 Writing to list of file lists..
2116 Directory of request file lists
+ 2117
1 Read file list
2 File not found
3 File
4 Node~~
5 Error in archive file
6 Copying file list..
7 Error while copying
8 Error renaming file
9 delete %s
10 Deleting %s ...
-
2118 Delete file list for %s
2119 Deleting file list ...
+ 2120
1 Disk write error
2 No file lists
3 Seek files
4 Seek for~
5 Ignore case
6 Seeking ..
7 File
8 found
9 Seeking for
10 no request at multiple BBS' possible
11 serach only whole words
-
2121 Error in nodelist index!
2122 Copying point list
2123 Discard selection
2124 Are you sure that this is a point list
2125 Copying nodelist
+ 2126
0 69
1 According to nodelist this BBS ist not online 24h/day. Please
2 consider that file requests may be restricted to certain hours.
3 For more information ask the BBS' SysOp!
+ 2127
0 51
1 Activate Node/Pointlist
2 Configure Node/Pointlist
5 List name ~
6 Number~
7 Format of list ~
8 Zone/Address ~
9 Update file ~
10 Update archive ~
11 Process by: ~
12 Update file is a DIFF file
13 Delete update file after processing
+ 2128
1 Nodelist
2 Points24 list
3 PVT Pointlist
4 4D Pointlist
5 FD Pointlist
+ 2129
0 30
1 Node/Pointlist info
2 File
3 Bytes
4 Entries
+ 2130
1 Extracting %s
2 Error while extracting
3 %s: Wrong version of node/point list or diff
4 Error while processing node/point diff
5 Not enough disk space to copy %s.
6 Error while copying %s.
+ 2131
0 49
1 Search Nodelist
2 Sysop ~
3 Location ~
4 BBS name ~
5 Node address
6 Phone ~
7 Fee zone ~
8 Flags ~
9 Search FidoNet node list
10 Search other node lists
11 Search point lists
20 File:
21 Net:
22 Entries:
23 found:
30 Sysop
31 ~Node list
32 Flags
33 Point
34 Point list
35 Status
-
2132 ~^Mail , ^Request , ^Info , ^Abort~
# --- XPAUTO, XPCC ----------------------------------------------------
+ 2200
1 AutoExec error:~
2 Missing Destination address
3 No Subject
4 Unknown server system: %s
5 File "%s" not found
6 File Attaches must be sent as PM!
7 Path name too long for File Attach
-
2201 Send copies to:
+2202
1 unknown user
2 unknown newsgroup
3 add to list
-
# --- UUCICO ----------------------------------------------------------
+2300
1 Protocol: UUCP-
2 /
3 bytes
4 bytes/s
5 File name:
6 File type:
7 Transfer'd:
8 Total:
9 files
10 unknown
11 Receive: ~
12 Transmit:~
# UUCP-G
20 Paket size:
21 (forced)
60 plain news batch
61 compressed news batch (compress)
62 compressed news batch (freeze)
63 compressed news batch (gzip)
64 compressed news batch (bzip2)
70 email from~
71 plain SMTP batch
77 file transfer
78 data file
79 command file
80 compressed file (compress)
81 compressed file (freeze)
82 compressed file (gzip)
83 compressed file (bzip2)
100 error #%d
102 permission denied or file error
104 unable to create temporary file
105 temporary file could not be moved into the final location
106 file too large to transfer at the moment
107 file too large to ever transfer
108 file already received previously
109 unable to open another channel
110 file too large
-
# --- XP_UUE-----------------------------------------------------------
2400 decoding message / line / Bytes
2402 Destination file
2403 Decode %s marked messages
2404 Warning: Order of decoded messages may not be correct!
2405 Warnung: Error in line; decoded file may be corrupted.
# XPIMPEXP
2420 Convert/Import messages
+ 2421
1 Message file ~
2 Messages from~
3 Receive date = date of creation
4 Send receipts on request
+ 2422
1 ZQWK.EXE not found!
2 QWK packet:
3 Newsgroup hierarchy ~
4 ZQWK convesion error:~
# ZQWK Errorlevels
91 illegal call syntax, illegal parameter
92 No messages found! (-ZQ)
93 Config file not found (-ZQ)
94 No packer / disk full / illegal QWK format
95 No messages in QWK file! (-QZ)
96 Unknown packer format (-QZ)
97 Command interpreter not found
98 Unknown DOS error
99 No QWK file name specified (-QZ)
101 Drive not ready
102 Not enough disk space
103 Not enough free main memory!
104 Packer problem
106 Output file creation error
107 Error when writing to output file
-
# XPMIME
+ 2440
1 Vorspann
2 Nachspann
3 Text
4 Image
5 Video
6 Audio
7 File
9 Message-Part ────────── Lines ──────────── Filename
10 Whole Message
-
2441 Extract Message-Part
2442 Decoding binary file ...
# --- XPE -------------------------------------------------------------
+ 2500
1 File was changed.
2 ~^Save , ^Don't save , ^Cancel~
3 Message was changed.
4 ~^Save , ^Don't save , P^ark , ^Cancel~
+ 2501
0 Note
# Number of text lines:
1 4
2 The signature is larger than %s bytes. Large
3 signatures cause unnecessary traffic and costs
4 for all members of the net.
5 Return to the editor?
6 ~^Yes , ^No ~
-
2502 Edit Text
+ 2503
# Row / Coloumn
1 Row
2 Col
11 not enough free memory
12 Paragraph exceeds size limit
13 Error loading text
14 Error saving text
15 Error: file not found
16 Text not found.
20 Replace text (Yes/No/All/Esc)
21 YNA
22 ~ replacements
23 Printing...
# menu
30 Block
31 ^Copy *
32 C^ut -
33 ^Insert +
34 ^Read ^KR
35 R^ead UUE ^KU
36 ^Write ^KW
37 -
38 ^Search ^QF
39 Re^place ^QA
40 Search ^next ^L
41 -
42 ^Wrap off F3
43 W^rap on F4
44 -
45 ^Options ^OR
46 -
47 ^Quit Esc
-
2504 Save block
2505 Read block
+ 2506
0 42
1 Search
2 Text ~
3 Ignore case
10 50
11 Search & Replace
12 Search for~
13 Replace by~
-
2507 New subject:~
+ 2508
0 30
1 Editor setup
2 Right margin ~
3 End of line marker~
4 Auto indent
5 Persistent Blocks
6 Quote-Reflow
7 Enable Ctrl-X/C/V
-
2509 and UU-encode
# --- XPSTAT ----------------------------------------------------------
2600 ~statistics of~
2601 ~statistics
2602 maximal number of systems (%s) reached
+ 2603
1 System statistics
2 Newsgroup statistics
3 From
4 ~to~
5 date of creation
6 only marked newsgroups
7 Output to /»Statistics
8 KBytes
9 Number
10 sorted by ~
11 Show max.
+ 2604
1 Calculating statistics
2 OpenXP~
3 ~of~
4 for %s selected newsgroups
5 for %s
6 for all non-internal newsgroups
7 from %s to %s
8 No System Messages KBytes %
9 gesamt: ~
10 ~No Newsgroup KBytes Mess. % HT
11 System
12 Newsgroup
-
2605 %s statistics
2606 Output to /»Statistics
2607 Groups
+ 2608
1 Calculating statistics
2 OpenXP Group Statistics of %s
3 ~No Name KBytes Messages % KB
4 ~total: ~
+ 2609
0 33
1 Phone charges
2 Charges for the year ~
3 Output to /»Statistics
4 Split up months
5 ~per line
10 Reading XPOINT.LOG...
11 Calculating statistics...
12 Month | Calls | Upload | Download | Costs
13 Total: |
14 - no phone charges in this month -
15 Phone fee
16 Phone charges for %s
-
2610 NO unsent messages found ...
+ 2611
1 unsent messages
2 Server Messages Bytes
3 Crash mails
4 PUFFER file bad!!
+ 2612
1 Zones | Regions | Nets | Nodes | Nodes/Net
2 total |
3 The %s largest nets:
4 Net | Name | Nodes
5 Flags:
10 Points ~
11 Nodes ..... :~
12 Points .... :~
13 Points/Node :~
20 Node Statistics
21 Output to /»Statistics
22 Count "down" nodes
23 Number of largest nets~
24 Show flags from ~
25 Calculating statistics ...
26 OpenXP Nodelist Statistics of %s
27 Nodelist
+ 2614
1 Last netcalls
2 today
3 yesterday
4 %s days ago
5 %s months ago
10 Show only servers with "Netcall/All" mark
-
# --- XP4E ------------------------------------------------------------
2700 not defined
+ 2701
1 Server ~
2 Net type
3 User ~
4 Address ~
5 Comment ~
6 Hold time
7 Days
8 Convert Umlauts
9 Add to "Twit" filter
10 Send receipt requests
11 Usergroup
-
2702 Add new user
+ 2703
1 Name ~
2 Comment ~
3 Server ~
-
2704 Add new user group
2705 Edit user group
+ 2706
1 Password
2 Crypt method ~
3 Default: Crypt
+ 2707
1 "@" is not allowed in newsgroup names! If you
2 want to use the Zerberus /NEWSGROUP@BOX addres-
3 sing mode add the newsgroup in the user list!
4
+ 2708
1 Days
2 Msgs.
3 Edit newsgroup
4 Add new newsgroup
5 Server ~
6 Net type
7 Newsgroup
8 Split line
9 Comment ~
10 Hold time~
11 Msg. filter
12 Group ~
13 Origin ~
-
2709 User not in database - create new User?
2710 Edit User
2711 No Server - create internal newsgroup
2712 Unknown Server - add newsgroup anyway?
2713 Name of newsgroup has changed - adjust message headers
2714 One moment please ...
+ 2715
1 ^Comment,^Server,^Hold time,^Umlauts,^Filter,^Group,^Priority,^Receipt Request,^Address,^Delete
2 ^Comment,^Server,^Hold time,^Group,^Filter,^Access
3 Edit %s marked Users
4 Edit %s marked newsgroups
5 Comment ~
6 Server ~
7 Msgs.
8 Days
9 Hold time~
10 use IBM umlauts
11 Group ~
12 Message filter
13 Write protection
-
2716 Delete %s marked users
2717 Delete %s marked newsgroups
+ 2718
1 Server ~
2 To ~
3 Subject ~
-
2719 Private message
+ 2720
1 ^All,^Unread,^New,^Today,^Reorg.,^Date/Time
2 ,^Save
2720,3 must not start with "N"!
3 Read from date:
4 Time:
5 Take from message
+ 2721
1 To:
2 ~^Newsgroup , ^User~
-
2723 daily
2724 all
2725 File not found - create it
+ 2726
1 AutoSend message
2 Copy AutoSend message
3 Subject ~
4 File ~
5 To ~
6 Server ~
7 Days ~
8 Week-days~
9 Mo¨Tu¨We¨Th¨Fr¨Sa¨Su
10 Months ~
11 binary
12 delete
13 when changed
14 Date 1 ~
15 Date 2 ~
16 supersede
-
2727 Delete selected entry?
2728 ~^Yes , ^No , ^File~
+ 2729
1 AutoSend file
2 File:
3 Size:
4 Date:
5 - File not found -
-
2730 Sort newsgroups alphabetical
+ 2731
1 Add dividing line
2 Line char. ~
3 Comment ~
-
2732 Move 1 marked newsgroup
2733 Move %s marked newsgroups
+ 2734
1 Change Server
2 Old Server ~
3 New Server ~
4 Modify Newsgroups
5 Modify Users
6 Modify local users
7 Newsgr.
8 Users
9 Modify AutoSend
10 Modify short names
11 AutoSend
12 short names
+ 2735
0 55
1 Change Newsgroup access / Re-direct
2 Re-direct to~
3 Write access forbidden
10 You have read/write access to this Newsgroup.
11
12
20 You do NOT have write-access in this Newsgroup!
21
22
30 All new messages and all replies that you post in
31 this newsgroup will be redirected to the followup
32 group/address.
40 All public replies that you post in this Newsgroup
41 will be redirected to the "Re-direct to" group/address.
42
50 All public replies by other users to your messages
51 in this newsgroup will be redirected to followup
52 newsgroup.
-
2736 %s contains messages. Delete
2737 Warning: Message encryption is not allowed in FidoNet!
2738 Delete User from address book
2739 Vertreter nicht in der Datenbank - neu anlegen
+2740
0 Assign Server "%s" to all unknown users (%s)?
1 ~^Yes , ^No , Change ^Server , ^Back~
-
+2750
# number of lines
0 11
1 For ZConnect and RFC accounts, OpenXP provides an enhanced
2 reply function ("*Reply-To-All*"). This function allows
3 replies to be automatically sent to several recipients at
4 once. For full details about this function, see the online
5 help for /*C*onfig/*O*ptions/M*e*ssages/"User selection list".
6
7
8 *This function is not activated in your configuration ...*
9
10
11 Do you wish to activate "*Reply-To-All*"?
20 ~^Yes , ^No~
-
# --- XP_DES, XP_PGP --------------------------------------------------
+ 3000
1 PGP key request answer
2 The header of this message contains the requested PGP public key.
3 This message was automatically created by OpenXP.
+ 3001
1 Request PGP Key from ...
2 PGP key request
3 If your software does support ZCONNECT-PGP then it should
4 answer this message by sending your PGP public key.
5
6 - message was created automatically -
+ 3002
1 send public key to %s
2 decode message from %s
3 read key from message %s from %s
-
# --- Error messages --------------------------------------------------
+ 10000
1 Help file %s not found!
2 File extension must be .XPS !
3 Illegal file or path name!
4 Can't delete %s !?
5 Unknown directory: %s
6 Not enough memory
7 Not enough memory for calling external program.
8 The %s unpacker settings are wrong.
9 File ist write protected.
10 Disk write error
20 *LIST: File not found!
21 Unknown function: %s
22 File not found!
23 *EDIT: File not found!
24 Can't rename %s !?
+ 10100
2 Netcall converter MAGGI.EXE not found!
6 file not found
7 Error writing %s
8 Not possible in this net.
9 Unknown server: %s
10 UUCICO.EXE not found!
11 ZQWK.EXE not found!
+ 10200
1 wrong temp directory setting
2 wrong extract directory setting
3 wrong send directory setting
4 wrong logfile directory setting
5 Please close dialog box before saving.
6 Can't find program (don't forget the extension!)
7 Invalid input - see online help
8 Can't create directory!
9 The unpacker configuration must contain $ARCHIV and $DATEI!
10 Not enough files - increase in CONFIG.SYS to at least FILES=%s!
11 Invalid phone number format - see online help!
12 Invalid phone number format - see online help!
14 Nodelist/Pointlist %s not found
17 PGP not found.
18 First enable ZCONNECT PGP support!
19 Your graphics adapter does not support VESA DPMS.
20 Please enter the full URL (http://do.main/...).
21 The device '/dev/%s' does not exist!
+ 10300
1 not possible with user groups
2 No messages marked!
3 No reply tree active!
# Puffer import
4 File not found!
5 Messagebase file - please rename!
6 Error while pmCrypt decoding
7 Receipt not possible here
8 Message is crypted, but there's no password!
9 Message is QPC-crypted, but the user has a DES password!
10 Message is DES-crypted, but the user has a QPC password!
11 Only possible with public messages!
12 That's not your message!
13 User groups are not allowed here!
14 Not possible within this net!
15 Function is not allowed here.
16 Illegal path or file name.
17 Only possible with public messages!
18 Not possible within this net!
19 That's not your message!
20 Message is QPC-crypted, but the user has a BLOWFISH password!
21 Message is DES-crypted, but the user has a BLOWFISH password!
22 Message is BLOWFISH-crypted, but the user has a QPC password!
23 Message is BLOWFISH-crypted, but the user has a DES password!
+ 10400
1 No message selected
2 Not enough memory
3 Mail archiving is not possible in this newsgroup.
4 Not allowed with that message
5 Please send message as PM
6 Reply tree is already active
7 not enough memory
8 no reply tree
9 This message has no references
10 Invalid address
11 File not found
12 Invalid file name
13 Not possible - binary file
14 Marked messages are already being displayed
15 No messages marked!
16 There are still mails in this user's newsgroup!
17 Not possible with user group!
18 no messages
19 Newsgroup is not empty
# XP4O
20 Messagebase is empty!
21 Warning: Messagebase file %s is missing!
22 Please use Message/Unsent/%s
23 Not possible with binary messages
24 Message is bad (messagebase file %s)
25 Not possible with unsent messages.
26 Message not found in database!
27 bad poll packet: %s
28 Decompression is not possible - use another temp directory!
29 File already exists - please use another extract directory!
30 File was not uncompressed correctly.
31 Not enough memory!
32 A maximum of 3 archives may be nested!
33 Illegal directory.
34 That's no archive file.
35 Not enough disk space.
36 Cannot print binary message
37 Unknown node address
38 No files marked
39 Delete unsent message with "Message/Unsent/Delete" !
40 XPack - unknown file: %s
41 Not enough memory to pack %s!
42 Function is not allowed here
43 Message was cancelled by sender - reply not possible.
44 User is not present in XP's user list.
45 Mesagebase is bad; use /Re-Org/Pack!
46 Close this newsgroup and *then* press "W" ...
47 You can't supersede a unsent message
50 Writing to this newsgroup is disabled
# XP4O3
80 %s: No Crosspostings allowed.
81 Crosspostings are possible only within one server!
82 %s: Writing to this newsgroup is not allowed.
83 %s: Crosspostings are not possible here
+ 10600
1 Date must be same or newer than today.
2 empty message - not sent
3 File was not crypted!
4 Plese send message to Server as a normal netmail.
5 not enough memory to send the message
6 Internal newsgroup - writing not allowed!
7 Unknown Server: %s
8 file path too long
9 Binary messages are not allowed in this Net
10 Subject of file attaches cannnot be changed
11 not possible - internal message
12 Not possible with binary mails.
13 Not possible with carbon copies.
14 Receipts only allowed for PMs
15 Only possible with Private messages!
16 File not found
17 Not enough disk space on temporary drive
18 Invalid send message!
19 This is not an unsent message!
20 Not possible - please resend file
21 Bad message packet: %s
22 Message does not exist in message packet !?
24 Forwarding to this newsgroup is not allowed.
25 Writing to this newsgroup is not allowed.
26 Invalid original recipient line!
27 Not possible in this type of net.
28 In MausNet only possible with PMs.
29 Not possible - net types are incompatible.
30 Invalid archive newsgroup configuration
31 Function is not allowed here
32 A maximum of %s newsgroups per server is allowed.
33 Please activate PGP first at /Config/External/PGP!
34 Call to %s is not possible.
35 Message must have a subject.
36 Binary mails are not possible here.
37 Cannot change server - different newsgroup names!
38 You are not allowed to change this message!
39 Operation not allowed with MIME multipart messages.
+ 10700
1 Internal error: Newsgroup with unsent message not found!
2 Internal error: Mail-group with unsent message not found!
3 Unsent message not found in messagebase!
4 Not enough memory for netcall!
5 No primary fido server selected
6 Nodelist not installed
7 Relogin not possible at this server
8 Script file needed for online call!
9 unknown server: %s
10 Sent message packet (%s) is bad!
11 No carrier!
12 Error while converting messages
13 Error while packing messages
14 Modem not ready - or turned off?
15 No message packet ?!
16 /ips: error
17 /n: unknown server: %s
18 File not found
19 Bad Fido packet
20 Internal error (%s) in Fido mailer
21 Error - please check modem settings (Carrier signal)!
22 Error executing XP-FM (Fido mailer)
23 invalid sysop-mode output file
24 Error while converting messages
# File Attach-Datei fehlt
25 %s missing!
26 Error copying %s
27 Invalid input directory
28 Invalid output directory
29 Error while converting Fido packets
30 Error packing mail
31 Syntax error in script - see SCERRORS.LOG
32 No FOSSIL driver installed - using built in driver
33 Invalid AKA entry - %s is no server!
34 Invalid AKA entry - no server for %s found!
35 QWK netcalls are not possible - use "Transfer"!
36 Please import a QWK packet first, to obtain the server configuration!
37 QWK error %s while message conversion!
38 Script file needed for relogin netcall!
39 ISDN or TCP/IP relogin not possible
40 ISDN CAPI driver not installed
41 Delete the subdirectory "%s"!
42 Unknown node: %s
43 No entries marked!
44 Can't talk to the device!
45 Unknown file format: %s
46 Invalid selection
47 Oops - all matching recipients marked/filtered!? (press F1 for help)
48 Sendepuffer (%s) ist fehlerhaft!
49 /nsp: Invalid line number specified for NETCALL.DAT: %s
# Not available
99 Function not implemented yet!
+ 10800
1 This server offers no automatic subscribing functions.
2 This newsgroup has no server!
3 Unknown server: %s
4 Unknown server (%s) - newsgroup list was NOT imported
5 Invalid sender address
6 BOXEN.IX1 is bad - please delete file!
7 There's no newsgroup list for this server!
8 Empty message - not sent
9 Bad sender address!?
10 The system %s is not configured as fileserver (Edit/Systems).
11 File not found.
12 %s is no file server.
13 Unknown file list format :-(
14 User groups are not allowed here.
15 The selected system is NO file server.
16 There's no file list for %s.
17 Password needed - enter at /Edit/Systems!
18 Not possible with this server.
19 Not possible with UUCP file servers.
20 System is not registered by Edit/Servers!
21 Error while copying/converting file list.
22 Sending is possible only to UUCP fileservers.
23 File not found.
24 Invalid converter configuration: no $INFILE specified
25 Invalid converter configuration: no $OUTFILE specified
26 This newsgroup cannot be subsribed.
27 This newsgroup cannot be unsubscribed.
30 %s cannot be subscribed
31 Newsgroup %s is subscribed already
# The string in the following four lines must not exceed 57 characters:
32 Net type RFC/Client: To get a new newsgroup list, the
33 appropriate function of the external client must be acti-
34 vated and the previous newsgroup list has to be deleted
35 (see Message/Message_Area_Manager/Others).
36 Sort of newsgroup list was not successful!
# NNTP
40 Group list not received!
# XP8.INC
50 No file scan message selected!
51 %s is no Fido server!
52 %s is no Fido server!
53 There is no file echo list for %s.
+ 10900
1 Invalid server configuration line: %s
2 Invalid server name!
3 The serial number must have a length of 4 digits.
4 Invalid file name
5 Directory must be different from OpenXP working directory
6 Can't creare directory!
7 Warnung: Programm "%s" not found!
8 Invalid address
9 At least one protocol must be enabled.
10 This group already exists.
11 Group can't be deleted!
12 There are still newsgroups of this group.
13 This system already exists.
14 There must be at least one system.
15 This short name already exists.
16 SETUSER - missing parameter
18 SETUSER - unknown server "%s"!
19 Please enter the server name (press F1 for help).
20 Please enter your user name (press F1 for help).
21 This server already exists
22 Primary server can't be deleted!
23 The selected server is not a FidoNet BBS!
25 Syntax error in script file
26 Without EMSI the password is limited to 8 characters!
27 Can't change - there are unsent messages!
# log file
28 Invalid file name!
#
29 "%s" is no fido server!
30 Warning - illegal characters in point name: %s
31 Standard entry can not be deleted
32 Es muß ein MIME-Typ oder eine Dateierweiterung angegeben werden!
33 "rz" and "sz" must be installed!
34 Duplicate MIME-Types or File-Extensions are not allowed!
35 Standard entry can not be modified
36 This Server is configured for TCP/IP
# The string in the following two lines must not exceed 56 characters:
37 Path must be RELATIVE and point to a directory ONE level
38 DIRECTLY below the XP directory!
39 This path must not be empty!
40 User name or eMail address required!
# The string in the following seven lines must not exceed 57 characters:
41 These settings only take effect if they are interpreted
42 by your client or client kit.
# do not delete blank line in 10900,43!
43
44 Your client may support and/or require further settings,
45 which would then have to be entered in an external confi-
46 guration file in the client directory.
47 Please consult the client documentation for more details.
48 Client directory "%s" not found!
49 Directory "%s" not found!
50 Please consult the client documentation for more details.
#
51 Client directory "%s" not found!
52 Directory "%s" not found!
#
53 There are no (more) servers that could be added!
55 Maximum input length (%s) for server names reached!
56 Maximum input length (%s) for file names (.BFG) reached!
57 Server "%s" does already exist - add, anyway
58 Input too long (Server names)! %s characters still available.
59 Input too long (file names (.BFG))! %s characters still available.
60 Server "%s" does exists already!
62 Server "%s" does not exist!
63 Server "%s" is identical with the server currently edited!
64 is not of net type %s!
65 Maximum total length (%s) of file names (.BFG) exceeded!
66 Maximum total length (%s) of Server names exceeded!
67 Invalid server configuration file name: "%s.BFG"
68 Server for file name "%s.BFG" not found!
69 Invalid Server name: "%s"
70 Envelope address must be specified!
71 Input/Output data incomplete!
+ 11000
1 unknown command
2 unknown server
3 This entry can't be deleted.
4 This list may contain a maximum of %s Entries!
5 No matching servers.
6 Empty timing list.
7 No more lines possible.
8 There must be at least one line.
9 This node/point list is already active!
10 File could not be imported as node/point list update.
11 No more zones possible.
12 No more phone fee groups possible.
13 All weekdays and holidays are in use.
14 Phone fee group 1 must not be deleted.
15 %s already belongs to another phone fee group.
16 File NETCALL.DAT not found
17 - create it
18 NETCALL.DAT does not contain any valid entries (lines 1-20)!
19 /nsp: NETCALL.DAT does not contain a valid entry in line %s!
+ 12000
1 Invalid logfile name
2 Modem not ready.
3 $FILE-Macro is not possible here.
+ 12100
1 Error in nodelist index - please rebuild index
2 No nodelist active
3 This nodelist IS already active!
4 That's no nodelist.
5 Not enough disk space to copy nodelist
6 This point list IS already active!
7 That's no valid point list.
8 Not enough disk space to copy point list
9 NDIFF.EXE not found!
10 Wrong version/date of point list or pointdiff
11 %s: Wrong version/date of nodelist or nodediff
12 Error while working on nodediff/pointdiff
13 Not enough disk space to copy nodlist update.
14 Error while working on node list
15 Unknown address
16 Unknown node address
17 No nodelist
18 No primary fido server selected (Editit/Servers)
19 No file lists
20 Error in nodelist user index - please rebuild index
21 No node list active or missing nodelist!
22 No point list active or missing pointlist!
23 Can't create %s!
24 This file is already active.
25 No FidoNet nodelist (NODELIST.###) is active.
26 No matching nodes or points were found.
+ 12200
1 AutoSend - File "%s" not found!
2 AutoSend - empty file was not sent
3 MAGGI.EXE not found
4 Can't read %s - unknown server system
5 %s: Error while converting messages
6 Message converter ZFIDO.EXE not found!
7 No primary fido server selected
8 Error while converting Fido packet
9 IPS - unknown server: %s
50 User groups are not allowed here.
51 Invalid address
+ 12300
# ZFtools
1 Warning: Fido packet '%s' has errors!
2 Broken Fido packet '%s'!
3 Broken Puffer!
# XPFM
40 Error while initialize port "%s"
97 Invalid address: "%s"
98 Invalid log file name: %s
99 XPFM error: %s
+ 12400
1 Bad line - uudecode aborted
2 Message contains no uu-encoded file
3 Can't decode file.
4 You cannot decode more than %s marked parts.
5 Too many nested message parts.
10 unsupported net type
11 Error while converting messages
12 Unknown server - select with <F2>
13 Wrong net type - must be QWK od Fido!
14 ZQWK.EXE not found! (ZQWK.EXE ist part of the XP QWK module)
15 ZQWK error %s
+ 12500
1 File cannot be saved
2 File creation error
3 Not enough memory for the internal editor!
+ 12600
1 no newsgroups marked
2 no messages!
3 there are no messages in the selected newsgroups
4 There's no logfile (XPOINT.LOG)
5 No data for %s
6 no node or point list active
7 Not possible with mail groups!
8 No entries found.
9 Only possible with regular newsgroups.
+ 12700
1 Unknown group - select with <F2>
2 Unknown server system - select with <F2>
3 This user already exists!
4 This user group already exists!
# User passwords
5 Not possible with this type of net.
6 This newsgroup already exists!
7 %s is an internal newsgroup - group cannot be changed!
8 %s is not empty.
9 Direct messages are not possible here.
10 You can move a maximum of 90 newsgroups at the same time.
11 There are unsent messages - can't change name of newsgroup.
12 Not possible with internal newsgroups.
13 Redirection is not possible - incompatible type of net.
14 Renaming is not possible - newsgroup already exists!
+ 12800
2 File not found
3 Invalid directory
4 Too many files open (increase FILES in your CONFIG.SYS!)
5 Access denied (file is read only or locked)
7 DOS memory manager destroyed
8 Not enough memory
10 Invalid DOS environment
11 Invalid DOS call format
15 Invalid drive letter
16 Directory can't be deleted
18 File seek error
101 Disk full
150 Disk is write protected
152 No disk in drive
153 Invalid DOS function
154 Disk read error (disk is damaged)
155 DOS internal error - Disk parameter block is bad
156 Disk read error (disk is damaged)
157 Disk is not formatted correctly
158 Disk is not formatted correctly
159 Printer not ready
160 Write error
161 Read error
162 Hardware error
202 Stack overflow
203 Memory overflow
209 Error in OpenXP.OVR
+ 12810
# BSD Error Codes
1 Operation not permitted
2 No such file or directory
3 No such process
4 Interrupted system call
5 I/O error
6 No such device or address
7 Arg list too long
8 Exec format error
9 Bad file number
10 No child processes
11 Try again/Operation would block
12 Out of memory
13 Permission denied
14 Bad address
15 Block device required
16 Device or resource busy
17 File exists
18 Cross-device link
19 No such device
20 Not a directory
21 Is a directory
22 Invalid argument
23 File table overflow
24 Too many open files
25 Not a typewriter
26 Text file busy
27 File too large
28 No space left on device
29 Illegal seek
30 Read-only file system
31 Too many links
32 Broken pipe
33 Math argument out of domain of func
34 Math result not representable
35 Resource deadlock would occur
36 File name too long
37 No record locks available
38 Function not implemented
39 Directory not empty
40 Too many symbolic links encountered
42 No message of desired type
43 Identifier removed
44 Channel number out of range
45 Level 2 not synchronized
46 Level 3 halted
47 Level 3 reset
48 Link number out of range
49 Protocol driver not attached
50 No CSI structure available
51 Level 2 halted
52 Invalid exchange
53 Invalid request descriptor
54 Exchange full
55 No anode
56 Invalid request code
57 Invalid slot
58 File locking deadlock error
59 Bad font file format
60 Device not a stream
61 No data available
62 Timer expired
63 Out of streams resources
64 Machine is not on the network
65 Package not installed
66 Object is remote
67 Link has been severed
68 Advertise error
69 Srmount error
70 Communication error on send
71 Protocol error
72 Multihop attempted
73 RFS specific error
74 Not a data message
75 Value too large for defined data type
76 Name not unique on network
77 File descriptor in bad state
78 Remote address changed
79 Can not access a needed shared library
80 Accessing a corrupted shared library
81 .lib section in a.out corrupted
82 Attempting to link in too many shared libraries
83 Cannot exec a shared library directly
84 Illegal byte sequence
85 Interrupted system call should be restarted
86 Streams pipe error
87 Too many users
88 Socket operation on non-socket
89 Destination address required
90 Message too long
91 Protocol wrong type for socket
92 Protocol not available
93 Protocol not supported
94 Socket type not supported
95 Operation not supported on transport endpoint
96 Protocol family not supported
97 Address family not supported by protocol
98 Address already in use
99 Cannot assign requested address
100 Network is down
101 Network is unreachable
102 Network dropped connection because of reset
103 Software caused connection abort
104 Connection reset by peer
105 No buffer space available
106 Transport endpoint is already connected
107 Transport endpoint is not connected
108 Cannot send after transport endpoint shutdown
109 Too many references: cannot splice
110 Connection timed out
111 Connection refused
112 Host is down
113 No route to host
114 Operation already in progress
115 Operation now in progress
116 Stale NFS file handle
117 Structure needs cleaning
118 Not a XENIX named type file
119 No XENIX semaphores available
120 Is a named type file
121 Remote I/O error
122 Quota exceeded
+ 13000
1 %s not found.
2 Encoding/signing was not successful.
3 This function is not supported for %s.
4 Decoding was not successful.
5 Error extracting key.
6 Signature testing did not succeed.
7 Illegal signature!
-
+ 13100
# Zeilenanzahl
0 11
1 At least one of your storage files (MPUFFER.*)
2 is approaching the critical size of 2 GB. If this size
3 is exceeded then OpenXP will no longer work reliably.
4
5 To increase the number of storage files you should
6 start OpenXP with the command line parameter
7 /MaxAblagen:###, where ### is the number of the highest
8 storage file plus 1, e.g. /MaxAblagen:30 for storage
9 files 10..29 instead of the usual 10..19.
10
11 This hint can be disabled in Config/Options/Miscellaneous.
.
+ 13101
# Zeilenanzahl
0 6
1 At least one of your storage files (MPUFFER.*) exceeded
2 the critical size of 2 GB.
3
4 OpenXP will no longer work reliably.
5
6 To be on the safe side, the program will now be terminated.
-
+ 29900
1
2 N
-
# --- Settings --------------------------------------------------------
# The following part contains some very special configuration settings.
# You should not change these settings unless you are absolutely sure
# what you are doing.
#
# When translating this text, you may ONLY alter the comment lines. All
# data lines, also those containing German text parts, must stay un-
# changed!
+ 30000
# Possible MausTausch protocol start sequences; German specific:
1 protokoll startet
2 downloaden
3 **B
-
# --- Changes on the basic menu structure
+ 30001
1 Choose COM-Port
2 Serial ^1 (COM1),Serial ^2 (COM2),Serial ^3 (COM3),Serial ^4 (COM4)
3 Serial ^1 (COM1),Serial ^2 (COM2),Serial ^3 (COM3),Serial ^4 (COM4),^ISDN
4 Devices
5 Device ^1,Device ^2,Device ^3,Device ^4
-
# --- New Fido
+30003
1 Searching packets (%s)
2 Unpack %s
10 Converting FTS --> ZConnect
11 File.......:
12 Number.....:
13 From.......:
14 To.........:
15 Subject....:
16 Status.....:
20 Converting ZConnect -> FTS
50 Copy %s to BAD.
51 Unknown group pattern '%s'
-
# XPFM
+30004
1 Call to %s
2 Hangup modem
3 Can't hangup modem - line still up?
4 Initialize modem
5 Dial %s (try %s)...
6 Wait for next call...
7 canceled
# Uebertragung
10 Send %s...
11 Receiving %s...
12 Send...
13 Receiving...
14 Transmission aborted
# Login, Handshake
20 Hello-Send error
21 Hello-Receive error
22 Handshake OK
23 EMSI_NAK: repeat EMSI packet
24 Invalid EMSI packet received
25 Adjusting time
26 not implemented
27 No transmission possible :-(
# Fehler
80 InPath missing
81 InPath invalid
82 MailPath missing
83 MailPath invalid
84 Invalid file name (temp. file)
85 Name missing
86 'Address' missing
87 Invalid baud rate
88 Port address is missing
89 IRQ is missing
-
# --- NNTP ------------------------------------------------------------
+ 30010
# Groups
1 ^All groups,^New groups,^Sub-groups
2 This may take a while, are you sure
3 ~ - Fetch Group List
4 Action.......:
5 NNTP-State...:
6 Host.........:
7 Server.......:
8 Connecting...
9 Unknown
10 Fetch list...
11 Save list (%d groups)
-
# --- Texte in der Konfiguration --------------------------------------
# Fuer die Studie der neuen Cfg-Datei. Resource z.Zt. nur in Deutsch
# Ich wuerde ja eine hoehere Nummer nehmen, aber ist sicher, dass
# OpenXP keinen signed int benutzt? :-/
# Die Resource 0 enthaelt die Zeilenzahl.
+ 31000
# Intro Datei
0 28
1 Konfigurationsdatei fuer OpenXP
2 ----------------------------------------------------------------------
3
4 In dieser Datei werden alle Informationen gespeichert. Sie koennen
5 diese Datei auch manuell aendern, auch wenn es meistens keinen Sinn
6 macht. Die Datei gliedert sich in verschiedene Sektionen. Zu jeder
7 Sektion finden Sie einen Hinweis, welche Bedeutung sich dahinter
8 verbirgt. Fuer den allgemeinen Syntax beachten Sie bitte folgendes:
9 - Kommentare werden durch das '#'-Zeichen eingeleitet
10 - Sie koennen eigene Kommentare einfuegen, diese bleiben erhalten
11 - Sektionen stehen in eckigen Klammern ('[' und ']').
12 - Eine Sektion kann nur einmal vorkommen
13 - Sie endet mit dem Beginn einer neuen Sektion.
14 - Jeder Eintrag besteht aus einem Schluessel und einem Wert
15 - Bei dem Schluessel ist die Schreibweise egal
16 - Beim Wert haengt es von der moeglichen Interpretation ab
17
18 Beachten Sie bitte auch folgendes: Die in dieser Datei enthaltenen
19 Konfigurationsdaten werden als letztes von OpenXP eingelesen. Nicht
20 alle Schluesselwoerter, die Sie aus den bisherigen Dateien
21 XPOINT.CFG, XPOINT2.CFG und XPOINT.COL kennen, werden hier
22 automatisch unterstuetzt. Welche Einstellungsmoeglichkeiten durch
23 diese Konfigurationsdatei unterstuetzt werden, entnehmen Sie bitte
24 dieser Datei. Wenn in kuenftigen Versionen neuen Konfigurationsdaten
25 hinzugefuegt werden, finden Sie diese automatisch in dieser Datei
26 wieder.
27
28
-
+ 31001
# Global
0 1
1 Globale Einstellungen
-
+ 31002
# Color
0 1
1 Farbeinstellungen
-
+ 31003
# Dos
0 1
1 Dos-Einstellungen
-
+ 31004
# Linux
0 10
1
2 In der Sektion Linux befinden sich verschiedene Einstellungen,
3 die fuer den Betrieb unter Linux von Bedeutung sind. Wichtig ist
4 dabei, dass u.U. Angaben vorhanden sind, die in einer anderen
5 Form in einer der anderen Konfigurationsdateien vorhanden sind.
6 Fuer die Linux-Version sind dann jedoch die Einstellungen aus
7 dieser Datei relevant. Diesen Punkt sollten Sie unbedingt
8 beachten, falls Sie Tools von Drittanbietern verwenden
9
10
-
+ 31005
# OS2
0 1
1 OS/2 Einstellungen
-
+ 31006
# Win
0 1
1 Windows-Einstellungen
-
+ 31007
# Z-Netz
0 1
1 Einstellungen zum Z-Netz
-
+ 31008
# RFC
0 1
1 Einstellungen zu RFC
-
+ 31009
# Maus
0 1
1 Hier finden Sie die Einstellungen zum MausTausch
-
+ 31010
# FTN
0 1
1 Hier befinden sich die fuer FTN-Formate spezifischen Einstellungen
-
+ 31011
# User
0 1
1 Hier befinden sich die benutzerspezifischen Einstellungen
-
+ 31012
# F-Keys
0 1
1 Hier sind die Definitionen der Funktionstasten
-
+ 31013
# TempDir
0 7
1
2
3 TempDir bestimmt das Verzeichnis, welches von OpenXP fuer
4 temporaere Dateien benutzt werden soll. Wenn Sie diesen
5 Wert aendern, so stellen Sie sicher, dass ausreichend
6 Platz in dem Verzeichnis zur Verfuegung steht.
7
-
+ 31014
# ExtractDir
0 5
1
2
3 ExtractDir bestimmt das Verzeichnis, in welches die Daten
4 gespeichert werden, die Sie extrahieren.
5
-
+ 31015
# SendfileDir
0 6
1
2
3 SendfileDir bestimmt das Verzeichnis, in welchem sich die Dateien
4 befinden, die versandt werden sollen (z.B. Autoversandt), wenn Sie
5 keinen vollstaendigen Pfad angegeben haben.
6
-
+ 31016
# LogDir
0 4
1
2
3 LogDir bezeichnets das Verzeichnis fuer die Log-Dateien.
4
-
+ 31017
# FileDir
0 4
1
2
3 FileDir dient der Ablage von Dateien.
4
-
+ 31018
# TermDevice
0 6
1
2 TermDevice legt das Device fest, welches vom Terminal benutzt werden
3 soll. Das Device muss im Verzeichnis /dev/ vorhanden sein. Als
4 Default-Wert wird 'modem' angenommen. 'TermDevice=modem' greift also
5 auf /dev/modem zu. Fuer ISDN-Karten kann hier 'ttyI#' angegeben werden.
6
-
+ 31100
# localized netcall strings
1 Attempting to connect with %s...
2 Unreachable: %s
3 Login failed: %s
4 Connected to %s
5 Disconnecting...
6 Error: %s
7 Connection failed
8 Cancelled by user
9 Internal error:
10 Error %d whilst sending the message
11 Sending message %d (total %.0f%%)
12 Authentication required
13 Set reader mode...
14 Cannot communicate with %s!
15 %s will not release the list!
16 %d newsgroup names read
17 Search description for %s...
18 Group %s not found
19 Retrieving article %d, line %d
20 Retrieving header %d, line %d
21 Article %s no longer available on the server
22 Retrieving Message-ID %s, line %d
23 %s retrieving newsgroup list
24 %s sending news posts
25 %s receiving news posts
26 Newsgroup %s (%d of %d)
27 Retrieving article %d to %d of %d
28 Server supports neither LAST nor UIDL
29 %s sending messages
30 %s receiving messages
31 %s receiving messages
32 %d (%d new) messages in %u bytes
33 Retrieving message No. %d
34 Message No. %d is too large and will be skipped
35 %d (%d new) messages
36 Retrieving header %d to %d of %d
37 Incoming messages total: %d
38 Message no longer available on the server
-