1<?php
2/**
3 * English language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Esther Brunner <wikidesign@gmail.com>
7 */
8
9// for the configuration manager
10$lang['namespace']              = 'default namespace for blog';
11
12$lang['formposition']           = 'position of the new entry form';
13$lang['formposition_o_top']     = 'top';
14$lang['formposition_o_bottom']  = 'bottom';
15$lang['formposition_o_none']    = 'none';
16
17$lang['newentrytitle']          = 'title of the new entry form';
18
19$lang['dateprefix']             = 'prefix date to new entry IDs';
20
21$lang['sortkey']                = 'sort blog entries by';
22$lang['sortkey_o_cdate']        = 'creation date';
23$lang['sortkey_o_mdate']        = 'modification date';
24$lang['sortkey_o_pagename']     = 'page name';
25$lang['sortkey_o_id']           = 'page ID';
26$lang['sortkey_o_title']        = 'title';
27
28$lang['sortorder']              = 'sort order';
29$lang['sortorder_o_ascending']  = 'ascending';
30$lang['sortorder_o_descending'] = 'descending';
31
32$lang['excluded_pages']         = 'exclude certain pages from blog listing (regular expression required)';
33
34$lang['showhistogram']         = 'Display histogram on archive rendering';
35$lang['max_months']             = 'Max months to show in the histogram';
36$lang['histogram_height']       = 'Height of the histogram (in pixels)';
37
38// vim:ts=4:sw=4:et:enc=utf-8:
39