54 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Activity text strings.
 | 
						|
 * Is used for all the text within activity logs & notifications.
 | 
						|
 */
 | 
						|
return [
 | 
						|
 | 
						|
    // Pages
 | 
						|
    'page_create'                 => 'criou a página',
 | 
						|
    'page_create_notification'    => 'Página criada com sucesso',
 | 
						|
    'page_update'                 => 'atualizou a página',
 | 
						|
    'page_update_notification'    => 'Página atualizada com sucesso',
 | 
						|
    'page_delete'                 => 'excluiu a página',
 | 
						|
    'page_delete_notification'    => 'Página excluída com sucesso',
 | 
						|
    'page_restore'                => 'restaurou a página',
 | 
						|
    'page_restore_notification'   => 'Página restaurada com sucesso',
 | 
						|
    'page_move'                   => 'moveu a página',
 | 
						|
 | 
						|
    // Chapters
 | 
						|
    'chapter_create'              => 'criou o capítulo',
 | 
						|
    'chapter_create_notification' => 'Capítulo criado com sucesso',
 | 
						|
    'chapter_update'              => 'atualizou o capítulo',
 | 
						|
    'chapter_update_notification' => 'Capítulo atualizado com sucesso',
 | 
						|
    'chapter_delete'              => 'excluiu o capítulo',
 | 
						|
    'chapter_delete_notification' => 'Capítulo excluído com sucesso',
 | 
						|
    'chapter_move'                => 'moveu o capítulo',
 | 
						|
 | 
						|
    // Books
 | 
						|
    'book_create'                 => 'criou o livro',
 | 
						|
    'book_create_notification'    => 'Livro criado com sucesso',
 | 
						|
    'book_update'                 => 'atualizou o livro',
 | 
						|
    'book_update_notification'    => 'Livro atualizado com sucesso',
 | 
						|
    'book_delete'                 => 'excluiu o livro',
 | 
						|
    'book_delete_notification'    => 'Livro excluído com sucesso',
 | 
						|
    'book_sort'                   => 'ordenou o livro',
 | 
						|
    'book_sort_notification'      => 'Livro reordenado com sucesso',
 | 
						|
 | 
						|
    // Bookshelves
 | 
						|
    'bookshelf_create'            => 'criou a prateleira',
 | 
						|
    'bookshelf_create_notification'    => 'Prateleira criada com sucesso',
 | 
						|
    'bookshelf_update'                 => 'atualizou a prateleira',
 | 
						|
    'bookshelf_update_notification'    => 'Prateleira atualizada com sucesso',
 | 
						|
    'bookshelf_delete'                 => 'excluiu a prateleira',
 | 
						|
    'bookshelf_delete_notification'    => 'Prateleira excluída com sucesso',
 | 
						|
 | 
						|
    // Favourites
 | 
						|
    'favourite_add_notification' => '":name" has been added to your favourites',
 | 
						|
    'favourite_remove_notification' => '":name" has been removed from your favourites',
 | 
						|
 | 
						|
    // Other
 | 
						|
    'commented_on'                => 'comentou em',
 | 
						|
    'permissions_update'          => 'atualizou permissões',
 | 
						|
];
 |