mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
74 lines
3.3 KiB
PHP
74 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Activity text strings.
|
|
* Is used for all the text within activity logs & notifications.
|
|
*/
|
|
return [
|
|
|
|
// Pages
|
|
'page_create' => 'izveidoja lapu',
|
|
'page_create_notification' => 'Lapa veiksmīgi izveidota',
|
|
'page_update' => 'atjaunoja lapu',
|
|
'page_update_notification' => 'Lapa veiksmīgi atjaunināta',
|
|
'page_delete' => 'izdzēsa lapu',
|
|
'page_delete_notification' => 'Lapa veiksmīgi dzēsta',
|
|
'page_restore' => 'atjaunoja lapu',
|
|
'page_restore_notification' => 'Lapa veiksmīgi atjaunota',
|
|
'page_move' => 'pārvietoja lapu',
|
|
|
|
// Chapters
|
|
'chapter_create' => 'izveidoja nodaļu',
|
|
'chapter_create_notification' => 'Nodaļa veiksmīgi izveidota',
|
|
'chapter_update' => 'atjaunoja nodaļu',
|
|
'chapter_update_notification' => 'Nodaļa veiksmīgi atjaunināta',
|
|
'chapter_delete' => 'izdzēsa nodaļu',
|
|
'chapter_delete_notification' => 'Nodaļa veiksmīgi dzēsta',
|
|
'chapter_move' => 'pārvietoja nodaļu',
|
|
|
|
// Books
|
|
'book_create' => 'izveidoja grāmatu',
|
|
'book_create_notification' => 'Grāmata veiksmīgi izveidota',
|
|
'book_create_from_chapter' => 'converted chapter to book',
|
|
'book_create_from_chapter_notification' => 'Chapter successfully converted to a book',
|
|
'book_update' => 'atjaunoja grāmatu',
|
|
'book_update_notification' => 'Grāmata veiksmīgi atjaunināta',
|
|
'book_delete' => 'izdzēsa grāmatu',
|
|
'book_delete_notification' => 'Grāmata veiksmīgi dzēsta',
|
|
'book_sort' => 'kārtoja grāmatu',
|
|
'book_sort_notification' => 'Grāmata veiksmīgi pārkārtota',
|
|
|
|
// 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" ir pievienots jūsu favorītiem',
|
|
'favourite_remove_notification' => '":name" ir izņemts no jūsu favorītiem',
|
|
|
|
// MFA
|
|
'mfa_setup_method_notification' => '2FA funkcija aktivizēta',
|
|
'mfa_remove_method_notification' => '2FA funkcija noņemta',
|
|
|
|
// Webhooks
|
|
'webhook_create' => 'izveidoja webhook',
|
|
'webhook_create_notification' => 'Webhook veiksmīgi izveidots',
|
|
'webhook_update' => 'atjaunināja webhook',
|
|
'webhook_update_notification' => 'Webhook veiksmīgi atjaunināts',
|
|
'webhook_delete' => 'izdzēsa webhook',
|
|
'webhook_delete_notification' => 'Webhook veiksmīgi izdzēsts',
|
|
|
|
// Users
|
|
'user_update_notification' => 'Lietotājs veiksmīgi atjaunināts',
|
|
'user_delete_notification' => 'Lietotājs veiksmīgi dzēsts',
|
|
|
|
// Other
|
|
'commented_on' => 'komentēts',
|
|
'permissions_update' => 'atjaunoja atļaujas',
|
|
];
|