préparation de la 0.5

This commit is contained in:
nojhan 2008-06-15 20:21:07 +00:00
commit 2dfde6b61e
278 changed files with 79759 additions and 0 deletions

View file

@ -0,0 +1,122 @@
<?php
/**
* Strip-It configuration
*
* @author Johann "nojhan" Dréo <nojhan@gmail.com>
* @license http://www.gnu.org/licenses/gpl.html GPL
* @copyright 2007 Johann Dréo
*
* @package stripit
*/
/**
* Configuration
*/
class configuration
{
/**
* Software version
*/
var $version = 'pre-0.5 (2008-04-22)';
/**
* URL of the website
*/
var $url = 'http://localhost/stripit';
/**
* Title of the website
*/
var $title = 'Stripit';
/**
* Short description
*
* Is displayed as a subtitle
*/
var $description = 'Ce serait mieux avec des strips libres !';
/**
* Default language of the interface
*/
var $language = 'fr-FR';
/**
* Webmaster's name
*/
var $webmaster = 'inconnu';
/**
* Webmaster's email
*/
var $email = 'inconnu';
/**
* Forum URL
*/
var $forum = 'http://perdu.com';
/**
* Use PunBB integration ?
*/
var $use_punbb = false;
/**
* PunBB's forum ID to use for strips comment
*/
var $punbb_forum_id = '1';
/**
* PunBB's forum ID to use for word of the day
*/
var $punbb_wotd_id = '1';
/**
* Additional URL
*/
var $see_also = array(
'Geekscottes' => 'http://www.nojhan.net/geekscottes'
);
/**
* Shop URL
*/
var $shop = 'http://perdu.com';
/**
* Use cache feature?
*/
var $use_cache = true;
/**
* cache folder (in the template folder)
*/
var $cache_folder = 'cache';
/**
* HTML template folder
*/
var $template_folder = './template';
/**
* Name of HTML template
*/
var $template_name = 'default';
/**
* Name of RSS template
*/
var $template_rss = 'rss';
/**
* Number of thumbnails per gallery page
*/
var $thumbs_per_page = 5;
/**
* Size of the thumbnails
*/
var $thumb_size = 200;
}
?>

33
trunk/conf/lang/en-EN.php Normal file
View file

@ -0,0 +1,33 @@
<?php
class language
{
var $suivant = "Next";
var $precedent = "Previous";
var $premier = "First";
var $dernier = "Last";
var $accueil = "Index";
var $contact = "Contact";
var $rss = "RSS";
var $licence = "License";
var $boutique = "Shop";
var $teeshirt = "(t-shirts & gifts)";
var $propulse = "Powered by";
var $descstrip = "free software for SVG webcomics management";
var $source = "source (SVG)";
var $source_rss = "Click on the image for the source file in the SVG format.";
var $see_also = "See also:";
var $forum ="Forum";
var $forum_new = "New";
var $forum_error = "Cannot read comments";
var $comments = "Comments";
var $wotd = "Word of the day";
function language()
{
$vars = get_class_vars(__CLASS__);
foreach ($vars as $key => $value) {
$this->$key = $value;
}
}
}
?>

34
trunk/conf/lang/fr-FR.php Normal file
View file

@ -0,0 +1,34 @@
<?php
class language
{
var $suivant = "Suivant";
var $precedent = "Précedent";
var $premier = "Premier";
var $dernier = "Dernier";
var $accueil = "Accueil";
var $contact = "Contact";
var $rss = "RSS";
var $licence = "Licence";
var $boutique = "Boutique";
var $teeshirt = "(t-shirts & cadeaux)";
var $propulse = "Propulsé par";
var $descstrip = "logiciel libre de gestion de webcomics en SVG";
var $source = "source (SVG)";
var $source_rss = "Cliquez sur l'image pour le fichier source au format SVG.";
var $see_also = "Voir aussi :";
var $forum = "Forum";
var $forum_new = "Nouveau";
var $forum_error = "Impossible de lire les commentaires";
var $comments = "Commentaires";
var $wotd = "Dernier message du webmaster";
function language()
{
$vars = get_class_vars(__CLASS__);
foreach ($vars as $key => $value) {
$this->$key = $value;
}
}
}
?>