mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
e5fc104aff
* New translations errors.php (Italian) * New translations errors.php (Slovak) * New translations errors.php (Norwegian Bokmal) * New translations errors.php (Bosnian) * New translations errors.php (Latvian) * New translations errors.php (Spanish, Argentina) * New translations errors.php (Persian) * New translations errors.php (Indonesian) * New translations errors.php (Portuguese, Brazilian) * New translations errors.php (Vietnamese) * New translations errors.php (Chinese Traditional) * New translations errors.php (Chinese Simplified) * New translations errors.php (Ukrainian) * New translations errors.php (Turkish) * New translations errors.php (Swedish) * New translations errors.php (Slovenian) * New translations errors.php (Russian) * New translations errors.php (French) * New translations errors.php (Portuguese) * New translations errors.php (Polish) * New translations errors.php (Dutch) * New translations errors.php (Korean) * New translations errors.php (Japanese) * New translations errors.php (Hungarian) * New translations errors.php (Hebrew) * New translations errors.php (German) * New translations errors.php (Danish) * New translations errors.php (Czech) * New translations errors.php (Catalan) * New translations errors.php (Bulgarian) * New translations errors.php (Arabic) * New translations errors.php (Spanish) * New translations errors.php (German Informal) * New translations errors.php (Chinese Simplified) * New translations errors.php (French) * New translations common.php (French) * New translations errors.php (Spanish, Argentina) * New translations common.php (Spanish, Argentina) * New translations entities.php (Spanish, Argentina) * New translations activities.php (Arabic) * New translations auth.php (Arabic) * New translations entities.php (Arabic) * New translations auth.php (Arabic) * New translations components.php (Arabic) * New translations entities.php (Arabic) * New translations errors.php (Russian) * New translations common.php (Portuguese) * New translations errors.php (Portuguese)
50 lines
2.4 KiB
PHP
50 lines
2.4 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_update' => 'تم تحديث الكتاب',
|
|
'book_update_notification' => 'تم تحديث الكتاب بنجاح',
|
|
'book_delete' => 'تم حذف الكتاب',
|
|
'book_delete_notification' => 'تم حذف الكتاب بنجاح',
|
|
'book_sort' => 'تم سرد الكتاب',
|
|
'book_sort_notification' => 'أُعِيدَ سرد الكتاب بنجاح',
|
|
|
|
// Bookshelves
|
|
'bookshelf_create' => 'تم إنشاء رف الكتب',
|
|
'bookshelf_create_notification' => 'تم إنشاء الرف بنجاح',
|
|
'bookshelf_update' => 'تم تحديث الرف',
|
|
'bookshelf_update_notification' => 'تم تحديث الرف بنجاح',
|
|
'bookshelf_delete' => 'تم تحديث الرف',
|
|
'bookshelf_delete_notification' => 'تم حذف الرف بنجاح',
|
|
|
|
// Other
|
|
'commented_on' => 'تم التعليق',
|
|
'permissions_update' => 'تحديث الأذونات',
|
|
];
|