1<?php
2$translations = array(
3  // groupkey if no grouping is done
4  'all' => 'Todos',
5  // groupkey for entries that do not specify the grouping value
6  'rest' => 'Resto',
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' => 'enero|ene|january|jan',
14                    '02' => 'febrero|february|feb',
15                    '03' => 'marzo|march|mar',
16                    '04' => 'abril|abr|april|apr',
17                    '05' => 'mayo|may',
18                    '06' => 'junio|june|jun',
19                    '07' => 'julio|july|jul',
20                    '08' => 'agosto|ago|august|aug',
21                    '09' => 'septiembre|september|sep',
22                    '10' => 'octubre|october|oct',
23                    '11' => 'noviembre|november|nov',
24                    '12' => 'diciembre|dic|december|dec'),
25
26  // Representations of entry types used as headlines
27  'entrytypes' => array('article'       => 'Artículos',
28                        'book'          => 'Libros',
29                        'booklet'       => 'Folletos',
30                        'conference'    => 'Conferencias',
31                        'inbook'        => 'Capítulos de libros',
32                        'incollection'  => 'Colecciones',
33                        'inproceedings' => 'Contribuciones a congresos',
34                        'manual'        => 'Manuales',
35                        'mastersthesis' => 'Tesis de maestría',
36                        'misc'          => 'Miscelánea',
37                        'phdthesis'     => 'Tesis doctorales',
38                        'proceedings'   => 'Libros de actas',
39                        'techreport'    => 'Informes Técnicos',
40                        'unpublished'   => 'No publicados',
41
42                        // Map non-standard types to this type
43                        'unknown'       => 'misc')
44);
45?>
46