[Astrospaces-commits] SF.net SVN: astrospaces: [49] trunk
Brought to you by:
p3net
From: <p3...@us...> - 2007-07-31 00:07:54
|
Revision: 49 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=49&view=rev Author: p3net Date: 2007-07-30 17:07:55 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Beginnings of language engine. Includes a sample language file. Note that the actual language files will most likely have to be made during theme development by caleb Added Paths: ----------- trunk/lang/ trunk/lang/en/ trunk/lang/en/lang_main.php Added: trunk/lang/en/lang_main.php =================================================================== --- trunk/lang/en/lang_main.php (rev 0) +++ trunk/lang/en/lang_main.php 2007-07-31 00:07:55 UTC (rev 49) @@ -0,0 +1,40 @@ +<?php +/******************************************************* + * Copyright (C) 2007 http://p3net.net + + 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. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + + @id: $Id$ +*********************************************************/ +$lang = array(); +$main=array( + 'BLOG_AUTHOR' => 'Author', + 'BLOG_TIME' => 'Posted at', + 'BLOG_COMMENT' => 'This post has 1 comment', + 'BLOG_COMMENTS' => 'This post has %s comments', + 'BLOG_LEAVE_COMMENT' => 'Click %s to leave a comment on this post', + 'BLOG_POST' => 'New blog post', + 'BLOG_COMMENT_SUBMITTED' => 'Your comment has been submitted', + 'BLOG_POST_SUBMITTED' => 'Your post has been submitted', + 'GALLERY_VIEWS' => '%s views', + 'GALLERY_OWNER' => 'Uploaded by', + 'GALLERY_COMMENT' => 'This image has 1 comment', + 'GALLERY_COMMENTS' => 'This image has %s comments', + 'GALLERY_LEAVE_COMMEMNT' => 'Click %s to leave a comment on this image', + 'GLOBAL_HERE' => 'here', + 'ERROR_MUST_BE_LOGGEDIN' => 'You must be logged in to access this page' +) +$lang=array_merge($lang, $main); +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |