2015-08-16 19:59:23 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Activity text strings.
|
|
|
|
* Is used for all the text within activity logs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Pages
|
2015-08-30 12:47:58 +02: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 13:48:29 +01:00
|
|
|
'page_delete_notification' => 'Page Successfully Deleted',
|
2015-08-30 12:47:58 +02:00
|
|
|
'page_restore' => 'restored page',
|
|
|
|
'page_restore_notification' => 'Page Successfully Restored',
|
2015-08-16 19:59:23 +02:00
|
|
|
|
|
|
|
// Chapters
|
2015-08-30 12:47:58 +02:00
|
|
|
'chapter_create' => 'created chapter',
|
2015-08-29 17:00:19 +02:00
|
|
|
'chapter_create_notification' => 'Chapter Successfully Created',
|
2015-08-30 12:47:58 +02:00
|
|
|
'chapter_update' => 'updated chapter',
|
2015-08-29 17:00:19 +02:00
|
|
|
'chapter_update_notification' => 'Chapter Successfully Updated',
|
2015-08-30 12:47:58 +02:00
|
|
|
'chapter_delete' => 'deleted chapter',
|
2015-08-29 17:00:19 +02:00
|
|
|
'chapter_delete_notification' => 'Chapter Successfully Deleted',
|
2015-08-16 19:59:23 +02:00
|
|
|
|
|
|
|
// Books
|
2015-08-30 12:47:58 +02: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 19:59:23 +02:00
|
|
|
|
2016-02-10 13:48:29 +01:00
|
|
|
];
|