]> BookStack Code Mirror - bookstack/blob - resources/lang/en/activities.php
Merged branch add_page_move into master
[bookstack] / resources / lang / en / activities.php
1 <?php
2
3 return [
4
5     /**
6      * Activity text strings.
7      * Is used for all the text within activity logs.
8      */
9
10     // Pages
11     'page_create'                 => 'created page',
12     'page_create_notification'    => 'Page Successfully Created',
13     'page_update'                 => 'updated page',
14     'page_update_notification'    => 'Page Successfully Updated',
15     'page_delete'                 => 'deleted page',
16     'page_delete_notification'    => 'Page Successfully Deleted',
17     'page_restore'                => 'restored page',
18     'page_restore_notification'   => 'Page Successfully Restored',
19     'page_move'                   => 'moved page',
20
21     // Chapters
22     'chapter_create'              => 'created chapter',
23     'chapter_create_notification' => 'Chapter Successfully Created',
24     'chapter_update'              => 'updated chapter',
25     'chapter_update_notification' => 'Chapter Successfully Updated',
26     'chapter_delete'              => 'deleted chapter',
27     'chapter_delete_notification' => 'Chapter Successfully Deleted',
28
29     // Books
30     'book_create'                 => 'created book',
31     'book_create_notification'    => 'Book Successfully Created',
32     'book_update'                 => 'updated book',
33     'book_update_notification'    => 'Book Successfully Updated',
34     'book_delete'                 => 'deleted book',
35     'book_delete_notification'    => 'Book Successfully Deleted',
36     'book_sort'                   => 'sorted book',
37     'book_sort_notification'      => 'Book Successfully Re-sorted',
38
39 ];