]> BookStack Code Mirror - bookstack/blob - resources/lang/en/activities.php
0c3d2e70437e07baaff9b778debebdb8dbfbeade
[bookstack] / resources / lang / en / activities.php
1 <?php
2 /**
3  * Activity text strings.
4  * Is used for all the text within activity logs & notifications.
5  */
6 return [
7
8     // Pages
9     'page_create'                 => 'created page',
10     'page_create_notification'    => 'Page successfully created',
11     'page_update'                 => 'updated page',
12     'page_update_notification'    => 'Page successfully updated',
13     'page_delete'                 => 'deleted page',
14     'page_delete_notification'    => 'Page successfully deleted',
15     'page_restore'                => 'restored page',
16     'page_restore_notification'   => 'Page successfully restored',
17     'page_move'                   => 'moved page',
18
19     // Chapters
20     'chapter_create'              => 'created chapter',
21     'chapter_create_notification' => 'Chapter successfully created',
22     'chapter_update'              => 'updated chapter',
23     'chapter_update_notification' => 'Chapter successfully updated',
24     'chapter_delete'              => 'deleted chapter',
25     'chapter_delete_notification' => 'Chapter successfully deleted',
26     'chapter_move'                => 'moved chapter',
27
28     // Books
29     'book_create'                 => 'created book',
30     'book_create_notification'    => 'Book successfully created',
31     'book_create_from_chapter'              => 'converted chapter to book',
32     'book_create_from_chapter_notification' => 'Chapter successfully converted to a book',
33     'book_update'                 => 'updated book',
34     'book_update_notification'    => 'Book successfully updated',
35     'book_delete'                 => 'deleted book',
36     'book_delete_notification'    => 'Book successfully deleted',
37     'book_sort'                   => 'sorted book',
38     'book_sort_notification'      => 'Book successfully re-sorted',
39
40     // Bookshelves
41     'bookshelf_create'            => 'created bookshelf',
42     'bookshelf_create_notification'    => 'Bookshelf successfully created',
43     'bookshelf_update'                 => 'updated bookshelf',
44     'bookshelf_update_notification'    => 'Bookshelf successfully updated',
45     'bookshelf_delete'                 => 'deleted bookshelf',
46     'bookshelf_delete_notification'    => 'Bookshelf successfully deleted',
47
48     // Favourites
49     'favourite_add_notification' => '":name" has been added to your favourites',
50     'favourite_remove_notification' => '":name" has been removed from your favourites',
51
52     // MFA
53     'mfa_setup_method_notification' => 'Multi-factor method successfully configured',
54     'mfa_remove_method_notification' => 'Multi-factor method successfully removed',
55
56     // Webhooks
57     'webhook_create' => 'created webhook',
58     'webhook_create_notification' => 'Webhook successfully created',
59     'webhook_update' => 'updated webhook',
60     'webhook_update_notification' => 'Webhook successfully updated',
61     'webhook_delete' => 'deleted webhook',
62     'webhook_delete_notification' => 'Webhook successfully deleted',
63
64     // Users
65     'user_update_notification' => 'User successfully updated',
66     'user_delete_notification' => 'User successfully removed',
67
68     // Other
69     'commented_on'                => 'commented on',
70     'permissions_update'          => 'updated permissions',
71 ];