1<?php 2/** 3 * english language file for bibtex plugin 4 * 5 * @author Till Biskup <till@till-biskup> 6 */ 7 8// keys need to match the config setting name 9$lang['_basic'] = 'And what happens if I include here some text?'; 10$lang['sqlite'] = 'Use SQLite-Plugin? (Fastenes up things tremendously.)'; 11$lang['citetype'] = 'Reference key style, i.e. the way the citations are displayed inline. Examples would be [Hore, 1989] (authoryear), [5] (numeric), or [Hor89] (alpha)'; 12$lang['file'] = "BibTeX File(s) used by default for the bibliography. If you don't enter here a value, you have to include it with the <code><bibtex>file=...</bibtex></code> pattern at the beginning of the page.<br />It is good practice to use dokuwiki pages here (separated by ';') that contain only BibTeX code."; 13$lang['pdfdir'] = 'Directory containing the PDF files belonging to the respective citations (mostly in case of scientific articles). The BIBTeX key needs to be identical with the file name.'; 14$lang['sort'] = 'Whether to sort the references in the bibliography in alphabetic order.<br /> This setting does not affect the "numeric" citation style.'; 15$lang['_formatstrings'] = 'Formatting of the different BibTeX entry types is done via format strings that contain the field names in capital letters. Formatting can be done via HTML tags (italics, bold, ...).'; 16$lang['fmtstr_article'] = 'Format string for the BibTeX article entry type references.'; 17$lang['fmtstr_book'] = 'Format string for the BibTeX book entry type references.'; 18$lang['fmtstr_booklet'] = 'Format string for the BibTeX booklet entry type references.'; 19$lang['fmtstr_conference'] = 'Format string for the BibTeX conference entry type references.'; 20$lang['fmtstr_inbook'] = 'Format string for the BibTeX inbook entry type references.'; 21$lang['fmtstr_incollection'] = 'Format string for the BibTeX incollection entry type references.'; 22$lang['fmtstr_inproceedings'] = 'Format string for the BibTeX inproceedings entry type references.'; 23$lang['fmtstr_manual'] = 'Format string for the BibTeX manual entry type references.'; 24$lang['fmtstr_mastersthesis'] = 'Format string for the BibTeX mastersthesis entry type references.'; 25$lang['fmtstr_misc'] = 'Format string for the BibTeX misc entry type references.'; 26$lang['fmtstr_phdthesis'] = 'Format string for the BibTeX phdthesis entry type references.'; 27$lang['fmtstr_proceedings'] = 'Format string for the BibTeX proceedings entry type references.'; 28$lang['fmtstr_techreport'] = 'Format string for the BibTeX techreport entry type references.'; 29$lang['fmtstr_unpublished'] = 'Format string for the BibTeX unpublished entry type references.'; 30 31 32//Setup VIM: ex: et ts=4 : 33