summaryrefslogtreecommitdiff
path: root/svx/source/accessibility/accessibility.src
blob: 939699c1d903657e27877af821fe6751c498c92c (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
/*************************************************************************
 *
 *  $RCSfile: accessibility.src,v $
 *
 *  $Revision: 1.23 $
 *
 *  last change: $Author: kz $ $Date: 2002-12-05 10:23:11 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#include "accessibility.hrc"

String RID_SVXSTR_A11Y_3D_MATERIAL_COLOR
{
    Text = "3D-Materialfarbe" ;
    Text[ ENGLISH ] = "3D material color" ;
    Text[ ENGLISH_US ] = "3D material color" ;
    Text[ portuguese ] = "3D material color";
    Text[ russian ] = "3D material color";
    Text[ greek ] = "3D material color";
    Text[ dutch ] = "3D material color";
    Text[ french ] = "Couleur de matriau 3D";
    Text[ spanish ] = "Color del material-3D";
    Text[ finnish ] = "3D material color";
    Text[ italian ] = "Colore materiale 3D";
    Text[ danish ] = "3D material color";
    Text[ swedish ] = "3D-materialfrg";
    Text[ polish ] = "3D material color";
    Text[ portuguese_brazilian ] = "3D material color";
    Text[ japanese ] = "3D マテリアルカラー";
    Text[ korean ] = "3D 재료 색상";
    Text[ chinese_simplified ] = "3 维材料颜色";
    Text[ chinese_traditional ] = "3D 材料顔色";
    Text[ turkish ] = "3D material color";
    Text[ arabic ] = "3D material color";
    Text[ catalan ] = "3D material color";
    Text[ thai ] = "3D material color";
};
String RID_SVXSTR_A11Y_TEXT_COLOR
{
    Text = "Schriftfarbe" ;
    Text[ ENGLISH ] = "Font color" ;
    Text[ ENGLISH_US ] = "Font color" ;
    Text[ portuguese ] = "text color";
    Text[ russian ] = "text color";
    Text[ greek ] = "text color";
    Text[ dutch ] = "text color";
    Text[ french ] = "Couleur du texte";
    Text[ spanish ] = "Color de texto";
    Text[ finnish ] = "text color";
    Text[ italian ] = "Colore testo";
    Text[ danish ] = "text color";
    Text[ swedish ] = "Textfrg";
    Text[ polish ] = "text color";
    Text[ portuguese_brazilian ] = "Cor da Fonte";
    Text[ japanese ] = "テキストの色";
    Text[ korean ] = "텍스트 색상";
    Text[ chinese_simplified ] = "文字颜色";
    Text[ chinese_traditional ] = "文字顏色";
    Text[ turkish ] = "text color";
    Text[ arabic ] = "text color";
    Text[ catalan ] = "Color del text";
    Text[ thai ] = "สีข้อความ";
};
String RID_SVXSTR_A11Y_BACKGROUND_COLOR
{
    Text = "Hintergrundfarbe" ;
    Text[ ENGLISH ] = "Background color" ;
    Text[ ENGLISH_US ] = "Background color" ;
    Text[ portuguese ] = "background color";
    Text[ russian ] = "background color";
    Text[ greek ] = "background color";
    Text[ dutch ] = "background color";
    Text[ french ] = "Couleur d'arrire-plan";
    Text[ spanish ] = "Color de fondo";
    Text[ finnish ] = "background color";
    Text[ italian ] = "Colore di sfondo";
    Text[ danish ] = "background color";
    Text[ swedish ] = "Bakgrundsfrg";
    Text[ polish ] = "background color";
    Text[ portuguese_brazilian ] = "background color";
    Text[ japanese ] = "背景色";
    Text[ korean ] = "배경색";
    Text[ chinese_simplified ] = "背景颜色";
    Text[ chinese_traditional ] = "背景顔色";
    Text[ turkish ] = "background color";
    Text[ arabic ] = "background color";
    Text[ catalan ] = "Color de fons";
    Text[ thai ] = "สีพื้นหลัง";
};
String RID_SVXSTR_A11Y_FILLSTYLE_NONE
{
    Text = "Keiner" ;
    Text[ ENGLISH ] = "None" ;
    Text[ ENGLISH_US ] = "None" ;
    Text[ portuguese ] = "none";
    Text[ russian ] = "none";
    Text[ greek ] = "none";
    Text[ dutch ] = "none";
    Text[ french ] = "Aucun(e)";
    Text[ spanish ] = "Ninguno";
    Text[ finnish ] = "none";
    Text[ italian ] = "Nessuno";
    Text[ danish ] = "none";
    Text[ swedish ] = "Ingen";
    Text[ polish ] = "none";
    Text[ portuguese_brazilian ] = "Nenhum";
    Text[ japanese ] = "なし";
    Text[ korean ] = "없음";
    Text[ chinese_simplified ] = "无";
    Text[ chinese_traditional ] = "無";
    Text[ turkish ] = "none";
    Text[ arabic ] = "none";
    Text[ catalan ] = "Cap";
    Text[ thai ] = "ไม่มี";
};
String RID_SVXSTR_A11Y_FILLSTYLE_SOLID
{
    Text = "Ausgefllt" ;
    Text[ ENGLISH ] = "Solid" ;
    Text[ ENGLISH_US ] = "Solid" ;
    Text[ portuguese ] = "solid";
    Text[ russian ] = "solid";
    Text[ greek ] = "solid";
    Text[ dutch ] = "solid";
    Text[ french ] = "Plein";
    Text[ spanish ] = "Relleno";
    Text[ finnish ] = "solid";
    Text[ italian ] = "Riempito";
    Text[ danish ] = "solid";
    Text[ swedish ] = "Ifyllt";
    Text[ polish ] = "solid";
    Text[ portuguese_brazilian ] = "solid";
    Text[ japanese ] = "ぎっしりと詰まった";
    Text[ korean ] = "채워짐";
    Text[ chinese_simplified ] = "填满的";
    Text[ chinese_traditional ] = "填滿的";
    Text[ turkish ] = "solid";
    Text[ arabic ] = "solid";
    Text[ catalan ] = "solid";
    Text[ thai ] = "solid";
};
String RID_SVXSTR_A11Y_FILLSTYLE_HATCH
{
    Text = "Schraffiert" ;
    Text[ ENGLISH ] = "Hatching" ;
    Text[ ENGLISH_US ] = "With hatching" ;
    Text[ portuguese ] = "hatch";
    Text[ russian ] = "hatch";
    Text[ greek ] = "hatch";
    Text[ dutch ] = "hatch";
    Text[ french ] = "Hachur";
    Text[ spanish ] = "Con trama";
    Text[ finnish ] = "hatch";
    Text[ italian ] = "Tratteggiato";
    Text[ danish ] = "hatch";
    Text[ swedish ] = "Skrafferat";
    Text[ polish ] = "hatch";
    Text[ portuguese_brazilian ] = "hatch";
    Text[ japanese ] = "ハッチング";
    Text[ korean ] = "해칭";
    Text[ chinese_simplified ] = "阴影线的";
    Text[ chinese_traditional ] = "陰影線的";
    Text[ turkish ] = "hatch";
    Text[ arabic ] = "hatch";
    Text[ catalan ] = "hatch";
    Text[ thai ] = "hatch";
};
String RID_SVXSTR_A11Y_FILLSTYLE_GRADIENT
{
    Text = "Verlauf" ;
    Text[ ENGLISH ] = "Gradient" ;
    Text[ ENGLISH_US ] = "Gradient" ;
    Text[ portuguese ] = "gradient";
    Text[ russian ] = "gradient";
    Text[ greek ] = "gradient";
    Text[ dutch ] = "gradient";
    Text[ french ] = "Dgrad";
    Text[ spanish ] = "Gradiente";
    Text[ finnish ] = "gradient";
    Text[ italian ] = "Trasparenza";
    Text[ danish ] = "gradient";
    Text[ swedish ] = "Gradient";
    Text[ polish ] = "gradient";
    Text[ portuguese_brazilian ] = "gradient";
    Text[ japanese ] = "透過性グラデーション";
    Text[ korean ] = "그라디언트";
    Text[ chinese_simplified ] = "透明图案";
    Text[ chinese_traditional ] = "透明圖案";
    Text[ turkish ] = "gradient";
    Text[ arabic ] = "gradient";
    Text[ catalan ] = "gradient";
    Text[ thai ] = "gradient";
    Text[ language_user1 ] = "Corr; Correct German is \"Verlauf\"";
};
String RID_SVXSTR_A11Y_FILLSTYLE_BITMAP
{
    Text = "Bitmap" ;
    Text[ ENGLISH ] = "Bitmap" ;
    Text[ ENGLISH_US ] = "Bitmap" ;
    Text[ portuguese ] = "bitmap";
    Text[ russian ] = "";
    Text[ greek ] = "bitmap";
    Text[ dutch ] = "bitmap";
    Text[ french ] = "Bitmap";
    Text[ spanish ] = "Bitmap";
    Text[ finnish ] = "Bittikartta";
    Text[ italian ] = "Stile bitmap";
    Text[ danish ] = "bitmap";
    Text[ swedish ] = "Bitmap";
    Text[ polish ] = "Mapa bitowa";
    Text[ portuguese_brazilian ] = "bitmap";
    Text[ japanese ] = "ビットマップ";
    Text[ korean ] = "비트맵";
    Text[ chinese_simplified ] = "位图";
    Text[ chinese_traditional ] = "點陣圖";
    Text[ turkish ] = "Bit elem";
    Text[ arabic ] = " ";
    Text[ catalan ] = "Mapa de bits";
    Text[ thai ] = "บิทแมป";
    Text[ language_user1 ] = "Corr; Correct German is \"Bitmap\"";
};
String RID_SVXSTR_A11Y_WITH
{
    Text = "mit" ;
    Text[ ENGLISH ] = "with" ;
    Text[ ENGLISH_US ] = "with" ;
    Text[ portuguese ] = "with";
    Text[ russian ] = "with";
    Text[ greek ] = "with";
    Text[ dutch ] = "with";
    Text[ french ] = "avec";
    Text[ spanish ] = "con";
    Text[ finnish ] = "with";
    Text[ italian ] = "con";
    Text[ danish ] = "with";
    Text[ swedish ] = "med";
    Text[ polish ] = "with";
    Text[ portuguese_brazilian ] = "with";
    Text[ japanese ] = "対象";
    Text[ korean ] = "설정 대상";
    Text[ chinese_simplified ] = "带";
    Text[ chinese_traditional ] = "帶";
    Text[ turkish ] = "with";
    Text[ arabic ] = "with";
    Text[ catalan ] = "with";
    Text[ thai ] = "with";
};
String RID_SVXSTR_A11Y_STYLE
{
    Text = "Stil" ;
    Text[ ENGLISH ] = "style" ;
    Text[ ENGLISH_US ] = "Style" ;
    Text[ portuguese ] = "style";
    Text[ russian ] = "style";
    Text[ greek ] = "style";
    Text[ dutch ] = "style";
    Text[ french ] = "Style";
    Text[ spanish ] = "Estilo";
    Text[ finnish ] = "style";
    Text[ italian ] = "Stile";
    Text[ danish ] = "style";
    Text[ swedish ] = "Stil";
    Text[ polish ] = "style";
    Text[ portuguese_brazilian ] = "style";
    Text[ japanese ] = "スタイル";
    Text[ korean ] = "스타일";
    Text[ chinese_simplified ] = "风格";
    Text[ chinese_traditional ] = "風格";
    Text[ turkish ] = "style";
    Text[ arabic ] = "style";
    Text[ catalan ] = "style";
    Text[ thai ] = "style";
};
String RID_SVXSTR_A11Y_AND
{
    Text = "und" ;
    Text[ ENGLISH ] = "and" ;
    Text[ ENGLISH_US ] = "and" ;
    Text[ portuguese ] = "and";
    Text[ russian ] = "and";
    Text[ greek ] = "and";
    Text[ dutch ] = "and";
    Text[ french ] = "et";
    Text[ spanish ] = "y";
    Text[ finnish ] = "and";
    Text[ italian ] = "e";
    Text[ danish ] = "and";
    Text[ swedish ] = "och";
    Text[ polish ] = "and";
    Text[ portuguese_brazilian ] = "and";
    Text[ japanese ] = "および";
    Text[ korean ] = "기타 대상";
    Text[ chinese_simplified ] = "和";
    Text[ chinese_traditional ] = "和";
    Text[ turkish ] = "and";
    Text[ arabic ] = "and";
    Text[ catalan ] = "AND";
    Text[ thai ] = "และ";
};


// SvxRectCtl

String RID_SVXSTR_RECTCTL_ACC_CORN_NAME
{
    Text = "Ecken-Kontrollelement" ;
    Text [ english_us ] = "Corner control" ;
    Text[ portuguese ] = "Corner control";
    Text[ russian ] = "Corner control";
    Text[ greek ] = "Corner control";
    Text[ dutch ] = "Corner control";
    Text[ french ] = "lment de contrle de coin";
    Text[ spanish ] = "Elemento de control - Esquinas";
    Text[ finnish ] = "Corner control";
    Text[ italian ] = "Controllo spigolo";
    Text[ danish ] = "Corner control";
    Text[ swedish ] = "Hrnkontrollelement";
    Text[ polish ] = "Corner control";
    Text[ portuguese_brazilian ] = "Corner control";
    Text[ japanese ] = "コーナーコントロール";
    Text[ korean ] = "코너 조정";
    Text[ chinese_simplified ] = "角控制";
    Text[ chinese_traditional ] = "角控制項";
    Text[ turkish ] = "Corner control";
    Text[ arabic ] = "Corner control";
    Text[ catalan ] = "Corner control";
    Text[ thai ] = "Corner control";
};

String RID_SVXSTR_RECTCTL_ACC_CORN_DESCR
{
    Text = "Auswahl eines Eckpunktes." ;
    Text [ english_us ] = "Selection of a corner point." ;
    Text[ portuguese ] = "Selection of a corner point.";
    Text[ russian ] = "Selection of a corner point.";
    Text[ greek ] = "Selection of a corner point.";
    Text[ dutch ] = "Selection of a corner point.";
    Text[ french ] = "Selection d'un point d'inflexion";
    Text[ spanish ] = "Seleccin de un punto de la esquina";
    Text[ finnish ] = "Selection of a corner point.";
    Text[ italian ] = "Selezione di un punto dello spigolo";
    Text[ danish ] = "Selection of a corner point.";
    Text[ swedish ] = "Urval av en hrnpunkt.";
    Text[ polish ] = "Selection of a corner point.";
    Text[ portuguese_brazilian ] = "Selection of a corner point.";
    Text[ japanese ] = "隅を選択。";
    Text[ korean ] = "모서리점 선택";
    Text[ chinese_simplified ] = "选择一个角点。";
    Text[ chinese_traditional ] = "選擇一個角點。";
    Text[ turkish ] = "Selection of a corner point.";
    Text[ arabic ] = "Selection of a corner point.";
    Text[ catalan ] = "Selection of a corner point.";
    Text[ thai ] = "Selection of a corner point.";
};

String RID_SVXSTR_RECTCTL_ACC_ANGL_NAME
{
    Text = "Winkel-Kontrollelement" ;
    Text [ english_us ] = "Angle control" ;
    Text[ portuguese ] = "Angle control";
    Text[ russian ] = "Angle control";
    Text[ greek ] = "Angle control";
    Text[ dutch ] = "Angle control";
    Text[ french ] = "lment de contrle d'angle";
    Text[ spanish ] = "Elemento de control - ngulo";
    Text[ finnish ] = "Angle control";
    Text[ italian ] = "Controllo angolo";
    Text[ danish ] = "Angle control";
    Text[ swedish ] = "Vinkelkontrollelement";
    Text[ polish ] = "Angle control";
    Text[ portuguese_brazilian ] = "Angle control";
    Text[ japanese ] = "アングルコントロール";
    Text[ korean ] = "각도 조정";
    Text[ chinese_simplified ] = "角度控制";
    Text[ chinese_traditional ] = "角度控制項";
    Text[ turkish ] = "Angle control";
    Text[ arabic ] = "Angle control";
    Text[ catalan ] = "Angle control";
    Text[ thai ] = "Angle control";
};

String RID_SVXSTR_RECTCTL_ACC_ANGL_DESCR
{
    Text = "Auswahl eines (Haupt-) Winkels." ;
    Text [ english_us ] = "Selection of a major angle." ;
    Text[ portuguese ] = "Selection of a major angle";
    Text[ russian ] = "Selection of a major angle";
    Text[ greek ] = "Selection of a major angle";
    Text[ dutch ] = "Selection of a major angle";
    Text[ french ] = "Selection d'un angle (principal)";
    Text[ spanish ] = "Seleccin de un ngulo principal";
    Text[ finnish ] = "Selection of a major angle";
    Text[ italian ] = "Selezione di un angolo (principale).";
    Text[ danish ] = "Selection of a major angle";
    Text[ swedish ] = "Markering av en (huvud)vinkel.";
    Text[ polish ] = "Selection of a major angle";
    Text[ portuguese_brazilian ] = "Selection of a major angle";
    Text[ japanese ] = "メインの角を選択";
    Text[ korean ] = "중심각 선택";
    Text[ chinese_simplified ] = "选择一个主角度。";
    Text[ chinese_traditional ] = "選擇一個主角度。";
    Text[ turkish ] = "Selection of a major angle";
    Text[ arabic ] = "Selection of a major angle";
    Text[ catalan ] = "Selection of a major angle";
    Text[ thai ] = "Selection of a major angle";
};


String RID_SVXSTR_RECTCTL_ACC_CHLD_LT
{
    Text = "Links oben" ;
    Text [ english_us ] = "Top left" ;
    Text[ portuguese ] = "Top left";
    Text[ russian ] = "Top left";
    Text[ greek ] = "Top left";
    Text[ dutch ] = "Top left";
    Text[ french ] = "En haut  gauche";
    Text[ spanish ] = "Arriba a la izquierda";
    Text[ finnish ] = "Top left";
    Text[ italian ] = "A sinistra/in alto";
    Text[ danish ] = "Top left";
    Text[ swedish ] = "Uppe till vnster";
    Text[ polish ] = "Top left";
    Text[ portuguese_brazilian ] = "Top left";
    Text[ japanese ] = "左上方";
    Text[ korean ] = "왼쪽 위";
    Text[ chinese_simplified ] = "左上";
    Text[ chinese_traditional ] = "左上";
    Text[ turkish ] = "Top left";
    Text[ arabic ] = "Top left";
    Text[ catalan ] = "Top left";
    Text[ thai ] = "Top left";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_MT
{
    Text = "Mitte oben" ;
    Text [ english_us ] = "Top middle" ;
    Text[ portuguese ] = "Top middle";
    Text[ russian ] = "Top middle";
    Text[ greek ] = "Top middle";
    Text[ dutch ] = "Top middle";
    Text[ french ] = "En haut au milieu";
    Text[ spanish ] = "Centrado arriba";
    Text[ finnish ] = "Top middle";
    Text[ italian ] = "Al centro/in alto";
    Text[ danish ] = "Top middle";
    Text[ swedish ] = "Uppe i mitten";
    Text[ polish ] = "Top middle";
    Text[ portuguese_brazilian ] = "Top middle";
    Text[ japanese ] = "中央上";
    Text[ korean ] = "중간 위";
    Text[ chinese_simplified ] = "中上";
    Text[ chinese_traditional ] = "中上";
    Text[ turkish ] = "Top middle";
    Text[ arabic ] = "Top middle";
    Text[ catalan ] = "Top middle";
    Text[ thai ] = "Top middle";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_RT
{
    Text = "Rechts oben" ;
    Text [ english_us ] = "Top right" ;
    Text[ portuguese ] = "Top right";
    Text[ russian ] = "Top right";
    Text[ greek ] = "Top right";
    Text[ dutch ] = "Top right";
    Text[ french ] = "En haut  droite";
    Text[ spanish ] = "Arriba a la derecha";
    Text[ finnish ] = "Top right";
    Text[ italian ] = "A destra/in alto";
    Text[ danish ] = "Top right";
    Text[ swedish ] = "Uppe till hger";
    Text[ polish ] = "Top right";
    Text[ portuguese_brazilian ] = "Top right";
    Text[ japanese ] = "右上方";
    Text[ korean ] = "오른쪽 위";
    Text[ chinese_simplified ] = "右上";
    Text[ chinese_traditional ] = "右上";
    Text[ turkish ] = "Top right";
    Text[ arabic ] = "Top right";
    Text[ catalan ] = "Top right";
    Text[ thai ] = "Top right";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_LM
{
    Text = "Links mittig" ;
    Text [ english_us ] = "Left center" ;
    Text[ portuguese ] = "Left center";
    Text[ russian ] = "Left center";
    Text[ greek ] = "Left center";
    Text[ dutch ] = "Left center";
    Text[ french ] = "Au centre  gauche";
    Text[ spanish ] = "Centrado a la izquierda";
    Text[ finnish ] = "Left center";
    Text[ italian ] = "In centro a sinistra";
    Text[ danish ] = "Left center";
    Text[ swedish ] = "Till vnster i mitten";
    Text[ polish ] = "Left center";
    Text[ portuguese_brazilian ] = "Left center";
    Text[ japanese ] = "左中央";
    Text[ korean ] = "왼쪽 중간";
    Text[ chinese_simplified ] = "左中";
    Text[ chinese_traditional ] = "左中";
    Text[ turkish ] = "Left center";
    Text[ arabic ] = "Left center";
    Text[ catalan ] = "Left center";
    Text[ thai ] = "Left center";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_MM
{
    Text = "Mitte" ;
    Text [ english_us ] = "Center" ;
    Text[ portuguese ] = "Center";
    Text[ russian ] = "Center";
    Text[ greek ] = "Center";
    Text[ dutch ] = "Center";
    Text[ french ] = "Centre";
    Text[ spanish ] = "Centrado";
    Text[ finnish ] = "Center";
    Text[ italian ] = "Centro";
    Text[ danish ] = "Center";
    Text[ swedish ] = "Mitten";
    Text[ polish ] = "Center";
    Text[ portuguese_brazilian ] = "Center";
    Text[ japanese ] = "中央";
    Text[ korean ] = "중간";
    Text[ chinese_simplified ] = "中";
    Text[ chinese_traditional ] = "中";
    Text[ turkish ] = "Center";
    Text[ arabic ] = "Center";
    Text[ catalan ] = "Mig";
    Text[ thai ] = "กลาง";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_RM
{
    Text = "Rechts mittig" ;
    Text [ english_us ] = "Right center" ;
    Text[ portuguese ] = "Right center";
    Text[ russian ] = "Right center";
    Text[ greek ] = "Right center";
    Text[ dutch ] = "Right center";
    Text[ french ] = "Au centre  droite";
    Text[ spanish ] = "Centrado a la derecha";
    Text[ finnish ] = "Right center";
    Text[ italian ] = "In centro a destra";
    Text[ danish ] = "Right center";
    Text[ swedish ] = "Till hger i mitten";
    Text[ polish ] = "Right center";
    Text[ portuguese_brazilian ] = "Right center";
    Text[ japanese ] = "右中央";
    Text[ korean ] = "오른쪽 중간";
    Text[ chinese_simplified ] = "右中";
    Text[ chinese_traditional ] = "右中";
    Text[ turkish ] = "Right center";
    Text[ arabic ] = "Right center";
    Text[ catalan ] = "Right center";
    Text[ thai ] = "Right center";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_LB
{
    Text = "Links unten" ;
    Text [ english_us ] = "Bottom left" ;
    Text[ portuguese ] = "Bottom left";
    Text[ russian ] = "Bottom left";
    Text[ greek ] = "Bottom left";
    Text[ dutch ] = "Bottom left";
    Text[ french ] = "En bas  gauche";
    Text[ spanish ] = "Abajo a la izquierda";
    Text[ finnish ] = "Bottom left";
    Text[ italian ] = "A sinistra/in basso";
    Text[ danish ] = "Bottom left";
    Text[ swedish ] = "Nere till vnster";
    Text[ polish ] = "Bottom left";
    Text[ portuguese_brazilian ] = "Bottom left";
    Text[ japanese ] = "左下方";
    Text[ korean ] = "왼쪽 아래";
    Text[ chinese_simplified ] = "左下";
    Text[ chinese_traditional ] = "左下";
    Text[ turkish ] = "Bottom left";
    Text[ arabic ] = "Bottom left";
    Text[ catalan ] = "Bottom left";
    Text[ thai ] = "Bottom left";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_MB
{
    Text = "Mitte unten" ;
    Text [ english_us ] = "Bottom middle" ;
    Text[ portuguese ] = "Bottom middle";
    Text[ russian ] = "Bottom middle";
    Text[ greek ] = "Bottom middle";
    Text[ dutch ] = "Bottom middle";
    Text[ french ] = "En bas au milieu";
    Text[ spanish ] = "Centrado abajo";
    Text[ finnish ] = "Bottom middle";
    Text[ italian ] = "In centro in basso";
    Text[ danish ] = "Bottom middle";
    Text[ swedish ] = "Nere i mitten";
    Text[ polish ] = "Bottom middle";
    Text[ portuguese_brazilian ] = "Bottom middle";
    Text[ japanese ] = "中央下";
    Text[ korean ] = "중간 아래";
    Text[ chinese_simplified ] = "中下";
    Text[ chinese_traditional ] = "中下";
    Text[ turkish ] = "Bottom middle";
    Text[ arabic ] = "Bottom middle";
    Text[ catalan ] = "Bottom middle";
    Text[ thai ] = "Bottom middle";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_RB
{
    Text = "Rechts unten" ;
    Text [ english_us ] = "Bottom right" ;
    Text[ portuguese ] = "Bottom right";
    Text[ russian ] = "Bottom right";
    Text[ greek ] = "Bottom right";
    Text[ dutch ] = "Bottom right";
    Text[ french ] = "En bas  droite";
    Text[ spanish ] = "Abajo a la derecha";
    Text[ finnish ] = "Bottom right";
    Text[ italian ] = "A destra/in basso";
    Text[ danish ] = "Bottom right";
    Text[ swedish ] = "Nere till hger";
    Text[ polish ] = "Bottom right";
    Text[ portuguese_brazilian ] = "Bottom right";
    Text[ japanese ] = "右下方";
    Text[ korean ] = "오른쪽 아래";
    Text[ chinese_simplified ] = "右下";
    Text[ chinese_traditional ] = "右下";
    Text[ turkish ] = "Bottom right";
    Text[ arabic ] = "Bottom right";
    Text[ catalan ] = "Bottom right";
    Text[ thai ] = "Bottom right";
};


String RID_SVXSTR_RECTCTL_ACC_CHLD_A000
{
    Text = "0 Grad" ;
    Text [ english_us ] = "0 degrees" ;
    Text[ portuguese ] = "0 degrees";
    Text[ russian ] = "0 degrees";
    Text[ greek ] = "0 degrees";
    Text[ dutch ] = "0 degrees";
    Text[ french ] = "0 degr";
    Text[ spanish ] = "0 grados";
    Text[ finnish ] = "0 degrees";
    Text[ italian ] = "0 gradi";
    Text[ danish ] = "0 degrees";
    Text[ swedish ] = "0 grader";
    Text[ polish ] = "0 degrees";
    Text[ portuguese_brazilian ] = "0 degrees";
    Text[ japanese ] = "0 度";
    Text[ korean ] = "0 도";
    Text[ chinese_simplified ] = "0 度";
    Text[ chinese_traditional ] = "0 度";
    Text[ turkish ] = "0 degrees";
    Text[ arabic ] = "0 degrees";
    Text[ catalan ] = "0 degrees";
    Text[ thai ] = "0 degrees";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_A045
{
    Text = "45 Grad" ;
    Text [ english_us ] = "45 degrees" ;
    Text[ portuguese ] = "45 degrees";
    Text[ russian ] = "45 degrees";
    Text[ greek ] = "45 degrees";
    Text[ dutch ] = "45 degrees";
    Text[ french ] = "45 degrs";
    Text[ spanish ] = "45 grados";
    Text[ finnish ] = "45 degrees";
    Text[ italian ] = "45 gradi";
    Text[ danish ] = "45 degrees";
    Text[ swedish ] = "45 grader";
    Text[ polish ] = "45 degrees";
    Text[ portuguese_brazilian ] = "45 degrees";
    Text[ japanese ] = "45 度";
    Text[ korean ] = "45 도";
    Text[ chinese_simplified ] = "45 度";
    Text[ chinese_traditional ] = "45 度";
    Text[ turkish ] = "45 degrees";
    Text[ arabic ] = "45 degrees";
    Text[ catalan ] = "45 degrees";
    Text[ thai ] = "45 องศา";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_A090
{
    Text = "90 Grad" ;
    Text [ english_us ] = "90 degrees" ;
    Text[ portuguese ] = "90 degrees";
    Text[ russian ] = "90 degrees";
    Text[ greek ] = "90 degrees";
    Text[ dutch ] = "90 degrees";
    Text[ french ] = "90 degrs";
    Text[ spanish ] = "90 grados";
    Text[ finnish ] = "90 degrees";
    Text[ italian ] = "90 gradi";
    Text[ danish ] = "90 degrees";
    Text[ swedish ] = "90 grader";
    Text[ polish ] = "90 degrees";
    Text[ portuguese_brazilian ] = "90 degrees";
    Text[ japanese ] = "90 度";
    Text[ korean ] = "90 도";
    Text[ chinese_simplified ] = "90 度";
    Text[ chinese_traditional ] = "90 度";
    Text[ turkish ] = "90 degrees";
    Text[ arabic ] = "90 degrees";
    Text[ catalan ] = "90 degrees";
    Text[ thai ] = "90 องศา";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_A135
{
    Text = "135 Grad" ;
    Text [ english_us ] = "135 degrees" ;
    Text[ portuguese ] = "135 degrees";
    Text[ russian ] = "135 degrees";
    Text[ greek ] = "135 degrees";
    Text[ dutch ] = "135 degrees";
    Text[ french ] = "135 degrs";
    Text[ spanish ] = "135 grados";
    Text[ finnish ] = "135 degrees";
    Text[ italian ] = "135 gradi";
    Text[ danish ] = "135 degrees";
    Text[ swedish ] = "135 grader";
    Text[ polish ] = "135 degrees";
    Text[ portuguese_brazilian ] = "135 degrees";
    Text[ japanese ] = "135 度";
    Text[ korean ] = "135 도";
    Text[ chinese_simplified ] = "135 度";
    Text[ chinese_traditional ] = "135 度";
    Text[ turkish ] = "135 degrees";
    Text[ arabic ] = "135 degrees";
    Text[ catalan ] = "135 degrees";
    Text[ thai ] = "135 degrees";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_A180
{
    Text = "180 Grad" ;
    Text [ english_us ] = "180 degrees" ;
    Text[ portuguese ] = "180 degrees";
    Text[ russian ] = "180 degrees";
    Text[ greek ] = "180 degrees";
    Text[ dutch ] = "180 degrees";
    Text[ french ] = "180 degrs";
    Text[ spanish ] = "180 grados";
    Text[ finnish ] = "180 degrees";
    Text[ italian ] = "180 gradi";
    Text[ danish ] = "180 degrees";
    Text[ swedish ] = "180 grader";
    Text[ polish ] = "180 degrees";
    Text[ portuguese_brazilian ] = "180 degrees";
    Text[ japanese ] = "180 度";
    Text[ korean ] = "180 도";
    Text[ chinese_simplified ] = "180 度";
    Text[ chinese_traditional ] = "180 度";
    Text[ turkish ] = "180 degrees";
    Text[ arabic ] = "180 degrees";
    Text[ catalan ] = "180 degrees";
    Text[ thai ] = "180 degrees";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_A225
{
    Text = "225 Grad" ;
    Text [ english_us ] = "225 degrees" ;
    Text[ portuguese ] = "225 degrees";
    Text[ russian ] = "225 degrees";
    Text[ greek ] = "225 degrees";
    Text[ dutch ] = "225 degrees";
    Text[ french ] = "225 degrs";
    Text[ spanish ] = "225 grados";
    Text[ finnish ] = "225 degrees";
    Text[ italian ] = "225 gradi";
    Text[ danish ] = "225 degrees";
    Text[ swedish ] = "225 grader";
    Text[ polish ] = "225 degrees";
    Text[ portuguese_brazilian ] = "225 degrees";
    Text[ japanese ] = "225 度";
    Text[ korean ] = "225 도";
    Text[ chinese_simplified ] = "225 度";
    Text[ chinese_traditional ] = "225 度";
    Text[ turkish ] = "225 degrees";
    Text[ arabic ] = "225 degrees";
    Text[ catalan ] = "225 degrees";
    Text[ thai ] = "225 degrees";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_A270
{
    Text = "270 Grad" ;
    Text [ english_us ] = "270 degrees" ;
    Text[ portuguese ] = "270 degrees";
    Text[ russian ] = "270 degrees";
    Text[ greek ] = "270 degrees";
    Text[ dutch ] = "270 degrees";
    Text[ french ] = "270 degrs";
    Text[ spanish ] = "270 grados";
    Text[ finnish ] = "270 degrees";
    Text[ italian ] = "270 gradi";
    Text[ danish ] = "270 degrees";
    Text[ swedish ] = "270 grader";
    Text[ polish ] = "270 degrees";
    Text[ portuguese_brazilian ] = "270 degrees";
    Text[ japanese ] = "270 度";
    Text[ korean ] = "270 도";
    Text[ chinese_simplified ] = "270 度";
    Text[ chinese_traditional ] = "270 度";
    Text[ turkish ] = "270 degrees";
    Text[ arabic ] = "270 degrees";
    Text[ catalan ] = "270 degrees";
    Text[ thai ] = "270 degrees";
};

String RID_SVXSTR_RECTCTL_ACC_CHLD_A315
{
    Text = "315 Grad" ;
    Text [ english_us ] = "315 degrees" ;
    Text[ portuguese ] = "315 degrees";
    Text[ russian ] = "315 degrees";
    Text[ greek ] = "315 degrees";
    Text[ dutch ] = "315 degrees";
    Text[ french ] = "315 degrs";
    Text[ spanish ] = "315 grados";
    Text[ finnish ] = "315 degrees";
    Text[ italian ] = "315 gradi";
    Text[ danish ] = "315 degrees";
    Text[ swedish ] = "315 grader";
    Text[ polish ] = "315 degrees";
    Text[ portuguese_brazilian ] = "315 degrees";
    Text[ japanese ] = "315 度";
    Text[ korean ] = "315 도";
    Text[ chinese_simplified ] = "315 度";
    Text[ chinese_traditional ] = "315 度";
    Text[ turkish ] = "315 degrees";
    Text[ arabic ] = "315 degrees";
    Text[ catalan ] = "315 degrees";
    Text[ thai ] = "315 degrees";
};

// SvxGraphCtrlAccessibleContext
String RID_SVXSTR_GRAPHCTRL_ACC_NAME
{
    Text = "Kontrollelement der Kontur" ;
    Text [ english_us ] = "Contour control" ;
    Text[ portuguese ] = "Graph control";
    Text[ russian ] = "Graph control";
    Text[ greek ] = "Graph control";
    Text[ dutch ] = "Graph control";
    Text[ french ] = "lment de contrle du contour";
    Text[ spanish ] = "Elemento de control del contorno";
    Text[ finnish ] = "Graph control";
    Text[ italian ] = "Controllo contorno";
    Text[ danish ] = "Graph control";
    Text[ swedish ] = "Kontrollelement fr kontur";
    Text[ polish ] = "Graph control";
    Text[ portuguese_brazilian ] = "Graph control";
    Text[ japanese ] = "輪郭コントロール";
    Text[ korean ] = "윤곽 조정";
    Text[ chinese_simplified ] = "轮廓控制";
    Text[ chinese_traditional ] = "輪廓控製項";
    Text[ turkish ] = "Graph control";
    Text[ arabic ] = "Graph control";
    Text[ catalan ] = "Graph control";
    Text[ thai ] = "Graph control";
};

String RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION
{
    Text = "Hier knnen Sie die Kontur bearbeiten." ;
    Text [ english_us ] = "This is where you can edit the contour." ;
    Text[ portuguese ] = "Editing of a graph";
    Text[ russian ] = "Editing of a graph";
    Text[ greek ] = "Editing of a graph";
    Text[ dutch ] = "Editing of a graph";
    Text[ french ] = "dition du contour";
    Text[ spanish ] = "Aqu puede editar el contorno.";
    Text[ finnish ] = "Editing of a graph";
    Text[ italian ] = "Modifica contorno";
    Text[ danish ] = "Editing of a graph";
    Text[ swedish ] = "Hr kan du redigera konturen.";
    Text[ polish ] = "Editing of a graph";
    Text[ portuguese_brazilian ] = "Editing of a graph";
    Text[ japanese ] = "ここで輪郭の編集ができます。";
    Text[ korean ] = "여기에서 윤곽을 편집할 수 있습니다.";
    Text[ chinese_simplified ] = "在此您能够编辑轮廓。";
    Text[ chinese_traditional ] = "在此您能夠編輯輪廓。";
    Text[ turkish ] = "Editing of a graph";
    Text[ arabic ] = "Editing of a graph";
    Text[ catalan ] = "Editing of a graph";
    Text[ thai ] = "Editing of a graph";
};

String RID_SVXSTR_A11Y_PARAGRAPH_DESCRIPTION
{
    Text = "Absatz: $(ARG) " ;
    Text [ english ] = "Paragraph: $(ARG) " ;
    Text [ english_us ] = "Paragraph: $(ARG) " ;
    Text[ portuguese ] = "Paragraph: $(ARG) ";
    Text[ russian ] = "Paragraph: $(ARG) ";
    Text[ greek ] = "Paragraph: $(ARG) ";
    Text[ dutch ] = "Paragraph: $(ARG) ";
    Text[ french ] = "Paragraphe : $(ARG) ";
    Text[ spanish ] = "Prrafo: $(ARG) ";
    Text[ finnish ] = "Paragraph: $(ARG) ";
    Text[ italian ] = "Paragrafo: $(ARG) ";
    Text[ danish ] = "Paragraph: $(ARG) ";
    Text[ swedish ] = "Stycke: $(ARG) ";
    Text[ polish ] = "Paragraph: $(ARG) ";
    Text[ portuguese_brazilian ] = "Paragraph: $(ARG) ";
    Text[ japanese ] = "段落: $(ARG) ";
    Text[ korean ] = "단락: $(ARG) ";
    Text[ chinese_simplified ] = "段落:$(ARG) ";
    Text[ chinese_traditional ] = "段落:$(ARG) ";
    Text[ turkish ] = "Paragraph: $(ARG) ";
    Text[ arabic ] = "Paragraph: $(ARG) ";
    Text[ catalan ] = "Paragraph: $(ARG) ";
    Text[ thai ] = "Paragraph: $(ARG) ";
};

String RID_SVXSTR_A11Y_PARAGRAPH_NAME
{
    Text = "Absatz $(ARG)" ;
    Text [ english ] = "Paragraph $(ARG)" ;
    Text [ english_us ] = "Paragraph $(ARG)" ;
    Text[ portuguese ] = "Paragraph $(ARG)";
    Text[ russian ] = "Paragraph $(ARG)";
    Text[ greek ] = "Paragraph $(ARG)";
    Text[ dutch ] = "Paragraph $(ARG)";
    Text[ french ] = "Paragraphe $(ARG)";
    Text[ spanish ] = "Prrafo $(ARG)";
    Text[ finnish ] = "Paragraph $(ARG)";
    Text[ italian ] = "Paragrafo $(ARG)";
    Text[ danish ] = "Paragraph $(ARG)";
    Text[ swedish ] = "Stycke $(ARG)";
    Text[ polish ] = "Paragraph $(ARG)";
    Text[ portuguese_brazilian ] = "Paragraph $(ARG)";
    Text[ japanese ] = "段落 $(ARG)";
    Text[ korean ] = "단락 $(ARG)";
    Text[ chinese_simplified ] = "段落 $(ARG)";
    Text[ chinese_traditional ] = "段落 $(ARG)";
    Text[ turkish ] = "Paragraph $(ARG)";
    Text[ arabic ] = "Paragraph $(ARG)";
    Text[ catalan ] = "Paragraph $(ARG)";
    Text[ thai ] = "Paragraph $(ARG)";
};

String RID_SVXSTR_A11Y_IMAGEBULLET_DESCRIPTION
{
    Text = "Grafisches Aufzhlungszeichen in Absatz: $(ARG)" ;
    Text [ english ] = "Image bullet in paragraph: $(ARG)" ;
    Text [ english_us ] = "Image bullet in paragraph: $(ARG)" ;
    Text[ portuguese ] = "Image bullet in paragraph: $(ARG)";
    Text[ russian ] = "Image bullet in paragraph: $(ARG)";
    Text[ greek ] = "Image bullet in paragraph: $(ARG)";
    Text[ dutch ] = "Image bullet in paragraph: $(ARG)";
    Text[ french ] = "Puce picto dans le paragraphe : $(ARG)";
    Text[ spanish ] = "Imagen vieta en prrafo: $(ARG)";
    Text[ finnish ] = "Image bullet in paragraph: $(ARG)";
    Text[ italian ] = "Carattere per elenchi puntati nel paragrafo: $(ARG)";
    Text[ danish ] = "Image bullet in paragraph: $(ARG)";
    Text[ swedish ] = "Grafiskt punktuppstllningstecken i stycke: $(ARG)";
    Text[ polish ] = "Image bullet in paragraph: $(ARG)";
    Text[ portuguese_brazilian ] = "Image bullet in paragraph: $(ARG)";
    Text[ japanese ] = "段落の箇条書きシンボル: $(ARG)";
    Text[ korean ] = "단락 내 글머리기호 이미지: $(ARG)";
    Text[ chinese_simplified ] = "段落之中的图形式项目符号:$(ARG)";
    Text[ chinese_traditional ] = "段落之中的圖形項目符號:$(ARG)";
    Text[ turkish ] = "Image bullet in paragraph: $(ARG)";
    Text[ arabic ] = "Image bullet in paragraph: $(ARG)";
    Text[ catalan ] = "Image bullet in paragraph: $(ARG)";
    Text[ thai ] = "Image bullet in paragraph: $(ARG)";
};

String RID_SVXSTR_A11Y_IMAGEBULLET_NAME
{
    Text = "Grafisches Aufzhlungszeichen" ;
    Text [ english ] = "Image bullet" ;
    Text [ english_us ] = "Image bullet" ;
    Text[ portuguese ] = "Image bullet";
    Text[ russian ] = "Image bullet";
    Text[ greek ] = "Image bullet";
    Text[ dutch ] = "Image bullet";
    Text[ french ] = "Puce picto";
    Text[ spanish ] = "Imagen vieta";
    Text[ finnish ] = "Image bullet";
    Text[ italian ] = "Carattere per elenchi puntati";
    Text[ danish ] = "Image bullet";
    Text[ swedish ] = "Grafiskt punktuppstllningstecken";
    Text[ polish ] = "Image bullet";
    Text[ portuguese_brazilian ] = "Image bullet";
    Text[ japanese ] = "箇条書きシンボル";
    Text[ korean ] = "글머리기호 이미지";
    Text[ chinese_simplified ] = "图形式的项目符号";
    Text[ chinese_traditional ] = "圖形式的項目符號";
    Text[ turkish ] = "Image bullet";
    Text[ arabic ] = "Image bullet";
    Text[ catalan ] = "Image bullet";
    Text[ thai ] = "Image bullet";
};

String RID_SVXSTR_CHARACTER_SELECTION
{
    Text = "Sonderzeichenauswahl" ;
    Text [ ENGLISH ] = "Special character selection" ;
    Text[ english_us ] = "Special character selection";
    Text[ portuguese ] = "Special character selection";
    Text[ russian ] = "Special character selection";
    Text[ greek ] = "Special character selection";
    Text[ dutch ] = "Special character selection";
    Text[ french ] = "Slection de caractre spcial";
    Text[ spanish ] = "Seleccin de smbolos";
    Text[ finnish ] = "Special character selection";
    Text[ italian ] = "Selezione carattere speciale";
    Text[ danish ] = "Special character selection";
    Text[ swedish ] = "Urval av specialtecken";
    Text[ polish ] = "Special character selection";
    Text[ portuguese_brazilian ] = "Special character selection";
    Text[ japanese ] = "記号と特殊文字の選択";
    Text[ korean ] = "특수 문자 선택";
    Text[ chinese_simplified ] = "选择特殊字符";
    Text[ chinese_traditional ] = "選擇特殊字元";
    Text[ turkish ] = "Special character selection";
    Text[ arabic ] = "Special character selection";
    Text[ catalan ] = "Special character selection";
    Text[ thai ] = "Special character selection";
};

String RID_SVXSTR_CHAR_SEL_DESC
{
    Text = "Whlen Sie Sonderzeichen in diesem Bereich aus." ;
    Text [ ENGLISH ] = "Select special characters in this area." ;
    Text[ english_us ] = "Select special characters in this area.";
    Text[ portuguese ] = "Select special characters in this area.";
    Text[ russian ] = "Select special characters in this area.";
    Text[ greek ] = "Select special characters in this area.";
    Text[ dutch ] = "Select special characters in this area.";
    Text[ french ] = "Zone de slection des caractres spciaux";
    Text[ spanish ] = "rea de seleccin de smbolos.";
    Text[ finnish ] = "Select special characters in this area.";
    Text[ italian ] = "Selezionate il carattere speciale in questa sezione";
    Text[ danish ] = "Select special characters in this area.";
    Text[ swedish ] = "Vlj ut specialtecken i det hr omrdet.";
    Text[ polish ] = "Select special characters in this area.";
    Text[ portuguese_brazilian ] = "Select special characters in this area.";
    Text[ japanese ] = "この範囲で記号と特殊文字を選択します。";
    Text[ korean ] = "이 영역에서 특수 문자를 선택하십시오.";
    Text[ chinese_simplified ] = "在这个区域内选择特殊字符。";
    Text[ chinese_traditional ] = "在這個區域選擇特殊字元。";
    Text[ turkish ] = "Select special characters in this area.";
    Text[ arabic ] = "Select special characters in this area.";
    Text[ catalan ] = "Select special characters in this area.";
    Text[ thai ] = "Select special characters in this area.";
};

String RID_SVXSTR_CHARACTER_CODE
{
    // The space behind is a must.
    Text = "Zeichen-Code " ;
    Text [ ENGLISH ] = "Character code " ;
    Text[ english_us ] = "Character code ";
    Text[ portuguese ] = "Character code ";
    Text[ russian ] = "Character code ";
    Text[ greek ] = "Character code ";
    Text[ dutch ] = "Character code ";
    Text[ french ] = "Code de caractre ";
    Text[ spanish ] = "Cdigo de carcter";
    Text[ finnish ] = "Character code ";
    Text[ italian ] = "Codice carattere ";
    Text[ danish ] = "Character code ";
    Text[ swedish ] = "Teckenkod ";
    Text[ polish ] = "Character code ";
    Text[ portuguese_brazilian ] = "Character code ";
    Text[ japanese ] = "文字コード";
    Text[ korean ] = "문자 코드";
    Text[ chinese_simplified ] = "字符码";
    Text[ chinese_traditional ] = "字元碼";
    Text[ turkish ] = "Character code ";
    Text[ arabic ] = "Character code ";
    Text[ catalan ] = "Character code ";
    Text[ thai ] = "Character code ";
};