diff --git a/book-template.php b/book-template.php index f13fb47..71f6a26 100644 --- a/book-template.php +++ b/book-template.php @@ -1,49 +1,56 @@

-

+

Abbiamo parlato di:
'.$title.'
'.$author; + $intro = __( 'Abbiamo parlato di', 'book-template' ); + + $book = '

'.$intro.':
'.$title.'
'.$author; if ( $translator <> null ) - {$book = $book.'
Traduzione di '.$translator;} + {$translator = __( 'Traduzione di ', 'book-template' ).$translator; + $book = $book.'
'.$translator;} else {$book = $book;} + + $pages = $pages.' '.__( 'pagine', 'book-template' ); if ( $col <> null ) {$book = $book.'
'.$publisher.', '.$date.'
'.$pages.' pagine, '.$type.', '.$col.' - '.$price;}