]> BookStack Code Mirror - bookstack/blob - lang/fr/activities.php
Updated readme attribution and fixed eslint issues
[bookstack] / lang / fr / activities.php
1 <?php
2 /**
3  * Activity text strings.
4  * Is used for all the text within activity logs & notifications.
5  */
6 return [
7
8     // Pages
9     'page_create'                 => 'a créé la page',
10     'page_create_notification'    => 'Page créée avec succès',
11     'page_update'                 => 'a modifié la page',
12     'page_update_notification'    => 'Page modifiée avec succès',
13     'page_delete'                 => 'a supprimé la page',
14     'page_delete_notification'    => 'Page supprimée avec succès',
15     'page_restore'                => 'a restauré la page',
16     'page_restore_notification'   => 'Page restaurée avec succès',
17     'page_move'                   => 'a déplacé la page',
18     'page_move_notification'      => 'Page déplacée avec succès',
19
20     // Chapters
21     'chapter_create'              => 'a créé le chapitre',
22     'chapter_create_notification' => 'Chapitre créé avec succès',
23     'chapter_update'              => 'a modifié le chapitre',
24     'chapter_update_notification' => 'Chapitre modifié avec succès',
25     'chapter_delete'              => 'a supprimé le chapitre',
26     'chapter_delete_notification' => 'Chapitre supprimé avec succès',
27     'chapter_move'                => 'a déplacé le chapitre',
28     'chapter_move_notification' => 'Chapitre déplacé avec succès',
29
30     // Books
31     'book_create'                 => 'a créé un livre',
32     'book_create_notification'    => 'Livre créé avec succès',
33     'book_create_from_chapter'              => 'chapitre converti en livre',
34     'book_create_from_chapter_notification' => 'Chapitre converti en livre avec succès',
35     'book_update'                 => 'a modifié le livre',
36     'book_update_notification'    => 'Livre modifié avec succès',
37     'book_delete'                 => 'a supprimé un livre',
38     'book_delete_notification'    => 'Livre supprimé avec succès',
39     'book_sort'                   => 'a réordonné le livre',
40     'book_sort_notification'      => 'Livre restauré avec succès',
41
42     // Bookshelves
43     'bookshelf_create'            => 'a créé l\'étagère',
44     'bookshelf_create_notification'    => 'Étagère créée avec succès',
45     'bookshelf_create_from_book'    => 'livre converti en étagère',
46     'bookshelf_create_from_book_notification'    => 'Livre converti en étagère avec succès',
47     'bookshelf_update'                 => 'étagère mise à jour',
48     'bookshelf_update_notification'    => 'Étagère mise à jour avec succès',
49     'bookshelf_delete'                 => 'étagère supprimée',
50     'bookshelf_delete_notification'    => 'Étagère supprimée avec succès',
51
52     // Revisions
53     'revision_restore' => 'a restauré la révision',
54     'revision_delete' => 'révision supprimée',
55     'revision_delete_notification' => 'Révision supprimée avec succès',
56
57     // Favourites
58     'favourite_add_notification' => '":name" a été ajouté dans vos favoris',
59     'favourite_remove_notification' => '":name" a été supprimé de vos favoris',
60
61     // Auth
62     'auth_login' => 'connecté',
63     'auth_register' => 'enregistré en tant que nouvel utilisateur',
64     'auth_password_reset_request' => 'demande de réinitialisation du mot de passe',
65     'auth_password_reset_update' => 'réinitialisation du mot de passe',
66     'mfa_setup_method' => 'méthode MFA configurée',
67     'mfa_setup_method_notification' => 'Méthode multi-facteurs configurée avec succès',
68     'mfa_remove_method' => 'méthode MFA supprimée',
69     'mfa_remove_method_notification' => 'Méthode multi-facteurs supprimée avec succès',
70
71     // Settings
72     'settings_update' => 'paramètres mis à jour',
73     'settings_update_notification' => 'Paramètres mis à jour avec succès',
74     'maintenance_action_run' => 'exécuter l\'action de maintenance',
75
76     // Webhooks
77     'webhook_create' => 'Créer un Webhook',
78     'webhook_create_notification' => 'Webhook créé avec succès',
79     'webhook_update' => 'éditer un Webhook',
80     'webhook_update_notification' => 'Webhook modifié avec succès',
81     'webhook_delete' => 'supprimer un Webhook',
82     'webhook_delete_notification' => 'Webhook supprimé avec succès',
83
84     // Users
85     'user_create' => 'utilisateur créé',
86     'user_create_notification' => 'Utilisateur créé avec succès',
87     'user_update' => 'utilisateur mis à jour',
88     'user_update_notification' => 'Utilisateur mis à jour avec succès',
89     'user_delete' => 'utilisateur supprimé',
90     'user_delete_notification' => 'Utilisateur supprimé avec succès',
91
92     // API Tokens
93     'api_token_create' => 'jeton d\'api créé',
94     'api_token_create_notification' => 'Jeton d\'API créé avec succès',
95     'api_token_update' => 'jeton d\'api mis à jour',
96     'api_token_update_notification' => 'Jeton d\'API mis à jour avec succès',
97     'api_token_delete' => 'jeton d\'api supprimé',
98     'api_token_delete_notification' => 'Jeton d\'API supprimé avec succès',
99
100     // Roles
101     'role_create' => 'rôle créé',
102     'role_create_notification' => 'Rôle créé avec succès',
103     'role_update' => 'rôle mis à jour',
104     'role_update_notification' => 'Rôle mis à jour avec succès',
105     'role_delete' => 'rôle supprimé',
106     'role_delete_notification' => 'Rôle supprimé avec succès',
107
108     // Recycle Bin
109     'recycle_bin_empty' => 'corbeille vidée',
110     'recycle_bin_restore' => 'restauré à partir de la corbeille',
111     'recycle_bin_destroy' => 'supprimé de la corbeille',
112
113     // Other
114     'commented_on'                => 'a commenté',
115     'permissions_update'          => 'a mis à jour les autorisations sur',
116 ];