1<?php 2$translations = array( 3 // groupkey if no grouping is done 4 'all' => 'All', 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' => 'january|jan', 14 '02' => 'february|feb', 15 '03' => 'march|mar', 16 '04' => 'april|apr', 17 '05' => 'may', 18 '06' => 'june|jun', 19 '07' => 'july|jul', 20 '08' => 'august|aug', 21 '09' => 'september|sep', 22 '10' => 'october|oct', 23 '11' => 'november|nov', 24 '12' => 'december|dec'), 25 26 // Representations of entry types used as headlines 27 'entrytypes' => array('article' => 'Articles', 28 'book' => 'Books', 29 'booklet' => 'Booklets', 30 'conference' => 'Conference Papers', 31 'inbook' => 'In Books', 32 'incollection' => 'In Collections', 33 'inproceedings' => 'In Proceedings', 34 'manual' => 'Manuals', 35 'mastersthesis' => 'Master\'s Theses', 36 'misc' => 'Miscellaneous', 37 'phdthesis' => 'Dissertations', 38 'proceedings' => 'Proceedings', 39 'techreport' => 'Technical Reports', 40 'unpublished' => 'Unpublished', 41 42 // Map non-standard types to this type 43 'unknown' => 'misc') 44); 45?> 46