mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 19:24:03 +01:00
101 lines
3.5 KiB
PHP
101 lines
3.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
// Setup form fields
|
|
'setup' => [
|
|
'email' => 'Adresse email',
|
|
'username' => 'Identifiant',
|
|
'password' => 'Mot de passe',
|
|
'site_name' => 'Nom du site',
|
|
'site_domain' => 'Domaine du site',
|
|
'site_timezone' => 'Sélectionnez votre fuseau horaire',
|
|
'site_locale' => 'Sélectionnez votre langue',
|
|
'enable_google2fa' => 'Enable Google Two Factor Authentication',
|
|
],
|
|
|
|
// Login form fields
|
|
'login' => [
|
|
'email' => 'Adresse email',
|
|
'password' => 'Mot de passe',
|
|
'2fauth' => 'Authentication Code',
|
|
],
|
|
|
|
// Incidents form fields
|
|
'incidents' => [
|
|
'name' => 'Nom',
|
|
'status' => 'Statut',
|
|
'message' => 'Message',
|
|
'message-help' => 'Vous pouvez aussi utiliser du Markdown.',
|
|
|
|
'templates' => [
|
|
'name' => 'Nom',
|
|
'template' => 'Modèle',
|
|
],
|
|
],
|
|
|
|
// Components form fields
|
|
'components' => [
|
|
'name' => 'Nom',
|
|
'status' => 'Statut',
|
|
'group' => 'Groupe',
|
|
'description' => 'Description',
|
|
'link' => 'Lien',
|
|
'tags' => 'Tags',
|
|
'tags-help' => 'Séparé par une virgule.',
|
|
|
|
'groups' => [
|
|
'name' => 'Nom',
|
|
],
|
|
],
|
|
|
|
// Settings
|
|
'settings' => [
|
|
/// Application setup
|
|
'app-setup' => [
|
|
'site-name' => 'Nom du site',
|
|
'site-url' => 'URL du site',
|
|
'site-timezone' => 'Fuseau horaire du site',
|
|
'site-locale' => 'Langue du site',
|
|
'about-this-page' => 'À propos de cette page',
|
|
'days-of-incidents' => 'Nombre de jours à afficher ?',
|
|
'banner' => 'Bannière',
|
|
'banner-help' => "Il est recommandé de télécharger des fichiers de moins de 930 pixels de large.",
|
|
'google-analytics' => "Google Analytics code",
|
|
],
|
|
'security' => [
|
|
'allowed-domains' => 'Domaines autorisés. <small class="help-block"></small>',
|
|
'allowed-domains-help' => 'Séparés par une virgule. Les domaines enregistrés ci-dessus seront automatiquement autorisés par défaut.',
|
|
],
|
|
'stylesheet' => [
|
|
'custom-css' => 'Feuille de style personnalisée',
|
|
],
|
|
'theme' => [
|
|
'background-color' => 'Couleur d\'arrière plan',
|
|
'text-color' => 'Couleur du texte',
|
|
],
|
|
],
|
|
|
|
'user' => [
|
|
'username' => 'Identifiant',
|
|
'email' => 'Adresse email',
|
|
'password' => 'Mot de passe',
|
|
'api-token' => 'Jeton API',
|
|
'api-token-help' => 'Regénérer votre jeton API révoquera toutes les applications existantes.',
|
|
'2fa' => [
|
|
'help' => 'Enabling two factor authentication increases security of your account. You will need to download <a href="https://support.google.com/accounts/answer/1066447?hl=en">Google Authenticator</a> or a similar app on to your mobile device. When you login you will be asked to provide a token generated by the app.',
|
|
],
|
|
],
|
|
|
|
// Buttons
|
|
'add' => 'Ajouter',
|
|
'save' => 'Sauvegarder',
|
|
'update' => 'Mettre à jour',
|
|
'create' => 'Créer',
|
|
'edit' => 'Éditer',
|
|
'delete' => 'Effacer',
|
|
'submit' => 'Envoyer',
|
|
'cancel' => 'Annuler',
|
|
'remove' => 'Supprimer'
|
|
];
|