1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
|
/*************************************************************************
*
* $RCSfile: sbabrw.src,v $
*
* $Revision: 1.25 $
*
* last change: $Author: kz $ $Date: 2001-03-09 20:38:18 $
*
* 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): _______________________________________
*
*
************************************************************************/
#ifndef _DBA_DBACCESS_HELPID_HRC_
#include "dbaccess_helpid.hrc"
#endif
#ifndef _DBU_RESOURCE_HRC_
#include "dbu_resource.hrc"
#endif
#ifndef DBACCESS_UI_BROWSER_ID_HXX
#include "browserids.hxx"
#endif
// #include <sfx2/sfx.hrc>
#include <svx/globlmn.hrc>
#ifndef DBAUI_TOOLBOX_HXX
#include "toolbox.hrc"
#endif
#define IL_TOOL \
MaskColor = Color {\
Red = 0xC000;\
Green = 0xC000;\
Blue = 0xC000;\
};\
\
IdList = {\
ID_BROWSER_EXPLORER;\
ID_BROWSER_SEARCH;\
ID_BROWSER_REFRESH;\
ID_BROWSER_SORTUP;\
ID_BROWSER_SORTDOWN;\
ID_BROWSER_ORDERCRIT;\
ID_BROWSER_FILTERCRIT;\
ID_BROWSER_AUTOFILTER;\
ID_BROWSER_COUNTALL;\
ID_BROWSER_INSERTCOLUMNS;\
ID_BROWSER_INSERTCONTENT;\
ID_BROWSER_FORMLETTER;\
ID_BROWSER_SQL;\
ID_BROWSER_ADDTABLE;\
ID_BROWSER_DESIGN;\
ID_BROWSER_REMOVEFILTER;\
ID_BROWSER_UNDO;\
ID_BROWSER_SAVEDOC;\
ID_BROWSER_EDITDOC;\
ID_BROWSER_CUT;\
ID_BROWSER_COPY;\
ID_BROWSER_PASTE;\
SID_WIN_FULLSCREEN;\
SID_NEWDOC;\
SID_PRINTDOCDIRECT;\
ID_BROWSER_REDO;\
ID_BROWSER_FILTERED;\
ID_BROWSER_QUERY_EXECUTE;\
ID_BROWSER_CLEAR_QUERY;\
ID_BROWSER_QUERY_VIEW_FUNCTIONS;\
ID_BROWSER_QUERY_VIEW_TABLES;\
ID_BROWSER_QUERY_VIEW_ALIASES;\
ID_BROWSER_QUERY_DISTINCT_VALUES;\
ID_BROWSER_CLOSE;\
ID_BROWSER_ESACPEPROCESSING;\
ID_BROWSER_SAVEASDOC;\
ID_QUERY_ZOOM_IN;\
ID_QUERY_ZOOM_OUT;\
ID_REALTION_ADD_RELATION;\
};\
IdCount = {\
39;\
}
// Default Image-Liste ----------------------------------------------------------------
ImageList RID_DEFAULTIMAGELIST_SC
{
ImageBitmap = Bitmap
{
File = "scqrtl.bmp";
};
IL_TOOL ;
};
ImageList RID_DEFAULTIMAGELIST_LC
{
ImageBitmap = Bitmap
{
File = "lcqrtl.bmp" ;
};
IL_TOOL ;
};
// Toolbox----------------------------------------------------------------------------
// HelpIds duerfen nur in dieser Form angegeben werden,
// ansonsten knnen keine langnamen erzeugt werden
ToolBox RID_BRW_QRY_TOOLBOX
{
SVLook = TRUE ;
Pos = MAP_APPFONT ( 3 , 1 ) ;
Size = MAP_APPFONT ( 200 , 14 ) ;
OutputSize = TRUE ;
Align = BOXALIGN_TOP ;
HideWhenDeactivate = TRUE ;
ItemImageList = RID_DEFAULTIMAGELIST_SC ;
HelpId = HID_TLB_TABBROWSER ;
ItemList =
{
CUR_ITEM
{
MID_BROWSER_EXPLORER
HelpId = SID_DSBROWSER_EXPLORER ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_FM_SEARCH
HelpId = SID_FM_SEARCH ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_SBA_QRY_SORTUP
HelpId = SID_FM_SORTUP ;
};
CUR_ITEM
{
MID_SBA_QRY_SORTDOWN
HelpId = SID_FM_SORTDOWN ;
};
CUR_ITEM
{
MID_SBA_QRY_AUTOFILTER
HelpId = SID_FM_AUTOFILTER ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_SBA_QRY_FILTERCRIT
HelpId = SID_FM_FILTERCRIT ;
};
CUR_ITEM
{
MID_SBA_QRY_ORDERCRIT
HelpId = SID_FM_ORDERCRIT ;
};
CUR_ITEM
{
MID_SBA_QRY_REMOVEFILTER
HelpId = SID_FM_REMOVE_FILTER_SORT ;
};
CUR_ITEM
{
MID_SBA_BROWSER_FILTERED
HelpId = SID_FM_FORM_FILTERED ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_SBA_QRY_REFRESH
HelpId = SID_FM_REFRESH ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_SBA_QRY_EDIT
HelpId = SID_EDITDOC ;
};
CUR_ITEM
{
MID_SBA_QRY_SAVE
HelpID = ID_BROWSER_SAVEDOC ;
};
CUR_ITEM
{
MID_SBA_QRY_UNDO
HelpId = SID_UNDO ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_SBA_QRY_CUT
HelpId = SID_CUT ;
};
CUR_ITEM
{
MID_SBA_QRY_COPY
HelpId = SID_COPY ;
};
CUR_ITEM
{
MID_SBA_QRY_PASTE
HelpId = SID_PASTE ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_BROWSER_INSERTCOLUMNS
HelpId = SID_SBA_BRW_INSERT ;
};
CUR_ITEM
{
MID_BROWSER_INSERTCONTENT
HelpId = SID_SBA_BRW_UPDATE ;
};
CUR_ITEM
{
MID_BROWSER_FORMLETTER
HelpId = SID_SBA_BRW_MERGE ;
};
CUR_ITEM
{
Identifier = ID_BROWSER_CLOSE ;
HelpId = SID_CLOSEDOC ;
Hide = TRUE;
Text = "Schlieen" ;
Text [ ENGLISH ] = "Close" ;
Text[ english_us ] = "Close";
Text[ portuguese ] = "Fechar";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Close";
Text[ french ] = "Fermer";
Text[ spanish ] = "Cerrar";
Text[ italian ] = "Chiudi";
Text[ danish ] = "Close";
Text[ swedish ] = "Stng";
Text[ polish ] = "Zamknij";
Text[ portuguese_brazilian ] = "Close";
Text[ japanese ] = "";
Text[ korean ] = "Close";
Text[ chinese_simplified ] = "ر";
Text[ chinese_traditional ] = "";
Text[ turkish ] = "Close";
Text[ arabic ] = "";
};
};
};
ToolBox RID_BRW_TAB_TOOLBOX
{
SVLook = TRUE ;
Pos = MAP_APPFONT ( 3 , 1 ) ;
Size = MAP_APPFONT ( 200 , 14 ) ;
OutputSize = TRUE ;
Align = BOXALIGN_TOP ;
ItemImageList = RID_DEFAULTIMAGELIST_SC ;
HideWhenDeactivate = TRUE ;
HelpId = HID_TLB_TABBROWSER ;
ItemList =
{
CUR_ITEM
{
MID_BROWSER_EXPLORER
HelpId = SID_DSBROWSER_EXPLORER ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_FM_SEARCH
HelpId = SID_FM_SEARCH ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_SBA_QRY_SORTUP
HelpId = SID_FM_SORTUP ;
};
CUR_ITEM
{
MID_SBA_QRY_SORTDOWN
HelpId = SID_FM_SORTDOWN ;
};
CUR_ITEM
{
MID_SBA_QRY_AUTOFILTER
HelpId = SID_FM_AUTOFILTER ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_SBA_QRY_FILTERCRIT
HelpId = SID_FM_FILTERCRIT ;
};
CUR_ITEM
{
MID_SBA_QRY_ORDERCRIT
HelpId = SID_FM_ORDERCRIT ;
};
CUR_ITEM
{
MID_SBA_QRY_REMOVEFILTER
HelpId = SID_FM_REMOVE_FILTER_SORT ;
};
CUR_ITEM
{
MID_SBA_BROWSER_FILTERED
HelpId = SID_FM_FORM_FILTERED ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_SBA_QRY_REFRESH
HelpId = SID_FM_REFRESH ;
};
CUR_SEPARATOR ;
CUR_ITEM
{
MID_BROWSER_INSERTCOLUMNS
HelpId = SID_SBA_BRW_INSERT ;
};
CUR_ITEM
{
MID_BROWSER_INSERTCONTENT
HelpId = SID_SBA_BRW_UPDATE ;
};
CUR_ITEM
{
MID_BROWSER_FORMLETTER
HelpId = SID_SBA_BRW_MERGE ;
};
};
};
String RID_STR_LOADING_DATASOURCE
{
Text = "Daten laden";
Text [ ENGLISH ] = "load data";
Text[ english_us ] = "Load data";
Text[ portuguese ] = "Carregar dados";
Text[ greek ] = " ";
Text[ dutch ] = "Gegevens laden";
Text[ french ] = "Charger les donnes";
Text[ spanish ] = "Cargar datos";
Text[ swedish ] = "Ladda data";
Text[ russian ] = " ";
Text[ italian ] = "Carica dati";
Text[ danish ] = "Indls data";
Text[ polish ] = "aduj dane";
Text[ portuguese_brazilian ] = "load data";
Text[ japanese ] = "ް̓ǂݍ";
Text[ korean ] = " ε";
Text[ chinese_simplified ] = "";
Text[ chinese_traditional ] = "U";
Text[ arabic ] = " ";
Text[ turkish ] = "Verileri ykle";
};
QueryBox QUERY_BRW_SAVEMODIFIED
{
Buttons = WB_YES_NO_CANCEL ;
DefButton = WB_DEF_YES ;
/* ### ACHTUNG: Neuer Text in Resource? Soll der genderte Datensatz gespeichert werden? : Soll der genderte Datensatz gespeichert werden? */
Message = "Der aktuelle Datensatz wurde gendert.\nSollen die nderungen gespeichert werden?" ;
Message [ English ] = "The current row has been modified.\nDo you want to save your changes?" ;
Message [ english_us ] = "The current record has been changed.\nDo you want to save the changes?" ;
Message[ portuguese ] = "O registo de dados activo foi modificado.\nGuardar as modificaes?";
Message[ russian ] = " .\n ?";
Message[ dutch ] = "De actuele record werd gewijzigd.\nWilt u de wijzigingen opslaan?";
Message[ french ] = "L'enregistrement actif a t modifi.\nVoulez-vous enregistrer les modifications ?";
Message[ spanish ] = "El registro actual ha sido modificado.\nDesea guardar las modificaciones?";
Message[ italian ] = "Il record di dati attuale stato modificato.\nVolete salvare le modifiche?";
Message[ danish ] = "Den aktuelle datapost er blevet ndret.\nSkal ndringerne gemmes?";
Message[ swedish ] = "Den aktuella dataposten har ndrats.\nSka ndringarna sparas?";
Message[ polish ] = "Aktualny rekord zosta zmodyfikowany.\nCzy zapisa zmodyfikowane dane?";
Message[ portuguese_brazilian ] = "Soll der genderter Datensatz gespeichert werden?";
Message[ japanese ] = "݂ںނ͕ύX܂BύXۑ܂B";
Message[ chinese_simplified ] = "ĿѾġ\nҪ̸ĺݼ¼";
Message[ chinese_traditional ] = "eƤwgܧCnxsܧƶءH";
Message[ arabic ] = " .\n ";
Message[ dutch ] = "De actuele record werd gewijzigd.\nWilt u de wijzigingen opslaan?";
Message[ chinese_simplified ] = "ĿѾġ\nҪ̸ĺݼ¼";
Message[ greek ] = " .\n ;";
Message[ korean ] = " ڵ尡 Ǿϴ.\n Ͻðڽϱ?";
Message[ turkish ] = "Gncel veri kmesi deitirildi.\nDeiiklikler saklansn m?";
Message[ language_user1 ] = " ";
};
QueryBox QUERY_BRW_DELETE_ROWS
{
Buttons = WB_YES_NO ;
/* ### ACHTUNG: Neuer Text in Resource? Sollen die selektierten Daten gelscht werden? : Sollen die selektierten Daten gelscht werden? */
Message = "Sollen die selektierten Daten gelscht werden?" ;
Message [ English ] = "Delete selected row(s)." ;
Message [ portuguese ] = "Eliminar os dados seleccionados?" ;
Message [ english_us ] = "Do you want to delete the selected data?" ;
Message [ portuguese_brazilian ] = "Sollen die selektierten Daten gelscht werden?" ;
Message [ swedish ] = "Skall de markerade data raderas?" ;
Message [ danish ] = "Skal de udvalgte data slettes?" ;
Message [ italian ] = "Eliminare i dati selezionati?" ;
Message [ spanish ] = "Desea eliminar los datos seleccionados?" ;
Message [ french ] = "Voulez-vous supprimer les donnes slectionnes ?" ;
Message [ dutch ] = "Wilt u de geselecteerde gegevens verwijderen?" ;
Message[ chinese_simplified ] = "Ҫɾѡе";
Message[ russian ] = " ?";
Message[ polish ] = "Usun zaznaczone dane?";
Message[ japanese ] = "Iް폜܂B";
Message[ chinese_traditional ] = "znR襤ơS";
Message[ arabic ] = " ɿ";
Message[ greek ] = " ;";
Message[ korean ] = "õ Ͻðڽϱ?";
Message[ turkish ] = "Seilen veriler silinsin mi?";
Message[ language_user1 ] = " ";
};
String RID_STR_DATABROWSER_FILTERED
{
Text = "(gefiltert)" ;
Text [ English ] = "(filtered)" ;
Text [ english_us ] = "(filtered)" ;
Text[ italian ] = "(filtrato)";
Text[ portuguese_brazilian ] = "(filtered)";
Text[ portuguese ] = "(filtrado)";
Text[ danish ] = "(filtreret)";
Text[ french ] = "(filtr)";
Text[ swedish ] = "(filtrerad)";
Text[ dutch ] = "(gefilterd)";
Text[ spanish ] = "(filtrado)";
Text[ chinese_simplified ] = "(Ѿɸѡ)";
Text[ russian ] = "()";
Text[ polish ] = "(przefiltrowane)";
Text[ japanese ] = "(̨ς)";
Text[ chinese_traditional ] = "(wgz)";
Text[ arabic ] = "()";
Text[ dutch ] = "(gefilterd)";
Text[ chinese_simplified ] = "(Ѿɸѡ)";
Text[ greek ] = "()";
Text[ korean ] = "(͵)";
Text[ turkish ] = "(filtrelenmi)";
Text[ language_user1 ] = " ";
};
String SBA_BROWSER_SETTING_ORDER
{
Text = "Fehler beim Setzen der Sortier-Kriterien";
Text [ english ] = "error setting the sort criteria";
Text [ english_us ] = "Error setting the sort criteria";
Text[ portuguese ] = "Erro ao definir critrios de ordem";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Fout bij instellen van sorteercriteria";
Text[ french ] = "Erreur de dfinition des critres de tri";
Text[ spanish ] = "Error al definir los criterios de ordenacin";
Text[ italian ] = "Errore nell'impostare i criteri";
Text[ danish ] = "Fejl ved definition af sorteringskriterierne";
Text[ swedish ] = "Fel vid definition av sorteringskriterier";
Text[ polish ] = "Bd podczas osadzania kryteriw sortowania";
Text[ portuguese_brazilian ] = "error setting the sort criteria";
Text[ japanese ] = "בւ̐ݒ莞̴װ";
Text[ korean ] = "ı ÿ ";
Text[ chinese_simplified ] = "趨ʱ";
Text[ chinese_traditional ] = "]wsƱɵoͤ@ӿ~";
Text[ arabic ] = " ";
Text[ turkish ] = "Sralama ltlerinin ayarlanmasnda hata";
};
String SBA_BROWSER_SETTING_FILTER
{
Text = "Fehler beim Setzen der Filter-Kriterien";
Text [ english ] = "error setting the filter criteria";
Text [ english_us ] = "Error setting the filter criteria";
Text[ portuguese ] = "Erro ao definir critrios dos filtros";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Fout bij instellen van filtercriteria";
Text[ french ] = "Erreur de dfinition des critres de filtre";
Text[ spanish ] = "Error al definir los criterios de filtro";
Text[ italian ] = "Errore nell'impostare i criteri del filtro";
Text[ danish ] = "Fejl ved definition af filterkriterierne";
Text[ swedish ] = "Fel vid definition av filterkriterier";
Text[ polish ] = "Bd podczas osadzania kryteriw filtra";
Text[ portuguese_brazilian ] = "error setting the filter criteria";
Text[ japanese ] = "̨̐ݒ莞̴װ";
Text[ korean ] = "ͱ ÿ ";
Text[ chinese_simplified ] = "趨ɸѡʱ";
Text[ chinese_traditional ] = "]wzɵoͤ@ӿ~";
Text[ arabic ] = " ";
Text[ turkish ] = "Filtre ltlerinin ayarlanmasnda hata";
};
String RID_STR_CONNECTION_LOST
{
Text = "Vebindung verloren";
Text [ english ] = "connection lost";
Text [ english_us ] = "Connection lost";
Text[ portuguese ] = "Ligao interrompida";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "Verbinding verbroken";
Text[ french ] = "Connexion perdue";
Text[ spanish ] = "Se perdi la conexin";
Text[ italian ] = "Il collegamento stato interrotto";
Text[ danish ] = "Tabt forbindelse";
Text[ swedish ] = "Bruten frbindelse";
Text[ polish ] = "Brak poczenia";
Text[ portuguese_brazilian ] = "connection lost";
Text[ japanese ] = "ڑ͐ؒf܂";
Text[ korean ] = " ";
Text[ chinese_simplified ] = "ʧȥ";
Text[ chinese_traditional ] = "suwg_";
Text[ arabic ] = " ";
Text[ turkish ] = "Balant koptu";
};
Image QUERYFOLDER_TREE_ICON
{
ImageBitmap = Bitmap { File = "sx03201.bmp"; };
MaskColor = Color { Red = 0xFFFF; Green = 0x0; Blue = 0xFFFF; };
};
Image QUERY_TREE_ICON
{
ImageBitmap = Bitmap { File = "sx03202.bmp"; };
MaskColor = Color { Red = 0xFFFF; Green = 0x0; Blue = 0xFFFF; };
};
String RID_STR_QUERIES_CONTAINER
{
Text = "Abfragen";
Text [ english ] = "Queries";
Text [ english_us ] = "Queries";
Text[ portuguese ] = "Consultas";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Queries";
Text[ french ] = "Requtes";
Text[ spanish ] = "Consultas";
Text[ italian ] = "Ricerche";
Text[ danish ] = "Queries";
Text[ swedish ] = "Skningar";
Text[ polish ] = "Kwerendy";
Text[ portuguese_brazilian ] = "Queries";
Text[ japanese ] = "ذ";
Text[ korean ] = "Queries";
Text[ chinese_simplified ] = "Queries";
Text[ chinese_traditional ] = "d";
Text[ turkish ] = "Queries";
Text[ arabic ] = "";
};
String RID_STR_TABLES_CONTAINER
{
Text = "Tabellen";
Text [ english ] = "Tables";
Text [ english_us ] = "Tables";
Text[ portuguese ] = "Tabelas";
Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Tables";
Text[ french ] = "Tables";
Text[ spanish ] = "Tablas";
Text[ italian ] = "Tabelle";
Text[ danish ] = "Tables";
Text[ swedish ] = "Tabeller";
Text[ polish ] = "Tabele";
Text[ portuguese_brazilian ] = "Tables";
Text[ japanese ] = "ð";
Text[ korean ] = "Tables";
Text[ chinese_simplified ] = "Tables";
Text[ chinese_traditional ] = "";
Text[ turkish ] = "Tables";
Text[ arabic ] = "Tables";
};
Menu MENU_BROWSERTREE_CONTEXT
{
ItemList =
{
MenuItem
{
Identifier = ID_TREE_ADMINISTRATE ;
HelpId = HID_BROWSER_DSADMINISTRATE ;
Text = "~Datenquellen verwalten ..." ;
Text [ english ] = "administrate ~data sources ..." ;
Text [ english_us ] = "Administrate ~Data Sources..." ;
Text[ portuguese ] = "A~dministrar fontes de dados...";
Text[ russian ] = "~ ...";
Text[ greek ] = " ~...";
Text[ dutch ] = "administrate ~data sources ...";
Text[ french ] = "Grer les sources de ~donnes...";
Text[ spanish ] = "Administrar fuente de datos...";
Text[ italian ] = "Amministra ~sorgente dati...";
Text[ danish ] = "administrate ~data sources ...";
Text[ swedish ] = "Administrera ~datakllor...";
Text[ polish ] = "Administruj rda danych...";
Text[ portuguese_brazilian ] = "administrate ~data sources ...";
Text[ japanese ] = "ް̊Ǘ(~D)...";
Text[ korean ] = "administrate ~data sources ...";
Text[ chinese_simplified ] = "Դ...";
Text[ chinese_traditional ] = "zƷ...";
Text[ turkish ] = "administrate ~data sources ...";
Text[ arabic ] = " ...";
};
MenuItem
{
Identifier = ID_TREE_CLOSE_CONN ;
HelpId = HID_BROWSER_CLOSECONN ;
Text = "Verbindung s~chlieen" ;
Text [ english ] = "~close connection" ;
Text [ english_us ] = "Disco~nnect" ;
Text[ portuguese ] = "~Fechar ligao";
Text[ russian ] = "~ ";
Text[ greek ] = " ";
Text[ dutch ] = "~close connection";
Text[ french ] = "D~connecter";
Text[ spanish ] = "Cerrar conexin";
Text[ italian ] = "C~hiudi collegamento";
Text[ danish ] = "~close connection";
Text[ swedish ] = "Stng fr~bindelse";
Text[ polish ] = "Rozcz";
Text[ portuguese_brazilian ] = "~close connection";
Text[ japanese ] = "ڑ(~C)";
Text[ korean ] = "~close connection";
Text[ chinese_simplified ] = "ر";
Text[ chinese_traditional ] = "su";
Text[ turkish ] = "~close connection";
Text[ arabic ] = " ";
};
MenuItem
{
Identifier = ID_TREE_REBUILD_CONN ;
HelpId = HID_BROWSER_REFRESHCONN ;
Text = "Verbindung e~rneuern" ;
Text [ english ] = "~refresh connection" ;
Text [ english_us ] = "~Refresh Connection" ;
Text[ portuguese ] = "~Actualizar ligao";
Text[ russian ] = "~ ";
Text[ greek ] = " ";
Text[ dutch ] = "~refresh connection";
Text[ french ] = "~Rtablir la connexion";
Text[ spanish ] = "Actualizar conexin";
Text[ italian ] = "Ag~giorna collegamento";
Text[ danish ] = "~refresh connection";
Text[ swedish ] = "F~rnya frbindelse";
Text[ polish ] = "Odtwrz poczenie";
Text[ portuguese_brazilian ] = "~refresh connection";
Text[ japanese ] = "ڑXV(~R)";
Text[ korean ] = "~refresh connection";
Text[ chinese_simplified ] = "";
Text[ chinese_traditional ] = "ssu";
Text[ turkish ] = "~refresh connection";
Text[ arabic ] = " ";
};
MenuItem
{
Separator = TRUE;
};
MenuItem
{
Identifier = ID_TREE_QUERY_CREATE_DESIGN ;
HelpId = HID_BROWSER_QUERY_CREATE_DESIGN ;
Text = "neuer ~Abfrageentwurf" ;
Text [ english ] = "new ~querydesign" ;
Text [ english_us ] = "New ~Query Design" ;
Text[ portuguese ] = "~Novo esboo de consulta";
Text[ russian ] = " ";
Text[ greek ] = " ~ ";
Text[ dutch ] = "new ~querydesign";
Text[ french ] = "Nouvelle bauche de ~requte";
Text[ spanish ] = "nuevo diseo de consulta";
Text[ italian ] = "Nuova ~struttura di ricerca";
Text[ danish ] = "new ~querydesign";
Text[ swedish ] = "Nytt skningsutk~ast";
Text[ polish ] = "Nowy projekt kwerendy";
Text[ portuguese_brazilian ] = "new ~querydesign";
Text[ japanese ] = "Vذ(~Q)";
Text[ korean ] = "new ~querydesign";
Text[ chinese_simplified ] = "µIJѯ";
Text[ chinese_traditional ] = "sd߳]p";
Text[ turkish ] = "new ~querydesign";
Text[ arabic ] = " ";
};
MenuItem
{
Identifier = ID_TREE_QUERY_CREATE_TEXT ;
HelpId = HID_BROWSER_QUERY_CREATE_TEXT ;
Text = "neuen ~SQL Befehl eingeben" ;
Text [ english ] = "new ~SQL command" ;
Text [ english_us ] = "Enter New ~SQL Command" ;
Text[ portuguese ] = "Novo comando ~SQL";
Text[ russian ] = " ~SQL";
Text[ greek ] = " ~SQL";
Text[ dutch ] = "new ~SQL command";
Text[ french ] = "Saisir une nouvelle instruction ~SQL";
Text[ spanish ] = "Introducir nuevo comando ~SQL";
Text[ italian ] = "Nuovo comando S~QL";
Text[ danish ] = "new ~SQL command";
Text[ swedish ] = "Mata in nytt ~SQL-kommando";
Text[ polish ] = "Wpisz nowe polecenie SQL";
Text[ portuguese_brazilian ] = "new ~SQL command";
Text[ japanese ] = "V ~SQL ނ̓";
Text[ korean ] = "new ~SQL command";
Text[ chinese_simplified ] = "µ ~SQL ָ";
Text[ chinese_traditional ] = "s~SQLO";
Text[ turkish ] = "new ~SQL command";
Text[ arabic ] = " SQL ";
};
MenuItem
{
Identifier = ID_TREE_QUERY_EDIT ;
HelpId = HID_BROWSER_QUERY_EDIT ;
Text = "Abfrage b~earbeiten" ;
Text [ english ] = "~edit query" ;
Text [ english_us ] = "~Edit Query" ;
Text[ portuguese ] = "E~ditar consulta";
Text[ russian ] = "~ ";
Text[ greek ] = "~ ";
Text[ dutch ] = "~edit query";
Text[ french ] = "~diter la requte";
Text[ spanish ] = "Editar consulta";
Text[ italian ] = "Modi~fica ricerca";
Text[ danish ] = "~edit query";
Text[ swedish ] = "R~edigera skning";
Text[ polish ] = "Edytuj kwerend";
Text[ portuguese_brazilian ] = "~edit query";
Text[ japanese ] = "ذ̕ҏW(~E)";
Text[ korean ] = "~edit query";
Text[ chinese_simplified ] = "༭ѯ";
Text[ chinese_traditional ] = "sd";
Text[ turkish ] = "~edit query";
Text[ arabic ] = " ";
};
MenuItem
{
Separator = TRUE;
};
MenuItem
{
Identifier = ID_TREE_QUERY_DELETE ;
HelpId = HID_BROWSER_QUERY_DELETE ;
Text = "Abfrage ~lschen" ;
Text [ english ] = "de~lete query" ;
Text [ english_us ] = "De~lete Query" ;
Text[ portuguese ] = "Eli~minar consulta";
Text[ russian ] = "~ ";
Text[ greek ] = " ";
Text[ dutch ] = "de~lete query";
Text[ french ] = "~Supprimer la requte";
Text[ spanish ] = "Eliminar consulta";
Text[ italian ] = "~Elimina ricerca";
Text[ danish ] = "de~lete query";
Text[ swedish ] = "Radera skn~ing";
Text[ polish ] = "Usu kwerend";
Text[ portuguese_brazilian ] = "de~lete query";
Text[ japanese ] = "ذ̍폜(~L)";
Text[ korean ] = "de~lete query";
Text[ chinese_simplified ] = "ɾѯ";
Text[ chinese_traditional ] = "Rd";
Text[ turkish ] = "de~lete query";
Text[ arabic ] = " ";
};
MenuItem
{
Identifier = ID_TREE_QUERY_COPY ;
HelpId = HID_BROWSER_QUERY_COPY ;
Text = "Abfrage ~kopieren" ;
Text [ english ] = "c~opy query" ;
Text [ english_us ] = "C~opy Query" ;
Text[ portuguese ] = "~Copiar consulta";
Text[ russian ] = "~ ";
Text[ greek ] = " ";
Text[ dutch ] = "c~opy query";
Text[ french ] = "C~opier la requte";
Text[ spanish ] = "Copiar consulta";
Text[ italian ] = "~Copia ricerca";
Text[ danish ] = "c~opy query";
Text[ swedish ] = "~Kopiera skning";
Text[ polish ] = "Kopiuj kwerend";
Text[ portuguese_brazilian ] = "c~opy query";
Text[ japanese ] = "ذ̺߰(~O)";
Text[ korean ] = "c~opy query";
Text[ chinese_simplified ] = "Ʋѯ";
Text[ chinese_traditional ] = "ƻsd";
Text[ turkish ] = "c~opy query";
Text[ arabic ] = " ";
};
MenuItem
{
Separator = TRUE;
};
MenuItem
{
Identifier = ID_TREE_TABLE_CREATE_DESIGN ;
HelpId = HID_BROWSER_TABLE_CREATE_DESIGN ;
Text = "neuer ~Tabellenentwurf" ;
Text [ english ] = "new ~tabledesign" ;
Text [ english_us ] = "New ~Table Design" ;
Text[ portuguese ] = "Novo e~sboo de tabela";
Text[ russian ] = "~ ";
Text[ greek ] = " ";
Text[ dutch ] = "new ~tabledesign";
Text[ french ] = "Nouvelle bauche de ~table";
Text[ spanish ] = "nuevo diseo de tabla";
Text[ italian ] = "Nuova struttura ~tabella";
Text[ danish ] = "new ~tabledesign";
Text[ swedish ] = "Nytt ~tabellutkast";
Text[ polish ] = "Nowy projekt tabeli";
Text[ portuguese_brazilian ] = "new ~tabledesign";
Text[ japanese ] = "V\\(~T)";
Text[ korean ] = "new ~tabledesign";
Text[ chinese_simplified ] = "µı";
Text[ chinese_traditional ] = "s]p";
Text[ turkish ] = "new ~tabledesign";
Text[ arabic ] = " ";
};
MenuItem
{
Identifier = ID_TREE_TABLE_EDIT ;
HelpId = HID_BROWSER_TABLE_EDIT ;
Text = "Tabelle ~bearbeiten" ;
Text [ english ] = "edit ta~ble" ;
Text [ english_us ] = "Edit Ta~ble" ;
Text[ portuguese ] = "Editar ta~bela";
Text[ russian ] = "~ ";
Text[ greek ] = " ";
Text[ dutch ] = "edit ta~ble";
Text[ french ] = "~diter la table";
Text[ spanish ] = "Editar tabla";
Text[ italian ] = "~Modifica tabella";
Text[ danish ] = "edit ta~ble";
Text[ swedish ] = "Redigera ta~bell";
Text[ polish ] = "Edytuj tabel";
Text[ portuguese_brazilian ] = "edit ta~ble";
Text[ japanese ] = "\\̕ҏW(~B)";
Text[ korean ] = "edit ta~ble";
Text[ chinese_simplified ] = "༭";
Text[ chinese_traditional ] = "s";
Text[ turkish ] = "edit ta~ble";
Text[ arabic ] = " ";
};
MenuItem
{
Separator = TRUE;
};
MenuItem
{
Identifier = ID_TREE_TABLE_DELETE ;
HelpId = HID_BROWSER_TABLE_DELETE ;
Text = "Tabelle ~lschen" ;
Text [ english ] = "de~lete table" ;
Text [ english_us ] = "De~lete Table" ;
Text[ portuguese ] = "Eliminar ~tabela";
Text[ russian ] = "~ ";
Text[ greek ] = " ";
Text[ dutch ] = "de~lete table";
Text[ french ] = "~Supprimer la table";
Text[ spanish ] = "Eliminar tabla";
Text[ italian ] = "~Elimina tabella";
Text[ danish ] = "de~lete table";
Text[ swedish ] = "Radera tabe~ll";
Text[ polish ] = "Usu tabel";
Text[ portuguese_brazilian ] = "de~lete table";
Text[ japanese ] = "\\̍폜(~L)";
Text[ korean ] = "de~lete table";
Text[ chinese_simplified ] = "ɾ";
Text[ chinese_traditional ] = "R";
Text[ turkish ] = "de~lete table";
Text[ arabic ] = " ";
};
MenuItem
{
Identifier = ID_TREE_TABLE_COPY ;
HelpId = HID_BROWSER_TABLE_COPY ;
Text = "Tabelle ~kopieren" ;
Text [ english ] = "c~opy table" ;
Text [ english_us ] = "C~opy Table" ;
Text[ portuguese ] = "~Copiar tabela";
Text[ russian ] = "~ ";
Text[ greek ] = " ~";
Text[ dutch ] = "c~opy table";
Text[ french ] = "~Copier la table";
Text[ spanish ] = "Copiar tabla";
Text[ italian ] = "~Copia tabella";
Text[ danish ] = "c~opy table";
Text[ swedish ] = "~Kopiera tabell";
Text[ polish ] = "Kopiuj tabel";
Text[ portuguese_brazilian ] = "c~opy table";
Text[ japanese ] = "ðق̺߰(~O)";
Text[ korean ] = "c~opy table";
Text[ chinese_simplified ] = "Ʊ";
Text[ chinese_traditional ] = "ƻs";
Text[ turkish ] = "c~opy table";
Text[ arabic ] = " ";
};
MenuItem
{
Identifier = ID_TREE_TABLE_PASTE ;
HelpId = HID_BROWSER_TABLE_PASTE ;
Text = "Tabelle e~infgen" ;
Text [ english ] = "~insert table" ;
Text [ english_us ] = "~Insert Table" ;
Text[ portuguese ] = "~Inserir tabela";
Text[ russian ] = "~ ";
Text[ greek ] = "~ ";
Text[ dutch ] = "~insert table";
Text[ french ] = "~Insrer une table";
Text[ spanish ] = "Insertar tabla";
Text[ italian ] = "~Inserisci tabella";
Text[ danish ] = "~insert table";
Text[ swedish ] = "~Infoga tabell";
Text[ polish ] = "Wstaw tabel";
Text[ portuguese_brazilian ] = "~insert table";
Text[ japanese ] = "ðق̑}(~I)";
Text[ korean ] = "~insert table";
Text[ chinese_simplified ] = "";
Text[ chinese_traditional ] = "[J";
Text[ turkish ] = "~insert table";
Text[ arabic ] = " ";
};
MenuItem
{
Separator = TRUE;
};
MenuItem
{
Identifier = ID_TREE_RELATION_DESIGN ;
HelpId = HID_BROWSER_RELATION_DESIGN ;
Text = "Relatio~nenentwurf" ;
Text [ english ] = "relatio~n design" ;
Text [ english_us ] = "relatio~n design" ;
Text[ portuguese ] = "relatio~n design";
Text[ russian ] = "relatio~n design";
Text[ greek ] = "relatio~n design";
Text[ dutch ] = "relatio~n design";
Text[ french ] = "relatio~n design";
Text[ spanish ] = "Diseo de relaciones";
Text[ italian ] = "relatio~n design";
Text[ danish ] = "relatio~n design";
Text[ swedish ] = "Relatio~nsutkast";
Text[ polish ] = "Projekt relacji";
Text[ portuguese_brazilian ] = "relatio~n design";
Text[ japanese ] = "relatio~n design";
Text[ korean ] = "relatio~n design";
Text[ chinese_simplified ] = "relatio~n design";
Text[ chinese_traditional ] = "relatio~n design";
Text[ turkish ] = "relatio~n design";
Text[ arabic ] = "relatio~n design";
};
};
};
String STR_TITLE_CONFIRM_DELETION
{
Text = "Lschen besttigen" ;
Text [ English ] = "confirm deletion" ;
Text [ english_us ] = "Confirm Deletion" ;
Text[ portuguese ] = "Confirmar eliminao";
Text[ russian ] = " ";
Text[ greek ] = " ";
Text[ dutch ] = "confirm deletion";
Text[ french ] = "Confirmation de suppression";
Text[ spanish ] = "Confirmar eliminacin";
Text[ italian ] = "Conferma 'Elimina'";
Text[ danish ] = "confirm deletion";
Text[ swedish ] = "Bekrfta radering";
Text[ polish ] = "Potwierd usunicie";
Text[ portuguese_brazilian ] = "confirm deletion";
Text[ japanese ] = "폜̊mF";
Text[ korean ] = "confirm deletion";
Text[ chinese_simplified ] = "confirm deletion";
Text[ chinese_traditional ] = "̻{R";
Text[ turkish ] = "confirm deletion";
Text[ arabic ] = " ";
};
String STR_QUERY_DELETE_QUERY
{
Text = "Soll die Abfrage '%1' gelscht werden?" ;
Text [ English ] = "Delete query '%1'?" ;
Text [ english_us ] = "Do you want to delete the query '%1'?" ;
Text[ portuguese ] = "Eliminar consulta '%1'?";
Text[ russian ] = " '%1'?";
Text[ greek ] = " '%1';";
Text[ dutch ] = "Do you want to delete the query '%1'?";
Text[ french ] = "Voulez-vous supprimer la requte '%1' ?";
Text[ spanish ] = "Desea eliminar la consulta '%1'?";
Text[ italian ] = "Volete eliminare la ricerca '%1'?";
Text[ danish ] = "Do you want to delete the query '%1'?";
Text[ swedish ] = "Ska skningen '%1' raderas?";
Text[ polish ] = "Usun kwerend'%1'?";
Text[ portuguese_brazilian ] = "Do you want to delete the query '%1'?";
Text[ japanese ] = "ذ '%1' 폜܂B";
Text[ korean ] = "Do you want to delete the query '%1'?";
Text[ chinese_simplified ] = "Do you want to delete the query '%1'?";
Text[ chinese_traditional ] = "nRd'%1'?";
Text[ turkish ] = "Do you want to delete the query '%1'?";
Text[ arabic ] = " '%1'";
};
String STR_QUERY_DELETE_TABLE
{
Text = "Soll die Tabelle '%1' gelscht werden?" ;
Text [ English ] = "Delete table '%1'?" ;
Text [ english_us ] = "Do you want to delete the table '%1'?" ;
Text[ portuguese ] = "Eliminar tabela '%1'?";
Text[ russian ] = " '%1'?";
Text[ greek ] = " '%1';";
Text[ dutch ] = "Do you want to delete the table '%1'?";
Text[ french ] = "Voulez-vous supprimer la table '%1' ?";
Text[ spanish ] = "Desea eliminar la tabla '%1'?";
Text[ italian ] = "Volete eliminare la tabella '%1'?";
Text[ danish ] = "Do you want to delete the table '%1'?";
Text[ swedish ] = "Ska tabellen '%1' raderas?";
Text[ polish ] = "Usun tabel'%1'?";
Text[ portuguese_brazilian ] = "Do you want to delete the table '%1'?";
Text[ japanese ] = "ð '%1' 폜܂B";
Text[ korean ] = "Do you want to delete the table '%1'?";
Text[ chinese_simplified ] = "Do you want to delete the table '%1'?";
Text[ chinese_traditional ] = "nR '%1'?";
Text[ turkish ] = "Do you want to delete the table '%1'?";
Text[ arabic ] = " '%1'";
};
QueryBox QUERY_BRW_DELETE_QUERY_CONFIRM
{
Buttons = WB_YES_NO ;
Message = "Die Abfrage existiert bereits. Soll sie gelscht werden?" ;
Message [ English ] = "The query already exists. Delete query?" ;
Message [ english_us ] = "The query already exists. Do you want to delete the query?" ;
Message[ portuguese ] = "A consulta j existe. Eliminar?";
Message[ russian ] = " . ?";
Message[ greek ] = " . ;";
Message[ dutch ] = "The query already exists. Do you want to delete the query?";
Message[ french ] = "La requte existe dj. Voulez-vous la supprimer ?";
Message[ spanish ] = "Ya existe la consulta. Desea eliminarla?";
Message[ italian ] = "La ricerca esiste gi. Volete eliminarla?";
Message[ danish ] = "The query already exists. Do you want to delete the query?";
Message[ swedish ] = "Skningen finns redan. Ska den raderas?";
Message[ polish ] = "Kwerenda ju istnieje. Usun j?";
Message[ portuguese_brazilian ] = "The query already exists. Do you want to delete the query?";
Message[ japanese ] = "ذ͂łɂ܂Bذ폜܂B";
Message[ korean ] = "The query already exists. Do you want to delete the query?";
Message[ chinese_simplified ] = "The query already exists. Do you want to delete the query?";
Message[ chinese_traditional ] = "oӬdߤwgsbCnRH";
Message[ turkish ] = "The query already exists. Do you want to delete the query?";
Message[ arabic ] = " . ";
};
QueryBox QUERY_CONNECTION_LOST
{
Buttons = WB_YES_NO ;
Message = "Die Verbindung zur Datenbank wurde gelscht! Soll Sie wieder aufgebaut werden?" ;
Message [ English ] = "The connection to the database was lost! Reconnect?" ;
Message [ english_us ] = "The connection to the database has been lost. Do you want to reconnect?" ;
Message[ portuguese ] = "A ligao base de dados foi cancelada. Restabelecer?";
Message[ russian ] = " . ?";
Message[ greek ] = " . ;";
Message[ dutch ] = "The connection to the database was lost! Reconnect";
Message[ french ] = "La connexion la base de donnes a t annule ! Rtablir la connexion ?";
Message[ spanish ] = "Se elimin la conexin a la base de datos! Desea restablecerla?";
Message[ italian ] = "Il collegamento al database stato terminato. Volete ristabilirlo?";
Message[ danish ] = "The connection to the database was lost! Reconnect";
Message[ swedish ] = "Frbindelsen till databasen har raderats! Ska den upprttas igen?";
Message[ polish ] = "Poczenie z baz danych zostao przerwane! Czy poczy ponownie?";
Message[ portuguese_brazilian ] = "The connection to the database was lost! Reconnect";
Message[ japanese ] = "ްްւ̐ڑ͐ؒf܂BڑȂ܂B";
Message[ korean ] = "The connection to the database was lost! Reconnect";
Message[ chinese_simplified ] = "The connection to the database was lost! Reconnect";
Message[ chinese_traditional ] = "MƮwsuwgCnssuH";
Message[ turkish ] = "The connection to the database was lost! Reconnect";
Message[ arabic ] = " . ";
};
String STR_OPENTABLES_WARNINGS
{
Text = "Warnungen aufgetreten.";
Text [ english ] = "Warnings encountered.";
Text [ english_us ] = "Warnings encountered.";
Text[ portuguese ] = "Warnings encountered.";
Text[ russian ] = "Warnings encountered.";
Text[ greek ] = "Warnings encountered.";
Text[ dutch ] = "Warnings encountered.";
Text[ french ] = "Warnings encountered.";
Text[ spanish ] = "Han aparecido advertencias.";
Text[ italian ] = "Warnings encountered.";
Text[ danish ] = "Warnings encountered.";
Text[ swedish ] = "Varningar har frekommit.";
Text[ polish ] = "Wystpiy ostrzeenia.";
Text[ portuguese_brazilian ] = "Warnings encountered.";
Text[ japanese ] = "Warnings encountered.";
Text[ korean ] = "Warnings encountered.";
Text[ chinese_simplified ] = "Warnings encountered.";
Text[ chinese_traditional ] = "Warnings encountered.";
Text[ turkish ] = "Warnings encountered.";
Text[ arabic ] = "Warnings encountered.";
};
String STR_OPENTABLES_WARNINGS_DETAILS
{
Text = "Beim Ermitteln der Tabellen wurden von der Datenbankverbindung Warnungen gemeldet.";
Text [ english ] = "While retrieving the tables, warnings were provided by the connection.";
Text [ english_us ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ portuguese ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ russian ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ greek ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ dutch ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ french ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ spanish ] = "La conexin a la base de datos ha enviado advertencias durante la determinacin de las tablas.";
Text[ italian ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ danish ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ swedish ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ polish ] = "W trakcie okrelania tabel poczenie bazy danych wysyao ostrzeenia.";
Text[ portuguese_brazilian ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ japanese ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ korean ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ chinese_simplified ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ chinese_traditional ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ turkish ] = "While retrieving the tables, warnings were provided by the connection.";
Text[ arabic ] = "While retrieving the tables, warnings were provided by the connection.";
};
|