generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from diego-at/add-french-translations
Add French Translations for Dashboard Widgets
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
|
||
return [ | ||
/** | ||
* Dashboard Page | ||
*/ | ||
'navigation_label' => 'Tableau de bord Google Analytics', | ||
'title' => 'Tableau de bord Google Analytics', | ||
|
||
/** | ||
* Widget Heading/Labels | ||
*/ | ||
'page_views' => 'Pages vues', | ||
'visitors' => 'Visiteurs', | ||
'sessions' => 'Sessions', | ||
'sessions_duration' => 'Durée moyenne des sessions', | ||
'sessions_by_country' => 'Sessions par pays', | ||
'sessions_by_device' => 'Sessions par appareil', | ||
'top_referrers' => 'Principales sources de trafic', | ||
'most_visited_pages' => 'Pages les plus visitées', | ||
'one_day_active_users' => 'Utilisateurs actifs sur 1 jour', | ||
'seven_day_active_users' => 'Utilisateurs actifs sur 7 jours', | ||
'fourteen_day_active_users' => 'Utilisateurs actifs sur 14 jours', | ||
'twenty_eight_day_active_users' => 'Utilisateurs actifs sur 28 jours', | ||
|
||
/** | ||
* Filter Labels | ||
*/ | ||
'T' => 'Aujourd’hui', | ||
'Y' => 'Hier', | ||
'TW' => 'Cette semaine', | ||
'LW' => 'La semaine dernière', | ||
'LM' => 'Le mois dernier', | ||
'TM' => 'Ce mois-ci', | ||
'TY' => 'Cette année', | ||
'LSD' => 'Les 7 derniers jours', | ||
'LTD' => 'Les 30 derniers jours', | ||
'FD' => '5 jours', | ||
'TD' => '10 jours', | ||
'FFD' => '15 jours', | ||
|
||
/** | ||
* Trajectory Label Descriptions | ||
*/ | ||
'trending_up' => 'Augmentation', | ||
'trending_down' => 'Diminution', | ||
'steady' => 'Stable', | ||
]; |