summaryrefslogtreecommitdiff
path: root/testautomation/global/win/bars.win
blob: 964027cbc7b23dec5a51ac095ed6c0f66b73bf84 (plain)
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
'encoding UTF-8  Do not remove or change this line!
'**************************************************************************
'*
'* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
'* 
'* Copyright 2000, 2010 Oracle and/or its affiliates.
'*
'* OpenOffice.org - a multi-platform office productivity suite
'*
'* This file is part of OpenOffice.org.
'*
'* OpenOffice.org is free software: you can redistribute it and/or modify
'* it under the terms of the GNU Lesser General Public License version 3
'* only, as published by the Free Software Foundation.
'*
'* OpenOffice.org is distributed in the hope that it will be useful,
'* but WITHOUT ANY WARRANTY; without even the implied warranty of
'* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
'* GNU Lesser General Public License version 3 for more details
'* (a copy is included in the LICENSE file that accompanied this code).
'*
'* You should have received a copy of the GNU Lesser General Public License
'* version 3 along with OpenOffice.org.  If not, see
'* <http://www.openoffice.org/license.html>
'* for a copy of the LGPLv3 License.
'*
'/************************************************************************
'*
'* owner : helge.delfs@oracle.com
'*
'* Description : Declaration of bars and buttons
'*               Note: To be in kmost cases compatible with old regresson
'*                     tests we have only translated the bars and not the
'*                     controls on these bars.
'*
'\***********************************************************************
'-------------------------------------------------------------------------
*ThreeDObjectsbar .HelpId:3dobjectsbar
'-------------------------------------------------------------------------
Halbkugel .uno:HalfSphere
Kegel .uno:Cone
Kugel .uno:Sphere
Pyramide .uno:Cyramid
Schale .uno:Shell3D
Torus .uno:Torus
Wuerfel .uno:Cube
Zylinder .uno:Cylinder
'-------------------------------------------------------------------------
*Alignmentbar .HelpId:alignmentbar
'-------------------------------------------------------------------------
Links .uno:ObjectAlignLeft
Mitte .uno:AlignMiddle
Oben .uno:AlignUp
Rechts .uno:ObjectAlignRight
Unten .uno:AlignDown
Zentriert .uno:AlignCenter
'-------------------------------------------------------------------------
*Arrowsbar .HelpId:arrowsbar
'-------------------------------------------------------------------------
LinieMitKreisPfeilende SID_LINE_CIRCLE_ARROW
LinieMitPfeilKreisende SID_LINE_ARROW_CIRCLE
LinieMitPfeilQuadratende SID_LINE_ARROW_SQUARE
LinieMitPfeilanfang SID_LINE_ARROW_START
LinieMitPfeilende SID_LINE_ARROW_END
LinieMitPfeilenden SID_LINE_ARROWS
LinieMitQuadratKreisende SID_LINE_SQUARE_ARROW
LinieWinkel SID_DRAW_XLINE
LinieZeichnen SID_DRAW_LINE
Masslinie SID_DRAW_MEASURELINE
'-------------------------------------------------------------------------
*Arrowshapes .HelpId:arrowshapes
'-------------------------------------------------------------------------
Leftarrow .uno:ArrowShapes.left-arrow
Rightarrow .uno:ArrowShapes.right-arrow
Uparrow .uno:ArrowShapes.up-arrow
Downarrow .uno:ArrowShapes.down-arrow
Leftrightarrow .uno:ArrowShapes.left-right-arrow
Updownarrow .uno:ArrowShapes.up-down-arrow
Uprightarrow .uno:ArrowShapes.up-right-arrow
Uprightdownarrow .uno:ArrowShapes.up-right-down-arrow
Quadarrow .uno:ArrowShapes.quad-arrow
Cornerrightarrow .uno:ArrowShapes.corner-right-arrow
Splitarrow .uno:ArrowShapes.split-arrow
Stripedrightarrow .uno:ArrowShapes.striped-right-arrow
Notchedrightarrow .uno:ArrowShapes.notched-right-arrow
Pentagonright .uno:ArrowShapes.pentagon-right
Chevron .uno:ArrowShapes.chevron
Rightarrowcallout .uno:ArrowShapes.right-arrow-callout
Leftarrowcallout .uno:ArrowShapes.left-arrow-callout
Uparrowcallout .uno:ArrowShapes.up-arrow-callout
Downarrowcallout .uno:ArrowShapes.down-arrow-callout
Leftrightarrowcallout .uno:ArrowShapes.left-right-arrow-callout
Updownarrowcallout .uno:ArrowShapes.up-down-arrow-callout
Uprightarrowcallout .uno:ArrowShapes.up-right-arrow-callout
Quadarrowcallout .uno:ArrowShapes.quad-arrow-callout
Circulararrow .uno:ArrowShapes.circular-arrow
Splitroundarrow .uno:ArrowShapes.split-round-arrow
SSharpedArrow .uno:ArrowShapes.s-sharped-arrow
'-------------------------------------------------------------------------
*BasicShapes .HelpId:basicshapes
'-------------------------------------------------------------------------
Rectangle .uno:BasicShapes.rectangle
RoundRectangle .uno:BasicShapes.round-rectangle
Quadrat .uno:BasicShapes.quadrat
RoundQuadrat .uno:BasicShapes.round-quadrat
Circle .uno:BasicShapes.circle
Ellipse .uno:BasicShapes.ellipse
CirclePie .uno:BasicShapes.circle-pie
IsoscelesTriangle .uno:BasicShapes.isosceles-triangle
RightTriangle .uno:BasicShapes.right-triangle
Trapezoid .uno:BasicShapes.trapezoid
Diamond .uno:BasicShapes.diamond
Parallelogram .uno:BasicShapes.parallelogram
Pentagon .uno:BasicShapes.pentagon
Hexagon .uno:BasicShapes.hexagon
Octagon .uno:BasicShapes.octagon
Cross .uno:BasicShapes.cross
Ring .uno:BasicShapes.ring
BlockArc .uno:BasicShapes.block-arc
Can .uno:BasicShapes.can
Cube .uno:BasicShapes.cube
Paper .uno:BasicShapes.paper
Frame .uno:BasicShapes.frame
'-------------------------------------------------------------------------
*Bezierobjectbar .HelpId:bezierobjectbar
'-------------------------------------------------------------------------
Auftrennen .uno:BezierCutLine
Ecke .uno:BezierEdge
Einfuegen .uno:BezierInsert
Glatt .uno:BezierSmooth
InKurve .uno:BezierConvert
Loeschen .uno:BezierDelete
PunkteReduzieren .uno:BezierEliminatePoints
Schliessen .uno:BezierClose
Symmetrisch .uno:BezierSymmetric
Verschieben .uno:BezierMove
Points .uno:ToggleObjectBezierMode
'-------------------------------------------------------------------------
*Callouts .HelpId:calloutshapes
'-------------------------------------------------------------------------
Rectangular .uno:CalloutShapes.rectangular-callout
RoundRectangular .uno:CalloutShapes.round-rectangular-callout
Round .uno:CalloutShapes.round-callout
Cloud .uno:CalloutShapes.cloud-callout
Line1 .uno:CalloutShapes.line-callout-1
Line2 .uno:CalloutShapes.line-callout-2
Line3 .uno:CalloutShapes.line-callout-3
'-------------------------------------------------------------------------
*ChooseModebar .HelpId:choosemodebar
'-------------------------------------------------------------------------
Drehen .uno:ToggleObjectRotateMode
GluePoints SID_GLUE_EDITMODE
Rotationskoerper .uno:ConvertInto3DLathe
SetzenAufKreisPerspektivisch .uno:CrookRotate
SetzenAufKreisSchraeggestellt .uno:CrookSlant
Spiegeln .uno:Mirror
Verzerren .uno:Shear
Transparency .uno:InteractiveTransparence
Gradient .uno:InteractiveGradient
'-------------------------------------------------------------------------
*ColorBar .HelpId:colorbar
'-------------------------------------------------------------------------
Rotanteil .uno:GrafRed
Gruenanteil .uno:GrafGreen
Blauanteil .uno:GrafBlue
Helligkeit .uno:GrafLuminance
Kontrast .uno:GrafContrast
Gamma .uno:GrafGamma
'-------------------------------------------------------------------------
*CommonTaskbar .HelpId:commontaskbar
'-------------------------------------------------------------------------
Seiteeingefueg .uno:InsertPage
SeitenlayoutAendern .uno:ModifyPage
Seitenvorlage .uno:PresentationLayout
SeiteDuplizieren .uno:DuplicatePage
SeiteErweitern .uno:ExpandPage
SlideShow .uno:Presentation
'-------------------------------------------------------------------------
*Connectorsbar .HelpId:connectorsbar
'-------------------------------------------------------------------------
DKreis .uno:ConnectorLineCircles
DPfeilAnfang .uno:ConnectorLineArrowStart
DPfeilEnde .uno:ConnectorLineArrowEnd
Direktverbinder .uno:ConnectorLine
DkreisAnfang .uno:ConnectorLineCircleStart
DkreisEnde .uno:ConnectorLineCircleEnd
Dpfeile .uno:ConnectorLineArrows
KKreis  .uno:ConnectorCurveCircles
KPfeilAnfang .uno:ConnectorCurveArrowStart
KPfeilEnde .uno:ConnectorCurveArrowEnd
KkreisAnfang .uno:ConnectorCurveCircleStart
KkreisEnde .uno:ConnectorCurveCircleEnd
Kpfeile .uno:ConnectorCurveArrows
KurvenVerbinder .uno:ConnectorCurve
LPfeilAnfang .uno:ConnectorLinesArrowStart
LPfeilEnde .uno:ConnectorLinesArrowEnd
LinienVerbinder .uno:ConnectorLines
Lkreis .uno:ConnectorLinesCircles
LkreisAnfang .uno:ConnectorLinesCircleStart
LkreisEnde .uno:ConnectorLinesCircleEnd
Lpfeile .uno:ConnectorLinesArrows
VPfeilAnfang .uno:ConnectorArrowStart
VPfeilEnde .uno:ConnectorArrowEnd
Verbinder .uno:Connector
Vkreis .uno:ConnectorCircles
VkreisAnfang .uno:ConnectorCircleStart
VkreisEnde .uno:ConnectorCircleEnd
Vpfeile .uno:ConnectorArrows
'-------------------------------------------------------------------------
*DBQueryBrowsebar .HelpID:browserobjectbar
'-------------------------------------------------------------------------
ApplyFilter SID_FM_FORM_FILTERED
Autofilter SID_FM_AUTOFILTER
CloseDoc SID_CLOSEWIN
DataToText SID_SBA_BRW_INSERT
DefaultFilter SID_FM_FILTERCRIT
Edit SID_EDITDOC
Explorer SID_DSBROWSER_EXPLORER
Refresh SID_FM_REFRESH
RemoveFilter SID_FM_REMOVE_FILTER_SORT
SaveNewDataEntry HID_BROWSER_SAVE_RECORD
Search SID_FM_SEARCH
SortAscending SID_FM_SORTUP
SortDescending SID_FM_SORTDOWN
SortOrder SID_FM_ORDERCRIT
Undo HID_BROWSER_UNDO_RECORD
'-------------------------------------------------------------------------
*Designobjectbar .HelpId:designobjectbar
'-------------------------------------------------------------------------
AddTables .uno:AddTable
DBViewFunctions .uno:DBViewFunctions
DBViewTableNames .uno:DBViewTableNames
DBViewAliases .uno:DBViewAliases
DBDistinctValues .uno:DBDistinctValues
'-------------------------------------------------------------------------
*Drawbar .HelpId:drawbar
'-------------------------------------------------------------------------
Auswahl .uno:SelectObject
Bezier .uno:Bezier_Unfilled
Ellipse .uno:Ellipse
Freihand .uno:Freeline_Unfilled
Kreisbogen .uno:Arc
Kreissegment .uno:CircleCut
Kreissektor .uno:Pie
Lauftext .uno:Text_Marquee
Legende .uno:DrawCaption
Linie .uno:Line
Polygon .uno:Polygon_Unfilled
Rechteck .uno:Rect
Textobjekt .uno:DrawText
Toolbox SID_DRAW_SELECT
VerticalCallout .uno:VerticalCaption
VerticalText .uno:VerticalText
LineArrowEnd .uno:LineArrowEnd
BasicShapes .uno:BasicShapes
SymbolShapes .uno:SymbolShapes
BlockArrows .uno:ArrowShapes
Flowcharts .uno:FlowChartShapes
Callouts .uno:CalloutShapes
Stars .uno:StarShapes
Points .uno:ToggleObjectBezierMode
FontworkGallery .uno:FontworkGalleryFloater
FromFile .uno:InsertGraphic
ExtrusionOnOff .uno:ExtrusionToggle
'-------------------------------------------------------------------------
*DrawTextObjectBar .HelpId:drawtextobjectbar
'-------------------------------------------------------------------------
Schriftart .uno:CharFontName
Schriftgroesse .uno:FontHeight
Fett .uno:Bold
Kursiv .uno:Italic
Unterstrichen .uno:Underline
Hochgestellt .uno:SuperScript
Tiefgestellt .uno:SubScript
Linksbuendig .uno:LeftPara
Zentriert .uno:CenterPara
Rechtsbuendig .uno:RightPara
Blocksatz .uno:JustifyPara
LineSpacing1 .uno:SpacePara1
LineSpacing15 .uno:SpacePara15
LineSpacing2 .uno:SpacePara2
FontColorGraphics .uno:Color
LeftToRight .uno:ParaLeftToRight
RightToLeft .uno:ParaRightToLeft
TextdirectionLeftToRight .uno:TextdirectionLeftToRight
TextdirectionTopToBottom .uno:TextdirectionTopToBottom
AllesSelektieren .uno:SelectAll
Zeichenformat .uno:FontDialog
Absatzformat .uno:ParagraphDialog

