[Recherche] Advanced Points System 0.9.2 FR

Pour tout ce qui concerne la traduction des MODs phpBB3

Modérateur: Equipe

Règles du forum
Rappel: Conditions générales d'utilisation de phpBB-fr.com

Attention, aucun support de MODs n'est donné dans ce forum.

[Recherche] Advanced Points System 0.9.2 FR

Messagepar PATBILLARD » 29 Sep 2008 à 12:15

Bonjour

Je recherche une personne qui pourrait me traduction en Française les 3 fichiers

pour ce mod :arrow: Points System v.0.7.4

Un Grand merci par avance


info_acp_point_mod.php

Code: Tout sélectionner
<?php
/**
*
* info_acp_point_mod [English]
*
* @author McGod end doktorx
*
* @package acp
* @version $Id: info_acp_point_mod.php 31M 2008-09-11 16:59:30Z doktorx $
* @copyright (c) McGod end doktorx
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
   exit;
}

if (empty($lang) || !is_array($lang))
{
   $lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine

$lang = array_merge($lang, array(
   'ACP_POINTS'               =>   'Advanced Points System',
   
   'ACP_POINTS_INDEX_TITLE'      =>   'Point Settings',
   'ACP_POINTS_DONOR_TITLE'      =>   'Donor Settings',
      'ACP_POINTS_LOTTERY_TITLE'      =>   'Lottery Settings',
      'ACP_POINTS_BANK_TITLE'      =>   'Bank Settings',
   'ACP_POINTS_DONOR_GROUP_TITLE'   =>   'Add Donation Group',
   'POINTS_ADV_OPTIONS'      => 'Advanced Points Settings',
   
   'DONOR_RATIO'               =>   'Donor Ratio',
   'DONOR_RATIO_EXPLAIN'         =>   'Amount of points per USD dollar',

   'DONOR_ENABLE'               =>   'Enable Donation System',
   'DONOR_ENABLE_EXPLAIN'         =>   'Set if you want people to be able to donate for points',
   
   'DONOR_AMOUNTS'               =>   'Donor Increments',
   'DONOR_AMOUNTS_EXPLAIN'         =>   "The increments shown as presets, use ', ' as delimiter.",

   'DONOR_EMAIL'               =>   'Donor Paypal Email',
   'DONOR_EMAIL_EXPLAIN'         =>   'Email that gets the donations, must be a paypal email.',
   
   'DONOR_ANONYMOUS'            =>   'Allow Anonymous Donors',
   'DONOR_ANONYMOUS_EXPLAIN'      =>   'Allows users to donate anonymously without them getting points.',
   
   'DONOR_USERGROUPS'            =>   'Use Donation Groups',
   'DONOR_USERGROUPS_EXPLAIN'      =>   'Places a non-anonymous donor in a defined group.',
   
   'DONOR_SHOWDONORS'            =>   'Show Donation Amounts',
   'DONOR_SHOWDONORS_EXPLAIN'      =>   'Show amount user has donated in profile.',
   
   'DONOR_TOPDONORS'            =>   'Show Top 10 Donors',
   'DONOR_TOPDONORS_EXPLAIN'      =>   'Allow users to see the top donations list.',
   
   //Donation Table
   'DONOR_GROUP'               =>   'Group',
   'DONOR_VALUE'               =>   'Donation Value',
   'DONOR_DEFAULT'               =>   'Make Default Group',
   'DONOR_OPTIONS'               =>   'Options',
   'DONOR_ACTIONS'               =>   'Actions',
   'DONOR_EDIT'               =>   'Edit Settings',
   'DONOR_DELETE'               =>   'Delete',
   
   'DONOR_NOGROUPS'            =>   'There are no donation groups.',
   'DONOR_EDITGROUP'            =>   'You have successfully created or edited the donation group.',
   'DONOR_DELGROUP'            =>   'You have successfully deleted the donation group.',
   'DONOR_DELGROUP_MSG'         =>   'Are you sure you want to delete this donation group?',
   
   'DONOR_ADDGROUP'            =>   'Add Donation Group',
   
   'DONOR_GROUP_NAME'            =>   'Group Name',
   'DONOR_GROUP_NAME_EXPLAIN'      =>   'Group that the donor gets put into.',
   
   'DONOR_GROUP_VALUE'            =>   'Donation Value',   
   'DONOR_GROUP_VALUE_EXPLAIN'      =>   'Amount in USD user has to have donated to join group.',
   
   'DONOR_GROUP_DEFAULT'         =>   'Group Default',
   'DONOR_GROUP_DEFAULT_EXPLAIN'   =>   'Make the group default for the user.',
   
   'DONOR_CONFIG_SUCCESS'         =>   'You have successfully updated the donation settings.',
   
   'POINTS_NAME'               =>   'Points Name',
   'POINTS_NAME_EXPLAIN'         =>   'The name you want the points to be on your board.',
   
   'POINTS_ENABLE'               =>   'Enable Points',
   'POINTS_ENABLE_EXPLAIN'         =>   'Allow users to use the points system.',
   
   'POINTS_TRANSFER'            =>   'Allow Transfers',
   'POINTS_TRANSFER_EXPLAIN'      =>   'Allow users to transfer points to each other.',

   'POINTS_TRANSFER_PM'            =>   'Notify usep by pm when transfer',
   'POINTS_TRANSFER_PM_EXPLAIN'      =>   'Allow users receive a notice by pm when somebody send points to him.',
   
   'POINTS_COMMENTS'            =>   'Allow Comments',
   'POINTS_COMMENTS_EXPLAIN'      =>   'Allow users to leave comments in their points transfer.',

      'points_attachment' =>      'Points for attachments',
      'points_attachment_per_file'  =>  'Points for each new attachment',

      'points_poll'   =>  'Points per new poll',
      'points_poll_per_option'   =>   'Points per option in new polls',

   'points_topic_per_character'     => 'Points per character on new topics',
   'points_topic_per_word'            => 'Points per word on new topics',

   'points_post_per_character'         => 'Points per character in new posts',
   'points_post_per_word'            => 'Points per word in new posts',

   'points_cost_attachment'            => 'Points Cost for download attachements(set 0 to disable this)',
   'reg_points_bonus'            => 'Registration Points Bonus',

   'top_points'            => 'Number of top rich member display on index:',
   'points_warn'            => 'Amount of deleted points per user warn(set 0 to disable this)',

   'POINTS_PERTOPIC'            =>   'Enable Points Per Topic',
   'POINTS_PERTOPIC_EXPLAIN'      =>   'Allow users to gain points per topic they make.',
   
   'POINTS_PERPOST'            =>   'Enable Points Per Post',
   'POINTS_PERPOST_EXPLAIN'      =>   'Allow users to gain points per post (or reply) they make.',

   'POINTS_PEREDIT'            =>   'Enable Points Per Edit',
   'POINTS_PEREDIT_EXPLAIN'      =>   'Allow users to gain points per edit of message they make.',
   
   'POINTS_LOGS'               =>   'Enable Points Logs',
   'POINTS_LOGS_EXPLAIN'         =>   'Allow users to view transfer logs.',

      'LOTTERY_VIEW'                       =>    'Enable module lottery',
      'LOTTERY_VIEW_EXPLAIN'            =>   'This will enable module lottery to be view in points block.',

      'BANK_VIEW'                       =>    'Enable module bank',
      'BANK_VIEW_EXPLAIN'            =>   'This will enable module bank to be view in points block.',
   
   'POINTS_CONFIG_SUCCESS'         =>   'You have successfully updated the points settings.',
   
   'ACP_USER_POINTS_TITLE'            =>   'Points Settings',
      'POINTS_NAME'  =>    'Points',
   
   'USER_POINTS'               =>   'User Points',
   'USER_POINTS_EXPLAIN'         =>   'Amount of points the user has',

   //Lottery Table
   'LOTTERY_OPTIONS'      => 'Lottery Settings',
   'LOTTERY_ENABLE'         => 'Enable lottery',
   'LOTTERY_ENABLE_EXPLAIN'   => 'If disabled, lottery page access is forbidden.',
   'MULTIPLE_TICKETS'         => 'Multi-Ticket support',
   'MULTIPLE_TICKETS_EXPLAIN'   => 'If no cash MOD installed, multi-ticket purchasing will be disabled.',
   'TICKET_COST'            => 'Ticket cost',
   'BASE_AMOUNT'            => 'Base jackpot',
   'BASE_AMOUNT_EXPLAIN'      => 'Jackpot will begin initially with this amount. If raised during a draw period, additional sum will be added to next draw. Jackpot will not decrease if lowered.',
   'DRAW_PERIOD'            =>   'Draw period',
   'DRAW_PERIOD_EXPLAIN'      =>   'Amount of time in hours between drawings. Changing will affect the current draw day/time. Set to 0 to disable drawings, current tickets/jackpot will remain.',

   //Bank Table
   'BANK_OPTIONS'      => 'Bank Settings',
   'BANK_ENABLE'         => 'Enable bank',
   'BANK_ENABLE_EXPLAIN'   => 'If disabled, bank page access is forbidden.',
   'BANK_INTEREST'         => 'Interest Rate',
   'BANK_FEES'         => 'Withdraw Fees',
   'BANK_PAY'         => 'Interest Payment Time',
   'BANK_MINWITHDRAW'         => 'Min. Withdraw',
   'BANK_MINDEPOSIT'         => 'Min. Deposit',
   'BANK_TIME'         => 'seconds',
      'BANK_INTERESTCUT'      => 'Disable Interest At',
      'BANK_INTERESTCUTP'     =>  '(0 to disable this)',
   
   //Forum Edit Languages (acp_forums.html)
   'FORUM_POINT_SETTINGS'         =>   'Forum Point Settings',
   
   'FORUM_PERTOPIC'         =>   'Points Per Topic',
   'FORUM_PERTOPIC_EXPLAIN'   =>   'Amount of points to give to per new topic.',
   
   'FORUM_PERPOST'            =>   'Points Per Post',
   'FORUM_PERPOST_EXPLAIN'      =>   'Amount of points to give to per post (or reply).',

   'FORUM_PEREDIT'            =>   'Points Per Edit Message',
   'FORUM_PEREDIT_EXPLAIN'      =>   'Amount of points to give to per edit message.',
   ));

?>


permissions_points.php

Code: Tout sélectionner
<?php
/**
*
* permissions_points [English]
*
* @author McGod end doktorx
*
* @package acp
* @version $Id: permissions_points.php 31M 2008-08-26 19:52:38Z doktorx $
* @copyright (c) McGod end doktorx
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
   exit;
}

if (empty($lang) || !is_array($lang))
{
    $lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine

// Adding new category
$lang['permission_cat']['points'] = 'Points';

// Adding the permissions
$lang = array_merge($lang, array(
    'acl_u_use_points'    => array('lang' => 'Can use Point System', 'cat' => 'points'),
    'acl_u_use_bank'    => array('lang' => 'Can use Bank System', 'cat' => 'points'),
    'acl_m_lock_points'    => array('lang' => 'Can Lock Others Points', 'cat' => 'points'),
    'acl_m_chg_points'    => array('lang' => 'Can Change Others Points', 'cat' => 'points'),
    'acl_m_chg_bank'    => array('lang' => 'Can Change Others Bank Points', 'cat' => 'points'),
    'acl_a_points'    => array('lang' => 'Can Administrate Points System', 'cat' => 'points'),
));

?>


points.php

Code: Tout sélectionner
<?php
/**
*
* @package phpBB3
* @version $Id: points.php 75 2008-08-15 14:58:17Z doktorx $
* @copyright (c) 2008 McGod end doktorx
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
   exit;
}

if ( empty ( $lang ) || !is_array ( $lang ) )
{
   $lang   = array ( );
}

//
$lang   = array_merge ( $lang, array (
   'IPOINTS'                     => '<a href="http://www.support.forumspellen.nl">Advanced Points</a> v',
   
   //Points Main
   'POINTS_TITLE_MAIN'               => '%1$s Control Panel',
   
   'POINTS_MAIN_LANG_POINTS'         => '%1$s currently has %2$s %3$s.',
   'POINTS_MAIN_LOCKED'            => 'This user is locked and cannot use the points system.',
   'POINTS_MAIN_LANG_DONATE'         => '%1$s has donated %2$s dollars.',   
   
   //Points Transfer
   'POINTS_TITLE_TRANSFER'            => '%1$s Transfer',
   
   'POINTS_TRAN_AMOUNT'            => 'Amount to Send',
   'POINTS_TRAN_COMMENT'            => 'Comment',
   'POINTS_TRAN_REASON_TRANSFER'      => 'Admin has disabled transfering',
   'POINTS_TRAN_REASON_MINPOINTS'      => 'You do not have enough %1$s to transfer.',
   'POINTS_TRAN_REASON_UNDERZERO'      => 'You cannot transfer under 0.00 %1$s.',
   'POINTS_TRAN_REASON_YOURSELF'      => 'You cannot transfer %1$s to yourself!',
   'POINTS_TRAN_REASON_TRANSUCC'      => 'You successfully transfered %1$s %2$s to %3$s!',

   //Donations
   'DONOR_TITLE_MAIN'               => '%1$s Donations',
   'DONOR_TITLE_CONFIRM'            => '%1$s Donation Confirmation',
   
   'DONOR_REASON_DISABLED'            => 'Donation system has been disabled by an Administrator.',
   'DONOR_REASON_WRONGUSER'         => 'You cannot try to donate for others, sorry.',
   'DONOR_REASON_NOAMOUNT'            => 'You cannot donate a value of 0.',
   
   'DONOR_AMUSD'                  => 'Amount in USD',
   'DONOR_AMPOINTS'               => 'Amount of %1$s',
   'DONOR_CUSTOM'                  => 'Custom',
   
   'DONOR_CUSTOMMSG'               => 'Enter a USD amount in the text box below and choose the "Custom Value" radio input.<br />
                                 You will be brought to a confirmation screen to show the value of FG you will receive before<br />
                                 going to PayPal to complete the transaction.',
                                 
   'DONOR_CUSTOMVALUE'               => 'Custom Value',
   'DONOR_CUSTOMVALUE_EXPLAIN'         => 'An USD amount to donate',
   'DONOR_CONFIRMATION'            => 'Confirmation',
   
   'DONOR_ANONYMOUS'               => 'Do you wish to be Anonymous? (You will not receive %1$s)',
   
   'DONOR_MSG'                     => 'This is where you can donate your USD $ for %1$s, the ratio is: <br />
                                 <b>$1.00 USD = %2$s %1$s</b><br /><br />You can use the preset values below or
                                 define an custom amount of cash to donate for FG. <br /><br /> You have currently
                                 donated $%3$s USD.',
                        
   'DONOR_CONFIRM_MESSAGE'            => 'This is the donation confirmation screen.',
   'DONOR_CONFIRM_AMOUNT'            => 'Donation Amount: <b>%1$s USD</b>.',
   'DONOR_CONFIRM_POINTS'            => '%1$s Value: <b>%2$s</b>',
   'DONOR_CONFIRM_ANONYMOUS'         => 'Your donation is anonymous and you <b>WILL NOT</b> recieve %1$s.',

   'DONOR_REASON_NOSHOWDONORS'      =>   'Admin has disabled viewing of other peoples donations.',
   'DONOR_REASON_NOTOPDONORS'      =>   'Admin has disabled viewing of top donations.',
   'DONOR_REASON_BADLINK'         =>   'This is an internal file, you may not access it.',

   //Points Links on top
   'POINTS_OVERVIEW'         =>   'Overview',
   'POINTS_TRANSFER'         =>   'Transfer',
   'POINTS_LOGS'            =>   'Logs',
   'POINTS_DONATE'            =>   'Donate',
      'POINTS_BANK'                    =>  'Bank',
      'POINTS_LOTTERY'               =>   'Lottery',

   //Points Lottery
   'LOTTERY_TITLE_MAIN'               => 'Lottery',
      'TICKET_COST'             =>    'Ticket Cost',
      'VIEWER_TICKETS'            =>  'Tickets you own',
      'JACKPOT'               =>   'Jackpot',
      'NEXT_DRAWING'           =>   'Next drawing will be on',
      'LAST_WINNER'            =>   'The last winner was',
    'VIEW_HISTORY'          =>  'View past winners',
    'VIEW_SELF_HISTORY'        =>   'View your win history',
      'PURCHASE_TICKET'       =>  'Purchase Ticket',
   'TICKET_PURCHASED'      => 'Your ticket purchase is complete!',
   'LACK_FUNDS'         => 'You lack the funds to make that purchase!',
   'LOTTERY_DISABLED'      => 'The lottery is disabled.',
   'INVALID_INPUT'         => 'You need to enter a valid number to purchase tickets.',
   'PM_SUBJECT'         => 'You won the lottery!',
   'PM_BODY'            => 'Congratulations! You have won %1$s the %2$s! %3$s',
   'PM_CASH_ENABLED'      => 'Your winnings have been desposited into your account, enjoy.',
   'HISTORY'            => 'HISTORY',
   'WINNINGS'            => 'Amount Won',
   'DATE'               => 'Date',
   'BACK_TO_LOTTERY'      => '<- Back to main lottery page',
   'NO_WINNERS'         => 'No one has won a lottery yet.',
   'TOTAL_WINNERS'         => 'Total Winners',
   'NEVER_WON'            => 'You have never won the lottery! =[',

   //Points Bank
   'BANK_TITLE_MAIN'               => 'Bank',
      'POINTS_BANK' =>  'Bank',
      'NO_ACCOUNT'  =>   'You don\'t have an account at this bank',
      'click_open_account' => 'Click %sHere%s to open an account',
      'open_account' => 'Open An Account',
      'bank_openedsince' => 'Opened since',
      'holding' => 'Total Holdings',
      'total_accounts' => 'Total Opened Accounts',
      'interest_rate' => 'Interest Rate',
      'withdraw_rate'  => 'Withdraw Rate',
      'button_deposit' => 'Deposit',
      'button_withdraw' => 'Withdraw',
      'withdraw_small_amount' => 'The smallest amount you can withdraw is %s %s.',
      'bank_balance' => 'Balance',
      'bank_info' => 'Bank Information',
      'bank_actions' => 'Actions',
      'have_deposit' => 'You have deposited',
      'to_account' => 'into your bank account',
      'new_balance' => 'Your new balance is',
      'leave_with' => 'Leaving you with',
      'on_hand' => 'on hand',
      'have_withdraw' => 'You have withdrawn',
      'from_account' => 'from your bank account',
      'now_have' => 'You now have',
      'deposit_withdraw'   =>  'Deposit & Withdraw',
      'welcome_bank' => 'Welcome to the',
      'start_balance' => 'Your starting balance is 0.',
      'your_account' => 'You can now deposit and withdraw to your account',
      'deposit_small_amount' => 'The smallest amount you can deposit is %s %s. <br>Click <a href="points.php?mode=bank">here</a> to return to the bank.',
      'withsraw_small_amount' => 'The smallest amount you can withdraw is %s %s. <br>Click <a href="points.php?mode=bank">here</a> to return to the bank.',
      'min_depo' => 'Minimum Deposit',
      'min_with' => 'Minimum Withdrawal',

   //Points Logs
   'POINTS_TITLE_LOGS'            => '%1$s Logs',
   
   'POINTS_LOGS_SORTITEMS'      =>   'Sort Items By:',
   'POINTS_LOGS_DATE'            => 'Date',
   'POINTS_LOGS_TYPE'            => 'Type',
   'POINTS_LOGS_WHO'            => 'Who',
   'POINTS_LOGS_TO'            => 'To',
   'POINTS_LOGS_COMMENT'         => 'Comment',
   
   'POINTS_LOGS_DIRECTION'         =>   'Direction: ',
   'POINTS_LOGS_DESC'            =>   'Descending',
   'POINTS_LOGS_ASC'            =>   'Ascending',
   
   'POINTS_LOGS_RECV'            =>   'Received',
   'POINTS_LOGS_SENT'            =>   'Sent',
   'POINTS_LANG_LOGS_PAGINATION'   =>   'Showing Items %1$s to %2$s Total %3$s Page: %4$s',
   'POINTS_LOGS_REASON_NOLOGS'      => 'There are no logs available.',

   'PM_SUBJECT_DONATE'         => 'You have receive a donation!',
   'PM_BODY_DONATE'            => 'You have receive a donation of %1$s %2$s with this comment: <br><i>%3$s</i> !',     

   //Points Edit
      'SET_AMOUNT'                    => 'New Amount',
      'POINTS_ADMIN'                 => 'Points Mod.',
      'BANK_ADMIN'                 => 'Bank Points Mod.',
   'P_RETURN_POST'         => 'Click %1$shere%2$s to return to the post you where viewing.',
   'P_RETURN_INDEX'         => 'Click %1$shere%2$s to return to the index.',
   'POINTS_SET'         => 'The user\'s points have been updated.<br /><br />',
   'USER_NOT_EXIST'            => 'This user doesn\'t exist.',
   'POINTS_MODIFY'               => '%s Administration',
   'P_POINTS_TITLE'         => 'This is where you can modify a user\'s %s.',
   'P_BANK_TITLE'         => 'This is where you can modify a user\'s bank %s.',
   'BANK_MODIFY'               => 'Bank Administration',
   'MODIFY_POINTS'               => '[Mod.]',
   'DONATE'               => '[Don.]',   
));

?>
PATBILLARD
Posteur néophyte
Posteur néophyte
 
Messages: 10
Inscription: 01 Oct 2004 à 17:20
Localisation: ALBI (81)

Re: Recherche Traduction pour Points System v.0.7.4

Messagepar PATBILLARD » 02 Oct 2008 à 15:30

Je vous joints la traduction que j'ai faite avec l'aide de parker de :arrow: :arrow: Forum Service

:arrow: :arrow: Fichiers fr

En espérant que cela serve à d'autres membres :D
PATBILLARD
Posteur néophyte
Posteur néophyte
 
Messages: 10
Inscription: 01 Oct 2004 à 17:20
Localisation: ALBI (81)

Re: Recherche Traduction pour Points System v.0.7.4

Messagepar Denzuki » 26 Avr 2009 à 14:17

Bonjour,
J'aurais besoin de la traduction de ce MOD, mais le lien vers l'archive est mort.
Voilà, si quelqu'un possède encore ce fichier ou a la gentillesse de le retraduire, je serais ravis ;) !

Merci d'avance !
Image
Avatar de l’utilisateur
Denzuki
Posteur néophyte
Posteur néophyte
 
Messages: 27
Inscription: 07 Aoû 2007 à 10:07

Re: Recherche Traduction pour Points System v.0.7.4

Messagepar Morgyanne » 26 Avr 2009 à 16:17

Salut PATBILLARD,

[!] Merci de mettre l'avatar aux normes : 130px de large, 160px de haut et 25ko maximum :)

@+
Morgyanne :)
Demande de support par MP = Poubelle
Avatar de l’utilisateur
Morgyanne
Administrateur
Administrateur
 
Messages: 31639
Inscription: 21 Mar 2005 à 12:28
Localisation: Juste derrière toi...

Re: Recherche Traduction pour Points System v.0.7.4

Messagepar Denzuki » 16 Mai 2009 à 08:50

Petit up ^^
Image
Avatar de l’utilisateur
Denzuki
Posteur néophyte
Posteur néophyte
 
Messages: 27
Inscription: 07 Aoû 2007 à 10:07


Retourner vers Traductions

 


  • Articles en relation
    Réponses
    Vus
    Dernier message

Qui est en ligne

Utilisateurs parcourant ce forum: Aucun utilisateur enregistré et 2 invités

Partenaires : phpBBHacks.com • phpBB-Seo.com • EzCom-fr.com • phpBB3 Styles • phpBB podpora • phpBB Portugal    Liens : Net Avenir • PromoBenef • Ticket Gagnant