1<?php 2$translations = array( 3 // groupkey if no grouping is done 4 'all' => 'Alle', 5 // groupkey for entries that do not specify the grouping value 6 'rest' => 'Rest', 7 // Month names entries are compared against for sorting issues. 8 // - Names are case insensitive 9 // - Regular expression are supported to include alternatives like 10 // 'january|jan' 11 // - In translations, keep English names and short forms in case bibtex 12 // source is in English. E.g. 'enero|ene|january|jan' 13 'months' => array('01' => 'januar|january|jan', 14 '02' => 'februar|february|feb', 15 '03' => 'märz|mär|march|mar', 16 '04' => 'april|apr', 17 '05' => 'mai|may', 18 '06' => 'juni|june|jun', 19 '07' => 'juli|july|jul', 20 '08' => 'august|aug', 21 '09' => 'september|sep', 22 '10' => 'oktober|okt|octuber|oct', 23 '11' => 'november|nov', 24 '12' => 'dezember|dez|december|dec'), 25 26 // Representations of entry types used as headlines 27 'entrytypes' => array('article' => 'Artikel', 28 'book' => 'Bücher', 29 'booklet' => 'Hefte', 30 'conference' => 'Konferenzen', 31 'inbook' => 'In Büchern', 32 'incollection' => 'In Sammelbänden', 33 'inproceedings' => 'In Berichten', 34 'manual' => 'Handbücher', 35 'mastersthesis' => 'Masterarbeiten', 36 'misc' => 'Verschiedenes', 37 'phdthesis' => 'Dissertationen', 38 'proceedings' => 'Berichte', 39 'techreport' => 'Technische Berichte', 40 'unpublished' => 'Unveröffentlicht', 41 42 // Map non-standard types to this type 43 'unknown' => 'misc') 44); 45?> 46