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'                 => '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',
 | |
| 
 | |
|     // 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',
 | |
| 
 | |
|     // Books
 | |
|     'book_create'                 => 'yaratilgan kitob',
 | |
|     'book_create_notification'    => 'Kitob muvaffaqiyatli yaratildi',
 | |
|     'book_create_from_chapter'              => 'converted chapter to book',
 | |
|     'book_create_from_chapter_notification' => 'Chapter successfully converted to a book',
 | |
|     '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'            => 'created shelf',
 | |
|     'bookshelf_create_notification'    => 'Shelf successfully created',
 | |
|     'bookshelf_create_from_book'    => 'converted book to shelf',
 | |
|     'bookshelf_create_from_book_notification'    => 'Book successfully converted to a shelf',
 | |
|     'bookshelf_update'                 => 'updated shelf',
 | |
|     'bookshelf_update_notification'    => 'Shelf successfully updated',
 | |
|     'bookshelf_delete'                 => 'deleted shelf',
 | |
|     'bookshelf_delete_notification'    => 'Shelf successfully deleted',
 | |
| 
 | |
|     // Favourites
 | |
|     'favourite_add_notification' => '":name" sevimlilaringizga qo\'shildi',
 | |
|     'favourite_remove_notification' => '":name" sevimlilaringizdan olib tashlandi',
 | |
| 
 | |
|     // MFA
 | |
|     'mfa_setup_method_notification' => 'Multi-faktor uslubi muvaffaqiyatli sozlandi',
 | |
|     'mfa_remove_method_notification' => 'Multi-faktor uslubi muvaffaqiyatli o\'chirildi',
 | |
| 
 | |
|     // 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_update_notification' => 'Foydalanuvchi muvaffaqiyatli yangilandi',
 | |
|     'user_delete_notification' => 'Foydalanuvchi muvaffaqiyatli olib tashlandi',
 | |
| 
 | |
|     // Roles
 | |
|     'role_create_notification' => 'Role successfully created',
 | |
|     'role_update_notification' => 'Role successfully updated',
 | |
|     'role_delete_notification' => 'Role successfully deleted',
 | |
| 
 | |
|     // Other
 | |
|     'commented_on'                => 'fikr qoldirdi',
 | |
|     'permissions_update'          => 'yangilangan huquqlar',
 | |
| ];
 |