79 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.6 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'                 => 'página atualizada',
 | 
						|
    'page_update_notification'    => 'Página atualizada com sucesso.',
 | 
						|
    'page_delete'                 => 'página eliminada',
 | 
						|
    'page_delete_notification'    => 'Página excluída com sucesso.',
 | 
						|
    'page_restore'                => 'página restaurada',
 | 
						|
    'page_restore_notification'   => 'Página restaurada com sucesso',
 | 
						|
    'page_move'                   => 'página movida',
 | 
						|
 | 
						|
    // Chapters
 | 
						|
    'chapter_create'              => 'capítulo criado',
 | 
						|
    'chapter_create_notification' => 'Capítulo criado com sucesso',
 | 
						|
    'chapter_update'              => 'capítulo atualizado',
 | 
						|
    'chapter_update_notification' => 'Capítulo atualizado com sucesso',
 | 
						|
    'chapter_delete'              => 'capítulo excluído',
 | 
						|
    'chapter_delete_notification' => 'Capítulo excluído com sucesso',
 | 
						|
    'chapter_move'                => 'capítulo movido',
 | 
						|
 | 
						|
    // Books
 | 
						|
    'book_create'                 => 'livro criado',
 | 
						|
    'book_create_notification'    => 'Livro criado com sucesso',
 | 
						|
    'book_create_from_chapter'              => 'capítulo convertido para lívro',
 | 
						|
    'book_create_from_chapter_notification' => 'Capítulo convertido em livro com sucesso',
 | 
						|
    'book_update'                 => 'livro atualizado',
 | 
						|
    'book_update_notification'    => 'Livro atualizado com sucesso',
 | 
						|
    'book_delete'                 => 'livro eliminado',
 | 
						|
    'book_delete_notification'    => 'Livro eliminado com sucesso',
 | 
						|
    'book_sort'                   => 'livro ordenado',
 | 
						|
    'book_sort_notification'      => 'Livro reordenado com sucesso',
 | 
						|
 | 
						|
    // Bookshelves
 | 
						|
    'bookshelf_create'            => 'estante criada',
 | 
						|
    'bookshelf_create_notification'    => 'Estante criada com sucesso',
 | 
						|
    'bookshelf_create_from_book'    => 'livro convertido para estante',
 | 
						|
    'bookshelf_create_from_book_notification'    => 'Livro convertido em prateleira com sucesso',
 | 
						|
    'bookshelf_update'                 => 'estante atualizada',
 | 
						|
    'bookshelf_update_notification'    => 'Estante atualizada com sucesso',
 | 
						|
    'bookshelf_delete'                 => 'prateleira excluída',
 | 
						|
    'bookshelf_delete_notification'    => 'Estante eliminada com sucesso',
 | 
						|
 | 
						|
    // Favourites
 | 
						|
    'favourite_add_notification' => '":name" foi adicionado aos seus favoritos',
 | 
						|
    'favourite_remove_notification' => '":name" foi removido dos seus favoritos',
 | 
						|
 | 
						|
    // MFA
 | 
						|
    'mfa_setup_method_notification' => 'Método de autenticação por múltiplos-fatores configurado com sucesso',
 | 
						|
    'mfa_remove_method_notification' => 'Método de autenticação por múltiplos-fatores removido com sucesso',
 | 
						|
 | 
						|
    // Webhooks
 | 
						|
    'webhook_create' => 'webhook criado',
 | 
						|
    'webhook_create_notification' => 'Webhook criado com sucesso',
 | 
						|
    'webhook_update' => 'atualizar um webhook',
 | 
						|
    'webhook_update_notification' => 'Webhook criado com sucesso',
 | 
						|
    'webhook_delete' => 'eliminar webhook',
 | 
						|
    'webhook_delete_notification' => 'Webhook criado com sucesso',
 | 
						|
 | 
						|
    // Users
 | 
						|
    'user_update_notification' => 'Utilizador atualizado com sucesso',
 | 
						|
    'user_delete_notification' => 'Utilizador removido com sucesso',
 | 
						|
 | 
						|
    // Roles
 | 
						|
    'role_create_notification' => 'Cargo criado com sucesso',
 | 
						|
    'role_update_notification' => 'Cargo atualizado com sucesso',
 | 
						|
    'role_delete_notification' => 'Cargo excluído com sucesso',
 | 
						|
 | 
						|
    // Other
 | 
						|
    'commented_on'                => 'comentado a',
 | 
						|
    'permissions_update'          => 'permissões atualizadas',
 | 
						|
];
 |