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