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
|
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-03-31 22:32+0200\n"
"PO-Revision-Date: 2020-03-30 09:16+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_online/loleaflet-help/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10.3\n"
"X-Pootle-Path: /de/libo_online/loleaflet-help-de.po\n"
"X-Pootle-Revision: 3254192\n"
#: html/loleaflet-help.html%2Bdiv.h1:19-5
msgid "Keyboard Shortcuts"
msgstr "Tastenkombinationen"
#: html/loleaflet-help.html%2Bdiv.div.h2:21-9
msgid "General Keyboard Shortcuts"
msgstr "Allgemeine Tastenkombinationen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:23-18
msgid "Undo"
msgstr "Rückgängig"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:23-49
msgid "Ctrl + Z"
msgstr "Strg + Z"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:24-18
msgid "Redo"
msgstr "Wiederholen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:24-49
msgid "Ctrl + Y"
msgstr "Strg + Y"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:25-18
msgid "Cut"
msgstr "Ausschneiden"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:25-48
msgid "Ctrl + X"
msgstr "Strg + X"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:26-18
msgid "Paste as unformatted text"
msgstr "Unformatierten Text einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:26-70
msgid "Ctrl + Alt + Shift + V"
msgstr "Strg + Alt + Umschalt + V"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:27-18
msgid "Print (Download as PDF)"
msgstr "Drucken (als PDF herunterladen)"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:27-68
msgid "Ctrl + P"
msgstr "Strg + P"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:28-18
msgid "Display the Keyboard shortcuts help"
msgstr "Zeigt die Hilfe für Tastenkombinationen an"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:28-80
msgid "Ctrl + Shift + ?"
msgstr "Strg + Umschalt + ?"
#: html/loleaflet-help.html%2Bdiv.div.h2:32-9
#: html/loleaflet-help.html%2Bdiv.div.h2:154-9
msgid "Text formatting"
msgstr "Textformatierung"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:34-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:131-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:156-18
msgid "Bold"
msgstr "Fett"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:34-49
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:131-49
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:156-49
msgid "Ctrl + B"
msgstr "Strg + B"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:35-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:132-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:157-18
msgid "Italic"
msgstr "Kursiv"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:35-51
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:132-51
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:157-51
msgid "Ctrl + I"
msgstr "Strg + I"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:36-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:133-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:158-18
msgid "Underline"
msgstr "Unterstrichen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:36-54
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:133-54
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:158-54
msgid "Ctrl + U"
msgstr "Strg + U"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:37-18
msgid "Double Underline"
msgstr "Doppelt unterstreichen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:37-61
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:138-54
msgid "Ctrl + D"
msgstr "Strg + D"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:38-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:134-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:159-18
msgid "Strikethrough"
msgstr "Durchgestrichen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:38-58
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:134-58
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:159-58
msgid "Ctrl + Alt + 5"
msgstr "Strg + Alt + 5"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:39-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:160-18
msgid "Superscript"
msgstr "Hochgestellt"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:39-56
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:160-56
msgid "Ctrl + Shift + P"
msgstr "Strg + Umschalt + P"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:40-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:161-18
msgid "Subscript"
msgstr "Tiefgestellt"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:40-54
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:161-54
msgid "Ctrl + Shift + B"
msgstr "Strg + Umschalt + B"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:41-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:135-18
msgid "Remove direct formatting"
msgstr "Direkte Formatierung entfernen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:41-69
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:135-69
msgid "Ctrl + M"
msgstr "Strg + M"
#: html/loleaflet-help.html%2Bdiv.div.h2:43-9
#: html/loleaflet-help.html%2Bdiv.div.h2:164-9
msgid "Paragraph formatting"
msgstr "Absatzformatierung"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:45-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:140-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:166-18
msgid "Align Center"
msgstr "Zentriert"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:45-57
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:140-57
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:166-57
msgid "Ctrl + E"
msgstr "Strg + E"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:46-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:141-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:167-18
msgid "Align Left"
msgstr "Linksbündig"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:46-55
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:141-55
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:167-55
msgid "Ctrl + L"
msgstr "Strg + L"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:47-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:142-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:168-18
msgid "Align Right"
msgstr "Rechtsbündig"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:47-56
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:142-56
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:168-56
msgid "Ctrl + R"
msgstr "Strg + R"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:48-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:143-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:169-18
msgid "Justify"
msgstr "Blocksatz"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:48-52
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:143-52
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:169-52
msgid "Ctrl + J"
msgstr "Strg + J"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:49-18
msgid "Apply Default paragraph style"
msgstr "Absatzvorlage Standard zuweisen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:49-74
msgid "Ctrl + 0"
msgstr "Strg + 0"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:50-18
msgid "Apply Heading 1 paragraph style"
msgstr "Absatzvorlage Überschrift 1 zuweisen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:50-76
msgid "Ctrl + 1"
msgstr "Strg + 1"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:51-18
msgid "Apply Heading 2 paragraph style"
msgstr "Absatzvorlage Überschrift 2 zuweisen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:51-76
msgid "Ctrl + 2"
msgstr "Strg + 2"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:52-18
msgid "Apply Heading 3 paragraph style"
msgstr "Absatzvorlage Überschrift 3 zuweisen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:52-76
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:144-69
msgid "Ctrl + 3"
msgstr "Strg + 3"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:53-18
msgid "Apply Heading 4 paragraph style"
msgstr "Absatzvorlage Überschrift 4 zuweisen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:53-76
msgid "Ctrl + 4"
msgstr "Strg + 4"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:54-18
msgid "Apply Heading 5 paragraph style"
msgstr "Absatzvorlage Überschrift 5 zuweisen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:54-76
msgid "Ctrl + 5"
msgstr "Strg + 5"
#: html/loleaflet-help.html%2Bdiv.div.h2:56-9
msgid "Text selection and navigation in document"
msgstr "Textauswahl und Navigation im Dokument"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:58-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:139-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:162-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:175-18
msgid "Select All"
msgstr "Alle auswählen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:58-55
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:96-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:139-55
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:162-55
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:175-55
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:207-79
msgid "Ctrl + A"
msgstr "Strg + A"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:59-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:176-18
msgid "Move cursor to the left"
msgstr "Den Cursor nach links bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:59-68
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:176-68
msgid "Arrow Left"
msgstr "Pfeil nach links"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:60-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:177-18
msgid "Move cursor with selection to the left"
msgstr "Die Auswahl nach links verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:60-83
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:177-83
msgid "Shift + Arrow Left"
msgstr "Umschalt + Pfeil nach links"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:61-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:178-18
msgid "Go to beginning of a word"
msgstr "Den Cursor zum vorherigen Wortanfang bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:61-70
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:178-70
msgid "Ctrl + Arrow Left"
msgstr "Strg + Pfeil nach links"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:62-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:179-18
msgid "Select to the left word by word"
msgstr "Die Auswahl wortweise nach links verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:62-76
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:179-76
msgid "Ctrl + Shift + Arrow Left"
msgstr "Strg + Umschalt + Pfeil nach links"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:63-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:180-18
msgid "Move cursor to the right"
msgstr "Den Cursor nach rechts bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:63-69
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:180-69
msgid "Arrow Right"
msgstr "Pfeil nach rechts"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:64-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:181-18
msgid "Move cursor with selection to the right"
msgstr "Die Auswahl nach rechts verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:64-84
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:181-84
msgid "Shift + Arrow Right"
msgstr "Umschalt + Pfeil nach rechts"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:65-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:182-18
msgid "Go to start of the next word"
msgstr "Den Cursor zum nächsten Wortanfang bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:65-73
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:182-73
msgid "Ctrl + Arrow Right"
msgstr "Strg + Pfeil nach rechts"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:66-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:183-18
msgid "Select to the right word by word"
msgstr "Die Auswahl wortweise nach rechts verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:66-77
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:183-77
msgid "Ctrl + Shift + Arrow Right"
msgstr "Strg + Umschalt + Pfeil nach rechts"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:67-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:184-18
msgid "Move cursor up one line"
msgstr "Den Cursor eine Zeile nach oben bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:67-68
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:184-68
msgid "Arrow Up"
msgstr "Pfeil nach oben"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:68-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:185-18
msgid "Select lines in upwards direction"
msgstr "Die Auswahl um eine Zeile nach oben verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:68-78
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:185-78
msgid "Shift + Arrow Up"
msgstr "Umschalt + Pfeil nach oben"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:69-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:186-18
msgid "Move cursor to beginning of the previous paragraph"
msgstr "Den Cursor zum vorherigen Anfang eines Absatzes bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:69-95
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:186-95
msgid "Ctrl + Arrow Up"
msgstr "Strg + Pfeil nach oben"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:70-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:187-18
msgid "Select to beginning of paragraph"
msgstr "Die Auswahl zum vorherigen Anfang eines Absatzes verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:70-77
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:187-77
msgid "Ctrl + Shift + Arrow Up"
msgstr "Strg + Umschalt + Pfeil nach oben"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:71-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:188-18
msgid "Move cursor down one line"
msgstr "Den Cursor eine Zeile nach unten bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:71-70
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:188-70
msgid "Arrow Down"
msgstr "Pfeil nach unten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:72-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:189-18
msgid "Select lines in downwards direction"
msgstr "Die Auswahl um eine Zeile nach unten verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:72-80
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:189-80
msgid "Shift + Arrow Down"
msgstr "Umschalt + Pfeil nach unten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:73-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:190-18
msgid "Move cursor to beginning of the next paragraph"
msgstr "Den Cursor zum nächsten Anfang eines Absatzes bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:73-91
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:190-91
msgid "Ctrl + Arrow Down"
msgstr "Strg + Pfeil nach unten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:74-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:191-18
msgid "Select to end of paragraph"
msgstr "Die Auswahl zum nächsten Anfang eines Absatzes verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:74-71
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:191-71
msgid "Ctrl + Shift + Arrow Down"
msgstr "Strg + Umschalt + Pfeil nach unten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:75-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:192-18
msgid "Go to beginning of line"
msgstr "Den Cursor zum Zeilenanfang bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:75-68
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:192-68
msgid "Home"
msgstr "Pos1"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:76-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:193-18
msgid "Go and select to the beginning of a line"
msgstr "Die Auswahl zum Zeilenanfang verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:76-85
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:193-85
msgid "Shift + Home"
msgstr "Umschalt + Pos1"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:77-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:194-18
msgid "Go to start of document"
msgstr "Den Cursor zum Dokumentanfang bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:77-68
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:97-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:194-68
msgid "Ctrl + Home"
msgstr "Strg + Pos1"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:78-18
msgid "Go and select text to start of document"
msgstr "Die Auswahl bis zum Dokumentanfang verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:78-84
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:195-83
msgid "Ctrl + Shift + Home"
msgstr "Strg + Umschalt + Pos1"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:79-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:196-18
msgid "Go to end of line"
msgstr "Den Cursor zum Zeilenende bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:79-62
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:196-62
msgid "End"
msgstr "Ende"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:80-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:197-18
msgid "Go and select to the end of a line"
msgstr "Die Auswahl zum Zeilenende verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:80-79
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:197-79
msgid "Shift + End"
msgstr "Umschalt + Ende"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:81-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:198-18
msgid "Go to end of document"
msgstr "Den Cursor zum Dokumentende bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:81-66
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:98-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:198-66
msgid "Ctrl + End"
msgstr "Strg + Ende"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:82-18
msgid "Go and select text to end of document"
msgstr "Die Auswahl bis zum Dokumentende verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:82-82
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:199-81
msgid "Ctrl + Shift + End"
msgstr "Strg + Umschalt + Ende"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:83-18
msgid "Move the view up one page"
msgstr "Den Cursor um eine Bildschirmseite nach oben bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:83-70
msgid "PageUp"
msgstr "Bild nach oben"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:84-18
msgid "Switch cursor between text and header"
msgstr "Den Cursor zwischen Text und Kopfzeile wechseln"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:84-82
msgid "Ctrl + PageUp"
msgstr "Strg + Bild nach oben"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:85-18
msgid "Extend the selection up one page"
msgstr "Die Auswahl um eine Bildschirmseite nach oben verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:85-77
msgid "Shift + PageUp"
msgstr "Umschalt + Bild nach oben"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:86-18
msgid "Move the view down one page"
msgstr "Den Cursor um eine Bildschirmseite nach unten bewegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:86-72
msgid "PageDown"
msgstr "Bild nach unten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:87-18
msgid "Switch cursor between text and footer"
msgstr "Den Cursor zwischen Text und Fußzeile wechseln"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:87-82
msgid "Ctrl + PageDown"
msgstr "Strg + Bild nach unten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:88-18
msgid "Extend the selection down one page"
msgstr "Die Auswahl um eine Bildschirmseite nach unten verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:88-79
msgid "Shift + PageDown"
msgstr "Umschalt + Bild nach unten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:89-18
msgid "Delete to beginning of word"
msgstr "Bis zum Wortanfang löschen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:89-72
msgid "Ctrl + Backspace"
msgstr "Strg + Rücktaste"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:90-18
msgid "Delete to end of word"
msgstr "Bis zum Wortende löschen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:90-66
msgid "Ctrl + Del"
msgstr "Strg + Entf"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:91-18
msgid "Delete to beginning of sentence"
msgstr "Bis zum Satzanfang löschen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:91-76
msgid "Ctrl + Shift + Backspace"
msgstr "Strg + Umschalt + Rücktaste"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:92-18
msgid "Delete to end of sentence"
msgstr "Bis zum Satzende löschen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:92-70
msgid "Ctrl + Shift + Del"
msgstr "Strg + Umschalt + Entf"
#: html/loleaflet-help.html%2Bdiv.div.h2:94-9
msgid "Shortcut Keys for Tables"
msgstr "Tastenkombinationen für Tabellen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:96-54
msgid "If the active cell is empty: selects the whole table. Otherwise: selects the contents of the active cell. Pressing again selects the entire table."
msgstr "Wenn die aktuelle Zelle leer ist: Markiert die ganze Tabelle. Sonst: Markiert den Inhalt der aktuellen Zelle. Eine erneute Betätigung markiert die ganze Tabelle."
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:97-57
msgid "If the active cell is empty: goes to the beginning of the table. Otherwise: first press goes to beginning of the active cell, second press goes to beginning of the current table, third press goes to beginning of document."
msgstr "Wenn die aktuelle Zelle leer ist: Springt an den Anfang der Tabelle. Sonst: Springt beim ersten Druck an den Anfang der aktuellen Zelle, beim zweiten Druck an den Anfang der aktuellen Tabelle, beim dritten Druck an den Dokumentanfang."
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:98-56
msgid "If the active cell is empty: goes to the end of the table. Otherwise: first press goes to the end of the active cell, second press goes to the end of the current table, third press goes to the end of the document."
msgstr "Wenn die aktuelle Zelle leer ist: Springt an das Ende der Tabelle. Sonst: Springt beim ersten Druck an das Ende der aktuellen Zelle, beim zweiten Druck an das Ende aktuellen der Tabelle, beim dritten Druck an das Dokumentende."
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:99-18
msgid "Ctrl + Tab"
msgstr "Strg + Tabulator"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:99-56
msgid "Inserts a tab stop (only in tables). Depending on the Window Manager in use, Alt + Tab may be used instead."
msgstr "Fügt einen Tabulator ein (nur in Tabellen). Abhängig davon, ob von der Benutzeroberfläche bereits verwendet, könnte auch Alt + Tabulator funktionieren."
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:100-18
msgid "Alt + Arrow Keys"
msgstr "Alt + Pfeiltasten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:100-62
msgid "Increases/decreases the size of the column/row on the right/bottom cell edge"
msgstr "Vergrößert/Verkleinert die Spalte/Zeile an der rechten/unteren Zellenkante"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:101-18
msgid "Alt + Shift + Arrow Keys"
msgstr "Alt + Umschalt + Pfeiltasten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:101-70
msgid "Increase/decrease the size of the column/row on the left/top cell edge"
msgstr "Vergrößert/Verkleinert die Spalte/Zeile an der linken/oberen Zellenkante"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:102-18
msgid "Alt + Ctrl + Arrow Keys"
msgstr "Alt + Strg + Pfeiltasten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:102-69
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:103-77
msgid "Like Alt, but only the active cell is modified"
msgstr "Wie Alt, aber nur die aktuelle Zelle wird verändert"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:103-18
msgid "Ctrl + Alt + Shift + Arrow Keys"
msgstr "Strg + Alt + Umschalt + Pfeiltasten"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:104-18
msgid "Alt + Insert"
msgstr "Alt + Einfg"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:104-58
msgid "3 seconds in Insert mode, Arrow Key inserts row/column, Ctrl + Arrow Key inserts cell"
msgstr "3 Sekunden andauernder Einfügemodus, Pfeiltasten fügen Zeilen/Spalten ein, Strg + Pfeiltasten fügt Zellen ein"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:105-18
msgid "Alt + Del"
msgstr "Alt + Entf"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:105-55
msgid "3 seconds in Delete mode, Arrow key deletes row/column, Ctrl + Arrow key merges cell with neighboring cell"
msgstr "3 Sekunden andauernder Löschmodus, Pfeiltasten löschen Zeilen/Spalten, Strg + Pfeiltasten verbindet mit Nachbarzellen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:106-18
msgid "Shift + Ctrl + Del"
msgstr "Umschalt + Strg + Entf"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td.p:106-86
msgid "If no whole cell is selected, the text from the cursor to the end of the current sentence is deleted. If the cursor is at the end of a cell, and no whole cell is selected, the contents of the next cell are deleted."
msgstr "Sofern keine vollständige Zelle ausgewählt ist, wird der Text von der Cursorposition bis zum Ende des aktuellen Satzes gelöscht. Befindet sich der Cursor am Ende einer Zelle und es ist keine vollständige Zelle markiert, wird der Inhalt der nächsten Zelle gelöscht."
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td.p:107-1
msgid "If no whole cell is selected and the cursor is at the end of the table, the paragraph following the table will be deleted, unless it is the last paragraph in the document."
msgstr "Sofern keine vollständige Zelle ausgewählt ist und der Cursor am Ende der Tabelle platziert ist, wird der Absatz gelöscht, welcher der Tabelle folgt, außer es handelt sich um den letzten Absatz des Dokumentes."
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td.p:108-1
msgid "If one or more cells are selected, the whole rows containing the selection will be deleted. If all rows are selected completely or partially, the entire table will be deleted."
msgstr "Falls eine oder mehrere Zellen ausgewählt sind, werden alle Zeilen gelöscht, welche die Auswahl enthält. Wenn alle Zeilen teilweise oder ganz ausgewählt sind, wird die gesamte Tabelle gelöscht."
#: html/loleaflet-help.html%2Bdiv.div.h2:111-9
msgid "Word processor functions"
msgstr "Textverarbeitungsfunktionen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:113-18
msgid "Insert footnote"
msgstr "Fußnote einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:113-60
msgid "Ctrl + Alt + F"
msgstr "Strg + Alt + F"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:114-18
msgid "Insert endnote"
msgstr "Endnote einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:114-59
msgid "Ctrl + Alt + D"
msgstr "Strg + Alt + D"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:115-18
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:136-18
msgid "Insert comment"
msgstr "Kommentar einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:115-59
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:136-59
msgid "Ctrl + Alt + C"
msgstr "Strg + Alt + C"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:117-18
msgid "Insert soft hyphen"
msgstr "Weiches Trennzeichen einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:117-63
msgid "Ctrl + -"
msgstr "Strg + -"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:118-18
msgid "Insert non-breaking hyphen"
msgstr "Geschützten Bindestrich einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:118-71
msgid "Ctrl + Shift + -"
msgstr "Strg + Umschalt + -"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:120-18
msgid "Insert non-breaking space"
msgstr "Geschütztes Leerzeichen einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:120-70
msgid "Ctrl + Shift + Space"
msgstr "Strg + Umschalt + Leertaste"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:121-18
msgid "Insert line break"
msgstr "Zeilenumbruch einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:121-62
msgid "Shift + Enter"
msgstr "Umschalt + Eingabetaste"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:122-18
msgid "Manual page break"
msgstr "Manueller Seitenumbruch"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:122-62
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:206-93
msgid "Ctrl + Enter"
msgstr "Strg + Eingabetaste"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:123-18
msgid "Column break (in multicolumnar text)"
msgstr "Spaltenumbruch (in mehrspaltigem Text)"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:123-81
msgid "Ctrl + Shift + Enter"
msgstr "Strg + Umschalt + Eingabetaste"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:124-18
msgid "Insert new paragraph directly before or after a section, or before a table"
msgstr "Einen neuen Absatz direkt vor oder nach einem Bereich oder vor einer Tabelle einfügen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:124-119
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:125-155
msgid "Alt + Enter"
msgstr "Alt + Eingabetaste"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:125-18
msgid "Insert new paragraph without numbering inside a list. Does not work when the cursor is at the end of the list."
msgstr "Einen neuen Absatz ohne Nummerierung innerhalb einer Liste einfügen. Dies funktioniert aber nicht, wenn sich der Cursor am Ende der Liste befindet."
#: html/loleaflet-help.html%2Bdiv.div.h2:129-9
msgid "Cell formatting"
msgstr "Zellenformatierung"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:137-18
msgid "Display comment"
msgstr "Kommentar anzeigen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:137-60
msgid "Ctrl + F1"
msgstr "Strg + F1"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:138-18
msgid "Fill Down"
msgstr "Nach unten ausfüllen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:144-18
msgid "Set Optimal Column Width"
msgstr "Optimale Spaltenbreite festlegen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:145-18
msgid "Two decimal places, thousands separator"
msgstr "Zwei Nachkommastellen, Tausendertrenner"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:145-84
msgid "Ctrl + Shift + 1"
msgstr "Strg + Umschalt + 1"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:146-18
msgid "Standard exponential format"
msgstr "Standard-Exponentialformat"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:146-72
msgid "Ctrl + Shift + 2"
msgstr "Strg + Umschalt + 2"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:147-18
msgid "Standard date format"
msgstr "Standard-Datumsformat"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:147-65
msgid "Ctrl + Shift + 3"
msgstr "Strg + Umschalt + 3"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:148-18
msgid "Standard currency format"
msgstr "Standard-Währungsformat"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:148-69
msgid "Ctrl + Shift + 4"
msgstr "Strg + Umschalt + 4"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:149-18
msgid "Standard percentage format (two decimal places)"
msgstr "Standard-Prozentformat (mit 2 Nachkommastellen)"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:149-92
msgid "Ctrl + Shift + 5"
msgstr "Strg + Umschalt + 5"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:150-18
msgid "Standard format"
msgstr "Standardformat"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:150-60
msgid "Ctrl + Shift + 6"
msgstr "Strg + Umschalt + 6"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:170-18
msgid "Demote list item (list item has to be selected)"
msgstr "Listenebene verringern (Eintrag muss ausgewählt sein)"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:170-92
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:204-99
msgid "Tab"
msgstr "Tabulator"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:171-18
msgid "Promote list item (list item has to be selected)"
msgstr "Listenebene erhöhen (Eintrag muss ausgewählt sein)"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:171-93
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:205-107
msgid "Shift + Tab"
msgstr "Umschalt + Tabulator"
#: html/loleaflet-help.html%2Bdiv.div.h2:173-9
msgid "Text selection and navigation in a textbox"
msgstr "Textauswahl und Navigation in einem Textfeld"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:195-18
msgid "Go and select text to start of textbox"
msgstr "Die Auswahl bis zum Anfang der Textbox verändern"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:199-18
msgid "Go and select text to end of textbox"
msgstr "Die Auswahl bis zum Ende der Textbox verändern"
#: html/loleaflet-help.html%2Bdiv.div.h2:201-9
msgid "Slide / draw page keyboard shortcuts"
msgstr "Tastenkombinationen für Folien / Zeichenflächen"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:203-18
msgid "Escape current mode, i.e. from edit mode switch to object selection mode, from object selection mode switch to view mode."
msgstr "Aktuellen Modus verlassen, beispielsweise vom Bearbeitungsmodus in den Auswahlmodus oder vom Auswahlmodus in die Normalansicht."
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:203-166
msgid "Esc"
msgstr "Escape"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:204-18
msgid "Select objects in the order in which they were created"
msgstr "Auswahl von Objekten in der Reihenfolge der Erstellung wechseln"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:205-18
msgid "Select objects in the reverse order in which they were created"
msgstr "Auswahl von Objekten in der umgekehrten Reihenfolge der Erstellung wechseln"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:206-18
msgid "Move to next text object on slide / drawing page"
msgstr "Zum nächsten Textobjekt auf der Folie / Zeichenfläche wechseln"
#: html/loleaflet-help.html%2Bdiv.div.table.tr.td:207-18
msgid "Select all in slide / drawing page"
msgstr "Alles auf der Folie / Zeichenfläche auswählen"
#: html/loleaflet-help.html%2Bdiv.h1:212-5
msgid "<span class=\"productname\">%productName</span> Help"
msgstr "<span class=\"productname\">%productName</span> Hilfe"
#: html/loleaflet-help.html%2Bdiv.p:213-5
#: html/loleaflet-help.html%2Bdiv.h3:251-5
msgid "Collaborative editing"
msgstr "Gemeinsame Bearbeitung"
#: html/loleaflet-help.html%2Bdiv.p:214-5
#: html/loleaflet-help.html%2Bdiv.h3:258-5
msgid "<span class=\"productname\">%productName</span> user interface"
msgstr "<span class=\"productname\">%productName</span> Benutzeroberfläche"
#: html/loleaflet-help.html%2Bdiv.p:215-5
#: html/loleaflet-help.html%2Bdiv.h3:278-5
msgid "Opening, closing, saving, printing and downloading documents"
msgstr "Öffnen, Schließen, Speichern, Drucken und Herunterladen von Dokumenten"
#: html/loleaflet-help.html%2Bdiv.p:216-5
#: html/loleaflet-help.html%2Bdiv.h3:286-5
msgid "Editing documents"
msgstr "Dokumente bearbeiten"
#: html/loleaflet-help.html%2Bdiv.p:217-5
#: html/loleaflet-help.html%2Bdiv.div.p:223-9
#: html/loleaflet-help.html%2Bdiv.div.p:236-9
#: html/loleaflet-help.html%2Bdiv.h3:307-5
#: html/loleaflet-help.html%2Bdiv.div.h3:352-5
#: html/loleaflet-help.html%2Bdiv.div.h3:432-5
msgid "Advanced features"
msgstr "Zusätzliche Funktionen"
#: html/loleaflet-help.html%2Bdiv.div.p:219-9
#: html/loleaflet-help.html%2Bdiv.div.h2:337-5
msgid "<span class=\"productname\">%productName</span> spreadsheets"
msgstr "<span class=\"productname\">%productName</span> Tabellendokumente"
#: html/loleaflet-help.html%2Bdiv.div.p:220-9
#: html/loleaflet-help.html%2Bdiv.div.h3:339-5
msgid "Editing spreadsheets"
msgstr "Tabellendokumente bearbeiten"
#: html/loleaflet-help.html%2Bdiv.div.p:221-9
#: html/loleaflet-help.html%2Bdiv.div.h3:342-5
msgid "Formulas"
msgstr "Formeln"
#: html/loleaflet-help.html%2Bdiv.div.p:222-9
#: html/loleaflet-help.html%2Bdiv.div.h3:348-5
msgid "Formatting spreadsheets"
msgstr "Tabellendokumente formatieren"
#: html/loleaflet-help.html%2Bdiv.div.p:226-9
#: html/loleaflet-help.html%2Bdiv.div.h2:385-5
msgid "<span class=\"productname\">%productName</span> text documents"
msgstr "<span class=\"productname\">%productName</span> Textdokumente"
#: html/loleaflet-help.html%2Bdiv.div.p:227-9
#: html/loleaflet-help.html%2Bdiv.div.h3:387-5
msgid "Editing text documents"
msgstr "Textdokumente bearbeiten"
#: html/loleaflet-help.html%2Bdiv.div.p:228-9
#: html/loleaflet-help.html%2Bdiv.div.h3:390-5
msgid "Context menus"
msgstr "Kontextmenüs"
#: html/loleaflet-help.html%2Bdiv.div.p:229-9
#: html/loleaflet-help.html%2Bdiv.div.h3:400-5
msgid "Advanced text document editor features"
msgstr "Zusätzliche Funktionen des Textdokument-Editors"
#: html/loleaflet-help.html%2Bdiv.div.p:232-9
#: html/loleaflet-help.html%2Bdiv.div.h2:419-5
msgid "<span class=\"productname\">%productName</span> presentations"
msgstr "<span class=\"productname\">%productName</span> Präsentationen"
#: html/loleaflet-help.html%2Bdiv.div.p:233-9
#: html/loleaflet-help.html%2Bdiv.div.h3:421-5
msgid "Editing presentations"
msgstr "Präsentationen bearbeiten"
#: html/loleaflet-help.html%2Bdiv.div.p:234-9
#: html/loleaflet-help.html%2Bdiv.div.h3:424-5
msgid "Slide show"
msgstr "Bildschirmpräsentation"
#: html/loleaflet-help.html%2Bdiv.div.p:235-9
#: html/loleaflet-help.html%2Bdiv.div.h3:428-5
msgid "Slide pane"
msgstr "Folienbereich"
#: html/loleaflet-help.html%2Bdiv.p:238-5
#: html/loleaflet-help.html%2Bdiv.h2:441-5
msgid "Frequently Asked Questions"
msgstr "FAQs"
#: html/loleaflet-help.html%2Bdiv.p:239-5
msgid "General"
msgstr "Allgemein"
#: html/loleaflet-help.html%2Bdiv.div.p:241-9
#: html/loleaflet-help.html%2Bdiv.div.h3:473-5
msgid "Text documents"
msgstr "Textdokumente"
#: html/loleaflet-help.html%2Bdiv.div.p:244-9
#: html/loleaflet-help.html%2Bdiv.div.h3:537-5
msgid "Spreadsheets"
msgstr "Tabellendokumente"
#: html/loleaflet-help.html%2Bdiv.div.p:247-9
#: html/loleaflet-help.html%2Bdiv.div.h3:565-5
msgid "Presentations"
msgstr "Präsentationen"
#: html/loleaflet-help.html%2Bdiv.p:249-5
msgid "<span class=\"productname\">%productName</span> allows you to create and edit office documents text documents, spreadsheets and presentations directly in your browser, in a simple and straight-forward way. You can work alone on a document, or collaboratively as part of a team."
msgstr "Mit <span class=\"productname\">%productName</span> können Sie auf einfache und unkomplizierte Weise Textdokumente, Tabellendokumente und Präsentationen direkt in Ihrem Browser erstellen und bearbeiten. Sie können alleine oder gemeinsam als Teil eines Teams an einem Dokument arbeiten."
#: html/loleaflet-help.html%2Bdiv.ul.li.p:253-11
msgid "Each user gets assigned a color. The cursor of each user will be shown in the assigned color. Note: you will see your cursor as black, blinking cursor, although others will see you with a different color."
msgstr "Jedem Benutzer wird eine Farbe zugewiesen. Der Cursor jedes Benutzers wird in der zugewiesenen Farbe angezeigt. Hinweis: Sie sehen Ihren Cursor als schwarzen, blinkenden Cursor, während andere Sie mit einer anderen Farbe sehen."
#: html/loleaflet-help.html%2Bdiv.ul.li.p:254-11
msgid "You can jump to the cursor of a user by clicking on the name (or avatar) of the user. It is possible to follow the editor."
msgstr "Sie können zum Cursor eines Benutzers springen, indem Sie auf den Namen (oder Avatar) des Benutzers klicken. Es ist möglich, dem Bearbeiter zu folgen."
#: html/loleaflet-help.html%2Bdiv.ul.li.p:255-11
msgid "<span class=\"productname\">%productName</span> notifies you with a small notification in the footer when a new user enters or when a user leaves."
msgstr "<span class=\"productname\">%productName</span> informiert Sie mit einer kleinen Benachrichtigung in der Fußzeile, wenn ein neuer Benutzer hinzukommt oder einer das Dokument verlässt."
#: html/loleaflet-help.html%2Bdiv.p:259-5
msgid "<span class=\"productname\">%productName</span> uses modern browser resources to adapt the user interface to the size of the viewing area, including small screens found in mobile devices. The interface is composed of:"
msgstr "<span class=\"productname\">%productName</span> verwendet moderne Browser-Ressourcen, um die Benutzeroberfläche an die Größe des Anzeigebereichs anzupassen, einschließlich kleiner Bildschirme auf Mobilgeräten. Die Schnittstelle besteht aus:"
#: html/loleaflet-help.html%2Bdiv.p:260-5
msgid "<span class=\"def\">The document area:</span> The application area shows the document contents, either spreadsheets, presentations or text documents."
msgstr "<span class=\"def\">Dem Dokumentbereich:</span> Der Anwendungsbereich zeigt den Dokumentinhalt, entweder Textdokumente, Tabellendokumente oder Präsentationen."
#: html/loleaflet-help.html%2Bdiv.p.img:261-5
msgid "<span class=\"def\">The menu bar:</span> The main menu is placed on the top and includes many options, commands for printing, editing, viewing and other advanced commands. You can hide the menu bar clicking on the <img style=\"height:0.6cm;width:0.6cm;\" src=\"images/fold.svg\"> icon on the far right. Click on the <img style=\"height:0.6cm;width:0.6cm;\" src=\"images/unfold.svg\"> icon to show the menu."
msgstr "<span class=\"def\">Der Menüleiste:</span> Das Hauptmenü befindet sich oben und enthält viele Optionen, Befehle zum Drucken, Bearbeiten, Anzeigen und andere erweiterte Befehle. Sie können die Menüleiste ausblenden, indem Sie auf das Symbol <img style=\"height:0.6cm;width:0.6cm;\" src=\"images/fold.svg\"> ganz rechts klicken. Klicken Sie auf das Symbol <img style=\"height:0.6cm;width:0.6cm;\" src=\"images/unfold.svg\">, um das Menü wieder einzublenden."
#: html/loleaflet-help.html%2Bdiv.p:262-5
msgid "<span class=\"def\">Context menus:</span> On clicking with the right mouse button, a menu appears with commands associated with the underlying object."
msgstr "<span class=\"def\">Kontextmenüs:</span> Wenn Sie mit der rechten Maustaste klicken, wird ein Menü mit Befehlen angezeigt, die dem zugrunde liegenden Objekt zugeordnet sind."
#: html/loleaflet-help.html%2Bdiv.p:263-5
msgid "<span class=\"def\">The toolbar:</span> The toolbar contains the most used options for daily editing. Toolbar buttons are dynamic, meaning that their state (on or off) depends on different factors."
msgstr "<span class=\"def\">Der Symbolleiste:</span> Die Symbolleiste enthält die am häufigsten verwendeten Optionen für die tägliche Verwendung. Symbolleistenschaltflächen sind dynamisch, was bedeutet, dass ihr Status (Ein oder Aus) von verschiedenen Faktoren abhängt."
#: html/loleaflet-help.html%2Bdiv.p:264-5
msgid "<span class=\"def\">The status bar:</span> The status bar is shown in the bottom, and contains several useful options and features."
msgstr "<span class=\"def\">Der Statusleiste:</span> Die Statusleiste wird unten angezeigt und enthält mehrere nützliche Optionen und Funktionen."
#: html/loleaflet-help.html%2Bdiv.p:266-5
msgid "<span class=\"def\">The search bar:</span> Searching starts automatically when content is inserted in the search box, and the document window automatically moves to the first occurrence found. Searching is not case-sensitive. There are three buttons right next to the search box:"
msgstr "<span class=\"def\">Der Suchleiste:</span> Die Suche beginnt automatisch, wenn Inhalt in das Suchfeld eingefügt wird, und das Dokumentfenster wechselt automatisch zum ersten gefundenen Vorkommen. Bei der Suche wird nicht zwischen Groß- und Kleinschreibung unterschieden. Direkt neben dem Suchfeld befinden sich drei Schaltflächen:"
#: html/loleaflet-help.html%2Bdiv.ul.li.p:268-11
msgid "Search backwards"
msgstr "Rückwärts suchen"
#: html/loleaflet-help.html%2Bdiv.ul.li.p:269-11
msgid "Search forward"
msgstr "Vorwärts suchen"
#: html/loleaflet-help.html%2Bdiv.ul.li.p:270-11
msgid "Cancel the search (appears only when a text has been searched)"
msgstr "Suche abbrechen (erscheint nur, wenn Text eingegeben wurde)"
#: html/loleaflet-help.html%2Bdiv.p:272-5
msgid "<span class=\"def\">The zoom bar:</span> At the right of the status bar, there is a set of buttons that allow you to zoom to 100%, zoom out and zoom in. The zoom applies to the document area, the user interface is not affected. The current level of zoom is shown in this area."
msgstr "<span class=\"def\">Der Maßstabsleiste:</span> Rechts in der Statusleiste befinden sich eine Reihe von Schaltflächen, mit denen Sie den Maßstab auf 100% zurücksetzen, verkleinern und vergrößern können. Der Maßstab gilt für den Dokumentbereich, die Benutzeroberfläche ist davon nicht betroffen. In diesem Bereich wird der aktuelle Maßstab angezeigt."
#: html/loleaflet-help.html%2Bdiv.p:273-5
msgid "Text, charts, shapes and svg images will stay sharp, when zooming in, you will only see pixels appear at inserted images, such as jpg’s or png’s."
msgstr "Text, Diagramme, Formen und SVG-Bilder bleiben scharf. Beim Vergrößern werden nur in eingefügten Bildern wie JPEGs oder PNGs Pixel angezeigt."
#: html/loleaflet-help.html%2Bdiv.p:274-5
msgid "Using the browser zoom affects the document and user interface areas."
msgstr "Die Verwendung des Browser-Maßstabs wirkt sich auf die Dokument- und Benutzeroberflächenbereiche aus."
#: html/loleaflet-help.html%2Bdiv.p:275-5
msgid "<span class=\"def\">The information bar:</span> At the right of the search bar, a set of information on the document is displayed. The actual information depends on the nature of the document."
msgstr "<span class=\"def\">Der Informationsleiste:</span> Rechts von der Suchleiste wird eine Reihe von Informationen zum Dokument angezeigt. Die tatsächlichen Informationen hängen von der Art des Dokuments ab."
#: html/loleaflet-help.html%2Bdiv.p:279-5
msgid "Your documents are stored and managed in the cloud storage that is integrated with <span class=\"productname\">%productName</span>."
msgstr "Ihre Dokumente werden im Cloud-Speicher, in welchen <span class=\"productname\">%productName</span> integriert ist, gespeichert und verwaltet."
#: html/loleaflet-help.html%2Bdiv.p:280-5
msgid "To download a document download it from the <span class=\"productname\">%productName</span> application’s <span class=\"ui\">File</span> menu. The download formats available depends on the application. All applications exports documents in PDF format."
msgstr "Um ein Dokument herunterzuladen, laden Sie es aus der <span class=\"productname\">%productName</span> Anwendung über das Menü <span class=\"ui\">Datei</span> herunter. Die verfügbaren Downloadformate hängen von der Anwendung ab. Alle Anwendungen können Dokumente ins PDF-Format exporteieren."
#: html/loleaflet-help.html%2Bdiv.p:281-5
msgid "To open document, click on the file to open the <span class=\"productname\">%productName</span> module associated to the document format."
msgstr "Zum Öffnen eines Dokuments klicken Sie auf die Datei, um das <span class=\"productname\">%productName</span>-Modul, welches dem Dokumentformat zugeordnet ist, zu öffnen."
#: html/loleaflet-help.html%2Bdiv.p:282-5
msgid "Documents in <span class=\"productname\">%productName</span> save automatically, but if you are concerned that a document is synchronized as quickly as possible you can also force saving using the <span class=\"ui\">File</span> menu’s <span class=\"ui\">Save</span> entry."
msgstr "Dokumente in <span class=\"productname\">%productName</span> werden automatisch gespeichert, aber wenn Sie möchten, dass ein Dokument so schnell wie möglich synchronisiert wird, können Sie das Speichern auch erzwingen, indem Sie <span class=\"ui\">Datei</span> – <span class=\"ui\">Speichern</span> wählen."
#: html/loleaflet-help.html%2Bdiv.p:283-5
msgid "Depending on the capabilities of your browser the print window may appear or a “Download PDF export?” popup shows. You can print this PDF in your favorite PDF reader."
msgstr "Abhängig von den Funktionen Ihres Browsers wird möglicherweise das Druckfenster oder eine Meldung \"PDF-Export herunterladen?\" angezeigt. Sie können dieses PDF in Ihrem bevorzugten PDF-Reader drucken."
#: html/loleaflet-help.html%2Bdiv.p:284-5
msgid "When closing a document, it is automatically saved if it has been changed."
msgstr "Beim Schließen eines Dokuments wird es automatisch gespeichert, wenn es geändert wurde."
#: html/loleaflet-help.html%2Bdiv.p:287-5
msgid "Document editing should be familiar to everyone that has used an office application before, but here are some distinctive features:"
msgstr "Die Bearbeitung von Dokumenten sollte jedem bekannt sein, der zuvor eine Office-Anwendung verwendet hat. Hier sind jedoch einige Besonderheiten:"
#: html/loleaflet-help.html%2Bdiv.h4:288-5
msgid "Copy and Paste"
msgstr "Kopieren-und-Einfügen"
#: html/loleaflet-help.html%2Bdiv.p:289-5
msgid "Rich content copy/cut and paste is supported, not only within a given document, but also across documents on the same or different <span class=\"productname\">%productName</span>. For these internal uses, users can copy/cut content, including images and mixed content, on PC by using the keyboard shortcuts directly (<span class=\"kbd\">Ctrl</span> + <span class=\"kbd\">X</span>, <span class=\"kbd\">Ctrl</span> + <span class=\"kbd\">C</span>, <span class=\"kbd\">Ctrl</span> + <span class=\"kbd\">V</span>). For security reasons it is necessary to use <span class=\"kbd\">Ctrl</span> + <span class=\"kbd\">V</span> to paste on PC, but context menus can be used for cut and copy. On Android or iOS selecting text by double tapping, and using a long-tap to access copy/cut/paste via the context menu is required."
msgstr "Das Kopieren/Ausschneiden und Einfügen umfangreicher Inhalte wird nicht nur innerhalb eines bestimmten Dokuments unterstützt, sondern auch zwischen Dokumenten auf derselben oder einer anderen <span class=\"productname\">%productName</span>-Instanz. Hierfür können Benutzer Inhalte, einschließlich Bilder und gemischter Inhalte, auf dem PC kopieren/ausschneiden und einfügen, indem sie direkt die Tastaturkürzel (<span class=\"kbd\">Strg</span> + <span class=\"kbd\">X</span>, <span class=\"kbd\">Strg</span> + <span class=\"kbd\">C</span>, <span class=\"kbd\">Strg</span> + <span class=\"kbd\">V</span>) verwenden. Aus Sicherheitsgründen ist die Verwendung von <span class=\"kbd\">Strg</span> + <span class=\"kbd\">V</span> auf dem PC zum Einfügen erforderlich, aber können die Kontextmenüs zum Ausschneiden und Kopieren verwendet werden. Unter Android oder iOS ist die Auswahl von Text durch zweimaliges Tippen und langes Tippen für den Zugriff auf Kopieren/Ausschneiden und Einfügen über das Kontextmenü erforderlich."
#: html/loleaflet-help.html%2Bdiv.p:290-5
msgid "To copy larger pieces of content to other applications on your device, users need to press the <span class=\"ui\">Start download</span> button, and then re-copy this to their clipboard in order to make it available to the target application to read. This is possible via a tiny widget that pops up in the bottom-right corner, and is only necessary to export the content for pasting in external applications. This step also converts complex object types into static images."
msgstr "Um größere Inhalte in andere Anwendungen auf Ihrem Gerät zu kopieren, müssen die Benutzer die Schaltfläche <span class=\"ui\">Download starten</span> drücken und diese dann erneut in ihre Zwischenablage kopieren, um sie für die Zielanwendung verfügbar zu machen. Dies ist über ein kleines Widget möglich, das in der unteren rechten Ecke angezeigt wird und nur zum Exportieren des Inhalts zum Einfügen in externe Anwendungen erforderlich ist. Dieser Schritt konvertiert auch komplexe Objekttypen in statische Bilder."
#: html/loleaflet-help.html%2Bdiv.h4:291-5
msgid "Document repair"
msgstr "Dokument reparieren"
#: html/loleaflet-help.html%2Bdiv.p:292-5
msgid "When multiple people edit the same document concurrently, it is possible for their changes to conflict and this can cause some confusion. The Document Repair function allows users to undo other editor’s changes to the document to a previous state."
msgstr "Wenn mehrere Personen gleichzeitig das selbe Dokument bearbeiten, kann es zu Konflikten bei ihren Änderungen kommen, was zu Verwirrung führen kann. Mit der Funktion zur Dokumentreparatur können Benutzer die Änderungen anderer Bearbeiter am Dokument auf einen vorherigen Status zurücksetzen."
#: html/loleaflet-help.html%2Bdiv.p:293-5
msgid "To jump back to the selected state, select it with the mouse and hit <span class=\"ui\">Jump to state</span>."
msgstr "Um zum ausgewählten Status zurückzukehren, wählen Sie ihn mit der Maus aus und klicken Sie auf <span class=\"ui\">Zum Status springen</span>."
#: html/loleaflet-help.html%2Bdiv.p:295-5
msgid "This is particularly useful – say when a colleague inadvertently selected all text in the document with <span class=\"kbd\">Ctrl</span> + <span class=\"kbd\">A</span> and proceeded to type over it destroying it – while you were concurrently editing."
msgstr "Dies ist besonders nützlich – beispielsweise, wenn ein Kollege versehentlich den gesamten Text im Dokument mit <span class=\"kbd\">Strg</span> + <span class=\"kbd\">A</span> ausgewählt hat, darüber tippte und es damit zerstörte – während Sie es gleichzeitig bearbeiteten."
#: html/loleaflet-help.html%2Bdiv.h4:296-5
msgid "Inactive document"
msgstr "Inaktives Dokument"
#: html/loleaflet-help.html%2Bdiv.p:297-5
msgid "When <span class=\"productname\">%productName</span> detects that there has not been any activity in the browser for a while, it puts the document in an “Inactive” state. The document is shown with a transparent gray overlay, with the message “Inactive document – please click to resume editing”."
msgstr "Wenn <span class=\"productname\">%productName</span> feststellt, dass im Browser eine Zeit lang keine Aktivität stattgefunden hat, versetzt es das Dokument in den Status \"Inaktiv\". Das Dokument wird mit einer transparenten grauen Überlagerung mit der Meldung \"Inaktives Dokument - bitte klicken, um die Bearbeitung fortzusetzen\" angezeigt."
#: html/loleaflet-help.html%2Bdiv.p:299-5
msgid "To continue editing, click on the document and the layover and message disappear. Any changes that may have been made by other users – while collaboratively editing the document – are re-loaded."
msgstr "Um die Bearbeitung fortzusetzen, klicken Sie auf das Dokument und der Zwischenstopp und die Nachricht verschwinden. Alle Änderungen, die möglicherweise von anderen Benutzern vorgenommen wurden, während das Dokument gemeinsam bearbeitet wurde, werden erneut geladen."
#: html/loleaflet-help.html%2Bdiv.h4:300-5
msgid "Pasting"
msgstr "Einfügen"
#: html/loleaflet-help.html%2Bdiv.p:301-5
msgid "When you paste content copied from within the same document, the format and elements are maintained. If you copy from another document, in another tab or browser window, or from outside of the browser, the pasted content will preserve rich text."
msgstr "Wenn Sie Inhalte einfügen, die aus demselben Dokument kopiert wurden, bleiben Format und Elemente erhalten. Wenn Sie aus einem anderen Dokument, aus einem anderen Browserregister oder -fenster oder von außerhalb des Browsers kopieren, wird der eingefügte Inhalt als Rich Text eingefügt."
#: html/loleaflet-help.html%2Bdiv.p:302-5
msgid "You can paste as unformatted text with the keyboard shortcut: <span class=\"kbd\">Ctrl</span> + <span class=\"kbd\">Alt</span> + <span class=\"kbd\">Shift</span> + <span class=\"kbd\">V</span>"
msgstr "Sie können Inhalte als unformatierten Text mit der folgenden Tastenkombination einfügen: <span class=\"kbd\">Strg</span> + <span class=\"kbd\">Alt</span> + <span class=\"kbd\">Umschalt</span> + <span class=\"kbd\">V</span>."
#: html/loleaflet-help.html%2Bdiv.p:303-5
msgid "When you paste text from within the document, formatting will be respected. You can also paste objects, such as images, if they are copied from the document you are working in."
msgstr "Wenn Sie Text aus dem Dokument einfügen, wird die Formatierung beibehalten. Sie können auch Objekte wie Bilder einfügen, wenn diese aus dem Dokument kopiert werden, in dem Sie arbeiten."
#: html/loleaflet-help.html%2Bdiv.p:304-5
msgid "When you paste text from outside of the document (another browser window or a desktop application, it will be pasted as rich text."
msgstr "Wenn Sie Text von außerhalb des Dokuments (eines anderen Browserfensters oder einer Desktopanwendung) einfügen, wird er als Rich Text eingefügt."
#: html/loleaflet-help.html%2Bdiv.p:305-5
msgid "When you have internal cut or copied content, you can paste this content using the context menu."
msgstr "Wenn Sie internen ausgeschnittenen oder kopierten Inhalt haben, können Sie diesen Inhalt über das Kontextmenü einfügen."
#: html/loleaflet-help.html%2Bdiv.h4:308-5
msgid "Adding charts"
msgstr "Diagramme einfügen"
#: html/loleaflet-help.html%2Bdiv.p:309-5
msgid "<span class=\"productname\">%productName</span> supports inserting and visualization of charts in documents. To add a chart:"
msgstr "<span class=\"productname\">%productName</span> unterstützt das Einfügen und Anzeigen von Diagrammen in Dokumente. So fügen Sie ein Diagramm hinzu:"
#: html/loleaflet-help.html%2Bdiv.ol.li.p:311-11
msgid "Select a table in text document, a range in a spreadsheet or a table in a presentation."
msgstr "Wählen Sie eine Tabelle im Textdokument, einen Bereich in einem Tabellendokument oder eine Tabelle in einer Präsentation aus."
#: html/loleaflet-help.html%2Bdiv.ol.li.p:313-9
msgid "Choose <span class=\"ui\">Insert</span> → <span class=\"ui\">Charts</span>. Customize your chart on the sidebar:"
msgstr "Wählen Sie <span class=\"ui\">Einfügen</span> – <span class=\"ui\">Diagramm</span>. Passen Sie Ihr Diagramm in der Seitenleiste an:"
#: html/loleaflet-help.html%2Bdiv.ol.li.p:316-11
msgid "If no table or range was selected, a prototype chart is displayed."
msgstr "Wenn keine Tabelle oder kein Bereich ausgewählt wurde, wird ein Prototypdiagramm angezeigt."
#: html/loleaflet-help.html%2Bdiv.p:319-5
msgid "<span class=\"def\">Chart editing:</span> Double click the chart to select. Use context menus to add chart elements such as title, axis, and other. Choose <span class=\"ui\">Data Range</span> and <span class=\"ui\">Chart Type</span> to edit chart data and select chart type."
msgstr "<span class=\"def\">Diagramm bearbeiten:</span> Doppelklicken Sie zur Auswahl auf das Diagramm. Verwenden Sie Kontextmenüs, um Diagrammelemente wie Titel, Achse und andere hinzuzufügen. Wählen Sie <span class=\"ui\">Datenbereich</span> und <span class=\"ui\">Diagrammtyp</span> um Diagrammdaten zu bearbeiten und den Diagrammtyp auszuwählen."
#: html/loleaflet-help.html%2Bdiv.p:320-5
msgid "<span class=\"def\">Chart formatting:</span> The same context menu brings you to chart data table and chart type selection."
msgstr "<span class=\"def\">Diagramm formatieren:</span> Über das selbe Kontextmenü gelangen Sie zur Auswahl der Diagrammdatentabelle und des Diagrammtyps."
#: html/loleaflet-help.html%2Bdiv.p:321-5
msgid "<span class=\"def\">Data series formatting:</span> Open the context menu and choose <span class=\"ui\">Format data series</span>."
msgstr "<span class=\"def\">Datenreihen formatieren:</span> Öffnen Sie das Kontextmenü und wählen Sie <span class=\"ui\">Datenreihen formatieren</span>."
#: html/loleaflet-help.html%2Bdiv.h4:322-5
msgid "Handling images"
msgstr "Umgang mit Bildern"
#: html/loleaflet-help.html%2Bdiv.p:323-5
msgid "<span class=\"productname\">%productName</span> inserts images in the text document from your local computer or from your cloud storage. Inserted images are always embedded in the document."
msgstr "<span class=\"productname\">%productName</span> fügt Bilder von Ihrem lokalen Computer oder von Ihrem Cloud-Speicher in das Textdokument ein. Eingefügte Bilder werden immer in das Dokument eingebettet."
#: html/loleaflet-help.html%2Bdiv.p:324-5
msgid "<span class=\"def\">Insert image:</span> Clicking on the <span class=\"ui\">Insert image</span> icon allows you to choose an image from the cloud storage's folders and shares."
msgstr "<span class=\"def\">Bild einfügen:</span> Ein Klick auf das Symbol <span class=\"ui\">Bild einfügen</span> erlaubt es Ihnen, ein Bild aus den Ordnern und Freigaben des Cloud-Speichers auswählen."
#: html/loleaflet-help.html%2Bdiv.p:325-5
msgid "<span class=\"def\">Insert local image:</span> opens the browser file picker to upload the image from your local computer and insert it into the document."
msgstr "<span class=\"def\">Lokales Bild einfügen:</span> öffnet die Browser-Dateiauswahl, um das Bild von Ihrem lokalen Computer hochzuladen und in das Dokument einzufügen."
#: html/loleaflet-help.html%2Bdiv.p:326-5
msgid "Images can be resized, rotated and anchored. Text can be wrapped around the image. Select the image and open the context menu. Use the images handles to resize the image with the mouse."
msgstr "Bilder können in der Größe geändert, gedreht und verankert werden. Text kann um das Bild fließen. Wählen Sie das Bild aus und öffnen Sie das Kontextmenü. Verwenden Sie die Bildgriffe, um die Bildgröße mit der Maus zu ändern."
#: html/loleaflet-help.html%2Bdiv.h4:327-5
msgid "Comments in documents"
msgstr "Kommentare in Dokumenten"
#: html/loleaflet-help.html%2Bdiv.p:328-5
msgid "Insert comments in <span class=\"productname\">%productName</span> in places that need special reader attention. Comments are displayed on the right and carry the name and date of the issuer."
msgstr "Fügen Sie Kommentare in <span class=\"productname\">%productName</span> an Stellen ein, die besondere Aufmerksamkeit des Lesers erfordern. Kommentare werden rechts angezeigt und tragen den Namen und das Datum des Erstellers."
#: html/loleaflet-help.html%2Bdiv.p.img:330-5
msgid "Click on the submenu (<img style=\"height:0.6cm;width:0.6cm;\" alt=\"\" src=\"images/submenu.svg\">) icon to reply, move and delete comments."
msgstr "Klicken Sie auf das Symbol für das Untermenü (<img style=\"height:0.6cm;width:0.6cm;\" alt=\"\" src=\"images/submenu.svg\">) um Kommentare zu beantworten, zu verschieben und zu löschen."
#: html/loleaflet-help.html%2Bdiv.h4:331-5
msgid "Spellchecking"
msgstr "Rechtschreibprüfung"
#: html/loleaflet-help.html%2Bdiv.p:332-5
msgid "<span class=\"productname\">%productName</span> can check spelling in text documents, spreadsheets and presentations. A red wavy underline indicates misspelled words. Click on the right mouse button to open a context menu with suggested misspelling corrections."
msgstr "<span class=\"productname\">%productName</span> kann die Rechtschreibung in Textdokumenten, Tabellendokumenten und Präsentationen überprüfen. Eine rote wellenförmige Unterstreichung zeigt falsch geschriebene Wörter an. Klicken Sie mit der rechten Maustaste, um ein Kontextmenü mit vorgeschlagenen Rechtschreibkorrekturen zu öffnen."
#: html/loleaflet-help.html%2Bdiv.p:334-5
msgid "To systematically spell-check the whole document use the <span class=\"ui\">Tools</span> menu’s <span class=\"ui\">Spelling</span> option."
msgstr "Um das gesamte Dokument systematisch auf Rechtschreibung zu überprüfen, verwenden Sie im Menü <span class=\"ui\">Extras</span> die Option <span class=\"ui\">Rechtschreibung</span>."
#: html/loleaflet-help.html%2Bdiv.div.p:340-5
msgid "You edit an online spreadsheet in the same way you edit a desktop spreadsheet. Operations like entering data, selecting ranges, columns, rows or sheets are the same. Use the keyboard, menus or toolbar to command actions in the spreadsheet. Dragging cells contents to fill cells with data is also supported. Copy, cut and paste commands are available from the context menu. Following entered data with a <span class=\"kbd\">Tab</span> will move the cursor to the next cell to the right, and with an <span class=\"kbd\">Enter</span> to the cell below for easy further data entry."
msgstr "Sie bearbeiten eine Online-Tabelle genauso wie eine Desktop-Tabelle. Vorgänge wie die Eingabe von Daten, die Auswahl von Bereichen, Spalten, Zeilen oder Tabellen sind identisch. Verwenden Sie die Tastatur, Menüs oder Symbolleiste, um Aktionen in der Tabelle auszuführen. Das Ziehen von Zelleninhalten zum Füllen von Zellen mit Daten wird ebenfalls unterstützt. Befehle zum Kopieren, Ausschneiden und Einfügen sind im Kontextmenü verfügbar. Wenn den eingegebenen Daten ein <span class=\"kbd\">Tabulator</span> folgt, bewegt sich der Cursor zur nächsten Zelle nach rechts und mit der <span class=\"kbd\">Eingabetaste</span> in die Zelle darunter zur einfachen weiteren Dateneingabe."
#: html/loleaflet-help.html%2Bdiv.div.p:343-5
msgid "Formulas are entered in the formula bar. Enter '=' and insert the formula."
msgstr "Formeln werden in die Formelleiste eingegeben. Geben Sie '=' gefolgt von der Formel ein."
#: html/loleaflet-help.html%2Bdiv.div.p:344-5
msgid "All spreadsheets functions and mathematical rules applies."
msgstr "Es können alle Tabellenfunktionen und mathematischen Regeln verwendet werden."
#: html/loleaflet-help.html%2Bdiv.div.p:346-5
msgid "The formula language should be extremely familiar to any spreadsheet user, and is specified in great detail in the <a href=\"https://www.oasis-open.org/committees/download.php/16826/openformula-spec-20060221.html\">OASIS OpenFormula specification</a>."
msgstr "Die Formelsprache sollte jedem Tabellenbenutzer sehr vertraut sein und wird in der <a href=\"https://www.oasis-open.org/committees/download.php/16826/openformula-spec-20060221.html\">OASIS OpenFormula-Spezifikation (englisch)</a> ausführlich beschrieben."
#: html/loleaflet-help.html%2Bdiv.div.p:349-5
msgid "<span class=\"def\">Direct formatting:</span> You can format spreadsheets cells, columns, rows and sheets by formatting directly from the menus, toolbar or context menus. Direct formatting applies only to the current object selected. To format a cell either use the menu or hit <span class=\"kbd\">Ctrl</span> + <span class=\"kbd\">1</span>. The dialog allows complex and custom number formatting, as well as font, complex border, background, cell protection and other options."
msgstr "<span class=\"def\">Direkte Formatierung:</span> Sie können Zellen, Spalten, Zeilen und Tabellen formatieren, indem Sie sie direkt über die Menüs, Symbolleisten oder Kontextmenüs formatieren. Die direkte Formatierung gilt nur für das aktuell ausgewählte Objekt. Um eine Zelle zu formatieren, verwenden Sie entweder das Menü oder drücken Sie <span class=\"kbd\">Strg</span> + <span class=\"kbd\">1</span>. Der Dialog ermöglicht die komplexe und benutzerdefinierte Formatierung von Zahlen sowie Schriftarten, komplexe Rahmen, Hintergrund, Zellschutz und andere Optionen festzulegen."
#: html/loleaflet-help.html%2Bdiv.div.p:353-5
msgid "<span class=\"def\">Sorting data:</span> You can sort a list of numbers or text ascending or descending. <span class=\"productname\">%productName</span> automatically detects cells that are headers, and adjoining columns, to extend the selection."
msgstr "<span class=\"def\">Daten sortieren:</span> Sie können eine Liste von Zahlen oder Text aufsteigend oder absteigend sortieren. <span class=\"productname\">%productName</span> erkennt automatisch Zellen, die Überschriften und angrenzende Spalten sind, um die Auswahl zu erweitern."
#: html/loleaflet-help.html%2Bdiv.div.p:354-5
msgid "<span class=\"def\">Filtering data:</span> Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in <span class=\"productname\">%productName</span> there are various possibilities for applying filters."
msgstr "<span class=\"def\">Daten filtern:</span> Mit Filtern und erweiterten Filtern können Sie bestimmte gefilterte Zeilen (Datensätze) eines Datenbereichs bearbeiten. In den Tabellen in <span class=\"productname\">%productName</span> gibt es verschiedene Möglichkeiten, Filter anzuwenden."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:357-10
msgid "One use for the <span class=\"ui\">AutoFilter</span> function is to quickly restrict the display to records with identical entries in a data field."
msgstr "Ein Nutzen der Funktion <span class=\"ui\">AutoFilter</span> besteht darin, die Anzeige schnell auf Datensätze mit identischen Einträgen in einem Datenfeld zu beschränken."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:360-11
msgid "In the <span class=\"ui\">Standard Filter</span> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
msgstr "Im Dialog <span class=\"ui\">Standardfilter</span> können Sie auch Bereiche definieren, welche die Werte in bestimmten Datenfeldern enthalten. Sie können den Standardfilter verwenden, um die Bedingungen entweder mit einem logischen UND- oder einem logischen ODER-Operator zu verbinden."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:361-11
msgid "The <span class=\"ui\">Advanced Filter</span> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
msgstr "Der <span class=\"ui\">Erweiterte Filter</span> ermöglicht bis zu acht Filterbedingungen. Mit erweiterten Filtern geben Sie die Bedingungen direkt in die Tabelle ein."
#: html/loleaflet-help.html%2Bdiv.div.p:363-5
msgid "<span class=\"def\">Outlining:</span> You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click making it easy to represent hierarchical data."
msgstr "<span class=\"def\">Gliederung:</span> Sie können eine Gliederung Ihrer Daten erstellen und Zeilen und Spalten zusammen gruppieren, sodass Sie die Gruppen mit einem einzigen Klick reduzieren und erweitern können, um die Darstellung hierarchischer Daten zu vereinfachen."
#: html/loleaflet-help.html%2Bdiv.div.p:365-5
msgid "<span class=\"def\">Data validation:</span> For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected. To enable data validation:"
msgstr "<span class=\"def\">Datengültigkeit:</span> Für jede Zelle können Sie gültige Einträge definieren. Ungültige Einträge in eine Zelle werden abgelehnt. So aktivieren Sie die Datengültigkeit:"
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:368-9
msgid "Choose <span class=\"ui\">Validity</span> from the <span class=\"ui\">Data</span> menu. The <span class=\"ui\">Validity</span> dialog opens."
msgstr "Wählen Sie <span class=\"ui\">Daten</span> – <span class=\"ui\">Gültigkeit</span>. Der Dialog <span class=\"ui\">Gültigkeit</span> wird geöffnet."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:371-11
msgid "Select the validity criterion in the <span class=\"ui\">Allow</span> drop-box list. Depending on the criterion, more options shows. Fill the required data."
msgstr "Wählen Sie das Gültigkeitskriterium in der Dropdown-Liste <span class=\"ui\">Zulassen</span> aus. Je nach Kriterium werden weitere Optionen angezeigt. Füllen Sie die erforderlichen Daten aus."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:373-9
msgid "Use the <span class=\"ui\">Input Help</span> and <span class=\"ui\">Error Alert</span> tabs to enhance the user interactions. Click <span class=\"ui\">OK</span> to close the dialog."
msgstr "Verwenden Sie die Register <span class=\"ui\">Eingabehilfe</span> und <span class=\"ui\">Fehlermeldung</span>, um die Benutzerinteraktionen zu verbessern. Klicken Sie auf <span class=\"ui\">OK</span>, um den Dialog zu schließen."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:376-11
msgid "To remove the validity of the cell, open the dialog and set the <span class=\"ui\">Allow</span> list to “All values”."
msgstr "Um die Gültigkeitsprüfung der Zelle zu entfernen, öffnen Sie den Dialog und setzen Sie die Dropdown-Liste <span class=\"ui\">Zulassen</span> auf \"Jeden Wert\"."
#: html/loleaflet-help.html%2Bdiv.div.p:378-5
msgid "<span class=\"def\">Comments:</span> In a spreadsheet you can insert one comment per cell. When you select <span class=\"ui\">Insert comment</span>, a popup appears that allows you to write the content for the comment. A red dot shows on the top right corner of the cell when it has a comment. Hover the mouse on the cell to display comments."
msgstr "<span class=\"def\">Kommentare:</span> In eine Tabelle können Sie einen Kommentar pro Zelle einfügen. Wenn Sie <span class=\"ui\">Kommentar einfügen</span> auswählen, wird ein Dialog angezeigt, in den Sie den Inhalt für den Kommentar schreiben können. Ein roter Punkt wird in der oberen rechten Ecke der Zelle angezeigt, wenn sie einen Kommentar enthält. Bewegen Sie die Maus über die Zelle, um Kommentare anzuzeigen."
#: html/loleaflet-help.html%2Bdiv.div.p:380-5
msgid "<span class=\"def\">Conditional formatting:</span> <span class=\"productname\">%productName</span> adds symbols to each cell of a range based on cells conditions. Select the cell range and click the <span class=\"ui\">Conditional Formatting</span> icon on the toolbar. Select the symbol set to apply on the range."
msgstr "<span class=\"def\">Bedingte Formatierung:</span> <span class=\"productname\">%productName</span> fügt jeder Zelle eines Bereichs basierend auf den Zellenbedingungen Symbole hinzu. Wählen Sie den Zellbereich aus und klicken Sie in der Symbolleiste auf das Symbol <span class=\"ui\">Bedingte Formatierung</span>. Wählen Sie den Symbolsatz aus, der auf den Bereich angewendet werden soll."
#: html/loleaflet-help.html%2Bdiv.div.p:388-5
msgid "<span class=\"productname\">%productName</span> edits text documents in the same way you edit a desktop document. It provides a What You See Is What You Get (WYSIWYG) layout – that conveniently lays out the document as it will be printed. Operations like typing text, cut, copy and pasting contents, selecting text, inserting, resizing, anchoring images, adding and handling tables and charts, are similar to a desktop word processor. Use the keyboard, menus and toolbars to interact with your document."
msgstr "<span class=\"productname\">%productName</span> bearbeitet Textdokumente genauso, wie Sie ein Desktop-Dokument bearbeiten. Es bietet ein WYSIWYG-Layout (What You See Is What You Get), welches das Dokument bequem so anzeigt, wie es gedruckt wird. Vorgänge wie das Eingeben von Text, Ausschneiden, Kopieren und Einfügen von Inhalten, Auswählen von Text, Einfügen, Ändern der Größe, Verankern von Bildern, Hinzufügen und Behandeln von Tabellen und Diagrammen ähneln einem Desktop-Textverarbeitungsprogramm. Verwenden Sie die Tastatur, Menüs und Symbolleisten, um mit Ihrem Dokument zu interagieren."
#: html/loleaflet-help.html%2Bdiv.div.p:391-5
msgid "Context menus are available on clicking the right mouse button. The commands available in the context menu are related - not extensively - to the underlying object in the document."
msgstr "Kontextmenüs sind verfügbar, wenn Sie mit der rechten Maustaste klicken. Die im Kontextmenü verfügbaren Befehle beziehen sich – nicht umfassend – auf das zugrunde liegende Objekt im Dokument."
#: html/loleaflet-help.html%2Bdiv.div.h3:393-5
msgid "Formatting text"
msgstr "Text formatieren"
#: html/loleaflet-help.html%2Bdiv.div.p:394-5
msgid "<span class=\"productname\">%productName</span> supports modern techniques for paragraph formatting through styles. A style is a set of text properties (font, color, background and many more) labeled with a name, the style name. Use style to apply the same set of properties to many paragraphs in the document and produce a uniform, professional look. Also, if you change one of the style formatting properties, all paragraphs with the same style changes formatting as well, simplifying the effort of formatting many paragraph individually."
msgstr "<span class=\"productname\">%productName</span> unterstützt moderne Techniken zur Absatzformatierung durch Vorlagen. Eine Vorlage ist eine Reihe von Texteigenschaften (Schriftart, Farbe, Hintergrund und vieles mehr), die mit einem Namen, dem Vorlagennamen, gekennzeichnet ist. Verwenden Sie die Vorlage, um die gleichen Eigenschaften auf viele Absätze im Dokument anzuwenden und ein einheitliches, professionelles Erscheinungsbild zu erzielen. Wenn Sie eine der Formatierungen einer Vorlage ändern, ändern auch alle Absätze mit derselben Vorlage die Formatierung, wodurch der Aufwand für die individuelle Formatierung vieler Absätze vereinfacht wird."
#: html/loleaflet-help.html%2Bdiv.div.p:395-5
msgid "In contrast, direct formatting applies formatting to selected excerpts of the document contents. On a long document, direct formatting must be applied in every text excerpt, turning text formatting a long task, subject to errors and delays."
msgstr "Im Gegensatz dazu werden bei der direkten Formatierung ausgewählte Abschnitte des Dokumentinhalts formatiert. Bei einem langen Dokument muss in jedem Textabschnitt eine direkte Formatierung angewendet werden, wodurch die Textformatierung zu einer langen Aufgabe wird, die zu Fehlern und Verzögerungen führen kann."
#: html/loleaflet-help.html%2Bdiv.div.p:396-5
msgid "<span class=\"def\">Direct formatting:</span> You can format text document objects by formatting directly from the menus, toolbar or context menus. Direct formatting applies only to the current object selected."
msgstr "<span class=\"def\">Direkte Formatierung:</span> Sie können Textdokumentobjekte formatieren, indem Sie diese direkt über die Menüs, die Symbolleiste oder die Kontextmenüs formatieren. Die direkte Formatierung gilt nur für das aktuell ausgewählte Objekt."
#: html/loleaflet-help.html%2Bdiv.div.p:397-5
msgid "<span class=\"def\">Style formatting:</span> <span class=\"productname\">%productName</span> supports paragraph styles. You can apply an existing paragraph style to a paragraph. Choose menu <span class=\"ui\">Edit</span> → <span class=\"ui\">Edit styles</span> to change style."
msgstr "<span class=\"def\">Formatierung mit Vorlagen:</span> <span class=\"productname\">%productName</span> unterstützt Absatzvorlagen. Sie können eine vorhandenen Absatzvorlage auf einen Absatz anwenden. Wählen Sie <span class=\"ui\">Vorlagen</span> – <span class=\"ui\">Absatzvorlage bearbeiten…</span>, um eine Vorlage zu ändern."
#: html/loleaflet-help.html%2Bdiv.div.h4:401-5
msgid "Handling Tables"
msgstr "Umgang mit Tabellen"
#: html/loleaflet-help.html%2Bdiv.div.p:402-5
msgid "Insert tables with proper icon in the toolbar. Select the initial number of rows and columns. Add rows and columns with the cell context menu. Merge cells with the <span class=\"ui\">Table</span> menu. The default paragraph style inside cells is “Table contents”."
msgstr "Fügen Sie Tabellen mit dem Symbol in der Symbolleiste ein. Wählen Sie die anfängliche Anzahl von Zeilen und Spalten. Fügen Sie über das Kontextmenü Zeilen und Spalten hinzu. Verbinden Sie Zellen, indem Sie <span class=\"ui\">Tabellen</span> wählen. Der Standard-Absatzvorlage in Zellen lautet \"Tabelleninhalt\"."
#: html/loleaflet-help.html%2Bdiv.div.p:404-5
msgid "<span class=\"def\">Formatting cells:</span> Click in the cell or range of cells and choose menu <span class=\"ui\">Table</span> → <span class=\"ui\">Properties</span>. Fine tune the table with the properties dialog."
msgstr "<span class=\"def\">Zellen formatieren:</span> Klicken Sie in die Zelle oder den Zellbereich und wählen Sie <span class=\"ui\">Tabelle</span> – <span class=\"ui\">Eigenschaften…</span>. Optimieren Sie die Tabelle mit dem Dialog Eigenschaften."
#: html/loleaflet-help.html%2Bdiv.div.h4:405-5
msgid "Track changes"
msgstr "Änderungen verfolgen"
#: html/loleaflet-help.html%2Bdiv.div.p:406-5
msgid "When you turn on Track Changes, <span class=\"productname\">%productName</span> marks up new changes made to the document. Select this option again to turn it off."
msgstr "Wenn Sie Änderungen verfolgen aktivieren, markiert <span class=\"productname\">%productName</span> neue Änderungen, die am Dokument vorgenommen wurden. Wählen Sie diese Option erneut aus, um sie zu deaktivieren."
#: html/loleaflet-help.html%2Bdiv.div.p:408-5
msgid "Changes made by different people are shown in different colors and each tracked change can be accepted or rejected, using the box the appears on the right. You can also add a comment there."
msgstr "Von verschiedenen Personen vorgenommene Änderungen werden in verschiedenen Farben angezeigt. Jede nachverfolgte Änderung kann über das rechts angezeigte Feld akzeptiert oder abgelehnt werden. Sie können dort auch einen Kommentar hinzufügen."
#: html/loleaflet-help.html%2Bdiv.div.h4:409-5
msgid "Other advanced features"
msgstr "Andere erweiterte Funktionen"
#: html/loleaflet-help.html%2Bdiv.div.p:410-5
msgid "<span class=\"def\">Comments:</span> Comments are inserted in the text and displayed on the right side of the screen."
msgstr "<span class=\"def\">Kommentare:</span> Kommentare werden in den Text eingefügt und auf der rechten Seite des Bildschirms angezeigt."
#: html/loleaflet-help.html%2Bdiv.div.p:411-5
msgid "<span class=\"def\">Formatting marks:</span> Paragraph, page and unbreakable spaces are shown as marks to assisting text alignment, editing and formatting."
msgstr "<span class=\"def\">Formatierungszeichen:</span> Absätze, Seiten und Leerzeichen werden als Markierungen angezeigt, um die Textausrichtung, -bearbeitung und -formatierung zu unterstützen."
#: html/loleaflet-help.html%2Bdiv.div.p:412-5
msgid "<span class=\"def\">Fields:</span> A basic set of fields is available to insert in the document."
msgstr "<span class=\"def\">Felder:</span> Es stehen grundlegende Felder zum Einfügen in das Dokument zur Verfügung."
#: html/loleaflet-help.html%2Bdiv.div.p:413-5
msgid "<span class=\"def\">Alphabetical index:</span> Existing alphabetical index can be updated with new entries."
msgstr "<span class=\"def\">Alphabetischer Index:</span> Der vorhandene alphabetische Index kann mit neuen Einträgen erweitert werden."
#: html/loleaflet-help.html%2Bdiv.div.p:414-5
msgid "<span class=\"def\">Page header and footer:</span> Headers and footers are available for the existing page style applied in the document at the cursor position."
msgstr "<span class=\"def\">Kopf- und Fußzeile der Seite:</span> Kopf- und Fußzeilen sind für die vorhandene Seitenvorlage verfügbar, die im Dokument an der Cursorposition angewendet wird."
#: html/loleaflet-help.html%2Bdiv.div.p:415-5
msgid "<span class=\"def\">Footnotes and endnotes:</span> Footnotes and endnotes are supported."
msgstr "<span class=\"def\">Fußnoten und Endnoten:</span> Fußnoten und Endnoten werden unterstützt."
#: html/loleaflet-help.html%2Bdiv.div.p:422-5
msgid "<span class=\"productname\">%productName</span> Impress edits presentations in a way that should be familiar to people. Operations like typing text, cut, copy and pasting contents, selecting text , inserting, resizing, anchoring images, adding and handling tables, are similar to a desktop presentation application. Use the keyboard, menus and toolbars to perform actions in your document."
msgstr "<span class=\"productname\">%productName</span> Impress bearbeitet Präsentationen auf eine Weise, die den Menschen vertraut sein sollte. Vorgänge wie das Eingeben von Text, Ausschneiden, Kopieren und Einfügen von Inhalten, Auswählen von Text, Einfügen, Ändern der Größe, Verankern von Bildern, Hinzufügen und Behandeln von Tabellen ähneln einer Desktop-Präsentationsanwendung. Verwenden Sie die Tastatur, Menüs und Symbolleisten, um Aktionen in Ihrem Dokument auszuführen."
#: html/loleaflet-help.html%2Bdiv.div.p:425-5
msgid "<span class=\"productname\">%productName</span> displays presentation slide shows, including a subset of slide transitions and object animations. Choose the slide show from the menu or click on icon in the bottom left toolbar in the slide pane."
msgstr "<span class=\"productname\">%productName</span> zeigt Bildschirmpräsentations an, einschließlich einer Teilmenge von Folienübergängen und Objektanimationen. Wählen Sie die Bildschirmpräsentation aus dem Menü oder klicken Sie auf das Symbol in der unteren linken Symbolleiste im Folienfenster."
#: html/loleaflet-help.html%2Bdiv.div.p:426-5
msgid "To exit a <span class=\"productname\">%productName</span> slide show, press the <span class=\"kbd\">Esc</span> key to return to the presentation edit mode."
msgstr "Um eine Bildschirmpräsentation in <span class=\"productname\">%productName</span> zu beenden, drücken Sie die Taste <span class=\"kbd\">Esc</span>, um zum Bearbeitungsmodus der Präsentation zurückzukehren."
#: html/loleaflet-help.html%2Bdiv.div.p:429-5
msgid "Click on any slide thumbnail in the pane to switch to this slide to view or edit it."
msgstr "Klicken Sie im Folienbereich auf eine Folienminiatur, um zu dieser Folie zu wechseln und sie anzuzeigen oder zu bearbeiten."
#: html/loleaflet-help.html%2Bdiv.div.p:430-5
msgid "Use the slide pane toolbar in the bottom to start the slideshow, add slide, duplicate or delete the current slide."
msgstr "Verwenden Sie die Symbolleiste des Folienfensters unten, um die Bildschirmpräsentation zu starten, eine Folie hinzuzufügen, die aktuelle Folie zu duplizieren oder zu löschen."
#: html/loleaflet-help.html%2Bdiv.div.p:433-5
msgid "<span class=\"def\">Slide layouts:</span> <span class=\"productname\">%productName</span> Impress let you change the slide layout. Select the desired slide layout in the drop-down layout list."
msgstr "<span class=\"def\">Folienlayouts:</span> Mit <span class=\"productname\">%productName</span> Impress können Sie das Folienlayout ändern. Wählen Sie das gewünschte Folienlayout in der Dropdown-Liste Layout aus."
#: html/loleaflet-help.html%2Bdiv.div.p:435-5
msgid "<span class=\"def\">Master slide:</span> Select the master slide associated to the current slide. Format and arrange slide elements in the master slide."
msgstr "<span class=\"def\">Masterfolie:</span> Wählen Sie die Masterfolie aus, die der aktuellen Folie zugeordnet ist. Formatieren und ordnen Sie Folienelemente in der Masterfolie an."
#: html/loleaflet-help.html%2Bdiv.div.p:436-5
msgid "<span class=\"def\">Slide transitions:</span> <span class=\"productname\">%productName</span> Impress provides visual effects when displaying a new slide in the slide show. Slide transitions are property of the slide, use the side bar to set the slide transition when in edit mode."
msgstr "<span class=\"def\">Folienübergänge:</span> <span class=\"productname\">%productName</span> Impress bietet visuelle Effekte beim Anzeigen einer neuen Folie in der Bildschirmpräsentation. Folienübergänge sind Eigenschaften der Folie. Verwenden Sie die Seitenleiste, um den Folienübergang im Bearbeitungsmodus festzulegen."
#: html/loleaflet-help.html%2Bdiv.div.p:437-5
msgid "<span class=\"def\">Object animation:</span> Individual object in the slide can have animation. Use the side bar to configure the slide transition for a selected object or set of objects."
msgstr "<span class=\"def\">Objektanimation:</span> Einzelne Objekte auf der Folie können animiert sein. Verwenden Sie die Seitenleiste, um den Folienübergang für ein ausgewähltes Objekt oder eine Gruppe von Objekten zu konfigurieren."
#: html/loleaflet-help.html%2Bdiv.div.p:438-5
msgid "<span class=\"def\">Tables:</span> Insert tables in the presentation. Use the sidebar to select the table theme."
msgstr "<span class=\"def\">Tabellen:</span> Fügen Sie Tabellen in die Präsentation ein. Verwenden Sie die Seitenleiste, um die Tabellenvorlage auszuwählen."
#: html/loleaflet-help.html%2Bdiv.h4:442-5
msgid "What are the documents file formats supported by <span class=\"productname\">%productName</span>?"
msgstr "Welche Dateiformate für Dokumente werden von <span class=\"productname\">%productName</span> unterstützt?"
#: html/loleaflet-help.html%2Bdiv.p:443-5
msgid "<span class=\"productname\">%productName</span> supports both reading and writing for the following file formats:"
msgstr "<span class=\"productname\">%productName</span> unterstützt sowohl das Lesen als auch das Schreiben für die folgenden Dateiformate:"
#: html/loleaflet-help.html%2Bdiv.ul.li.p:445-11
msgid "Text documents: Microsoft formats DOC, DOCX, RTF. OpenDocument Format ODT"
msgstr "Textdokumente: Microsoft-Formate DOC, DOCX und RTF. OpenDocument Format ODT."
#: html/loleaflet-help.html%2Bdiv.ul.li.p:446-11
msgid "Spreadsheets: Microsoft formats XLS, XLSX, OpenDocument Format ODS"
msgstr "Tabellendokumente: Microsoft-Formate XLS und XLSX. OpenDocument Format ODS."
#: html/loleaflet-help.html%2Bdiv.ul.li.p:447-11
msgid "Presentations: Microsoft formats PPT, PPTX, OpenDocument Format ODP"
msgstr "Präsentationen: Microsoft-Formate PPT und PPTX. OpenDocument Format ODP."
#: html/loleaflet-help.html%2Bdiv.p:449-5
msgid "In addition it can provide viewing for Visio, Keynote, Numbers, and Pages formats."
msgstr "Darüber hinaus können die Formate Visio, Keynote, Numbers und Pages angezeigt werden."
#: html/loleaflet-help.html%2Bdiv.h4:450-5
msgid "How do I save a document with another name?"
msgstr "Wie speichere ich ein Dokument unter einem anderen Namen?"
#: html/loleaflet-help.html%2Bdiv.ol.li.p:452-11
msgid "Hover the mouse on the document name in the menu bar."
msgstr "Bewegen Sie die Maus über den Dokumentnamen in der Menüleiste."
#: html/loleaflet-help.html%2Bdiv.ol.li.p:453-11
msgid "Type the new file name in the text box and press <span class=\"kbd\">Enter</span>."
msgstr "Geben Sie den neuen Dateinamen in das Textfeld ein und drücken Sie <span class=\"kbd\">Enter</span>."
#: html/loleaflet-help.html%2Bdiv.p:455-5
msgid "A copy of the document is saved with the new name in the same folder."
msgstr "Eine Kopie des Dokuments wird mit dem neuen Namen im selben Ordner gespeichert."
#: html/loleaflet-help.html%2Bdiv.h4:456-5
msgid "How can I quit <span class=\"productname\">%productName</span> without saving my edits?"
msgstr "Wie kann ich <span class=\"productname\">%productName</span> beenden, ohne meine Änderungen zu speichern?"
#: html/loleaflet-help.html%2Bdiv.p:457-5
msgid "<span class=\"productname\">%productName</span> saves the document in the background regularly, you can't just close without saving it. To abandon your changes, you must either undo them, or use the <span class=\"ui\">Revision History </span> in the <span class=\"ui\">File</span> menu."
msgstr "<span class=\"productname\">%productName</span> speichert das Dokument regelmäßig im Hintergrund. Sie können es nicht einfach schließen, ohne es zu speichern. Um Ihre Änderungen abzubrechen, müssen Sie sie entweder rückgängig machen oder den <span class=\"ui\">Versionsverlauf</span> im Menü <span class=\"ui\">Datei</span> verwenden."
#: html/loleaflet-help.html%2Bdiv.h4:458-5
msgid "Can <span class=\"productname\">%productName</span> open a password-protected document?"
msgstr "Kann <span class=\"productname\">%productName</span> ein passwortgeschütztes Dokument öffnen?"
#: html/loleaflet-help.html%2Bdiv.p:459-5
msgid "Yes. <span class=\"productname\">%productName</span> opens password-protected documents, but it is necessary to supply the password in the “Enter password” prompt at load time."
msgstr "Ja. <span class=\"productname\">%productName</span> öffnet kennwortgeschützte Dokumente, das Kennwort muss jedoch beim Laden in der Eingabeaufforderung \"Kennwort eingeben\" angegeben werden."
#: html/loleaflet-help.html%2Bdiv.h4:460-5
msgid "How can I check spelling in my language?"
msgstr "Wie kann ich die Rechtschreibung in meiner Sprache prüfen?"
#: html/loleaflet-help.html%2Bdiv.p:461-5
msgid "Choose menu <span class=\"ui\">Tools</span> → <span class=\"ui\">Languages</span> and select the language for the whole document. Optionally you can set languages for the selected text and for the current paragraph."
msgstr "Wählen Sie <span class=\"ui\">Extras</span> – <span class=\"ui\">Sprachen</span> und wählen Sie die Sprache für das gesamte Dokument aus. Optional können Sie Sprachen für den ausgewählten Text und für den aktuellen Absatz festlegen."
#: html/loleaflet-help.html%2Bdiv.h4:462-5
msgid "How can I remove the red wavy lines in my document?"
msgstr "Wie kann ich die roten Wellenlinien in meinem Dokument entfernen?"
#: html/loleaflet-help.html%2Bdiv.p:463-5
msgid "Choose menu <span class=\"ui\">Tools</span> and uncheck <span class=\"ui\">Automatic Spell Checking</span>."
msgstr "Wählen Sie <span class=\"ui\">Extras</span> und deaktivieren Sie <span class=\"ui\">Automatische Rechtschreibprüfung</span>."
#: html/loleaflet-help.html%2Bdiv.h4:464-5
msgid "What is the blue wavy underline in some words in the text?"
msgstr "Was ist die blau gewellte Unterstreichung in einigen Wörtern im Text?"
#: html/loleaflet-help.html%2Bdiv.p:465-5
msgid "Grammar errors in the text is marked with the blue wavy underline. Click on the underlined text with the right mouse button to open a menu with suggestions to correct the grammar error and the offended grammar rules. Select the right suggestion to change the text."
msgstr "Grammatikfehler im Text sind mit der blauen wellenförmigen Unterstreichung gekennzeichnet. Klicken Sie mit der rechten Maustaste auf den unterstrichenen Text, um ein Menü mit Vorschlägen zur Korrektur des Grammatikfehlers und der zugehörigen Grammatikregeln zu öffnen. Wählen Sie den richtigen Vorschlag, um den Text zu ändern."
#: html/loleaflet-help.html%2Bdiv.h4:466-5
msgid "Is here a thesaurus?"
msgstr "Gibt es einen Thesaurus?"
#: html/loleaflet-help.html%2Bdiv.p:467-5
msgid "Yes. Click in the word you want and choose <span class=\"ui\">Tools</span> → <span class=\"ui\">Thesaurus</span>. A dialog opens with many suggestions for replacements."
msgstr "Ja. Klicken Sie auf das gewünschte Wort und wählen Sie <span class=\"ui\">Extras</span> – <span class=\"ui\">Thesaurus…</span>. Ein Dialog mit vielen Vorschlägen für Ersetzungen wird geöffnet."
#: html/loleaflet-help.html%2Bdiv.h4:469-5
msgid "What are the blue <span class=\"blue\">¶</span> symbol and how can I remove from my text document?"
msgstr "Was ist das blaue Symbol <span class=\"blue\">¶</span> und wie kann ich es aus meinem Textdokument entfernen?"
#: html/loleaflet-help.html%2Bdiv.p:470-5
msgid "The <span class=\"blue\">¶</span> symbol is a formatting mark. It is used to help text alignment and editing and is not printed. To toggle it in the document display, choose menu <span class=\"ui\">View</span> → <span class=\"ui\">Formatting mark</span>."
msgstr "Das Symbol <span class=\"blue\">¶</span> ist eine Formatierungsmarke. Es dient zur Unterstützung der Textausrichtung und -bearbeitung und wird nicht gedruckt. Um es in der Dokumentanzeige umzuschalten, wählen Sie <span class=\"ui\">Ansicht</span> – <span class=\"ui\">Formatierungszeichen</span>."
#: html/loleaflet-help.html%2Bdiv.div.h4:474-5
msgid "How do I get a word count of my document?"
msgstr "Wie kann ich Anzahl der Wörter für mein Dokument herausfinden?"
#: html/loleaflet-help.html%2Bdiv.div.p:475-5
msgid "Word count is available in <span class=\"ui\">Tools</span> → <span class=\"ui\">Word count</span>. A dialog shows word counts for selection and for the whole document."
msgstr "Um die Anzahl der Wörter herauszufinden, wählen Sie <span class=\"ui\">Extras</span> – <span class=\"ui\">Wortzählung…</span>. Ein Dialog zeigt die Anzahl der Wörter der Auswahl und des gesamten Dokuments an."
#: html/loleaflet-help.html%2Bdiv.div.p:477-5
msgid "Word count is also displayed in the status bar. If no text is selected the word count is for the whole document. Otherwise the word count is for the selected text."
msgstr "Die Anzahl der Wörter wird auch in der Statusleiste angezeigt. Wenn kein Text ausgewählt ist, gilt die Wortanzahl für das gesamte Dokument. Andernfalls gilt die Wortanzahl für den ausgewählten Text."
#: html/loleaflet-help.html%2Bdiv.div.h4:478-5
msgid "How can I insert a currency, copyright or trademark symbol in the document?"
msgstr "Wie kann ich ein Währungs-, Urheber- oder Markensymbol in das Dokument einfügen?"
#: html/loleaflet-help.html%2Bdiv.div.p:479-5
msgid "You can insert these special characters in the document using the <span class=\"ui\">Special Character</span> dialog."
msgstr "Sie können diese Sonderzeichen über den Dialog <span class=\"ui\">Sonderzeichen</span> in das Dokument einfügen."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:481-11
msgid "Place the cursor in the position to insert the character."
msgstr "Platzieren Sie den Cursor an der Position, an der das Zeichen eingefügt werden soll."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:483-9
msgid "Choose <span class=\"ui\">Insert</span> → <span class=\"ui\">Special Characters </span> or click the corresponding icon in the toolbar. A dialog shows."
msgstr "Wählen Sie <span class=\"ui\">Einfügen</span> – <span class=\"ui\">Sonderzeichen…</span> oder klicken Sie auf das entsprechende Symbol in der Symbolleiste. Ein Dialog wird geöffnet."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:486-11
msgid "You can either browse the characters displayed with the drop lists or type a search key in the <span class=\"ui\">Search</span> box. If you know the Unicode numeric code of the special character, enter in the boxes on the right."
msgstr "Sie können entweder die mit den Dropdown-Listen angezeigten Zeichen durchsuchen oder einen Suchschlüssel in das Feld <span class=\"ui\">Suche</span> eingeben. Wenn Sie den numerischen Unicode-Code des Sonderzeichens kennen, geben Sie ihn in die Felder rechts ein."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:487-11
msgid "Press <span class=\"ui\">Insert</span> button. To close the dialog, press <span class=\"ui\">Cancel</span>."
msgstr "Klicken Sie auf die Schaltfläche <span class=\"ui\">Einfügen</span>. Um den Dialog zu schließen, klicken Sie auf <span class=\"ui\">Abbrechen</span>."
#: html/loleaflet-help.html%2Bdiv.div.h4:489-5
msgid "Why can't I delete text? It just gets a strike-through?"
msgstr "Warum kann ich keinen Text löschen? Es wird nur durchgestrichen?"
#: html/loleaflet-help.html%2Bdiv.div.p:490-5
msgid "You have the Track Changes feature enabled for the document. Track Changes records all changes in the text and shows the editions for later revision. Useful for marking changes in text and spreadsheets. Track changes are enabled choosing <span class=\"ui\">Edit</span> → <span class=\"ui\">Track Changes </span> → <span class=\"ui\">Record</span>."
msgstr "Sie haben die Funktion \"Änderungen verfolgen\" für das Dokument aktiviert. Änderungen verfolgen zeichnet alle Änderungen im Text auf und zeigt die Änderungen für eine spätere Überarbeitung an. Nützlich zum Markieren von Änderungen in Text und Tabellen. Um Änderungen verfolgen zu deaktivieren, wählen Sie <span class=\"ui\">Bearbeiten</span> – <span class=\"ui\">Änderungen</span> – <span class=\"ui\">Aufzeichnen</span>."
#: html/loleaflet-help.html%2Bdiv.div.p:491-5
msgid "With track changes enabled your document is shown the following manner:"
msgstr "Wenn die Nachverfolgung aktiviert ist, wird Ihr Dokument folgendermaßen angezeigt:"
#: html/loleaflet-help.html%2Bdiv.div.ul.li.p:493-11
msgid "Deletions are marked with colored strike-through characters."
msgstr "Löschungen sind mit farbigen durchgestrichenen Zeichen gekennzeichnet."
#: html/loleaflet-help.html%2Bdiv.div.ul.li.p:494-11
msgid "Additions are marked with colored underlined characters."
msgstr "Ergänzungen sind mit farbigen unterstrichenen Zeichen gekennzeichnet."
#: html/loleaflet-help.html%2Bdiv.div.ul.li.p:495-11
msgid "All changes are marked with a vertical bar in the right margin."
msgstr "Alle Änderungen sind mit einem vertikalen Balken am rechten Rand gekennzeichnet."
#: html/loleaflet-help.html%2Bdiv.div.ul.li.p:496-11
msgid "Changes are displayed as comment in the right of the document area."
msgstr "Änderungen werden als Kommentar rechts im Dokumentbereich angezeigt."
#: html/loleaflet-help.html%2Bdiv.div.p:499-5
msgid "The color assigned to the changes depends on the user that changes the document."
msgstr "Die den Änderungen zugewiesene Farbe hängt vom Benutzer ab, der das Dokument ändert."
#: html/loleaflet-help.html%2Bdiv.div.p:500-5
msgid "To display or hide track changes choose <span class=\"ui\">Edit</span> → <span class=\"ui\">Track Changes </span> → <span class=\"ui\">Show</span>. Beware that if track changes are enabled but hidden, you still record changes and may inadvertently leave unwanted text available in the document."
msgstr "Um Änderungen anzuzeigen oder auszublenden, wählen Sie <span class=\"ui\">Bearbeiten</span> – <span class=\"ui\">Änderungen</span> – <span class=\"ui\">Anzeigen</span>. Beachten Sie, dass Sie Änderungen weiterhin aufzeichnen, wenn die Änderungsverfolgung aktiviert, aber Änderungen ausgeblendet sind, und möglicherweise unerwünschter Text im Dokument verfügbar bleibt."
#: html/loleaflet-help.html%2Bdiv.div.p:501-5
msgid "Changes can be accepted or rejected. To accept or reject changes, click on the corresponding icons in the comment box on the right of the document. Alternatively, choose <span class=\"ui\">Edit</span> → <span class=\"ui\">Track Changes </span> → <span class=\"ui\">Accept</span> or <span class=\"ui\">Reject</span>. Furthermore, if you need to filter changes before accepting or rejecting, choose <span class=\"ui\">Edit</span> → <span class=\"ui\">Track Changes </span> → <span class=\"ui\">Manage</span>. A dialog shows a list of all tracked changes. Use the dialog buttons accordingly."
msgstr "Änderungen können akzeptiert oder abgelehnt werden. Um Änderungen zu akzeptieren oder abzulehnen, klicken Sie auf die entsprechenden Symbole im Kommentarfeld rechts neben dem Dokument. Alternativ wählen Sie <span class=\"ui\">Bearbeiten</span> – <span class=\"ui\">Änderungen</span> – <span class=\"ui\">Akzeptieren</span> oder <span class=\"ui\">Ablehnen</span>. Wenn Sie Änderungen filtern müssen, bevor Sie sie akzeptieren oder ablehnen, wählen Sie <span class=\"ui\">Bearbeiten</span> – <span class=\"ui\">Änderungen</span> – <span class=\"ui\">Verwalten…</span>. Ein Dialog zeigt eine Liste aller nachverfolgten Änderungen. Verwenden Sie die Dialogschaltflächen entsprechend."
#: html/loleaflet-help.html%2Bdiv.div.h4:503-5
msgid "How do I set the margins of the document?"
msgstr "Wie lege ich die Ränder des Dokuments fest?"
#: html/loleaflet-help.html%2Bdiv.div.p:504-5
msgid "Using the ruler drag the leftmost edge of the ruler to adjust the left margin, or the rightmost for the right margin."
msgstr "Ziehen Sie am Griff am linken Rand des Lineals, um den linken Rand anzupassen, oder am rechten Rand um den rechten Rand anzupassen ."
#: html/loleaflet-help.html%2Bdiv.div.p:505-5
msgid "Using the page style"
msgstr "Verwenden von Seitenvorlagen"
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:507-11
msgid "Choose <span class=\"ui\">Format</span> → <span class=\"ui\">Page</span> and select the <span class=\"ui\">Page</span> tab"
msgstr "Wählen Sie <span class=\"ui\">Format</span> – <span class=\"ui\">Seite…</span> und wählen Sie das Register <span class=\"ui\">Seite</span>."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:508-11
msgid "Set the page margins in the dialog."
msgstr "Legen Sie die Seitenränder im Dialog fest."
#: html/loleaflet-help.html%2Bdiv.div.h4:511-5
msgid "How do I change the page orientation to landscape inside my document"
msgstr "Wie ändere ich die Seitenausrichtung in Querformat in meinem Dokument?"
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:513-11
msgid "Place the cursor at the place where the page orientation is to change. Add an empty paragraph."
msgstr "Platzieren Sie den Cursor an der Stelle, an der sich die Seitenausrichtung ändern soll. Fügen Sie einen leeren Absatz hinzu."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:514-11
msgid "Choose <span class=\"ui\">Format</span> → <span class=\"ui\">Paragraph</span>, <span class=\"ui\">Text Flow </span> tab"
msgstr "Wählen Sie <span class=\"ui\">Format</span> – <span class=\"ui\">Absatz</span>, Register <span class=\"ui\">Textfluss</span>."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:515-11
msgid "In the <span class=\"ui\">Breaks</span> area, mark Insert, Type: Page Break, Position: Before."
msgstr "Markieren Sie im Bereich <span class=\"ui\">Umbrüche…</span> Einfügen, Typ: Seite, Position: Vor."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:516-11
msgid "Select Landscape in “With Page Style”"
msgstr "Wählen Sie unter \"Mit Seitenvorlage\" die Option \"Querformat\"."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:517-11
msgid "Select if you want to change page numbering."
msgstr "Wählen Sie aus, wenn Sie die Seitennummerierung ändern möchten."
#: html/loleaflet-help.html%2Bdiv.div.p:519-5
msgid "To return to portrait orientation, repeat the procedure, choosing Portrait in “With page style”."
msgstr "Um zum Hochformat zurückzukehren, wiederholen Sie den Vorgang und wählen Sie Standard bei „Mit Seitenvorlage“."
#: html/loleaflet-help.html%2Bdiv.div.h4:520-5
msgid "How can I make the new text look like other existing text?"
msgstr "Wie kann ich den neuen Text, wie einen anderen vorhandenen Text aussehen lassen?"
#: html/loleaflet-help.html%2Bdiv.div.p:521-5
msgid "Directly:"
msgstr "Direkt:"
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:523-11
msgid "Select the text with the existing format"
msgstr "Wählen Sie den Text mit dem vorhandenen Format aus."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p.img:524-11
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p.img:555-11
msgid "Click on the clone formatting icon <img style=\"height:0.6cm;width:0.6cm;\" alt=\"\" src=\"images/lc_formatpaintbrush.svg\">. The mouse pointer turns to a paint bucket."
msgstr "Klicken Sie auf das Symbol Formatierung übertragen <img style=\"height:0.6cm;width:0.6cm;\" alt=\"\" src=\"images/lc_formatpaintbrush.svg\">. Der Mauszeiger verwandelt sich in einen Farbeimer."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:525-11
msgid "Select the text you want to apply the new format."
msgstr "Wählen Sie den Text aus, auf den Sie das neue Format anwenden möchten."
#: html/loleaflet-help.html%2Bdiv.div.p:527-5
msgid "Applying a paragraph style:"
msgstr "Anwenden einer Absatzvorlage:"
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:529-11
msgid "Place the cursor at the paragraph to be formatted"
msgstr "Platzieren Sie den Cursor in dem zu formatierenden Absatz."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:530-11
msgid "Select the style to apply in the style dropdown list. The paragraph displays the styles attributes."
msgstr "Wählen Sie die anzuwendende Vorlage in der Dropdown-Liste aus. Der Absatz zeigt die Vorlagenattribute an."
#: html/loleaflet-help.html%2Bdiv.div.h4:532-5
msgid "Why did the text I just typed change automatically? How can I revert it?"
msgstr "Warum hat sich der gerade eingegebene Text automatisch geändert? Wie kann ich es zurücksetzen?"
#: html/loleaflet-help.html%2Bdiv.div.p:533-5
msgid "You have the AutoCorrection enabled. AutoCorrection changes the text just typed into an internal table of corresponding text. In most cases, AutoCorrection fixes typos while you are typing. If AutoCorrection is not necessary, disable it in <span class=\"ui\">Tools</span> → <span class=\"ui\">AutoCorrection</span> → <span class=\"ui\">While typing</span>."
msgstr "Sie haben die AutoKorrektur aktiviert. Die AutoKorrektur ändert den gerade eingegebenen Text nach einer internen Tabelle mit entsprechendem Text. In den meisten Fällen korrigiert die AutoKorrektur Tippfehler während der Eingabe. Wenn keine automatische Korrektur erforderlich ist, deaktivieren Sie diese unter <span class=\"ui\">Extras</span> – <span class=\"ui\">AutoKorrektur</span> – <span class = \"ui\">Während der Eingabe</span>."
#: html/loleaflet-help.html%2Bdiv.div.h4:538-5
msgid "How can I select data to print?"
msgstr "Wie kann ich zu druckende Daten auswählen?"
#: html/loleaflet-help.html%2Bdiv.div.p:539-5
msgid "Insert column and row breaks in the spreadsheet to narrow the print range and print the document to download. On printing the PDF, select the pages of interest."
msgstr "Fügen Sie Spalten- und Zeilenumbrüche in das Arbeitsblatt ein, um den Druckbereich einzuschränken, und drucken Sie das Dokument. Wählen Sie die gewünschten Seiten aus, um das PDF zu drucken."
#: html/loleaflet-help.html%2Bdiv.div.h4:540-5
msgid "How can I import CSV data?"
msgstr "Wie kann ich CSV-Daten importieren?"
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:542-11
msgid "Load your CSV data in some native tool to your platform, select and copy it to the clipboard"
msgstr "Laden Sie Ihre CSV-Daten in einem vorhandenem Program auf Ihrem Arbeitsgerät, wählen Sie alles aus und kopieren es in die Zwischenablage."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:543-11
msgid "Activate the <span class=\"productname\">%productName</span> spreadsheet window."
msgstr "Erstelen Sie ein neues <span class=\"productname\">%productName</span> Tabellendokument."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:545-9
msgid "Paste from the browser <span class=\"ui\">Edit</span> → <span class=\"ui\">Paste</span> or press <span class=\"kbd\">Ctrl</span> + <span class=\"kbd\">V</span>. The <span class=\"ui\">Text Import</span> dialog opens to let you describe the precise format of the CSV data."
msgstr "Einfügen aus dem Browser: Wählen Sie <span class=\"ui\">Bearbeiten</span> – <span class=\"ui\">Einfügen</span> oder drücken Sie <span class=\"kbd\">Strg</span> + <span class=\"kbd\">V</span>. Der Dialog <span class=\"ui\">Textimport</span> wird geöffnet, in dem Sie das genaue Format der CSV-Daten festlegen können."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:548-11
msgid "Select the character set, language and separator options for the CSV file."
msgstr "Wählen Sie den Zeichensatz, die Sprache und die Trennzeichenoptionen für die CSV-Datei aus."
#: html/loleaflet-help.html%2Bdiv.div.p:550-5
msgid "The CSV data is loaded into the selected cell where you pasted, according to these settings."
msgstr "Die CSV-Daten werden gemäß diesen Einstellungen in die ausgewählte Zelle geladen, in die Sie sie eingefügt haben."
#: html/loleaflet-help.html%2Bdiv.div.h4:551-5
msgid "How can I copy the formatting of existing cells to new ones?"
msgstr "Wie kann ich die Formatierung vorhandener Zellen in neue kopieren?"
#: html/loleaflet-help.html%2Bdiv.div.p:552-5
msgid "This is easy to do using the Paintbrush tool in the toolbar."
msgstr "Dies ist mit dem Pinsel-Werkzeug in der Symbolleiste einfach zu bewerkstelligen."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:554-11
msgid "Format the source cell with the font, color background and more."
msgstr "Formatieren Sie die Quellzelle mit der Schriftart, dem Farbhintergrund und mehr."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:556-11
msgid "Select the cells you want to format. Release the mouse button."
msgstr "Wählen Sie die Zellen aus, die Sie formatieren möchten. Lassen Sie die Maustaste los."
#: html/loleaflet-help.html%2Bdiv.div.h4:558-5
msgid "What is “Clear Direct Formatting” icon?"
msgstr "Was ist das Symbol \"Direkte Formatierung löschen\"?"
#: html/loleaflet-help.html%2Bdiv.div.p:559-5
msgid "Direct formatting is formatting applied directly to the selected contents of a paragraph or a spreadsheet cell, and overlaps its assigned style formatting. To restore the formatting to the style settings, select the text or spreadsheet cell and choose <span class=\"ui\">Format</span> → <span class=\"ui\">Clear Direct Formatting</span> or use the button in the toolbar."
msgstr "Direkte Formatierung ist eine Formatierung, die direkt auf den ausgewählten Inhalt eines Absatzes oder einer Tabellenzelle angewendet wird und die zugewiesene Formatierung der Vorlage überdeckt. Um die Formatierung auf die Vorlageneinstellungen zurückzusetzen, wählen Sie die Text- oder Tabellenzelle aus und wählen Sie <span class=\"ui\">Format</span> – <span class=\"ui\">Direkte Formatierung löschen</span> oder verwenden Sie die Schaltfläche in der Symbolleiste."
#: html/loleaflet-help.html%2Bdiv.div.h4:560-5
msgid "How do I rename a sheet?"
msgstr "Wie kann ich eine Tabelle umbenennen?"
#: html/loleaflet-help.html%2Bdiv.div.p:561-5
msgid "Rename a sheet in the spreadsheet document using the context menu (using the right mouse button) over the sheet tab in the bottom. Enter the new sheet name in the dialog that follows."
msgstr "Sie benennen eine Tabelle über das Kontextmenü (mit der rechten Maustaste) des Tabellenregisters unten um. Geben Sie den neuen Namen in dem sich öffnenden Dialog ein."
#: html/loleaflet-help.html%2Bdiv.div.h4:566-5
msgid "How can I run my slide show?"
msgstr "Wie kann ich meine Bildschirmpräsentation ausführen?"
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:568-11
msgid "Open the presentation in <span class=\"productname\">%productName</span>"
msgstr "Öffnen Sie die Präsentation in <span class=\"productname\">%productName</span>."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p.img:569-11
msgid "Either choose <span class=\"ui\">Slide Show</span> → <span class=\"ui\">Full Screen Presentation</span> or click on the left-most icon in the bottom of the slide panel: <img style=\"height:0.6cm;width:0.6cm;\" alt=\"\" src=\"images/lc_dia.svg\">"
msgstr "Wählen Sie entweder <span class=\"ui\">Bildschirmpräsentation</span> – <span class=\"ui\">Vollbild-Präsentation</span> oder klicken Sie auf das Symbol ganz links unten im Folienfenster: <img style=\"height:0.6cm;width:0.6cm;\" alt=\"\" src=\"images/lc_dia.svg\">."
#: html/loleaflet-help.html%2Bdiv.div.h4:571-5
msgid "How can I change the line, area and position of a shape in my slides?"
msgstr "Wie kann ich die Linie, die Fläche und die Position einer Form in meinen Folien ändern?"
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:573-11
msgid "Select the shape in your slide. A set of handles shows."
msgstr "Wählen Sie die Form in Ihrer Folie aus. Eine Reihe von Griffen wird angezeigt."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:575-9
msgid "Choose <span class=\"ui\">Format</span> → <span class=\"ui\">Line</span> (or <span class=\"ui\">Area</span>, or <span class=\"ui\">Position and Size</span>). A dialog opens."
msgstr "Wählen Sie <span class=\"ui\">Format</span> – <span class=\"ui\">Line…</span> (oder <span class=\"ui\">Fläche…</span>, oder <span class=\"ui\">Position und Größe…</span>). Es öffnet sich ein Dialog."
#: html/loleaflet-help.html%2Bdiv.div.ol.li.p:578-11
msgid "Set the properties of the element of the object."
msgstr "Legen Sie die Eigenschaften des Elements des Objekts fest."
|