mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 20:32:44 +01:00
41 lines
1.6 KiB
PHP
41 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/**
|
|
* Activity text strings.
|
|
* Is used for all the text within activity logs & notifications.
|
|
*/
|
|
|
|
// Pages
|
|
'page_create' => 'aangemaakte pagina',
|
|
'page_create_notification' => 'Pagina Succesvol Aangemaakt',
|
|
'page_update' => 'bijgewerkte pagina',
|
|
'page_update_notification' => 'Pagina Succesvol Bijgewerkt',
|
|
'page_delete' => 'verwijderde pagina',
|
|
'page_delete_notification' => 'Pagina Succesvol Verwijderd',
|
|
'page_restore' => 'restored page',
|
|
'page_restore_notification' => 'Pagina Succesvol Hersteld',
|
|
'page_move' => 'verplaatste pagina',
|
|
|
|
// Chapters
|
|
'chapter_create' => 'aangemaakt hoofdstuk',
|
|
'chapter_create_notification' => 'Hoofdstuk Succesvol Aangemaakt',
|
|
'chapter_update' => 'bijgewerkt hoofdstuk',
|
|
'chapter_update_notification' => 'Hoofdstuk Succesvol Bijgewerkt',
|
|
'chapter_delete' => 'verwijderd hoofdstuk',
|
|
'chapter_delete_notification' => 'Hoofdstuk Succesvol Verwijderd',
|
|
'chapter_move' => 'verplaatst hoofdstuk',
|
|
|
|
// Books
|
|
'book_create' => 'aangemaakt boek',
|
|
'book_create_notification' => 'Boek Succesvol Aangemaakt',
|
|
'book_update' => 'bijgewerkt boek',
|
|
'book_update_notification' => 'Boek Succesvol Bijgewerkt',
|
|
'book_delete' => 'verwijderd boek',
|
|
'book_delete_notification' => 'Boek Succesvol Verwijderd',
|
|
'book_sort' => 'gesorteerd book',
|
|
'book_sort_notification' => 'Boek Succesvol Gesorteerd',
|
|
|
|
];
|