1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
|
/*************************************************************************
*
* $RCSfile: accessibility.src,v $
*
* $Revision: 1.29 $
*
* last change: $Author: vg $ $Date: 2003-12-17 13:56:23 $
*
* 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 ] = " 3 ";
Text[ dutch ] = "3D-materiaalkleur";
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-materiale farve";
Text[ swedish ] = "3D-materialfrg";
Text[ polish ] = "3D material color";
Text[ portuguese_brazilian ] = "Cor do material 3D";
Text[ japanese ] = "3D マテリアルカラー";
Text[ korean ] = "3D 재료 색상";
Text[ chinese_simplified ] = "3 维材料颜色";
Text[ chinese_traditional ] = "3D 材料顔色";
Text[ turkish ] = "3D materyal rengi";
Text[ arabic ] = "3D material color";
Text[ catalan ] = "3D material color";
Text[ thai ] = "3D material color";
Text[ czech ] = "Barva 3D materiálu";
Text[ hebrew ] = "צבע חומר תלת מימדי";
Text[ hindi ] = "3D material color";
Text[ slovak ] = "3D farba materiálu";
Text[ hungarian ] = "Térbeli anyag színe";
Text[ slovenian ] = "Barva 3D materiala";
};
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[ dutch ] = "Tekstkleur";
Text[ french ] = "Couleur de police";
Text[ spanish ] = "Color de fuente";
Text[ finnish ] = "text color";
Text[ italian ] = "Colore carattere";
Text[ danish ] = "Skriftfarve";
Text[ swedish ] = "Teckenfrg";
Text[ polish ] = "text color";
Text[ portuguese_brazilian ] = "Cor da Fonte";
Text[ japanese ] = "フォントの色";
Text[ korean ] = "글꼴 색상";
Text[ chinese_simplified ] = "文字颜色";
Text[ chinese_traditional ] = "字型顏色";
Text[ turkish ] = "Yaztipi rengi";
Text[ arabic ] = "text color";
Text[ catalan ] = "Color del text";
Text[ thai ] = "สีข้อความ";
Text[ czech ] = "Barva textu";
Text[ hebrew ] = "צבע גופן";
Text[ hindi ] = "टेक्स्ट् का रंग";
Text[ slovak ] = "Farba písma";
Text[ hungarian ] = "Betűszín";
Text[ slovenian ] = "Barva pisave";
};
String RID_SVXSTR_A11Y_BACKGROUND_COLOR
{
Text = "Hintergrundfarbe" ;
Text[ ENGLISH ] = "Background color" ;
Text[ ENGLISH_US ] = "Background color" ;
Text[ portuguese ] = "Cor de fundo";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Achtergrondkleur";
Text[ french ] = "Couleur d'arrire-plan";
Text[ spanish ] = "Color de fondo";
Text[ finnish ] = "Taustavri";
Text[ italian ] = "Colore di sfondo";
Text[ danish ] = "Baggrundsfarve";
Text[ swedish ] = "Bakgrundsfrg";
Text[ polish ] = "Kolor ta";
Text[ portuguese_brazilian ] = "Cor do plano de fundo";
Text[ japanese ] = "背景色";
Text[ korean ] = "배경 색상";
Text[ chinese_simplified ] = "背景颜色";
Text[ chinese_traditional ] = "背景顔色";
Text[ turkish ] = "Arkaplan rengi";
Text[ arabic ] = " ";
Text[ catalan ] = "Color de fons";
Text[ thai ] = "สีพื้นหลัง";
Text[ czech ] = "Barva pozadí";
Text[ hebrew ] = "צבע רקע";
Text[ hindi ] = "पृष्ठभाग का रंग";
Text[ slovak ] = "Farba pozadia";
Text[ hungarian ] = "Háttérszín";
Text[ slovenian ] = "Barva ozadja";
};
String RID_SVXSTR_A11Y_FILLSTYLE_NONE
{
Text = "Keiner" ;
Text[ ENGLISH ] = "None" ;
Text[ ENGLISH_US ] = "None" ;
Text[ portuguese ] = "Nenhum";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Geen";
Text[ french ] = "Aucun(e)";
Text[ spanish ] = "Ninguno";
Text[ finnish ] = "Ei mitn";
Text[ italian ] = "Nessuno";
Text[ danish ] = "Ingen";
Text[ swedish ] = "Ingen";
Text[ polish ] = "Brak";
Text[ portuguese_brazilian ] = "Nenhum";
Text[ japanese ] = "なし";
Text[ korean ] = "없음";
Text[ chinese_simplified ] = "无";
Text[ chinese_traditional ] = "無";
Text[ turkish ] = "Hibiri";
Text[ arabic ] = "";
Text[ catalan ] = "Cap";
Text[ thai ] = "ไม่มี";
Text[ czech ] = "Nic";
Text[ hebrew ] = "ללא";
Text[ hindi ] = "कोई नहीं";
Text[ slovak ] = "Žiadne";
Text[ hungarian ] = "Nincs";
Text[ slovenian ] = "Brez";
};
String RID_SVXSTR_A11Y_FILLSTYLE_SOLID
{
Text = "Ausgefllt" ;
Text[ ENGLISH ] = "Solid" ;
Text[ ENGLISH_US ] = "Solid" ;
Text[ portuguese ] = "Cheio";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Vol";
Text[ french ] = "Plein";
Text[ spanish ] = "Relleno";
Text[ finnish ] = "Tasainen";
Text[ italian ] = "Riempito";
Text[ danish ] = "Massiv";
Text[ swedish ] = "Ifyllt";
Text[ polish ] = "Peny";
Text[ portuguese_brazilian ] = "Slido";
Text[ japanese ] = "ぎっしりと詰まった";
Text[ korean ] = "채움";
Text[ chinese_simplified ] = "填满的";
Text[ chinese_traditional ] = "填滿的";
Text[ turkish ] = "Kesiksiz";
Text[ arabic ] = "";
Text[ catalan ] = "Slid";
Text[ thai ] = "ทึบ";
Text[ czech ] = "Pevná";
Text[ hebrew ] = "חלק";
Text[ hindi ] = "ठोस";
Text[ slovak ] = "Plné";
Text[ hungarian ] = "Tömör";
Text[ slovenian ] = "Polno";
};
String RID_SVXSTR_A11Y_FILLSTYLE_HATCH
{
Text = "Schraffiert" ;
Text[ ENGLISH ] = "Hatching" ;
Text[ ENGLISH_US ] = "With hatching" ;
Text[ portuguese ] = "hatch";
Text[ russian ] = "hatch";
Text[ greek ] = " ";
Text[ dutch ] = "Gearceerd";
Text[ french ] = "Hachur";
Text[ spanish ] = "Con trama";
Text[ finnish ] = "hatch";
Text[ italian ] = "Tratteggiato";
Text[ danish ] = "Med skravering";
Text[ swedish ] = "Skrafferat";
Text[ polish ] = "hatch";
Text[ portuguese_brazilian ] = "Hachurado";
Text[ japanese ] = "ハッチング";
Text[ korean ] = "해칭";
Text[ chinese_simplified ] = "阴影线的";
Text[ chinese_traditional ] = "陰影線的";
Text[ turkish ] = "Tarayarak";
Text[ arabic ] = "hatch";
Text[ catalan ] = "With hatching";
Text[ thai ] = "With hatching";
Text[ czech ] = "Se šrafováním";
Text[ hebrew ] = "מקווקו";
Text[ hindi ] = "With hatching";
Text[ slovak ] = "So šrafovaním";
Text[ hungarian ] = "Vonalkázott";
Text[ slovenian ] = "S šrafiranjem";
};
String RID_SVXSTR_A11Y_FILLSTYLE_GRADIENT
{
Text = "Verlauf" ;
Text[ ENGLISH ] = "Gradient" ;
Text[ ENGLISH_US ] = "Gradient" ;
Text[ portuguese ] = "~Gradao";
Text[ russian ] = "";
Text[ greek ] = "~. ";
Text[ dutch ] = "~Verloop";
Text[ french ] = "Dgrad";
Text[ spanish ] = "Gradiente";
Text[ finnish ] = "Liukuvrjys";
Text[ italian ] = "Sfumatura";
Text[ danish ] = "Farvegraduering";
Text[ swedish ] = "Gradient";
Text[ polish ] = "~Gradient";
Text[ portuguese_brazilian ] = "Gradiente";
Text[ japanese ] = "グラデーション";
Text[ korean ] = "그라디언트";
Text[ chinese_simplified ] = "透明图案";
Text[ chinese_traditional ] = "透明圖案";
Text[ turkish ] = "Deiim ls";
Text[ arabic ] = " ";
Text[ catalan ] = "~Gradient transparncia";
Text[ thai ] = "ไล่ระดับสี";
Text[ language_user1 ] = "; Corr; Correct German is \"Verlauf\"";
Text[ czech ] = "Přechod";
Text[ hebrew ] = "שיפוע";
Text[ hindi ] = "ग्रेडिऐन्ट्";
Text[ slovak ] = "Prechod";
Text[ hungarian ] = "Színátmenet";
Text[ slovenian ] = "Preliv";
};
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 ] = "Mapa de bits";
Text[ finnish ] = "Bittikartta";
Text[ italian ] = "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 ] = "Bitmap";
Text[ arabic ] = " ";
Text[ catalan ] = "Mapa de bits";
Text[ thai ] = "บิทแมป";
Text[ language_user1 ] = "; Corr; Correct German is \"Bitmap\"";
Text[ czech ] = "Rastr";
Text[ hebrew ] = "מפת סיביות";
Text[ hindi ] = "बिटमॉप्";
Text[ slovak ] = "Bitová mapa";
Text[ hungarian ] = "Bitkép";
Text[ slovenian ] = "Bitna slika";
};
String RID_SVXSTR_A11Y_WITH
{
Text = "mit" ;
Text[ ENGLISH ] = "with" ;
Text[ ENGLISH_US ] = "with" ;
Text[ portuguese ] = "with";
Text[ russian ] = "with";
Text[ greek ] = "";
Text[ dutch ] = "met";
Text[ french ] = "avec";
Text[ spanish ] = "con";
Text[ finnish ] = "with";
Text[ italian ] = "con";
Text[ danish ] = "med";
Text[ swedish ] = "med";
Text[ polish ] = "with";
Text[ portuguese_brazilian ] = "com";
Text[ japanese ] = "対象";
Text[ korean ] = "설정 대상";
Text[ chinese_simplified ] = "带";
Text[ chinese_traditional ] = "帶";
Text[ turkish ] = "ile";
Text[ arabic ] = "with";
Text[ catalan ] = "with";
Text[ thai ] = "with";
Text[ czech ] = "s";
Text[ hebrew ] = "עם";
Text[ hindi ] = "with";
Text[ slovak ] = "s";
Text[ hungarian ] = "és";
Text[ slovenian ] = "z";
};
String RID_SVXSTR_A11Y_STYLE
{
Text = "Stil" ;
Text[ ENGLISH ] = "style" ;
Text[ ENGLISH_US ] = "Style" ;
Text[ portuguese ] = "Estilo";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Opmaakprofiel";
Text[ french ] = "Style";
Text[ spanish ] = "Estilo";
Text[ finnish ] = "Tyyli";
Text[ italian ] = "Stile";
Text[ danish ] = "Typografi";
Text[ swedish ] = "Stil";
Text[ polish ] = "Szablon";
Text[ portuguese_brazilian ] = "ESTILO";
Text[ japanese ] = "スタイル";
Text[ korean ] = "스타일";
Text[ chinese_simplified ] = "风格";
Text[ chinese_traditional ] = "風格";
Text[ turkish ] = "Biem";
Text[ arabic ] = "";
Text[ catalan ] = "Estil";
Text[ thai ] = "ลักษณะ";
Text[ czech ] = "styl";
Text[ hebrew ] = "סגנון";
Text[ hindi ] = "शैली";
Text[ slovak ] = "Štýl";
Text[ hungarian ] = "Stílus";
Text[ slovenian ] = "Slog";
};
String RID_SVXSTR_A11Y_AND
{
Text = "und" ;
Text[ ENGLISH ] = "and" ;
Text[ ENGLISH_US ] = "and" ;
Text[ portuguese ] = "e";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "en";
Text[ french ] = "et";
Text[ spanish ] = "y";
Text[ finnish ] = "ja";
Text[ italian ] = "e";
Text[ danish ] = "og";
Text[ swedish ] = "och";
Text[ polish ] = "ORAZ";
Text[ portuguese_brazilian ] = "e";
Text[ japanese ] = "および";
Text[ korean ] = "와(과)";
Text[ chinese_simplified ] = "和";
Text[ chinese_traditional ] = "和";
Text[ turkish ] = "VE";
Text[ arabic ] = "";
Text[ catalan ] = "and";
Text[ thai ] = "และ";
Text[ czech ] = "a";
Text[ hebrew ] = "ו";
Text[ hindi ] = "and";
Text[ slovak ] = "a";
Text[ hungarian ] = "és";
Text[ slovenian ] = "in";
};
// 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 ] = " ";
Text[ dutch ] = "Hoekbesturing";
Text[ french ] = "lment de contrle de coin";
Text[ spanish ] = "Elemento de control - Esquinas";
Text[ finnish ] = "Corner control";
Text[ italian ] = "Controllo spigolo";
Text[ danish ] = "Hjrne-kontrol";
Text[ swedish ] = "Hrnkontrollelement";
Text[ polish ] = "Corner control";
Text[ portuguese_brazilian ] = "Elemento de controle de canto";
Text[ japanese ] = "コーナーコントロール";
Text[ korean ] = "모서리 컨트롤";
Text[ chinese_simplified ] = "角控制";
Text[ chinese_traditional ] = "角控制項";
Text[ turkish ] = "Ke kontrol";
Text[ arabic ] = "Corner control";
Text[ catalan ] = "Corner control";
Text[ thai ] = "Corner control";
Text[ czech ] = "Ovládání rohu";
Text[ hebrew ] = "בקרת פינות";
Text[ hindi ] = "Corner control";
Text[ slovak ] = "Ovládacie pole rohu";
Text[ hungarian ] = "Sarok beállítása";
Text[ slovenian ] = "Nadzor vogalov";
};
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 ] = " .";
Text[ dutch ] = "Selectie van een hoekpunt.";
Text[ french ] = "Slection 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 ] = "Valg af hjrnepunkt.";
Text[ swedish ] = "Urval av en hrnpunkt.";
Text[ polish ] = "Selection of a corner point.";
Text[ portuguese_brazilian ] = "Seleo de um ponto de canto.";
Text[ japanese ] = "隅を選択。";
Text[ korean ] = "모서리점 선택";
Text[ chinese_simplified ] = "选择一个角点。";
Text[ chinese_traditional ] = "選擇一個角點。";
Text[ turkish ] = "Bir ke noktann seimi.";
Text[ arabic ] = "Selection of a corner point.";
Text[ catalan ] = "Selection of a corner point.";
Text[ thai ] = "Selection of a corner point.";
Text[ czech ] = "Výběr bodu v rohu.";
Text[ hebrew ] = "בחירת נקודת פינה";
Text[ hindi ] = "Selection of a corner point.";
Text[ slovak ] = "Výber rohového bodu.";
Text[ hungarian ] = "Sarokpont kiválasztása.";
Text[ slovenian ] = "Izbor vogalne točke.";
};
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 ] = "Hoekbesturing";
Text[ french ] = "lment de contrle d'angle";
Text[ spanish ] = "Elemento de control - ngulo";
Text[ finnish ] = "Angle control";
Text[ italian ] = "Controllo angolo";
Text[ danish ] = "Vinkel-kontrol";
Text[ swedish ] = "Vinkelkontrollelement";
Text[ polish ] = "Angle control";
Text[ portuguese_brazilian ] = "Elemento de controle de ngulo";
Text[ japanese ] = "アングルコントロール";
Text[ korean ] = "각도 컨트롤";
Text[ chinese_simplified ] = "角度控制";
Text[ chinese_traditional ] = "角度控制項";
Text[ turkish ] = "A kontrol";
Text[ arabic ] = "Angle control";
Text[ catalan ] = "Angle control";
Text[ thai ] = "Angle control";
Text[ czech ] = "Ovládání úhlu";
Text[ hebrew ] = "בקרת זווית";
Text[ hindi ] = "Angle control";
Text[ slovak ] = "Ovládacie pole uhla";
Text[ hungarian ] = "Szög beállítása";
Text[ slovenian ] = "Nadzor kotov";
};
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 ] = "Selectie van een grotere hoek";
Text[ french ] = "Slection 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 ] = "Valg af en strre vinkel.";
Text[ swedish ] = "Markering av en (huvud)vinkel.";
Text[ polish ] = "Selection of a major angle";
Text[ portuguese_brazilian ] = "Seleo de um ngulo principal";
Text[ japanese ] = "メインの角を選択";
Text[ korean ] = "중심각 선택";
Text[ chinese_simplified ] = "选择一个主角度。";
Text[ chinese_traditional ] = "選擇一個主角度。";
Text[ turkish ] = "Byk bir a seimi";
Text[ arabic ] = "Selection of a major angle";
Text[ catalan ] = "Selection of a major angle.";
Text[ thai ] = "Selection of a major angle.";
Text[ czech ] = "Výběr hlavního úhlu.";
Text[ hebrew ] = "בחירת זווית עיקרית.";
Text[ hindi ] = "Selection of a major angle.";
Text[ slovak ] = "Výber hlavného uhla.";
Text[ hungarian ] = "Szög kiválasztása";
Text[ slovenian ] = "Izbor večjega kota.";
};
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 ] = " ";
Text[ dutch ] = "Boven links";
Text[ french ] = "En haut gauche";
Text[ spanish ] = "Arriba a la izquierda";
Text[ finnish ] = "Top left";
Text[ italian ] = "A sinistra/in alto";
Text[ danish ] = "verst til venstre";
Text[ swedish ] = "Uppe till vnster";
Text[ polish ] = "Top left";
Text[ portuguese_brazilian ] = "Em cima esquerda";
Text[ japanese ] = "左上方";
Text[ korean ] = "왼쪽 위";
Text[ chinese_simplified ] = "左上";
Text[ chinese_traditional ] = "左上";
Text[ turkish ] = "st sol";
Text[ arabic ] = "Top left";
Text[ catalan ] = "Top left";
Text[ thai ] = "Top left";
Text[ czech ] = "Nahoře vlevo";
Text[ hebrew ] = "עליון שמאלי";
Text[ hindi ] = "Top left";
Text[ slovak ] = "Nahor doľava";
Text[ hungarian ] = "Bal felső";
Text[ slovenian ] = "Zgoraj levo";
};
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 ] = " ";
Text[ dutch ] = "Boven midden";
Text[ french ] = "En haut au milieu";
Text[ spanish ] = "Centrado arriba";
Text[ finnish ] = "Top middle";
Text[ italian ] = "Al centro/in alto";
Text[ danish ] = "verst i midten";
Text[ swedish ] = "Uppe i mitten";
Text[ polish ] = "Top middle";
Text[ portuguese_brazilian ] = "Em cima no meio";
Text[ japanese ] = "中央上";
Text[ korean ] = "위 가운데";
Text[ chinese_simplified ] = "中上";
Text[ chinese_traditional ] = "中上";
Text[ turkish ] = "st orta";
Text[ arabic ] = "Top middle";
Text[ catalan ] = "Top middle";
Text[ thai ] = "Top middle";
Text[ czech ] = "Nahoře uprostřed";
Text[ hebrew ] = "עליון אמצעי";
Text[ hindi ] = "Top middle";
Text[ slovak ] = "Nahor do stredu";
Text[ hungarian ] = "Fent középen";
Text[ slovenian ] = "Zgoraj na sredini";
};
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 ] = " ";
Text[ dutch ] = "Boven rechts";
Text[ french ] = "En haut droite";
Text[ spanish ] = "Arriba a la derecha";
Text[ finnish ] = "Top right";
Text[ italian ] = "A destra/in alto";
Text[ danish ] = "verst til hjre";
Text[ swedish ] = "Uppe till hger";
Text[ polish ] = "Top right";
Text[ portuguese_brazilian ] = "Em cima direita";
Text[ japanese ] = "右上方";
Text[ korean ] = "오른쪽 위";
Text[ chinese_simplified ] = "右上";
Text[ chinese_traditional ] = "右上";
Text[ turkish ] = "st sa";
Text[ arabic ] = "Top right";
Text[ catalan ] = "Top right";
Text[ thai ] = "Top right";
Text[ czech ] = "Nahoře vpravo";
Text[ hebrew ] = "עליון ימני";
Text[ hindi ] = "Top right";
Text[ slovak ] = "Nahor doprava";
Text[ hungarian ] = "Jobb felső";
Text[ slovenian ] = "Zgoraj desno";
};
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 ] = " ";
Text[ dutch ] = "Linksmidden";
Text[ french ] = "Au centre gauche";
Text[ spanish ] = "Centrado a la izquierda";
Text[ finnish ] = "Left center";
Text[ italian ] = "In centro a sinistra";
Text[ danish ] = "Venstre midte";
Text[ swedish ] = "Till vnster i mitten";
Text[ polish ] = "Left center";
Text[ portuguese_brazilian ] = "No centro esquerda";
Text[ japanese ] = "左中央";
Text[ korean ] = "왼쪽 중간";
Text[ chinese_simplified ] = "左中";
Text[ chinese_traditional ] = "左中";
Text[ turkish ] = "Sol merkez";
Text[ arabic ] = "Left center";
Text[ catalan ] = "Left center";
Text[ thai ] = "Left center";
Text[ czech ] = "Vlevo uprostřed";
Text[ hebrew ] = "מרכז שמאלי";
Text[ hindi ] = "Left center";
Text[ slovak ] = "Zarovnať vľavo";
Text[ hungarian ] = "Bal közép";
Text[ slovenian ] = "Levo na sredini";
};
String RID_SVXSTR_RECTCTL_ACC_CHLD_MM
{
Text = "Mitte" ;
Text [ english_us ] = "Center" ;
Text[ portuguese ] = "Centro";
Text[ russian ] = " ";
Text[ greek ] = "";
Text[ dutch ] = "Midden";
Text[ french ] = "Centre";
Text[ spanish ] = "Centrado";
Text[ finnish ] = "Keskell";
Text[ italian ] = "Centro";
Text[ danish ] = "Midte";
Text[ swedish ] = "Mitten";
Text[ polish ] = "Porodku";
Text[ portuguese_brazilian ] = "No centro";
Text[ japanese ] = "中央";
Text[ korean ] = "가운데";
Text[ chinese_simplified ] = "中";
Text[ chinese_traditional ] = "中";
Text[ turkish ] = "Merkez";
Text[ arabic ] = "";
Text[ catalan ] = "Mig";
Text[ thai ] = "กลาง";
Text[ czech ] = "Uprostřed";
Text[ hebrew ] = "מרכז";
Text[ hindi ] = "Center";
Text[ slovak ] = "Zarovnať";
Text[ hungarian ] = "Középen";
Text[ slovenian ] = "Sredina";
};
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 ] = " ";
Text[ dutch ] = "Rechtsmidden";
Text[ french ] = "Au centre droite";
Text[ spanish ] = "Centrado a la derecha";
Text[ finnish ] = "Right center";
Text[ italian ] = "In centro a destra";
Text[ danish ] = "Hjre midte";
Text[ swedish ] = "Till hger i mitten";
Text[ polish ] = "Right center";
Text[ portuguese_brazilian ] = "No centro direita";
Text[ japanese ] = "右中央";
Text[ korean ] = "오른쪽 중간";
Text[ chinese_simplified ] = "右中";
Text[ chinese_traditional ] = "右中";
Text[ turkish ] = "Sa orta";
Text[ arabic ] = "Right center";
Text[ catalan ] = "Right center";
Text[ thai ] = "Right center";
Text[ czech ] = "Vpravo uprostřed";
Text[ hebrew ] = "מרכז ימני";
Text[ hindi ] = "Right center";
Text[ slovak ] = "Zarovnať vpravo";
Text[ hungarian ] = "Jobb közép";
Text[ slovenian ] = "Desno na sredini";
};
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 ] = " ";
Text[ dutch ] = "Onder links";
Text[ french ] = "En bas gauche";
Text[ spanish ] = "Abajo a la izquierda";
Text[ finnish ] = "Bottom left";
Text[ italian ] = "A sinistra/in basso";
Text[ danish ] = "Nederst til venstre";
Text[ swedish ] = "Nere till vnster";
Text[ polish ] = "Bottom left";
Text[ portuguese_brazilian ] = "Em baixo esquerda";
Text[ japanese ] = "左下方";
Text[ korean ] = "왼쪽 아래";
Text[ chinese_simplified ] = "左下";
Text[ chinese_traditional ] = "左下";
Text[ turkish ] = "Alt sol";
Text[ arabic ] = "Bottom left";
Text[ catalan ] = "Bottom left";
Text[ thai ] = "Bottom left";
Text[ czech ] = "Dole vlevo";
Text[ hebrew ] = "תחתון שמאלי";
Text[ hindi ] = "Bottom left";
Text[ slovak ] = "Doľava dole";
Text[ hungarian ] = "Bal alsó";
Text[ slovenian ] = "Spodaj levo";
};
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 ] = " ";
Text[ dutch ] = "Onder midden";
Text[ french ] = "En bas au milieu";
Text[ spanish ] = "Centrado abajo";
Text[ finnish ] = "Bottom middle";
Text[ italian ] = "In centro in basso";
Text[ danish ] = "Nederst i midten";
Text[ swedish ] = "Nere i mitten";
Text[ polish ] = "Bottom middle";
Text[ portuguese_brazilian ] = "Em baixo no meio";
Text[ japanese ] = "中央下";
Text[ korean ] = "아래 가운데";
Text[ chinese_simplified ] = "中下";
Text[ chinese_traditional ] = "中下";
Text[ turkish ] = "Alt orta";
Text[ arabic ] = "Bottom middle";
Text[ catalan ] = "Bottom middle";
Text[ thai ] = "Bottom middle";
Text[ czech ] = "Dole uprostřed";
Text[ hebrew ] = "תחתון אמצעי";
Text[ hindi ] = "Bottom middle";
Text[ slovak ] = "Dole do stredu";
Text[ hungarian ] = "Lent középen";
Text[ slovenian ] = "Spodaj na sredini";
};
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 ] = " ";
Text[ dutch ] = "Onder rechts";
Text[ french ] = "En bas droite";
Text[ spanish ] = "Abajo a la derecha";
Text[ finnish ] = "Bottom right";
Text[ italian ] = "A destra/in basso";
Text[ danish ] = "Nederst til hjre";
Text[ swedish ] = "Nere till hger";
Text[ polish ] = "Bottom right";
Text[ portuguese_brazilian ] = "Em baixo direita";
Text[ japanese ] = "右下方";
Text[ korean ] = "오른쪽 아래";
Text[ chinese_simplified ] = "右下";
Text[ chinese_traditional ] = "右下";
Text[ turkish ] = "Alt sa";
Text[ arabic ] = "Bottom right";
Text[ catalan ] = "Bottom right";
Text[ thai ] = "Bottom right";
Text[ czech ] = "Dole vpravo";
Text[ hebrew ] = "תחתון ימני";
Text[ hindi ] = "Bottom right";
Text[ slovak ] = "Vpravo dole";
Text[ hungarian ] = "Jobb alsó";
Text[ slovenian ] = "Spodaj desno";
};
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 ";
Text[ dutch ] = "0 graden";
Text[ french ] = "0 degr";
Text[ spanish ] = "0 grados";
Text[ finnish ] = "0 degrees";
Text[ italian ] = "0 gradi";
Text[ danish ] = "0 grader";
Text[ swedish ] = "0 grader";
Text[ polish ] = "0 degrees";
Text[ portuguese_brazilian ] = "0 graus";
Text[ japanese ] = "0 度";
Text[ korean ] = "0 도";
Text[ chinese_simplified ] = "0 度";
Text[ chinese_traditional ] = "0 度";
Text[ turkish ] = "0 derece";
Text[ arabic ] = "0 degrees";
Text[ catalan ] = "0 degrees";
Text[ thai ] = "0 degrees";
Text[ czech ] = "0 stupňů";
Text[ hebrew ] = "0 מעלות";
Text[ hindi ] = "0 degrees";
Text[ slovak ] = "0 stupňov";
Text[ hungarian ] = "0 fok";
Text[ slovenian ] = "0 stopinj";
};
String RID_SVXSTR_RECTCTL_ACC_CHLD_A045
{
Text = "45 Grad" ;
Text [ english_us ] = "45 degrees" ;
Text[ portuguese ] = "45 graus";
Text[ russian ] = "45 ";
Text[ greek ] = "45 ";
Text[ dutch ] = "45 graden";
Text[ french ] = "45 degrs";
Text[ spanish ] = "45 grados";
Text[ finnish ] = "45 astetta";
Text[ italian ] = "45 gradi";
Text[ danish ] = "45 grader";
Text[ swedish ] = "45 grader";
Text[ polish ] = "45 stopni";
Text[ portuguese_brazilian ] = "45 graus";
Text[ japanese ] = "45 度";
Text[ korean ] = "45 도";
Text[ chinese_simplified ] = "45 度";
Text[ chinese_traditional ] = "45 度";
Text[ turkish ] = "45 Derece";
Text[ arabic ] = "45 ";
Text[ catalan ] = "45 degrees";
Text[ thai ] = "45 องศา";
Text[ czech ] = "45 stupňů";
Text[ hebrew ] = "45 מעלות";
Text[ hindi ] = "45 degrees";
Text[ slovak ] = "45 stupňov";
Text[ hungarian ] = "45 fok";
Text[ slovenian ] = "45 stopinj";
};
String RID_SVXSTR_RECTCTL_ACC_CHLD_A090
{
Text = "90 Grad" ;
Text [ english_us ] = "90 degrees" ;
Text[ portuguese ] = "90 graus";
Text[ russian ] = "90 ";
Text[ greek ] = "90 ";
Text[ dutch ] = "90 graden";
Text[ french ] = "90 degrs";
Text[ spanish ] = "90 grados";
Text[ finnish ] = "90 astetta";
Text[ italian ] = "90 gradi";
Text[ danish ] = "90 grader";
Text[ swedish ] = "90 grader";
Text[ polish ] = "90 stopni";
Text[ portuguese_brazilian ] = "90 graus";
Text[ japanese ] = "90 度";
Text[ korean ] = "90 도";
Text[ chinese_simplified ] = "90 度";
Text[ chinese_traditional ] = "90 度";
Text[ turkish ] = "90 Derece";
Text[ arabic ] = "90 ";
Text[ catalan ] = "90 degrees";
Text[ thai ] = "90 องศา";
Text[ czech ] = "90 stupňů";
Text[ hebrew ] = "90 מעלות";
Text[ hindi ] = "90 degrees";
Text[ slovak ] = "90 stupňov";
Text[ hungarian ] = "90 fok";
Text[ slovenian ] = "90 stopinj";
};
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 ";
Text[ dutch ] = "135 graden";
Text[ french ] = "135 degrs";
Text[ spanish ] = "135 grados";
Text[ finnish ] = "135 degrees";
Text[ italian ] = "135 gradi";
Text[ danish ] = "135 grader";
Text[ swedish ] = "135 grader";
Text[ polish ] = "135 degrees";
Text[ portuguese_brazilian ] = "135 graus";
Text[ japanese ] = "135 度";
Text[ korean ] = "135 도";
Text[ chinese_simplified ] = "135 度";
Text[ chinese_traditional ] = "135 度";
Text[ turkish ] = "135 derece";
Text[ arabic ] = "135 degrees";
Text[ catalan ] = "135 degrees";
Text[ thai ] = "135 degrees";
Text[ czech ] = "135 stupňů";
Text[ hebrew ] = "135 מעלות";
Text[ hindi ] = "135 degrees";
Text[ slovak ] = "135 stupňov";
Text[ hungarian ] = "135 fok";
Text[ slovenian ] = "135 stopinj";
};
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 ";
Text[ dutch ] = "180 graden";
Text[ french ] = "180 degrs";
Text[ spanish ] = "180 grados";
Text[ finnish ] = "180 degrees";
Text[ italian ] = "180 gradi";
Text[ danish ] = "180 grader";
Text[ swedish ] = "180 grader";
Text[ polish ] = "180 degrees";
Text[ portuguese_brazilian ] = "180 graus";
Text[ japanese ] = "180 度";
Text[ korean ] = "180 도";
Text[ chinese_simplified ] = "180 度";
Text[ chinese_traditional ] = "180 度";
Text[ turkish ] = "180 derece";
Text[ arabic ] = "180 degrees";
Text[ catalan ] = "180 degrees";
Text[ thai ] = "180 degrees";
Text[ czech ] = "180 stupňů";
Text[ hebrew ] = "180 מעלות";
Text[ hindi ] = "180 degrees";
Text[ slovak ] = "180 stupňov";
Text[ hungarian ] = "180 fok";
Text[ slovenian ] = "180 stopinj";
};
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 ";
Text[ dutch ] = "225 graden";
Text[ french ] = "225 degrs";
Text[ spanish ] = "225 grados";
Text[ finnish ] = "225 degrees";
Text[ italian ] = "225 gradi";
Text[ danish ] = "225 grader";
Text[ swedish ] = "225 grader";
Text[ polish ] = "225 degrees";
Text[ portuguese_brazilian ] = "225 graus";
Text[ japanese ] = "225 度";
Text[ korean ] = "225 도";
Text[ chinese_simplified ] = "225 度";
Text[ chinese_traditional ] = "225 度";
Text[ turkish ] = "225 derece";
Text[ arabic ] = "225 degrees";
Text[ catalan ] = "225 degrees";
Text[ thai ] = "225 degrees";
Text[ czech ] = "225 stupňů";
Text[ hebrew ] = "225 מעלות";
Text[ hindi ] = "225 degrees";
Text[ slovak ] = "225 stupňov";
Text[ hungarian ] = "225 fok";
Text[ slovenian ] = "225 stopinj";
};
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 ";
Text[ dutch ] = "270 graden";
Text[ french ] = "270 degrs";
Text[ spanish ] = "270 grados";
Text[ finnish ] = "270 degrees";
Text[ italian ] = "270 gradi";
Text[ danish ] = "270 grader";
Text[ swedish ] = "270 grader";
Text[ polish ] = "270 degrees";
Text[ portuguese_brazilian ] = "270 graus";
Text[ japanese ] = "270 度";
Text[ korean ] = "270 도";
Text[ chinese_simplified ] = "270 度";
Text[ chinese_traditional ] = "270 度";
Text[ turkish ] = "270 derece";
Text[ arabic ] = "270 degrees";
Text[ catalan ] = "270 degrees";
Text[ thai ] = "270 degrees";
Text[ czech ] = "270 stupňů";
Text[ hebrew ] = "270 מעלות";
Text[ hindi ] = "270 degrees";
Text[ slovak ] = "270 stupňov";
Text[ hungarian ] = "270 fok";
Text[ slovenian ] = "270 stopinj";
};
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 ";
Text[ dutch ] = "315 graden";
Text[ french ] = "315 degrs";
Text[ spanish ] = "315 grados";
Text[ finnish ] = "315 degrees";
Text[ italian ] = "315 gradi";
Text[ danish ] = "315 grader";
Text[ swedish ] = "315 grader";
Text[ polish ] = "315 degrees";
Text[ portuguese_brazilian ] = "315 graus";
Text[ japanese ] = "315 度";
Text[ korean ] = "315 도";
Text[ chinese_simplified ] = "315 度";
Text[ chinese_traditional ] = "315 度";
Text[ turkish ] = "315 derece";
Text[ arabic ] = "315 degrees";
Text[ catalan ] = "315 degrees";
Text[ thai ] = "315 degrees";
Text[ czech ] = "315 stupňů";
Text[ hebrew ] = "315 מעלות";
Text[ hindi ] = "315 degrees";
Text[ slovak ] = "315 stupňov";
Text[ hungarian ] = "315 fok";
Text[ slovenian ] = "315 stopinj";
};
// 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 ] = "Contour control";
Text[ dutch ] = "Contourbesturing";
Text[ french ] = "lment de contrle du contour";
Text[ spanish ] = "Elemento de control del contorno";
Text[ finnish ] = "Graph control";
Text[ italian ] = "Controllo contorno";
Text[ danish ] = "Konturkontrol";
Text[ swedish ] = "Kontrollelement fr kontur";
Text[ polish ] = "Graph control";
Text[ portuguese_brazilian ] = "Elementos de controle de contornos";
Text[ japanese ] = "輪郭コントロール";
Text[ korean ] = "윤곽 컨트롤";
Text[ chinese_simplified ] = "轮廓控制";
Text[ chinese_traditional ] = "輪廓控製項";
Text[ turkish ] = "ekil Kontrol";
Text[ arabic ] = "Graph control";
Text[ catalan ] = "Contour control";
Text[ thai ] = "Contour control";
Text[ czech ] = "Ovládání obrysu";
Text[ hebrew ] = "בקרת מתאר";
Text[ hindi ] = "Contour control";
Text[ slovak ] = "Ovládacie pole obrysov";
Text[ hungarian ] = "Körvonal beállításai";
Text[ slovenian ] = "Nadzor obrisa";
};
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 ] = "Hier kunt u een contour bewerken.";
Text[ french ] = "dition du contour";
Text[ spanish ] = "Aqu puede editar el contorno.";
Text[ finnish ] = "Editing of a graph";
Text[ italian ] = "Modifica contorno";
Text[ danish ] = "Her kan du redigere konturen.";
Text[ swedish ] = "Hr kan du redigera konturen.";
Text[ polish ] = "Editing of a graph";
Text[ portuguese_brazilian ] = "Edio do contorno";
Text[ japanese ] = "ここで輪郭の編集ができます。";
Text[ korean ] = "여기에서 윤곽을 편집할 수 있습니다.";
Text[ chinese_simplified ] = "在此您能够编辑轮廓。";
Text[ chinese_traditional ] = "在此您能夠編輯輪廓。";
Text[ turkish ] = "Buradan ekli dzenleyebilirsiniz.";
Text[ arabic ] = "Editing of a graph";
Text[ catalan ] = "This is where you can edit the contour.";
Text[ thai ] = "This is where you can edit the contour.";
Text[ czech ] = "Zde můžete upravit obrys.";
Text[ hebrew ] = "כאן ניתן לערוך את המתאר.";
Text[ hindi ] = "This is where you can edit the contour.";
Text[ slovak ] = "Tu môžete upravovať obrysy.";
Text[ hungarian ] = "Itt szerkeszthető a körvonal.";
Text[ slovenian ] = "Tukaj uredite obris.";
};
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 ] = "Alinea: $(ARG) ";
Text[ french ] = "Paragraphe : $(ARG) ";
Text[ spanish ] = "Prrafo: $(ARG) ";
Text[ finnish ] = "Paragraph: $(ARG) ";
Text[ italian ] = "Paragrafo: $(ARG) ";
Text[ danish ] = "Afsnit: $(ARG) ";
Text[ swedish ] = "Stycke: $(ARG) ";
Text[ polish ] = "Paragraph: $(ARG) ";
Text[ portuguese_brazilian ] = "Pargrafo: $(ARG) ";
Text[ japanese ] = "段落: $(ARG) ";
Text[ korean ] = "단락: $(ARG) ";
Text[ chinese_simplified ] = "段落:$(ARG) ";
Text[ chinese_traditional ] = "段落:$(ARG) ";
Text[ turkish ] = "Paragraf: $(ARG)";
Text[ arabic ] = "Paragraph: $(ARG) ";
Text[ catalan ] = "Paragraph: $(ARG) ";
Text[ thai ] = "Paragraph: $(ARG) ";
Text[ czech ] = "Odstavec: $(ARG) ";
Text[ hebrew ] = "פיסקת: $(ARG)";
Text[ hindi ] = "Paragraph: $(ARG) ";
Text[ slovak ] = "Odstavec: $(ARG) ";
Text[ hungarian ] = "Bekezdés: $(ARG) ";
Text[ slovenian ] = "Odstavek: $(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 ] = "Alinea $(ARG)";
Text[ french ] = "Paragraphe $(ARG)";
Text[ spanish ] = "Prrafo $(ARG)";
Text[ finnish ] = "Paragraph $(ARG)";
Text[ italian ] = "Paragrafo $(ARG)";
Text[ danish ] = "Afsnit $(ARG)";
Text[ swedish ] = "Stycke $(ARG)";
Text[ polish ] = "Paragraph $(ARG)";
Text[ portuguese_brazilian ] = "Pargrafo: $(ARG) ";
Text[ japanese ] = "段落 $(ARG)";
Text[ korean ] = "단락 $(ARG)";
Text[ chinese_simplified ] = "段落 $(ARG)";
Text[ chinese_traditional ] = "段落 $(ARG)";
Text[ turkish ] = "Paragraf $(ARG)";
Text[ arabic ] = "Paragraph $(ARG)";
Text[ catalan ] = "Paragraph $(ARG)";
Text[ thai ] = "Paragraph $(ARG)";
Text[ czech ] = "Odstavec $(ARG)";
Text[ hebrew ] = "פיסקת: $(ARG)";
Text[ hindi ] = "Paragraph $(ARG)";
Text[ slovak ] = "Odstavec $(ARG)";
Text[ hungarian ] = "Bekezdés $(ARG)";
Text[ slovenian ] = "Odstavek $(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 ] = "Grafisch opsommingsteken in alinea: $(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 ] = "Billedepunkt i afsnit: $(ARG)";
Text[ swedish ] = "Grafiskt punktuppstllningstecken i stycke: $(ARG)";
Text[ polish ] = "Image bullet in paragraph: $(ARG)";
Text[ portuguese_brazilian ] = "Marca imagem no pargrafo: $(ARG)";
Text[ japanese ] = "段落の箇条書きシンボル: $(ARG)";
Text[ korean ] = "단락 내 글머리 기호 이미지: $(ARG)";
Text[ chinese_simplified ] = "段落之中的图形式项目符号:$(ARG)";
Text[ chinese_traditional ] = "段落之中的圖形項目符號:$(ARG)";
Text[ turkish ] = "Paragraftaki grnt ayrac: $(ARG)";
Text[ arabic ] = "Image bullet in paragraph: $(ARG)";
Text[ catalan ] = "Image bullet in paragraph: $(ARG)";
Text[ thai ] = "Image bullet in paragraph: $(ARG)";
Text[ czech ] = "Odrážka s obrázkem v odstavci: $(ARG)";
Text[ hebrew ] = "נקודת צלם בפיסקה: $(ARG)";
Text[ hindi ] = "Image bullet in paragraph: $(ARG)";
Text[ slovak ] = "Obrázok guľky v odstavci: $(ARG)";
Text[ hungarian ] = "Képes felsorolásjel ebben a bekezdésben: $(ARG)";
Text[ slovenian ] = "Grafična oznaka v odstavku: $(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 ] = "Grafisch opsommingsteken";
Text[ french ] = "Puce picto";
Text[ spanish ] = "Imagen vieta";
Text[ finnish ] = "Image bullet";
Text[ italian ] = "Carattere per elenchi puntati";
Text[ danish ] = "Billedepunkt";
Text[ swedish ] = "Grafiskt punktuppstllningstecken";
Text[ polish ] = "Image bullet";
Text[ portuguese_brazilian ] = "Marca imagem";
Text[ japanese ] = "箇条書きシンボル";
Text[ korean ] = "글머리 기호 이미지";
Text[ chinese_simplified ] = "图形式的项目符号";
Text[ chinese_traditional ] = "圖形式的項目符號";
Text[ turkish ] = "Grnt ayrac";
Text[ arabic ] = "Image bullet";
Text[ catalan ] = "Image bullet";
Text[ thai ] = "Image bullet";
Text[ czech ] = "Odrážka s obrázkem";
Text[ hebrew ] = "נקודת צלם";
Text[ hindi ] = "Image bullet";
Text[ slovak ] = "Obrázok guľky";
Text[ hungarian ] = "Képes felsorolásjel";
Text[ slovenian ] = "Grafična oznaka";
};
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 ] = " ";
Text[ dutch ] = "Selectie speciaal karakter";
Text[ french ] = "Slection de caractre spcial";
Text[ spanish ] = "Seleccin de smbolos";
Text[ finnish ] = "Special character selection";
Text[ italian ] = "Selezione carattere speciale";
Text[ danish ] = "Specialtegnsudvalg";
Text[ swedish ] = "Urval av specialtecken";
Text[ polish ] = "Special character selection";
Text[ portuguese_brazilian ] = "Seleo de caracter especial";
Text[ japanese ] = "記号と特殊文字の選択";
Text[ korean ] = "기호 및 특수 문자 선택";
Text[ chinese_simplified ] = "选择特殊字符";
Text[ chinese_traditional ] = "選擇特殊字元";
Text[ turkish ] = "zel karakter seimi";
Text[ arabic ] = "Special character selection";
Text[ catalan ] = "Special character selection";
Text[ thai ] = "Special character selection";
Text[ czech ] = "Výběr speciálního znaku";
Text[ hebrew ] = "בחירת תווים מיוחדים";
Text[ hindi ] = "Special character selection";
Text[ slovak ] = "Výber špeciálneho znaku";
Text[ hungarian ] = "Különleges karakter kiválasztása";
Text[ slovenian ] = "Izbor posebnega znaka";
};
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 ] = " .";
Text[ dutch ] = "Selecteer speciale karakters in dit gebied.";
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 ] = "Vlg specialtegn i dette omrde.";
Text[ swedish ] = "Vlj ut specialtecken i det hr omrdet.";
Text[ polish ] = "Select special characters in this area.";
Text[ portuguese_brazilian ] = "rea de seleo de caracteres";
Text[ japanese ] = "この範囲で記号と特殊文字を選択します。";
Text[ korean ] = "이 영역에서 기호 및 특수 문자를 선택하십시오.";
Text[ chinese_simplified ] = "在这个区域内选择特殊字符。";
Text[ chinese_traditional ] = "在這個區域選擇特殊字元。";
Text[ turkish ] = "Bu alan iinde zel karakterler se.";
Text[ arabic ] = "Select special characters in this area.";
Text[ catalan ] = "Select special characters in this area.";
Text[ thai ] = "Select special characters in this area.";
Text[ czech ] = "V této oblasti vyberte speciální znak.";
Text[ hebrew ] = "בחירת תוים מיוחדים לשטח זה.";
Text[ hindi ] = "Select special characters in this area.";
Text[ slovak ] = "Tu vyberte špeciálne znaky.";
Text[ hungarian ] = "Válasszon különleges karaktert ezen a területen";
Text[ slovenian ] = "V tem območju izberete posebne znake.";
};
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 ] = "Karaktercode ";
Text[ french ] = "Code de caractre ";
Text[ spanish ] = "Cdigo de carcter";
Text[ finnish ] = "Character code ";
Text[ italian ] = "Codice carattere ";
Text[ danish ] = "Tegnkode ";
Text[ swedish ] = "Teckenkod ";
Text[ polish ] = "Character code ";
Text[ portuguese_brazilian ] = "Cdigo do caracter";
Text[ japanese ] = "文字コード";
Text[ korean ] = "문자 코드";
Text[ chinese_simplified ] = "字符码";
Text[ chinese_traditional ] = "字元碼";
Text[ turkish ] = "Karakter kodu";
Text[ arabic ] = "Character code ";
Text[ catalan ] = "Character code ";
Text[ thai ] = "Character code ";
Text[ czech ] = "Kód znaku ";
Text[ hebrew ] = "קוד תו";
Text[ hindi ] = "Character code ";
Text[ slovak ] = "Kód znaku ";
Text[ hungarian ] = "Karakterkód";
Text[ slovenian ] = "Koda znaka ";
};
|