summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/blog/lang/en/settings.php
blob: a11289691421128b43324cdb3fc9f117a730b9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
 * English language file
 *
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     Esther Brunner <wikidesign@gmail.com>
 */
 
// for the configuration manager
$lang['namespace']              = 'default namespace for blog';

$lang['formposition']           = 'position of the new entry form';
$lang['formposition_o_top']     = 'top';
$lang['formposition_o_bottom']  = 'bottom';
$lang['formposition_o_none']    = 'none';

$lang['newentrytitle']          = 'title of the new entry form';

$lang['dateprefix']             = 'prefix date to new entry IDs';

$lang['sortkey']                = 'sort blog entries by';
$lang['sortkey_o_cdate']        = 'creation date';
$lang['sortkey_o_mdate']        = 'modification date';
$lang['sortkey_o_pagename']     = 'page name';
$lang['sortkey_o_id']           = 'page ID';
$lang['sortkey_o_title']        = 'title';

$lang['sortorder']              = 'sort order';
$lang['sortorder_o_ascending']  = 'ascending';
$lang['sortorder_o_descending'] = 'descending';

$lang['excluded_pages']         = 'exclude certain pages from blog listing (regular expression required)';

$lang['showhistogram']         = 'Display histogram on archive rendering';
$lang['max_months']             = 'Max months to show in the histogram';
$lang['histogram_height']       = 'Height of the histogram (in pixels)';

// vim:ts=4:sw=4:et:enc=utf-8: