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
|
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: strings.src,v $
*
* $Revision: 1.111 $
*
* last change: $Author: rt $ $Date: 2005-09-09 03:46:35 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
#include "strings.hrc"
#include "glob.hrc"
String STR_DRAW_TOOLBOX
{
Text [ de ] = "Zeichenwerkzeugleiste" ;
Text [ en-US ] = "Drawings Toolbar" ;
};
String STR_GRAPHIC_TOOLBOX
{
Text [ de ] = "Zeichenwerkzeugleiste/Grafik" ;
Text [ en-US ] = "Draw toolbar/Graphics" ;
};
String RID_PLUGINTOOLBOX
{
Text [ de ] = "PlugInleiste" ;
Text [ en-US ] = "Plug-in Bar" ;
};
String STR_SLIDE_TOOLBOX
{
Text [ de ] = "Folienwerkzeugleiste" ;
Text [ en-US ] = "Slide Bar" ;
};
String STR_OUTLINE_TOOLBOX
{
Text [ de ] = "Gliederungswerkzeugleiste" ;
Text [ en-US ] = "Outline Bar" ;
};
String STR_DRAW_OBJ_TOOLBOX
{
Text [ de ] = "Zeichenobjektleiste" ;
Text [ en-US ] = "Draw Object Bar" ;
};
String STR_GRAPHIC_OBJ_TOOLBOX
{
Text [ de ] = "Zeichenobjektleiste/Grafik" ;
Text [ en-US ] = "Draw object bar/Graphics" ;
};
String STR_DRAW_OPTIONS_TOOLBOX
{
Text [ de ] = "Optionsleiste" ;
Text [ en-US ] = "Options Bar" ;
};
String STR_GRAPHIC_OPTIONS_TOOLBOX
{
Text [ de ] = "Optionsleiste/Grafik" ;
Text [ en-US ] = "Options bar/Graphics" ;
};
String STR_DRAW_COMMONTASK_TOOLBOX
{
/* ### ACHTUNG: Neuer Text in Resource? Prsentation : Prsentation */
Text [ de ] = "Prsentation" ;
Text [ en-US ] = "Presentation" ;
};
String STR_SLIDE_OBJ_TOOLBOX
{
Text [ de ] = "Folienobjektleiste" ;
Text [ en-US ] = "Slide Object Bar" ;
};
String STR_BEZIER_TOOLBOX
{
/* ### ACHTUNG: Neuer Text in Resource? Bzierobjektleiste : Bzierobjektleiste */
Text [ de ] = "Bzierobjektleiste" ;
Text [ en-US ] = "Bézier object bar" ;
};
String STR_GLUEPOINTS_TOOLBOX
{
Text [ de ] = "Klebepunkteobjektleiste" ;
Text [ en-US ] = "Glue Point Object Bar" ;
};
String STR_DRAW_TEXT_TOOLBOX
{
Text [ de ] = "Textobjektleiste" ;
Text [ en-US ] = "Text Object Bar" ;
};
String STR_GRAPHIC_TEXT_TOOLBOX
{
Text [ de ] = "Textobjektleiste/Draw" ;
Text [ en-US ] = "Text Object Bar/Draw" ;
};
String RID_APPTITLE
{
Text = "StarImpress 4.0" ;
};
String STR_DEFAULTVIEW
{
Text [ de ] = "Default" ;
Text [ en-US ] = "Default" ;
};
String STR_SPECIALVIEW
{
Text [ de ] = "Special" ;
Text [ en-US ] = "Special" ;
};
String STR_DIAVIEW
{
Text [ de ] = "Folie" ;
Text [ en-US ] = "Slide" ;
};
String STR_NULL
{
Text [ de ] = "Kein" ;
Text [ en-US ] = "None" ;
};
String STR_SOLID
{
/* ### ACHTUNG: Neuer Text in Resource? Durchgngig : Durchgngig */
Text [ de ] = "Durchgngig" ;
Text [ en-US ] = "Continuous" ;
};
String STR_DOT
{
Text [ de ] = "Punkte" ;
Text [ en-US ] = "Dots" ;
};
String STR_DASH
{
Text [ de ] = "Striche" ;
Text [ en-US ] = "Dashes" ;
};
String STR_DASHDOT
{
Text [ de ] = "Striche und Punkte" ;
Text [ en-US ] = "Dashes and Dots" ;
};
String STR_BLACK
{
Text [ de ] = "Schwarz" ;
Text [ en-US ] = "Black" ;
};
String STR_BLUE
{
Text [ de ] = "Blau" ;
Text [ en-US ] = "Blue" ;
};
String STR_RED
{
Text [ de ] = "Rot" ;
Text [ en-US ] = "Red" ;
};
String STR_GREEN
{
/* ### ACHTUNG: Neuer Text in Resource? Grn : Grn */
Text [ de ] = "Grn" ;
Text [ en-US ] = "Green" ;
};
String STR_CYAN
{
Text [ de ] = "Cyan" ;
Text [ en-US ] = "Cyan" ;
};
String STR_MAGENTA
{
Text [ de ] = "Magenta" ;
Text [ en-US ] = "Magenta" ;
};
String STR_YELLOW
{
Text [ de ] = "Gelb" ;
Text [ en-US ] = "Yellow" ;
};
String STR_WHITE
{
/* ### ACHTUNG: Neuer Text in Resource? Wei : Wei */
Text [ de ] = "Wei" ;
Text [ en-US ] = "White" ;
};
String STR_BROWN
{
Text [ de ] = "Braun" ;
Text [ en-US ] = "Brown" ;
};
String STR_GRAY
{
Text [ de ] = "Grau" ;
Text [ en-US ] = "Gray" ;
};
String STR_LIGHTGRAY
{
Text [ de ] = "Hellgrau" ;
Text [ en-US ] = "Light Gray" ;
};
String STR_LIGHTBLUE
{
Text [ de ] = "Hellblau" ;
Text [ en-US ] = "Light Blue" ;
};
String STR_LIGHTGREEN
{
/* ### ACHTUNG: Neuer Text in Resource? Hellgrn : Hellgrn */
Text [ de ] = "Hellgrn" ;
Text [ en-US ] = "Light Green" ;
};
String STR_LIGHTRED
{
Text [ de ] = "Hellrot" ;
Text [ en-US ] = "Light Red" ;
};
String STR_LIGHTMAGENTA
{
Text [ de ] = "Hellmagenta" ;
Text [ en-US ] = "Light Magenta" ;
};
String STR_LIGHTCYAN
{
Text [ de ] = "Hellcyan" ;
Text [ en-US ] = "Light Cyan" ;
};
String STR_BRUSH_SOLID
{
Text [ de ] = "Voll" ;
Text [ en-US ] = "Solid" ;
};
String STR_HORZ
{
Text [ de ] = "Horizontal" ;
Text [ en-US ] = "Horizontal" ;
};
String STR_VERT
{
Text [ de ] = "Vertikal" ;
Text [ en-US ] = "Vertical" ;
};
String STR_CROSS
{
Text [ de ] = "Kariert" ;
Text [ en-US ] = "Checkered" ;
};
String STR_DIAGCROSS
{
Text [ de ] = "Diag. Kariert" ;
Text [ en-US ] = "Checkered Diagonal" ;
};
String STR_UPDIAG
{
Text [ de ] = "Hoch Diag." ;
Text [ en-US ] = "Diagonal Up" ;
};
String STR_DOWNDIAG
{
Text [ de ] = "Runter Diag." ;
Text [ en-US ] = "Diagonal Down" ;
};
String STR_25
{
Text [ de ] = "25%" ;
Text [ en-US ] = "25%" ;
};
String STR_50
{
Text [ de ] = "50%" ;
Text [ en-US ] = "50%" ;
};
String STR_75
{
Text [ de ] = "75%" ;
Text [ en-US ] = "75%" ;
};
String STR_NO_BRUSH
{
Text [ de ] = "Kein Muster" ;
Text [ en-US ] = "No pattern" ;
};
String STR_INSERTPAGE
{
/* ### ACHTUNG: Neuer Text in Resource? Seite einfgen : Seite einfgen */
Text [ de ] = "Seite einfgen" ;
Text [ en-US ] = "Insert Slide" ;
};
String STR_MODIFYPAGE
{
/* ### ACHTUNG: Neuer Text in Resource? Seitenlayout ndern : Seitenlayout ndern */
Text [ de ] = "Folienlayout" ;
Text [ en-US ] = "Slide Layout" ;
};
String STR_INSERTLAYER
{
/* ### ACHTUNG: Neuer Text in Resource? Ebene einfgen : Ebene einfgen */
Text [ de ] = "Ebene einfgen" ;
Text [ en-US ] = "Insert Layer" ;
};
String STR_MODIFYLAYER
{
/* ### ACHTUNG: Neuer Text in Resource? Ebene ndern : Ebene ndern */
Text [ de ] = "Ebene ndern" ;
Text [ en-US ] = "Modify Layer" ;
};
String STR_NO_EFFECT
{
Text [ de ] = "kein Effekt" ;
Text [ en-US ] = "No Effect" ;
};
String STR_UNDO_SLIDE_PARAMS
{
Text [ de ] = "Folien Parameter" ;
Text [ en-US ] = "Slide parameter" ;
};
String STR_UNDO_SLIDE_MOVE
{
Text [ de ] = "Folie verschieben" ;
Text [ en-US ] = "Move slide" ;
};
String STR_UNDO_CUT
{
Text [ de ] = "Ausschneiden" ;
Text [ en-US ] = "Cut" ;
};
String STR_UNDO_REPLACE
{
Text [ de ] = "ersetzen" ;
Text [ en-US ] = "Replace" ;
Text [ x-comment ] = "Klein-Gross? - -";
};
String STR_ALIGN_LEFT
{
Text [ de ] = "Ausrichten links" ;
Text [ en-US ] = "Align left" ;
};
String STR_ALIGN_CENTER
{
Text [ de ] = "Ausrichten zentriert" ;
Text [ en-US ] = "Align centered" ;
};
String STR_ALIGN_RIGHT
{
Text [ de ] = "Ausrichten rechts" ;
Text [ en-US ] = "Align right" ;
};
String STR_ALIGN_UP
{
Text [ de ] = "Ausrichten oben" ;
Text [ en-US ] = "Align top" ;
};
String STR_ALIGN_MIDDLE
{
Text [ de ] = "Ausrichten mittig" ;
Text [ en-US ] = "Align middle" ;
};
String STR_ALIGN_DOWN
{
Text [ de ] = "Ausrichten unten" ;
Text [ en-US ] = "Align bottom" ;
};
String STR_UNDO_DRAGDROP
{
Text [ de ] = "Drag&Drop" ;
Text [ en-US ] = "Drag and Drop" ;
};
String STR_INSERTGRAPHIC
{
Text [ de ] = "Bild einfgen" ;
Text [ en-US ] = "Insert picture" ;
};
String STR_LINESTYLE
{
Text [ de ] = "Linienstil" ;
Text [ en-US ] = "Line Style" ;
};
String STR_DESC_LINESTYLE
{
/* ### ACHTUNG: Neuer Text in Resource? Geben Sie hier bitte den Namen fr den neuen Linienstil ein: : Geben Sie hier bitte den Namen fr den neuen Linienstil ein: */
Text [ de ] = "Geben Sie hier bitte den Namen fr den neuen Linienstil ein:" ;
Text [ en-US ] = "Please enter a name for the new line style:" ;
};
String STR_DEL_LINESTYLE
{
/* ### ACHTUNG: Neuer Text in Resource? Linienstil lschen : Linienstil lschen */
Text [ de ] = "Linienstil lschen" ;
Text [ en-US ] = "Delete line style" ;
};
String STR_ASK_DEL_LINESTYLE
{
/* ### ACHTUNG: Neuer Text in Resource? Soll der Linienstil wirklich gelscht werden? : Soll der Linienstil wirklich gelscht werden? */
Text [ de ] = "Soll der Linienstil wirklich gelscht werden?" ;
Text [ en-US ] = "Do you want to delete the line style?" ;
};
String STR_INVISIBLE
{
Text [ de ] = "Unsichtbar" ;
Text [ en-US ] = "Invisible" ;
};
String STR_COLOR
{
Text [ de ] = "Farbe" ;
Text [ en-US ] = "Color" ;
};
String STR_HATCH
{
Text [ de ] = "Schraffur" ;
Text [ en-US ] = "Hatching" ;
};
String STR_AREA
{
/* ### ACHTUNG: Neuer Text in Resource? Flche : Flche */
Text [ de ] = "Flche" ;
Text [ en-US ] = "Area" ;
};
String STR_LINE
{
Text [ de ] = "Linie" ;
Text [ en-US ] = "Line" ;
};
String STR_EFFECT
{
Text [ de ] = "Effekt" ;
Text [ en-US ] = "Effect" ;
};
String STR_SLOW
{
Text [ de ] = "Langsam" ;
Text [ en-US ] = "Slow" ;
};
String STR_MEDIUM
{
Text [ de ] = "Mittel" ;
Text [ en-US ] = "Medium" ;
};
String STR_FAST
{
Text [ de ] = "Schnell" ;
Text [ en-US ] = "Fast" ;
};
String STR_CHANGE
{
Text [ de ] = "Wechsel" ;
Text [ en-US ] = "Transition" ;
};
String STR_AUTO
{
Text [ de ] = "Automatisch" ;
Text [ en-US ] = "Automatic" ;
};
String STR_SEMIAUTO
{
Text [ de ] = "Halbautomatisch" ;
Text [ en-US ] = "Semiautomatic" ;
};
String STR_MANUEL
{
Text [ de ] = "Manuell" ;
Text [ en-US ] = "Manual" ;
};
String STR_BASIC_IDE
{
Text [ de ] = "Basic-IDE" ;
Text [ en-US ] = "Basic IDE" ;
};
//-------------------------------------
String STR_BEZ_CONV_LINE
{
Text [ de ] = "~In Linie" ;
Text [ en-US ] = "~To Line" ;
};
String STR_BEZ_CONV_CURVE
{
Text [ de ] = "~In Kurve" ;
Text [ en-US ] = "~To Curve" ;
};
//-------------------------------------
String STR_UNDO_BEZCONV
{
Text [ de ] = "Polygonsegment konvertieren" ;
Text [ en-US ] = "Convert polygon segment" ;
};
String STR_UNDO_BEZSMOOTH
{
/* ### ACHTUNG: Neuer Text in Resource? ndern Kurvenglttung : ndern Kurvenglttung */
Text [ de ] = "ndern Kurvenglttung" ;
Text [ en-US ] = "Modify curve smoothing" ;
};
String STR_UNDO_BEZCLOSE
{
/* ### ACHTUNG: Neuer Text in Resource? Polygon schlieen : Polygon schlieen */
Text [ de ] = "Polygon schlieen" ;
Text [ en-US ] = "Close Polygon" ;
};
//-------------------------------------
String STR_SLIDE_MODE
{
Text [ de ] = "Foliensortierung" ;
Text [ en-US ] = "Slide Sorter" ;
};
String STR_DRAW_MODE
{
Text [ de ] = "Normal" ;
Text [ en-US ] = "Normal" ;
};
String STR_OUTLINE_MODE
{
Text [ de ] = "Gliederung" ;
Text [ en-US ] = "Outline" ;
};
String STR_NOTES_MODE
{
Text [ de ] = "Notizen" ;
Text [ en-US ] = "Notes" ;
};
String STR_HANDOUT_MODE
{
Text [ de ] = "Handout" ;
Text [ en-US ] = "Handout" ;
};
String STR_PRESENTATION_LAYOUT
{
/* ### ACHTUNG: Neuer Text in Resource? Prsentationslayout : Prsentationslayout */
Text [ de ] = "Prsentationslayout" ;
Text [ en-US ] = "Presentation layout" ;
};
String STR_AUTOLAYOUT_NONE
{
Text [ de ] = "Leere Folie" ;
Text [ en-US ] = "Blank Slide" ;
};
String STR_AUTOLAYOUT_ONLY_TITLE
{
Text [ de ] = "Nur Titel" ;
Text [ en-US ] = "Title Only" ;
};
String STR_AUTOLAYOUT_TITLE
{
Text [ de ] = "Titelfolie" ;
Text [ en-US ] = "Title Slide" ;
};
String STR_AUTOLAYOUT_OBJ
{
Text [ de ] = "Titel, Objekt" ;
Text [ en-US ] = "Title, Object" ;
};
String STR_AUTOLAYOUT_ENUM
{
Text [ de ] = "Titel, Text" ;
Text [ en-US ] = "Title, Text" ;
};
String STR_AUTOLAYOUT_CHART
{
Text [ de ] = "Titel, Diagramm" ;
Text [ en-US ] = "Title, Chart" ;
};
String STR_AUTOLAYOUT_ORG
{
Text [ de ] = "Titel, Organigramm" ;
Text [ en-US ] = "Title, Organization Chart" ;
};
String STR_AUTOLAYOUT_TAB
{
Text [ de ] = "Titel, Tabelle" ;
Text [ en-US ] = "Title, Spreadsheet" ;
};
String STR_AUTOLAYOUT_CLIPTEXT
{
Text [ de ] = "Titel, Clipart, Text" ;
Text [ en-US ] = "Title, Clipart, Text" ;
};
String STR_AUTOLAYOUT_2TEXT
{
Text [ de ] = "Titel, 2 Texte" ;
Text [ en-US ] = "Title, 2 Text Blocks" ;
};
String STR_AUTOLAYOUT_TEXTCHART
{
Text [ de ] = "Titel, Text, Diagramm" ;
Text [ en-US ] = "Title, Text, Chart" ;
};
String STR_AUTOLAYOUT_TEXTCLIP
{
Text [ de ] = "Titel, Text, Clipart" ;
Text [ en-US ] = "Title, Text, Clipart" ;
};
String STR_AUTOLAYOUT_CHARTTEXT
{
Text [ de ] = "Titel, Diagramm, Text" ;
Text [ en-US ] = "Title, Chart, Text" ;
};
String STR_AUTOLAYOUT_TEXTOBJ
{
Text [ de ] = "Titel, Text, Objekt" ;
Text [ en-US ] = "Title, Text, Object" ;
};
String STR_AUTOLAYOUT_TEXT2OBJ
{
Text [ de ] = "Titel, Text, 2 Objekte" ;
Text [ en-US ] = "Title, Text, 2 Objects" ;
};
String STR_AUTOLAYOUT_OBJTEXT
{
Text [ de ] = "Titel, Objekt, Text" ;
Text [ en-US ] = "Title, Object, Text" ;
};
String STR_AUTOLAYOUT_OBJOVERTEXT
{
/* ### ACHTUNG: Neuer Text in Resource? Titel, Objekt ber Text : Titel, Objekt ber Text */
Text [ de ] = "Titel, Objekt ber Text" ;
Text [ en-US ] = "Title, Object Above Text" ;
};
String STR_AUTOLAYOUT_2OBJTEXT
{
Text [ de ] = "Titel, 2 Objekte, Text" ;
Text [ en-US ] = "Title, 2 Objects, Text" ;
};
String STR_AUTOLAYOUT_2OBJOVERTEXT
{
/* ### ACHTUNG: Neuer Text in Resource? Titel, 2 Objekte ber Text : Titel, 2 Objekte ber Text */
Text [ de ] = "Titel, 2 Objekte ber Text" ;
Text [ en-US ] = "Title, 2 Objects Above Text" ;
};
String STR_AUTOLAYOUT_TEXTOVEROBJ
{
/* ### ACHTUNG: Neuer Text in Resource? Titel, Text ber Objekt : Titel, Text ber Objekt */
Text [ de ] = "Titel, Text ber Objekt" ;
Text [ en-US ] = "Title, Text Above Object" ;
};
String STR_AUTOLAYOUT_4OBJ
{
Text [ de ] = "Titel, 4 Objekte" ;
Text [ en-US ] = "Title, 4 Objects" ;
};
String STR_AL_TITLE_VERT_OUTLINE
{
Text [ de ] = "Titel, vertikaler text" ;
Text [ en-US ] = "Title, Vertical Text" ;
};
String STR_AL_TITLE_VERT_OUTLINE_CLIPART
{
Text [ de ] = "Titel, vertikaler Text, Clipart" ;
Text [ en-US ] = "Title, Vertical Text, Clipart" ;
};
String STR_AL_VERT_TITLE_TEXT_CHART
{
Text [ de ] = "Vertikaler Titel, Text, Diagramm" ;
Text [ en-US ] = "Vertical Title, Text, Chart" ;
};
String STR_AL_VERT_TITLE_VERT_OUTLINE
{
Text [ de ] = "Vertikaler Titel, vertikaler Text" ;
Text [ en-US ] = "Vertical Title, Vertical Text" ;
};
String STR_AUTOLAYOUT_HANDOUT1
{
Text [ de ] = "Eine Seite" ;
Text [ en-US ] = "One Slide" ;
};
String STR_AUTOLAYOUT_HANDOUT2
{
Text [ de ] = "Zwei Seiten" ;
Text [ en-US ] = "Two Slides" ;
};
String STR_AUTOLAYOUT_HANDOUT3
{
Text [ de ] = "Drei Seiten" ;
Text [ en-US ] = "Three Slides" ;
};
String STR_AUTOLAYOUT_HANDOUT4
{
Text [ de ] = "Vier Seiten" ;
Text [ en-US ] = "Four Slides" ;
};
String STR_AUTOLAYOUT_HANDOUT6
{
Text [ de ] = "Sechs Seiten" ;
Text [ en-US ] = "Six Slides" ;
};
String STR_AUTOLAYOUT_NOTES
{
Text [ de ] = "Notizen" ;
Text [ en-US ] = "Notes" ;
};
String STR_TRANSFORM
{
Text [ de ] = "transformieren" ;
Text [ en-US ] = "transform" ;
};
/* ### ACHTUNG: Neuer Text in Resource! */
String STR_PAGEMODE
{
Text [ de ] = "Seitenansicht" ;
Text [ en-US ] = "Slide View" ;
};
/* ### ACHTUNG: Neuer Text in Resource! */
String STR_LAYERMODE
{
Text [ de ] = "Ebenenansicht" ;
Text [ en-US ] = "Layer View" ;
};
/* ### ACHTUNG: Neuer Text in Resource! */
String STR_MASTERPAGEMODE
{
Text [ de ] = "Masteransicht" ;
Text [ en-US ] = "Master View" ;
};
String STR_OPEN_OBJECT
{
/* ### ACHTUNG: Neuer Text in Resource? ~Objekt ffnen : ~Objekt ffnen */
Text [ de ] = "~Objekt ffnen" ;
Text [ en-US ] = "Open ~object" ;
};
String STR_CLOSE_OBJECT
{
/* ### ACHTUNG: Neuer Text in Resource? ~Objekt schlieen : ~Objekt schlieen */
Text [ de ] = "~Objekt schlieen" ;
Text [ en-US ] = "Close ~Object" ;
};
String STR_LINEEND
{
Text [ de ] = "Linienende" ;
Text [ en-US ] = "Line Ends" ;
};
String STR_DESC_LINEEND
{
/* ### ACHTUNG: Neuer Text in Resource? Geben Sie hier bitte den Namen fr das neue Linienende ein: : Geben Sie hier bitte den Namen fr das neue Linienende ein: */
Text [ de ] = "Geben Sie hier bitte den Namen fr das neue Linienende ein:" ;
Text [ en-US ] = "Please enter a name for the new arrowhead:" ;
};
String STR_WARN_NAME_DUPLICATE
{
Text [ de ] = "Der von Ihnen eingegebene Name ist schon vorhanden. \nGeben Sie bitte einen anderen Namen ein." ;
Text [ en-US ] = "The name chosen already exists. \nPlease enter another name." ;
};
String STR_UNDO_ANIMATION
{
Text [ de ] = "Animationsparameter" ;
Text [ en-US ] = "Animation parameters" ;
};
String STR_UNDO_ANIMATION_ORDER
{
Text [ de ] = "Animations-Reihenfolge" ;
Text [ en-US ] = "Animation order" ;
};
String STR_EXPORT_ALL
{
Text [ de ] = "[Alle Formate]" ;
Text [ en-US ] = "[All formats]" ;
};
String STR_EXPORT_UNKNOWN_FORMAT
{
Text [ de ] = "Unbekanntes Dateiformat!" ;
Text [ en-US ] = "Unknown file format!" ;
};
String STR_EXPORT_PATH_NOT_FOUND1
{
Text [ de ] = "Das Verzeichnis '" ;
Text [ en-US ] = "The directory '" ;
};
String STR_EXPORT_PATH_NOT_FOUND2
{
Text [ de ] = "' existiert nicht." ;
Text [ en-US ] = "' does not exist." ;
};
String STR_EXPORT_HTML_NAME
{
Text [ de ] = "Webseite" ;
Text [ en-US ] = "Web Page";
};
String STR_EXPORT_HTML_FILTER
{
Text = "*.html;*.htm" ;
};
String STR_EXPORT_IMP_GROUP
{
Text = "Graphics Filters - Import" ;
};
String STR_EXPORT_EXP_GROUP
{
Text = "Graphics Filters - Export" ;
};
String STR_EXPORT_GRFILTER_OPENERROR
{
/* ### ACHTUNG: Neuer Text in Resource? Grafikdatei kann nicht geffnet werden : Grafikdatei kann nicht geffnet werden */
Text [ de ] = "Grafikdatei kann nicht geffnet werden" ;
Text [ en-US ] = "Graphics file cannot be opened" ;
};
String STR_EXPORT_GRFILTER_IOERROR
{
Text [ de ] = "Grafikdatei kann nicht gelesen werden" ;
Text [ en-US ] = "Graphics file cannot be read" ;
};
String STR_EXPORT_GRFILTER_FORMATERROR
{
Text [ de ] = "Unbekanntes Grafikformat" ;
Text [ en-US ] = "Unknown graphics format" ;
};
String STR_EXPORT_GRFILTER_VERSIONERROR
{
/* ### ACHTUNG: Neuer Text in Resource? Die Version der Grafikdatei wird nicht untersttzt : Die Version der Grafikdatei wird nicht untersttzt */
Text [ de ] = "Die Version der Grafikdatei wird nicht untersttzt" ;
Text [ en-US ] = "This graphics file version is not supported." ;
};
String STR_EXPORT_GRFILTER_FILTERERROR
{
Text [ de ] = "Grafikfilter nicht gefunden" ;
Text [ en-US ] = "Graphics filter not found" ;
};
String STR_EXPORT_GRFILTER_TOOBIG
{
Text [ de ] = "Nicht genug Speicher zum Exportieren der Grafik" ;
Text [ en-US ] = "Insufficient memory for exporting graphics" ;
};
String STR_EXPORT_PROPERTIES
{
Text [ de ] = "~Eigensch..." ;
Text [ en-US ] = "~Properties..." ;
};
String STR_EXPORT_STANDARD
{
Text [ de ] = "~Standard" ;
Text [ en-US ] = "Default" ;
};
String STR_EXPORT_LINK
{
/* ### ACHTUNG: Neuer Text in Resource? ~Verknpfen : ~Verknpfen */
Text [ de ] = "~Verknpfen" ;
Text [ en-US ] = "~Link" ;
};
String STR_EXPORT_PREVIEW
{
Text [ de ] = "V~orschau" ;
Text [ en-US ] = "Pr~eview" ;
};
String STR_EXPORT_IMPORTGRAPHIC_COUNT
{
Text [ de ] = "Grafikfilter" ;
Text [ en-US ] = "Graphics filter" ;
};
String STR_EXPORT_DIALOG_TITLE
{
/* ### ACHTUNG: Neuer Text in Resource? Exportieren : Graphik exportieren*/
Text [ de ] = "Exportieren" ;
Text [ en-US ] = "Export" ;
};
String STR_EXPORT_MODULES_PATH
{
Text = "filter" ;
};
String STR_HTMLEXP_DEFAULT_EXTENSION
{
Text = ".html";
};
String STR_UNDO_COPYOBJECTS
{
/* ### ACHTUNG: Neuer Text in Resource? vervielfltigen : vervielfltigen */
Text [ de ] = "vervielfltigen" ;
Text [ en-US ] = "Duplicate" ;
};
String STR_TITLE_NAMEGROUP
{
Text [ de ] = "Objekt benennen" ;
Text [ en-US ] = "Name object";
};
String STR_DESC_NAMEGROUP
{
Text [ de ] = "Name" ;
Text [ en-US ] = "Name";
};
String STR_UNDEFINED_NAME
{
Text [ de ] = "uneindeutiger Name" ;
Text [ en-US ] = "Unspecific Name" ;
};
String STR_WARN_PAGE_EXISTS
{
/* ### ACHTUNG: Neuer Text in Resource? Der Seitenname ist schon vorhanden oder ungltig.Geben Sie bitte einen anderen Namen ein : Der Seitenname ist schon vorhanden oder ungltig.Geben Sie bitte einen anderen Namen ein */
Text [ de ] = "Der Seitenname ist schon vorhanden oder ungltig.Geben Sie bitte einen anderen Namen ein" ;
Text [ en-US ] = "The slide name already exists or is invalid. Please enter another name." ;
};
String STR_WARN_OBJECT_EXISTS
{
Text [ de ] = "Der Objektname ist schon vorhanden. Geben Sie bitte einen anderen Namen ein" ;
Text [ en-US ] = "The object name already exists. Please enter another name." ;
};
String STR_SNAPDLG_SETLINE
{
Text [ de ] = "Fanglinie bearbeiten" ;
Text [ en-US ] = "Edit Snap Line" ;
};
String STR_SNAPDLG_SETPOINT
{
Text [ de ] = "Fangpunkt bearbeiten" ;
Text [ en-US ] = "Edit Snap Point" ;
};
String STR_POPUP_EDIT_SNAPLINE
{
Text [ de ] = "Fanglinie bearbeiten..." ;
Text [ en-US ] = "Edit Snap Line..." ;
};
String STR_POPUP_EDIT_SNAPPOINT
{
Text [ de ] = "Fangpunkt bearbeiten..." ;
Text [ en-US ] = "Edit Snap Point..." ;
};
String STR_POPUP_DELETE_SNAPLINE
{
/* ### ACHTUNG: Neuer Text in Resource? Fanglinie lschen : Fanglinie lschen */
Text [ de ] = "Fanglinie lschen" ;
Text [ en-US ] = "Delete Snap Line" ;
};
String STR_POPUP_DELETE_SNAPPOINT
{
/* ### ACHTUNG: Neuer Text in Resource? Fangpunkt lschen : Fangpunkt lschen */
Text [ de ] = "Fangpunkt lschen" ;
Text [ en-US ] = "Delete Snap Point" ;
};
String STR_UNDO_FORMTEXT
{
Text [ de ] = "Text an Objekt ausrichten" ;
Text [ en-US ] = "Align text to object" ;
};
String STR_GRAPHIC
{
Text [ de ] = "StarDraw 4.0" ;
Text [ en-US ] = "StarDraw 4.0" ;
};
String STR_IMPRESS
{
Text [ de ]= "StarImpress 4.0" ;
Text [ en-US ] = "StarImpress 4.0" ;
};
String STR_WINDOWS_BITMAP
{
Text [ de ] = "Windows-Bitmap" ;
Text [ en-US ] = "Windows Bitmap" ;
};
String STR_WINDOWS_METAFILE
{
Text [ de ] = "Windows-Metafile" ;
Text [ en-US ] = "Windows Metafile" ;
};
String STR_OS2_METAFILE
{
Text [ de ] = "OS/2-Metafile" ;
Text [ en-US ] = "OS/2 Metafile" ;
};
String STR_MAC_PICTURE
{
Text [ de ] = "Mac-Picture" ;
Text [ en-US ] = "Mac-Picture" ;
};
String STR_OTHER_FORMAT
{
Text [ de ] = "Fremdformat" ;
Text [ en-US ] = "Other format" ;
};
String STR_DELETED
{
/* ### ACHTUNG: Neuer Text in Resource? gelscht : gelscht */
Text [ de ] = "gelscht" ;
Text [ en-US ] = "deleted" ;
Text [ x-comment ] = "Klein - Gross? - -";
};
String STR_BREAK_ACTION
{
Text [ de ] = "Aktion abgebrochen" ;
Text [ en-US ] = "Action canceled" ;
};
String STR_LAYER
{
Text [ de ] = "Ebene" ;
Text [ en-US ] = "Layer" ;
};
String STR_UNDO_DELETEPAGES
{
/* ### ACHTUNG: Neuer Text in Resource? Seiten lschen : Seiten lschen */
Text [ de ] = "Seiten lschen" ;
Text [ en-US ] = "Delete slides" ;
};
String STR_UNDO_INSERTPAGES
{
/* ### ACHTUNG: Neuer Text in Resource? Seiten einfgen : Seiten einfgen */
Text [ de ] = "Seiten einfgen" ;
Text [ en-US ] = "Insert slides" ;
};
String STR_ASK_DELETE_LAYER
{
/* ### ACHTUNG: Neuer Text in Resource? Wollen Sie die Ebene '$' wirklich lschen?\nHinweis: Alle Objekte auf dieser Ebene werden ebenfalls gelscht! : Wollen Sie die Ebene '$' wirklich lschen?\nHinweis: Alle Objekte auf dieser Ebene werden ebenfalls gelscht! */
Text [ de ] = "Wollen Sie die Ebene '$' wirklich lschen?\nHinweis: Alle Objekte auf dieser Ebene werden ebenfalls gelscht!" ;
Text [ en-US ] = "Are you sure you want to delete the level \"$\"?\nNote: All objects on this level will be deleted!" ;
};
String STR_ASK_DELETE_ALL_PICTURES
{
/* ### ACHTUNG: Neuer Text in Resource? Sollen wirklich alle Bilder gelscht werden? : Sollen wirklich alle Bilder gelscht werden? */
Text [ de ] = "Sollen wirklich alle Bilder gelscht werden?" ;
Text [ en-US ] = "Do you really want to delete all images?" ;
};
String STR_UNDO_CHANGE_TITLE_AND_LAYOUT
{
/* ### ACHTUNG: Neuer Text in Resource? Titel und Gliederung ndern : Titel und Gliederung ndern */
Text [ de ] = "Titel und Gliederung ndern" ;
Text [ en-US ] = "Modify title and outline" ;
};
String STR_WAV_FILE
{
Text [ de ] = "Klang" ;
Text [ en-US ] = "Sound" ;
};
String STR_MIDI_FILE
{
Text [ de ] = "MIDI" ;
Text [ en-US ] = "MIDI" ;
};
String STR_AU_FILE
{
Text [ de ] = "Sun/NeXT Audio" ;
Text [ en-US ] = "Sun/NeXT Audio" ;
};
String STR_VOC_FILE
{
Text [ de ] = "Creativ Labs Audio" ;
Text [ en-US ] = "Creative Labs Audio" ;
};
String STR_AIFF_FILE
{
Text [ de ] = "Apple/SGI Audio" ;
Text [ en-US ] = "Apple/SGI Audio" ;
};
String STR_SVX_FILE
{
Text [ de ] = "Amiga SVX Audio" ;
Text [ en-US ] = "Amiga SVX Audio" ;
};
String STR_SD_PAGE
{
Text [ de ] = "Seite" ;
Text [ en-US ] = "Slide" ;
};
String STR_INSERT_AS_TEXTOBJECT
{
Text [ de ] = "als Objekt" ;
Text [ en-US ] = "As Object" ;
};
String STR_ALL_FILES
{
Text [ de ] = "Alle Dateien (*.*)" ;
Text [ en-US ] = "All files (*.*)" ;
};
String STR_UNDO_INSERT_TEXTFRAME
{
/* ### ACHTUNG: Neuer Text in Resource? Textrahmen einfgen : Textrahmen einfgen */
Text [ de ] = "Textrahmen einfgen" ;
Text [ en-US ] = "Insert text frame" ;
};
String STR_OPEN_DOCUMENT
{
Text [ de ] = "Dokument laden" ;
Text [ en-US ] = "Load document" ;
};
String STR_SAVE_DOCUMENT
{
Text [ en-US ] = "Save document" ;
Text [ de ] = "Dokument speichern" ;
};
String STR_SAVE_PACKED_DOCUMENT
{
Text [ de ] = "Dokument einpacken" ;
Text [ en-US ] = "Pack document";
};
String STR_ACTION_NOTPOSSIBLE
{
/* ### ACHTUNG: Neuer Text in Resource? Die Funktion kann mit den selektierten \nObjekten nicht ausgefhrt werden : Die Funktion kann mit den selektierten \nObjekten nicht ausgefhrt werden */
Text [ de ] = "Die Funktion kann mit den selektierten \nObjekten nicht ausgefhrt werden" ;
Text [ en-US ] = "This function cannot be run \nwith the selected objects." ;
};
String STR_DLG_INSERT_PAGES_FROM_FILE
{
/* ### ACHTUNG: Neuer Text in Resource? Datei einfgen : Datei einfgen */
Text [ de ] = "Datei einfgen" ;
Text [ en-US ] = "Insert File" ;
};
String STR_DLG_INSERT_PAGES_FROM_OUTLINE
{
/* ### ACHTUNG: Neuer Text in Resource? Seiten aus Gliederung einfgen : Seiten aus Gliederung einfgen */
Text [ de ] = "Seiten aus Gliederung einfgen" ;
Text [ en-US ] = "Insert slides from outline" ;
};
String STR_WRITE_DATA_ERROR
{
Text [ de ] = "Die Datei konnte nicht gesichert werden!" ;
Text [ en-US ] = "The file could not be saved!" ;
};
String STR_READ_DATA_ERROR
{
Text [ de ] = "Die Datei konnte nicht geladen werden!" ;
Text [ en-US ] = "The file could not be loaded!" ;
};
String STR_SCALE_OBJECTS
{
/* ### ACHTUNG: Neuer Text in Resource? Das Format der neuen Seiten wird angepat.\nWollen Sie die Objekte auch anpassen? : Das Format der neuen Seiten wird angepat.\nWollen Sie die Objekte auch anpassen? */
Text [ de ] = "Das Format der neuen Seiten wird angepasst.\nWollen Sie die Objekte auch anpassen?" ;
Text [ en-US ] = "The format of the new pages will be adapted.\nDo you want to adapt the objects, too?" ;
};
String STR_CREATE_PAGES
{
Text [ de ] = "Seiten erzeugen" ;
Text [ en-US ] = "Create slides" ;
};
String STR_UNDO_CHANGE_PAGEFORMAT
{
/* ### ACHTUNG: Neuer Text in Resource? Seitenformat ndern : Seitenformat ndern */
Text [ de ] = "Seitenformat ndern" ;
Text [ en-US ] = "Modify page format" ;
};
String STR_UNDO_CHANGE_PAGEBORDER
{
/* ### ACHTUNG: Neuer Text in Resource? Seitenrnder ndern : Seitenrnder ndern */
Text [ de ] = "Seitenrnder ndern" ;
Text [ en-US ] = "Modify page margins" ;
};
String STR_EDIT_OBJ
{
Text [ de ] = "~Bearbeiten" ;
Text [ en-US ] = "~Edit" ;
};
String STR_SOUNDFILE1
{
Text [ de ] = "Systemton" ;
Text [ en-US ] = "System sound" ;
};
String STR_SOUNDFILE2
{
Text [ de ] = "AIFF - Audio Interchange File Format" ;
Text [ en-US ] = "AIFF - Audio Interchange File Format" ;
};
String STR_SOUNDFILE3
{
Text [ de ] = "<Klangformat 3>" ;
Text [ en-US ] = "<Sound Format 3>" ;
};
String STR_SOUNDFILE4
{
Text [ de ] = "<Klangformat 4>" ;
Text [ en-US ] = "<Sound Format 4>" ;
};
String STR_SOUNDFILE5
{
Text [ de ] = "<Klangformat 5>" ;
Text [ en-US ] = "<Sound Format 5>" ;
};
ModalDialog RID_UNDO_DELETE_WARNING
{
OutputSize = TRUE;
Size = MAP_APPFONT( 175 + 39 + (3 * 6), (7 * 12) + 6 );
Moveable = TRUE;
Closeable = TRUE;
HelpID = RID_UNDO_DELETE_WARNING;
Text [ de ] = "%PRODUCTNAME %PRODUCTVERSION" ;
FixedImage IMG_UNDO_DELETE_WARNING
{
Pos = MAP_APPFONT( 6, 6 );
Size = MAP_APPFONT( 30, 30 );
};
FixedText FT_UNDO_DELETE_WARNING
{
Pos = MAP_APPFONT( 39, 6 );
Size = MAP_APPFONT( 175, 4 * 12 );
WordBreak = TRUE;
Text [ de ] = "Diese Aktion lscht die Liste der Arbeitsschritte, die\nrckgngig gemacht werden knnen. Bisher gemachte\nnderungen am Dokument bleiben erhalten, knnen jedoch nicht\nmehr rckgngig gemacht werden. Wollen Sie fortfahren\nund die neue Seitenvorlage zuweisen?";
Text [ en-US ] = "This action deletes the list of actions that can\nbe undone. Previous changes made to the document are still valid,\nbut cannot be undone. Do you want to continue and\nthus assign the new slide design?";
};
CheckBox CB_UNDO_DELETE_DISABLE
{
Pos = MAP_APPFONT( 39, (4 * 12) + 9 );
Size = MAP_APPFONT( 175, 12 );
Text [ de ] = "~Diese Warnung in Zukunft nicht mehr anzeigen";
Text [ en-US ] = "~Do not show this warning again";
};
OKButton BTN_UNDO_DELETE_YES
{
Pos = MAP_APPFONT( 60, (5 * 12) + 13 );
Size = MAP_APPFONT( 50, 14 );
};
CancelButton BTN_UNDO_DELETE_NO
{
Pos = MAP_APPFONT( 120, (5 * 12) + 13 );
Size = MAP_APPFONT( 50, 14 );
DefButton = TRUE;
};
Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION";
};
String STR_DEL_SHAPE
{
/* ### ACHTUNG: Neuer Text in Resource? Symbol lschen : Symbol lschen */
Text [ de ] = "Symbol lschen" ;
Text [ en-US ] = "Delete icon" ;
};
String STR_WARN_DEL_SHAPE
{
/* ### ACHTUNG: Neuer Text in Resource? Soll das Symbol wirklich gelscht werden? : Soll das Symbol wirklich gelscht werden? */
Text [ de ] = "Soll das Symbol wirklich gelscht werden?" ;
Text [ en-US ] = "Are you sure you want to delete this symbol?" ;
};
String STR_MODIFY_SHAPE
{
/* ### ACHTUNG: Neuer Text in Resource? Symbol ndern : Symbol ndern */
Text [ de ] = "Symbol ndern" ;
Text [ en-US ] = "Modify Symbol" ;
};
String STR_WARN_MODIFY_SHAPE
{
/* ### ACHTUNG: Neuer Text in Resource? Soll das Symbol wirklich gendert werden? : Soll das Symbol wirklich gendert werden? */
Text [ de ] = "Soll das Symbol wirklich gendert werden?" ;
Text [ en-US ] = "Are you sure you want to modify the symbol?" ;
};
String STR_DELETE_PAGES
{
/* ### ACHTUNG: Neuer Text in Resource? Seiten lschen : Seiten lschen */
Text [ de ] = "Seiten lschen" ;
Text [ en-US ] = "Delete slides" ;
};
String STR_WARN_PRINTFORMAT_FAILURE
{
Text [ de ] = "Das Dokumentformat konnte am Drucker nicht eingestellt werden." ;
Text [ en-US ] = "The document format could not be set on the specified printer." ;
};
String STR_REMOVE_LINK
{
/* ### ACHTUNG: Neuer Text in Resource? Diese Grafik ist mit dem Dokument verknpft. \nMchten Sie die Verknpfung aufheben, um die Grafik zu bearbeiten? : Diese Grafik ist mit dem Dokument verknpft. \nMchten Sie die Verknpfung aufheben, um die Grafik zu bearbeiten? */
Text [ de ] = "Diese Grafik ist mit dem Dokument verknpft. \nMchten Sie die Verknpfung aufheben, um die Grafik zu bearbeiten?" ;
Text [ en-US ] = "This graphic is linked to a document. \nDo you want to unlink the graphic in order to edit it?" ;
};
String STR_IMPORT_GRFILTER_OPENERROR
{
/* ### ACHTUNG: Neuer Text in Resource? Grafikdatei kann nicht geffnet werden : Grafikdatei kann nicht geffnet werden */
Text [ de ] = "Grafikdatei kann nicht geffnet werden" ;
Text [ en-US ] = "Graphics file cannot be opened" ;
};
String STR_IMPORT_GRFILTER_IOERROR
{
Text [ de ] = "Grafikdatei kann nicht gelesen werden" ;
Text [ en-US ] = "Graphics file cannot be read" ;
};
String STR_IMPORT_GRFILTER_FORMATERROR
{
Text [ de ] = "Unbekanntes Grafikformat" ;
Text [ en-US ] = "Unknown graphics format" ;
};
String STR_IMPORT_GRFILTER_VERSIONERROR
{
/* ### ACHTUNG: Neuer Text in Resource? Die Version der Grafikdatei wird nicht untersttzt : Die Version der Grafikdatei wird nicht untersttzt */
Text [ de ] = "Die Version der Grafikdatei wird nicht untersttzt" ;
Text [ en-US ] = "This graphics file version is not supported" ;
};
String STR_IMPORT_GRFILTER_FILTERERROR
{
Text [ de ] = "Grafikfilter nicht gefunden" ;
Text [ en-US ] = "Graphics filter not found" ;
};
String STR_IMPORT_GRFILTER_TOOBIG
{
Text [ de ] = "Nicht genug Speicher zum Importieren der Grafik" ;
Text [ en-US ] = "Not enough memory to import graphics" ;
};
String STR_OBJECTS
{
Text [ de ] = "Objekte" ;
Text [ en-US ] = "Objects" ;
};
String STR_END_SEARCHING
{
/* ### ACHTUNG: Neuer Text in Resource? Die Suche fr dieses Dokument ist abgeschlossen! : Die Suche fr dieses Dokument ist abgeschlossen! */
Text [ de ] = "Die Suche fr dieses Dokument ist abgeschlossen!" ;
Text [ en-US ] = "The document search is finished." ;
};
String STR_END_SPELLING
{
/* ### ACHTUNG: Neuer Text in Resource? Die Rechtschreibprfung fr dieses Dokument ist abgeschlossen! : Die Rechtschreibprfung fr dieses Dokument ist abgeschlossen! */
Text [ de ] = "Die Rechtschreibprfung fr dieses Dokument ist abgeschlossen!" ;
Text [ en-US ] = "Spellcheck of entire document has been completed." ;
};
String STR_END_SPELLING_OBJ
{
/* ### ACHTUNG: Neuer Text in Resource? Die Rechtschreibprfung fr die selektierten Objekte ist abgeschlossen! : Die Rechtschreibprfung fr die selektierten Objekte ist abgeschlossen! */
Text [ de ] = "Die Rechtschreibprfung fr die selektierten Objekte ist abgeschlossen!" ;
Text [ en-US ] = "The spellcheck for the selected objects has been completed." ;
};
String STR_NOLANGUAGE
{
/* ### ACHTUNG: Neuer Text in Resource? Die eingestellte Sprache ist nicht verfgbar. : Die eingestellte Sprache ist nicht verfgbar. */
Text [ de ] = "Die eingestellte Sprache ist nicht verfgbar." ;
Text [ en-US ] = "The selected language is not available." ;
};
String STR_LAYER_LOCKED
{
Text [ de ] = "Die aktive Ebene ist gesperrt." ;
Text [ en-US ] = "Active layer is locked." ;
};
String STR_CLPBRD_CLEAR
{
/* ### ACHTUNG: Neuer Text in Resource? Sie haben grere Datenmengen in die Zwischenablage gestellt.\nSoll der Inhalt der Zwischenablage anderen Applikationen zur Verfgung gestellt werden? : Sie haben grere Datenmengen in die Zwischenablage gestellt.\nSoll der Inhalt der Zwischenablage anderen Applikationen zur Verfgung gestellt werden? */
Text [ de ] = "Sie haben grere Datenmengen in die Zwischenablage gestellt.\nSoll der Inhalt der Zwischenablage anderen Applikationen zur Verfgung gestellt werden?" ;
Text [ en-US ] = "You have a large amount of data saved in the clipboard.\nDo you want the clipboard content to be available for other applications?" ;
};
String STR_ASK_FOR_CONVERT_TO_BEZIER
{
Text [ de ] = "Soll das selektierte Objekt in eine Kurve umgewandelt werden?" ;
Text [ en-US ] = "Convert selected object to curve?" ;
};
String STR_TEMPLATE
{
Text [ de ] = "StarImpress 4.0 Vorlage" ;
Text [ en-US ] = "StarImpress 4.0 Template" ;
};
String STR_UNDO_CHANGE_PRES_OBJECT
{
/* ### ACHTUNG: Neuer Text in Resource? Prsentationsobjekt '$' ndern : Prsentationsobjekt '$' ndern */
Text [ de ] = "Prsentationsobjekt '$' ndern" ;
Text [ en-US ] = "Modify presentation object '$'" ;
};
String STR_UNDO_MODIFY_PAGE
{
/* ### ACHTUNG: Neuer Text in Resource? Seite ndern : Seite ndern */
Text [ de ] = "Folienlayout" ;
Text [ en-US ] = "Slide layout" ;
};
String STR_STATSTR_PRINT
{
Text [ de ] = "Drucke..." ;
Text [ en-US ] = "Printing..." ;
};
String STR_UNDO_INSERT_FILE
{
/* ### ACHTUNG: Neuer Text in Resource? Datei einfgen : Datei einfgen */
Text [ de ] = "Datei einfgen" ;
Text [ en-US ] = "Insert file" ;
};
String STR_SCALE_OBJS_TO_PAGE
{
/* ### ACHTUNG: Neuer Text in Resource? Sollen die Grafikobjekte an das neue Seitenformat angepat werden? : Sollen die Grafikobjekte an das neue Seitenformat angepat werden? */
Text [ de ] = "Sollen die Grafikobjekte an das neue Seitenformat angepasst werden?" ;
Text [ en-US ] = "Should the graphics be scaled to the new slide format?" ;
};
String STR_UNDO_INSERT_SPECCHAR
{
/* ### ACHTUNG: Neuer Text in Resource? Sonderzeichen einfgen : Sonderzeichen einfgen */
Text [ de ] = "Sonderzeichen einfgen" ;
Text [ en-US ] = "Insert special character" ;
};
String STR_UNDO_SET_PRESLAYOUT
{
/* ### ACHTUNG: Neuer Text in Resource? Prsentationslayout zuweisen : Prsentationslayout zuweisen */
Text [ de ] = "Prsentationslayout zuweisen" ;
Text [ en-US ] = "Apply presentation layout" ;
};
String STR_DEMO_EXPORT_LIMIT
{
/* ### ACHTUNG: Neuer Text in Resource? Es knnen max. 10 Objekte exportiert werden : Es knnen max. 10 Objekte exportiert werden */
Text [ de ] = "Es knnen max. 10 Objekte exportiert werden" ;
Text [ en-US ] = "A maximum of 10 objects can be exported" ;
};
String STR_STRING_NOTFOUND
{
Text [ de ] = "Suchbegriff nicht gefunden." ;
Text [ en-US ] = "Search key not found." ;
};
String STR_DRAW_FILTERPROGRESS
{
Text [ de ] = "Grafikfilter" ;
Text [ en-US ] = "Graphics filter" ;
};
String STR_PLAY
{
Text [ de ] = "Ab~spielen" ;
Text [ en-US ] = "~Play" ;
};
String STR_STOP
{
Text [ de ] = "A~nhalten" ;
Text [ en-US ] = "Sto~p" ;
};
String STR_CANT_READ_OLD_FORMAT_ERROR
{
Text [ de ] = "Das alte StarDraw-Format kann nicht gelesen werden." ;
Text [ en-US ] = "The previous StarDraw format cannot be read." ;
};
String STR_UNDO_ORIGINALSIZE
{
/* ### ACHTUNG: Neuer Text in Resource? Originalgre : Originalgre */
Text [ de ] = "Originalgre" ;
Text [ en-US ] = "Original Size" ;
};
String STR_EXPORT_EMPTYGRAPHIC
{
/* ### ACHTUNG: Neuer Text in Resource? Leere Grafiken werden nicht untersttzt : Leere Grafiken werden nicht untersttzt */
Text [ de ] = "Leere Grafiken werden nicht untersttzt" ;
Text [ en-US ] = "Blank graphics are not supported." ;
};
String STR_PRINT_DRAWING
{
Text [ de ] = " (Zeichnung)" ;
Text [ en-US ] = " (Drawing)" ;
};
String STR_PRINT_NOTES
{
Text [ de ] = " (Notizen)" ;
Text [ en-US ] = " (Notes)" ;
};
String STR_PRINT_HANDOUT
{
Text [ de ] = " (Handzettel)" ;
Text [ en-US ] = " (Handout)" ;
};
String STR_PRINT_OUTLINE
{
Text [ de ] = " (Gliederung)" ;
Text [ en-US ] = " (Outline)" ;
};
String STR_WARN_SCALE_FAIL
{
/* ### ACHTUNG: Neuer Text in Resource? Der eingegebene Mastab ist ungltig.\nWollen Sie einen neuen eingeben? : Der eingegebene Mastab ist ungltig.\nWollen Sie einen neuen eingeben? */
Text [ de ] = "Der eingegebene Mastab ist ungltig.\nWollen Sie einen neuen eingeben?" ;
Text [ en-US ] = "The specified scale is invalid.\nDo you want to enter a new one?" ;
};
String STR_CLICK_ACTION_NONE
{
Text [ de ] = "Keine Aktion" ;
Text [ en-US ] = "No action" ;
};
String STR_CLICK_ACTION_PREVPAGE
{
Text [ de ] = "Sprung zur vorhergehenden Seite" ;
Text [ en-US ] = "Go to previous slide" ;
};
String STR_CLICK_ACTION_NEXTPAGE
{
/* ### ACHTUNG: Neuer Text in Resource? Sprung zur nchsten Seite : Sprung zur nchsten Seite */
Text [ de ] = "Sprung zur nchsten Seite" ;
Text [ en-US ] = "Go to next slide" ;
};
String STR_CLICK_ACTION_FIRSTPAGE
{
Text [ de ] = "Sprung zur ersten Seite" ;
Text [ en-US ] = "Go to first slide" ;
};
String STR_CLICK_ACTION_LASTPAGE
{
Text [ de ] = "Sprung zur letzten Seite" ;
Text [ en-US ] = "Go to last slide" ;
};
String STR_CLICK_ACTION_BOOKMARK
{
Text [ de ] = "Sprung zu Seite oder Objekt" ;
Text [ en-US ] = "Go to page or object" ;
};
String STR_CLICK_ACTION_DOCUMENT
{
Text [ de ] = "Sprung zu Dokument" ;
Text [ en-US ] = "Go to document" ;
};
String STR_CLICK_ACTION_VANISH
{
Text [ de ] = "Objekt ausblenden" ;
Text [ en-US ] = "Fade object" ;
};
String STR_CLICK_ACTION_INVISIBLE
{
Text [ de ] = "Objekt unsichtbar machen" ;
Text [ en-US ] = "Hide object" ;
};
String STR_CLICK_ACTION_SOUND
{
Text [ de ] = "Klang abspielen" ;
Text [ en-US ] = "Play sound" ;
};
String STR_CLICK_ACTION_VERB
{
/* ### ACHTUNG: Neuer Text in Resource? Objektaktion ausfhren : Objektaktion ausfhren */
Text [ de ] = "Objektaktion ausfhren" ;
Text [ en-US ] = "Start object action" ;
};
String STR_CLICK_ACTION_PROGRAM
{
/* ### ACHTUNG: Neuer Text in Resource? Programm ausfhren : Programm ausfhren */
Text [ de ] = "Programm ausfhren" ;
Text [ en-US ] = "Run program" ;
};
String STR_CLICK_ACTION_MACRO
{
/* ### ACHTUNG: Neuer Text in Resource? Makro ausfhren : Makro ausfhren */
Text [ de ] = "Makro ausfhren" ;
Text [ en-US ] = "Run macro" ;
};
String STR_CLICK_ACTION_STOPPRESENTATION
{
/* ### ACHTUNG: Neuer Text in Resource? Prsentation beenden : Prsentation beenden */
Text [ de ] = "Prsentation beenden" ;
Text [ en-US ] = "Exit presentation" ;
};
String STR_START_PRESENTATION
{
Text [ de ] = "Bildschirmprsentation starten" ;
Text [ en-US ] = "Start Slide Show" ;
};
String STR_EFFECTDLG_JUMP
{
Text [ de ] = "Sprung~ziel" ;
Text [ en-US ] = "Target";
};
String STR_EFFECTDLG_ACTION
{
Text [ de ] = "Akt~ion" ;
Text [ en-US ] = "Act~ion";
};
String STR_EFFECTDLG_SOUND
{
Text [ de ] = "Klang" ;
Text [ en-US ] = "Sound" ;
};
String STR_EFFECTDLG_OBJECT
{
Text [ de ] = "Objekt" ;
Text [ en-US ] = "Object" ;
};
String STR_EFFECTDLG_PAGE_OBJECT
{
Text [ de ] = "Seite / Objekt" ;
Text [ en-US ] = "Slide / Object" ;
};
String STR_EFFECTDLG_DOCUMENT
{
Text [ de ] = "Dokument" ;
Text [ en-US ] = "Document" ;
};
String STR_EFFECTDLG_PROGRAM
{
Text [ de ] = "Programm" ;
Text [ en-US ] = "Program" ;
};
String STR_EFFECTDLG_MACRO
{
Text [ de ] = "Makro" ;
Text [ en-US ] = "Macro" ;
};
// Strings fuer Animations-Effekte
String STR_EFFECT_NONE
{
Text [ de ] = "kein Effekt" ;
Text [ en-US ] = "No Effect" ;
};
String STR_EFFECT_FADE_FROM_L
{
/* ### ACHTUNG: Neuer Text in Resource? Von links berblenden : Von links berblenden */
Text [ de ] = "berblenden von links" ;
Text [ en-US ] = "Cross-Fade From Left" ;
};
String STR_EFFECT_FADE_FROM_T
{
/* ### ACHTUNG: Neuer Text in Resource? Von oben berblenden : Von oben berblenden */
Text [ de ] = "berblenden von oben" ;
Text [ en-US ] = "Cross-Fade From Top" ;
};
String STR_EFFECT_FADE_FROM_R
{
/* ### ACHTUNG: Neuer Text in Resource? Von rechts berblenden : Von rechts berblenden */
Text [ de ] = "berblenden von rechts" ;
Text [ en-US ] = "Cross-Fade From Right" ;
};
String STR_EFFECT_FADE_FROM_B
{
/* ### ACHTUNG: Neuer Text in Resource? Von unten berblenden : Von unten berblenden */
Text [ de ] = "berblenden von unten" ;
Text [ en-US ] = "Cross-Fade From Bottom" ;
};
String STR_EFFECT_FADE_TO_CENTER
{
Text [ de ] = "Blenden nach innen" ;
Text [ en-US ] = "Fade To Center" ;
};
String STR_EFFECT_FADE_FROM_CENTER
{
/* ### ACHTUNG: Neuer Text in Resource? Blende nach auen : Blende nach auen */
Text [ de ] = "Blenden nach auen" ;
Text [ en-US ] = "Fade From Center" ;
};
String STR_EFFECT_DISCARD_FROM_L
{
Text [ de ] = "Einfliegen von links" ;
Text [ en-US ] = "Fly In From Left" ;
};
String STR_EFFECT_DISCARD_FROM_UL
{
Text [ de ] = "Einfliegen von links oben" ;
Text [ en-US ] = "Fly In From Top Left" ;
};
String STR_EFFECT_DISCARD_FROM_T
{
Text [ de ] = "Einfliegen von oben" ;
Text [ en-US ] = "Fly In From Top" ;
};
String STR_EFFECT_DISCARD_FROM_UR
{
Text [ de ] = "Einfliegen von rechts oben" ;
Text [ en-US ] = "Fly In From Upper Right" ;
};
String STR_EFFECT_DISCARD_FROM_R
{
Text [ de ] = "Einfliegen von rechts" ;
Text [ en-US ] = "Fly In From Right" ;
};
String STR_EFFECT_DISCARD_FROM_LR
{
Text [ de ] = "Einfliegen von rechts unten" ;
Text [ en-US ] = "Fly In From Lower Right" ;
};
String STR_EFFECT_DISCARD_FROM_B
{
Text [ de ] = "Einfliegen von unten" ;
Text [ en-US ] = "Fly In From Bottom" ;
};
String STR_EFFECT_DISCARD_FROM_LL
{
Text [ de ] = "Einfliegen von links unten" ;
Text [ en-US ] = "Fly In From Lower Left" ;
};
String STR_EFFECT_DISCARD_S_FROM_L
{
Text [ de ] = "Verkrzt Einfliegen von links" ;
Text [ en-US ] = "Short Fly In From Left" ;
};
String STR_EFFECT_DISCARD_S_FROM_UL
{
Text [ de ] = "Verkrzt Einfliegen von links oben" ;
Text [ en-US ] = "Short Fly In From Upper Left" ;
};
String STR_EFFECT_DISCARD_S_FROM_T
{
Text [ de ] = "Verkrzt Einfliegen von oben" ;
Text [ en-US ] = "Short Fly In From Top" ;
};
String STR_EFFECT_DISCARD_S_FROM_UR
{
Text [ de ] = "Verkrzt Einfliegen von rechts oben" ;
Text [ en-US ] = "Short Fly In From Upper Right" ;
};
String STR_EFFECT_DISCARD_S_FROM_R
{
Text [ de ] = "Verkrzt Einfliegen von rechts" ;
Text [ en-US ] = "Short Fly In From Right" ;
};
String STR_EFFECT_DISCARD_S_FROM_LR
{
Text [ de ] = "Verkrzt Einfliegen von rechts unten" ;
Text [ en-US ] = "Short Fly In From Lower Right" ;
};
String STR_EFFECT_DISCARD_S_FROM_B
{
Text [ de ] = "Verkrzt Einfliegen von unten" ;
Text [ en-US ] = "Short Fly In From Bottom" ;
};
String STR_EFFECT_DISCARD_S_FROM_LL
{
Text [ de ] = "Verkrzt Einfliegen von links unten" ;
Text [ en-US ] = "Short Fly In From Lower Left" ;
};
String STR_EFFECT_VERTICAL_STRIPES
{
Text [ de ] = "Blenden vertikal" ;
Text [ en-US ] = "Fade Vertically" ;
};
String STR_EFFECT_HORIZONTAL_STRIPES
{
Text [ de ] = "Blenden horizontal" ;
Text [ en-US ] = "Fade Horizontally" ;
};
String STR_EFFECT_VERTICAL_LINES
{
Text [ de ] = "Linien vertikal" ;
Text [ en-US ] = "Vertical Lines" ;
};
String STR_EFFECT_HORIZONTAL_LINES
{
Text [ de ] = "Linien horizontal" ;
Text [ en-US ] = "Horizontal Lines" ;
};
String STR_EFFECT_VERTICAL_CHECKERBOARD
{
Text [ de ] = "Schachbrett vertikal" ;
Text [ en-US ] = "Vertical Checkerboard";
};
String STR_EFFECT_HORIZONTAL_CHECKERBOARD
{
Text [ de ] = "Schachbrett horizontal" ;
Text [ en-US ] = "Horizontal Checkerboard";
};
String STR_EFFECT_ROLL_FROM_L
{
Text [ de ] = "Rollen von links" ;
Text [ en-US ] = "Roll From Left" ;
};
String STR_EFFECT_ROLL_FROM_T
{
Text [ de ] = "Rollen von oben" ;
Text [ en-US ] = "Roll From Top" ;
};
String STR_EFFECT_ROLL_FROM_R
{
Text [ de ] = "Rollen von rechts" ;
Text [ en-US ] = "Roll From Right" ;
};
String STR_EFFECT_ROLL_FROM_B
{
Text [ de ] = "Rollen von unten" ;
Text [ en-US ] = "Roll From Bottom" ;
};
String STR_EFFECT_WAVYLINE_FROM_L
{
Text [ de ] = "Schlangenlinie von links" ;
Text [ en-US ] = "Wavy Line From Left" ;
};
String STR_EFFECT_WAVYLINE_FROM_R
{
Text [ de ] = "Schlangenlinie von rechts" ;
Text [ en-US ] = "Wavy Line From Right" ;
};
String STR_EFFECT_WAVYLINE_FROM_T
{
Text [ de ] = "Schlangenlinie von oben" ;
Text [ en-US ] = "Wavy Line From Top" ;
};
String STR_EFFECT_WAVYLINE_FROM_B
{
Text [ de ] = "Schlangenlinie von unten" ;
Text [ en-US ] = "Wavy Line From Bottom" ;
};
String STR_EFFECT_CLOCKWISE
{
Text [ de ] = "Blenden im Uhrzeigersinn" ;
Text [ en-US ] = "Fade Clockwise" ;
};
String STR_EFFECT_COUNTERCLOCKWISE
{
Text [ de ] = "Blenden gegen den Uhrzeigersinn" ;
Text [ en-US ] = "Fade Counter-Clockwise" ;
};
String STR_EFFECT_FADE_FROM_UL
{
/* ### ACHTUNG: Neuer Text in Resource? Von links oben berblenden : Von links oben blenden */
/* ### ACHTUNG: Neuer Text in Resource? Von links oben berblenden : Von links oben blenden */
/* ### ACHTUNG: Neuer Text in Resource? Von links oben berblenden : Von links oben berblenden */
Text [ de ] = "berblenden von links oben" ;
Text [ en-US ] = "Fade From Top Left" ;
};
String STR_EFFECT_FADE_FROM_UR
{
/* ### ACHTUNG: Neuer Text in Resource? Von rechts oben berblenden : Von rechts oben blenden */
/* ### ACHTUNG: Neuer Text in Resource? Von rechts oben berblenden : Von rechts oben blenden */
/* ### ACHTUNG: Neuer Text in Resource? Von rechts oben berblenden : Von rechts oben berblenden */
Text [ de ] = "berblenden von rechts oben" ;
Text [ en-US ] = "Fade From Top Right" ;
};
String STR_EFFECT_FADE_FROM_LL
{
/* ### ACHTUNG: Neuer Text in Resource? Von links unten berblenden : Von links unten blenden */
/* ### ACHTUNG: Neuer Text in Resource? Von links unten berblenden : Von links unten blenden */
/* ### ACHTUNG: Neuer Text in Resource? Von links unten berblenden : Von links unten berblenden */
Text [ de ] = "berblenden von links unten" ;
Text [ en-US ] = "Fade From Bottom Left" ;
};
String STR_EFFECT_FADE_FROM_LR
{
/* ### ACHTUNG: Neuer Text in Resource? Von rechts unten berblenden : Von rechts unten blenden */
/* ### ACHTUNG: Neuer Text in Resource? Von rechts unten berblenden : Von rechts unten blenden */
/* ### ACHTUNG: Neuer Text in Resource? Von rechts unten berblenden : Von rechts unten berblenden */
Text [ de ] = "berblenden von rechts unten" ;
Text [ en-US ] = "Fade From Bottom Right" ;
};
String STR_EFFECT_CLOSE_VERTICAL
{
/* ### ACHTUNG: Neuer Text in Resource? Vertikal schlieen : Vertikal schlieen */
Text [ de ] = "Schlieen vertikal" ;
Text [ en-US ] = "Close Vertically" ;
};
String STR_EFFECT_CLOSE_HORIZONTAL
{
/* ### ACHTUNG: Neuer Text in Resource? Horizontal schlieen : Horizontal schlieen */
Text [ de ] = "Schlieen horizontal" ;
Text [ en-US ] = "Close Horizontally" ;
};
String STR_EFFECT_OPEN_VERTICAL
{
/* ### ACHTUNG: Neuer Text in Resource? Vertikal ffnen : Vertikal ffnen */
Text [ de ] = "ffnen vertikal" ;
Text [ en-US ] = "Open Vertically" ;
};
String STR_EFFECT_OPEN_HORIZONTAL
{
/* ### ACHTUNG: Neuer Text in Resource? Horizontal ffnen : Horizontal ffnen */
Text [ de ] = "ffnen horizontal" ;
Text [ en-US ] = "Open Horizontally" ;
};
String STR_EFFECT_PATH
{
Text [ de ] = "An Kurve entlang bewegen" ;
Text [ en-US ] = "Move Along Curve" ;
};
String STR_EFFECT_UNCOVER
{
Text [ de ] = "Aufdecken" ;
Text [ en-US ] = "Uncover";
};
String STR_EFFECT_UNCOVER_TO_L
{
Text [ de ] = "Aufdecken nach links" ;
Text [ en-US ] = "Uncover To Left" ;
};
String STR_EFFECT_UNCOVER_TO_UL
{
Text [ de ] = "Aufdecken nach links oben" ;
Text [ en-US ] = "Uncover To Upper Left" ;
};
String STR_EFFECT_UNCOVER_TO_T
{
Text [ de ] = "Aufdecken nach oben" ;
Text [ en-US ] = "Uncover Upwards" ;
};
String STR_EFFECT_UNCOVER_TO_UR
{
Text [ de ] = "Aufdecken nach rechts oben" ;
Text [ en-US ] = "Uncover To Upper Right" ;
};
String STR_EFFECT_UNCOVER_TO_R
{
Text [ de ] = "Aufdecken nach rechts" ;
Text [ en-US ] = "Uncover To Right" ;
};
String STR_EFFECT_UNCOVER_TO_LR
{
Text [ de ] = "Aufdecken nach rechts unten" ;
Text [ en-US ] = "Uncover To Lower Right" ;
};
String STR_EFFECT_UNCOVER_TO_B
{
Text [ de ] = "Aufdecken nach unten" ;
Text [ en-US ] = "Uncover Downwards" ;
};
String STR_EFFECT_UNCOVER_TO_LL
{
Text [ de ] = "Aufdecken nach links unten" ;
Text [ en-US ] = "Uncover To Lower Left" ;
};
String STR_EFFECT_MOVE_TO_L
{
Text [ de ] = "Herausfliegen nach links" ;
Text [ en-US ] = "Fly Out Left" ;
};
String STR_EFFECT_MOVE_TO_UL
{
Text [ de ] = "Herausfliegen nach links oben" ;
Text [ en-US ] = "Fly Out Upper Left" ;
};
String STR_EFFECT_MOVE_TO_T
{
Text [ de ] = "Herausfliegen nach oben" ;
Text [ en-US ] = "Fly Out Top" ;
};
String STR_EFFECT_MOVE_TO_UR
{
Text [ de ] = "Herausfliegen nach rechts oben" ;
Text [ en-US ] = "Fly Out Upper Right" ;
};
String STR_EFFECT_MOVE_TO_R
{
Text [ de ] = "Herausfliegen nach rechts" ;
Text [ en-US ] = "Fly Out Right" ;
};
String STR_EFFECT_MOVE_TO_LR
{
Text [ de ] = "Herausfliegen nach rechts unten" ;
Text [ en-US ] = "Fly Out Lower Right" ;
};
String STR_EFFECT_MOVE_TO_B
{
Text [ de ] = "Herausfliegen nach unten" ;
Text [ en-US ] = "Fly Out Bottom" ;
};
String STR_EFFECT_MOVE_TO_LL
{
Text [ de ] = "Herausfliegen nach links unten" ;
Text [ en-US ] = "Fly Out Lower Left" ;
};
String STR_EFFECT_MOVE_S_TO_L
{
Text [ de ] = "Verkrzt Herausfliegen nach links" ;
Text [ en-US ] = "Short Fly Out Left" ;
};
String STR_EFFECT_MOVE_S_TO_UL
{
Text [ de ] = "Verkrzt Herausfliegen nach links oben" ;
Text [ en-US ] = "Short Fly Out Upper Left" ;
};
String STR_EFFECT_MOVE_S_TO_T
{
Text [ de ] = "Verkrzt Herausfliegen nach oben" ;
Text [ en-US ] = "Short Fly Out Top" ;
};
String STR_EFFECT_MOVE_S_TO_UR
{
Text [ de ] = "Verkrzt Herausfliegen nach rechts oben" ;
Text [ en-US ] = "Short Fly Out Upper Right" ;
};
String STR_EFFECT_MOVE_S_TO_R
{
Text [ de ] = "Verkrzt Herausfliegen nach rechts" ;
Text [ en-US ] = "Short Fly Out Right" ;
};
String STR_EFFECT_MOVE_S_TO_LR
{
Text [ de ] = "Verkrzt Herausfliegen nach rechts unten" ;
Text [ en-US ] = "Short Fly Out Lower Right" ;
};
String STR_EFFECT_MOVE_S_TO_B
{
Text [ de ] = "Verkrzt Herausfliegen nach unten" ;
Text [ en-US ] = "Short Fly Out Bottom" ;
};
String STR_EFFECT_MOVE_S_TO_LL
{
Text [ de ] = "Verkrzt Herausfliegen nach links unten" ;
Text [ en-US ] = "Short Fly Out Lower Left" ;
};
String STR_EFFECT_SPIRALIN_L
{
Text [ de ] = "Spirale nach innen im Uhrzeigersinn" ;
Text [ en-US ] = "Spiral Inward Clockwise" ;
};
String STR_EFFECT_SPIRALIN_R
{
Text [ de ] = "Spirale nach innen gegen den Uhrzeigersinn" ;
Text [ en-US ] = "Spiral Inward Counter-Clockwise" ;
};
String STR_EFFECT_SPIRALOUT_L
{
/* ### ACHTUNG: Neuer Text in Resource? Spirale nach auen links : Spirale nach auen links */
Text [ de ] = "Spirale nach auen im Uhrzeigersinn" ;
Text [ en-US ] = "Spiral Outward Clockwise" ;
};
String STR_EFFECT_SPIRALOUT_R
{
/* ### ACHTUNG: Neuer Text in Resource? Spirale nach auen rechts : Spirale nach auen rechts */
Text [ de ] = "Spirale nach auen gegen den Uhrzeigersinn" ;
Text [ en-US ] = "Spiral Outward Counter-Clockwise" ;
};
String STR_EFFECT_DISSOLVE
{
/* ### ACHTUNG: Neuer Text in Resource? Auflsen : Auflsen */
Text [ de ] = "Auflsen" ;
Text [ en-US ] = "Dissolve" ;
Text [ x-comment ] = " - - - -";
};
String STR_EFFECT_HIDE
{
Text [ de ] = "Ausblenden" ;
Text [ en-US ] = "Fade Out" ;
};
String STR_EFFECT_STRTCH
{
Text [ de ] = "Dehnen";
Text [ en-US ] = "Stretch";
};
String STR_EFFECT_STRTCH_FROM_L
{
Text [ de ] = "Dehnen von links";
Text [ en-US ] = "Stretch From Left";
};
String STR_EFFECT_STRTCH_FROM_UL
{
Text [ de ] = "Dehnen von links oben";
Text [ en-US ] = "Stretch From Upper Left";
};
String STR_EFFECT_STRTCH_FROM_T
{
Text [ de ] = "Dehnen von oben";
Text [ en-US ] = "Stretch From Top";
};
String STR_EFFECT_STRTCH_FROM_UR
{
Text [ de ] = "Dehnen von rechts oben";
Text [ en-US ] = "Stretch From Upper Right";
};
String STR_EFFECT_STRTCH_FROM_R
{
Text [ de ] = "Dehnen von rechts";
Text [ en-US ] = "Stretch From Right";
};
String STR_EFFECT_STRTCH_FROM_LR
{
Text [ de ] = "Dehnen von rechts unten";
Text [ en-US ] = "Stretch From Lower Right";
};
String STR_EFFECT_STRTCH_FROM_B
{
Text [ de ] = "Dehnen von unten";
Text [ en-US ] = "Stretch From Bottom";
};
String STR_EFFECT_STRTCH_FROM_LL
{
Text [ de ] = "Dehnen von links unten";
Text [ en-US ] = "Stretch From Lower Left";
};
String STR_EFFECT_STRTCH_ROTATE
{
Text [ de ] = "Dehnen und drehen";
Text [ en-US ] = "Stretch And Rotate";
};
String STR_EFFECT_STRTCH_HORIZONTAL
{
Text [ de ] = "Dehnen horizontal";
Text [ en-US ] = "Stretch Horizontally";
};
String STR_EFFECT_STRTCH_VERTICAL
{
Text [ de ] = "Dehnen vertikal";
Text [ en-US ] = "Stretch Vertically";
};
String STR_EFFECT_ROTATE_HORIZONTAL
{
Text [ de ] = "Drehen horizontal";
Text [ en-US ] = "Rotate Horizontally";
};
String STR_EFFECT_ROTATE_VERTICAL
{
Text [ de ] = "Drehen vertikal";
Text [ en-US ] = "Rotate Vertically";
};
String STR_GENERAL_PUBLISHING_ERROR
{
/* ### ACHTUNG: Neuer Text in Resource? Beim Speichern der Verffentlichung ist ein Fehler aufgetreten. : Beim Speichern der Verffentlichung ist ein Fehler aufgetreten. */
Text [ de ] = "Beim Speichern der Verffentlichung ist ein Fehler aufgetreten." ;
Text [ en-US ] = "An error occurred while saving the publication." ;
};
String STR_INSERT_TEXT
{
/* ### ACHTUNG: Neuer Text in Resource? Text einfgen : Text einfgen */
Text [ de ] = "Text einfgen" ;
Text [ en-US ] = "Insert Text" ;
};
String STR_SLIDE_SINGULAR
{
Text [ de ] = " Folie" ;
Text [ en-US ] = " Slide" ;
};
String STR_SLIDE_PLURAL
{
Text [ de ] = " Folien" ;
Text [ en-US ] = " Slides" ;
};
String STR_CHART_MAINTITLE
{
Text [ de ] = "Haupttitel" ;
Text [ en-US ] = "Main Title" ;
};
String STR_CHART_SUBTITLE
{
Text [ de ] = "Untertitel" ;
Text [ en-US ] = "Subtitle" ;
};
String STR_CHART_TITLE_X
{
Text [ de ] = "X-Achsentitel" ;
Text [ en-US ] = "X axis title" ;
};
String STR_CHART_TITLE_Y
{
Text [ de ] = "Y-Achsentitel" ;
Text [ en-US ] = "Y axis title" ;
};
String STR_CHART_TITLE_Z
{
Text [ de ] = "Z-Achsentitel" ;
Text [ en-US ] = "Z axis title" ;
};
String STR_CHART_NAME_COLUMN
{
Text [ de ] = "Spalte" ;
Text [ en-US ] = "Column" ;
};
String STR_CHART_NAME_ROW
{
Text [ de ] = "Reihe" ;
Text [ en-US ] = "Row" ;
};
String STR_RESOLUTION
{
/* ### ACHTUNG: Neuer Text in Resource? Auflsung : Auflsung */
Text [ de ] = "Auflsung" ;
Text [ en-US ] = "Resolution" ;
};
String STR_LOAD_PRESENTATION_LAYOUT
{
Text [ de ] = "Seitenvorlage laden" ;
Text [ en-US ] = "Load Slide Design" ;
};
String STR_EFFECT_RANDOM
{
Text [ de ] = "Automatisch (Zufall)" ;
Text [ en-US ] = "Automatic (random)" ;
};
String STR_EFFECT_STRETCH_FROM_L
{
Text [ de ] = "Aufbauen von links" ;
Text [ en-US ] = "Build From Left" ;
};
String STR_EFFECT_STRETCH_FROM_T
{
Text [ de ] = "Aufbauen von oben" ;
Text [ en-US ] = "Build From Top" ;
};
String STR_EFFECT_STRETCH_FROM_R
{
Text [ de ] = "Aufbauen von rechts" ;
Text [ en-US ] = "Build From Right" ;
};
String STR_EFFECT_STRETCH_FROM_B
{
Text [ de ] = "Aufbauen von unten" ;
Text [ en-US ] = "Build From Bottom" ;
};
String STR_DRAGTYPE_URL
{
/* ### ACHTUNG: Neuer Text in Resource? Als Hyperlink einfgen : Als URL einfgen */
/* ### ACHTUNG: Neuer Text in Resource? Als Hyperlink einfgen : Als Hyperlink einfgen */
Text [ de ] = "Als Hyperlink einfgen" ;
Text [ en-US ] = "Insert as hyperlink" ;
};
String STR_DRAGTYPE_EMBEDDED
{
/* ### ACHTUNG: Neuer Text in Resource? Als Kopie einfgen : Als Kopie einfgen */
Text [ de ] = "Als Kopie einfgen" ;
Text [ en-US ] = "Insert as copy" ;
};
String STR_DRAGTYPE_LINK
{
/* ### ACHTUNG: Neuer Text in Resource? Als Verknpfung einfgen : Als Verknpfung einfgen */
Text [ de ] = "Als Verknpfung einfgen" ;
Text [ en-US ] = "Insert as link" ;
};
String STR_EFFECT_LASER_FROM_L
{
Text [ de ] = "Lasereffekt von links" ;
Text [ en-US ] = "Laser Effect From Left" ;
};
String STR_EFFECT_LASER_FROM_T
{
Text [ de ] = "Lasereffekt von oben" ;
Text [ en-US ] = "Laser Effect From Top" ;
};
String STR_EFFECT_LASER_FROM_R
{
Text [ de ] = "Lasereffekt von rechts" ;
Text [ en-US ] = "Laser Effect From Right" ;
};
String STR_EFFECT_LASER_FROM_B
{
Text [ de ] = "Lasereffekt von unten" ;
Text [ en-US ] = "Laser Effect From Bottom" ;
};
String STR_EFFECT_LASER_FROM_UL
{
Text [ de ] = "Lasereffekt von oben links" ;
Text [ en-US ] = "Laser Effect From Top Left" ;
};
String STR_EFFECT_LASER_FROM_UR
{
Text [ de ] = "Lasereffekt von oben rechts" ;
Text [ en-US ] = "Laser Effect From Top Right" ;
};
String STR_EFFECT_LASER_FROM_LL
{
Text [ de ] = "Lasereffekt von unten links" ;
Text [ en-US ] = "Laser Effect From Bottom Left" ;
};
String STR_EFFECT_LASER_FROM_LR
{
Text [ de ] = "Lasereffekt von unten rechts" ;
Text [ en-US ] = "Laser Effect From Bottom Right" ;
};
String STR_EFFECT_FAVOURITES
{
Text [ de ] = "Favoriten" ;
Text [ en-US ] = "Favorites" ;
};
String STR_EFFECT_FADEFROM
{
/* ### ACHTUNG: Neuer Text in Resource? berblenden : berblenden */
Text [ de ] = "berblenden" ;
Text [ en-US ] = "Cross-fading" ;
};
String STR_EFFECT_DISCARD
{
Text [ de ] = "Einfliegen" ;
Text [ en-US ] = "Fly In" ;
};
String STR_EFFECT_DISCARD_SHORT
{
Text [ de ] = "Verkrzt Einfliegen" ;
Text [ en-US ] = "Short Fly In" ;
};
String STR_EFFECT_FADE
{
Text [ de ] = "Blenden" ;
Text [ en-US ] = "Fade" ;
};
String STR_EFFECT_OPEN_CLOSE
{
/* ### ACHTUNG: Neuer Text in Resource? ffnen / Schlieen : ffnen / Schlieen */
Text [ de ] = "ffnen / Schlieen" ;
Text [ en-US ] = "Open / Close" ;
};
String STR_EFFECT_WAVYLINE
{
Text [ de ] = "Schlangenlinie" ;
Text [ en-US ] = "Wavy Line" ;
};
String STR_EFFECT_SPIRAL
{
Text [ de ] = "Spirale" ;
Text [ en-US ] = "Spiral" ;
};
String STR_EFFECT_LASER
{
Text [ de ] = "Laser" ;
Text [ en-US ] = "Laser" ;
};
String STR_EFFECT_EXTRA
{
Text [ de ] = "Sonstige" ;
Text [ en-US ] = "Other" ;
};
String STR_EFFECT_ROLL
{
Text [ de ] = "Rollen" ;
Text [ en-US ] = "Roll" ;
};
String STR_EFFECT_STRETCH
{
Text [ de ] = "Aufbauen" ;
Text [ en-US ] = "Build Up" ;
};
String STR_EFFECT_APPEAR
{
Text [ de ] = "Erscheinen";
Text [ en-US ] = "Appear";
};
String STR_GLUE_ESCDIR_SMART
{
Text [ de ] = "Smart" ;
Text [ en-US ] = "Smart" ;
};
String STR_GLUE_ESCDIR_LEFT
{
Text [ de ] = "Links" ;
Text [ en-US ] = "Left" ;
};
String STR_GLUE_ESCDIR_RIGHT
{
Text [ de ] = "Rechts" ;
Text [ en-US ] = "Right" ;
};
String STR_GLUE_ESCDIR_TOP
{
Text [ de ] = "Oben" ;
Text [ en-US ] = "Top" ;
};
String STR_GLUE_ESCDIR_BOTTOM
{
Text [ de ] = "Unten" ;
Text [ en-US ] = "Bottom" ;
};
String STR_GLUE_ESCDIR_LO
{
Text [ de ] = "Links oben?" ;
Text [ en-US ] = "Top Left?" ;
};
String STR_GLUE_ESCDIR_LU
{
Text [ de ] = "Links unten?" ;
Text [ en-US ] = "Bottom Left?" ;
};
String STR_GLUE_ESCDIR_RO
{
Text [ de ] = "Rechts oben?" ;
Text [ en-US ] = "Top Right?" ;
};
String STR_GLUE_ESCDIR_RU
{
Text [ de ] = "Rechts unten?" ;
Text [ en-US ] = "Bottom Right?" ;
};
String STR_GLUE_ESCDIR_HORZ
{
Text [ de ] = "Horizontal" ;
Text [ en-US ] = "Horizontal" ;
};
String STR_GLUE_ESCDIR_VERT
{
Text [ de ] = "Vertikal" ;
Text [ en-US ] = "Vertical" ;
};
String STR_GLUE_ESCDIR_ALL
{
Text [ de ] = "Alle?" ;
Text [ en-US ] = "All?" ;
};
String STR_CANT_PERFORM_IN_LIVEMODE
{
/* ### ACHTUNG: Neuer Text in Resource? Diese Aktion kann nicht im Livemodus ausgefhrt werden. : Diese Aktion kann nicht im Livemodus ausgefhrt werden. */
Text [ de ] = "Diese Aktion kann nicht im Livemodus ausgefhrt werden." ;
Text [ en-US ] = "This action can't be run in the live mode." ;
};
String STR_PUBLISH_BACK
{
/* ### ACHTUNG: Neuer Text in Resource? Zurck : Zurck */
Text [ de ] = "Zurck" ;
Text [ en-US ] = "Back" ;
};
String STR_PUBLISH_NEXT
{
Text [ de ] = "Weiter" ;
Text [ en-US ] = "Continue" ;
};
String STR_PUBLISH_OUTLINE
{
/* ### ACHTUNG: Neuer Text in Resource? bersicht : bersicht */
Text [ de ] = "bersicht" ;
Text [ en-US ] = "Overview" ;
};
String STR_EYEDROPPER
{
Text [ de ] = "Pipette" ;
Text [ en-US ] = "Eyedropper" ;
};
String STR_UNDO_MORPHING
{
/* ### ACHTUNG: Neuer Text in Resource? berblenden : berblenden */
Text [ de ] = "berblenden" ;
Text [ en-US ] = "Cross-fading" ;
};
String STR_VIEWTYPE_EFFECT
{
Text [ de ] = "Effekte" ;
Text [ en-US ] = "Effects" ;
};
String STR_VIEWTYPE_EXTRAS
{
Text [ de ] = "Extras" ;
Text [ en-US ] = "Extras" ;
};
String STR_VIEWTYPE_TEXT
{
Text [ de ] = "Texteffekte" ;
Text [ en-US ] = "Text Effects" ;
};
String STR_VIEWTYPE_ORDER
{
Text [ de ] = "Reihenfolge" ;
Text [ en-US ] = "Order" ;
};
String STR_SIMPRESS
{
Text = "STARIMPRESS" ;
};
String STR_FORMAT_HTML
{
Text [ de ] = "HTML" ;
Text [ en-US ] = "HTML" ;
};
String STR_UNDO_3D_DIALOG
{
Text [ de ] = "3D-Objekteigenschaften" ;
Text [ en-US ] = "Properties of 3D objects" ;
};
String STR_UNDO_COLORRESOLUTION
{
/* ### ACHTUNG: Neuer Text in Resource? Farbauflsung : Farbauflsung */
Text [ de ] = "Farbauflsung" ;
Text [ en-US ] = "Color resolution" ;
};
String STR_UNDO_EXPAND_PAGE
{
Text [ de ] = "Seite erweitern" ;
Text [ en-US ] = "Expand Slide" ;
};
String STR_UNDO_SUMMARY_PAGE
{
Text [ de ] = "Inhaltsverzeichnis-Seite" ;
Text [ en-US ] = "Table of Contents Slide" ;
};
String STR_ASK_GALLERY_INSERT
{
/* ### ACHTUNG: Neuer Text in Resource? Soll der Sound zum Gallery-Thema hinzugefgt werden? : Soll der Sound zum Gallery-Thema hinzugefgt werden? */
Text [ de ] = "Soll der Sound zum Gallery-Thema hinzugefgt werden?" ;
Text [ en-US ] = "Do you want to add the sound to the Gallery?" ;
};
String STR_TWAIN_NO_SOURCE_UNX
{
/* ### ACHTUNG: Neuer Text in Resource? Zur Zeit ist leider keine SANE-Quelle verfgbar. : Zur Zeit ist leider keine SANE-Quelle verfgbar. */
Text [ de ] = "Zur Zeit ist leider keine SANE-Quelle verfgbar." ;
Text [ en-US ] = "No SANE source is available at the moment." ;
};
String STR_TWAIN_NO_SOURCE
{
/* ### ACHTUNG: Neuer Text in Resource? Zur Zeit ist leider keine TWAIN-Quelle verfgbar. : Zur Zeit ist leider keine TWAIN-Quelle verfgbar. */
Text [ de ] = "Zur Zeit ist leider keine TWAIN-Quelle verfgbar." ;
Text [ en-US ] = "At present, no TWAIN source is available." ;
};
String STR_FIX
{
Text [ de ] = "Fix" ;
Text [ en-US ] = "Fixed" ;
};
String STR_VAR
{
Text [ de ] = "Variabel" ;
Text [ en-US ] = "Variable" ;
};
String STR_STANDARD_NORMAL
{
Text [ de ] = "Standard" ;
Text [ en-US ] = "Standard" ;
};
String STR_STANDARD_SMALL
{
Text [ de ] = "Standard (kurz)" ;
Text [ en-US ] = "Standard (short)" ;
};
String STR_STANDARD_BIG
{
Text [ de ] = "Standard (lang)" ;
Text [ en-US ] = "Standard (long)" ;
};
String STR_FILEFORMAT_NAME_EXT
{
Text [ de ] = "Dateiname" ;
Text [ en-US ] = "File name" ;
};
String STR_FILEFORMAT_FULLPATH
{
Text [ de ] = "Pfad/Dateiname" ;
Text [ en-US ] = "Path/File name" ;
};
String STR_FILEFORMAT_PATH
{
Text [ de ] = "Pfad" ;
Text [ en-US ] = "Path" ;
};
String STR_FILEFORMAT_NAME
{
Text [ de ] = "Dateiname ohne Erweiterung" ;
Text [ en-US ] = "File name without extension" ;
};
String STR_RELEASE_GRAPHICLINK
{
/* ### ACHTUNG: Neuer Text in Resource? Diese Grafik ist mit dem Dokument verknpft. Mchten Sie die Verknpfung aufheben, um die Grafik zu bearbeiten? : Diese Grafik ist mit dem Dokument verknpft. Mchten Sie die Verknpfung aufheben, um die Grafik zu bearbeiten? */
Text [ de ] = "Diese Grafik ist mit dem Dokument verknpft. Mchten Sie die Verknpfung aufheben, um die Grafik zu bearbeiten?" ;
Text [ en-US ] = "This graphic is linked to a document. Do you want to unlink the graphic in order to edit it?" ;
};
String STR_NEW_CUSTOMSHOW
{
Text [ de ] = "Neue individuelle Bildschirmprsentation" ;
Text [ en-US ] = "New Custom Slide Show" ;
};
// Das Leerzeichen ist beabsichtigt !!!
String STR_COPY_CUSTOMSHOW
{
Text [ de ] = "Kopie " ;
Text [ en-US ] = "Copy " ;
};
String STR_IMPRESS_DOCUMENT
{
/* ### ACHTUNG: Neuer Text in Resource? Prsentation : Prsentation */
Text [ de ] = "Prsentation" ;
Text [ en-US ] = "Presentation" ;
};
String STR_IMPRESS_DOCUMENT_FULLTYPE_60
{
Text [ de ] = "%PRODUCTNAME %PRODUCTVERSION Prsentation" ;
Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION Presentation" ;
};
String STR_GRAPHIC_DOCUMENT
{
Text [ de ] = "Zeichnung" ;
Text [ en-US ] = "Drawing" ;
};
String STR_GRAPHIC_DOCUMENT_FULLTYPE_60
{
Text [ de ] = "%PRODUCTNAME %PRODUCTVERSION Zeichnung" ;
Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION Drawing" ;
};
String STR_VIEWTYPE_VIEW
{
Text [ de ] = "Darstellung" ;
Text [ en-US ] = "Shading" ;
};
String STR_VIEWTYPE_GEO
{
Text [ de ] = "Geometrie" ;
Text [ en-US ] = "Geometry" ;
};
String STR_VIEWTYPE_TEXTURE
{
Text [ de ] = "Textur" ;
Text [ en-US ] = "Texture" ;
};
String STR_VIEWTYPE_MATERIAL
{
Text [ de ] = "Material" ;
Text [ en-US ] = "Material" ;
};
String STR_BREAK_METAFILE
{
Text [ de ] = "Metafile(s) aufbrechen..." ;
Text [ en-US ] = "Ungroup Metafile(s)...";
};
String STR_BREAK_FAIL
{
Text [ de ] = "Es konnten nicht alle Zeichenobjekte aufgebrochen werden!" ;
Text [ en-US ] = "It was not possible to ungroup all drawing objects.";
};
// HtmlExport
String STR_PUBDLG_SAMENAME
{
Text [ de ] = "Es existiert bereits ein Design mit diesem Namen\nSoll es berschrieben werden?";
Text [ en-US ] = "A design already exists with this name.\nDo you want to replace it?";
Text [ x-comment ] = ": - - - -";
};
String STR_HTMLATTR_TEXT
{
Text [ de ] = "Text";
Text [ en-US ] = "Text";
};
String STR_HTMLATTR_LINK
{
Text [ de ] = "Hyperlink";
Text [ en-US ] = "Hyperlink";
};
String STR_HTMLATTR_VLINK
{
Text [ de ] = "Gesichteter Link";
Text [ en-US ] = "Visited link";
};
String STR_HTMLATTR_ALINK
{
Text [ de ] = "Aktiver Link";
Text [ en-US ] = "Active link";
};
String STR_HTMLEXP_NOTES
{
Text [ de ] = "Notizen";
Text [ en-US ] = "Notes";
};
String STR_HTMLEXP_CONTENTS
{
Text [ de ] = "Inhaltsverzeichnis";
Text [ en-US ] = "Table of contents";
};
String STR_HTMLEXP_CLICKSTART
{
Text [ de ] = "Zum Starten hier klicken";
Text [ en-US ] = "Click here to start";
};
String STR_HTMLEXP_AUTHOR
{
Text [ de ] = "Autor";
Text [ en-US ] = "Author";
};
String STR_HTMLEXP_EMAIL
{
Text [ de ] = "E-Mail";
Text [ en-US ] = "E-mail";
};
String STR_HTMLEXP_HOMEPAGE
{
Text [ de ] = "Homepage";
Text [ en-US ] = "Homepage";
};
String STR_HTMLEXP_INFO
{
Text [ de ] = "Weitere Informationen";
Text [ en-US ] = "Further information";
};
String STR_HTMLEXP_CREATED
{
Text [ de ] = "Beste Darstellung mit";
Text [ en-US ] = "Best viewed with";
};
String STR_HTMLEXP_DOWNLOAD
{
Text [ de ] = "Prsentationsquelle herunterladen";
Text [ en-US ] = "Download presentation";
Text [ x-comment ] = " Download - - - -";
};
String STR_HTMLEXP_NOFRAMES
{
Text [ de ] = "Ihr Browser untersttzt leider keine Frames";
Text [ en-US ] = "Unfortunately your browser does not support floating frames.";
};
String STR_HTMLEXP_FIRSTPAGE
{
Text [ de ] = "Erste Seite";
Text [ en-US ] = "First page";
};
String STR_HTMLEXP_LASTPAGE
{
Text [ de ] = "Letzte Seite";
Text [ en-US ] = "Last page";
};
String STR_HTMLEXP_SETTEXT
{
Text [ de ] = "Text";
Text [ en-US ] = "Text";
};
String STR_HTMLEXP_SETGRAPHIC
{
Text [ de ] = "Grafik";
Text [ en-US ] = "Graphics";
};
String STR_HTMLEXP_OUTLINE
{
Text [ de ] = "Mit Inhalt";
Text [ en-US ] = "With contents";
};
String STR_HTMLEXP_NOOUTLINE
{
Text [ de ] = "Ohne Inhalt";
Text [ en-US ] = "Without contents";
};
String STR_WEBVIEW_SAVE
{
Text [ de ] = "Zur angegebenen Seite";
Text [ en-US ] = "To given page";
};
String STR_UNDO_VECTORIZE
{
Text [ de ] = "Bitmap in Polygon umwandeln" ;
Text [ en-US ] = "Convert bitmap to polygon" ;
};
String STR_PRES_SOFTEND
{
Text [ de ] = "Bitte klicken Sie, um die Prsentation zu beenden...";
Text [ en-US ] = "Click to exit presentation..." ;
};
String STR_PRES_PAUSE
{
Text [ de ] = "Pause..." ;
Text [ en-US ] = "Pause..." ;
};
STRING STR_WIZARD_ORIGINAL
{
Text [ de ] = "<Original>";
Text [ en-US ] = "<Original>";
};
STRING STR_WIZARD_POSITION
{
Text [ de ] = "<Andere Position>";
Text [ en-US ] = "<Other position>";
};
STRING STR_ISLOADING
{
Text [ de ] = "Wird geladen...";
Text [ en-US ] = "Loading...";
};
String STR_DRAW_GRAF_TOOLBOX
{
Text [ de ] = "Grafikobjektleiste" ;
Text [ en-US ] = "Graphics Object Bar" ;
};
String STR_UNDO_APPLY_3D_FAVOURITE
{
Text [ de ] = "3D Favorit zuweisen" ;
Text [ en-US ] = "Apply 3D favorite";
};
String STR_UNDO_GRAFFILTER
{
Text [ de ] = "Grafikfilter" ;
Text [ en-US ] = "Graphics filter" ;
};
String STR_WARNING_NOSOUNDFILE
{
Text [ de ] = "Die Datei %\nist keine gltige Klangdatei !" ;
Text [ en-US ] = "The file %\nis not a valid sound file !" ;
};
String STR_UNDO_CONVERT_TO_METAFILE
{
Text [ de ] = "Konvertieren zu Metafile" ;
Text [ en-US ] = "Convert to metafile" ;
};
String STR_UNDO_CONVERT_TO_BITMAP
{
Text [ de ] = "Konvertieren zu Bitmap" ;
Text [ en-US ] = "Convert to bitmap" ;
};
String STR_PACKNGO_FILEDLG_TITLE
{
/* ### ACHTUNG: Neuer Text in Resource! "Einpacken" statt "Pack & Go" !!!!! */
Text [ de ] = "Einpacken - Speichern unter" ;
Text [ en-US ] = "Pack - Save as" ;
};
String STR_HTMLEXP_ERROR_CREATE_FILE
{
Text [ de ] = "Die Datei $(URL1) konnte nicht erzeugt werden.";
Text [ en-US ] = "Cannot create the file $(URL1).";
};
String STR_HTMLEXP_ERROR_OPEN_FILE
{
Text [ de ] = "Die Datei $(URL1) konnte nicht geffnet werden.";
Text [ en-US ] = "Could not open the file $(URL1).";
};
String STR_HTMLEXP_ERROR_COPY_FILE
{
Text [ de ] = "Die Datei $(URL1) konnte nicht kopiert werden nach $(URL2).";
Text [ en-US ] = "The file $(URL1) could not be copied to $(URL2)";
};
String STR_HTMLEXP_ERROR_GALLERY
{
Text [ de ] = "Es ist ein Fehler beim Kopieren von Grafikdateien aus der Gallery aufgetreten";
Text [ en-US ] = "An error occurred while copying graphic files from the Gallery.";
};
String STR_UNDO_CONVERT_TO_CONTOUR
{
Text [ de ] = "Konvertieren zu Kontor" ;
Text [ en-US ] = "Convert to contour";
};
String STR_PAGE_BACKGROUND_TITLE
{
Text [ de ] = "Seiteneinstellungen" ;
Text [ en-US ] = "Page Settings" ;
};
String STR_PAGE_BACKGROUND_TXT
{
/* ### ACHTUNG: Neuer Text in Resource! "Hintergrundeinstellungen fr alle Seiten ?"*/
Text [ de ] = "Hintergrundeinstellungen fr alle Seiten ?" ;
Text [ en-US ] = "Background settings for all pages ?" ;
};
String STR_GRAFCROP
{
Text [ de ] = "Zuschneiden";
Text [ en-US ] = "Crop";
};
String STR_UNDO_GRAFMODE
{
Text [ de ] = "Grafikmodus";
Text [ en-US ] = "Graphics Mode";
};
String STR_UNDO_GRAFRED
{
Text [ de ] = "Rotanteil";
Text [ en-US ] = "Red";
};
String STR_UNDO_GRAFGREEN
{
Text [ de ] = "Grnanteil";
Text [ en-US ] = "Green";
};
String STR_UNDO_GRAFBLUE
{
Text [ de ] = "Blauanteil";
Text [ en-US ] = "Blue";
};
String STR_UNDO_GRAFLUMINANCE
{
Text [ de ] = "Helligkeit";
Text [ en-US ] = "Brightness";
};
String STR_UNDO_GRAFCONTRAST
{
Text [ de ] = "Kontrast";
Text [ en-US ] = "Contrast";
};
String STR_UNDO_GRAFGAMMA
{
Text [ de ] = "Gamma";
Text [ en-US ] = "Gamma";
};
String STR_UNDO_GRAFTRANSPARENCY
{
Text [ de ] = "Transparenz";
Text [ en-US ] = "Transparency";
};
String STR_TITLE_RENAMESLIDE
{
Text [ de ] = "Seite umbenennen" ;
Text [ en-US ] = "Rename Slide";
};
String STR_DESC_RENAMESLIDE
{
Text [ de ] = "Name" ;
Text [ en-US ] = "Name";
Text [ x-comment ] = "EM Dec 2002: text box label in \"Rename Slide\" dialog";
};
String STR_PLACEHOLDER_DESCRIPTION_TITLE
{
Text [ de ] = "Titelbereich fr AutoLayouts" ;
Text [ en-US ] = "Title Area for AutoLayouts" ;
};
String STR_PLACEHOLDER_DESCRIPTION_OUTLINE
{
Text [ de ] = "Objektbereich fr AutoLayouts" ;
Text [ en-US ] = "Object Area for AutoLayouts" ;
};
String STR_PLACEHOLDER_DESCRIPTION_FOOTER
{
Text [ de ] = "Fuzeilenbereich" ;
Text [ en-US ] = "Footer Area" ;
};
String STR_PLACEHOLDER_DESCRIPTION_HEADER
{
Text [ de ] = "Kopfzeilenbereich" ;
Text [ en-US ] = "Header Area" ;
};
String STR_PLACEHOLDER_DESCRIPTION_DATETIME
{
Text [ de ] = "Datumsbereich" ;
Text [ en-US ] = "Date Area" ;
};
String STR_PLACEHOLDER_DESCRIPTION_SLIDE
{
Text [ de ] = "Foliennummernbereich" ;
Text [ en-US ] = "Slide Number Area" ;
};
String STR_PLACEHOLDER_DESCRIPTION_NUMBER
{
Text [ de ] = "Seitenzahlbereich" ;
Text [ en-US ] = "Page Number Area" ;
};
String STR_FIELD_PLACEHOLDER_HEADER
{
Text [ de ] = "<Kopfzeile>" ;
Text [ en-US ] = "<header>" ;
};
String STR_FIELD_PLACEHOLDER_FOOTER
{
Text [ de ] = "<Fuzeile>" ;
Text [ en-US ] = "<footer>" ;
};
String STR_FIELD_PLACEHOLDER_DATETIME
{
Text [ de ] = "<Datum/Uhrzeit>" ;
Text [ en-US ] = "<date/time>" ;
};
String STR_FIELD_PLACEHOLDER_NUMBER
{
Text [ de ] = "<Nummer>" ;
Text [ en-US ] = "<number>" ;
};
String STR_PLACEHOLDER_DESCRIPTION_NOTES
{
Text [ de ] = "Bereich fr Notizen";
Text [ en-US ] = "Notes Area";
};
String STR_UNDO_HANGULHANJACONVERSION
{
Text [ de ] = "Hangul/Hanja Konvertierung";
Text [ en-US ] = "Hangul/Hanja Conversion";
};
String STR_LEFT_PANE_IMPRESS_TITLE
{
Text [ de ] = "Folien";
Text [ en-US ] = "Slides";
};
String STR_LEFT_PANE_DRAW_TITLE
{
Text [ de ] = "Seiten";
Text [ en-US ] = "Pages";
};
String STR_RIGHT_PANE_TITLE
{
Text [ de ] = "Aufgabenbereich";
Text [ en-US ] = "Tasks";
};
String STR_TASKPANEL_MASTER_PAGE_TITLE
{
Text [ de ] = "Masterseiten";
Text [ en-US ] = "Master Pages";
};
String STR_TASKPANEL_MASTER_PAGE_MENU_TITLE
{
Text [ de ] = "Ansicht";
Text [ en-US ] = "View";
};
String STR_TASKPANEL_MASTER_PAGE_MENU_LOCK
{
Text [ de ] = "Aufgabenbereich andocken";
Text [ en-US ] = "~Dock Task Pane";
};
String STR_TASKPANEL_MASTER_PAGE_MENU_UNLOCK
{
Text [ de ] = "Aufgabenbereich entdocken";
Text [ en-US ] = "~Undock Task Pane";
};
String STR_TASKPANEL_MASTER_PAGE_MENU_CLOSE
{
Text [ de ] = "Aufgabenbereich schlieen";
Text [ en-US ] = "~Close Task Pane";
};
String STR_TASKPANEL_CURRENT_MASTER_PAGES_TITLE
{
Text [ de ] = "In dieser Prsentation verwendet";
Text [ en-US ] = "Used in This Presentation";
};
String STR_TASKPANEL_RECENT_MASTER_PAGES_TITLE
{
Text [ de ] = "Zuletzt verwendet";
Text [ en-US ] = "Recently Used";
};
String STR_TASKPANEL_ALL_MASTER_PAGES_TITLE
{
Text [ de ] = "Zur Verwendung vorhanden";
Text [ en-US ] = "Available for Use";
};
String STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION
{
Text [ de ] = "Vorschau nicht verfgbar";
Text [ en-US ] = "Preview not available";
};
String STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION
{
Text [ de ] = "Erzeuge Vorschau";
Text [ en-US ] = "Preparing preview";
};
String STR_TASKPANEL_LAYOUT_MENU_TITLE
{
Text [ de ] = "Layouts";
Text [ en-US ] = "Layouts";
};
String STR_GRAPHICS_STYLE_FAMILY
{
Text [ de ] = "Grafikobjektvorlagen";
Text [ en-US ] = "Graphics Styles";
};
|