2015-08-16 18:59:23 +01:00
|
|
|
<?php
|
2018-12-14 21:23:05 +00:00
|
|
|
/**
|
|
|
|
* Activity text strings.
|
|
|
|
* Is used for all the text within activity logs & notifications.
|
|
|
|
*/
|
2015-08-16 18:59:23 +01:00
|
|
|
return [
|
|
|
|
|
|
|
|
// Pages
|
2015-08-30 11:47:58 +01:00
|
|
|
'page_create' => 'created page',
|
|
|
|
'page_create_notification' => 'Page Successfully Created',
|
|
|
|
'page_update' => 'updated page',
|
|
|
|
'page_update_notification' => 'Page Successfully Updated',
|
|
|
|
'page_delete' => 'deleted page',
|
2016-02-10 12:48:29 +00:00
|
|
|
'page_delete_notification' => 'Page Successfully Deleted',
|
2015-08-30 11:47:58 +01:00
|
|
|
'page_restore' => 'restored page',
|
|
|
|
'page_restore_notification' => 'Page Successfully Restored',
|
2016-06-12 12:14:14 +01:00
|
|
|
'page_move' => 'moved page',
|
2015-08-16 18:59:23 +01:00
|
|
|
|
|
|
|
// Chapters
|
2015-08-30 11:47:58 +01:00
|
|
|
'chapter_create' => 'created chapter',
|
2015-08-29 16:00:19 +01:00
|
|
|
'chapter_create_notification' => 'Chapter Successfully Created',
|
2015-08-30 11:47:58 +01:00
|
|
|
'chapter_update' => 'updated chapter',
|
2015-08-29 16:00:19 +01:00
|
|
|
'chapter_update_notification' => 'Chapter Successfully Updated',
|
2015-08-30 11:47:58 +01:00
|
|
|
'chapter_delete' => 'deleted chapter',
|
2015-08-29 16:00:19 +01:00
|
|
|
'chapter_delete_notification' => 'Chapter Successfully Deleted',
|
2016-06-25 15:31:38 +01:00
|
|
|
'chapter_move' => 'moved chapter',
|
2015-08-16 18:59:23 +01:00
|
|
|
|
|
|
|
// Books
|
2015-08-30 11:47:58 +01:00
|
|
|
'book_create' => 'created book',
|
|
|
|
'book_create_notification' => 'Book Successfully Created',
|
|
|
|
'book_update' => 'updated book',
|
|
|
|
'book_update_notification' => 'Book Successfully Updated',
|
|
|
|
'book_delete' => 'deleted book',
|
|
|
|
'book_delete_notification' => 'Book Successfully Deleted',
|
|
|
|
'book_sort' => 'sorted book',
|
|
|
|
'book_sort_notification' => 'Book Successfully Re-sorted',
|
2015-08-16 18:59:23 +01:00
|
|
|
|
2018-09-16 19:34:09 +01:00
|
|
|
// Bookshelves
|
|
|
|
'bookshelf_create' => 'created Bookshelf',
|
|
|
|
'bookshelf_create_notification' => 'Bookshelf Successfully Created',
|
|
|
|
'bookshelf_update' => 'updated bookshelf',
|
|
|
|
'bookshelf_update_notification' => 'Bookshelf Successfully Updated',
|
|
|
|
'bookshelf_delete' => 'deleted bookshelf',
|
|
|
|
'bookshelf_delete_notification' => 'Bookshelf Successfully Deleted',
|
|
|
|
|
2017-09-09 17:06:30 +01:00
|
|
|
// Other
|
|
|
|
'commented_on' => 'commented on',
|
2016-02-10 12:48:29 +00:00
|
|
|
];
|