1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27//#pragma CHARSET_ANSI
28
29#include "sections.hrc"
30#include "bibliography.hrc"
31
32#define FT_POS          12
33#define FTSIZE_LEFT     88
34#define ED_POS_LEFT		FT_POS+FTSIZE_LEFT+1
35#define ED_SIZE         70
36#define ED_POS_LEFT2	ED_POS_LEFT + ED_SIZE +1
37#define FT_POS_MIDDLE	ED_POS_LEFT2 + 5
38#define FT_POS_RIGHT 	FT_POS_MIDDLE + FT_POS_MIDDLE - FT_POS
39
40#define FL_POS          6
41#define PAGE_WIDTH      FT_POS_RIGHT + FTSIZE_LEFT + (FTSIZE_LEFT * 8 / 10) + FL_POS + 5
42#define FL_WIDTH        PAGE_WIDTH - 2 * FL_POS
43
44TabPage RID_TP_GENERAL
45{
46	SVLook = TRUE ;
47    Size = MAP_APPFONT( PAGE_WIDTH, 209 );
48	HelpId = HID_BIB_CONTROL_PAGE;
49
50	FixedText FT_IDENTIFIER
51	{
52		Pos = MAP_APPFONT( FT_POS, 6 );
53		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
54        Right = TRUE;
55	};
56	FixedText FT_AUTHTYPE
57	{
58		Pos = MAP_APPFONT( FT_POS_MIDDLE, 6 );
59		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
60        Right = TRUE;
61    };
62	FixedText FT_YEAR
63	{
64		Pos = MAP_APPFONT( FT_POS_RIGHT, 6 );
65		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
66        Right = TRUE;
67    };
68	FixedText FT_AUTHOR
69	{
70		Pos = MAP_APPFONT( FT_POS, 20 );
71		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
72        Right = TRUE;
73    };
74	FixedText FT_TITLE
75	{
76		Pos = MAP_APPFONT( FT_POS_MIDDLE, 20 );
77		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
78        Right = TRUE;
79    };
80	FixedText FT_PUBLISHER
81	{
82		Pos = MAP_APPFONT( FT_POS, 34 );
83		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
84        Right = TRUE;
85    };
86	FixedText FT_ADDRESS
87	{
88		Pos = MAP_APPFONT( FT_POS_MIDDLE, 34 );
89		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
90        Right = TRUE;
91    };
92	FixedText FT_ISBN
93	{
94		Pos = MAP_APPFONT( FT_POS_RIGHT, 34 );
95		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
96        Right = TRUE;
97    };
98	FixedText FT_CHAPTER
99	{
100		Pos = MAP_APPFONT( FT_POS, 48 );
101		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
102        Right = TRUE;
103    };
104	FixedText FT_PAGE
105	{
106		Pos = MAP_APPFONT( FT_POS_MIDDLE, 48 );
107		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
108        Right = TRUE;
109    };
110    FixedLine FL_1
111    {
112        Pos = MAP_APPFONT( FL_POS, 62 );
113        Size = MAP_APPFONT( FL_WIDTH, 8 );
114    };
115	FixedText FT_EDITOR
116	{
117        Pos = MAP_APPFONT( FT_POS, 73 );
118		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
119        Right = TRUE;
120    };
121	FixedText FT_EDITION
122	{
123        Pos = MAP_APPFONT( FT_POS_MIDDLE, 73 );
124		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
125        Right = TRUE;
126    };
127	FixedText FT_BOOKTITLE
128	{
129        Pos = MAP_APPFONT( FT_POS, 87 );
130		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
131        Right = TRUE;
132    };
133	FixedText FT_VOLUME
134	{
135        Pos = MAP_APPFONT( FT_POS_MIDDLE, 87 );
136		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
137        Right = TRUE;
138    };
139	FixedText FT_HOWPUBLISHED
140	{
141        Pos = MAP_APPFONT( FT_POS_RIGHT, 87 );
142		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
143        Right = TRUE;
144    };
145	FixedText FT_ORGANIZATION
146	{
147        Pos = MAP_APPFONT( FT_POS, 101 );
148		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
149        Right = TRUE;
150    };
151	FixedText FT_INSTITUTION
152	{
153        Pos = MAP_APPFONT( FT_POS_MIDDLE, 101 );
154		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
155        Right = TRUE;
156    };
157	FixedText FT_SCHOOL
158	{
159        Pos = MAP_APPFONT( FT_POS_RIGHT, 101 );
160		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
161        Right = TRUE;
162    };
163	FixedText FT_REPORT
164	{
165        Pos = MAP_APPFONT( FT_POS, 115);
166		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
167        Right = TRUE;
168    };
169	FixedText FT_MONTH
170	{
171        Pos = MAP_APPFONT( FT_POS_MIDDLE, 115 );
172		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
173        Right = TRUE;
174    };
175    FixedLine FL_2
176    {
177        Pos = MAP_APPFONT( FL_POS, 129 );
178        Size = MAP_APPFONT( FL_WIDTH, 8 );
179    };
180    FixedText FT_JOURNAL
181	{
182        Pos = MAP_APPFONT( FT_POS, 140 );
183		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
184        Right = TRUE;
185    };
186
187	FixedText FT_NUMBER
188	{
189        Pos = MAP_APPFONT( FT_POS_MIDDLE, 140 );
190		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
191        Right = TRUE;
192    };
193	FixedText FT_SERIES
194	{
195        Pos = MAP_APPFONT( FT_POS_RIGHT, 140 );
196		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
197        Right = TRUE;
198    };
199	FixedText FT_ANNOTE
200	{
201        Pos = MAP_APPFONT( FT_POS, 154 );
202		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
203        Right = TRUE;
204    };
205	FixedText FT_NOTE
206	{
207        Pos = MAP_APPFONT( FT_POS_MIDDLE, 154 );
208		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
209        Right = TRUE;
210    };
211	FixedText FT_URL
212	{
213        Pos = MAP_APPFONT( FT_POS_RIGHT, 154 );
214		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
215        Right = TRUE;
216    };
217    FixedLine FL_3
218    {
219        Pos = MAP_APPFONT( FL_POS, 168 );
220        Size = MAP_APPFONT( FL_WIDTH, 8 );
221    };
222    FixedText FT_CUSTOM1
223	{
224        Pos = MAP_APPFONT( FT_POS, 179 );
225		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
226        Right = TRUE;
227    };
228	FixedText FT_CUSTOM2
229	{
230        Pos = MAP_APPFONT( FT_POS_MIDDLE, 179 );
231		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
232        Right = TRUE;
233    };
234	FixedText FT_CUSTOM3
235	{
236        Pos = MAP_APPFONT( FT_POS_RIGHT, 179 );
237		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
238        Right = TRUE;
239    };
240	FixedText FT_CUSTOM4
241	{
242        Pos = MAP_APPFONT( FT_POS, 193 );
243		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
244        Right = TRUE;
245    };
246	FixedText FT_CUSTOM5
247	{
248        Pos = MAP_APPFONT( FT_POS_MIDDLE, 193 );
249		Size = MAP_APPFONT( FTSIZE_LEFT, 10 );
250        Right = TRUE;
251    };
252	String ST_ERROR_PREFIX
253	{
254		Text [ en-US ] = "The following column names could not be assigned:\n";
255	};
256	String ST_TYPE_ARTICLE
257	{
258		Text [ en-US ] = "Article";
259	};
260	String ST_TYPE_BOOK
261	{
262		Text [ en-US ] = "Book";
263	};
264	String ST_TYPE_BOOKLET
265	{
266		Text [ en-US ] = "Brochures";
267	};
268	String ST_TYPE_CONFERENCE
269	{
270		Text [ en-US ] = "Conference proceedings";
271	};
272	String ST_TYPE_INBOOK
273	{
274		Text [ en-US ] = "Book excerpt";
275	};
276	String ST_TYPE_INCOLLECTION
277	{
278		Text [ en-US ] = "Book excerpt with title";
279	};
280	String ST_TYPE_INPROCEEDINGS
281	{
282		Text [ en-US ] = "Conference proceedings";
283	};
284	String ST_TYPE_JOURNAL
285	{
286		Text [ en-US ] = "Journal";
287	};
288	String ST_TYPE_MANUAL
289	{
290		Text [ en-US ] = "Techn. documentation";
291	};
292	String ST_TYPE_MASTERSTHESIS
293	{
294		Text [ en-US ] = "Thesis";
295	};
296	String ST_TYPE_MISC
297	{
298		Text [ en-US ] = "Miscellaneous";
299	};
300	String ST_TYPE_PHDTHESIS
301	{
302		Text [ en-US ] = "Dissertation";
303	};
304	String ST_TYPE_PROCEEDINGS
305	{
306		Text [ en-US ] = "Conference proceedings";
307	};
308	String ST_TYPE_TECHREPORT
309	{
310		Text [ en-US ] = "Research report";
311	};
312	String ST_TYPE_UNPUBLISHED
313	{
314		Text [ en-US ] = "Unpublished";
315	};
316	String ST_TYPE_EMAIL
317	{
318		Text [ en-US ] = "e-mail";
319	};
320	String ST_TYPE_WWW
321	{
322		Text [ en-US ] = "WWW document";
323	};
324	String ST_TYPE_CUSTOM1
325	{
326		Text [ en-US ] = "User-defined1";
327	};
328	String ST_TYPE_CUSTOM2
329	{
330		Text [ en-US ] = "User-defined2";
331	};
332	String ST_TYPE_CUSTOM3
333	{
334		Text [ en-US ] = "User-defined3";
335	};
336	String ST_TYPE_CUSTOM4
337	{
338		Text [ en-US ] = "User-defined4";
339	};
340	String ST_TYPE_CUSTOM5
341	{
342		Text [ en-US ] = "User-defined5";
343	};
344	Text [ en-US ] = "General";
345};
346Menu RID_POPUP_ME_VIEW
347{
348	ItemList =
349	{
350		MenuItem
351		{
352			Identifier = PU_INSERT;
353			Text [ en-US ] = "Insert Section...";
354		};
355		MenuItem
356		{
357			Identifier = PU_REMOVE;
358			Text [ en-US ] = "Delete Section...";
359		};
360		MenuItem
361		{
362			Identifier = PU_CHG_NAME;
363			Text [ en-US ] = "Modify Name...";
364		};
365	};
366};
367
368String ST_IDENTIFIER
369{
370    Text [ en-US ] = "~Short name";
371};
372String ST_AUTHTYPE
373{
374    Text [ en-US ] = "~Type";
375};
376String ST_YEAR
377{
378    Text [ en-US ] = "~Year";
379};
380String ST_AUTHOR
381{
382	Text [ en-US ] = "Author(s)";
383};
384String ST_TITLE
385{
386    Text [ en-US ] = "Tit~le";
387};
388String ST_PUBLISHER
389{
390    Text [ en-US ] = "~Publisher";
391};
392String ST_ADDRESS
393{
394    Text [ en-US ] = "A~ddress";
395};
396String ST_ISBN
397{
398    Text [ en-US ] = "~ISBN";
399};
400String ST_CHAPTER
401{
402    Text [ en-US ] = "~Chapter";
403};
404String ST_PAGE
405{
406    Text [ en-US ] = "Pa~ge(s)";
407};
408String ST_EDITOR
409{
410    Text [ en-US ] = "Editor";
411};
412String ST_EDITION
413{
414    Text [ en-US ] = "Ed~ition";
415};
416String ST_BOOKTITLE
417{
418    Text [ en-US ] = "~Book title";
419};
420String ST_VOLUME
421{
422	Text [ en-US ] = "Volume";
423};
424String ST_HOWPUBLISHED
425{
426    Text [ en-US ] = "Publication t~ype";
427};
428String ST_ORGANIZATION
429{
430    Text [ en-US ] = "Organi~zation";
431};
432String ST_INSTITUTION
433{
434    Text [ en-US ] = "Instit~ution";
435};
436String ST_SCHOOL
437{
438	Text [ en-US ] = "University";
439};
440String ST_REPORT
441{
442	Text [ en-US ] = "Type of re~port";
443};
444String ST_MONTH
445{
446    Text [ en-US ] = "~Month";
447};
448String ST_JOURNAL
449{
450    Text [ en-US ] = "~Journal";
451};
452
453String ST_NUMBER
454{
455    Text [ en-US ] = "Numb~er";
456};
457String ST_SERIES
458{
459    Text [ en-US ] = "Se~ries";
460};
461String ST_ANNOTE
462{
463    Text [ en-US ] = "Ann~otation";
464};
465String ST_NOTE
466{
467    Text [ en-US ] = "~Note";
468};
469String ST_URL
470{
471    Text [ en-US ] = "URL";
472};
473String ST_CUSTOM1
474{
475    Text [ en-US ] = "User-defined field ~1";
476};
477String ST_CUSTOM2
478{
479    Text [ en-US ] = "User-defined field ~2";
480};
481String ST_CUSTOM3
482{
483    Text [ en-US ] = "User-defined field ~3";
484};
485String ST_CUSTOM4
486{
487    Text [ en-US ] = "User-defined field ~4";
488};
489String ST_CUSTOM5
490{
491    Text [ en-US ] = "User-defined field ~5";
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