[pLog-svn] r4633 - in plog/branches/lifetype-1.2: config locale templates/default

reto at devel.lifetype.net reto at devel.lifetype.net
Tue Jan 30 16:45:39 EST 2007


Author: reto
Date: 2007-01-30 16:45:39 -0500 (Tue, 30 Jan 2007)
New Revision: 4633

Modified:
   plog/branches/lifetype-1.2/config/config.properties.php
   plog/branches/lifetype-1.2/locale/locale_en_UK.php
   plog/branches/lifetype-1.2/templates/default/commentform.template
Log:
M      locale/locale_en_UK.php
M      templates/default/commentform.template


Modified: plog/branches/lifetype-1.2/config/config.properties.php
===================================================================
--- plog/branches/lifetype-1.2/config/config.properties.php	2007-01-30 15:40:20 UTC (rev 4632)
+++ plog/branches/lifetype-1.2/config/config.properties.php	2007-01-30 21:45:39 UTC (rev 4633)
@@ -26,12 +26,12 @@
 #   (note, if upgrading between minor releases:
 #   1.0 to 1.0.1, etc. you shouldn't run the wizard)
 
-$config['db_host'] = '';
-$config['db_username'] = '';
-$config['db_password'] = '';
-$config['db_database'] = '';
+$config['db_host'] = 'localhost';
+$config['db_username'] = 'devel';
+$config['db_password'] = '1234';
+$config['db_database'] = 'lt_trunk';
 $config["db_persistent"] = true;
-$config['db_character_set'] = 'latin1';
+$config['db_character_set'] = 'utf8';
 
 #
 # the database prefix will be appended to the name of each database tables in case you want
@@ -40,5 +40,5 @@
 # coexist in the same unique database. If you change this after the initial configuration done
 # with the installation wizard, please make sure that you also rename the tables.
 #
-$config['db_prefix'] = '';
+$config['db_prefix'] = 'lt_';
 ?>
\ No newline at end of file

Modified: plog/branches/lifetype-1.2/locale/locale_en_UK.php
===================================================================
--- plog/branches/lifetype-1.2/locale/locale_en_UK.php	2007-01-30 15:40:20 UTC (rev 4632)
+++ plog/branches/lifetype-1.2/locale/locale_en_UK.php	2007-01-30 21:45:39 UTC (rev 4633)
@@ -1243,4 +1243,8 @@
 $messages['help_logout_destination_url'] = 'URL where users will be forwarded when logging out of the service, instead of the login page of the admin interface [ Default Value = empty ]';
 $messages['help_default_global_article_category_id'] = 'Identifier of the default global article category [ Default = empty ]';
 $messages['help_blog_does_not_exist_url'] = 'URL where users will be forwarded when they attempt to reach a blog that does not exist in this site, instead of being forwarded to the site\'s default blog [ Default = empty ]';
-?>
\ No newline at end of file
+
+/* strings for /default/ templates */
+$messages['form_authenticated'] = 'Authenticated';
+
+?>

Modified: plog/branches/lifetype-1.2/templates/default/commentform.template
===================================================================
--- plog/branches/lifetype-1.2/templates/default/commentform.template	2007-01-30 15:40:20 UTC (rev 4632)
+++ plog/branches/lifetype-1.2/templates/default/commentform.template	2007-01-30 21:45:39 UTC (rev 4633)
@@ -8,7 +8,7 @@
 <div><label for="commentText">{$locale->pr("comment_text")}</label><textarea rows="10" cols="30" name="commentText" id="commentText"></textarea></div>
 <div><label for="userName">{$locale->pr("comment_username")}</label>
 	{if $authuser}
-	{$authuser->getUsername()} (<b>Authenticated</b>)<br />
+	{$authuser->getUsername()} (<b>{$locale->tr("form_authenticated")}</b>)<br />
 	<input type="hidden" name="userName" id="userName" value="{if $authuser}{$authuser->getUsername()}{/if}" /></div>
 	{else}
 	<input type="text" name="userName" id="userName" value="" /></div>



More information about the pLog-svn mailing list