Ajout du FR

Ajout du FR + correction du "functions.php"
This commit is contained in:
Gauvain Boiché
2020-03-30 14:52:34 +02:00
commit 5e4c5f9418
4541 changed files with 608941 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<?php
/**
*
* VigLink extension for the phpBB Forum Software package.
*
* @copyright (c) 2014 phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
/**
* 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
//
// Some characters you may want to copy&paste:
// » “ ” …
//
$lang = array_merge($lang, array(
'ACP_VIGLINK_SETTINGS' => 'VigLink settings',
'LOG_VIGLINK_CHECK_FAIL' => '<strong>VigLink settings could not be verified with phpBB.com</strong><br />» %s',
));

View File

@@ -0,0 +1,54 @@
<?php
/**
*
* VigLink extension for the phpBB Forum Software package.
*
* @copyright (c) 2014 phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
/**
* 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
//
// Some characters you may want to copy&paste:
// » “ ” …
//
$lang = array_merge($lang, array(
'ACP_VIGLINK_SETTINGS' => 'VigLink settings',
'ACP_VIGLINK_SETTINGS_EXPLAIN' => 'VigLink is third-party service that discretely monetises links posted by users of your forum without any change to the user experience. When users click on your outbound links to products or services and buy something, the merchants pay VigLink a commission, of which a share is donated to the phpBB project. By choosing to enable VigLink and donating proceeds to the phpBB project, you are supporting our open source organisation and ensuring our continued financial security.',
'ACP_VIGLINK_SETTINGS_CHANGE' => 'You can change these settings at any time in the “<a href="%1$s">VigLink settings</a>” panel.',
'ACP_VIGLINK_SUPPORT_EXPLAIN' => 'You will no longer be redirected to this page once you submit your preferred options below, by clicking the Submit button.',
'ACP_VIGLINK_ENABLE' => 'Enable VigLink',
'ACP_VIGLINK_ENABLE_EXPLAIN' => 'Enables use of VigLink services.',
'ACP_VIGLINK_EARNINGS' => 'Claim your own earnings (optional)',
'ACP_VIGLINK_EARNINGS_EXPLAIN' => 'You can claim your own earnings by signing up for a VigLink Convert account.',
'ACP_VIGLINK_DISABLED_PHPBB' => 'VigLink services have been disabled by phpBB.',
'ACP_VIGLINK_CLAIM' => 'Claim your earnings',
'ACP_VIGLINK_CLAIM_EXPLAIN' => 'You can claim your forums earnings from VigLink monetised links, instead of donating the earnings to the phpBB project. To manage your account settings, sign up for a “VigLink Convert” account by clicking on “Convert account”.',
'ACP_VIGLINK_CONVERT_ACCOUNT' => 'Convert account',
'ACP_VIGLINK_NO_CONVERT_LINK' => 'VigLink convert account link could not be retrieved.',
));

View File

@@ -0,0 +1,41 @@
<?php
/**
* This file is part of the French language pack for the
* VigLink extension for the phpBB forum software package.
*
* @copyright (c) 2014 phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For more information about the language pack, please visit
* https://www.phpbb.com/customise/db/translation/french/
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = [];
}
// 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, [
'ACP_VIGLINK_SETTINGS' => 'Paramètres de VigLink',
'LOG_VIGLINK_CHECK_FAIL' => '<strong>Les paramètres de VigLink ne peuvent pas être vérifiés avec phpBB.com</strong><br>» %s',
]);

View File

@@ -0,0 +1,52 @@
<?php
/**
* This file is part of the French language pack for the
* VigLink extension for the phpBB forum software package.
*
* @copyright (c) 2014 phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For more information about the language pack, please visit
* https://www.phpbb.com/customise/db/translation/french/
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = [];
}
// 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, [
'ACP_VIGLINK_SETTINGS' => 'Paramètres de VigLink',
'ACP_VIGLINK_SETTINGS_EXPLAIN' => 'VigLink est un service tiers qui permet de monétiser en toute tranquillité les liens publiés par les utilisateurs de votre forum sans impacter leur expérience utilisateur. Lorsque les utilisateurs accèderont aux liens menant à des produits ou des services et achèteront quelque chose au marchand partenaire, ce dernier versera à VigLink une commission dont une partie du montant sera partagée au projet phpBB. En choisissant dactiver VigLink tout en laissant les parts des commissions au projet phpBB, vous aidez considérablement notre organisation de logiciels libres et gratuits en assurant notre stabilité financière.',
'ACP_VIGLINK_SETTINGS_CHANGE' => 'Vous pouvez modifier ces paramètres à tout moment depuis le panneau « <a href="%1$s">Paramètres de VigLink</a> ».',
'ACP_VIGLINK_SUPPORT_EXPLAIN' => 'Vous ne serez plus redirigé sur cette page lorsque vous aurez renseigné vos préférences disponibles ci-dessous, en cliquant le bouton « Envoyer ».',
'ACP_VIGLINK_ENABLE' => 'Activer VigLink',
'ACP_VIGLINK_ENABLE_EXPLAIN' => 'Permet lutilisation des services de VigLink.',
'ACP_VIGLINK_EARNINGS' => 'Me reverser mes parts des commissions (optionnel)',
'ACP_VIGLINK_EARNINGS_EXPLAIN' => 'Vous pouvez prétendre à vos parts des commissions sur les ventes générées en inscrivant un compte « VigLink Convert ».',
'ACP_VIGLINK_DISABLED_PHPBB' => 'Les services VigLink ont été désactivés par phpBB.',
'ACP_VIGLINK_CLAIM' => 'Me reverser toutes les parts des commissions',
'ACP_VIGLINK_CLAIM_EXPLAIN' => 'Vous pouvez récupérer la totalité des parts des commissions sur les ventes générées à partir des liens affiliés de votre forum au lieu de verser ces parts comme donations au projet phpBB. Pour récupérer ces parts, vous devez posséder un compte « VigLink Convert ».',
'ACP_VIGLINK_CONVERT_ACCOUNT' => 'Compte « VigLink Convert »',
'ACP_VIGLINK_NO_CONVERT_LINK' => 'Le lien vers votre compte « VigLink Convert » est introuvable.',
]);