1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpbb_ynh.git synced 2024-09-03 19:56:36 +02:00
phpbb_ynh/sources/french_language/language/fr/migrator.php
2015-03-07 15:36:42 +00:00

64 lines
2.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
*
* This file is part of the French Language Package for the
* phpBB Forum Software.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @copyright (c) Maël Soucaze <https://www.maelsoucaze.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For information about the language package, please see the
* AUTHORS, LICENSE ans VERSION files.
*
*/
/**
* 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(
'CONFIG_NOT_EXIST' => 'Le réglage de configuration « %s » est introuvable.',
'GROUP_NOT_EXIST' => 'Le groupe « %s » est introuvable.',
'MIGRATION_APPLY_DEPENDENCIES' => 'Appliquer les dépendances de %s.',
'MIGRATION_DATA_DONE' => 'Données installées : %1$s ; durée : %2$.2f secondes',
'MIGRATION_DATA_IN_PROGRESS' => 'Installation des données : %1$s ; durée : %2$.2f secondes',
'MIGRATION_DATA_RUNNING' => 'Installation des données : %s.',
'MIGRATION_EFFECTIVELY_INSTALLED' => 'Migration déjà installée (mais ignorée) : %s',
'MIGRATION_EXCEPTION_ERROR' => 'Une erreur est survenue lors de la requête et une exception a été exécutée. Les modifications effectuées avant que lerreur ne survienne ont été restaurées au mieux mais vous devriez vérifier que votre forum fonctionne correctement.',
'MIGRATION_NOT_FULFILLABLE' => 'La migration « %1$s » nest pas exécutable car la migration « %2$s » est manquante.',
'MIGRATION_NOT_VALID' => '%s nest pas une migration valide.',
'MIGRATION_SCHEMA_DONE' => 'Schémas installés : %1$s ; durée : %2$.2f secondes',
'MIGRATION_SCHEMA_RUNNING' => 'Installation des schémas : %s.',
'MODULE_ERROR' => 'Une erreur est survenue lors de la création dun module : %s',
'MODULE_INFO_FILE_NOT_EXIST' => 'Un fichier dinformation du module est manquant : %2$s',
'MODULE_NOT_EXIST' => 'Un module nécessaire est introuvable : %s',
'PERMISSION_NOT_EXIST' => 'Le réglage de permission « %s » est introuvable.',
'ROLE_NOT_EXIST' => 'Le rôle de permission « %s » est introuvable.',
));