получить ещё больше деталей
По умолчанию программы выводит список заголовков найденных книг. При
-использовании опции `-d` также выводится список авторов.
+использовании опции `-d` также выводится список авторов и жанров.
Поиск расширений
^^^^^^^^^^^^^^^^
repeat for even more details
By default the program prints only titles of the found book. With one
-option `-d` it also prints the list of authors.
+option `-d` it also prints the list of authors and genres.
Extension search
^^^^^^^^^^^^^^^^
fullname = u' '.join(names)
print fullname.encode(default_encoding),
print
+ print " ", _("Genre(s)"), ":",
+ for genre in book.genres:
+ print (genre.title or genre.name).encode(default_encoding),
+ print
def _search_extensions(case_sensitive, search_type, args):