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
|
/*************************************************************************
*
* $RCSfile: srchxtra.src,v $
*
* $Revision: 1.46 $
*
* last change: $Author: vg $ $Date: 2003-12-17 14:14:31 $
*
* 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 ---------------------------------------------------------------
#include "helpid.hrc"
#include "dialogs.hrc"
#include "srchxtra.hrc"
// RID_SVXDLG_SEARCHFORMAT -----------------------------------------------
TabDialog RID_SVXDLG_SEARCHFORMAT
{
OutputSize = TRUE ;
SvLook = TRUE ;
Text = "Text-Attribute" ;
Text [ English ] = "Text-Attributes" ;
Text [ norwegian ] = "Tekst-Attributter" ;
Text [ italian ] = "Attributi di testo" ;
Text [ portuguese_brazilian ] = "Formato do Texto" ;
Text [ portuguese ] = "Atributos do texto" ;
Text [ finnish ] = "Tekstin muotoilu" ;
Text [ danish ] = "Tekstformat" ;
Text [ french ] = "Attributs de texte" ;
Text [ swedish ] = "Textattribut" ;
Text [ dutch ] = "Tekstattributen" ;
Text [ spanish ] = "Atributos de texto " ;
Text [ english_us ] = "Text Format" ;
Moveable = TRUE ;
TabControl 1
{
OutputSize = TRUE ;
PageList =
{
PageItem
{
Identifier = RID_SVXPAGE_CHAR_NAME ;
Text = "Schrift" ;
Text [ english_us ] = "Font" ;
Text[ portuguese ] = "Tipo de letra";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Lettertype";
Text[ french ] = "Police";
Text[ spanish ] = "Fuente";
Text[ italian ] = "Caratteri";
Text[ danish ] = "Skrifttype";
Text[ swedish ] = "Teckensnitt";
Text[ polish ] = "Czcionka";
Text[ portuguese_brazilian ] = "Fonte";
Text[ japanese ] = "フォント";
Text[ korean ] = "글꼴";
Text[ chinese_simplified ] = "字体";
Text[ chinese_traditional ] = "字型";
Text[ turkish ] = "Yaz tipi";
Text[ arabic ] = "";
Text[ catalan ] = "Tipus de lletra";
Text[ finnish ] = "Fontti";
Text[ thai ] = "ตัวอักษร";
Text[ czech ] = "Písmo";
Text[ hebrew ] = "גופן";
Text[ hindi ] = "फ़ॉन्ट्";
Text[ slovak ] = "Písmo";
Text[ hungarian ] = "Betűkészlet";
Text[ slovenian ] = "Pisava";
};
PageItem
{
Identifier = RID_SVXPAGE_CHAR_EFFECTS ;
Text = "Schrifteffekt" ;
Text [ english_us ] = "Font Effects" ;
Text[ portuguese ] = "Efeitos do tipo de letra";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Schrifteffecten";
Text[ french ] = "Effets de caractres";
Text[ spanish ] = "Efectos de fuente";
Text[ italian ] = "Effetto caratteri";
Text[ danish ] = "Skrifteffekter";
Text[ swedish ] = "Teckeneffekt";
Text[ polish ] = "Efekty czcionki";
Text[ portuguese_brazilian ] = "Efeitos da Fonte";
Text[ japanese ] = "フォント効果";
Text[ korean ] = "글꼴 효과";
Text[ chinese_simplified ] = "字体效果";
Text[ chinese_traditional ] = "字型效果";
Text[ turkish ] = "Tr effektleri";
Text[ arabic ] = " ";
Text[ catalan ] = "Efectes de lletra";
Text[ finnish ] = "Fonttitehosteet";
Text[ thai ] = "ลักษณะตัวอักษร";
Text[ czech ] = "Efekty pro písmo";
Text[ hebrew ] = "פעלולי גופנים";
Text[ hindi ] = "फ़ॉन्ट् प्रभाव";
Text[ slovak ] = "Efekty pre písmo";
Text[ hungarian ] = "Betűhatások";
Text[ slovenian ] = "Učinki pisave";
};
PageItem
{
Identifier = RID_SVXPAGE_CHAR_POSITION ;
Text = "Position" ;
Text [ english_us ] = "Position" ;
Text[ portuguese ] = "Posio";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Positie";
Text[ french ] = "Position";
Text[ spanish ] = "Posicin";
Text[ italian ] = "Posizione";
Text[ danish ] = "Placering";
Text[ swedish ] = "Position";
Text[ polish ] = "Pozycja";
Text[ portuguese_brazilian ] = "Posio";
Text[ japanese ] = "位置";
Text[ korean ] = "위치";
Text[ chinese_simplified ] = "位置";
Text[ chinese_traditional ] = "位置";
Text[ turkish ] = "Konum";
Text[ arabic ] = "";
Text[ catalan ] = "Posici";
Text[ finnish ] = "Sijainti";
Text[ thai ] = "ตำแหน่ง";
Text[ czech ] = "Umístění";
Text[ hebrew ] = "מיקום";
Text[ hindi ] = "स्थान";
Text[ slovak ] = "Umiestnenie";
Text[ hungarian ] = "Pozíció";
Text[ slovenian ] = "Položaj";
};
PageItem
{
Identifier = RID_SVXPAGE_CHAR_TWOLINES ;
Text = "Asiatisches Layout" ;
Text [ english_us ] = "Asian Layout" ;
Text[ portuguese ] = "Configurao asitica";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Aziatische lay-out";
Text[ french ] = "Mise en page asiatique";
Text[ spanish ] = "Diseo asitico";
Text[ italian ] = "Layout asiatico";
Text[ danish ] = "Asiatisk layout";
Text[ swedish ] = "Asiatisk layout";
Text[ polish ] = "Ukad azjatycki";
Text[ portuguese_brazilian ] = "Layout Asitico";
Text[ japanese ] = "日本語レイアウト";
Text[ korean ] = "한글 글자꼴";
Text[ chinese_simplified ] = "中日韩版式";
Text[ chinese_traditional ] = "中日韓版式";
Text[ turkish ] = "Asya sayfa dzeni";
Text[ arabic ] = " ";
Text[ catalan ] = "Disseny asitic";
Text[ finnish ] = "Aasialainen asettelu";
Text[ thai ] = "เค้าโครงแบบเอเชีย";
Text[ czech ] = "Asijský formát";
Text[ hebrew ] = "עיצוב דף של המזרח הרחוק";
Text[ hindi ] = "ऐशियन अभिन्यास";
Text[ slovak ] = "Ázijské rozloženie";
Text[ hungarian ] = "Ázsiai tördelés";
Text[ slovenian ] = "Azijska postavitev";
};
PageItem
{
Identifier = RID_SVXPAGE_STD_PARAGRAPH ;
Text = "Einzge und Abstnde" ;
Text [ ENGLISH ] = "Paragraph" ;
Text [ norwegian ] = "Avsnitt" ;
Text [ italian ] = "Rientri e distanze" ;
Text [ portuguese_brazilian ] = "Recuo & Afastamento" ;
Text [ portuguese ] = "Avanos e espaamento" ;
Text [ finnish ] = "Sisennykset ja vlit" ;
Text [ danish ] = "Indrykning og afstand" ;
Text [ french ] = "Retraits et carts" ;
Text [ swedish ] = "Indrag och avstnd" ;
Text [ dutch ] = "Inspringingen en afstanden" ;
Text [ spanish ] = "Sangras y espacios" ;
Text [ english_us ] = "Indents & Spacing" ;
Text[ chinese_simplified ] = "缩进和间隔";
Text[ russian ] = " ";
Text[ polish ] = "Wcicia i odstpy";
Text[ japanese ] = "インデントと間隔";
Text[ chinese_traditional ] = "縮排和間隔";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "들여쓰기 및 간격";
Text[ turkish ] = "Girinti ve Aralklar";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Sagnats i espaiat";
Text[ thai ] = "ระยะเยื้องและระยะห่าง";
Text[ czech ] = "Odsazení a mezery";
Text[ hebrew ] = "שוליים ורווחים";
Text[ hindi ] = "इन्डेन्ट्स और अंतर देना";
Text[ slovak ] = "Odsadenie a medzery";
Text[ hungarian ] = "Behúzás és térköz";
Text[ slovenian ] = "Zamiki in razmiki";
};
PageItem
{
Identifier = RID_SVXPAGE_ALIGN_PARAGRAPH ;
Text = "Ausrichtung" ;
Text [ ENGLISH ] = "Alignment" ;
Text [ portuguese ] = "Alinhamento" ;
Text [ english_us ] = "Alignment" ;
Text [ portuguese_brazilian ] = "Alinhamento" ;
Text [ swedish ] = "Justering" ;
Text [ danish ] = "Justering" ;
Text [ italian ] = "Allineamento" ;
Text [ spanish ] = "Alineacin" ;
Text [ french ] = "Alignement" ;
Text [ dutch ] = "Uitlijning" ;
Text[ chinese_simplified ] = "对齐";
Text[ russian ] = "";
Text[ polish ] = "Wyrwnanie";
Text[ japanese ] = "配置";
Text[ chinese_traditional ] = "對齊";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "맞춤";
Text[ turkish ] = "Hizalama";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Alineament";
Text[ finnish ] = "Tasaus";
Text[ thai ] = "จัดตำแหน่ง";
Text[ czech ] = "Zarovnání";
Text[ hebrew ] = "יישור";
Text[ hindi ] = "पंक्तिकरण";
Text[ slovak ] = "Zarovnanie";
Text[ hungarian ] = "Igazítás";
Text[ slovenian ] = "Poravnava";
};
PageItem
{
Identifier = RID_SVXPAGE_EXT_PARAGRAPH ;
Text = "Textfluss" ;
Text [ ENGLISH ] = "Paragraph Extensions" ;
Text [ norwegian ] = "Utvidelse av avsnitt" ;
Text [ italian ] = "Flusso di testo" ;
Text [ portuguese_brazilian ] = "Fluxo do Texto" ;
Text [ portuguese ] = "Fluxo de texto" ;
Text [ finnish ] = "Tekstin rivitys" ;
Text [ danish ] = "Tekstforlb" ;
Text [ french ] = "Enchanements" ;
Text [ swedish ] = "Textflde" ;
Text [ dutch ] = "Tekstverloop" ;
Text [ spanish ] = "Flujo del texto" ;
Text [ english_us ] = "Text Flow" ;
Text[ chinese_simplified ] = "换行和分页";
Text[ russian ] = " ";
Text[ polish ] = "Przepyw tekstu";
Text[ japanese ] = "体裁";
Text[ chinese_traditional ] = "換行和分頁";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "텍스트 흐름";
Text[ turkish ] = "Metin ak";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Flux del text";
Text[ thai ] = "การไหลของข้อความ";
Text[ czech ] = "Tok textu";
Text[ hebrew ] = "זרימת טקסט";
Text[ hindi ] = "टेक्स्ट् धारा";
Text[ slovak ] = "Tok textu";
Text[ hungarian ] = "Szövegbeosztás";
Text[ slovenian ] = "Potek besedila";
};
PageItem
{
Identifier = RID_SVXPAGE_PARA_ASIAN;
Text = "Asiatische Typographie" ;
Text [ ENGLISH ] = "Asian typography" ;
Text[ english_us ] = "Asian Typography";
Text[ portuguese ] = "Tipografia asitica";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Aziatische typografie";
Text[ french ] = "Typographie asiatique";
Text[ spanish ] = "Tipografa asitica";
Text[ italian ] = "Tipografia asiatica";
Text[ danish ] = "Asiatisk typografi";
Text[ swedish ] = "Asiatisk typografi";
Text[ polish ] = "Typografia azjatycka";
Text[ portuguese_brazilian ] = "Tipografia asitica";
Text[ japanese ] = "日本語文の体裁";
Text[ korean ] = "한글 입력 체계";
Text[ chinese_simplified ] = "中日韩文字";
Text[ chinese_traditional ] = "中日韓文字";
Text[ turkish ] = "Asya Matbaas";
Text[ arabic ] = " ";
Text[ catalan ] = "Tipografia asitica";
Text[ finnish ] = "Aasialaiset merkit";
Text[ thai ] = "การพิมพ์แบบเอเชีย";
Text[ czech ] = "Asijská typografie";
Text[ hebrew ] = "עיצוב גופן מזרח הרחוק";
Text[ hindi ] = "ऐशियन टइपोग्रफी";
Text[ slovak ] = "Ázijská typografia";
Text[ hungarian ] = "Ázsiai tipográfia";
Text[ slovenian ] = "Azijska tipografija";
};
PageItem
{
Identifier = RID_SVXPAGE_BACKGROUND;
Text = "Hintergrund" ;
Text [ ENGLISH ] = "Background" ;
Text [ norwegian ] = "Background" ;
Text [ italian ] = "Sfondo" ;
Text [ portuguese_brazilian ] = "Plano de Fundo" ;
Text [ portuguese ] = "Plano de fundo" ;
Text [ finnish ] = "Tausta" ;
Text [ danish ] = "Baggrund" ;
Text [ french ] = "Arrire-plan" ;
Text [ swedish ] = "Bakgrund" ;
Text [ dutch ] = "Achtergrond" ;
Text [ spanish ] = "Fondo" ;
Text [ english_us ] = "Background" ;
Text[ chinese_simplified ] = "背景";
Text[ russian ] = "";
Text[ polish ] = "To";
Text[ japanese ] = "背景";
Text[ chinese_traditional ] = "背景";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "배경";
Text[ turkish ] = "Artalan";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Fons";
Text[ thai ] = "พื้นหลัง";
Text[ czech ] = "Pozadí";
Text[ hebrew ] = "רקע";
Text[ hindi ] = "पृष्ठभाग";
Text[ slovak ] = "Pozadie";
Text[ hungarian ] = "Háttér";
Text[ slovenian ] = "Ozadje";
};
};
};
Text[ chinese_simplified ] = "文字属性";
Text[ russian ] = " ";
Text[ polish ] = "Format tekstu";
Text[ japanese ] = "テキストの属性";
Text[ chinese_traditional ] = "文字格式";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "텍스트 속성";
Text[ turkish ] = "Metin znitelikleri";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Format del text";
Text[ thai ] = "รูปแบบข้อความ";
Text[ czech ] = "Formát textu";
Text[ hebrew ] = "עיצוב טקסט";
Text[ hindi ] = "टेक्स्ट् रचना";
Text[ slovak ] = "Formát textu";
Text[ hungarian ] = "Szövegformátum ";
Text[ slovenian ] = "Oblika besedila";
};
// RID_SVXDLG_SEARCHATTRIBUTE --------------------------------------------
ModalDialog RID_SVXDLG_SEARCHATTR
{
HelpId = HID_SEARCHATTR ;
OutputSize = TRUE ;
SVLook = TRUE ;
Size = MAP_APPFONT ( 194 , 128 ) ;
Text = "Attribute" ;
Text [ English ] = "Attributes" ;
Text [ norwegian ] = "Attributes" ;
Text [ italian ] = "Attributi" ;
Text [ portuguese_brazilian ] = "Atributos" ;
Text [ portuguese ] = "Atributos" ;
Text [ finnish ] = "Mritteet" ;
Text [ danish ] = "Attributter" ;
Text [ french ] = "Attributs" ;
Text [ swedish ] = "Attribut" ;
Text [ dutch ] = "Attributen" ;
Text [ spanish ] = "Atributos" ;
Text [ english_us ] = "Attributes" ;
Moveable = TRUE ;
Control LB_ATTR
{
HelpId = HID_SEARCHATTR_CTL_ATTR ;
ClipChildren = TRUE ;
Border = TRUE ;
TabStop = TRUE ;
Pos = MAP_APPFONT ( 6 , 14 ) ;
Size = MAP_APPFONT ( 120 , 108 ) ;
};
FixedText FL_ATTR
{
Pos = MAP_APPFONT ( 6 , 3 ) ;
Size = MAP_APPFONT ( 124 , 8 ) ;
Text = "~Auswahl" ;
Text [ english ] = "~Options" ;
Text [ norwegian ] = "Choice" ;
Text [ italian ] = "Selezione" ;
Text [ portuguese_brazilian ] = "Escolha" ;
Text [ portuguese ] = "Seleco" ;
Text [ finnish ] = "Asetukset" ;
Text [ danish ] = "~Indstillinger" ;
Text [ french ] = "Slection" ;
Text [ swedish ] = "~Urval" ;
Text [ dutch ] = "Selectie" ;
Text [ spanish ] = "~Seleccin" ;
Text [ english_us ] = "~Options" ;
Text[ chinese_simplified ] = "选项(~O)";
Text[ russian ] = "";
Text[ polish ] = "Wybr";
Text[ japanese ] = "選択(~O)";
Text[ chinese_traditional ] = "選項(~O)";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "선택(~O)";
Text[ turkish ] = "~Seenekler";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Selecciona";
Text[ thai ] = "เลื~อก";
Text[ czech ] = "Volby";
Text[ hebrew ] = "אפשרויות";
Text[ hindi ] = "चु~नाव";
Text[ slovak ] = "V~oľby";
Text[ hungarian ] = "~Beállítások";
Text[ slovenian ] = "~Možnosti";
};
OKButton BTN_ATTR_OK
{
Pos = MAP_APPFONT ( 136 , 6 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
DefButton = TRUE ;
};
CancelButton BTN_ATTR_CANCEL
{
Pos = MAP_APPFONT ( 136 , 23 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
};
HelpButton BTN_ATTR_HELP
{
Pos = MAP_APPFONT ( 136 , 43 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
};
Text[ chinese_simplified ] = "属性";
Text[ russian ] = "";
Text[ polish ] = "Atrybuty";
Text[ japanese ] = "属性";
Text[ chinese_traditional ] = "屬性";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "속성";
Text[ turkish ] = "znitelikler";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Atributs";
Text[ thai ] = "คุณลักษณะ";
Text[ czech ] = "Atributy";
Text[ hebrew ] = "תכונות";
Text[ hindi ] = "ऐट्रिब्यूट्स";
Text[ slovak ] = "Atribúty";
Text[ hungarian ] = "Jellemzők";
Text[ slovenian ] = "Atributi";
};
// RID_SVXDLG_SEARCHSIMILARITY -------------------------------------------
ModalDialog RID_SVXDLG_SEARCHSIMILARITY
{
HelpId = HID_SEARCHSIMILARITY ;
OutputSize = TRUE ;
SVLook = TRUE ;
Size = MAP_APPFONT ( 178 , 76 ) ;
Text = "hnlichkeitssuche" ;
Text [ English ] = "Similarity search" ;
Text [ english_us ] = "Similarity Search" ;
Text [ italian ] = "Ricerca per simili" ;
Text [ spanish ] = "Bsqueda por semejanza" ;
Text [ french ] = "Recherche de similarit" ;
Text [ dutch ] = "Overeenkomsten zoeken" ;
Moveable = TRUE ;
FixedText FT_OTHER
{
Pos = MAP_APPFONT ( 12 , 16 ) ;
Size = MAP_APPFONT ( 70 , 8 ) ;
Text = "~Zeichen tauschen" ;
Text [ English ] = "~Exchange characters" ;
Text [ english_us ] = "~Exchange characters" ;
Text [ italian ] = "Scambia i caratteri" ;
Text [ spanish ] = "~Cambiar caracteres" ;
Text [ french ] = "change de caractres" ;
Text [ dutch ] = "Tekens ~vervangen" ;
Text [ swedish ] = "~Byt ut tecken" ;
Text [ danish ] = "~Ombyt tegn" ;
Text [ portuguese_brazilian ] = "~Trocar caracteres" ;
Text [ portuguese ] = "~Substituir caracteres" ;
Text[ chinese_simplified ] = "替换字符(~E)";
Text[ russian ] = "";
Text[ polish ] = "~Wymie znaki";
Text[ japanese ] = "入れ代り許可の文字数(~E)";
Text[ chinese_traditional ] = "替代字元(~E)";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "문자 바꾸기(~E)";
Text[ turkish ] = "Ka~rakter deitir";
Text[ language_user1 ] = " ";
Text[ catalan ] = "~Canvia carcters";
Text[ finnish ] = "~Vaihda merkit";
Text[ thai ] = "แ~ลกเปลี่ยนตัวอักขระ";
Text[ czech ] = "Zaměnit znaky";
Text[ hebrew ] = " החלפת תווים";
Text[ hindi ] = "अक्षरों की ~विनिमय";
Text[ slovak ] = "Zam~eniť znaky";
Text[ hungarian ] = "~Cserélhető karakterek";
Text[ slovenian ] = "~Izmenjaj znake";
};
NumericField NF_OTHER
{
Pos = MAP_APPFONT ( 86 , 14 ) ;
Size = MAP_APPFONT ( 24 , 12 ) ;
Border = TRUE ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 0 ;
First = 1 ;
Maximum = 30 ;
Last = 30 ;
Value = 1 ;
TabStop = TRUE ;
};
FixedText FT_LONGER
{
Pos = MAP_APPFONT ( 12 , 30 ) ;
Size = MAP_APPFONT ( 70 , 8 ) ;
Text = "Z~eichen hinzufgen" ;
Text [ English ] = "~Add characters" ;
Text [ english_us ] = "~Add characters" ;
Text [ italian ] = "Aggiungi carattere" ;
Text [ spanish ] = "~Aadir caracteres" ;
Text [ french ] = "Caractres en ~plus" ;
Text [ dutch ] = "Tekens ~toevoegen" ;
Text [ swedish ] = "Lgg till t~ecken" ;
Text [ danish ] = "~Tilfj tegn" ;
Text [ portuguese_brazilian ] = "~Adicionar caracteres" ;
Text [ portuguese ] = "Inserir ~caracteres" ;
Text[ chinese_simplified ] = "新增字符(~A)";
Text[ russian ] = "";
Text[ polish ] = "~Dodaj znaki";
Text[ japanese ] = "追加許可の文字数(~A)";
Text[ chinese_traditional ] = "新增字元(~A)";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "문자 추가(~A)";
Text[ turkish ] = "~Karakter ekle";
Text[ language_user1 ] = " ";
Text[ catalan ] = "~Afegeix carcters";
Text[ finnish ] = "~Lis merkkej";
Text[ thai ] = "เ~พิ่มตัวอักขระ";
Text[ czech ] = "Přidat znaky";
Text[ hebrew ] = "הוספת תווים";
Text[ hindi ] = "अक्षरों को ~जोड़ो";
Text[ slovak ] = "Prid~ať znaky";
Text[ hungarian ] = "~Karakterek hozzáadása";
Text[ slovenian ] = "~Dodaj znake";
};
NumericField NF_LONGER
{
Pos = MAP_APPFONT ( 86 , 28 ) ;
Size = MAP_APPFONT ( 24 , 12 ) ;
Border = TRUE ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 0 ;
First = 1 ;
Maximum = 30 ;
Last = 30 ;
Value = 1 ;
TabStop = TRUE ;
};
FixedText FT_SHORTER
{
Pos = MAP_APPFONT ( 12 , 46 ) ;
Size = MAP_APPFONT ( 70 , 8 ) ;
Text = "Ze~ichen entfernen" ;
Text [ English ] = "~Remove characters" ;
Text [ english_us ] = "~Remove characters" ;
Text [ italian ] = "Elimina carattere" ;
Text [ spanish ] = "~Borrar caracteres" ;
Text [ french ] = "Caractres en ~moins" ;
Text [ dutch ] = "Tekens ver~wijderen" ;
Text [ swedish ] = "~Ta bort tecken" ;
Text [ danish ] = "~Fjern tegn" ;
Text [ portuguese_brazilian ] = "~Remover caracteres" ;
Text [ portuguese ] = "Elimina~r caracteres" ;
Text[ chinese_simplified ] = "删除字符(~R)";
Text[ russian ] = "";
Text[ polish ] = "~Usu znaki";
Text[ japanese ] = "不足許可の文字数(~R)";
Text[ chinese_traditional ] = "刪除字元(~R)";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "문자 제거(~R)";
Text[ turkish ] = "Kar~akter kaldr";
Text[ language_user1 ] = " ";
Text[ catalan ] = "~Suprimeix carcters";
Text[ finnish ] = "~Poista merkit";
Text[ thai ] = "เ~อาตัวอักขระออก";
Text[ czech ] = "Odstranit znaky";
Text[ hebrew ] = "הסרת תווים";
Text[ hindi ] = "अक्षरों को ~हटाओ";
Text[ slovak ] = "Odst~rániť znaky";
Text[ hungarian ] = "K~arakterek eltávolítása";
Text[ slovenian ] = "Odst~rani znake";
};
NumericField NF_SHORTER
{
Pos = MAP_APPFONT ( 86 , 44 ) ;
Size = MAP_APPFONT ( 24 , 12 ) ;
Border = TRUE ;
Left = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 0 ;
First = 1 ;
Maximum = 30 ;
Last = 30 ;
Value = 1 ;
TabStop = TRUE ;
};
CheckBox CB_RELAX
{
Pos = MAP_APPFONT ( 12 , 60 ) ;
Size = MAP_APPFONT ( 98 , 10 ) ;
Text = "~Kombinieren" ;
Text [ English ] = "~Combine" ;
Text [ english_us ] = "~Combine" ;
Text [ italian ] = "Combina" ;
Text [ spanish ] = "Co~mbinar" ;
Text [ french ] = "~Combiner" ;
Text [ dutch ] = "~Combineren" ;
TabStop = TRUE ;
Text [ swedish ] = "~Kombinera" ;
Text [ danish ] = "~Kombiner" ;
Text [ portuguese_brazilian ] = "~Combinar" ;
Text [ portuguese ] = "~Combinar" ;
Text[ chinese_simplified ] = "合并(~C)";
Text[ russian ] = "";
Text[ polish ] = "~Zespalaj";
Text[ japanese ] = "組み合わせ(~C)";
Text[ chinese_traditional ] = "組合(~C)";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "조합(~C)";
Text[ turkish ] = "~Birletir";
Text[ language_user1 ] = " ";
Text[ catalan ] = "~Combina";
Text[ finnish ] = "~Yhdist";
Text[ thai ] = "เ~ชื่อม";
Text[ czech ] = "Zkombinovat";
Text[ hebrew ] = "שילוב";
Text[ hindi ] = "~मिलाओ";
Text[ slovak ] = "S~kombinovať";
Text[ hungarian ] = "Össze~vonás";
Text[ slovenian ] = "~Sestavi";
};
FixedLine FL_SIMILARITY
{
Pos = MAP_APPFONT ( 6 , 3 ) ;
Size = MAP_APPFONT ( 110 , 8 ) ;
Text = "Einstellungen" ;
Text [ English ] = "Options" ;
Text [ english_us ] = "Settings" ;
Text [ italian ] = "Impostazioni" ;
Text [ spanish ] = "Configuracin" ;
Text [ french ] = "Paramtres" ;
Text [ dutch ] = "Instellingen" ;
Text [ swedish ] = "Instllningar" ;
Text [ danish ] = "Indstillinger" ;
Text [ portuguese_brazilian ] = "Definies" ;
Text [ portuguese ] = "Definies" ;
Text[ chinese_simplified ] = "设定";
Text[ russian ] = " ";
Text[ polish ] = "Ustawienia";
Text[ japanese ] = "設定";
Text[ chinese_traditional ] = "設定";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "설정";
Text[ turkish ] = "Ayarlar";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Configuraci";
Text[ finnish ] = "Asetukset";
Text[ thai ] = "กำหนด";
Text[ czech ] = "Nastavení";
Text[ hebrew ] = "קביעות";
Text[ hindi ] = "निर्धारण";
Text[ slovak ] = "Nastavenia";
Text[ hungarian ] = "Beállítások";
Text[ slovenian ] = "Nastavitve";
};
OKButton BTN_ATTR_OK
{
Pos = MAP_APPFONT ( 122 , 6 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
DefButton = TRUE ;
};
CancelButton BTN_ATTR_CANCEL
{
Pos = MAP_APPFONT ( 122 , 23 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
};
HelpButton BTN_ATTR_HELP
{
Pos = MAP_APPFONT ( 122 , 43 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
};
Text [ swedish ] = "Likhetsskning" ;
Text [ danish ] = "Sg lignende" ;
Text [ portuguese ] = "Procura por semelhana" ;
Text [ portuguese_brazilian ] = "Pesquisa por Semelhana" ;
Text[ chinese_simplified ] = "类似搜寻";
Text[ russian ] = " ";
Text[ polish ] = "Szukaj podobnych";
Text[ japanese ] = "類似スペルの検索";
Text[ chinese_traditional ] = "相似字搜尋";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "유사성 검색";
Text[ turkish ] = "Benzerleri ara";
Text[ language_user1 ] = " ";
Text[ catalan ] = "Cerca de similitud";
Text[ finnish ] = "Vastaavuushaku";
Text[ thai ] = "ค้นหาสิ่งที่คล้ายกัน";
Text[ czech ] = "Hledání synonym";
Text[ hebrew ] = "חיפוש דברים דומים";
Text[ hindi ] = "तुल्यता खोज";
Text[ slovak ] = "Hľadanie synoným";
Text[ hungarian ] = "Hasonló hangzásúak is";
Text[ slovenian ] = "Iskanje podobnosti";
};
// ********************************************************************** EOF
|