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