mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
74 lines
3.5 KiB
PHP
74 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Activity text strings.
|
|
* Is used for all the text within activity logs & notifications.
|
|
*/
|
|
return [
|
|
|
|
// Pages
|
|
'page_create' => 'tudalen wedi\'i chreu',
|
|
'page_create_notification' => 'Tudalen wedi\'i chreu\'n llwyddiannus',
|
|
'page_update' => 'tudalen wedi\'i diweddaru',
|
|
'page_update_notification' => 'Tudalen wedi\'i diweddaru\'n llwyddiannus',
|
|
'page_delete' => 'tudalen wedi\'i dileu',
|
|
'page_delete_notification' => 'Cafodd y dudalen ei dileu yn llwyddiannus',
|
|
'page_restore' => 'tudalen wedi\'i hadfer',
|
|
'page_restore_notification' => 'Cafodd y dudalen ei hadfer yn llwyddiannus',
|
|
'page_move' => 'symwyd tudalen',
|
|
|
|
// Chapters
|
|
'chapter_create' => 'pennod creu',
|
|
'chapter_create_notification' => 'Pennod wedi\'i chreu\'n llwyddiannus',
|
|
'chapter_update' => 'pennod wedi diweddaru',
|
|
'chapter_update_notification' => 'Pennod wedi\'i diweddaru\'n llwyddiannus',
|
|
'chapter_delete' => 'pennod wedi dileu',
|
|
'chapter_delete_notification' => 'Pennod wedi\'i dileu\'n llwyddiannus',
|
|
'chapter_move' => 'pennod wedi symud',
|
|
|
|
// Books
|
|
'book_create' => 'llyfr wedi creu',
|
|
'book_create_notification' => 'Llyfr wedi\'i creu\'n llwyddiannus',
|
|
'book_create_from_chapter' => 'converted chapter to book',
|
|
'book_create_from_chapter_notification' => 'Chapter successfully converted to a book',
|
|
'book_update' => 'llyfr wedi diweddaru',
|
|
'book_update_notification' => 'Llyfr wedi\'i diweddaru\'n llwyddiannus',
|
|
'book_delete' => 'llyfr wedi\'i dileu',
|
|
'book_delete_notification' => 'Cafodd y llyfr ei dileu yn llwyddiannus',
|
|
'book_sort' => 'llyfr wedi\'i ddidoli',
|
|
'book_sort_notification' => 'Ail-archebwyd y llyfr yn llwyddiannus',
|
|
|
|
// 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' => 'Mae ":name" wedi\'i ychwanegu at eich ffefrynnau',
|
|
'favourite_remove_notification' => 'Mae ":name" wedi\'i tynnu o\'ch ffefrynnau',
|
|
|
|
// MFA
|
|
'mfa_setup_method_notification' => 'Dull aml-ffactor wedi\'i ffurfweddu\'n llwyddiannus',
|
|
'mfa_remove_method_notification' => 'Llwyddwyd i ddileu dull aml-ffactor',
|
|
|
|
// Webhooks
|
|
'webhook_create' => 'webhook wedi creu',
|
|
'webhook_create_notification' => 'Webhook wedi\'i creu\'n llwyddiannus',
|
|
'webhook_update' => 'webhook wedi\'i diweddaru',
|
|
'webhook_update_notification' => 'Webhook wedi\'i diweddaru\'n llwyddiannus',
|
|
'webhook_delete' => 'webhook wedi\'i dileu',
|
|
'webhook_delete_notification' => 'Webhook wedi\'i dileu\'n llwyddiannus',
|
|
|
|
// Users
|
|
'user_update_notification' => 'Diweddarwyd y defnyddiwr yn llwyddiannus',
|
|
'user_delete_notification' => 'Tynnwyd y defnyddiwr yn llwyddiannus',
|
|
|
|
// Other
|
|
'commented_on' => 'gwnaeth sylwadau ar',
|
|
'permissions_update' => 'caniatadau wedi\'u diweddaru',
|
|
];
|