summaryrefslogtreecommitdiff
path: root/svx/source/dialog/grfflt.src
blob: 9aa5025c7c1eb93de34438b5d4b8327869f9db69 (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
/*************************************************************************
 *
 *  $RCSfile: grfflt.src,v $
 *
 *  $Revision: 1.34 $
 *
 *  last change: $Author: hr $ $Date: 2003-03-27 15:00:54 $
 *
 *  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 <svtools/controldims.hrc>
#include "dialogs.hrc"
#include "helpid.hrc"
#include "grfflt.hrc"

// --------------------
// - DLG_FILTERMOSAIC -
// --------------------

ModalDialog RID_SVX_GRFFILTER_DLG_MOSAIC
{
    HelpID = SID_GRFFILTER_MOSAIC;
    OutputSize = TRUE ;
    Moveable = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 250, 100 ) ;

    Text = "Mosaik" ;
    Text[ ENGLISH ] = "Mosaic" ;
    Text[ norwegian ] = "Mosaic" ;
    Text[ italian ] = "Mosaico" ;
    Text[ portuguese_brazilian ] = "Mosaico" ;
    Text[ portuguese ] = "Mosaico" ;
    Text[ finnish ] = "Mosaiikki" ;
    Text[ danish ] = "Mosaik" ;
    Text[ french ] = "Mosaque" ;
    Text[ swedish ] = "Mosaik" ;
    Text[ dutch ] = "Mozaek" ;
    Text[ spanish ] = "Mosaico" ;
    Text[ english_us ] = "Mosaic" ;
    Text[ chinese_simplified ] = "镶嵌";
    Text[ russian ] = "";
    Text[ polish ] = "Mozaika";
    Text[ japanese ] = "モザイク";
    Text[ chinese_simplified ] = "镶嵌";
    Text[ russian ] = "";
    Text[ polish ] = "Mozaika";
    Text[ japanese ] = "モザイク";
    Text[ chinese_traditional ] = "鑲嵌";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "모자이크";
    Text[ turkish ] = "Mozaik";
    Text[ language_user1 ] = " ";

    FixedLine FL_PARAMETER
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
        Text = "Parameter";
        Text[ ENGLISH ] = "Parameter";
        Text[ english_us ] = "Parameters";
        Text[ portuguese ] = "Parmetros";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Parameters";
        Text[ french ] = "Paramtres";
        Text[ spanish ] = "Parmetros";
        Text[ italian ] = "Parametri";
        Text[ danish ] = "Parameter";
        Text[ swedish ] = "Parametrar";
        Text[ polish ] = "Parametry";
        Text[ portuguese_brazilian ] = "Parameter";
        Text[ japanese ] = "パラメータ";
        Text[ korean ] = "매개 변수";
        Text[ chinese_simplified ] = "参数";
        Text[ chinese_traditional ] = "參數";
        Text[ turkish ] = "Parametre";
        Text[ arabic ] = "";
        Text[ catalan ] = "Parmetres";
        Text[ finnish ] = "Parametrit";
        Text[ thai ] = "พารามิเตอร์";
    };
    Control CTL_PREVIEW
    {
        Pos = MAP_APPFONT ( 104 , 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
        Size = MAP_APPFONT ( 81, 73 ) ;
    };
#define MA_Y0   3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
    FixedText DLG_FILTERMOSAIC_FT_WIDTH
    {
        Pos = MAP_APPFONT ( 12, MA_Y0 ) ;
        Size = MAP_APPFONT ( 77, 10 ) ;
        Text = "~Breite" ;
        Text[ ENGLISH ] = "~Width" ;
        Text[ norwegian ] = "~Bredde" ;
        Text[ italian ] = "Larghezza" ;
        Text[ portuguese_brazilian ] = "~Largura" ;
        Text[ portuguese ] = "~Largura" ;
        Text[ finnish ] = "Leve~ys" ;
        Text[ danish ] = "~Bredde" ;
        Text[ french ] = "Largeur" ;
        Text[ swedish ] = "~Bredd" ;
        Text[ dutch ] = "~Breedte" ;
        Text[ spanish ] = "Ancho" ;
        Text[ english_us ] = "~Width" ;
        Text[ chinese_simplified ] = "宽度(~W)";
        Text[ russian ] = "~";
        Text[ polish ] = "Szer.";
        Text[ japanese ] = "幅(~W)";
        Text[ chinese_traditional ] = "寬度(~W)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "너비(~W)";
        Text[ turkish ] = "Genilik";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Amplada";
        Text[ thai ] = "ความ~กว้าง";
    };
#define MA_Y1   MA_Y0 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
    MetricField DLG_FILTERMOSAIC_MTR_WIDTH
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 , MA_Y1 ) ;
        Size = MAP_APPFONT ( 35 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 1 ;
        Maximum = 999 ;
        StrictFormat = TRUE ;
        Unit = FUNIT_CUSTOM ;
        CustomUnitText = " Pixel" ;
        First = 1 ;
        Last = 999 ;
        SpinSize = 1 ;
    };
#define MA_Y2   MA_Y1 + RSC_CD_TEXTBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y
    FixedText DLG_FILTERMOSAIC_FT_HEIGHT
    {
        Pos = MAP_APPFONT ( 12, MA_Y2 ) ;
        Size = MAP_APPFONT ( 77, 10 ) ;
        Text = "~Hhe" ;
        Text[ ENGLISH ] = "~Height" ;
        Text[ norwegian ] = "~Hyde" ;
        Text[ italian ] = "Altezza" ;
        Text[ portuguese_brazilian ] = "~Altura" ;
        Text[ portuguese ] = "~Altura" ;
        Text[ finnish ] = "~Korkeus" ;
        Text[ danish ] = "H~jde" ;
        Text[ french ] = "Hauteur" ;
        Text[ swedish ] = "~Hjd" ;
        Text[ dutch ] = "~Hoogte" ;
        Text[ spanish ] = "A~ltura" ;
        Text[ english_us ] = "H~eight" ;
        Text[ chinese_simplified ] = "高度(~E)";
        Text[ russian ] = "~";
        Text[ polish ] = "Wys.";
        Text[ japanese ] = "高さ(~E)";
        Text[ chinese_traditional ] = "高度(~E)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "높이(~E)";
        Text[ turkish ] = "Yksek.";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "A~lada";
        Text[ thai ] = "ความสู~ง";
    };
#define MA_Y3   MA_Y2 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
    MetricField DLG_FILTERMOSAIC_MTR_HEIGHT
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12, MA_Y3 ) ;
        Size = MAP_APPFONT ( 35, 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 1 ;
        Maximum = 999 ;
        StrictFormat = TRUE ;
        Unit = FUNIT_CUSTOM ;
        CustomUnitText = " Pixel" ;
        First = 1 ;
        Last = 999 ;
        SpinSize = 1 ;
    };
#define MA_Y4   MA_Y3 + RSC_CD_TEXTBOX_HEIGHT + RSC_SP_CTRL_Y
    CheckBox DLG_FILTERMOSAIC_CBX_EDGES
    {
        Pos = MAP_APPFONT ( 12, MA_Y4 ) ;
        Size = MAP_APPFONT ( 91, 12 ) ;
        TabStop = TRUE ;
        Text = "~Kanten hervorheben" ;
        Text[ ENGLISH ] = "~Enhance edges" ;
        Text[ english_us ] = "E~nhance edges" ;
        Text[ portuguese ] = "~Destacar arestas";
        Text[ russian ] = "~ ";
        Text[ greek ] = " ~";
        Text[ dutch ] = "~Randen accentueren";
        Text[ french ] = "Mise en vidence des ~artes";
        Text[ spanish ] = "~Resaltar aristas";
        Text[ italian ] = "E~videnzia gli angoli";
        Text[ danish ] = "Fremhv ~kanter";
        Text[ swedish ] = "Framhv ~kanter";
        Text[ polish ] = "Wyrnij krawdzie";
        Text[ portuguese_brazilian ] = "~Enhance edges";
        Text[ japanese ] = "角を強調する(~N)";
        Text[ korean ] = "가장자리 강조(~N)";
        Text[ chinese_simplified ] = "突出显示边角(~N)";
        Text[ chinese_traditional ] = "突出顯示邊角(~N)";
        Text[ turkish ] = "~Enhance edges";
        Text[ arabic ] = " ";
        Text[ catalan ] = "~Resalta arestes";
        Text[ finnish ] = "K~orosta reunoja";
        Text[ thai ] = "ขอบสูง~ขึ้น";
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 194, 6 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
    };
    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 194, 23 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    HelpButton BTN_HELP
    {
        Pos = MAP_APPFONT ( 194, 43 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    Text[ catalan ] = "Mosaic";
    Text[ thai ] = "โมเสส";
};

// ----------------------
// - DLG_FILTERSOLARIZE -
// ----------------------

ModalDialog RID_SVX_GRFFILTER_DLG_SOLARIZE
{
    HelpID = SID_GRFFILTER_SOLARIZE;
    OutputSize = TRUE ;
    Moveable = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 250, 100 ) ;

    Text = "Solarisation" ;
    Text[ ENGLISH ] = "Solarization" ;
    Text[ norwegian ] = "Solarization" ;
    Text[ italian ] = "Solarizzazione" ;
    Text[ portuguese_brazilian ] = "Solariza??o" ;
    Text[ portuguese ] = "Solarizao" ;
    Text[ finnish ] = "Solarisaatio" ;
    Text[ danish ] = "Solarisering" ;
    Text[ french ] = "Solarisation" ;
    Text[ swedish ] = "Solarisering" ;
    Text[ dutch ] = "Solarisatie" ;
    Text[ spanish ] = "Solarizacin" ;
    Text[ english_us ] = "Solarization" ;
    Text[ chinese_simplified ] = "曝光";
    Text[ russian ] = "";
    Text[ polish ] = "Solaryzacja";
    Text[ japanese ] = "ソラリゼーション";
    Text[ chinese_traditional ] = "曝光";
    Text[ arabic ] = "";
    Text[ greek ] = "  ";
    Text[ korean ] = "솔라리제이션";
    Text[ turkish ] = "Yksek pozlama";
    Text[ language_user1 ] = " ";

    FixedLine FL_PARAMETER
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
        Text = "Parameter";
        Text[ ENGLISH ] = "Parameter";
        Text[ english_us ] = "Parameters";
        Text[ portuguese ] = "Parmetros";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Parameters";
        Text[ french ] = "Paramtres";
        Text[ spanish ] = "Parmetros";
        Text[ italian ] = "Parametri";
        Text[ danish ] = "Parameter";
        Text[ swedish ] = "Parametrar";
        Text[ polish ] = "Parametry";
        Text[ portuguese_brazilian ] = "Parameter";
        Text[ japanese ] = "パラメータ";
        Text[ korean ] = "매개 변수";
        Text[ chinese_simplified ] = "参数";
        Text[ chinese_traditional ] = "參數";
        Text[ turkish ] = "Parametre";
        Text[ arabic ] = "";
        Text[ catalan ] = "Parmetres";
        Text[ finnish ] = "Parametrit";
        Text[ thai ] = "พารามิเตอร์";
    };
    Control CTL_PREVIEW
    {
        Pos = MAP_APPFONT ( 104 , 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
        Size = MAP_APPFONT ( 81, 73 ) ;
    };
#define MA_Y5   3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
    FixedText DLG_FILTERSOLARIZE_FT_THRESHOLD
    {
        Pos = MAP_APPFONT ( 12, MA_Y5 ) ;
        Size = MAP_APPFONT ( 77 , 10 ) ;
        Text = "~Schwellenwert" ;
        Text[ ENGLISH ] = "Threshold" ;
        Text[ norwegian ] = "Threshold" ;
        Text[ italian ] = "Soglia" ;
        Text[ portuguese_brazilian ] = "Limite" ;
        Text[ portuguese ] = "~Valor limite" ;
        Text[ finnish ] = "Raja-~arvo" ;
        Text[ danish ] = "~Trskelvrdi" ;
        Text[ french ] = "~Valeur de seuil" ;
        Text[ swedish ] = "Tr~skelvrde" ;
        Text[ dutch ] = "~Drempelwaarde" ;
        Text[ spanish ] = "Valor ~umbral" ;
        Text[ english_us ] = "Threshold ~value" ;
        Text[ chinese_simplified ] = "初始值(~V)";
        Text[ russian ] = " ";
        Text[ polish ] = "Warto progowa";
        Text[ japanese ] = "しきい値(~V)";
        Text[ chinese_traditional ] = "臨界值(~V)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "임계값(~V)";
        Text[ turkish ] = "Eik deer";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Valor llindar";
        Text[ thai ] = "~ค่าเข้าใกล้";
    };
#define MA_Y6   MA_Y5 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
    MetricField DLG_FILTERSOLARIZE_MTR_THRESHOLD
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 , MA_Y6 ) ;
        Size = MAP_APPFONT ( 35 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Maximum = 100 ;
        StrictFormat = TRUE ;
        Unit = FUNIT_CUSTOM ;
        CustomUnitText = " %" ;
        Last = 100 ;
        SpinSize = 1 ;
    };
#define MA_Y7   MA_Y6 + RSC_CD_TEXTBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y
    CheckBox DLG_FILTERSOLARIZE_CBX_INVERT
    {
        Pos = MAP_APPFONT ( 12, 46 ) ;
        Size = MAP_APPFONT ( 77, 12 ) ;
        TabStop = TRUE ;
        Text = "~Invertieren" ;
        Text[ ENGLISH ] = "Invert" ;
        Text[ norwegian ] = "Invert" ;
        Text[ italian ] = "Inverti" ;
        Text[ portuguese_brazilian ] = "Inverter" ;
        Text[ portuguese ] = "~Inverter" ;
        Text[ finnish ] = "Muunna ~knteiseksi" ;
        Text[ danish ] = "~Inverter" ;
        Text[ french ] = "~Invertir" ;
        Text[ swedish ] = "~Invertera" ;
        Text[ dutch ] = "~Diapositief" ;
        Text[ spanish ] = "I~nvertir" ;
        Text[ english_us ] = "~Invert" ;
        Text[ chinese_simplified ] = "互补色转换(~I)";
        Text[ russian ] = "";
        Text[ polish ] = "Odwr";
        Text[ japanese ] = "逆転(~I)";
        Text[ chinese_traditional ] = "互補色轉換(~I)";
        Text[ arabic ] = "";
        Text[ greek ] = "~";
        Text[ korean ] = "반전(~I)";
        Text[ turkish ] = "Tersine evir";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Inverteix";
        Text[ thai ] = "~สลับ";
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 194, 6 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
    };
    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 194, 23 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    HelpButton BTN_HELP
    {
        Pos = MAP_APPFONT ( 194, 43 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    Text[ catalan ] = "Solaritzaci";
    Text[ thai ] = "ตากแดด";
};

// ----------------------
// - DLG_FILTERSOLARIZE -
// ----------------------

ModalDialog RID_SVX_GRFFILTER_DLG_SEPIA
{
    HelpID = SID_GRFFILTER_SEPIA;
    OutputSize = TRUE ;
    Moveable = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 250, 100 ) ;

    Text = "Alterung" ;
    Text[ ENGLISH ] = "Age" ;
    Text[ norwegian ] = "Age" ;
    Text[ italian ] = "Invecchiamento" ;
    Text[ portuguese_brazilian ] = "Idade" ;
    Text[ portuguese ] = "Envelhecimento" ;
    Text[ finnish ] = "Ikntyminen" ;
    Text[ danish ] = "Sepia" ;
    Text[ french ] = "Vieillissement" ;
    Text[ swedish ] = "ldrande" ;
    Text[ dutch ] = "Ouder maken" ;
    Text[ spanish ] = "Envejecimiento" ;
    Text[ english_us ] = "Aging" ;
    Text[ chinese_simplified ] = "时效";
    Text[ russian ] = "";
    Text[ polish ] = "Efekt starzenia";
    Text[ japanese ] = "エイジング";
    Text[ chinese_traditional ] = "時效";
    Text[ arabic ] = "";
    Text[ dutch ] = "Ouder maken";
    Text[ chinese_simplified ] = "时效";
    Text[ greek ] = "";
    Text[ korean ] = "낡음 효과";
    Text[ turkish ] = "Eskitme";

    FixedLine FL_PARAMETER
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
        Text = "Parameter";
        Text[ ENGLISH ] = "Parameter";
        Text[ english_us ] = "Parameters";
        Text[ portuguese ] = "Parmetros";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Parameters";
        Text[ french ] = "Paramtre";
        Text[ spanish ] = "Parmetros";
        Text[ italian ] = "Parametri";
        Text[ danish ] = "Parameter";
        Text[ swedish ] = "Parametrar";
        Text[ polish ] = "Parametry";
        Text[ portuguese_brazilian ] = "Parameter";
        Text[ japanese ] = "パラメータ";
        Text[ korean ] = "매개 변수";
        Text[ chinese_simplified ] = "参数";
        Text[ chinese_traditional ] = "參數";
        Text[ turkish ] = "Parametre";
        Text[ arabic ] = "";
        Text[ catalan ] = "Parmetres";
        Text[ finnish ] = "Parametrit";
        Text[ thai ] = "พารามิเตอร์";
    };
    Control CTL_PREVIEW
    {
        Pos = MAP_APPFONT ( 104 , 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
        Size = MAP_APPFONT ( 81, 73 ) ;
    };
#define MA_Y8   3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
    FixedText DLG_FILTERSEPIA_FT_SEPIA
    {
        Pos = MAP_APPFONT ( 12 , MA_Y8 ) ;
        Size = MAP_APPFONT ( 77 , 10 ) ;
        Text = "Alterungsgrad" ;
        Text[ ENGLISH ] = "Age value" ;
        Text[ norwegian ] = "Age value" ;
        Text[ italian ] = "Grado di invecchiamento" ;
        Text[ portuguese_brazilian ] = "Valor de envelhecimento" ;
        Text[ portuguese ] = "Grau de envelhecimento" ;
        Text[ finnish ] = "Ikntymisaste" ;
        Text[ danish ] = "Sepiagrad" ;
        Text[ french ] = "Degr de vieillissement" ;
        Text[ swedish ] = "ldringsgrad" ;
        Text[ dutch ] = "Mate van veroudering" ;
        Text[ spanish ] = "Grado de envejecimiento" ;
        Text[ english_us ] = "Aging degree" ;
        Text[ chinese_simplified ] = "时效度";
        Text[ russian ] = " ";
        Text[ polish ] = "Stopie efektu starzenia";
        Text[ japanese ] = "エイジング度合";
        Text[ chinese_traditional ] = "時效度";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Mate van veroudering";
        Text[ chinese_simplified ] = "时效度";
        Text[ greek ] = " ";
        Text[ korean ] = "낡음 효과 정도";
        Text[ turkish ] = "Eskitme derecesi";
        Text[ catalan ] = "Grau d'envelliment";
        Text[ thai ] = "ระดับการตรวจสอบเวลา";
    };
#define MA_Y9   MA_Y8 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
    MetricField DLG_FILTERSEPIA_MTR_SEPIA
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 , MA_Y9 ) ;
        Size = MAP_APPFONT ( 35 , 12 ) ;
        TabStop = TRUE ;
        Right = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 1 ;
        Maximum = 100 ;
        StrictFormat = TRUE ;
        Unit = FUNIT_CUSTOM ;
        CustomUnitText = " %" ;
        First = 1 ;
        Last = 100 ;
        SpinSize = 1 ;
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 194, 6 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
    };
    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 194, 23 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    HelpButton BTN_HELP
    {
        Pos = MAP_APPFONT ( 194, 43 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    Text[ catalan ] = "Envelliment";
    Text[ thai ] = "ตรวจสอบเวลา";
};

// --------------------
// - DLG_FILTERPOSTER -
// --------------------

ModalDialog RID_SVX_GRFFILTER_DLG_POSTER
{
    HelpID = SID_GRFFILTER_POSTER;
    OutputSize = TRUE ;
    Moveable = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 250, 100 ) ;

    Text = "Poster" ;
    Text[ ENGLISH ] = "Posterize" ;
    Text[ norwegian ] = "Posterize" ;
    Text[ italian ] = "Poster" ;
    Text[ portuguese_brazilian ] = "Transformar em poster" ;
    Text[ portuguese ] = "Poster" ;
    Text[ finnish ] = "Vrien vhennys" ;
    Text[ danish ] = "Plakat" ;
    Text[ french ] = "Poster" ;
    Text[ swedish ] = "Poster" ;
    Text[ dutch ] = "Poster" ;
    Text[ spanish ] = "Pster" ;
    Text[ english_us ] = "Posterize" ;
    Text[ chinese_simplified ] = "海报";
    Text[ russian ] = "";
    Text[ polish ] = "Plakat";
    Text[ japanese ] = "ポスター";
    Text[ chinese_traditional ] = "海報";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "포스터";
    Text[ turkish ] = "Afi";

    FixedLine FL_PARAMETER
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
        Text = "Parameter";
        Text[ ENGLISH ] = "Parameter";
        Text[ english_us ] = "Parameters";
        Text[ portuguese ] = "Parmetros";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Parameters";
        Text[ french ] = "Paramtre";
        Text[ spanish ] = "Parmetros";
        Text[ italian ] = "Parametri";
        Text[ danish ] = "Parameter";
        Text[ swedish ] = "Parametrar";
        Text[ polish ] = "Parametry";
        Text[ portuguese_brazilian ] = "Parameter";
        Text[ japanese ] = "パラメータ";
        Text[ korean ] = "매개 변수";
        Text[ chinese_simplified ] = "参数";
        Text[ chinese_traditional ] = "參數";
        Text[ turkish ] = "Parametre";
        Text[ arabic ] = "";
        Text[ catalan ] = "Parmetres";
        Text[ finnish ] = "Parametrit";
        Text[ thai ] = "พารามิเตอร์";
    };
    Control CTL_PREVIEW
    {
        Pos = MAP_APPFONT ( 104 , 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
        Size = MAP_APPFONT ( 81, 73 ) ;
    };
#define MA_Y10  3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
    FixedText DLG_FILTERPOSTER_FT_POSTER
    {
        Pos = MAP_APPFONT ( 12 , MA_Y10 ) ;
        Size = MAP_APPFONT ( 77 , 10 ) ;
        Text = "Posterfarben" ;
        Text[ ENGLISH ] = "Poster colors" ;
        Text[ norwegian ] = "Poster colors" ;
        Text[ italian ] = "Colori posterizz." ;
        Text[ portuguese_brazilian ] = "Cores do poster" ;
        Text[ portuguese ] = "Cores do poster" ;
        Text[ finnish ] = "Vrien mr" ;
        Text[ danish ] = "Plakatfarver" ;
        Text[ french ] = "Couleurs du poster" ;
        Text[ swedish ] = "Posterfrger" ;
        Text[ dutch ] = "Posterkleuren" ;
        Text[ spanish ] = "Colores del pster" ;
        Text[ english_us ] = "Poster colors" ;
        Text[ chinese_simplified ] = "海报颜色";
        Text[ russian ] = " ";
        Text[ polish ] = "Kolory plakatu";
        Text[ japanese ] = "ポスターカラー";
        Text[ chinese_traditional ] = "海報顏色";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "포스터 색상";
        Text[ turkish ] = "Afi renkleri";
        Text[ catalan ] = "Colors del pster";
        Text[ thai ] = "สีโปสเตอร์";
    };
#define MA_Y11  MA_Y10 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
    NumericField DLG_FILTERPOSTER_NUM_POSTER
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 , MA_Y11 ) ;
        Size = MAP_APPFONT ( 35 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 2 ;
        Maximum = 64 ;
        StrictFormat = TRUE ;
        First = 2 ;
        Last = 64 ;
        SpinSize = 1 ;
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 194, 6 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
    };
    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 194, 23 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    HelpButton BTN_HELP
    {
        Pos = MAP_APPFONT ( 194, 43 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    Text[ catalan ] = "Redueix la gamma de colors";
    Text[ thai ] = "ทำเป็นโปสเตอร์";
};

// --------------------
// - DLG_FILTEREMBOSS -
// --------------------

TabPage RID_SVX_GRFFILTER_DLG_EMBOSS_TAB
{
    Pos = MAP_APPFONT ( 0, 0 ) ;
    Size = MAP_APPFONT ( 0, 0 ) ;
};

ModalDialog RID_SVX_GRFFILTER_DLG_EMBOSS
{
    HelpID = SID_GRFFILTER_EMBOSS;
    OutputSize = TRUE ;
    Moveable = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 250, 100 ) ;

    Text = "Relief" ;
    Text[ ENGLISH ] = "Emboss" ;
    Text[ norwegian ] = "Emboss" ;
    Text[ italian ] = "Rilievo" ;
    Text[ portuguese_brazilian ] = "Real?ar" ;
    Text[ portuguese ] = "Relevo" ;
    Text[ finnish ] = "Korkokuva" ;
    Text[ danish ] = "Relief" ;
    Text[ french ] = "Relief" ;
    Text[ swedish ] = "Relief" ;
    Text[ dutch ] = "Relif" ;
    Text[ spanish ] = "Relieve" ;
    Text[ english_us ] = "Relief" ;
    Text[ chinese_simplified ] = "浮雕";
    Text[ russian ] = "";
    Text[ polish ] = "Uwypuklenie";
    Text[ japanese ] = "レリーフ";
    Text[ chinese_traditional ] = "浮雕";
    Text[ arabic ] = "";
    Text[ greek ] = "A";
    Text[ korean ] = "양각";
    Text[ turkish ] = "Rlyef";
    Text[ language_user1 ] = " ";

    FixedLine FL_PARAMETER
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
        Text = "Parameter";
        Text[ ENGLISH ] = "Parameter";
        Text[ english_us ] = "Parameters";
        Text[ portuguese ] = "Parmetros";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Parameters";
        Text[ french ] = "Paramtre";
        Text[ spanish ] = "Parmetros";
        Text[ italian ] = "Parametri";
        Text[ danish ] = "Parameter";
        Text[ swedish ] = "Parametrar";
        Text[ polish ] = "Parametry";
        Text[ portuguese_brazilian ] = "Parameter";
        Text[ japanese ] = "パラメータ";
        Text[ korean ] = "매개 변수";
        Text[ chinese_simplified ] = "参数";
        Text[ chinese_traditional ] = "參數";
        Text[ turkish ] = "Parametre";
        Text[ arabic ] = "";
        Text[ catalan ] = "Parmetres";
        Text[ finnish ] = "Parametrit";
        Text[ thai ] = "พารามิเตอร์";
    };
    Control CTL_PREVIEW
    {
        Pos = MAP_APPFONT ( 104 , 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
        Size = MAP_APPFONT ( 81, 73 ) ;
    };
#define MA_Y12  3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
    FixedText DLG_FILTEREMBOSS_FT_LIGHT
    {
        Pos = MAP_APPFONT ( 12 , MA_Y12 ) ;
        Size = MAP_APPFONT ( 77 , 10 ) ;
        Text = "Lichtquelle" ;
        Text[ ENGLISH ] = "Source of light" ;
        Text[ norwegian ] = "Source of light" ;
        Text[ italian ] = "Sorgente di luce" ;
        Text[ portuguese_brazilian ] = "Source of light" ;
        Text[ portuguese ] = "Fonte de luz" ;
        Text[ finnish ] = "Valonlhde" ;
        Text[ danish ] = "Lyskilde" ;
        Text[ french ] = "Source de lumire" ;
        Text[ swedish ] = "Ljusklla" ;
        Text[ dutch ] = "Lichtbron" ;
        Text[ spanish ] = "Fuente de luz" ;
        Text[ english_us ] = "Light source" ;
        Text[ chinese_simplified ] = "光源";
        Text[ russian ] = " ";
        Text[ polish ] = "rdo wiata";
        Text[ japanese ] = "光源";
        Text[ chinese_traditional ] = "光源";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "광원";
        Text[ turkish ] = "Ik kayna";
        Text[ catalan ] = "Font de llum";
        Text[ thai ] = "แหล่งความสว่าง";
    };
#define MA_Y13  MA_Y12 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
    Control DLG_FILTEREMBOSS_CTL_LIGHT
    {
        HelpID = HID_GRFFILTER_EMBOSS_LIGHT ;
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 , MA_Y13 ) ;
        Size = MAP_APPFONT ( 77 , 60 ) ;
        TabStop = TRUE ;
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 194, 6 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
    };
    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 194, 23 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    HelpButton BTN_HELP
    {
        Pos = MAP_APPFONT ( 194, 43 ) ;
        Size = MAP_APPFONT ( 50, 14 ) ;
        TabStop = TRUE ;
    };
    Text[ catalan ] = "Relleu";
    Text[ thai ] = "นูน";
};