From f145ffc93004707257b03773c70255e73909c9ed Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Sun, 19 Jun 2022 16:23:18 +0100 Subject: [PATCH] Extracted conversion text to translation file --- resources/lang/en/entities.php | 12 +++++++++++ .../books/parts/convert-to-shelf.blade.php | 21 ++++++------------- .../chapters/parts/convert-to-book.blade.php | 14 ++++++------- 3 files changed, 25 insertions(+), 22 deletions(-) diff --git a/resources/lang/en/entities.php b/resources/lang/en/entities.php index bed781b61..27d67487a 100644 --- a/resources/lang/en/entities.php +++ b/resources/lang/en/entities.php @@ -355,4 +355,16 @@ return [ 'copy_consider_images' => 'Page image files will not be duplicated & the original images will retain their relation to the page they were originally uploaded to.', 'copy_consider_attachments' => 'Page attachments will not be copied.', 'copy_consider_access' => 'A change of location, owner or permissions may result in this content being accessible to those previously without access.', + + // Conversions + 'convert_to_shelf' => 'Convert to Shelf', + 'convert_to_shelf_contents_desc' => 'You can convert this book to a new shelf with the same contents. Chapters contained within this book will be converted to new books. If this book contains any pages, that are not in a chapter, this book will be renamed and contain such pages, and this book will become part of the new shelf.', + 'convert_to_shelf_permissions_desc' => 'Any permissions set on this book will be copied to the new shelf and to all new child books that don\'t have their own permissions enforced. Note that permissions on shelves do not auto-cascade to content within, as they do for books.', + 'convert_book' => 'Convert Book', + 'convert_book_confirm' => 'Are you sure you want to convert this book?', + 'convert_undo_warning' => 'This cannot be as easily undone.', + 'convert_to_book' => 'Convert to Book', + 'convert_to_book_desc' => 'You can convert this chapter to a new book with the same contents. Any permissions set on this chapter will be copied to the new book but any inherited permissions, from the parent book, will not be copied which could lead to a change of access control.', + 'convert_chapter' => 'Convert Chapter', + 'convert_chapter_confirm' => 'Are you sure you want to convert this chapter?', ]; diff --git a/resources/views/books/parts/convert-to-shelf.blade.php b/resources/views/books/parts/convert-to-shelf.blade.php index 700377a19..dde60aac0 100644 --- a/resources/views/books/parts/convert-to-shelf.blade.php +++ b/resources/views/books/parts/convert-to-shelf.blade.php @@ -1,27 +1,18 @@
-

Convert to Shelf

+

{{ trans('entities.convert_to_shelf') }}

- You can convert this book to a new shelf with the same contents. - Chapters contained within this book will be converted to new books. - - If this book contains any pages, that are not in a chapter, this book will be renamed - and contain such pages, and this book will become part of the new shelf. - + {{ trans('entities.convert_to_shelf_contents_desc') }}

- - Any permissions set on this book will be copied to the new shelf and to all new child books - that don't have their own permissions enforced. - - Note that permissions on shelves do not auto-cascade to content within, as they do for books. + {{ trans('entities.convert_to_shelf_permissions_desc') }}