|
From: Jon O. <jon...@us...> - 2008-02-13 21:24:25
|
Update of /cvsroot/mxbb/mx_who_am_i/language/lang_swedish In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv32586 Added Files: index.htm lang_main.php Log Message: swedish... fyi, as agreed, i'm allowed to keep these in the cvs, but they are to be dropped when releasing... --- NEW FILE: lang_main.php --- <?php /** * * @package mxBB Portal Module - mx_who_am_i * @version $Id: lang_main.php,v 1.1 2008/02/13 21:24:17 jonohlsson Exp $ * @copyright (c) 2002-2006 [Horace] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /********************************************************************************\ | | subject : mx-portal, CMS & portal, module | name : mx_who_am_i | begin : october, 2005 | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | | author : horace (see additional credit below) | author site : www.empire-wars.com | author email : ho...@em... | | additional 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. | \********************************************************************************/ /********************************************************************************\ | | 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'] = 'Namn:'; $lang['Date_Joined'] = 'Registreringsdatum'; $lang['Post_Total'] = 'Totalt antal inlägg'; $lang['Post_Stats'] = 'Inläggsstatistik'; $lang['Change_Profile'] = '...Ändra din profil...'; $lang['Of_Total_Posts'] = 'av det totala antalet inlägg'; $lang['Posts_Per_Day'] = 'inlägg per dag'; $lang['Missing_Default_Image'] = '...Profilbild saknas...'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |