125 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			125 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						||
/**
 | 
						||
 * Activity text strings.
 | 
						||
 * Is used for all the text within activity logs & notifications.
 | 
						||
 */
 | 
						||
return [
 | 
						||
 | 
						||
    // Pages
 | 
						||
    'page_create'                 => 'yaratilgan sahifa',
 | 
						||
    'page_create_notification'    => 'Sahifa muvaffaqiyatli yaratildi',
 | 
						||
    'page_update'                 => 'yangilangan sahifa',
 | 
						||
    'page_update_notification'    => 'Sahifa muvaffaqiyatli yangilandi',
 | 
						||
    'page_delete'                 => 'o‘chirilgan sahifa',
 | 
						||
    'page_delete_notification'    => 'Sahifa muvaffaqiyatli o‘chirildi',
 | 
						||
    'page_restore'                => 'tiklangan sahifa',
 | 
						||
    'page_restore_notification'   => 'Sahifa muvaffaqiyatli qayta tiklandi',
 | 
						||
    'page_move'                   => 'ko‘chirilgan sahifa',
 | 
						||
    'page_move_notification'      => 'Page successfully moved',
 | 
						||
 | 
						||
    // Chapters
 | 
						||
    'chapter_create'              => 'yaratilgan bo‘lim',
 | 
						||
    'chapter_create_notification' => 'Bo‘lim muvaffaqiyatli yaratildi',
 | 
						||
    'chapter_update'              => 'yangilangan bo‘lim',
 | 
						||
    'chapter_update_notification' => 'Bo‘lim muvaffaqiyatli yangilandi',
 | 
						||
    'chapter_delete'              => 'o‘chirilgan bo‘lim',
 | 
						||
    'chapter_delete_notification' => 'Bo‘lim muvaffaqiyatli o‘chirildi',
 | 
						||
    'chapter_move'                => 'ko‘chirilgan bo‘lim',
 | 
						||
    'chapter_move_notification' => 'Bo‘lim muvaffaqiyatli ko‘chirildi',
 | 
						||
 | 
						||
    // Books
 | 
						||
    'book_create'                 => 'yaratilgan kitob',
 | 
						||
    'book_create_notification'    => 'Kitob muvaffaqiyatli yaratildi',
 | 
						||
    'book_create_from_chapter'              => 'bo‘lim kitobga o‘girildi',
 | 
						||
    'book_create_from_chapter_notification' => 'Bo‘lim kitobga muvaffaqiyatli o‘girildi',
 | 
						||
    'book_update'                 => 'yangilangan kitob',
 | 
						||
    'book_update_notification'    => 'Kitob muvaffaqiyatli yangilandi',
 | 
						||
    'book_delete'                 => 'o‘chirilgan kitob',
 | 
						||
    'book_delete_notification'    => 'Kitob muvaffaqiyatli o‘chirildi',
 | 
						||
    'book_sort'                   => 'tartiblangan kitob',
 | 
						||
    'book_sort_notification'      => 'Kitob muvaffaqiyatli qayta tartiblandi',
 | 
						||
 | 
						||
    // Bookshelves
 | 
						||
    'bookshelf_create'            => 'Javon yaratildi',
 | 
						||
    'bookshelf_create_notification'    => 'Javon muvaffaqiyatli yaratildi',
 | 
						||
    'bookshelf_create_from_book'    => 'kitob javonga o‘girildi',
 | 
						||
    'bookshelf_create_from_book_notification'    => 'kitob javonga muvaffaqiyatli o‘girildi',
 | 
						||
    'bookshelf_update'                 => 'updated shelf',
 | 
						||
    'bookshelf_update_notification'    => 'Shelf successfully updated',
 | 
						||
    'bookshelf_delete'                 => 'deleted shelf',
 | 
						||
    'bookshelf_delete_notification'    => 'Shelf successfully deleted',
 | 
						||
 | 
						||
    // Revisions
 | 
						||
    'revision_restore' => 'restored revision',
 | 
						||
    'revision_delete' => 'deleted revision',
 | 
						||
    'revision_delete_notification' => 'Revision successfully deleted',
 | 
						||
 | 
						||
    // Favourites
 | 
						||
    'favourite_add_notification' => '":name" sevimlilaringizga qo‘shildi',
 | 
						||
    'favourite_remove_notification' => '":name" sevimlilaringizdan olib tashlandi',
 | 
						||
 | 
						||
    // Watching
 | 
						||
    'watch_update_level_notification' => 'Watch preferences successfully updated',
 | 
						||
 | 
						||
    // Auth
 | 
						||
    'auth_login' => 'logged in',
 | 
						||
    'auth_register' => 'registered as new user',
 | 
						||
    'auth_password_reset_request' => 'requested user password reset',
 | 
						||
    'auth_password_reset_update' => 'reset user password',
 | 
						||
    'mfa_setup_method' => 'configured MFA method',
 | 
						||
    'mfa_setup_method_notification' => 'Multi-faktor uslubi muvaffaqiyatli sozlandi',
 | 
						||
    'mfa_remove_method' => 'removed MFA method',
 | 
						||
    'mfa_remove_method_notification' => 'Multi-faktor uslubi muvaffaqiyatli o‘chirildi',
 | 
						||
 | 
						||
    // Settings
 | 
						||
    'settings_update' => 'updated settings',
 | 
						||
    'settings_update_notification' => 'Settings successfully updated',
 | 
						||
    'maintenance_action_run' => 'ran maintenance action',
 | 
						||
 | 
						||
    // Webhooks
 | 
						||
    'webhook_create' => 'yaratilgan webhook',
 | 
						||
    'webhook_create_notification' => 'Webhook muvaffaqiyatli yaratildi',
 | 
						||
    'webhook_update' => 'yangilangan webhook',
 | 
						||
    'webhook_update_notification' => 'Webhook muvaffaqiyatli yangilandi',
 | 
						||
    'webhook_delete' => 'o‘chirilgan webhook',
 | 
						||
    'webhook_delete_notification' => 'Webhook muvaffaqiyatli o‘chirildi',
 | 
						||
 | 
						||
    // Users
 | 
						||
    'user_create' => 'created user',
 | 
						||
    'user_create_notification' => 'User successfully created',
 | 
						||
    'user_update' => 'updated user',
 | 
						||
    'user_update_notification' => 'Foydalanuvchi muvaffaqiyatli yangilandi',
 | 
						||
    'user_delete' => 'deleted user',
 | 
						||
    'user_delete_notification' => 'Foydalanuvchi muvaffaqiyatli olib tashlandi',
 | 
						||
 | 
						||
    // API Tokens
 | 
						||
    'api_token_create' => 'created api token',
 | 
						||
    'api_token_create_notification' => 'API token successfully created',
 | 
						||
    'api_token_update' => 'updated api token',
 | 
						||
    'api_token_update_notification' => 'API token successfully updated',
 | 
						||
    'api_token_delete' => 'deleted api token',
 | 
						||
    'api_token_delete_notification' => 'API token successfully deleted',
 | 
						||
 | 
						||
    // Roles
 | 
						||
    'role_create' => 'created role',
 | 
						||
    'role_create_notification' => 'Role successfully created',
 | 
						||
    'role_update' => 'updated role',
 | 
						||
    'role_update_notification' => 'Role successfully updated',
 | 
						||
    'role_delete' => 'deleted role',
 | 
						||
    'role_delete_notification' => 'Role successfully deleted',
 | 
						||
 | 
						||
    // Recycle Bin
 | 
						||
    'recycle_bin_empty' => 'emptied recycle bin',
 | 
						||
    'recycle_bin_restore' => 'restored from recycle bin',
 | 
						||
    'recycle_bin_destroy' => 'removed from recycle bin',
 | 
						||
 | 
						||
    // Comments
 | 
						||
    'commented_on'                => 'fikr qoldirdi',
 | 
						||
    'comment_create'              => 'added comment',
 | 
						||
    'comment_update'              => 'updated comment',
 | 
						||
    'comment_delete'              => 'deleted comment',
 | 
						||
 | 
						||
    // Other
 | 
						||
    'permissions_update'          => 'yangilangan huquqlar',
 | 
						||
];
 |