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
|
/*************************************************************************
*
* $RCSfile: fmsearch.src,v $
*
* $Revision: 1.11 $
*
* last change: $Author: kz $ $Date: 2001-04-26 19:30:50 $
*
* 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 "fmresids.hrc"
#include "fmsearch.hrc"
#include "fmhelp.hrc"
ModalDialog RID_SVXDLG_SEARCHFORM
{
OutputSize = TRUE;
SVLook = TRUE;
Size = MAP_APPFONT( 300, 253 );
Text = "Datensatz-Suche";
Text [ ENGLISH ] = "Data record search";
Text [ english_us ] = "Record Search";
Moveable = TRUE;
Closeable = TRUE;
HelpId = HID_FM_DLG_SEARCH;
GroupBox GB_SEARCHFOR
{
Pos = MAP_APPFONT( 6, 8 );
Size = MAP_APPFONT( 219, 54 );
Text = "Suchen nach";
Text [ ENGLISH ] = "Search for";
Text[ english_us ] = "Search for";
Text[ portuguese ] = "Procurar por";
Text[ russian ] = "";
Text[ greek ] = " ";
Text[ dutch ] = "Zoeken naar";
Text[ french ] = "Rechercher";
Text[ spanish ] = "Buscar por";
Text[ italian ] = "Cerca";
Text[ danish ] = "Sg efter";
Text[ swedish ] = "Sk efter";
Text[ polish ] = "Szukaj:";
Text[ portuguese_brazilian ] = "Search for";
Text[ japanese ] = "";
Text[ korean ] = "ã ";
Text[ chinese_simplified ] = "Ѱ";
Text[ chinese_traditional ] = "jMe";
Text[ arabic ] = " ";
Text[ turkish ] = "Ara:";
};
RadioButton RB_SEARCHFORTEXT
{
Pos = MAP_APPFONT( 12, 23 );
Size = MAP_APPFONT( 50, 10 );
Group = TRUE;
Text = "~Text :";
Text [ ENGLISH ] = "~Text :";
Text[ italian ] = "~Testo :";
Text[ portuguese_brazilian ] = "~Text :";
Text[ portuguese ] = "~Texto :";
Text[ danish ] = "Tekst :";
Text[ french ] = "~Texte :";
Text[ swedish ] = "~Text :";
Text[ dutch ] = "~Tekst :";
Text[ spanish ] = "~Texto :";
Text[ english_us ] = "~Text :";
Text[ chinese_simplified ] = "(~T)";
Text[ russian ] = " :";
Text[ polish ] = "Tekst:";
Text[ japanese ] = "(~T)";
Text[ chinese_traditional ] = "r(~T)";
Text[ arabic ] = " :";
Text[ greek ] = " :";
Text[ korean ] = "ؽƮ(~T):";
Text[ turkish ] = "Metin:";
};
RadioButton RB_SEARCHFORNULL
{
Pos = MAP_APPFONT( 12, 36 );
Size = MAP_APPFONT( 100, 10 );
Text = "Feldinhalt ist ~NULL";
Text [ ENGLISH ] = "Field content is ~NULL";
Text[ english_us ] = "Field content is ~NULL";
Text[ portuguese ] = "Contedo do campo ~NULL";
Text[ russian ] = " ~NULL";
Text[ greek ] = " (NULL)";
Text[ dutch ] = "Veldinhoud is ~NUL";
Text[ french ] = "Contenu de champ est ~NULL";
Text[ spanish ] = "Contenido del campo es ~NULL";
Text[ italian ] = "Il contenuto di campo ~NULL";
Text[ danish ] = "Feltindhold er lig med NULL";
Text[ swedish ] = "Fltinnehll r NULL";
Text[ polish ] = "Zawartoci pola jest ~NULL";
Text[ portuguese_brazilian ] = "Field content is ~NULL";
Text[ japanese ] = "̨ޓe~NULL";
Text[ korean ] = "ʵ ~NULL";
Text[ chinese_simplified ] = "ֶ~NULL";
Text[ chinese_traditional ] = "줺eO ~NULL";
Text[ arabic ] = " (NULL)";
Text[ turkish ] = "Alan ierii NULL";
Text[ language_user1 ] = " ";
};
RadioButton RB_SEARCHFORNOTNULL
{
Pos = MAP_APPFONT( 12, 49 );
Size = MAP_APPFONT( 100, 10 );
Text = "Feldinhalt ist ~ungleich NULL";
Text [ ENGLISH ] = "Field content is n~ot NULL";
Text[ english_us ] = "Field content is not NU~LL";
Text[ portuguese ] = "~Contedo do campo no ZERO";
Text[ russian ] = " NULL";
Text[ greek ] = " (NULL)";
Text[ dutch ] = "Veldinhoud is n~iet NUL";
Text[ french ] = "Contenu de champ est diffrent de ~NULL";
Text[ spanish ] = "Contenido del campo no es N~ULL";
Text[ italian ] = "Il contenuto di campo non N~ULL";
Text[ danish ] = "Feltindhold er forskellig fra NULL";
Text[ swedish ] = "Fltinnehll r inte NULL";
Text[ polish ] = "Zawarto pola jest nierwna NULL";
Text[ portuguese_brazilian ] = "Field content is n~ot NULL";
Text[ japanese ] = "̨ޓeNU~LLł͂Ȃ";
Text[ korean ] = "ʵ NU~LL̡ƴ";
Text[ chinese_simplified ] = "ֶݲ NU~LL";
Text[ chinese_traditional ] = "줺eO NU~LL";
Text[ arabic ] = " (NULL)";
Text[ turkish ] = "Alan ierii NULL deil";
};
ComboBox CMB_SEARCHTEXT
{
Border = TRUE;
Pos = MAP_APPFONT( 65, 20 );
Size = MAP_APPFONT( 154, 80 );
DropDown = TRUE;
TabStop = TRUE;
HelpId = HID_SEARCH_TEXT;
};
GroupBox GB_WHERE
{
Pos = MAP_APPFONT( 6, 65 );
Size = MAP_APPFONT( 219, 58 );
Text = "Bereich";
Text [ ENGLISH ] = "Bereich";
Text[ italian ] = "Area";
Text[ portuguese_brazilian ] = "Bereich";
Text[ portuguese ] = "rea";
Text[ danish ] = "Omrde";
Text[ french ] = "Domaine";
Text[ swedish ] = "Omrde";
Text[ dutch ] = "Bereik";
Text[ spanish ] = "rea";
Text[ english_us ] = "Where to search";
Text[ chinese_simplified ] = "";
Text[ russian ] = " ";
Text[ polish ] = "Obszar";
Text[ japanese ] = "͈";
Text[ chinese_traditional ] = "ϰ";
Text[ arabic ] = " ";
Text[ greek ] = "";
Text[ korean ] = "";
Text[ turkish ] = "Aranacak blm";
Text[ language_user1 ] = " ";
};
FixedText FT_FORM
{
Pos = MAP_APPFONT( 12, 77 );
Size = MAP_APPFONT( 87, 10 );
Text = "~Formular :";
Text [ ENGLISH ] = "~Formular :";
Text[ english_us ] = "Form:";
Text[ portuguese ] = "~Formulrio:";
Text[ russian ] = " :";
Text[ dutch ] = "~Formulier :";
Text[ french ] = "~Formulaire :";
Text[ spanish ] = "~Formulario :";
Text[ italian ] = "Formulario :";
Text[ danish ] = "~Formular :";
Text[ swedish ] = "~Formulr :";
Text[ polish ] = "Formularz :";
Text[ portuguese_brazilian ] = "~Formular :";
Text[ japanese ] = "̫:";
Text[ chinese_simplified ] = "";
Text[ chinese_traditional ] = "G";
Text[ arabic ] = ":";
Text[ greek ] = ":";
Text[ korean ] = ":";
Text[ turkish ] = "Form:";
Text[ language_user1 ] = " ";
};
ListBox LB_FORM
{
Border = TRUE;
Pos = MAP_APPFONT( 110, 76 );
Size = MAP_APPFONT( 109, 60 );
TabStop = TRUE;
DropDown = TRUE;
};
RadioButton RB_ALLFIELDS
{
Pos = MAP_APPFONT( 24, 91 );
Size = MAP_APPFONT( 75, 10 );
Text = "~Alle Felder";
Text [ ENGLISH ] = "~Alle Felder";
TabStop = TRUE;
HelpId = HID_SEARCH_ALLFIELDS;
Text[ italian ] = "tutti i campi";
Text[ portuguese_brazilian ] = "~alle Felder";
Text[ portuguese ] = "~Campos todos";
Text[ danish ] = "Alle felter";
Text[ french ] = "Tous les champs";
Text[ swedish ] = "Alla flt";
Text[ dutch ] = "~Alle velden";
Text[ spanish ] = "~Todos los campos";
Text[ english_us ] = "All Fields";
Text[ chinese_simplified ] = "ȫֶ";
Text[ russian ] = " ";
Text[ polish ] = "Wszystkie pola";
Text[ japanese ] = "ׂĄ̆";
Text[ chinese_traditional ] = "";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = " ʵ";
Text[ turkish ] = "Tm alanlar";
Text[ language_user1 ] = " ";
};
RadioButton RB_SINGLEFIELD
{
Pos = MAP_APPFONT( 24, 106 );
Size = MAP_APPFONT( 75, 10 );
Text = "Ein~zelnes Feld :";
Text [ ENGLISH ] = "Ein~zelnes Feld :";
TabStop = TRUE;
HelpId = HID_SEARCH_SINGLEFIELD;
Text[ italian ] = "Campo singolo:";
Text[ portuguese_brazilian ] = "ein~zelnes Feld :";
Text[ portuguese ] = "Campo ~nico:";
Text[ danish ] = "Enkelt felt :";
Text[ french ] = "Champ individuel :";
Text[ swedish ] = "Enstaka flt:";
Text[ dutch ] = "~Een enkel veld :";
Text[ spanish ] = "~Campo individual :";
Text[ english_us ] = "Single field:";
Text[ chinese_simplified ] = "ֶΣ";
Text[ russian ] = " :";
Text[ polish ] = "Pojedyncze pole :";
Text[ japanese ] = "X̨:";
Text[ chinese_traditional ] = "G";
Text[ arabic ] = " :";
Text[ greek ] = " :";
Text[ korean ] = " ʵ:";
Text[ turkish ] = "Tek alan:";
Text[ language_user1 ] = " ";
};
ListBox LB_FIELD
{
Border = TRUE;
Pos = MAP_APPFONT( 110, 105 );
Size = MAP_APPFONT( 109, 60 );
TabStop = TRUE;
DropDown = TRUE;
HelpId = HID_SEARCH_FIELDSELECTION;
};
GroupBox GB_OPTIONS
{
Pos = MAP_APPFONT( 6, 126 );
Size = MAP_APPFONT( 288, 93 );
Text = "Einstellungen";
Text [ ENGLISH ] = "Einstellungen";
Text[ italian ] = "Impostazioni";
Text[ portuguese_brazilian ] = "Einstellungen";
Text[ portuguese ] = "Configurao";
Text[ danish ] = "Indstillinger";
Text[ french ] = "Paramtres";
Text[ swedish ] = "Instllningar";
Text[ dutch ] = "Instellingen";
Text[ spanish ] = "Configuracin";
Text[ english_us ] = "Settings";
Text[ chinese_simplified ] = "趨";
Text[ russian ] = "";
Text[ polish ] = "Ustawienia";
Text[ japanese ] = "ݒ";
Text[ chinese_traditional ] = "]w";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "";
Text[ turkish ] = "Ayarlar";
Text[ language_user1 ] = " ";
};
FixedText FT_POSITION
{
Pos = MAP_APPFONT( 12, 138 );
Size = MAP_APPFONT( 40, 10 );
Text = "~Position :";
Text [ ENGLISH ] = "~Position :";
Text[ italian ] = "~Posizione :";
Text[ portuguese_brazilian ] = "~Position :";
Text[ portuguese ] = "~Posio:";
Text[ danish ] = "Placering :";
Text[ french ] = "~Position :";
Text[ swedish ] = "~Position:";
Text[ dutch ] = "~Positie :";
Text[ spanish ] = "~Posicin :";
Text[ english_us ] = "Position :";
Text[ chinese_simplified ] = "λã";
Text[ russian ] = " :";
Text[ polish ] = "Pozycja :";
Text[ japanese ] = "ʒu:";
Text[ chinese_traditional ] = "mG";
Text[ arabic ] = ":";
Text[ greek ] = " :";
Text[ korean ] = "ġ:";
Text[ turkish ] = "Konum:";
Text[ language_user1 ] = " ";
};
ListBox LB_POSITION
{
Border = TRUE;
Pos = MAP_APPFONT( 110, 136 );
Size = MAP_APPFONT( 109, 60 );
TabStop = TRUE;
DropDown = TRUE;
HelpId = HID_SEARCH_POSITION;
};
CheckBox CB_USEFORMATTER
{
Pos = MAP_APPFONT( 12, 158 );
Size = MAP_APPFONT( 90, 10 );
Text = "Feldfor~matierung benutzen" ;
Text [ ENGLISH ] = "Feldfor~matierung benutzen" ;
TabStop = TRUE;
HelpId = HID_SEARCH_FORMATTER;
Text[ italian ] = "Usa formattazioni di campo";
Text[ portuguese_brazilian ] = "Feldfor~matierung benutzen";
Text[ portuguese ] = "Usar for~matao de campo";
Text[ danish ] = "Anvend feltformatering";
Text[ french ] = "Utiliser le f~ormatage de champ";
Text[ swedish ] = "Anvnd ~fltformatering";
Text[ dutch ] = "Veldop~maak gebruiken";
Text[ spanish ] = "Usar formato de ~campo";
Text[ english_us ] = "Apply field format";
Text[ chinese_simplified ] = "ʹֶθʽ";
Text[ russian ] = " ";
Text[ polish ] = "Zastosuj formatowanie pola";
Text[ japanese ] = "̨ނ̏ݒgp";
Text[ chinese_traditional ] = "ϥ榡";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "ʵ ";
Text[ turkish ] = "Alan formatn uygula";
Text[ language_user1 ] = " ";
};
CheckBox CB_CASE
{
Pos = MAP_APPFONT( 12, 171 );
Size = MAP_APPFONT( 90, 10 );
Text = "E~xakte Suche";
Text [ ENGLISH ] = "E~xakte Suche";
TabStop = TRUE;
HelpId = HID_SEARCH_CASE;
Text[ italian ] = "Ricerca esatta";
Text[ portuguese_brazilian ] = "E~xakte Suche";
Text[ portuguese ] = "Procura e~xacta";
Text[ danish ] = "Sg eksakt";
Text[ french ] = "Respecter la ~casse";
Text[ swedish ] = "E~xakt skning";
Text[ dutch ] = "E~xact dezelfde tekens";
Text[ spanish ] = "Coincidencia ~exacta";
Text[ english_us ] = "Match case";
Text[ chinese_simplified ] = "ȷѰ";
Text[ russian ] = " ";
Text[ polish ] = "Dokadne wyszukiwanie";
Text[ japanese ] = "SɓȂ̂";
Text[ chinese_traditional ] = "TjM";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "ϰ ã";
Text[ turkish ] = "BYK/kk harf duyarl";
Text[ language_user1 ] = " ";
};
CheckBox CB_BACKWARD
{
Pos = MAP_APPFONT( 105, 158 );
Size = MAP_APPFONT( 85, 10 );
Text = "Rc~kwrts suchen";
Text [ ENGLISH ] = "Rc~kwrts suchen";
TabStop = TRUE;
HelpId = HID_SEARCH_BACKWARD;
Text[ italian ] = "Cerca indietro";
Text[ portuguese_brazilian ] = "rc~kwrts suchen";
Text[ portuguese ] = "Pro~curar para trs";
Text[ danish ] = "Sg baglns";
Text[ french ] = "Recherche vers le haut";
Text[ swedish ] = "Sk ~bakt";
Text[ dutch ] = "A~chterwaarts zoeken";
Text[ spanish ] = "Buscar hacia ~atrs";
Text[ english_us ] = "Search backwards";
Text[ chinese_simplified ] = "Ѱ";
Text[ russian ] = " ";
Text[ polish ] = "Szukaj wstecz";
Text[ japanese ] = "߂肵Č";
Text[ chinese_traditional ] = "VjM";
Text[ arabic ] = " ";
Text[ greek ] = "~ ";
Text[ korean ] = "ڷ ã";
Text[ turkish ] = "Geriye doru ara";
Text[ language_user1 ] = " ";
};
CheckBox CB_STARTOVER
{
Pos = MAP_APPFONT( 105, 171 );
Size = MAP_APPFONT( 85, 10 );
Text = "~Vom Anfang";
Text [ ENGLISH ] = "~Vom Anfang";
TabStop = TRUE;
HelpId = HID_SEARCH_STARTOVER;
Text[ italian ] = "~dall'inizio";
Text[ portuguese_brazilian ] = "~vom Anfang";
Text[ portuguese ] = "~do princpio";
Text[ danish ] = "Fra begyndelsen";
Text[ french ] = " partir du dbut";
Text[ swedish ] = "~Frn brjan";
Text[ dutch ] = "~Vanaf begin";
Text[ spanish ] = "~Desde el principio";
Text[ english_us ] = "From Beginning";
Text[ chinese_simplified ] = "ӿ";
Text[ russian ] = " ";
Text[ polish ] = "Od pocztku";
Text[ japanese ] = "ŏ";
Text[ chinese_traditional ] = "q_l";
Text[ arabic ] = " ";
Text[ greek ] = " ~";
Text[ korean ] = "ó";
Text[ turkish ] = "Batan itibaren";
Text[ language_user1 ] = " ";
};
CheckBox CB_WILDCARD
{
Pos = MAP_APPFONT( 190, 158 );
Size = MAP_APPFONT( 100, 10 );
Text = "P~latzhalter-Ausdruck";
Text [ ENGLISH ] = "P~latzhalter-Ausdruck";
TabStop = TRUE;
HelpId = HID_SEARCH_WILDCARD;
Text[ italian ] = "Espressione segnaposto";
Text[ portuguese_brazilian ] = "P~latzhalter-Ausdruck";
Text[ portuguese ] = "~Expresso polivalente";
Text[ danish ] = "Pladsholder-udtryk";
Text[ french ] = "E~xpression substituante";
Text[ swedish ] = "P~latshllaruttryck";
Text[ dutch ] = "P~laatsvervangende tekst";
Text[ spanish ] = "~Expresin comodn";
Text[ english_us ] = "Placeholder expression";
Text[ chinese_simplified ] = "ͨ";
Text[ russian ] = " ";
Text[ polish ] = "Wyraenie symbolu wieloznacznego";
Text[ japanese ] = "ܲނ̕\\";
Text[ chinese_traditional ] = "qt-F";
Text[ arabic ] = " ";
Text[ greek ] = " ~ ";
Text[ korean ] = "÷̽Ȧμ";
Text[ turkish ] = "Genel arama terimi";
Text[ language_user1 ] = " ";
};
CheckBox CB_REGULAR
{
Pos = MAP_APPFONT( 190, 171 );
Size = MAP_APPFONT( 100, 10 );
Text = "Re~gulrer Ausdruck";
Text [ ENGLISH ] = "Re~gulrer Ausdruck";
TabStop = TRUE;
HelpId = HID_SEARCH_REGULAR;
Text[ italian ] = "Espressione regolare";
Text[ portuguese_brazilian ] = "re~gulrer Ausdruck";
Text[ portuguese ] = "~Expresso regular";
Text[ danish ] = "Regulrt udtryk";
Text[ french ] = "Caractre gnrique";
Text[ swedish ] = "Re~guljrt uttryck";
Text[ dutch ] = "Gangbare ~uitdrukking";
Text[ spanish ] = "Expresin ~regular";
Text[ english_us ] = "Regular expression";
Text[ chinese_simplified ] = "";
Text[ russian ] = " ";
Text[ polish ] = "Wyraenie regularne";
Text[ japanese ] = "K\\(~X)";
Text[ chinese_traditional ] = "`WF";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = " ǥ";
Text[ turkish ] = "Genel arama terimi";
Text[ language_user1 ] = " ";
};
CheckBox CB_APPROX
{
Pos = MAP_APPFONT( 190, 184 );
Size = MAP_APPFONT( 84, 10 );
Text = "~hnlichkeitssuche";
Text [ ENGLISH ] = "~hnlichkeitssuche";
TabStop = TRUE;
HelpId = HID_SEARCH_APPROX;
Text[ italian ] = "Ricerca per simili";
Text[ portuguese_brazilian ] = "~hnlichkeitssuche";
Text[ portuguese ] = "Pro~cura por semelhana";
Text[ danish ] = "Sg lignende";
Text[ french ] = "R~echerche de similarit";
Text[ swedish ] = "~Likhetsskning";
Text[ dutch ] = "~Zoeken naar overeenkomsten";
Text[ spanish ] = "~Bsqueda por semejanza";
Text[ english_us ] = "Similarity Search";
Text[ chinese_simplified ] = "Ѱ";
Text[ russian ] = " ";
Text[ polish ] = "Szukaj podobnych";
Text[ japanese ] = "ގ";
Text[ chinese_traditional ] = "ۦrjM";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "缺 ã";
Text[ turkish ] = "Benzerini ara";
Text[ language_user1 ] = " ";
};
PushButton PB_APPROXSETTINGS
{
Pos = MAP_APPFONT( 275, 182 );
Size = MAP_APPFONT( 14, 14 );
Text = "~..." ;
Text [ ENGLISH ] = "~..." ;
TabStop = TRUE ;
HelpId = HID_SEARCH_APPROXSETTINGS;
Text[ italian ] = "~...";
Text[ portuguese_brazilian ] = "~...";
Text[ portuguese ] = "~...";
Text[ danish ] = "...";
Text[ french ] = "~...";
Text[ swedish ] = "~...";
Text[ dutch ] = "~...";
Text[ spanish ] = "~...";
Text[ english_us ] = "...";
Text[ chinese_simplified ] = "...";
Text[ russian ] = "~...";
Text[ polish ] = "~...";
Text[ japanese ] = "...";
Text[ chinese_traditional ] = "~...";
Text[ arabic ] = "...";
Text[ greek ] = "~...";
Text[ korean ] = "...";
Text[ turkish ] = "~...";
Text[ language_user1 ] = " ";
};
CheckBox CB_HALFFULLFORMS
{
Pos = MAP_APPFONT( 105, 201 );
Size = MAP_APPFONT( 85, 10 );
TabStop = TRUE ;
Text = "Halb-/normalbreite Formen" ;
Text [ English ] = "Match half/full width forms" ;
Text[ english_us ] = "Match half/full-width forms";
Text[ portuguese ] = "Formas de meia-largura e largura normal";
Text[ russian ] = "/ ";
Text[ greek ] = " / ";
Text[ dutch ] = "Match half/full width forms";
Text[ french ] = "Match half/full width forms";
Text[ spanish ] = "Formas con ancho medio o normal";
Text[ italian ] = "Match half/full width forms";
Text[ danish ] = "Match half/full width forms";
Text[ swedish ] = "Halv-/normalbreda former";
Text[ polish ] = "Formy o zwykej/o poowie szerokoci";
Text[ portuguese_brazilian ] = "Match half/full width forms";
Text[ japanese ] = "pƑSp";
Text[ korean ] = "Match half/full width forms";
Text[ chinese_simplified ] = "Ǻȫַ";
Text[ chinese_traditional ] = "bΩMΦr";
Text[ turkish ] = "Match half/full width forms";
Text[ arabic ] = " / ";
};
CheckBox CB_SOUNDSLIKECJK
{
Pos = MAP_APPFONT( 190, 201 );
Size = MAP_APPFONT( 84, 10 );
TabStop = TRUE ;
Text = "hnl. Schreibweise (Jap.)" ;
Text [ English ] = "Sounds like (Japanese)" ;
Text[ english_us ] = "Sounds like (Japanese)";
Text[ portuguese ] = "Ortografia semelhante (Japons)";
Text[ russian ] = " ()";
Text[ greek ] = " ()";
Text[ dutch ] = "Sounds like (Japanese)";
Text[ french ] = "Sounds like (Japanese)";
Text[ spanish ] = "Ortografa similar (Japons)";
Text[ italian ] = "Sounds like (Japanese)";
Text[ danish ] = "Sounds like (Japanese)";
Text[ swedish ] = "Likn. skrivstt (japanska)";
Text[ polish ] = "Podobna pisownia (Japoski)";
Text[ portuguese_brazilian ] = "Sounds like (Japanese)";
Text[ japanese ] = "܂({)";
Text[ korean ] = "Sounds like (Japanese)";
Text[ chinese_simplified ] = "ַ()";
Text[ chinese_traditional ] = "r()";
Text[ turkish ] = "Sounds like (Japanese)";
Text[ arabic ] = " ()";
};
PushButton PB_SOUNDSLIKESETTINGS
{
Pos = MAP_APPFONT( 275, 199 );
Size = MAP_APPFONT( 14, 14 );
TabStop = TRUE ;
Text = "..." ;
Text [ english ] = "..." ;
Text [ english_us ] = "..." ;
Text[ portuguese ] = "...";
Text[ russian ] = "...";
Text[ greek ] = "...";
Text[ dutch ] = "...";
Text[ french ] = "...";
Text[ spanish ] = "...";
Text[ italian ] = "...";
Text[ danish ] = "...";
Text[ swedish ] = "...";
Text[ polish ] = "...";
Text[ portuguese_brazilian ] = "...";
Text[ japanese ] = "...";
Text[ korean ] = "...";
Text[ chinese_simplified ] = "...";
Text[ chinese_traditional ] = "...";
Text[ turkish ] = "...";
Text[ arabic ] = "...";
};
GroupBox GB_STATE
{
Pos = MAP_APPFONT( 6, 222 );
Size = MAP_APPFONT( 288, 25 );
Text = "Status" ;
Text [ ENGLISH ] = "State" ;
Text[ italian ] = "Stato";
Text[ portuguese_brazilian ] = "State";
Text[ portuguese ] = "Estado";
Text[ danish ] = "Status";
Text[ french ] = "Statut";
Text[ swedish ] = "Status";
Text[ dutch ] = "Status";
Text[ spanish ] = "Estado";
Text[ english_us ] = "State";
Text[ chinese_simplified ] = "״̬";
Text[ russian ] = "";
Text[ polish ] = "Stan";
Text[ japanese ] = "ð";
Text[ chinese_traditional ] = "A";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "";
Text[ turkish ] = "Durum";
Text[ language_user1 ] = " ";
};
FixedText FT_RECORDLABEL
{
Pos = MAP_APPFONT( 12, 232 );
Size = MAP_APPFONT( 40, 10 );
Text = "Datensatz :" ;
Text [ ENGLISH ] = "Datensatz :" ;
Text[ italian ] = "Record di dati:";
Text[ portuguese_brazilian ] = "Datensatz :";
Text[ portuguese ] = "Registo de dados:";
Text[ danish ] = "Datapost :";
Text[ french ] = "Enregistrement :";
Text[ swedish ] = "Datapost :";
Text[ dutch ] = "Record :";
Text[ spanish ] = "Registro :";
Text[ english_us ] = "Record :";
Text[ chinese_simplified ] = "Ŀ";
Text[ russian ] = " :";
Text[ polish ] = "Rekord :";
Text[ japanese ] = "ں:";
Text[ chinese_traditional ] = "ƱءG";
Text[ arabic ] = " :";
Text[ greek ] = " :";
Text[ korean ] = "ڵ:";
Text[ turkish ] = "Veri kmesi:";
Text[ language_user1 ] = " ";
};
FixedText FT_RECORD
{
Pos = MAP_APPFONT( 55, 232 );
Size = MAP_APPFONT( 30, 10 );
UniqueId = UID_SEARCH_RECORDSTATUS;
TabStop = TRUE;
};
FixedText FT_HINT
{
Pos = MAP_APPFONT( 99, 232 );
Size = MAP_APPFONT( 190, 10 );
};
PushButton PB_SEARCH
{
Pos = MAP_APPFONT( 244, 6 );
Size = MAP_APPFONT( 50, 14 );
Text = "~Suchen";
Text [ ENGLISH ] = "~Suchen";
TabStop = TRUE;
DefButton = TRUE;
HelpId = HID_SEARCH_BTN_SEARCH;
Text[ italian ] = "Cerca";
Text[ portuguese_brazilian ] = "~Suchen";
Text[ portuguese ] = "~Procurar";
Text[ danish ] = "Sg";
Text[ french ] = "~Rechercher";
Text[ swedish ] = "~Sk";
Text[ dutch ] = "~Zoeken";
Text[ spanish ] = "~Buscar";
Text[ english_us ] = "Search";
Text[ chinese_simplified ] = "Ѱ";
Text[ russian ] = "";
Text[ polish ] = "Szukaj";
Text[ japanese ] = "";
Text[ chinese_traditional ] = "jM";
Text[ arabic ] = "";
Text[ greek ] = "A";
Text[ korean ] = "ã";
Text[ turkish ] = "Ara";
Text[ language_user1 ] = " ";
};
CancelButton 1
{
Pos = MAP_APPFONT( 244, 26 );
Size = MAP_APPFONT( 50, 14 );
HelpId = HID_SEARCH_BTN_CLOSE;
Text = "S~chlieen";
Text [ ENGLISH ] = "S~chlieen";
TabStop = TRUE;
Text[ italian ] = "Chiudi";
Text[ portuguese_brazilian ] = "S~chlieen";
Text[ portuguese ] = "~Fechar";
Text[ danish ] = "Luk";
Text[ french ] = "F~ermer";
Text[ swedish ] = "~Stng";
Text[ dutch ] = "S~luiten";
Text[ spanish ] = "~Cerrar";
Text[ english_us ] = "~Close";
Text[ chinese_simplified ] = "ر(~C)";
Text[ russian ] = "~";
Text[ polish ] = "Zamknij";
Text[ japanese ] = "(~C)";
Text[ chinese_traditional ] = "(~C)";
Text[ arabic ] = "";
Text[ greek ] = "";
Text[ korean ] = "ݱ(~C)";
Text[ turkish ] = "Kapat";
Text[ language_user1 ] = " ";
};
HelpButton 1
{
Pos = MAP_APPFONT( 244, 46 );
Size = MAP_APPFONT( 50, 14 );
Text = "~Hilfe";
Text [ ENGLISH ] = "~Hilfe";
TabStop = TRUE;
Text[ italian ] = "?";
Text[ portuguese_brazilian ] = "~Hilfe";
Text[ portuguese ] = "~Ajuda";
Text[ danish ] = "~Hjlp";
Text[ french ] = "Ai~de";
Text[ swedish ] = "~Hjlp";
Text[ dutch ] = "~Help";
Text[ spanish ] = "~Ayuda";
Text[ english_us ] = "~Help";
Text[ chinese_simplified ] = "(~H)";
Text[ russian ] = "~";
Text[ polish ] = "~Pomoc";
Text[ japanese ] = "(~H)";
Text[ chinese_traditional ] = "(~H)";
Text[ arabic ] = "~";
Text[ greek ] = "";
Text[ korean ] = "(~H)";
Text[ turkish ] = "Yardm";
Text[ language_user1 ] = " ";
};
Text[ portuguese ] = "Localizar registo de dados";
Text[ russian ] = " ";
Text[ dutch ] = "Zoeken naar record";
Text[ french ] = "Recherche d'enregistrement";
Text[ spanish ] = "Bsqueda de registro de datos";
Text[ italian ] = "Ricerca record di dati";
Text[ danish ] = "Datapost-sgning";
Text[ swedish ] = "Datapostskning";
Text[ polish ] = "Wyszukiwanie rekordw";
Text[ portuguese_brazilian ] = "Data record search";
Text[ japanese ] = "ް ںނ̌";
Text[ chinese_simplified ] = "Ѱ";
Text[ chinese_traditional ] = "jMƶ";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = " ڵ ã";
Text[ turkish ] = "Veri kmesi aramas";
Text[ language_user1 ] = " ";
};
String RID_STR_RECORDSEARCH_METHODS
{
Text = "beliebig im Feld;am Feldanfang;am Feldende;ganzes Feld" ;
Text [ ENGLISH ] = "beliebig im Feld;am Feldanfang;am Feldende;ganzes Feld" ;
Text[ italian ] = "a piacere sul campo;all'inizio del campo;alla fine del campo;l'intero campo";
Text[ portuguese_brazilian ] = "beliebig im Feld;am Feldanfang;ganzes Feld";
Text[ portuguese ] = "qualquer posio dentro do campo; no incio do campo; no fim do campo; no campo inteiro";
Text[ danish ] = "vilkrlig i feltet;ved feltets begyndelse;ved feltets slutning;hele feltet";
Text[ french ] = " un endroit quelconque du champ;en dbut de champ;en fin de champ;le champ entier";
Text[ swedish ] = "var Du vill i fltet;i fltets brjan;i fltets slut;i hela fltet";
Text[ dutch ] = "willekeurige plaats in veld;aan veldeinde;aan veldbegin;compleet veld";
Text[ spanish ] = "cualquier parte en campo;al principio del campo;al final del campo;todo el campo";
Text[ english_us ] = "anywhere in the field;beginning of field;end of field;entire field";
Text[ chinese_simplified ] = "һֶΣֶοˣֶ";
Text[ language_user1 ] = " ";
Text[ russian ] = " ; ; ; ";
Text[ polish ] = "dowolnie w polu; na pocztku pola; na kocu pola;cae pole";
Text[ japanese ] = "̨ޓ̂ꏊ;̨ނ̏;̨ނ̏I;̨ޑS";
Text[ chinese_traditional ] = "N@Qb_lmQ";
Text[ arabic ] = " ; ";
Text[ greek ] = "; ; ; ";
Text[ korean ] = "ʵ忡 Ƿ;ʵ ۿ;ʵ ;ü ʵ";
Text[ turkish ] = "Alanda rasgele;Alan banda;Alan sonunda;Tm alanda";
};
String RID_STR_RECORDSEARCH_BUTTONS
{
// Bem. : das 'Suchen' in diesem String muss genau das selbe sein wie die Beschriftung des PB_SEARCH-Buttons im Dialog
Text = "~Vom Anfang;~Vom Ende;~Suchen;~Abbrechen" ;
Text [ ENGLISH ] = "~Vom Anfang;~Vom Ende;~Suchen;~Abbrechen" ;
Text[ italian ] = "dall'inizio;dalla fine; cerca;annulla";
Text[ portuguese_brazilian ] = "~vom Anfang;~vom Ende";
Text[ portuguese ] = "~do princpio; do ~fim; ~Localizar; ~Cancelar";
Text[ danish ] = "Fra begyndelsen;Fra slutningen;Sg;Annuller";
Text[ french ] = " partir du dbut ; partir de la fin ; Rechercher ; Annuler";
Text[ swedish ] = "~Frn brjan;~Frn slutet;~Sk;~Avbryt";
Text[ dutch ] = "~Vanaf begin;~Vanaf einde;~Zoeken;~Stoppen";
Text[ spanish ] = "~Desde el principio;~Desde el final;~Buscar;~Cancelar";
Text[ english_us ] = "From top;From bottom;Search;Cancel";
Text[ chinese_simplified ] = "ӿˣβˣѰȡ";
Text[ russian ] = " ;~ ;~;~";
Text[ polish ] = "od koca;od pocztku;Szukaj;Anuluj";
Text[ japanese ] = "ŏ;Ōォ;;ݾ";
Text[ chinese_traditional ] = "q_lFqFjMF";
Text[ arabic ] = " ɺ ɺ ˺ ";
Text[ greek ] = " ; ;~;~";
Text[ korean ] = "ó; ;ã;";
Text[ turkish ] = "Batan;Sondan;Ara;ptal";
Text[ language_user1 ] = " ";
};
ErrorBox RID_SVXERR_SEARCH_NORECORD
{
Buttons = WB_OK;
Message = "Es wurden keine Datenstze, die zu Ihren Angaben passen, gefunden !" ;
Message [ ENGLISH ] = "Es wurden keine Datenstze, die zu Ihren Angaben passen, gefunden !" ;
Message[ italian ] = "Non sono stati trovati record di dati corrispondenti ai vostri dati!";
Message[ portuguese_brazilian ] = "Es wurden keine Datenstze, die zu Ihren Angaben passen, gefunden !";
Message[ portuguese ] = "Impossvel encontrar registos de dados correspondentes s indicaes fornecidas!";
Message[ danish ] = "Der blev ikke fundet nogen dataposter, som svarer til dine angivelser!";
Message[ french ] = "Aucun enregistrement trouv qui corresponde vos indications !";
Message[ swedish ] = "Inga dataposter har hittats som passar till Dina angivelser!";
Message[ dutch ] = "Er werden geen records gevonden die bij de vermelde gegevens passen !";
Message[ spanish ] = "No se encontr ningn registro de datos adecuado a su informacin!";
Message[ english_us ] = "No records corresponding to your data found!";
Message[ chinese_simplified ] = "ûҵĿ";
Message[ russian ] = ", , !";
Message[ polish ] = "Nie znaleziono adnych rekordw odpowiadajcych wpisanym danym!";
Message[ japanese ] = "͍ڂɊYںނ܂!";
Message[ chinese_traditional ] = "SŦXzwƱءT";
Message[ arabic ] = " !";
Message[ greek ] = " , !";
Message[ korean ] = " Ϳ ´ ڵ带 ã ߽ϴ!";
Message[ turkish ] = "Girdiiniz verilere uygun veri kmeleri bulunamad!";
Message[ language_user1 ] = " ";
};
ErrorBox RID_SVXERR_SEARCH_GENERAL_ERROR
{
Buttons = WB_OK;
Message = "Es trat ein nicht nher bekannter Fehler auf. Die Suche konnte nicht beendet werden !" ;
Message [ ENGLISH ] = "Es trat ein nicht nher bekannter Fehler auf. Die Suche konnte nicht beendet werden !" ;
Message[ english_us ] = "An unknown error occurred. The search could not be terminated!";
Message[ portuguese ] = "Surgiu um erro desconhecido. Impossvel concluir a procura!";
Message[ russian ] = " . !";
Message[ dutch ] = "Er is een onbekende fout opgetreden: De zoekactie kon niet worden beindigd!";
Message[ french ] = "Une erreur inconnue est survenue. La recherche n'a pas pu tre termine !";
Message[ spanish ] = "Ha ocurrido un error desconocido. La bsqueda no se pudo completar.";
Message[ italian ] = "Impossibile terminare la ricerca. Si verificato un errore non ben definito.";
Message[ danish ] = "Der opstod en ukendt fejl. Det var ikke muligt at afslutte sgningen!";
Message[ swedish ] = "Det har uppsttt ett oknt fel. Det gick inte att avsluta skningen!";
Message[ polish ] = "Wystpi bliej nieznany bd. Wyszukiwania ne mona byo zakoczy!";
Message[ portuguese_brazilian ] = "Es trat ein nicht nher bekannter Fehler auf. Die Suche konnte nicht beendet werden !";
Message[ japanese ] = "悭킩Ȃװ܂BIł܂!";
Message[ chinese_simplified ] = "һĴѰ";
Message[ chinese_traditional ] = "X{@Ӥ~CLkjMI";
Message[ arabic ] = " . !";
Message[ greek ] = " . !";
Message[ korean ] = "˷ ߽ϴ. ã⸦ ߽ϴ!";
Message[ turkish ] = "Ayrntlar bilinmeyen bir hata olutu. Arama ilemi tamamlanamad!";
Message[ language_user1 ] = " ";
};
String RID_STR_SEARCH_OVERFLOW
{
Text = "berlauf, Suche wurde am Anfang forgesetzt;berlauf, Suche wurde am Ende forgesetzt" ;
Text [ ENGLISH ] = "berlauf, Suche wurde am Anfang forgesetzt;berlauf, Suche wurde am Ende forgesetzt" ;
Text[ italian ] = "Overflow, la ricerca stata proseguita dall'inizio;Overflow, la ricerca stata proseguita dalla fine";
Text[ portuguese_brazilian ] = "berlauf, Suche wurde am Anfang forgesetzt;berlauf, Suche wurde am Ende forgesetzt";
Text[ portuguese ] = "Transbordo - Localizar continua pelo incio;Transbordo - Localizar continua pelo final.";
Text[ danish ] = "Overlb, sgning blev fortsat ved begyndelsen;Overlb, sgningen blev fortsat ved slutningen";
Text[ french ] = "Dbordement ; la recherche a t poursuivie vers le haut;Dbordement ; la recherche a t poursuivie vers le bas";
Text[ swedish ] = "Spill, Skningen fortstts frn brjan;Spill, Skningen fortstts frn slutet";
Text[ dutch ] = "Overloop, zoeken werd voortgezet aan het begin; Overloop, zoeken werd voortgezet aan het einde";
Text[ spanish ] = "Desbordamiento; la bsqueda contina por el principio;Desbordamiento; la bsqueda contina por el final";
Text[ english_us ] = "Overflow, search continued at the beginning;Overflow, search continued at the end";
Text[ chinese_simplified ] = "ֵѰ˼ֵѰβ˼";
Text[ language_user1 ] = " ";
Text[ russian ] = ", ;, ";
Text[ polish ] = "Przepenienie, Kontynuuj wyszukiwanie na pocztku;Przepenienie, Kontynuuj wyszukiwanie na kocu";
Text[ japanese ] = "ް۰A͍ŏős;ް۰A͍Ōős";
Text[ chinese_traditional ] = "ȡAjMq_lm~FȡAjMqm~";
Text[ arabic ] = "֡ ; ֡ ";
Text[ greek ] = ", ,, ";
Text[ korean ] = "÷- ã ۺκк Ǿ;÷-ã Ǿ";
Text[ turkish ] = "Tama, Arama ilemine batan devam edildi;Tama, Arama ilemine sondan devam edildi";
};
String RID_STR_SEARCH_COUNTING
{
Text = "zhle Datenstze" ;
Text [ ENGLISH ] = "zhle Datenstze" ;
Text[ italian ] = "Overflow, la ricerca stata proseguita dall'inizio, la ricerca stata proseguita dalla fine";
Text[ portuguese_brazilian ] = "berlauf, Suche wurde am Anfang forgesetzt;berlauf, Suche wurde am Ende forgesetzt";
Text[ portuguese ] = "Contar registos de dados";
Text[ danish ] = "tller dataposter";
Text[ french ] = "Compter les enregistrements";
Text[ swedish ] = "Rkna dataposter";
Text[ dutch ] = "tel records";
Text[ spanish ] = "contando registros de datos";
Text[ english_us ] = "counting records";
Text[ chinese_simplified ] = "ֵѰ˼ֵѰβ˼";
Text[ russian ] = " ";
Text[ polish ] = "Licz rekordy";
Text[ japanese ] = "ںނ𐔂";
Text[ chinese_traditional ] = "ȡAjMq~FȡAjMq~";
Text[ arabic ] = " ";
Text[ greek ] = " ";
Text[ korean ] = "ڵ ";
Text[ turkish ] = "Veri kmeleri saylyor";
Text[ language_user1 ] = " ";
};
|