'-------------------------------------------------------------------------
*DrawingObjectbar .HelpId:drawingobjectbar
'-------------------------------------------------------------------------
AreaFilling HID_FILL_ATTR_LISTBOX
AreaStyle HID_FILL_TYPE_LISTBOX
Ausrichtung .uno:ObjectAlign
Drehen .uno:ToggleObjectRotateMode
Flaeche .uno:FormatArea
Flaechenfarbe .uno:FillStyle
Flaechenstil .uno:FillStyle
GanzNachHinten .uno:SendToBack
GanzNachVorn .uno:BringToFront
ImagemapEditor .uno:ImageMapDialog
InDenHintergrund .uno:SetObjectToBackground
InDenVordergrund .uno:SetObjectToForeground
Linie .uno:FormatLine
Linienbreite .uno:LineWidth
Linienendenstil .uno:LineEndStyle
Linienfarbe .uno:XLineColor
Linienstil .uno:XLineStyle
PunkteBearbeiten SID_BEZIER_EDIT
Schatten .uno:FillShadow
DesignerDialog .uno:DesignerDialog
VerankerungWechseln .uno:ToggleAnchorType
DisplayGrid .uno:GridVisible
SnapToGrid .uno:GridUse
GuidesWhenMoving .uno:HelplinesMove
WrapOff .uno:WrapOff
PageWarp .uno:WrapOn
OptimalPageWrap .uno:WrapIdeal
WrapLeft .uno:WrapLeft
WrapRight .uno:WrapRight
WrapThrough .uno:WrapThrough
WrapContourOn .uno:WrapContour
Ungroup .uno:FormatUngroup
Group .uno:FormatGroup
'-------------------------------------------------------------------------
*Ellipsesbar .HelpId:ellipsesbar
'-------------------------------------------------------------------------
EllipseLeer SID_DRAW_ELLIPSE_NOFILL
EllipseVoll SID_DRAW_ELLIPSE
Ellipsen SID_DRAWTBX_ELLIPSES
EllipsenabschnittLeer SID_DRAW_ELLIPSECUT_NOFILL
EllipsenabschnittVoll SID_DRAW_ELLIPSECUT
Ellipsenbogen SID_DRAW_ARC
EllipsensegmentLeer SID_DRAW_PIE_NOFILL
EllipsensegmentVoll SID_DRAW_PIE
KreisLeer SID_DRAW_CIRCLE_NOFILL
KreisVoll SID_DRAW_CIRCLE
KreisabschnittLeer SID_DRAW_CIRCLECUT_NOFILL
KreisabschnittVoll SID_DRAW_CIRCLECUT
Kreisbogen SID_DRAW_CIRCLEARC
KreissegmentLeer SID_DRAW_CIRCLEPIE_NOFILL
KreissegmentVoll SID_DRAW_CIRCLEPIE
'-------------------------------------------------------------------------
*ExtrusionObjectBar .HelpId:extrusionobjectbar
'-------------------------------------------------------------------------
ExtrusionOnOff .uno:ExtrusionToggle
ExtrusionTiltDown .uno:ExtrusionTiltDown
ExtrusionTiltUp .uno:ExtrusionTiltUp
ExtrusionTiltLeft .uno:ExtrusionTiltLeft
ExtrusionTiltRight .uno:ExtrusionTiltRight
ExtrusionDepthFloater .uno:ExtrusionDepthFloater
ExtrusionDirectionFloater .uno:ExtrusionDirectionFloater
ExtrusionLightingFloater .uno:ExtrusionLightingFloater
ExtrusionSurfaceFloater .uno:ExtrusionSurfaceFloater
Extrusion3DColor .uno:Extrusion3DColor
'-------------------------------------------------------------------------
*FindBar   .HelpId:findbar
'-------------------------------------------------------------------------
FindText .uno:FindText
DownSearch .uno:DownSearch
UpSearch .uno:UpSearch
SearchDialog   .uno:SearchDialog
'-------------------------------------------------------------------------
*Flowchart .HelpId:flowchartshapes
'-------------------------------------------------------------------------
Process .uno:FlowChartShapes.flowchart-process
AlternateProcess .uno:FlowChartShapes.flowchart-alternate-process
Decision .uno:FlowChartShapes.flowchart-decision
Data .uno:FlowChartShapes.flowchart-data
PredefinedProcess .uno:FlowChartShapes.flowchart-predefined-process
InternalStorage .uno:FlowChartShapes.flowchart-internal-storage
Document .uno:FlowChartShapes.flowchart-document
Multidocument .uno:FlowChartShapes.flowchart-multidocument
Terminator .uno:FlowChartShapes.flowchart-terminator
Preparation .uno:FlowChartShapes.flowchart-preparation
ManualInput .uno:FlowChartShapes.flowchart-manual-input
ManualOperation .uno:FlowChartShapes.flowchart-manual-operation
Connector .uno:FlowChartShapes.flowchart-connector
OffPageConnector .uno:FlowChartShapes.flowchart-off-page-connector
Card .uno:FlowChartShapes.flowchart-card
PunchedTape .uno:FlowChartShapes.flowchart-punched-tape
SummingJunction .uno:FlowChartShapes.flowchart-summing-junction
Or .uno:FlowChartShapes.flowchart-or
Collate .uno:FlowChartShapes.flowchart-collate
Sort .uno:FlowChartShapes.flowchart-sort
Extract .uno:FlowChartShapes.flowchart-extract
Merge .uno:FlowChartShapes.flowchart-merge
StoredData .uno:FlowChartShapes.flowchart-stored-data
Delay .uno:FlowChartShapes.flowchart-delay
SequentialAccess .uno:FlowChartShapes.flowchart-sequential-access
MagneticDisk .uno:FlowChartShapes.flowchart-magnetic-disk
DirectAccessStorage .uno:FlowChartShapes.flowchart-direct-access-storage
Display .uno:FlowChartShapes.flowchart-display
'-------------------------------------------------------------------------
*FormatObjectbar .HelpId:formatobjectbar
'-------------------------------------------------------------------------
Absatzvorlage .uno:StyleApply
Block .uno:AlignBlock
DezimalstellenHinzufuegen .uno:NumberFormatIncDecimals
DezimalstellenLoeschen .uno:NumberFormatDecDecimals
DoppeltUnterstreichen .uno:UnderlineDouble
EinzugErhoehen .uno:IncrementIndent
EinzugVermindern .uno:DecrementIndent
Fett .uno:Bold
Hintergrundfarbe .uno:BackgroundColor
HorizontalDirection .uno:TextdirectionLeftToRight
Kursiv .uno:Italic
Linienfarbe .uno:FrameLineColor
Linienstil .uno:LineStyle
Linksbuendig .uno:AlignLeft
Prozentformat .uno:NumberFormatPercent
Rechtsbuendig .uno:AlignRight
Schriftart .uno:CharFontName
Schriftfarbe .uno:Color
Schriftgroesse .uno:FontHeight
StandardWaehrungformat .uno:NumberFormatStandard
Umrandung .uno:SetBorderStyle
Unterstrichen .uno:Underline
VerticalDirection .uno:TextdirectionTopToBottom
VertikalMitte .uno:AlignVCenter
VertikalOben .uno:AlignTop
VertikalUnten .uno:AlignBottom
Waehrungsformat .uno:NumberFormatCurrency
ZahlenformatDatum .uno:NumberFormatDate
ZahlenformatExponential .uno:NumberFormatScientific
Zentriert .uno:AlignHorizontalCenter
StylesAndFormatting .uno:DesignerDialog
MergeCells .uno:ToggleMergeCells
LefToRight .uno:ParaLeftToRight
RightToLeft .uno:ParaRightToLeft
Rows .uno:InsertRows
Columns .uno:InsertColumns
DeleteRows .uno:DeleteRows
DeleteColumns .uno:DeleteColumns
'-------------------------------------------------------------------------
*MoreControls .HelpId:moreformcontrols
'-------------------------------------------------------------------------
SpinButton                  .uno:SpinButton
ScrollBar                   .uno:ScrollBar
Imagebutton                 .uno:Imagebutton
ImageControl                .uno:ImageControl
FileControl                 .uno:FileControl
DateField                   .uno:DateField
TimeField                   .uno:TimeField
NumericField                .uno:NumericField
CurrencyField               .uno:CurrencyField
PatternField                .uno:PatternField
GroupBox                    .uno:GroupBox
Grid                        .uno:Grid
NavigationBar               .uno:NavigationBar
'-------------------------------------------------------------------------
*FontworkObjectbar .HelpId:fontworkobjectbar
'-------------------------------------------------------------------------
FontworkGallery .uno:FontworkGalleryFloater
FontworkShape .uno:FontworkShapeType
FontworkSameLetterHeights .uno:FontworkSameLetterHeights
FontworkAlignment .uno:FontworkAlignmentFloater
FontworkCharacterSpacing .uno:FontworkCharacterSpacingFloater
'-------------------------------------------------------------------------
*FontworkShape .HelpId:fontworkshapetype
'-------------------------------------------------------------------------
PlainText .uno:FontworkShapeType.fontwork-plain-text 
Wave .uno:FontworkShapeType.fontwork-wave 
Inflate .uno:FontworkShapeType.fontwork-inflate 
Stop .uno:FontworkShapeType.fontwork-stop 
CurveUp .uno:FontworkShapeType.fontwork-curve-up 
CurveDown .uno:FontworkShapeType.fontwork-curve-down 
TriangleUp .uno:FontworkShapeType.fontwork-triangle-up 
TriangleDown .uno:FontworkShapeType.fontwork-triangle-down 
FadeRight .uno:FontworkShapeType.fontwork-fade-right 
FadeLeft .uno:FontworkShapeType.fontwork-fade-left 
FadeUp .uno:FontworkShapeType.fontwork-fade-up 
FadeDown .uno:FontworkShapeType.fontwork-fade-down 
SlantUp .uno:FontworkShapeType.fontwork-slant-up 
SlantDown .uno:FontworkShapeType.fontwork-slant-down 
FadeUpAndRight .uno:FontworkShapeType.fontwork-fade-up-and-right 
FadeUpAndLeft .uno:FontworkShapeType.fontwork-fade-up-and-left 
ChevronUp .uno:FontworkShapeType.fontwork-chevron-up 
ChevronDown .uno:FontworkShapeType.fontwork-chevron-down 
ArchUpCurve .uno:FontworkShapeType.fontwork-arch-up-curve 
ArchDownCurve .uno:FontworkShapeType.fontwork-arch-down-curve 
ArchLeftCurve .uno:FontworkShapeType.fontwork-arch-left-curve 
ArchRightCurve .uno:FontworkShapeType.fontwork-arch-right-curve 
CircleCurve .uno:FontworkShapeType.fontwork-circle-curve 
OpenCircleCurve .uno:FontworkShapeType.fontwork-open-circle-curve 
ArchUpPour .uno:FontworkShapeType.fontwork-arch-up-pour 
ArchDownPour .uno:FontworkShapeType.fontwork-arch-down-pour 
ArchLeftPour .uno:FontworkShapeType.fontwork-arch-left-pour 
ArchRightPour .uno:FontworkShapeType.fontwork-arch-right-pour 
CirclePour .uno:FontworkShapeType.fontwork-circle-pour 
OpenCirclePour .uno:FontworkShapeType.fontwork-open-circle-pour 
'-------------------------------------------------------------------------
*FormDesignTools .HelpId:formdesign
'-------------------------------------------------------------------------
SelectObject                .uno:SelectObject
ControlProperties           .uno:ControlProperties
FormProperties              .uno:FormProperties
PositionAndSizeDialog       .uno:TransformDialog
ShowFmExplorer              .uno:ShowFmExplorer
TabDialog                   .uno:TabDialog
AddField                    .uno:AddField
AutoControlFocus            .uno:AutoControlFocus
ToggleAnchorType            .uno:ToggleAnchorType
BringToFront                .uno:BringToFront
SendToBack                  .uno:SendToBack
FormatGroup                 .uno:FormatGroup
FormatUngroup               .uno:FormatUngroup
EnterGroup                  .uno:EnterGroup
LeaveGroup                  .uno:LeaveGroup
ObjectAlign                 .uno:ObjectAlign
OpenReadOnly                .uno:OpenReadOnly
GridVisible                 .uno:GridVisible
GridUse                     .uno:GridUse
HelplinesMove               .uno:HelplinesMove
XFormsDataNavigator         .uno:ShowDataNavigator
'-------------------------------------------------------------------------
*FormControls .HelpId:formcontrols
'-------------------------------------------------------------------------
SelectObject                .uno:SelectObject
SwitchControlDesignMode     .uno:SwitchControlDesignMode
ControlProperties           .uno:ControlProperties
FormProperties              .uno:FormProperties
CheckBox                    .uno:CheckBox
Edit                        .uno:Edit
FormattedField              .uno:FormattedField
Pushbutton                  .uno:Pushbutton
RadioButton                 .uno:RadioButton
ListBox                     .uno:ListBox
ComboBox                    .uno:ComboBox
Label                       .uno:Label
MoreControls                .uno:MoreControls
FormDesignTools             .uno:FormDesignTools
UseWizards                  .uno:UseWizards
SwitchXFormsDesignMode      .uno:SwitchXFormsDesignMode
'-------------------------------------------------------------------------
*FormsFilterBar .HelpId:formsfilterbar
'-------------------------------------------------------------------------
FormFilterNavigator .uno:FormFilterNavigator
FormFilterExecute .uno:FormFilterExecute
FormFilterExit .uno:FormFilterExit
'-------------------------------------------------------------------------
*FormsNavigationBar .HelpId:formsnavigationbar
'-------------------------------------------------------------------------
Record .uno:RecText
AbsoluteRecord .uno:AbsoluteRecord
RecFromText .uno:RecFromText
RecTotal .uno:RecTotal
FirstRecord .uno:FirstRecord
PrevRecord .uno:PrevRecord
NextRecord .uno:NextRecord
LastRecord .uno:LastRecord
RecSave .uno:RecSave
RecUndo .uno:RecUndo
NewRecord .uno:NewRecord
DeleteRecord .uno:DeleteRecord
Refresh .uno:Refresh
RecSearch .uno:RecSearch
SortUp .uno:Sortup
SortDown .uno:SortDown
AutoFilter .uno:AutoFilter
FormFilter .uno:FormFilter
OrderCrit .uno:OrderCrit
RemoveFilterSort .uno:RemoveFilterSort
ViewFormAsGrid .uno:ViewFormAsGrid
FormFiltered .uno:FormFiltered
'-------------------------------------------------------------------------
*FormsObjectBar .HelpId:formsobjectbar
'-------------------------------------------------------------------------
ToggleAnchorType .uno:ToggleAnchorType
TransformDialog .uno:TransformDialog
ControlProperties .uno:ControlProperties
FormProperties .uno:FormProperties
ShowFmExplorer .uno:ShowFmExplorer
TabDialog .uno:TabDialog
AddField .uno:AddField
SwitchControlDesignMode .uno:SwitchControlDesignMode
BringToFront .uno:BringToFront
SendToBack .uno:SendToBack
FormatGroup .uno:FormatGroup
FormatUngroup .uno:FormatUngroup
EnterGroup .uno:EnterGroup
LeaveGroup .uno:LeaveGroup
GridVisible .uno:GridVisible
GridUse .uno:GridUse
HelplinesMove .uno:HelplinesMove
ObjectAlign .uno:ObjectAlign
'-------------------------------------------------------------------------
*FrameObjectbar .HelpId:frameobjectbar
'-------------------------------------------------------------------------
Durchlauf .uno:WrapThrough
EigenschaftenControls SID_SHOW_BROWSER
EigenschaftenObjekt .uno:FrameDialog
GanzNachHinten .uno:SendToBack
GanzNachVorn .uno:BringToFront
Hintergrundfarbe .uno:BackgroundColor
Hintergrundmuster SID_BACKGROUND_PATTERN
HorizontalSpiegeln FN_FLIP_HORZ_GRAFIC
InDenHintergrund SID_OBJECT_HELL
InDenVordergrund SID_OBJECT_HEAVEN
LinienFarbe .uno:FrameLineColor
Linienstil .uno:LineStyle
Links .uno:AlignLeft
Mitte .uno:AlignVerticalCenter
NoWrap .uno:WrapOff
Oben .uno:AlignTop
PositionUndGroesse SID_ATTR_TRANSFORM
Rechts .uno:AlignRight
UmlaufDynamisch .uno:WrapIdeal
UmlaufLinks .uno:WrapLeft
UmlaufRechts .uno:WrapRight
Umrandung .uno:SetBorderStyle
Unten .uno:AlignBottom
Verankerungwechseln .uno:ToggleAnchorType
Verketten .uno:ChainFrames
VerkettungLoesen .uno:UnhainFrames
VertikalSpiegeln FN_FLIP_VERT_GRAFIC
Vorlage .uno:StyleApply
Wrap .uno:WrapOn
Zentriert .uno:AlignHorizontalCenter
'-------------------------------------------------------------------------
*FullScreenbar .HelpId:fullscreenbar
'-------------------------------------------------------------------------
'-------------------------------------------------------------------------
*Gluepointsobjectbar .HelpId:gluepointsobjectbar
'-------------------------------------------------------------------------
HorizontalLinks .uno:GlueHorzAlignLeft
HorizontalRechts .uno:GlueHorzAlignRight
HorizontalZentriert .uno:GlueHorzAlignCenter
Links .uno:GlueEscapeDirectionLeft
Oben .uno:GlueEscapeDirectionTop
PositionAnObjektAnpassen .uno:GluePercent
PunkteEinfuegen .uno:GlueInsertPoint
Rechts .uno:GlueEscapeDirectionRight
Unten .uno:GlueEscapeDirectionBottom
VertikalOben .uno:GlueVertAlignTop
VertikalUnten .uno:GlueVertAlignBottom
VertikalZentriert .uno:GlueVertAlignCenter
'-------------------------------------------------------------------------
*GraphicObjectbar .HelpId:graphicobjectbar
'-------------------------------------------------------------------------
WrapOff .uno:WrapOff
WrapLeft .uno:WrapLeft
WrapRight .uno:WrapRight
ImageMapDialog .uno:ImageMapDialog
AlignLeft .uno:AlignLeft
AlignRight .uno:AlignRight
AlignTop .uno:AlignTop
AlignVerticalCenter .uno:AlignVerticalCenter
AlignBottom .uno:AlignBottom
SetBorderStyle .uno:SetBorderStyle
LineStyle .uno:LineStyle
FrameLineColor .uno:FrameLineColor
FrameDialog .uno:FrameDialog
BringToFront .uno:BringToFront
SendToBack .uno:SendToBack
ToggleAnchorType .uno:ToggleAnchorType
AreaFilling HID_FILL_ATTR_LISTBOX
AreaStyle HID_FILL_TYPE_LISTBOX
Ausrichtung SID_OBJECT_ALIGN
Blauanteil .uno:GrafBlue
ColorSettings .uno:ColorSettings
Crop   .uno:Crop
Drehen SID_OBJECT_ROTATE
Durchlauf FN_FRAME_WRAPTHRU
EigenschaftenControls SID_SHOW_BROWSER
EigenschaftenObjekt FN_FORMAT_FRAME_DLG
Filter .uno:GraphicFilterToolbox
Flaeche .uno:FormatArea
Flaechenfarbe SID_ATTR_FILL_STYLE
Flaechenstil SID_ATTR_FILL_STYLE
Gamma .uno:GrafGamma
GanzNachHinten SID_FRAME_TO_BOTTOM
GanzNachVorn SID_FRAME_TO_TOP
GrafikEigenschaften FN_FORMAT_GRAFIC_DLG
Grafikmodus .uno:GrafMode
Gruenanteil .uno:GrafGreen
Helligkeit .uno:GrafLuminance
Hintergrundfarbe SID_BACKGROUND_COLOR
Hintergrundmuster SID_BACKGROUND_PATTERN
HorizontalSpiegeln .uno:FlipHorizontal
ImageMapEditor SID_IMAP
InDenHintergrund SID_OBJECT_HELL
InDenVordergrund SID_OBJECT_HEAVEN
KeinUmlauf FN_FRAME_NOWRAP
Kontrast .uno:GrafContrast
Linie .uno:FormatLine
Linienbreite SID_ATTR_LINE_WIDTH
Linienendenstil SID_ATTR_LINEEND_STYLE
Linienfarbe SID_ATTR_LINE_COLOR
Linienstil SID_ATTR_LINE_STYLE
Links FN_FRAME_ALIGN_HORZ_LEFT
Mitte FN_FRAME_ALIGN_VERT_CENTER
Oben FN_FRAME_ALIGN_VERT_TOP
PositionUndGroesse SID_ATTR_TRANSFORM
PunkteBearbeiten SID_BEZIER_EDIT
Rechts FN_FRAME_ALIGN_HORZ_RIGHT
Rotanteil .uno:GrafRed
Schatten .uno:FillShadow
Transparenz .uno:GrafTransparence
Umlauf FN_FRAME_WRAP
UmlaufLinks FN_FRAME_WRAP_LEFT
UmlaufRechts FN_FRAME_WRAP_RIGHT
Umrandung SID_ATTR_BORDER
Unten FN_FRAME_ALIGN_VERT_BOTTOM
VertikalSpiegeln .uno:FlipVertical
Zentriert FN_FRAME_ALIGN_HORZ_CENTER
InsertGraphic .uno:InsertGraphic
'-------------------------------------------------------------------------
*GraphicFilterBar .HelpId:graffilterbar
'-------------------------------------------------------------------------
Invert .uno:GraphicFilterInvert
Smooth .uno:GraphicFilterSmooth
Sharpen .uno:GraphicFilterSharpen
Remove .uno:GraphicFilterRemoveNoise
Solarization .uno:GraphicFilterSolarize
Aging .uno:GraphicFilterSepia
Posterize .uno:GraphicFilterPoster
Art .uno:GraphicFilterPopart
CharcoalSketch .uno:GraphicFilterSobel
Relief .uno:GraphicFilterRelief
Mosaic .uno:GraphicFilterMosaic
'-------------------------------------------------------------------------
*Hyperlinkleiste HID_OFA_HYPERLINK_DLG
'-------------------------------------------------------------------------
Frame HID_OFA_HYPERLINK_TARGET
Link SID_HYPERLINK_SETLINK
Suchen HID_OFA_HYPERLINK_SEARCH
UrlAdresse HID_OFA_HYPERLINK_URL
UrlName HID_OFA_HYPERLINK_NAME
Verknuepfung SID_CREATELINK
'-------------------------------------------------------------------------
*Insertbar .HelpId:insertbar
'-------------------------------------------------------------------------
Applet .uno:InsertApplet
BereichEinfuegen .uno:InsertSection
DateiEinfuegen .uno:InsertDoc
Chart .uno:DrawChart
Endnote .uno:InsertEndnote
Formel .uno:InsertObjectStarMath
Frame .uno:InsertObjectFloatingFrame
Fussnote .uno:InsertFootnote
Grafik .uno:InsertGraphic
InsertSpreadsheet .uno:InsertSpreadsheet
MehrspaltigeRahmen FN_INSERT_FRAME
OLEObjekt .uno:InsertObject
Plugin .uno:InsertPlugin
Rahmen .uno:InsertFrameInteract
Seite .uno:InsertPage
Sonderzeichen .uno:InsertSymbol
Spalten FN_INSERT_FRAME_INTERACT_NOCOL
Tabelle .uno:InsertTable
Textmarke .uno:InsertBookmark
Verzeichnis .uno:InsertIndexesEntry
MovieAndSound .uno:InsertAVMedia
Feldbefehle .uno:InsertFieldCtrl
Autotext .uno:EditGlossary
Notiz .uno:InsertAnnotation
ObjektEinfuegen .uno:InsertObjCtrl

