Recent Topics

1 Feb 03, 2012 12:36    

My b2evolution Version: 3.x

I was wondering if anyone could tell me where I can change the text that says "You must be logged in!" or something else on the intital login screen before members can access the blog?

I've looked in all of the files in skins_adm/conf but can't find it.

Thank you

2 Feb 03, 2012 16:39

Create a file /locales/en_US/_global.php and add your "translation" to selected messages.

<?php
/*
 * Global lang file
 */
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );

$trans['en_US'] = array(
'__meta__' => array('format_version'=>1, 'charset'=>'iso-8859-1'),
'Original text' => 'My new text',
'Categories' => 'Chapters',
'Blog' => 'Book',
);
?>


Form is loading...