2015-08-16 13:59:23 -04:00
|
|
|
<?php
|
2018-12-14 16:23:05 -05:00
|
|
|
/**
|
|
|
|
* Activity text strings.
|
|
|
|
* Is used for all the text within activity logs & notifications.
|
|
|
|
*/
|
2015-08-16 13:59:23 -04:00
|
|
|
return [
|
|
|
|
|
|
|
|
// Pages
|
2015-08-30 06:47:58 -04:00
|
|
|
'page_create' => 'created page',
|
2021-12-18 06:24:58 -05:00
|
|
|
'page_create_notification' => 'Page successfully created',
|
2015-08-30 06:47:58 -04:00
|
|
|
'page_update' => 'updated page',
|
2021-12-18 06:24:58 -05:00
|
|
|
'page_update_notification' => 'Page successfully updated',
|
2015-08-30 06:47:58 -04:00
|
|
|
'page_delete' => 'deleted page',
|
2021-12-18 06:24:58 -05:00
|
|
|
'page_delete_notification' => 'Page successfully deleted',
|
2015-08-30 06:47:58 -04:00
|
|
|
'page_restore' => 'restored page',
|
2021-12-18 06:24:58 -05:00
|
|
|
'page_restore_notification' => 'Page successfully restored',
|
2016-06-12 07:14:14 -04:00
|
|
|
'page_move' => 'moved page',
|
2015-08-16 13:59:23 -04:00
|
|
|
|
|
|
|
// Chapters
|
2015-08-30 06:47:58 -04:00
|
|
|
'chapter_create' => 'created chapter',
|
2021-12-18 06:24:58 -05:00
|
|
|
'chapter_create_notification' => 'Chapter successfully created',
|
2015-08-30 06:47:58 -04:00
|
|
|
'chapter_update' => 'updated chapter',
|
2021-12-18 06:24:58 -05:00
|
|
|
'chapter_update_notification' => 'Chapter successfully updated',
|
2015-08-30 06:47:58 -04:00
|
|
|
'chapter_delete' => 'deleted chapter',
|
2021-12-18 06:24:58 -05:00
|
|
|
'chapter_delete_notification' => 'Chapter successfully deleted',
|
2016-06-25 10:31:38 -04:00
|
|
|
'chapter_move' => 'moved chapter',
|
2015-08-16 13:59:23 -04:00
|
|
|
|
|
|
|
// Books
|
2015-08-30 06:47:58 -04:00
|
|
|
'book_create' => 'created book',
|
2021-12-18 06:24:58 -05:00
|
|
|
'book_create_notification' => 'Book successfully created',
|
2022-06-14 11:42:29 -04:00
|
|
|
'book_create_from_chapter' => 'converted chapter to book',
|
|
|
|
'book_create_from_chapter_notification' => 'Chapter successfully converted to a book',
|
2015-08-30 06:47:58 -04:00
|
|
|
'book_update' => 'updated book',
|
2021-12-18 06:24:58 -05:00
|
|
|
'book_update_notification' => 'Book successfully updated',
|
2015-08-30 06:47:58 -04:00
|
|
|
'book_delete' => 'deleted book',
|
2021-12-18 06:24:58 -05:00
|
|
|
'book_delete_notification' => 'Book successfully deleted',
|
2015-08-30 06:47:58 -04:00
|
|
|
'book_sort' => 'sorted book',
|
2021-12-18 06:24:58 -05:00
|
|
|
'book_sort_notification' => 'Book successfully re-sorted',
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2018-09-16 14:34:09 -04:00
|
|
|
// Bookshelves
|
2021-12-18 06:24:58 -05:00
|
|
|
'bookshelf_create' => 'created bookshelf',
|
|
|
|
'bookshelf_create_notification' => 'Bookshelf successfully created',
|
2022-06-15 10:05:08 -04:00
|
|
|
'bookshelf_create_from_book' => 'converted book to bookshelf',
|
|
|
|
'bookshelf_create_from_book_notification' => 'Book successfully converted to a shelf',
|
2018-09-16 14:34:09 -04:00
|
|
|
'bookshelf_update' => 'updated bookshelf',
|
2021-12-18 06:24:58 -05:00
|
|
|
'bookshelf_update_notification' => 'Bookshelf successfully updated',
|
2018-09-16 14:34:09 -04:00
|
|
|
'bookshelf_delete' => 'deleted bookshelf',
|
2021-12-18 06:24:58 -05:00
|
|
|
'bookshelf_delete_notification' => 'Bookshelf successfully deleted',
|
2018-09-16 14:34:09 -04:00
|
|
|
|
2021-05-15 19:29:56 -04:00
|
|
|
// Favourites
|
|
|
|
'favourite_add_notification' => '":name" has been added to your favourites',
|
|
|
|
'favourite_remove_notification' => '":name" has been removed from your favourites',
|
|
|
|
|
2021-06-30 17:10:02 -04:00
|
|
|
// MFA
|
|
|
|
'mfa_setup_method_notification' => 'Multi-factor method successfully configured',
|
2021-07-14 16:27:21 -04:00
|
|
|
'mfa_remove_method_notification' => 'Multi-factor method successfully removed',
|
2021-06-30 17:10:02 -04:00
|
|
|
|
2021-12-08 09:29:42 -05:00
|
|
|
// Webhooks
|
|
|
|
'webhook_create' => 'created webhook',
|
|
|
|
'webhook_create_notification' => 'Webhook successfully created',
|
|
|
|
'webhook_update' => 'updated webhook',
|
|
|
|
'webhook_update_notification' => 'Webhook successfully updated',
|
|
|
|
'webhook_delete' => 'deleted webhook',
|
|
|
|
'webhook_delete_notification' => 'Webhook successfully deleted',
|
|
|
|
|
2022-02-03 10:12:50 -05:00
|
|
|
// Users
|
2022-02-03 11:52:28 -05:00
|
|
|
'user_update_notification' => 'User successfully updated',
|
2022-02-03 10:12:50 -05:00
|
|
|
'user_delete_notification' => 'User successfully removed',
|
|
|
|
|
2017-09-09 12:06:30 -04:00
|
|
|
// Other
|
|
|
|
'commented_on' => 'commented on',
|
2020-11-18 18:38:44 -05:00
|
|
|
'permissions_update' => 'updated permissions',
|
2016-02-10 07:48:29 -05:00
|
|
|
];
|