diff --git a/lang/en/pages/notification.php b/lang/en/pages/notification.php new file mode 100644 index 00000000..90e6d25a --- /dev/null +++ b/lang/en/pages/notification.php @@ -0,0 +1,17 @@ + 'You have no unread notifications.', + 'new_content' => 'Start new forum content ?', + 'choose_content' => 'Start by choosing the type of content you want to create.', + 'article_action' => 'Write an article', + 'share_content' => 'Share a tutorial or important information.', + 'start_discussion' => 'Start a discussion.', + 'start_discussion_description_text' => 'You\'d like to make a contribution.', + 'ask_help' => 'Ask for help', + 'ask_help_description' => 'Got a problem? Let\'s find a solution together.', + +]; diff --git a/lang/fr/pages/notification.php b/lang/fr/pages/notification.php new file mode 100644 index 00000000..dc72deaf --- /dev/null +++ b/lang/fr/pages/notification.php @@ -0,0 +1,17 @@ + 'Vous n\'avez pas de notifications non lues.', + 'new_content' => 'Lancer un nouveau contenu forum ?', + 'choose_content' => ' Commencer par choisir quel type de contenu vous voulez créer.', + 'article_action' => 'Rédiger un article', + 'share_content' => 'Partager un tutoriel ou une information importante.', + 'start_discussion' => ' Démarrer une discussion', + 'start_discussion_description_text' => 'Vous souhaitez apporter une pierre à l\'édifice.', + 'ask_help' => 'Demander de l\'aide', + 'ask_help_description' => ' Vous avez un problème ? Trouvons ensemble une solution.', + +]; diff --git a/resources/views/livewire/notifications-page.blade.php b/resources/views/livewire/notifications-page.blade.php index e129454a..afe8d13e 100644 --- a/resources/views/livewire/notifications-page.blade.php +++ b/resources/views/livewire/notifications-page.blade.php @@ -4,7 +4,7 @@
Vous n'avez pas de notifications non lues.
+{{ __('pages/notification.empty') }}
- Commencer par choisir quel type de contenu vous voulez créer. + {{ __('pages/notification.choose_content') }}
- Partager un tutoriel ou une information importante. + {{ __('pages/notification.share_content') }}
- Vous souhaitez apporter une pierre à l'édifice. + {{ __('pages/notification.start_discussion_description_text') }}
- Vous avez un problème ? Trouvons ensemble une solution. + {{ __('pages/notification.ask_help_description') }}