mise en place de la release 0.7
passage pour le trunk a la version PHP 5 (voir le fichier RELEASE.fr pourplus de renseignement sur la nouvelle version de developpement)
This commit is contained in:
parent
0d66093946
commit
3145e721c3
286 changed files with 1971 additions and 78266 deletions
44
inc/lang/en-EN.php
Normal file
44
inc/lang/en-EN.php
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
/**
|
||||
* The class for the english language
|
||||
*
|
||||
* @license http://www.gnu.org/licenses/gpl.html GPL
|
||||
* @copyright 2009 Johann Dréo, Simon Leblanc
|
||||
* @package stripit
|
||||
* @see AbstractLang
|
||||
*/
|
||||
class Lang extends AbstractLang
|
||||
{
|
||||
/**
|
||||
* We initialize the attributes of the abstract class with the good language
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->language = 'en-EN';
|
||||
|
||||
$this->suivant = "Next";
|
||||
$this->precedent = "Previous";
|
||||
$this->premier = "First";
|
||||
$this->dernier = "Last";
|
||||
$this->accueil = "Index";
|
||||
$this->contact = "Contact";
|
||||
$this->rss = "RSS";
|
||||
$this->licence = "License";
|
||||
$this->boutique = "Shop";
|
||||
$this->teeshirt = "(t-shirts & gifts)";
|
||||
$this->propulse = "Powered by";
|
||||
$this->descstrip = "free software for SVG webcomics management";
|
||||
$this->source = "source (SVG)";
|
||||
$this->source_rss = "Click on the image for the source file in the SVG format.";
|
||||
$this->see_also = "See also:";
|
||||
$this->forum = "Forum";
|
||||
$this->forum_new = "New";
|
||||
$this->forum_view = "Show the topic";
|
||||
$this->forum_error = "Cannot read comments";
|
||||
$this->comments = "Comments";
|
||||
$this->wotd = "Word of the day";
|
||||
$this->gallery = "Gallery";
|
||||
}
|
||||
}
|
||||
44
inc/lang/fr-FR.php
Normal file
44
inc/lang/fr-FR.php
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
/**
|
||||
* The class for the french language
|
||||
*
|
||||
* @license http://www.gnu.org/licenses/gpl.html GPL
|
||||
* @copyright 2009 Johann Dréo, Simon Leblanc
|
||||
* @package stripit
|
||||
* @see AbstractLang
|
||||
*/
|
||||
class Lang extends AbstractLang
|
||||
{
|
||||
/**
|
||||
* We initialize the attributes of the abstract class with the good language
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->language = 'fr-FR';
|
||||
|
||||
$this->suivant = "Suivant";
|
||||
$this->precedent = "Précedent";
|
||||
$this->premier = "Premier";
|
||||
$this->dernier = "Dernier";
|
||||
$this->accueil = "Accueil";
|
||||
$this->contact = "Contact";
|
||||
$this->rss = "RSS";
|
||||
$this->licence = "Licence";
|
||||
$this->boutique = "Boutique";
|
||||
$this->teeshirt = "(t-shirts & cadeaux)";
|
||||
$this->propulse = "Propulsé par";
|
||||
$this->descstrip = "logiciel libre de gestion de webcomics en SVG";
|
||||
$this->source = "source (SVG)";
|
||||
$this->source_rss = "Cliquez sur l'image pour le fichier source au format SVG.";
|
||||
$this->see_also = "Voir aussi :";
|
||||
$this->forum = "Forum";
|
||||
$this->forum_new = "Nouveau";
|
||||
$this->forum_view = "Voir le sujet";
|
||||
$this->forum_error = "Impossible de lire les commentaires";
|
||||
$this->comments = "Commentaires";
|
||||
$this->wotd = "Dernier message du webmaster";
|
||||
$this->gallery = "Galerie";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue