flatpress/fp-defaults/settings-defaults.php
Fraenkiman 190cafd830 issue198supplement
Now the correct language is displayed in the admin area after the automatic detection of the language abbreviation.
2023-10-02 01:19:47 +02:00

43 lines
846 B
PHP
Executable File

<?php
$fp_config = array(
'general' => array(
'www' => 'http://localhost',
'title' => 'FlatPress',
'subtitle' => 'My FlatPress blog',
'footer' => '',
'author' => 'FlatPress Team',
'email' => 'webmaster@localhost.com',
'startpage' => NULL,
'maxentries' => '5',
'notify' => true,
'theme' => 'leggero',
'style' => 'leggero-v2',
'blogid' => 'fpdefid',
'charset' => 'utf-8'
),
'locale' => array(
'timeoffset' => '2',
'timeformat' => '%H:%M:%S',
'dateformat' => '%A, %B %e, %Y',
'dateformatshort' => '%Y-%m-%d',
'charset' => 'utf-8',
'lang' => LANG_DEFAULT . $browserLang
),
'plugins' => array(
'blockparser' => array(
'pages' => array(
'menu',
'about'
),
),
'bbcode' => array (
'escape-html' => true,
'comments' => false,
'editor' => true,
'url-maxlen' => 40,
),
),
);
?>