2021-11-25 22:36:21 +01:00
|
|
|
<?php // This file is part of LibreQR, which is distributed under the GNU AGPLv3+ license
|
2019-03-28 22:44:06 +01:00
|
|
|
|
2020-07-01 20:47:02 +02:00
|
|
|
// ----- Settings -----
|
2019-08-13 21:17:08 +02:00
|
|
|
// ----- Paramètres -----
|
2019-03-28 22:44:06 +01:00
|
|
|
|
2020-07-01 20:47:02 +02:00
|
|
|
// EN: Time in seconds after which the QR code will be deleted when a page loads.
|
2021-03-07 23:07:16 +01:00
|
|
|
// Default: 60 * 60 * 24 * 2 (two days)
|
2020-10-25 18:02:57 +01:00
|
|
|
// FR : Temps en secondes après lequel le code QR sera supprimé lors du chargement d'une page.
|
2021-03-07 23:07:16 +01:00
|
|
|
// Par défaut : 60 * 60 * 24 * 2 (deux jours)
|
|
|
|
$timeBeforeDeletion = 60 * 60 * 24 * 2;
|
2019-03-28 22:44:06 +01:00
|
|
|
|
2020-07-01 20:47:02 +02:00
|
|
|
// EN: Theme's name (must be in the themes directory)
|
|
|
|
// FR : Nom du thème (doit être dans le dossier themes)
|
2021-03-07 23:03:33 +01:00
|
|
|
$theme = "libreqr";
|
2019-08-13 21:17:08 +02:00
|
|
|
|
2020-10-12 18:48:53 +02:00
|
|
|
// EN: Language used if those requested by the user are not available
|
2020-07-01 20:47:02 +02:00
|
|
|
// FR : Langue utilisée si celles demandées par l'utilisateurice ne sont pas disponibles
|
2020-10-25 18:02:57 +01:00
|
|
|
$locale = "en";
|
2019-03-17 16:03:43 +01:00
|
|
|
|
2020-10-12 18:48:53 +02:00
|
|
|
// EN: Should the locales requested by the user be ignored?
|
|
|
|
// FR : Faut-il ignorer les langues demandées par l'utilisateurice ?
|
|
|
|
$forceLocale = false;
|
2019-03-17 16:03:43 +01:00
|
|
|
|
2020-10-12 18:48:53 +02:00
|
|
|
// EN: Lenght of the QR code filename
|
|
|
|
// FR : Longueur du nom du fichier du code QR
|
|
|
|
$fileNameLenght = 32;
|
|
|
|
|
2020-10-25 18:02:57 +01:00
|
|
|
// EN: Will be printed at the bottom of the interface
|
|
|
|
// FR : Sera affiché en bas de l'interface
|
|
|
|
$customTextEnabled = false;
|
2021-10-19 17:07:51 +02:00
|
|
|
$customText = "This LibreQR instance is hosted by <a href='https://foo.example/'>foo</a>.";
|