summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/tabledesign/table.src
blob: b8f18337cc1046dda4fb35acfe72846b2a5d468a (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
/*************************************************************************
 *
 *  $RCSfile: table.src,v $
 *
 *  $Revision: 1.87 $
 *
 *  last change: $Author: hr $ $Date: 2004-09-08 17:46:12 $
 *
 *  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 _DBU_TBL_HRC_
#include "dbu_tbl.hrc"
#endif
#ifndef _DBA_DBACCESS_HELPID_HRC_
#include "dbaccess_helpid.hrc"
#endif
#ifndef _DBACCESS_SLOTID_HRC_
#include "dbaccess_slotid.hrc"
#endif
#ifndef DBACCESS_UI_BROWSER_ID_HXX
#include "browserids.hxx"
#endif
#ifndef _GLOBLMN_HRC
#include <svx/globlmn.hrc>
#endif
#ifndef DBAUI_TOOLBOX_HXX
#include "toolbox.hrc"
#endif

#define MN_EDIT     20
#define MN_VIEW     21
#define MN_EXTRA    22
#define MN_INDEX    23
#define MN_WIN      30
#define MN_HELP     31


#define MID_INDEXDESIGN \
    Identifier = SID_INDEXDESIGN ; \
    HelpId = SID_INDEXDESIGN ; \
    Text [ de ] = "I~ndexentwurf..." ; \
    Text [ en-US ] = "~Index Design...";


String STR_TABLEDESIGN_DBFIELDTYPES
{
    //Text [ de ] ="Unbekannt;Text;Zahl;Datum/Zeit;Datum;Zeit;Ja/Nein;Whrung;Memo;Zhler;Bild;Text (fix);Dezimal;Binrfeld (fix);Binrfeld;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;Feld;BLOB;CLOB;REF;OTHER" ;

    Text [ x-comment ] = "; the sorting of the text doesn't be changed and every type must be translated";

    Text [ de ] = "Unbekannt;Text;Zahl;Datum/Zeit;Datum;Zeit;Ja/Nein;Whrung;Memo;Zhler;Bild;Text (fix);Dezimal;Binrfeld (fix);Binrfeld;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;Feld;BLOB;CLOB;REF;OTHER" ;
    Text [ en-US ] = "Unknown;Text;Number;Date/Time;Date;Time;Yes/No;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER";
};

String STR_TABLEDESIGN_UNDO_PRIMKEY
{
    Text [ de ] = "Primrschlssel einfgen/entfernen" ;
    Text [ en-US ] = "Insert/remove primary key" ;
    Text [ x-comment ] = " ";
};

String STR_VALUE_YES
{
    Text [ de ] = "Ja" ;
    Text [ en-US ] = "Yes" ;
    Text [ x-comment ] = " ";
};
String STR_VALUE_NO
{
    Text [ de ] = "Nein" ;
    Text [ en-US ] = "No" ;
    Text [ x-comment ] = " ";
};
String STR_VALUE_ASC
{
    Text [ de ] = "Aufsteigend" ;
    Text [ en-US ] = "Ascending" ;
    Text [ x-comment ] = " ";
};
String STR_VALUE_DESC
{
    Text [ de ] = "Absteigend" ;
    Text [ en-US ] = "Descending" ;
    Text [ x-comment ] = " ";
};
String STR_VALUE_NONE
{
    // Bemerkung : sollte auch in anderen Sprachen irgendwie zum Wort 'Wert' passen : Wert - keiner ....
    Text [ de ] = "<keiner>" ;
    Text [ en-US ] = "<none>";
    Text [ x-comment ] = "";
};

String STR_TAB_FIELD_NAME
{
    Text [ de ] = "Feldname" ;
    Text [ en-US ] = "Field Name" ;
    Text [ x-comment ] = " ";
};
String STR_TAB_FIELD_DATATYPE
{
    Text [ de ] = "Feldtyp" ;
    Text [ en-US ] = "Field Type" ;
    Text [ x-comment ] = " ";
};
String STR_TAB_FIELD_LENGTH
{
    Text [ de ] = "Feldlnge" ;
    Text [ en-US ] = "Field length" ;
    Text [ x-comment ] = " ";
};
String STR_TAB_FIELD_DESCR
{
    Text [ de ] = "Beschreibung" ;
    Text [ en-US ] = "Description" ;
    Text [ x-comment ] = " ";
};
String STR_TAB_FIELD_NULLABLE
{
    Text [ de ] = "Eingabe erforderlich" ;
    Text [ en-US ] = "Input required" ;
    Text [ x-comment ] = " ";
};
String STR_FIELD_AUTOINCREMENT
{
    Text [ de ] = "~Auto-Wert" ;
    Text [ en-US ] = "~AutoValue";
    Text [ x-comment ] = " ";
};
String STR_TAB_PROPERTIES
{
    Text [ de ] = "Feldeigenschaften" ;
    Text [ en-US ] = "Field Properties" ;
    Text [ x-comment ] = " ";
};
String STR_TABPAGE_GENERAL
{
    Text [ de ] = "Allgemein" ;
    Text [ en-US ] = "General" ;
    Text [ x-comment ] = " ";
};
String STR_TAB_TABLE_DESCRIPTION
{
    Text [ de ] = "Beschreibung :" ;
    Text [ en-US ] = "Description:";
};

String STR_TAB_TABLE_PROPERTIES
{
    Text [ de ] = "Tabelleneigenschaften" ;
    Text [ en-US ] = "Table properties";
    Text [ x-comment ] = " ";
};

Control RID_DB_TAB_EDITOR
{
    Pos = MAP_APPFONT ( 0 , 0 ) ;
    Size = MAP_APPFONT ( 40 , 12 ) ;
    TabStop = TRUE ;
    SvLook = TRUE ;
    Hide = TRUE ;
    HelpId = HID_TABDESIGN_BACKGROUND ;
};

ErrorBox ERR_INVALID_LISTBOX_ENTRY
{
    Message [ de ] = "Der eingegebenen Text ist kein Element der Liste." ;
    Message [ en-US ] = "The text you entered is not a list element. " ;
    Message [ x-comment ] = " ";
};

Menu RID_TABLEDESIGNROWPOPUPMENU
{
    ItemList =
    {
    MenuItem
    {
        ITEM_EDIT_CUT
    };
    MenuItem
    {
        ITEM_EDIT_COPY
    };
    MenuItem
    {
        ITEM_EDIT_PASTE
    };
    MenuItem
    {
        ITEM_EDIT_DELETE
    };
    MenuItem
    {
        Identifier = SID_TABLEDESIGN_INSERTROWS ;
        HelpID = SID_TABLEDESIGN_INSERTROWS ;
        Text [ de ] = "Zeilen einfgen" ;
        Text [ en-US ] = "Insert Rows" ;
            Text [ x-comment ] = " ";
        };
    MenuItem
    {
        Separator = TRUE ;
    };
    MenuItem
    {
        Identifier = SID_TABLEDESIGN_TABED_PRIMARYKEY ;
        HelpID = SID_TABLEDESIGN_TABED_PRIMARYKEY ;
        Checkable = TRUE ;
        Text [ de ] = "Primrschlssel" ;
        Text [ en-US ] = "Primary Key" ;
            Text [ x-comment ] = " ";
        };
    };
};
String STR_TABED_UNDO_CELLMODIFIED
{
    Text [ de ] = "Zelle ndern" ;
    Text [ en-US ] = "Modify cell" ;
    Text [ x-comment ] = " ";
};
String STR_TABED_UNDO_ROWDELETED
{
    Text [ de ] = "Zeile lschen" ;
    Text [ en-US ] = "Delete row" ;
    Text [ x-comment ] = " ";
};
String STR_TABED_UNDO_TYPE_CHANGED
{
    Text [ de ] = "Feldtype ndern" ;
    Text [ en-US ] = "Modify Field Type";
    Text [ x-comment ] = " ";
};
String STR_TABED_UNDO_ROWINSERTED
{
    Text [ de ] = "Zeile einfgen" ;
    Text [ en-US ] = "Insert row" ;
    Text [ x-comment ] = " ";
};
String STR_TABED_UNDO_NEWROWINSERTED
{
    Text [ de ] = "Neue Zeile einfgen" ;
    Text [ en-US ] = "Insert new row" ;
    Text [ x-comment ] = " ";
};
String STR_TABED_UNDO_PRIMKEY
{
    Text [ de ] = "Primrschlssel einfgen/entfernen" ;
    Text [ en-US ] = "Insert/remove primary key" ;
    Text [ x-comment ] = " ";
};

ToolBox RID_BRW_TABLEDESIGN_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_TABLEDESIGN ;

    ItemList =
    {
        ToolBoxItem
        {
            Identifier = ID_BROWSER_EDITDOC ;
            HelpId = SID_EDITDOC ;
            Checkable = TRUE;
            Text [ de ] = "Bearbeiten" ;
            Text [ en-US ] = "Edit";
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_SAVEDOC ;
            HelpId = SID_SAVEDOC ;
            Text [ de ] = "Speichern" ;
            Text [ en-US ] = "Save";
        };
        ToolBoxItem
        {
            ITEM_FILE_SAVEASDOC
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_INDEXDESIGN ;
            HelpId = SID_INDEXDESIGN ;
            MID_INDEXDESIGN
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_CUT ;
            HelpId = SID_CUT ;
            MID_SBA_QRY_CUT
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_COPY ;
            HelpId = SID_COPY ;
            MID_SBA_QRY_COPY
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_PASTE ;
            HelpId = SID_PASTE ;
            MID_SBA_QRY_PASTE
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_UNDO ;
            HelpId = SID_UNDO ;
            MID_UNDO
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_REDO ;
            HelpId = SID_REDO ;
            MID_REDO
        };
        ToolBoxItem
        {
            Identifier  = ID_TABLE_DESIGN_NO_CONNECTION;
            HelpId      = HID_TABLE_DESIGN_NO_CONNECTION ;
            Hide = TRUE;
            ItemImage = IMG_DATABASE;

            Text [ de ] = "Keine Verbindung" ;
            Text [ en-US ] = "No Connection";
        };
    };
};
String STR_DEFAULT_VALUE
{
    Text [ de ] = "~Defaultwert" ;
    Text [ en-US ] = "~Default value" ;
    Text [ x-comment ] = " ";
};
String STR_FIELD_REQUIRED
{
    Text [ de ] = "~Eingabe erforderlich" ;
    Text [ en-US ] = "~Entry required" ;
    Text [ x-comment ] = " ";
};
String STR_TEXT_LENGTH
{
    Text [ de ] = "~Lnge" ;
    Text [ en-US ] = "~Length" ;
    Text [ x-comment ] = " ";
};
String STR_NUMERIC_TYPE
{
    Text [ de ] = "~Typ" ;
    Text [ en-US ] = "~Type" ;
    Text [ x-comment ] = " ";
};
String STR_LENGTH
{
    Text [ de ] = "~Lnge" ;
    Text [ en-US ] = "~Length" ;
    Text [ x-comment ] = " ";
};
String STR_SCALE
{
    Text [ de ] = "~Nachkommastellen" ;
    Text [ en-US ] = "Decimal ~places" ;
    Text [ x-comment ] = " ";
};
String STR_FORMAT
{
    Text [ de ] = "Format-Beispiel" ;
    Text [ en-US ] = "Format example";
    Text [ x-comment ] = " ";
};
String STR_HELP_BOOL_DEFAULT
{
    Text [ de ] = "Whlen Sie einen Wert, der in jedem neu eingefgten Datensatz als Standard erscheinen soll.\nWhlen Sie den leeren String, wenn das Feld keinen solchen Standardwert haben soll." ;
    Text [ en-US ] = "Select a value that is to appear in all new records as default.\nIf the field is not to have a default value, select the empty string.";
    Text [ x-comment ] = " ";
};
String STR_HELP_DEFAULT_VALUE
{
    Text [ de ] = "Geben Sie hier einen Standardwert fr das Feld an.\n\nWenn Sie spter Daten in die Tabelle eingeben, wird in jedem neuen Datensatz diese Zeichenkette fr das aktuelle Feld verwendet. Sie sollte deshalb der weiter unten einzugebenden Zellenformatierung gengen." ;
    Text [ en-US ] = "Enter a default value for this field.\n\nWhen you later enter data in the table, this string will be used in each new record for the field selected. It should, therefore, correspond to the cell format that needs to be entered below." ;
    Text [ x-comment ] = " ";
};
String STR_HELP_FIELD_REQUIRED
{
    Text [ de ] = "Aktivieren Sie diese Option, wenn in diesem Feld keine NULL-Werte erlaubt sind, der Benutzer also immer Daten eingeben muss." ;
    Text [ en-US ] = "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data." ;
    Text [ x-comment ] = " ";
};
String STR_HELP_TEXT_LENGTH
{
    Text [ de ] = "Geben Sie die maximal zulssige Textlnge an." ;
    Text [ en-US ] = "Enter the maximum text length permittted." ;
    Text [ x-comment ] = " ";
};
String STR_HELP_NUMERIC_TYPE
{
    Text [ de ] = "Legen Sie hier fest, welchen Typ die Zahl haben soll." ;
    Text [ en-US ] = "Enter the number format." ;
    Text [ x-comment ] = " ";
};
String STR_HELP_LENGTH
{
    Text [ de ] = "Geben Sie die Lnge fr Daten in diesem Feld an.\n\nFr Dezimal-Felder ist das die maximale Lnge der eingegebenen Zahl, fr Binrfelder die Lnge des Datenblockes.\nWenn der Wert grer ist als der maximal fr diese Datenbank zulssige, wird er entsprechend korrigiert." ;
    Text [ en-US ] = "Determine the length data can have in this field.\n\nIf decimal fields, then the maximum length of the number to be entered, if binary fields, then the length of the data block.\nThe value will be corrected accordingly when it exceeds the maximum for this database." ;
    Text [ x-comment ] = " ";
};
String STR_HELP_SCALE
{
    Text [ de ] = "Geben Sie an, wie viel Nachkommastellen die Zahlen in diesem Feld enthalten sollen." ;
    Text [ en-US ] = "Specify the number of decimal places permitted in this field." ;
    Text [ x-comment ] = " ";
};
String STR_HELP_FORMAT_CODE
{
    Text [ de ] = "Hier sehen Sie, wie die Daten der aktuellen Spalte mit dem aktuell eingestellten Format - das Sie mittels des nebenstehenden Buttons ndern knnen - formatiert werden wrden.";
    Text [ en-US ] = "This is where you see how the data would be displayed in the current format (use the button on the right to modify the format).";
    Text [ x-comment ] = " ";
};
String STR_HELP_FORMAT_BUTTON
{
    Text [ de ] = "Hiermit knnen Sie festlegen, wie die Daten der Tabelle bei der Ausgabe formatiert werden sollen.";
    Text [ en-US ] = "This is where you determine the output format of the data.";
    Text [ x-comment ] = " ";
};
String STR_HELP_AUTOINCREMENT
{
    Text [ de ] = "Whlen Sie, ob dieses Feld Auto-Inkrement-Werte enthalten soll.\n\nSie knnen in ihm dann keine Daten direkt eingeben, sondern jeder neue Datensatz bekommt automatisch einen eigenen Wert (der sich durch Inkrementieren aus dem des vorigen Datensatzes ergibt) zugewiesen." ;
    Text [ en-US ] = "Choose if this field should contain AutoIncrement values.\n\nYou can not enter data in fields of this type. An intrinsic value will be assigned to each new record automatically (resulting from the increment of the previous record)." ;
    Text [ x-comment ] = " ";
};
PushButton PB_FORMAT
{
    TabStop = TRUE ;
    Text [ de ] = "~..." ;
    Text [ en-US ] = "~...";
};
String STR_TABLEDESIGN_DUPLICATE_NAME
{
    Text [ de ] = "Die Tabelle kann nicht gespeichert werden, da der Spaltenname \"$column$\" doppelt vergeben wurde.";
    Text [ en-US ] = "The table cannot be saved because column name \"$column$\" was assigned twice.";
};
String STR_TBL_COLUMN_IS_KEYCOLUMN
{
    Text [ de ] = "Die Spalten \"$column$\" gehrt zum Primrschlssel. Falls sie gelscht wird, wird auch der Primrschlssel gelscht.Wollen Sie sie fortfahren?";
    Text [ en-US ] = "The column \"$column$\" belongs to the primary key. If the column is deleted, the primary key will also be deleted. Do you really want to continue?";
};
String STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE
{
    Text [ de ] = "Primrschlssel betroffen";
    Text [ en-US ] = "Primary Key Effected";
};
String STR_COLUMN_NAME
{
    Text [ de ] = "Spalte" ;
    Text [ en-US ] = "Column";
};
String STR_QRY_CONTINUE
{
    Text [ de ] = "Wollen Sie trotzdem fortfahren?" ;
    Text [ en-US ] = "Continue anyway?" ;
};
String STR_STAT_WARNING
{
    Text [ de ] = "Warnung!" ;
    Text [ en-US ] = "Warning!" ;
};
QueryBox TABLE_DESIGN_SAVEMODIFIED
{
    Buttons = WB_YES_NO_CANCEL ;
    DefButton = WB_DEF_YES ;
    Message [ de ] = "Die Tabelle wurde gendert.\nSollen die nderungen gespeichert werden?" ;
    Message [ en-US ] = "The table has been changed.\nDo you want to save the changes?" ;
};
QueryBox TABLE_QUERY_CONNECTION_LOST
{
    Buttons = WB_YES_NO ;
    Message [ de ] = "Die Verbindung zur Datenbank wurde gelscht! Ohne sie kann der Tabellenentwurf nur eingeschrnkt benutzt werden.\nSoll die Verbindung zur Datenbank wieder aufgebaut werden?" ;
    Message [ en-US ] = "The connection to the database was lost! The table design can only be used with limited functionality without a connection.\nReconnect?" ;
};
String STR_TABLEDESIGN_CONNECTION_MISSING
{
    Text [ de ] = "Die Tabelle konnte nicht gespeichert werden, da keine Verbindung zur Datenbank hergestellt werden konnte.";
    Text [ en-US ] = "The table could not be saved due to problems connecting to the database.";
};
String STR_TABLEDESIGN_DATASOURCE_DELETED
{
    Text [ de ] = "Der Tabellenfilter konnte nicht angepasst werden, da die Datenquelle gelscht wurde.";
    Text [ en-US ] = "The table filter could not be adjusted because the data source has been deleted.";
};

QueryBox QUERY_SAVE_TABLE_EDIT_INDEXES
{
    Message [ de ] = "Bevor Sie die Indizies einer Tabelle ndern knnen, muss diese gespeichert werden.\n"
        "Wollen Sie Ihre nderungen an der Tabellenstruktur jetzt speichern?";
    Message [ en-US ] = "Before you can edit the indexes of a table, you have to save it.\nDo you want to save the changes now?";

    Buttons = WB_YES_NO ;
};
String STR_TABLEDESIGN_NO_PRIM_KEY_HEAD
{
    Text [ de ] = "Kein Primrschlssel" ;
    Text [ en-US ] = "No primary key" ;
};
String STR_TABLEDESIGN_NO_PRIM_KEY
{
    Text [ de ] = "In dieser Datenbank wird zur Datensatz-Identifizierung ein eindeutiger Index oder ein Primrschlssel bentigt.\nSie werden erst dann Daten in die Tabelle eingeben knnen, wenn sie eine dieser beiden Struktur-Bedingungen erfllt.\n\nSoll jetzt ein Primrschlssel erzeugt werden ?" ;
    Text [ en-US ] = "A unique index or primary key is required for data record identification in this database.\nYou can only enter data into this table when one of these two structural conditions has been met.\n\nShould a primary key be created now?" ;
};
String STR_TABLEDESIGN_TITLE
{
    Text [ de ] = " - %PRODUCTNAME Base: Tabellenentwurf";
    Text [ en-US ] = " - %PRODUCTNAME Base: Table Design";
};

/*
  The menubar resource has become obsolete - you can now find the menubar definition at: <project>/uiconfig/dbtable/menubar/menubar.xml
*/

String STR_TABLEDESIGN_ALTER_ERROR
{
    Text [ de ] = "Die Spalte \"$column$\" konnte nicht gendert werden. Soll sie statt dessen gelscht und das neue Format angehngt werden?" ;
    Text [ en-US ] = "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?" ;
};

QueryBox TABLE_DESIGN_ALL_ROWS_DELETED
{
    Buttons = WB_YES_NO_CANCEL ;
    DefButton = WB_DEF_YES ;
    Message [ de ] = "Sie versuchen alle Spalten der Tabelle zu lschen. Ohne Spalten kann eine Tabelle nicht bestehen. Soll die Tabelle aus der Datenbank gelscht werden? Falls nicht, bleibt die Tabelle unverndert." ;
    Message [ en-US ] = "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
};

String STR_AUTOINCREMENT_VALUE
{
    Text [ de ] = "A~uto-Increment-Ausdruck" ;
    Text [ en-US ] = "A~uto-increment statement";
};
String STR_HELP_AUTOINCREMENT_VALUE
{
    Text [ de ] = "Geben Sie hier einen SQL Ausdruck fr das Auto-Increment-Feld an.\n\nDieser Ausdruck wird beim Erzeugen der Tabelle direkt an die Datenbank bertragen." ;
    Text [ en-US ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
};

String STR_NO_TYPE_INFO_AVAILABLE
{
    Text [ de ] = "Es konnten keine Typinformationen von der Datenbank ermittelt werden.\nDer Tabellenentwurfmodus ist fr diese Datenquelle nicht verfgbar.";
    Text [ en-US ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
};

String STR_CHANGE_COLUMN_NAME
{
    Text [ de ] = "Feldnamen ndern";
    Text [ en-US ] = "change field name";
};

String STR_CHANGE_COLUMN_TYPE
{
    Text [ de ] = "Feldtyp ndern";
    Text [ en-US ] = "change field type";
};

String STR_CHANGE_COLUMN_DESCRIPTION
{
    Text [ de ] = "Feldbeschreibung ndern";
    Text [ en-US ] = "change field description";
};

String STR_CHANGE_COLUMN_ATTRIBUTE
{
    Text [ de ] = "Feldattribut ndern";
    Text [ en-US ] = "change field attribute";
};