mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 06:30:08 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 82831abb30 | |||
| 144be5c0f5 | |||
| 316b253604 | |||
| 9419fe83fb |
+2
-2
@@ -67,7 +67,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'timezone' => env('APP_TIMEZONE', 'UTC'),
|
||||
'timezone' => env('APP_TIMEZONE') ?? env('TZ', 'UTC'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -151,7 +151,7 @@ return [
|
||||
|
||||
'datetime_format' => env('DATETIME_FORMAT', 'M. j, Y g:ia'),
|
||||
|
||||
'display_timezone' => env('DISPLAY_TIMEZONE', 'UTC'),
|
||||
'display_timezone' => env('DISPLAY_TIMEZONE') ?? env('TZ', 'UTC'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -48,10 +48,12 @@ return [
|
||||
'settings' => 'Réglages',
|
||||
'users' => 'Utilisateurs',
|
||||
'documentation' => 'Documentation',
|
||||
'documentation_description' => 'Besoin d\'aide pour démarrer ou configurer vos tests de vitesse ?',
|
||||
'view_documentation' => 'Afficher la documentation',
|
||||
'links' => 'Liens',
|
||||
'donate' => 'Faire un don',
|
||||
'donations' => 'Dons',
|
||||
'donations_description' => 'Soutenez le développement et la maintenance de Speedtest Tracker en faisant un don.',
|
||||
|
||||
// Roles
|
||||
'admin' => 'Administrateur',
|
||||
|
||||
@@ -56,6 +56,7 @@ return [
|
||||
'webhook' => [
|
||||
'add' => 'Ajouter des URL de webhook !',
|
||||
'sent' => 'Notification de test du webhook envoyée.',
|
||||
'failed' => 'Échec de la notification Webhook.',
|
||||
'payload' => 'Test de la notification de webhook',
|
||||
],
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user