]> BookStack Code Mirror - bookstack/blob - resources/lang/en/activities.php
Updated views for permissions and added notifications. Fixes #2 and #7
[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 Created',
17     'page_restore' => 'restored page',
18     'page_restore_notification' => 'Page Successfully Restored',
19
20     // Chapters
21     'chapter_create' => 'created chapter',
22     'chapter_create_notification' => 'Chapter Successfully Created',
23     'chapter_update' => 'updated chapter',
24     'chapter_update_notification' => 'Chapter Successfully Updated',
25     'chapter_delete' => 'deleted chapter',
26     'chapter_delete_notification' => 'Chapter Successfully Deleted',
27
28     // Books
29     'book_create' => 'created book',
30     'book_create_notification' => 'Book Successfully Created',
31     'book_update' => 'updated book',
32     'book_update_notification' => 'Book Successfully Updated',
33     'book_delete' => 'deleted book',
34     'book_delete_notification' => 'Book Successfully Deleted',
35     'book_sort'   => 'sorted book',
36     'book_sort_notification' => 'Book Successfully Re-sorted',
37
38 ];