74 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			3.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ída com sucesso',
 | 
						|
    'chapter_move'                => 'moveu o capítulo',
 | 
						|
 | 
						|
    // Books
 | 
						|
    'book_create'                 => 'criou o livro',
 | 
						|
    'book_create_notification'    => 'Livro criado com sucesso',
 | 
						|
    'book_create_from_chapter'              => 'capítulo convertido em livro',
 | 
						|
    'book_create_from_chapter_notification' => 'Capítulo convertido com sucesso em um livro',
 | 
						|
    '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'            => 'prateleira criada',
 | 
						|
    'bookshelf_create_notification'    => 'Prateleira criada com sucesso',
 | 
						|
    'bookshelf_create_from_book'    => 'livro convertido em estante',
 | 
						|
    'bookshelf_create_from_book_notification'    => 'Capítulo convertido com sucesso em um livro',
 | 
						|
    '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" foi adicionada aos seus favoritos',
 | 
						|
    'favourite_remove_notification' => '":name" foi removida dos seus favoritos',
 | 
						|
 | 
						|
    // MFA
 | 
						|
    'mfa_setup_method_notification' => 'Método de multi-fatores configurado com sucesso',
 | 
						|
    'mfa_remove_method_notification' => 'Método de multi-fatores removido com sucesso',
 | 
						|
 | 
						|
    // Webhooks
 | 
						|
    'webhook_create' => 'webhook criado',
 | 
						|
    'webhook_create_notification' => 'Webhook criado com sucesso',
 | 
						|
    'webhook_update' => 'webhook atualizado',
 | 
						|
    'webhook_update_notification' => 'Webhook atualizado com sucesso',
 | 
						|
    'webhook_delete' => 'webhook excluído',
 | 
						|
    'webhook_delete_notification' => 'Webhook excluido com sucesso',
 | 
						|
 | 
						|
    // Users
 | 
						|
    'user_update_notification' => 'Usuário atualizado com sucesso',
 | 
						|
    'user_delete_notification' => 'Usuário removido com sucesso',
 | 
						|
 | 
						|
    // Other
 | 
						|
    'commented_on'                => 'comentou em',
 | 
						|
    'permissions_update'          => 'atualizou permissões',
 | 
						|
];
 |