mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
d3eaaf6457
* New translations common.php (Czech) * New translations common.php (Chinese Simplified) * New translations settings.php (Chinese Simplified) * New translations errors.php (Japanese) * New translations entities.php (Japanese) * New translations common.php (Japanese) * New translations settings.php (Japanese) * New translations entities.php (Japanese) * New translations settings.php (Japanese) * New translations auth.php (Japanese) * New translations common.php (Portuguese, Brazilian) * New translations activities.php (Portuguese, Brazilian) * New translations activities.php (Portuguese, Brazilian)
66 lines
2.9 KiB
PHP
66 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Activity text strings.
|
|
* Is used for all the text within activity logs & notifications.
|
|
*/
|
|
return [
|
|
|
|
// Pages
|
|
'page_create' => 'criou a página',
|
|
'page_create_notification' => 'Página criada com sucesso',
|
|
'page_update' => 'atualizou a página',
|
|
'page_update_notification' => 'Página atualizada com sucesso',
|
|
'page_delete' => 'excluiu a página',
|
|
'page_delete_notification' => 'Página excluída com sucesso',
|
|
'page_restore' => 'restaurou a página',
|
|
'page_restore_notification' => 'Página restaurada com sucesso',
|
|
'page_move' => 'moveu a página',
|
|
|
|
// Chapters
|
|
'chapter_create' => 'criou o capítulo',
|
|
'chapter_create_notification' => 'Capítulo criado com sucesso',
|
|
'chapter_update' => 'atualizou o capítulo',
|
|
'chapter_update_notification' => 'Capítulo atualizado com sucesso',
|
|
'chapter_delete' => 'excluiu o capítulo',
|
|
'chapter_delete_notification' => 'Capítulo excluída com sucesso',
|
|
'chapter_move' => 'moveu o capítulo',
|
|
|
|
// Books
|
|
'book_create' => 'criou o livro',
|
|
'book_create_notification' => 'Livro criado com sucesso',
|
|
'book_update' => 'atualizou o livro',
|
|
'book_update_notification' => 'Livro atualizado com sucesso',
|
|
'book_delete' => 'excluiu o livro',
|
|
'book_delete_notification' => 'Livro excluído com sucesso',
|
|
'book_sort' => 'ordenou o livro',
|
|
'book_sort_notification' => 'Livro reordenado com sucesso',
|
|
|
|
// Bookshelves
|
|
'bookshelf_create' => 'prateleira criada',
|
|
'bookshelf_create_notification' => 'Prateleira criada com sucesso',
|
|
'bookshelf_update' => 'atualizou a prateleira',
|
|
'bookshelf_update_notification' => 'Prateleira atualizada com sucesso',
|
|
'bookshelf_delete' => 'excluiu a prateleira',
|
|
'bookshelf_delete_notification' => 'Prateleira excluída com sucesso',
|
|
|
|
// Favourites
|
|
'favourite_add_notification' => '":name" foi adicionada aos seus favoritos',
|
|
'favourite_remove_notification' => '":name" foi removida dos seus favoritos',
|
|
|
|
// MFA
|
|
'mfa_setup_method_notification' => 'Método de multi-fatores configurado com sucesso',
|
|
'mfa_remove_method_notification' => 'Método de multi-fatores removido com sucesso',
|
|
|
|
// Webhooks
|
|
'webhook_create' => 'webhook criado',
|
|
'webhook_create_notification' => 'Webhook criado com sucesso',
|
|
'webhook_update' => 'webhook atualizado',
|
|
'webhook_update_notification' => 'Webhook atualizado com sucesso',
|
|
'webhook_delete' => 'webhook excluído',
|
|
'webhook_delete_notification' => 'Webhook excluido com sucesso',
|
|
|
|
// Other
|
|
'commented_on' => 'comentou em',
|
|
'permissions_update' => 'atualizou permissões',
|
|
];
|