74 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Activity text strings.
 | 
						|
 * Is used for all the text within activity logs & notifications.
 | 
						|
 */
 | 
						|
return [
 | 
						|
 | 
						|
    // Pages
 | 
						|
    'page_create'                 => '创建了页面',
 | 
						|
    'page_create_notification'    => '页面已成功创建',
 | 
						|
    'page_update'                 => '更新了页面',
 | 
						|
    'page_update_notification'    => '页面已成功更新',
 | 
						|
    'page_delete'                 => '删除了页面',
 | 
						|
    'page_delete_notification'    => '页面已成功删除',
 | 
						|
    'page_restore'                => '恢复了页面',
 | 
						|
    'page_restore_notification'   => '页面已成功恢复',
 | 
						|
    'page_move'                   => '移动了页面',
 | 
						|
 | 
						|
    // Chapters
 | 
						|
    'chapter_create'              => '创建了章节',
 | 
						|
    'chapter_create_notification' => '章节已成功创建',
 | 
						|
    'chapter_update'              => '更新了章节',
 | 
						|
    'chapter_update_notification' => '章节已成功更新',
 | 
						|
    'chapter_delete'              => '删除了章节',
 | 
						|
    'chapter_delete_notification' => '章节已成功删除',
 | 
						|
    'chapter_move'                => '移动了章节',
 | 
						|
 | 
						|
    // Books
 | 
						|
    'book_create'                 => '创建了图书',
 | 
						|
    'book_create_notification'    => '图书已成功创建',
 | 
						|
    'book_create_from_chapter'              => '将章节转换为图书',
 | 
						|
    'book_create_from_chapter_notification' => '章节已成功转换为图书',
 | 
						|
    'book_update'                 => '更新了图书',
 | 
						|
    'book_update_notification'    => '图书已成功更新',
 | 
						|
    'book_delete'                 => '删除了图书',
 | 
						|
    'book_delete_notification'    => '图书已成功删除',
 | 
						|
    'book_sort'                   => '排序了图书',
 | 
						|
    'book_sort_notification'      => '图书已成功重新排序',
 | 
						|
 | 
						|
    // Bookshelves
 | 
						|
    'bookshelf_create'            => '创建了书架',
 | 
						|
    'bookshelf_create_notification'    => '书架已成功创建',
 | 
						|
    'bookshelf_create_from_book'    => '将图书转换为书架',
 | 
						|
    'bookshelf_create_from_book_notification'    => '图书已成功转换为书架',
 | 
						|
    'bookshelf_update'                 => '更新了书架',
 | 
						|
    'bookshelf_update_notification'    => '书架已成功更新',
 | 
						|
    'bookshelf_delete'                 => '删除了书架',
 | 
						|
    'bookshelf_delete_notification'    => '书架已成功删除',
 | 
						|
 | 
						|
    // Favourites
 | 
						|
    'favourite_add_notification' => '":name" 已添加到您的收藏',
 | 
						|
    'favourite_remove_notification' => '":name" 已从您的收藏中删除',
 | 
						|
 | 
						|
    // MFA
 | 
						|
    'mfa_setup_method_notification' => '多重身份认证设置成功',
 | 
						|
    'mfa_remove_method_notification' => '多重身份认证已成功移除',
 | 
						|
 | 
						|
    // Webhooks
 | 
						|
    'webhook_create' => '创建了 webhook',
 | 
						|
    'webhook_create_notification' => 'Webhook 已成功创建',
 | 
						|
    'webhook_update' => '更新了 webhook',
 | 
						|
    'webhook_update_notification' => 'Webhook 已成功更新',
 | 
						|
    'webhook_delete' => '删除了 webhook',
 | 
						|
    'webhook_delete_notification' => 'Webhook 已成功删除',
 | 
						|
 | 
						|
    // Users
 | 
						|
    'user_update_notification' => '用户更新成功',
 | 
						|
    'user_delete_notification' => '已成功移除用户',
 | 
						|
 | 
						|
    // Other
 | 
						|
    'commented_on'                => '评论',
 | 
						|
    'permissions_update'          => '权限已更新',
 | 
						|
];
 |