1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-10-30 07:32:39 +01:00
BookStack/lang/fr/activities.php

117 lines
5.3 KiB
PHP

<?php
/**
* Activity text strings.
* Is used for all the text within activity logs & notifications.
*/
return [
// Pages
'page_create' => 'a créé la page',
'page_create_notification' => 'Page créée avec succès',
'page_update' => 'a modifié la page',
'page_update_notification' => 'Page modifiée avec succès',
'page_delete' => 'a supprimé la page',
'page_delete_notification' => 'Page supprimée avec succès',
'page_restore' => 'a restauré la page',
'page_restore_notification' => 'Page restaurée avec succès',
'page_move' => 'a déplacé la page',
'page_move_notification' => 'Page successfully moved',
// Chapters
'chapter_create' => 'a créé le chapitre',
'chapter_create_notification' => 'Chapitre créé avec succès',
'chapter_update' => 'a modifié le chapitre',
'chapter_update_notification' => 'Chapitre modifié avec succès',
'chapter_delete' => 'a supprimé le chapitre',
'chapter_delete_notification' => 'Chapitre supprimé avec succès',
'chapter_move' => 'a déplacé le chapitre',
'chapter_move_notification' => 'Chapter successfully moved',
// Books
'book_create' => 'a créé un livre',
'book_create_notification' => 'Livre créé avec succès',
'book_create_from_chapter' => 'chapitre converti en livre',
'book_create_from_chapter_notification' => 'Chapitre converti en livre avec succès',
'book_update' => 'a modifié le livre',
'book_update_notification' => 'Livre modifié avec succès',
'book_delete' => 'a supprimé un livre',
'book_delete_notification' => 'Livre supprimé avec succès',
'book_sort' => 'a réordonné le livre',
'book_sort_notification' => 'Livre restauré avec succès',
// Bookshelves
'bookshelf_create' => 'a créé l\'étagère',
'bookshelf_create_notification' => 'Étagère créée avec succès',
'bookshelf_create_from_book' => 'livre converti en étagère',
'bookshelf_create_from_book_notification' => 'Livre converti en étagère avec succès',
'bookshelf_update' => 'étagère mise à jour',
'bookshelf_update_notification' => 'Étagère mise à jour avec succès',
'bookshelf_delete' => 'étagère supprimée',
'bookshelf_delete_notification' => 'Étagère supprimée avec succès',
// Revisions
'revision_restore' => 'restored revision',
'revision_delete' => 'deleted revision',
'revision_delete_notification' => 'Revision successfully deleted',
// Favourites
'favourite_add_notification' => '":name" a été ajouté dans vos favoris',
'favourite_remove_notification' => '":name" a été supprimé de vos favoris',
// Auth
'auth_login' => 'logged in',
'auth_register' => 'registered as new user',
'auth_password_reset_request' => 'requested user password reset',
'auth_password_reset_update' => 'reset user password',
'mfa_setup_method' => 'configured MFA method',
'mfa_setup_method_notification' => 'Méthode multi-facteurs configurée avec succès',
'mfa_remove_method' => 'removed MFA method',
'mfa_remove_method_notification' => 'Méthode multi-facteurs supprimée avec succès',
// Settings
'settings_update' => 'updated settings',
'settings_update_notification' => 'Settings successfully updated',
'maintenance_action_run' => 'ran maintenance action',
// Webhooks
'webhook_create' => 'Créer un Webhook',
'webhook_create_notification' => 'Webhook créé avec succès',
'webhook_update' => 'éditer un Webhook',
'webhook_update_notification' => 'Webhook modifié avec succès',
'webhook_delete' => 'supprimer un Webhook',
'webhook_delete_notification' => 'Webhook supprimé avec succès',
// Users
'user_create' => 'created user',
'user_create_notification' => 'User successfully created',
'user_update' => 'updated user',
'user_update_notification' => 'Utilisateur mis à jour avec succès',
'user_delete' => 'deleted user',
'user_delete_notification' => 'Utilisateur supprimé avec succès',
// API Tokens
'api_token_create' => 'created api token',
'api_token_create_notification' => 'API token successfully created',
'api_token_update' => 'updated api token',
'api_token_update_notification' => 'API token successfully updated',
'api_token_delete' => 'deleted api token',
'api_token_delete_notification' => 'API token successfully deleted',
// Roles
'role_create' => 'created role',
'role_create_notification' => 'Rôle créé avec succès',
'role_update' => 'updated role',
'role_update_notification' => 'Rôle mis à jour avec succès',
'role_delete' => 'deleted role',
'role_delete_notification' => 'Rôle supprimé avec succès',
// Recycle Bin
'recycle_bin_empty' => 'emptied recycle bin',
'recycle_bin_restore' => 'restored from recycle bin',
'recycle_bin_destroy' => 'removed from recycle bin',
// Other
'commented_on' => 'a commenté',
'permissions_update' => 'a mis à jour les autorisations sur',
];