49 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | ||
| /**
 | ||
|  * Activity text strings.
 | ||
|  * Is used for all the text within activity logs & notifications.
 | ||
|  */
 | ||
| return [
 | ||
| 
 | ||
|     // Pages
 | ||
|     'page_create'                 => 'saya oluşturuldu',
 | ||
|     'page_create_notification'    => 'Sayfa Başarıyla Oluşturuldu',
 | ||
|     'page_update'                 => 'sayfa güncellendi',
 | ||
|     'page_update_notification'    => 'Sayfa Başarıyla Güncellendi',
 | ||
|     'page_delete'                 => 'sayfa silindi',
 | ||
|     'page_delete_notification'    => 'Sayfa Başarıyla Silindi',
 | ||
|     'page_restore'                => 'sayfa kurtarıldı',
 | ||
|     'page_restore_notification'   => 'Sayfa Başarıyla Kurtarıldı',
 | ||
|     'page_move'                   => 'sayfa taşındı',
 | ||
| 
 | ||
|     // Chapters
 | ||
|     'chapter_create'              => 'bölüm oluşturuldu',
 | ||
|     'chapter_create_notification' => 'Bölüm Başarıyla Oluşturuldu',
 | ||
|     'chapter_update'              => 'bölüm güncellendi',
 | ||
|     'chapter_update_notification' => 'Bölüm Başarıyla Güncellendi',
 | ||
|     'chapter_delete'              => 'bölüm silindi',
 | ||
|     'chapter_delete_notification' => 'Bölüm Başarıyla Silindi',
 | ||
|     'chapter_move'                => 'bölüm taşındı',
 | ||
| 
 | ||
|     // Books
 | ||
|     'book_create'                 => 'kitap oluşturuldu',
 | ||
|     'book_create_notification'    => 'Kitap Başarıyla Oluşturuldu',
 | ||
|     'book_update'                 => 'kitap güncellendi',
 | ||
|     'book_update_notification'    => 'Kitap Başarıyla Güncellendi',
 | ||
|     'book_delete'                 => 'kitap silindi',
 | ||
|     'book_delete_notification'    => 'Kitap Başarıyla Silindi',
 | ||
|     'book_sort'                   => 'kitap düzenlendi',
 | ||
|     'book_sort_notification'      => 'Kitap Başarıyla Yeniden Sıralandı',
 | ||
| 
 | ||
|     // Bookshelves
 | ||
|     'bookshelf_create'            => 'kitaplık oluşturuldu',
 | ||
|     'bookshelf_create_notification'    => 'Kitaplık Başarıyla Oluşturuldu',
 | ||
|     'bookshelf_update'                 => 'kitaplık güncellendi',
 | ||
|     'bookshelf_update_notification'    => 'Kitaplık Başarıyla Güncellendi',
 | ||
|     'bookshelf_delete'                 => 'kitaplık silindi',
 | ||
|     'bookshelf_delete_notification'    => 'Kitaplık Başarıyla Silindi',
 | ||
| 
 | ||
|     // Other
 | ||
|     'commented_on'                => 'yorum yaptı',
 | ||
| ];
 |