'-------------------------------------------------------------------------
*InsertCellsbar .HelpId:insertcellsbar
'-------------------------------------------------------------------------
GanzeSpalte .uno:InsertColumns
GanzeZeile .uno:InsertRows
NachRechts .uno:InsertCellsRight
NachUnten .uno:InsertCellsDown
'-------------------------------------------------------------------------
*InsertObjectbar .HelpId:insertobjectbar
'-------------------------------------------------------------------------
Applet .uno:InsertApplet
Chart .uno:DrawChart
Formel .uno:InsertObjectStarMath
Frame .uno:InsertObjectFloatingFrame
Objekt .uno:InsertObject
Plugin .uno:InsertPlugin
MovieAndSound .uno:InsertAVMedia
'-------------------------------------------------------------------------
*Linesbar .HelpId:linesbar
'-------------------------------------------------------------------------
FreihandlinieLeer .uno:Freeline_Unfilled
FreihandlinieVoll .uno:Freeline
KurveLeer .uno:Bezier_Unfilled
KurveVoll .uno:BezierFill
Polygon .uno:Polygon_Unfilled
PolygonVoll .uno:Polygon
PolygonWinkel .uno:Polygon_Diagonal_Unfilled
PolygonWinkelVoll .uno:Polygon_Diagonal
'-------------------------------------------------------------------------
*Macrobar .HelpId:macrobar
'-------------------------------------------------------------------------
AddWatch .uno:AddWatch
BasicRun .uno:RunBasic
BasicStop .uno:BasicStop
Breakpoint .uno:ToggleBreakPoint
Compile .uno:CompileBasic
Controls .uno:ChooseControls
FindParanthese .uno:MatchGroup
InsertSourceText .uno:LoadBasic
Library .uno:LibSelector
Macros SID_BASICIDE_CHOOSEMACRO
ManageBreakpoints .uno:ManageBreakPoints
Modules SID_BASICIDE_MODULEDLG
ObjectCatalog SID_BASICIDE_OBJCAT
ProcedureStep .uno:BasicStepOver
SaveSourceText .uno:SaveBasicAs
SingleStep .uno:BasicStepInto
StepBack .uno:BasicStepOut
'-------------------------------------------------------------------------
*MediaObjectBar .HelpId:mediaobjectbar
'-------------------------------------------------------------------------
'-------------------------------------------------------------------------
*NumObjectbar .HelpId:numobjectbar
'-------------------------------------------------------------------------
AbsatzOhne .uno:InsertNeutralParagraph
Ausschalten .uno:RemoveBullets
Hinunterschieben .uno:MoveDown
HinunterschiebenMitUnterpunkten .uno:MoveDownSubItems
Hinunterstufen .uno:DecrementLevel
HinunterstufenMitUnterpunkten .uno:DecrementSubLevels
Hochschieben .uno:MoveUp
HochschiebenMitUnterpunkten .uno:MoveUpSubItems
Hochstufen .uno:IncrementLevel
HochstufenMitUnterpunkten .uno:IncrementSubLevels
NeuStarten .uno:NumberingStart
NumerierungAufzaehlung .uno:BulletsAndNumberingDialog
Schriftart .uno:CharFontName
Schriftgroesse .uno:FontHeight
Vorlage .uno:StyleApply
NumberingOnOff .uno:DefaultNumbering
BulletsOnOff .uno:DefaultBullet
'-------------------------------------------------------------------------
*OB_DB_Tabledesign HID_TLB_TABLEDESIGN
'-------------------------------------------------------------------------
Copy SID_COPY
Cut SID_CUT
Edit SID_EDITDOC
NoConnection HID_TABLE_DESIGN_NO_CONNECTION
Paste SID_PASTE
Redo SID_REDO
Save SID_SAVEDOC
SaveAs SID_SAVEASDOC
Undo SID_UNDO
'-------------------------------------------------------------------------
*OL_SW_Rechenleiste HID_CALC_TOOLBOX
'-------------------------------------------------------------------------
Eingabefeld HID_EDIT_FORMULA
Formel FN_FORMULA_CALC
Uebernehmen FN_FORMULA_APPLY
Verwerfen FN_FORMULA_CANCEL
'-------------------------------------------------------------------------
*OLEObjectBar .HelpId:oleobjectbar
'-------------------------------------------------------------------------
StyleApply   .uno:StyleApply
WrapOff .uno:WrapOff
WrapOn .uno:WrapOn
WrapIdeal .uno:WrapIdeal
WrapLeft .uno:WrapLeft
WrapRight .uno:WrapRight
WrapThrough .uno:WrapThrough
WrapContour .uno:WrapContour
ContourrDialog .uno:ContourDialog
ImageMapDialog .uno:ImageMapDialog
AlignLeft .uno:AlignLeft
AlignHorizontalCenter .uno:AlignHorizontalCenter
AlignRight .uno:AlignRight
AlignTop .uno:AlignTop
AlignVerticalCenter .uno:AlignVerticalCenter
AlignBottom .uno:AlignBottom
SetBorderStyle .uno:SetBorderStyle
LineStyle .uno:LineStyle
FrameLineColor .uno:FrameLineColor
FrameDialog .uno:FrameDialog
BringToFront .uno:BringToFront
SendToBack .uno:SendToBack
ToggleAnchorType .uno:ToggleAnchorType
'-------------------------------------------------------------------------
*OptimizeTablebar .HelpId:optimizetablebar
'-------------------------------------------------------------------------
OptimaleSpaltenbreite .uno:SetOptimalColumnWidth
OptimaleZeilenhoehe .uno:SetOptimalRowHeight
SpaltenGleichmaessig .uno:DistributeColumns
ZeilenGleichmaessig .uno:DistributeRows
'-------------------------------------------------------------------------
*Optionsbar .HelpId:optionsbar
'-------------------------------------------------------------------------
AlleGruppenVerlassen .uno:LeaveAllGroups
AlleGruppierungenVerlassen SID_CONNECTOR_LINES_CIRCLES
DrehmodusNachKlick .uno:ClickChangeRotation
EinfacheHandles .uno:HandlesDraft
FangenAnObjektRahmen .uno:SnapFrame
FangenAnObjektpunkten .uno:SnapPoints
FangenAnSeitenraendern .uno:SnapBorder
FanglinieBenutzen .uno:HelplinesUse
FanglinieSichtbar .uno:HelplinesVisible
FremdgrafikenAndeuten .uno:GraphicDraft
GrosseHandles .uno:BigHandles
HilfslinienBeimVerschiebenAnzeigen .uno:HelplinesMove
KeineFuellungen .uno:FillDraft
GluePoints .uno:GlueEditMode
NurHaarlinien .uno:LineDraft
NurTextbreichSelektieren .uno:PickThrough
ObjektMitAttributen SID_SOLID_CREATE
PunkteBearbeiten SID_BEZIER_EDIT
RasterBenutzen .uno:GridUse
RasterSichtbar .uno:GridVisible
Schnellbearbeitung .uno:QuickEdit
TextAndeuten .uno:TextDraft
TextBearbeitenBeiDoppelklick .uno:DoubleClickTextEdit
'-------------------------------------------------------------------------
*OutlineToolbar .HelpId:outlinetoolbar
'-------------------------------------------------------------------------
AlleEbenen .uno:OutlineExpandAll
FormatierungEinAus .uno:OutlineFormat
NurErsteEbene .uno:OutlineCollapseAll
Praesentation .uno:Presentation
SchwarzweisDarstellung .uno:ColorView
UnterpunkteAnzeigen .uno:OutlineExpand
UnterpunkteAusblenden .uno:OutlineCollapse
Zoom .uno:ZoomToolBox
ZoomIn .uno:ZoomIn
ZoomPlus .uno:ZoomPlus
'-------------------------------------------------------------------------
*Positionbar .HelpId:positionbar
'-------------------------------------------------------------------------
GanzNachHinten SID_FRAME_TO_BOTTOM
GanzNachVorn SID_FRAME_TO_TOP
HinterDasObjekt SID_BEHIND_OBJ
Vertauschen SID_REVERSE_ORDER
VorDasObjekt SID_BEFORE_OBJ
WeiterNachHinten SID_MOREBACK
WeiterNachVorn SID_MOREFRONT
'-------------------------------------------------------------------------
*Previewbar .HelpId:previewbar
'-------------------------------------------------------------------------
DruckenSeitenansicht FN_PRINT_PAGEPREVIEW
ErsteSeite .uno:FirstPage
GanzerBildschirm .uno:FullScreen
KopfUndFusszeilen .uno:EditHeaderAndFooter
LetzteSeite .uno:LastPage
Margins .uno:Margins
Massstab SID_ATTR_ZOOM
MassstabVergroessern .uno:ZoomIn
MassstabVerkleinern .uno:ZoomOut
NaechsteSeite .uno:NextPage
ScalingFactor .uno:ScalingFactor
Schliessen SID_CLOSEWIN
Seitenansicht .uno:ClosePreview
Seitenlayout .uno:PageFormatDialog
VierSeiten FN_SHOW_MULTIPLE_PAGES
VorherigeSeite .uno:PreviousPage
ZweiSeiten FN_SHOW_TWO_PAGES
'-------------------------------------------------------------------------
*PreviewObjectbar .HelpId:previewobjectbar
'-------------------------------------------------------------------------
DruckenSeitenansicht .uno:PrintPagePreView
ErsteSeite .uno:GoToStartOfDoc
GanzerBildschirm .uno:FullScreen
Groesser .uno:ZoomPlus
Kleiner .uno:ZoomMinus
LetzteSeite .uno:GoToEndOfDoc
Massstab .uno:PreviewZoom
MassstabVergroessern SID_PREVIEW_ZOOMIN
MassstabVerkleinern SID_PREVIEW_ZOOMOUT
NaechsteSeite .uno:PageDown
SeitenansichtSchliessen .uno:ClosePreview
Seitenlayout SID_FORMATPAGE
Skalierung .uno:PreviewPrintOptions
VierSeiten .uno:ShowMultiplePages
VorherigeSeite .uno:PageUp
ZweiSeiten .uno:ShowTwoPages
'-------------------------------------------------------------------------
*RechenleisteCalc HID_SC_INPUTWIN
'-------------------------------------------------------------------------
AktiverZellBereich HID_INSWIN_POS
Bereich HID_INSWIN_POS
EingabeZeileCalc HID_INSWIN_INPUT
Funktion HID_INSWIN_FUNC
Funktionsautopilot HID_INSWIN_CALC
Summe HID_INSWIN_SUMME
Uebernehmen HID_INSWIN_OK
Verwerfen HID_INSWIN_CANCEL
'-------------------------------------------------------------------------
*Rectanglesbar .HelpId:rectanglesbar
'-------------------------------------------------------------------------
QuadratLeer SID_DRAW_SQUARE_NOFILL
QuadratRundLeer SID_DRAW_SQUARE_ROUND_NOFILL
QuadratRundVoll SID_DRAW_SQUARE_ROUND
QuadratVoll SID_DRAW_SQUARE
RechteckLeer SID_DRAW_RECT_NOFILL
RechteckRundLeer SID_DRAW_RECT_ROUND_NOFILL
RechteckRundVoll SID_DRAW_RECT_ROUND
RechteckVoll SID_DRAW_RECT
'-------------------------------------------------------------------------
*SD_Farbleiste HID_CTRL_COLOR
'-------------------------------------------------------------------------
Farben HID_COLOR_CTL_COLORS
'-------------------------------------------------------------------------
*SlideViewObjectbar .HelpId:slideviewobjectbar
'-------------------------------------------------------------------------
DiaAnzeigen .uno:HideSlide
DiasProReihe .uno:PagesPerRow
Geschwindigkeit .uno:DiaSpeed
Praesentation .uno:Presentation
PraesentationMitZeitnahme .uno:DiaAuto
Ueberblendeffekt .uno:DiaEffect
Zeit .uno:DiaTime
Zoom .uno:ZoomToolBox
RehearseTimings .uno:RehearseTimings
'-------------------------------------------------------------------------
*SourceViewToolbar .HelpId:sourceviewtoolbar
'-------------------------------------------------------------------------
InsertObjects .uno:InsertCtrl
InsertFields .uno:InsertFieldCtrl
TextMarquee .uno:Text_Marquee
FormControls .uno:Config
Autotext .uno:EditGlossary
Spellcheck .uno:SpellDialog
AutoSpellcheck .uno:SpellOnline
Hyphenation .uno:Hyphenate
Thesaurus .uno:ThesaurusDialog
FindAndReplace .uno:SearchDialog
Zoom .uno:Zoom
ControlCodes .uno:ControlCodes
PictureOnOff .uno:Graphic
PrintLayout .uno:PrintLayout
SourceView .uno:SourceView
'-------------------------------------------------------------------------
*Sqlobjectbar .HelpId:sqlobjectbar
'-------------------------------------------------------------------------
NativeSql .uno:SbaNativeSql
'-------------------------------------------------------------------------
*Standardbar .HelpId:standardbar
'-------------------------------------------------------------------------
Ausschneiden .uno:Cut
Bearbeiten .uno:EditDoc
DokSchliessen SID_CLOSEDOC
Drucken .uno:PrintDefault
Einfuegen .uno:Paste
ExportAsPDF .uno:ExportDirectToPDF
FaxDrucken .uno:SendFax
GalleryButton .uno:Gallery
Gesamtbild SID_WIN_FULLSCREEN
GestalterButton SID_STYLE_DESIGNER
HyperlinkDialog .uno:HyperlinkDialog
HyperlinkLeisteButton SID_HYPERLINK_INSERT
Kopieren .uno:Copy
NavigatorButton .uno:Navigator
Neu .uno:AddDirect
NeuDialog .uno:NewDoc
Oeffnen .uno:Open
RecordMacroButton SID_RECORDMACRO
Redo .uno:Redo
SortAscending .uno:SortAscending
SortDescending .uno:SortDescending
Speichern .uno:Save
SpeichernAls .uno:SaveAs
URLEingabe .uno:OpenUrl
Undo .uno:Undo
DocumentAsEMail .uno:SendMail
PagePreview .uno:PrintPreview
CheckSpelling .uno:SpellDialog
AutoSpellcheck .uno:SpellOnline
FormatPaintbrush .uno:FormatPaintbrush
Table .uno:InsertTable
CreateChart .uno:InsertObjectChart
ShowDrawFunctions .uno:InsertDraw
FindAndReplace .uno:SearchDialog
DataSources .uno:ViewDataSourceBrowser
Zoom .uno:Zoom
Help .uno:HelpIndex
WhatsThis .uno:ExtendedHelp
'-------------------------------------------------------------------------
*Starshapes .HelpId:starshapes
'-------------------------------------------------------------------------
StarshapesBang .uno:StarShapes.bang
StarshapesStar4 .uno:StarShapes.star4
StarshapesStar5 .uno:StarShapes.star5
StarshapesStar6 .uno:StarShapes.star6
StarshapesStar8 .uno:StarShapes.star8
StarshapesStar12 .uno:StarShapes.star12
StarshapesStar24 .uno:StarShapes.star24
StarshapesConcaveStar6 .uno:StarShapes.concave-star6
StarShapesVerticalScroll .uno:StarShapes.vertical-scroll
StarShapesHorizontalScroll .uno:StarShapes.horizontal-scroll
StarShapesSignet .uno:StarShapes.signet
StarShapesDoorplate .uno:StarShapes.doorplate
'-------------------------------------------------------------------------
*SymbolShapes .HelpId:symbolshapes
'-------------------------------------------------------------------------
SymbolShapesSmiley .uno:SymbolShapes.smiley
SymbolShapesSun .uno:SymbolShapes.sun
SymbolShapesMoon .uno:SymbolShapes.moon
SymbolShapesLightning .uno:SymbolShapes.lightning
SymbolShapesHeart .uno:SymbolShapes.heart
SymbolShapesFlower .uno:SymbolShapes.flower
SymbolShapesCloud .uno:SymbolShapes.cloud
SymbolShapesForbidden .uno:SymbolShapes.forbidden
SymbolShapesPuzzle .uno:SymbolShapes.puzzle
SymbolShapesBracketPair .uno:SymbolShapes.bracket-pair
SymbolShapesLeftBracket .uno:SymbolShapes.left-bracket
SymbolShapesRightBracket .uno:SymbolShapes.right-bracket
SymbolShapesBracePair .uno:SymbolShapes.brace-pair
SymbolShapesLeftBrace .uno:SymbolShapes.left-brace
SymbolShapesRightBrace .uno:SymbolShapes.right-brace
SymbolShapesQuadBevel .uno:SymbolShapes.quad-bevel
SymbolShapesOoctagonBevel .uno:SymbolShapes.octagon-bevel
SymbolShapesDiamondBevel .uno:SymbolShapes.diamond-bevel
'-------------------------------------------------------------------------
*TableObjectbar .HelpId:tableobjectbar
'-------------------------------------------------------------------------
AutoFormat .uno:AutoFormat
FormelEingeben .uno:AutoSum
Sortieren .uno:OrderCrit
Hintergrundfarbe .uno:BackgroundColor
LinienStil .uno:LineStyle
Optimieren .uno:OptimizeTable
Schriftart SID_ATTR_CHAR_FONT
Schriftgroesse SID_ATTR_CHAR_FONTHEIGHT
SpalteAuswaehlen .uno:EntireColumn
SpalteEinfuegen .uno:InsertColumns
SpalteLoeschen .uno:DeleteColumns
TabelleAuswaehlen .uno:SelectTable
TabellenmodeFix FN_TABLE_MODE_FIX
TabellenmodeProportional FN_TABLE_MODE_FIX_PROP
TabellenmodeVariabel FN_TABLE_MODE_VARIABLE
Umrandung .uno:SetBorderStyle
Vorlage SID_STYLE_APPLY
Vorlage2 HID_STYLE_LISTBOX
ZeileAuswaehlen .uno:EntireRow
ZeileEinfuegen .uno:InsertRows
ZeileLoeschen .uno:DeleteRows
ZelleTeilen .uno:SplitCell
ZellenVerbinden .uno:MergeCells
Table .uno:InsertTable
LineColorOfTheBorder .uno:FrameLineColor
Top .uno:CellVertTop
CenterVertical .uno:CellVertCenter
Bottom .uno:CellVertBottom
TableDesign   .uno:TableDesign
TableProperties .uno:TableDialog
'-------------------------------------------------------------------------
*Textbar .HelpId:textbar
'-------------------------------------------------------------------------
FitVerticalTextToFrame SID_TEXT_FITTOSIZE_VERTICAL
Legende SID_DRAW_CAPTION
Rahmen SID_TEXT_FITTOSIZE
TextEinfuegen SID_ATTR_CHAR
VerticalCallout SID_DRAW_CAPTION_VERTICAL
VerticalText SID_DRAW_TEXT_VERTICAL
'-------------------------------------------------------------------------
*TextObjectbar .HelpId:textobjectbar
'-------------------------------------------------------------------------
AbsatzHoch .uno:OutlineUp
AbsatzRunter .uno:OutlineDown
Absatzformat .uno:ParagraphDialog
Absatzhintergrund .uno:BackgroundColor
AllesSelektieren .uno:SelectAll
Blocksatz .uno:JustifyPara
BulletsOnOff .uno:DefaultBullet
DoppeltUnterstreichen .uno:UnderlineDouble
EinzugErhoehen .uno:IncrementIndent
EinzugVermindern .uno:DecrementIndent
Fett .uno:Bold
HierachieHoch .uno:OutlineLeft
HierachieRunter .uno:OutlineRight
Hochgestellt .uno:SuperScript
IncreaseFont .uno:Grow
Kursiv .uno:Italic
LeftToRight .uno:ParaLeftToRight
LineSpacing1 .uno:SpacePara1
LineSpacing2 .uno:SpacePara2
LineSpacing15 .uno:SpacePara15
Linksbuendig .uno:LeftPara
Numerierung .uno:DefaultNumbering
OutlineBullet .uno:OutlineBullet
Rechtsbuendig .uno:RightPara
ReduceFont .uno:Shrink
RightToLeft .uno:ParaRightToLeft
Schriftart .uno:CharFontName
Schriftfarbe .uno:FontColor
FontColorGraphics .uno:Color
Schriftgroesse .uno:FontHeight
TextdirectionLeftToRight .uno:TextdirectionLeftToRight
TextdirectionTopToBottom .uno:TextdirectionTopToBottom
Tiefgestellt .uno:SubScript
Unterstrichen .uno:Underline
Vorlage .uno:StyleApply
Zeichenformat .uno:FontDialog
Zeichenhintergrund .uno:BackColor
ZeilenabstandErhoehen .uno:ParaspaceIncrease
ZeilenabstandVerringern .uno:ParaspaceDecrease
Zentriert .uno:CenterPara
StylesAndFormatting .uno:DesignerDialog
Shadow .uno:Shadowed
BulletsOnOff2 .uno:Bullet
'-------------------------------------------------------------------------
*Toolbar .HelpId:toolbar
'-------------------------------------------------------------------------
AlleEbenen SID_OUTLINE_EXPAND_ALL
Anordnung .uno:ObjectPosition
ApplyFilter .uno:FormFiltered
ArrowsToolbox .uno:ArrowsToolbox
Auswahl .uno:SelectObject
AutoFilter .uno:DataFilterAutoFilter
BasicShapes .uno:BasicShapes
DBAutoFilter .uno:AutoFilter
DBEditDoc .uno:DSBEditDoc
AutoFormat .uno:AutoFormat
AutoSpellcheck .uno:SpellOnline
Autotext_ .uno:EditGlossary
CalloutShapes .uno:CalloutShapes
ChangeBezier .uno:ChangeBezier
ChangePolygon .uno:ChangePolygon
ClearQuery .uno:DBClearQuery
ConvertInto3D .uno:ConvertInto3D
ConvertInto3Dnew SID_EXTRUSION_TOOGLE
ConvertInto3DLatheFast .uno:ConvertInto3DLatheFast
Copy .uno:Copy
CustomAnimation .uno:CustomAnimation
Cut .uno:Cut
Datenpilot .uno:DataDataPilotRun
DBIndexDesign .uno:DBIndexDesign
DefaultFilter .uno:FilterCrit
DesignView .uno:DBChangeDesignMode
Direktcursor .uno:ShadowCursor
Drei_D_Effekt .uno:Window3D
Drei_D_Objekte .uno:Objects3DToolbox
DruckLayout .uno:PrintLayout
Effekt .uno:EffectWindow
Edit .uno:EditDoc
Einfuegen .uno:InsertCtrl
Ellipsen .uno:Ellipse
ExecuteBtn .uno:SbaExecuteSql
Feldbefehle .uno:InsertFieldCtrl
Filter .uno:DataFilterStandardFilter
FlowChartShapes .uno:FlowChartShapes
FontworkGalleryFloater .uno:FontworkGalleryFloater
FormatierungEinAus SID_OUTLINE_FORMAT
FormControls .uno:Config
FormelAktualisieren .uno:Draw
FormelSymbole .uno:SymbolCatalogue
FormulaCursor .uno:FormelCursor
GanzeFormel .uno:Adjust
Grafikeffekte .uno:AdvancedMode
GrafikenAusEin .uno:Graphic
Gruppierung .uno:Group
GruppierungAufheben .uno:Ungroup
HTMLQuelltext HID_SOURCEVIEW
Hinunterschieben SID_OUTLINE_DOWN
Hinunterstufen SID_OUTLINE_RIGHT
Hochschieben SID_OUTLINE_UP
Hochstufen SID_OUTLINE_LEFT
Hyperlink .uno:InsertHyperlink
Insert .uno:InsertToolbox
InsertGraphic .uno:InsertGraphic
Interaktion .uno:AnimationObjects
Kurven .uno:Line
LineToolBox .uno:LineToolbox
Linien .uno:ArrowShapes
LineArrowEnd .uno:LineArrowEnd
Mirror .uno:Mirror
NamenDefinieren .uno:DefineName
NewDoc .uno:NewDoc
NurErsteEbene SID_OUTLINE_COLLAPSE_ALL
ObjectAlign .uno:ObjectAlign
ObjektEinfuegen .uno:InsertObjCtrl
ObjekteEinfuegen .uno:InsObjCtrl
OnlineLayout .uno:BrowseView
Paste .uno:Paste
Praesentation .uno:Presentation
PrintDefault .uno:PrintDefault
Rechteck .uno:Rect
Rechtschreibung .uno:Spelling
RecSearch .uno:RecSearch
RecSave .uno:RecSave
RecUndo .uno:RecUndo
Redo .uno:Redo
Refresh .uno:Refresh
RemoveFilter .uno:RemoveFilterSort
Rotate .uno:ToggleObjectRotateMode
SchwarzweisDarstellung SID_COLORVIEW
ShowFormFunctions .uno:Config
Save .uno:Save
SaveAs .uno:SaveAs
SortAscending .uno:Sortup
SortDescending .uno:Sortdown
SortierenAb .uno:SortDescending
SortierenAuf .uno:SortAscending
SortOrder .uno:OrderCrit
SpezialFilter .uno:DataFilterSpecialFilter
StarShapes .uno:StarShapes
SteuerzeichenEinAus .uno:ControlCodes
SuchenUndErsetzen .uno:SearchDialog
SymbolShapes .uno:SymbolShapes
Textfield .uno:Text
Themen .uno:ChooseDesign
Thesaurus .uno:Thesaurus
ToolsGallery .uno:Gallery
Transform .uno:TransformDialog
Undo .uno:Undo
UnterpunkteAnzeigen SID_OUTLINE_EXPAND
UnterpunkteAusblenden SID_OUTLINE_COLLAPSE
Verbinder .uno:ConnectorToolbox
Vergroessern .uno:ZoomIn
Verkleinern .uno:ZoomOut
VerticalText .uno:VerticalText
Zeichnen .uno:InsertDraw
ZellenEinfuegen .uno:InsCellsCtrl
Zielwertsuche .uno:GoalSeekDialog
Zoom .uno:Zoom
ZoomToolBox .uno:ZoomToolBox
ZoomHundertProzent .uno:View100
ZoomPlus .uno:ZoomPlus
AxesLabelOnOff .uno:ToggleAxisDescr
AxesTitleOnOff .uno:ToggleAxisTitle
DataInRows .uno:DataInRows
DataInColumns .uno:DataInColumns
ChartTypeOn .uno:DiagramType
ChartData .uno:DiagramData
GridsHorizontalOnOff .uno:ToggleGridHorizontal
GridsVerticalalOnOff .uno:ToggleGridVertical
LegendeOnOff .uno:ToggleLegend
NeuAnordnen .uno:NewArrangement
TextSkalierung .uno:ScaleText
TitleOnOff .uno:ToggleTitle
Points .uno:ToggleObjectBezierMode
GluePoints .uno:GlueEditMode
ExtrusionOnOff .uno:ExtrusionToggle
Hyphenation .uno:Hyphenate
ThesaurusD .uno:ThesaurusDialog
EuroConverter .uno:EuroConverter
ImageMap .uno:ImageMapDialog
ChartElementSelector .uno:ChartElementSelector
FormatSelection .uno:FormatSelection
'-------------------------------------------------------------------------
*ToolsCollectionBar .HelpId:insertcontrolsbar
'-------------------------------------------------------------------------
InsPushButton .uno:InsertPushbutton
InsCheckBox .uno:Checkbox
InsListBox .uno:InsertListbox
InsFixedText .uno:InsertFixedText
InsFrame .uno:Groupbox
InsTimeField .uno:InsertTimeField
InsDateField .uno:AddDateField
InsNumField .uno:InsertNumericField
InsFormField .uno:InsertFormattedField
InsCurrencyField .uno:InsertCurrencyField
InsPatternField .uno:InsertPatternField
InsEditField .uno:InsertEdit
InsFileCtrl .uno:InsertFileControl
InsImgCtrl .uno:InsertImageControl
InsRadioButton .uno:Radiobutton
InsComboBox .uno:Combobox
InsScrollbarH .uno:HScrollbar
InsScrollbarV .uno:VScrollbar
InsFixedLineH .uno:HFixedLine
InsFixedLineV .uno:VFixedLine
InsProgressBar .uno:ProgressBar
InsTreeControl .uno:InsertTreeControl
OpenProperties .uno:ShowPropBrowser
SelectMode .uno:SelectMode
TestMode .uno:TestMode
ManageLanguage .uno:ManageLanguage
'-------------------------------------------------------------------------
*TranslationBar .HelpId:translationbar
'-------------------------------------------------------------------------
CurrentLanguage .uno:CurrentLanguage
ManageLanguage .uno:ManageLanguage
'-------------------------------------------------------------------------
*ViewerBar .HelpId:viewerbar
'-------------------------------------------------------------------------
SaveAs .uno:SaveAs
EditDoc .uno:EditDoc
SendMail .uno:SendMail
ExportDirectToPDF .uno:ExportDirectToPDF
PrintDefault .uno:PrintDefault
Copy .uno:Copy
SearchDialog .uno:SearchDialog
Navigator .uno:Navigator
Zoom .uno:Zoom
'-------------------------------------------------------------------------
*Zoombar .HelpId:zoombar
'-------------------------------------------------------------------------
EinsZuEins .uno:Zoom100Percent
GanzeSeite .uno:ZoomPage
Groesser .uno:ZoomPlus
Kleiner .uno:ZoomMinus
NaechsteDarstellung  .uno:ZoomNext
Objektzoom .uno:ZoomOptimal
Optimal .uno:ZoomObjects
Seitenbreite .uno:ZoomPageWidth
VerschiebenZoom .uno:ZoomPanning
VorherigeDarstellung .uno:ZoomPrevious
'-------------------------------------------------------------------------
*DialogBar .HelpId:dialogbar
'-------------------------------------------------------------------------
Library  .uno:LibSelector
Controls .uno:ChooseControls
Export   .uno:ExportDialog
Import   .uno:ImportDialog