|
From: Justin H. <jus...@us...> - 2005-10-14 20:37:43
|
Update of /cvsroot/mxbb/mx_who_am_i/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12498/mx_who_am_i/language/lang_english Added Files: lang_main.php Log Message: New module: mx_who_am_i Quick profile view for users logged in with REG access rights. --- NEW FILE: lang_main.php --- <?php /********************************************************************************\ | | subject : mx-portal, CMS & portal, module | name : Who Am I | begin : october, 2005 | copyright : (C) 2002-2005 MX-System | author : horace & retorq (see below) | email : ho...@em... | mxBB project site : www.mx-system.com | | credit : This module is based on the mx_loggedin function | created by RETORQ. | re...@di... | www.digitalhijinx.com | | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. |********************************************************************************| | | $Id: lang_main.php,v 1.1 2005/10/14 20:37:32 justinheasman Exp $ | \********************************************************************************/ /********************************************************************************\ | | This program is free software; you can redistribute it and/or modify | it under the terms of the GNU General Public License as published by | the Free Software Foundation; either version 2 of the License, or | (at your option) any later version. | \********************************************************************************/ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); // Module $lang['Profile_Name'] = "Name:"; $lang['Date_Joined'] = "Date Joined"; $lang['Post_Total'] = "Post Total"; $lang['Post_Stats'] = "Post Stats"; $lang['Change_Profile'] = "...Change Profile..."; $lang['Of_Total_Posts'] = "of the total posts"; $lang['Posts_Per_Day'] = "posts per day"; $lang['Missing_default_image'] = "...Defaut Image Missing..."; // // That's all Folks! // ------------------------------------------------- ?> |