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