mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
4499ae84bb
Fixed PHP formatting error in ES lang file and added tests to cover. Made user edit page more responsive on smaller devices. Fixed 'cancel' button on profile screen when the user does not have permission to manage users.
41 lines
1.7 KiB
PHP
41 lines
1.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/**
|
|
* Activity text strings.
|
|
* Is used for all the text within activity logs & notifications.
|
|
*/
|
|
|
|
// Pages
|
|
'page_create' => 'página creada',
|
|
'page_create_notification' => 'Página creada exitosamente',
|
|
'page_update' => 'página actualizada',
|
|
'page_update_notification' => 'Página actualizada exitosamente',
|
|
'page_delete' => 'página borrada',
|
|
'page_delete_notification' => 'Página borrada exitosamente',
|
|
'page_restore' => 'página restaurada',
|
|
'page_restore_notification' => 'Página restaurada exitosamente',
|
|
'page_move' => 'página movida',
|
|
|
|
// Chapters
|
|
'chapter_create' => 'capítulo creado',
|
|
'chapter_create_notification' => 'Capítulo creado exitosamente',
|
|
'chapter_update' => 'capítulo actualizado',
|
|
'chapter_update_notification' => 'Capítulo actualizado exitosamente',
|
|
'chapter_delete' => 'capítulo borrado',
|
|
'chapter_delete_notification' => 'Capítulo borrado exitosamente',
|
|
'chapter_move' => 'capítulo movido',
|
|
|
|
// Books
|
|
'book_create' => 'libro creado',
|
|
'book_create_notification' => 'Libro creado exitosamente',
|
|
'book_update' => 'libro actualizado',
|
|
'book_update_notification' => 'Libro actualizado exitosamente',
|
|
'book_delete' => 'libro borrado',
|
|
'book_delete_notification' => 'Libro borrado exitosamente',
|
|
'book_sort' => 'libro ordenado',
|
|
'book_sort_notification' => 'Libro re-ordenado exitosamente',
|
|
|
|
];
|