Changed issueformat

pull/458/head
Tailchakra 7 years ago
parent 6b4d7674b5
commit 9c0648069e

@ -272,7 +272,7 @@ class Books(Base):
self.has_cover = has_cover
def __repr__(self):
return u"<Books('{0},{1}{2}{3}{4}{5}{6}{7}{8}')>".format(self.title, self.sort, self.author_sort,
return u"<Issues('{0},{1}{2}{3}{4}{5}{6}{7}{8}')>".format(self.title, self.sort, self.author_sort,
self.timestamp, self.pubdate, self.series_index,
self.last_modified, self.path, self.has_cover)

@ -60,7 +60,7 @@
<th>{{_('Calibre DB dir')}}</th>
<th>{{_('Log Level')}}</th>
<th>{{_('Port')}}</th>
<th>{{_('Books per page')}}</th>
<th>{{_('Issues per page')}}</th>
<th>{{_('Uploading')}}</th>
<th>{{_('Public registration')}}</th>
<th>{{_('Anonymous browsing')}}</th>

@ -36,11 +36,11 @@
</div>
<div class="form-group">
<label for="series">{{_('Series')}}</label>
<label for="series">{{_('Comics')}}</label>
<input type="text" class="form-control typeahead" name="series" id="series" value="{% if book.series %}{{book.series[0].name}}{% endif %}">
</div>
<div class="form-group">
<label for="series_index">{{_('Series id')}}</label>
<label for="series_index">{{_('Comics id')}}</label>
<input type="text" class="form-control" name="series_index" id="series_index" value="{{book.series_index}}">
</div>
<div class="form-group">

@ -57,7 +57,7 @@
<input type="text" class="form-control" name="config_calibre_web_title" id="config_calibre_web_title" value="{% if content.config_calibre_web_title != None %}{{ content.config_calibre_web_title }}{% endif %}" autocomplete="off" required>
</div>
<div class="form-group">
<label for="config_books_per_page">{{_('Books per page')}}</label>
<label for="config_books_per_page">{{_('Issues per page')}}</label>
<input type="number" min="1" max="200" class="form-control" name="config_books_per_page" id="config_books_per_page" value="{% if content.config_books_per_page != None %}{{ content.config_books_per_page }}{% endif %}" autocomplete="off">
</div>
<div class="form-group">
@ -146,7 +146,7 @@
</div>
<div class="form-group">
<input type="checkbox" name="delete_role" id="delete_role" {% if content.role_delete_books() %}checked{% endif %}>
<label for="delete_role">{{_('Allow Delete books')}}</label>
<label for="delete_role">{{_('Allow Delete issues')}}</label>
</div>
<div class="form-group">
<input type="checkbox" name="passwd_role" id="passwd_role" {% if content.role_passwd() %}checked{% endif %}>

@ -95,7 +95,7 @@
{% endif %}
{% if entry.series|length > 0 %}
<p>{{_('Book')}} {{entry.series_index}} {{_('of')}} <a href="{{url_for('series', book_id=entry.series[0].id)}}">{{entry.series[0].name}}</a></p>
<p>{{_('Issue')}} {{entry.series_index}} {{_('of')}} <a href="{{url_for('series', book_id=entry.series[0].id)}}">{{entry.series[0].name}}</a></p>
{% endif %}
{% if entry.languages.__len__() > 0 %}

@ -2,7 +2,7 @@
{% block body %}
{% if g.user.show_detail_random() %}
<div class="discover">
<h2>{{_('Discover (Random Books)')}}</h2>
<h2>{{_('Discover (Random Issues)')}}</h2>
<div class="row">
{% for entry in random %}
@ -17,8 +17,10 @@
</a>
</div>
<div class="meta">
<p class="title">{{entry.title|shortentitle}}</p>
<p class="author"><a href="{{url_for('author', book_id=entry.authors[0].id) }}">{{entry.authors[0].name}}</a></p>
<p class="title"><a href="{{url_for('series', book_id=entry.series[0].id)}}">{{entry.series[0].name}}</a> {{_('#')}}{{entry.series_index}}</p>
{% if entry.series|length > 0 %}
<p class="author">{{entry.title|shortentitle}}</p>
{% endif %}
{% if entry.ratings.__len__() > 0 %}
<div class="rating">
{% for number in range((entry.ratings[0].rating/2)|int(2)) %}
@ -52,29 +54,24 @@
{% endif %}
</a>
</div>
<div class="meta">
<p class="title">{{entry.title|shortentitle}}</p>
<p class="author">
{% for author in entry.authors %}
<a href="{{url_for('author', book_id=author.id) }}">{{author.name.replace('|',',')}}</a>
{% if not loop.last %}
&amp;
<div class="meta">
<p class="title"><a href="{{url_for('series', book_id=entry.series[0].id)}}">{{entry.series[0].name}}</a> {{_('#')}}{{entry.series_index}}</p>
{% if entry.series|length > 0 %}
<p class="author">{{entry.title|shortentitle}}</p>
{% endif %}
{% endfor %}
</p>
{% if entry.ratings.__len__() > 0 %}
<div class="rating">
{% for number in range((entry.ratings[0].rating/2)|int(2)) %}
<span class="glyphicon glyphicon-star good"></span>
{% if loop.last and loop.index < 5 %}
{% for numer in range(5 - loop.index) %}
{% if entry.ratings.__len__() > 0 %}
<div class="rating">
{% for number in range((entry.ratings[0].rating/2)|int(2)) %}
<span class="glyphicon glyphicon-star good"></span>
{% if loop.last and loop.index < 5 %}
{% for numer in range(5 - loop.index) %}
<span class="glyphicon glyphicon-star"></span>
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
</div>
{% endif %}
{% endfor %}
</div>
{% endif %}
</div>
</div>
{% endfor %}
{% endif %}

@ -11,59 +11,59 @@
<uri>https://github.com/janeczku/calibre-web</uri>
</author>
<entry>
<title>{{_('Hot Books')}}</title>
<title>{{_('Hot Issues')}}</title>
<link rel="http://opds-spec.org/sort/popular" href="{{url_for('feed_hot')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_hot')}}</id>
<content type="text">{{_('Popular publications from this catalog based on Downloads.')}}</content>
</entry>
<entry>
<title>{{_('Best rated Books')}}</title>
<title>{{_('Best rated Issues')}}</title>
<link rel="http://opds-spec.org/recommended" href="{{url_for('feed_best_rated')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_best_rated')}}</id>
<content type="text">{{_('Popular publications from this catalog based on Rating.')}}</content>
</entry>
<entry>
<title>{{_('New Books')}}</title>
<title>{{_('New Issues')}}</title>
<link rel="http://opds-spec.org/sort/new" href="{{url_for('feed_new')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_new')}}</id>
<content type="text">{{_('The latest Books')}}</content>
<content type="text">{{_('The latest Issues')}}</content>
</entry>
<entry>
<title>{{_('Random Books')}}</title>
<title>{{_('Random Issues')}}</title>
<link rel="http://opds-spec.org/featured" href="{{url_for('feed_discover')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_discover')}}</id>
<content type="text">{{_('Show Random Books')}}</content>
<content type="text">{{_('Show Random Issues')}}</content>
</entry>
{% if not current_user.is_anonymous %}
<entry>
<title>{{_('Read Books')}}</title>
<title>{{_('Read Issues')}}</title>
<link rel="subsection" href="{{url_for('feed_read_books')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_read_books')}}</id>
<content type="text">{{_('Read Books')}}</content>
<content type="text">{{_('Read Issues')}}</content>
</entry>
{% endif %}
<entry>
<title>{{_('Unread Books')}}</title>
<title>{{_('Unread Issues')}}</title>
<link rel="subsection" href="{{url_for('feed_unread_books')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_unread_books')}}</id>
<content type="text">{{_('Unread Books')}}</content>
<content type="text">{{_('Unread Issues')}}</content>
</entry>
<entry>
<title>{{_('Authors')}}</title>
<link rel="subsection" href="{{url_for('feed_authorindex')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_authorindex')}}</id>
<content type="text">{{_('Books ordered by Author')}}</content>
<content type="text">{{_('Issues ordered by Author')}}</content>
</entry>
<entry>
<title>{{_('Category list')}}</title>
<link rel="subsection" href="{{url_for('feed_categoryindex')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_categoryindex')}}</id>
<content type="text">{{_('Books ordered by category')}}</content>
<content type="text">{{_('Issues ordered by category')}}</content>
</entry>
<entry>
<title>{{_('Series list')}}</title>
<title>{{_('Comics list')}}</title>
<link rel="subsection" href="{{url_for('feed_seriesindex')}}" type="application/atom+xml;profile=opds-catalog"/>
<id>{{url_for('feed_seriesindex')}}</id>
<content type="text">{{_('Books ordered by series')}}</content>
<content type="text">{{_('Issues ordered by series')}}</content>
</entry>
</feed>

@ -110,7 +110,7 @@
{% if g.user.show_sorted() %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<span class="glyphicon glyphicon-sort-by-attributes"></span> {{_('Sorted Books')}}
<span class="glyphicon glyphicon-sort-by-attributes"></span> {{_('Sorted Issues')}}
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
@ -122,16 +122,16 @@
</li>
{%endif%}
{% if g.user.show_hot_books() %}
<li id="nav_hot"><a href="{{url_for('hot_books')}}"><span class="glyphicon glyphicon-fire"></span> {{_('Hot Books')}}</a></li>
<li id="nav_hot"><a href="{{url_for('hot_books')}}"><span class="glyphicon glyphicon-fire"></span> {{_('Hot Issues')}}</a></li>
{%endif%}
{% if g.user.show_best_rated_books() %}
<li><a href="{{url_for('best_rated_books')}}"><span class="glyphicon glyphicon-star"></span> {{_('Best rated Books')}}</a></li>
<li><a href="{{url_for('best_rated_books')}}"><span class="glyphicon glyphicon-star"></span> {{_('Best rated Issues')}}</a></li>
{%endif%}
{% if g.user.show_read_and_unread() %}
{% if not g.user.is_anonymous %}
<li><a href="{{url_for('read_books')}}"><span class="glyphicon glyphicon-eye-open"></span> {{_('Read Books')}}</a></li>
<li><a href="{{url_for('read_books')}}"><span class="glyphicon glyphicon-eye-open"></span> {{_('Read Issues')}}</a></li>
{%endif%}
<li><a href="{{url_for('unread_books')}}"><span class="glyphicon glyphicon-eye-close"></span> {{_('Unread Books')}}</a></li>
<li><a href="{{url_for('unread_books')}}"><span class="glyphicon glyphicon-eye-close"></span> {{_('Unread Issues')}}</a></li>
{%endif%}
{% if g.user.show_random_books() %}
<li id="nav_rand"><a href="{{url_for('discover')}}"><span class="glyphicon glyphicon-random"></span> {{_('Discover')}}</a></li>
@ -140,10 +140,10 @@
<li id="nav_cat"><a href="{{url_for('category_list')}}"><span class="glyphicon glyphicon-inbox"></span> {{_('Categories')}}</a></li>
{%endif%}
{% if g.user.show_series() %}
<li id="nav_serie"><a href="{{url_for('series_list')}}"><span class="glyphicon glyphicon-bookmark"></span> {{_('Series')}}</a></li>
<li id="nav_serie"><a href="{{url_for('series_list')}}"><span class="glyphicon glyphicon-bookmark"></span> {{_('Comics')}}</a></li>
{%endif%}
{% if g.user.show_author() %}
<li id="nav_author"><a href="{{url_for('author_list')}}"><span class="glyphicon glyphicon-user"></span> {{_('Authors')}}</a></li>
<li id="nav_author"><a href="{{url_for('author_list')}}"><span class="glyphicon glyphicon-user"></span> {{_('Publishers')}}</a></li>
{%endif%}
{% if g.user.filter_language() == 'all' and g.user.show_language() %}
<li id="nav_lang"><a href="{{url_for('language_overview')}}"><span class="glyphicon glyphicon-flag"></span> {{_('Languages')}} </a></li>

@ -34,7 +34,7 @@
{% endfor %}
</div>
</div>
<label for="include_serie">{{_('Series')}}</label>
<label for="include_serie">{{_('Comics')}}</label>
<div class="form-group">
<div class="btn-toolbar btn-toolbar-lg" data-toggle="buttons">
{% for serie in series %}
@ -44,7 +44,7 @@
{% endfor %}
</div>
</div>
<label for="exclude_serie">{{_('Exclude Series')}}</label>
<label for="exclude_serie">{{_('Exclude Comics')}}</label>
<div class="form-group">
<div class="btn-toolbar btn-toolbar-lg" data-toggle="buttons">
{% for serie in series %}

@ -9,7 +9,7 @@
<tbody>
<tr>
<th>{{bookcounter}}</th>
<td>{{_('Books in this Library')}}</td>
<td>{{_('Issues in this Library')}}</td>
</tr>
<tr>
<th>{{authorcounter}}</th>
@ -21,7 +21,7 @@
</tr>
<tr>
<th>{{seriecounter}}</th>
<td>{{_('Series in this Library')}}</td>
<td>{{_('Comics in this Library')}}</td>
</tr>
</tbody>
</table>

@ -43,23 +43,23 @@
<div class="col-sm-6">
<div class="form-group">
<input type="checkbox" name="show_random" id="show_random" {% if content.show_random_books() %}checked{% endif %}>
<label for="show_random">{{_('Show random books')}}</label>
<label for="show_random">{{_('Show random issues')}}</label>
</div>
<div class="form-group">
<input type="checkbox" name="show_recent" id="show_recent" {% if content.show_recent() %}checked{% endif %}>
<label for="show_recent">{{_('Show recent books')}}</label>
<label for="show_recent">{{_('Show recent issues')}}</label>
</div>
<div class="form-group">
<input type="checkbox" name="show_sorted" id="show_sorted" {% if content.show_sorted() %}checked{% endif %}>
<label for="show_sorted">{{_('Show sorted books')}}</label>
<label for="show_sorted">{{_('Show sorted issues')}}</label>
</div>
<div class="form-group">
<input type="checkbox" name="show_hot" id="show_hot" {% if content.show_hot_books() %}checked{% endif %}>
<label for="show_hot">{{_('Show hot books')}}</label>
<label for="show_hot">{{_('Show hot issues')}}</label>
</div>
<div class="form-group">
<input type="checkbox" name="show_best_rated" id="show_best_rated" {% if content.show_best_rated_books() %}checked{% endif %}>
<label for="show_best_rated">{{_('Show best rated books')}}</label>
<label for="show_best_rated">{{_('Show best rated issues')}}</label>
</div>
<div class="form-group">
<input type="checkbox" name="show_language" id="show_language" {% if content.show_language() %}checked{% endif %}>
@ -112,7 +112,7 @@
</div>
<div class="form-group">
<input type="checkbox" name="delete_role" id="delete_role" {% if content.role_delete_books() %}checked{% endif %}>
<label for="delete_role">{{_('Allow Delete books')}}</label>
<label for="delete_role">{{_('Allow Delete issues')}}</label>
</div>
{% if not content.role_anonymous() %}
<div class="form-group">

@ -111,15 +111,15 @@ msgid "Update finished, please press okay and reload page"
msgstr "Update abgeschlossen, bitte okay drücken und Seite neu laden"
#: cps/web.py:1044
msgid "Recently Added Books"
msgid "Recently Added Issues"
msgstr "Kürzlich hinzugefügte Bücher"
#: cps/web.py:1054
msgid "Newest Books"
msgid "Newest Issues"
msgstr "Neueste Bücher"
#: cps/web.py:1065
msgid "Oldest Books"
msgid "Oldest Issues"
msgstr "Älteste Bücher"
#: cps/web.py:1077
@ -131,19 +131,19 @@ msgid "Books (Z-A)"
msgstr "Bücher (Z-A)"
#: cps/web.py:1116
msgid "Hot Books (most downloaded)"
msgid "Hot Issues (most downloaded)"
msgstr "Beliebte Bücher (die meisten Downloads)"
#: cps/web.py:1129
msgid "Best rated books"
msgid "Best Rated Issues"
msgstr "Best bewertete Bücher"
#: cps/templates/index.xml:32 cps/web.py:1140
msgid "Random Books"
msgid "Random Issues"
msgstr "Zufällige Bücher"
#: cps/web.py:1154
msgid "Author list"
msgid "Publisher list"
msgstr "Autorenliste"
#: cps/web.py:1166 cps/web.py:1225 cps/web.py:1355 cps/web.py:1827
@ -153,7 +153,7 @@ msgstr ""
"zugänglich."
#: cps/templates/index.xml:64 cps/web.py:1209
msgid "Series list"
msgid "Comics list"
msgstr "Liste Serien"
#: cps/web.py:1223
@ -205,12 +205,12 @@ msgstr "Suche"
#: cps/templates/index.xml:39 cps/templates/index.xml:42
#: cps/templates/layout.html:131 cps/web.py:1782
msgid "Read Books"
msgid "Read Issues"
msgstr "Gelesene Bücher"
#: cps/templates/index.xml:45 cps/templates/index.xml:48
#: cps/templates/layout.html:132 cps/web.py:1785
msgid "Unread Books"
msgid "Unread Issues"
msgstr "Ungelesene Bücher"
#: cps/web.py:1860 cps/web.py:1862 cps/web.py:1864 cps/web.py:1873
@ -966,7 +966,7 @@ msgid "Search"
msgstr "Suche"
#: cps/templates/index.html:5
msgid "Discover (Random Books)"
msgid "Discover (Random Issues)"
msgstr "Entdecke (Zufälliges Buch)"
#: cps/templates/index.xml:5
@ -974,7 +974,7 @@ msgid "Start"
msgstr "Start"
#: cps/templates/index.xml:14 cps/templates/layout.html:125
msgid "Hot Books"
msgid "Hot Issues"
msgstr "Beliebte Bücher"
#: cps/templates/index.xml:17
@ -998,7 +998,7 @@ msgid "The latest Books"
msgstr "Die neuesten Bücher"
#: cps/templates/index.xml:35
msgid "Show Random Books"
msgid "Show Random Issues"
msgstr "Zeige zufällige Bücher"
#: cps/templates/index.xml:52 cps/templates/layout.html:144

@ -102,15 +102,15 @@ msgid "Update finished, please press okay and reload page"
msgstr "Actualización finalizada. Por favor, pulse OK y recargue la página"
#: cps/web.py:1044
msgid "Recently Added Books"
msgid "Recently Added Issues"
msgstr ""
#: cps/web.py:1054
msgid "Newest Books"
msgid "Newest Issues"
msgstr ""
#: cps/web.py:1065
msgid "Oldest Books"
msgid "Oldest Issues"
msgstr ""
#: cps/web.py:1077
@ -122,19 +122,19 @@ msgid "Books (Z-A)"
msgstr ""
#: cps/web.py:1116
msgid "Hot Books (most downloaded)"
msgid "Hot Issues (most downloaded)"
msgstr "Libros populares (los mas descargados)"
#: cps/web.py:1129
msgid "Best rated books"
msgid "Best Rated Issues"
msgstr "Libros mejor valorados"
#: cps/templates/index.xml:32 cps/web.py:1140
msgid "Random Books"
msgid "Random Issues"
msgstr "Libros al azar"
#: cps/web.py:1154
msgid "Author list"
msgid "Publisher list"
msgstr "Lista de autores"
#: cps/web.py:1166 cps/web.py:1225 cps/web.py:1355 cps/web.py:1827
@ -142,7 +142,7 @@ msgid "Error opening eBook. File does not exist or file is not accessible:"
msgstr "Error en la apertura del eBook. El archivo no existe o no es accesible:"
#: cps/templates/index.xml:64 cps/web.py:1209
msgid "Series list"
msgid "Comics list"
msgstr "Lista de series"
#: cps/web.py:1223
@ -194,12 +194,12 @@ msgstr "búsqueda"
#: cps/templates/index.xml:39 cps/templates/index.xml:42
#: cps/templates/layout.html:131 cps/web.py:1782
msgid "Read Books"
msgid "Read Issues"
msgstr "Libros leídos"
#: cps/templates/index.xml:45 cps/templates/index.xml:48
#: cps/templates/layout.html:132 cps/web.py:1785
msgid "Unread Books"
msgid "Unread Issues"
msgstr "Libros no leídos"
#: cps/web.py:1860 cps/web.py:1862 cps/web.py:1864 cps/web.py:1873
@ -953,7 +953,7 @@ msgid "Search"
msgstr "Buscar"
#: cps/templates/index.html:5
msgid "Discover (Random Books)"
msgid "Discover (Random Issues)"
msgstr "Descubrir (Libros al azar)"
#: cps/templates/index.xml:5
@ -961,7 +961,7 @@ msgid "Start"
msgstr "Iniciar"
#: cps/templates/index.xml:14 cps/templates/layout.html:125
msgid "Hot Books"
msgid "Hot Issues"
msgstr "Libros Populares"
#: cps/templates/index.xml:17
@ -985,7 +985,7 @@ msgid "The latest Books"
msgstr "Libros recientes"
#: cps/templates/index.xml:35
msgid "Show Random Books"
msgid "Show Random Issues"
msgstr "Mostrar libros al azar"
#: cps/templates/index.xml:52 cps/templates/layout.html:144

@ -108,15 +108,15 @@ msgid "Update finished, please press okay and reload page"
msgstr "Mise à jour terminée, merci dappuyer sur okay et de rafraîchir la page"
#: cps/web.py:1044
msgid "Recently Added Books"
msgid "Recently Added Issues"
msgstr "Ajouts récents"
#: cps/web.py:1054
msgid "Newest Books"
msgid "Newest Issues"
msgstr "Livres récents"
#: cps/web.py:1065
msgid "Oldest Books"
msgid "Oldest Issues"
msgstr "Anciens livres"
#: cps/web.py:1077
@ -128,19 +128,19 @@ msgid "Books (Z-A)"
msgstr "Livres (Z-A)"
#: cps/web.py:1116
msgid "Hot Books (most downloaded)"
msgid "Hot Issues (most downloaded)"
msgstr "Livres populaires (les plus téléchargés)"
#: cps/web.py:1129
msgid "Best rated books"
msgid "Best Rated Issues"
msgstr "Livres les mieux notés"
#: cps/templates/index.xml:32 cps/web.py:1140
msgid "Random Books"
msgid "Random Issues"
msgstr "Livres au hasard"
#: cps/web.py:1154
msgid "Author list"
msgid "Publisher list"
msgstr "Liste des auteurs"
#: cps/web.py:1166 cps/web.py:1225 cps/web.py:1355 cps/web.py:1827
@ -150,7 +150,7 @@ msgstr ""
"pas accessible :"
#: cps/templates/index.xml:64 cps/web.py:1209
msgid "Series list"
msgid "Comics list"
msgstr "Liste des séries"
#: cps/web.py:1223
@ -202,12 +202,12 @@ msgstr "recherche"
#: cps/templates/index.xml:39 cps/templates/index.xml:42
#: cps/templates/layout.html:131 cps/web.py:1782
msgid "Read Books"
msgid "Read Issues"
msgstr "Livres lus"
#: cps/templates/index.xml:45 cps/templates/index.xml:48
#: cps/templates/layout.html:132 cps/web.py:1785
msgid "Unread Books"
msgid "Unread Issues"
msgstr "Livres non-lus"
#: cps/web.py:1860 cps/web.py:1862 cps/web.py:1864 cps/web.py:1873
@ -961,7 +961,7 @@ msgid "Search"
msgstr "Chercher"
#: cps/templates/index.html:5
msgid "Discover (Random Books)"
msgid "Discover (Random Issues)"
msgstr "Découverte (livres au hasard)"
#: cps/templates/index.xml:5
@ -969,7 +969,7 @@ msgid "Start"
msgstr "Démarrer"
#: cps/templates/index.xml:14 cps/templates/layout.html:125
msgid "Hot Books"
msgid "Hot Issues"
msgstr "Livres populaires"
#: cps/templates/index.xml:17
@ -995,7 +995,7 @@ msgid "The latest Books"
msgstr "Les derniers livres"
#: cps/templates/index.xml:35
msgid "Show Random Books"
msgid "Show Random Issues"
msgstr "Montrer des livres au hasard"
#: cps/templates/index.xml:52 cps/templates/layout.html:144

@ -102,15 +102,15 @@ msgid "Update finished, please press okay and reload page"
msgstr "Aggiornamento completato, prego premere bene e ricaricare pagina"
#: cps/web.py:1044
msgid "Recently Added Books"
msgid "Recently Added Issues"
msgstr "Libri aggiunti di recente"
#: cps/web.py:1054
msgid "Newest Books"
msgid "Newest Issues"
msgstr "I più nuovi libri"
#: cps/web.py:1065
msgid "Oldest Books"
msgid "Oldest Issues"
msgstr "Libri più vecchi"
#: cps/web.py:1077
@ -122,19 +122,19 @@ msgid "Books (Z-A)"
msgstr "Ebook (Z-A)"
#: cps/web.py:1116
msgid "Hot Books (most downloaded)"
msgstr "Hot Books (più scaricati)"
msgid "Hot Issues (most downloaded)"
msgstr "Hot Issues (più scaricati)"
#: cps/web.py:1129
msgid "Best rated books"
msgid "Best Rated Issues"
msgstr "I migliori libri valutati"
#: cps/templates/index.xml:32 cps/web.py:1140
msgid "Random Books"
msgid "Random Issues"
msgstr "Libri casuali"
#: cps/web.py:1154
msgid "Author list"
msgid "Publisher list"
msgstr "Elenco degli autori"
#: cps/web.py:1166 cps/web.py:1225 cps/web.py:1355 cps/web.py:1827
@ -144,7 +144,7 @@ msgstr ""
"accessibile:"
#: cps/templates/index.xml:64 cps/web.py:1209
msgid "Series list"
msgid "Comics list"
msgstr "Lista delle serie"
#: cps/web.py:1223
@ -196,12 +196,12 @@ msgstr "ricerca"
#: cps/templates/index.xml:39 cps/templates/index.xml:42
#: cps/templates/layout.html:131 cps/web.py:1782
msgid "Read Books"
msgid "Read Issues"
msgstr "Leggere libri"
#: cps/templates/index.xml:45 cps/templates/index.xml:48
#: cps/templates/layout.html:132 cps/web.py:1785
msgid "Unread Books"
msgid "Unread Issues"
msgstr "Libri non letti"
#: cps/web.py:1860 cps/web.py:1862 cps/web.py:1864 cps/web.py:1873
@ -959,7 +959,7 @@ msgid "Search"
msgstr "Cerca"
#: cps/templates/index.html:5
msgid "Discover (Random Books)"
msgid "Discover (Random Issues)"
msgstr "Scoprire (Libri casuali)"
#: cps/templates/index.xml:5
@ -967,7 +967,7 @@ msgid "Start"
msgstr "Inizio"
#: cps/templates/index.xml:14 cps/templates/layout.html:125
msgid "Hot Books"
msgid "Hot Issues"
msgstr "Hot Ebook"
#: cps/templates/index.xml:17
@ -991,7 +991,7 @@ msgid "The latest Books"
msgstr "Gli ultimi Libri"
#: cps/templates/index.xml:35
msgid "Show Random Books"
msgid "Show Random Issues"
msgstr "Mostra libri casuali"
#: cps/templates/index.xml:52 cps/templates/layout.html:144

@ -110,15 +110,15 @@ msgid "Update finished, please press okay and reload page"
msgstr "Update voltooid, klik op ok en herlaad de pagina"
#: cps/web.py:1044
msgid "Recently Added Books"
msgid "Recently Added Issues"
msgstr "Recent toegevoegde boeken"
#: cps/web.py:1054
msgid "Newest Books"
msgid "Newest Issues"
msgstr "Nieuwste boeken"
#: cps/web.py:1065
msgid "Oldest Books"
msgid "Oldest Issues"
msgstr "Oudste boeken"
#: cps/web.py:1077
@ -130,19 +130,19 @@ msgid "Books (Z-A)"
msgstr "Boeken (A-Z)"
#: cps/web.py:1116
msgid "Hot Books (most downloaded)"
msgid "Hot Issues (most downloaded)"
msgstr "Populaire boeken (meeste downloads)"
#: cps/web.py:1129
msgid "Best rated books"
msgid "Best Rated Issues"
msgstr "Best beoordeelde boeken"
#: cps/templates/index.xml:32 cps/web.py:1140
msgid "Random Books"
msgid "Random Issues"
msgstr "Willekeurige boeken"
#: cps/web.py:1154
msgid "Author list"
msgid "Publisher list"
msgstr "Auteur lijst"
#: cps/web.py:1166 cps/web.py:1225 cps/web.py:1355 cps/web.py:1827
@ -152,7 +152,7 @@ msgstr ""
"toegankelijk:"
#: cps/templates/index.xml:64 cps/web.py:1209
msgid "Series list"
msgid "Comics list"
msgstr "Serie lijst"
#: cps/web.py:1223
@ -204,12 +204,12 @@ msgstr "zoek"
#: cps/templates/index.xml:39 cps/templates/index.xml:42
#: cps/templates/layout.html:131 cps/web.py:1782
msgid "Read Books"
msgid "Read Issues"
msgstr "Gelezen Boeken"
#: cps/templates/index.xml:45 cps/templates/index.xml:48
#: cps/templates/layout.html:132 cps/web.py:1785
msgid "Unread Books"
msgid "Unread Issues"
msgstr "Ongelezen Boeken"
#: cps/web.py:1860 cps/web.py:1862 cps/web.py:1864 cps/web.py:1873
@ -963,7 +963,7 @@ msgid "Search"
msgstr "Zoek"
#: cps/templates/index.html:5
msgid "Discover (Random Books)"
msgid "Discover (Random Issues)"
msgstr "Ontdek (Willekeurige Boeken)"
#: cps/templates/index.xml:5
@ -971,7 +971,7 @@ msgid "Start"
msgstr "Start"
#: cps/templates/index.xml:14 cps/templates/layout.html:125
msgid "Hot Books"
msgid "Hot Issues"
msgstr "Populaire Boeken"
#: cps/templates/index.xml:17
@ -995,7 +995,7 @@ msgid "The latest Books"
msgstr "Recentste boeken"
#: cps/templates/index.xml:35
msgid "Show Random Books"
msgid "Show Random Issues"
msgstr "Toon Willekeurige Boeken"
#: cps/templates/index.xml:52 cps/templates/layout.html:144

@ -103,15 +103,15 @@ msgid "Update finished, please press okay and reload page"
msgstr "Aktualizacja zakończona, proszę nacisnąć OK i odświeżyć stronę"
#: cps/web.py:1044
msgid "Recently Added Books"
msgid "Recently Added Issues"
msgstr ""
#: cps/web.py:1054
msgid "Newest Books"
msgid "Newest Issues"
msgstr ""
#: cps/web.py:1065
msgid "Oldest Books"
msgid "Oldest Issues"
msgstr ""
#: cps/web.py:1077
@ -123,19 +123,19 @@ msgid "Books (Z-A)"
msgstr ""
#: cps/web.py:1116
msgid "Hot Books (most downloaded)"
msgid "Hot Issues (most downloaded)"
msgstr "Najpopularniejsze książki (najczęściej pobierane)"
#: cps/web.py:1129
msgid "Best rated books"
msgid "Best Rated Issues"
msgstr "Najlepiej oceniane książki"
#: cps/templates/index.xml:32 cps/web.py:1140
msgid "Random Books"
msgid "Random Issues"
msgstr "Losowe książki"
#: cps/web.py:1154
msgid "Author list"
msgid "Publisher list"
msgstr "Lista autorów"
#: cps/web.py:1166 cps/web.py:1225 cps/web.py:1355 cps/web.py:1827
@ -143,7 +143,7 @@ msgid "Error opening eBook. File does not exist or file is not accessible:"
msgstr "Błąd otwierania e-booka. Plik nie istnieje lub plik nie jest dostępny:"
#: cps/templates/index.xml:64 cps/web.py:1209
msgid "Series list"
msgid "Comics list"
msgstr "Lista serii"
#: cps/web.py:1223
@ -195,12 +195,12 @@ msgstr "szukaj"
#: cps/templates/index.xml:39 cps/templates/index.xml:42
#: cps/templates/layout.html:131 cps/web.py:1782
msgid "Read Books"
msgid "Read Issues"
msgstr "Przeczytane książki"
#: cps/templates/index.xml:45 cps/templates/index.xml:48
#: cps/templates/layout.html:132 cps/web.py:1785
msgid "Unread Books"
msgid "Unread Issues"
msgstr "Nieprzeczytane książki"
#: cps/web.py:1860 cps/web.py:1862 cps/web.py:1864 cps/web.py:1873
@ -953,7 +953,7 @@ msgid "Search"
msgstr "Szukaj"
#: cps/templates/index.html:5
msgid "Discover (Random Books)"
msgid "Discover (Random Issues)"
msgstr "Odkrywaj (losowe książki)"
#: cps/templates/index.xml:5
@ -961,7 +961,7 @@ msgid "Start"
msgstr "Rozpocznij"
#: cps/templates/index.xml:14 cps/templates/layout.html:125
msgid "Hot Books"
msgid "Hot Issues"
msgstr "Najpopularniejsze książki"
#: cps/templates/index.xml:17
@ -985,7 +985,7 @@ msgid "The latest Books"
msgstr "Ostatnie książki"
#: cps/templates/index.xml:35
msgid "Show Random Books"
msgid "Show Random Issues"
msgstr "Pokazuj losowe książki"
#: cps/templates/index.xml:52 cps/templates/layout.html:144

@ -103,15 +103,15 @@ msgid "Update finished, please press okay and reload page"
msgstr "Обновления установлены, нажмите okay и перезагрузите страницу"
#: cps/web.py:1044
msgid "Recently Added Books"
msgid "Recently Added Issues"
msgstr ""
#: cps/web.py:1054
msgid "Newest Books"
msgid "Newest Issues"
msgstr ""
#: cps/web.py:1065
msgid "Oldest Books"
msgid "Oldest Issues"
msgstr ""
#: cps/web.py:1077
@ -123,19 +123,19 @@ msgid "Books (Z-A)"
msgstr ""
#: cps/web.py:1116
msgid "Hot Books (most downloaded)"
msgid "Hot Issues (most downloaded)"
msgstr "Популярные книги (часто загружаемые)"
#: cps/web.py:1129
msgid "Best rated books"
msgid "Best Rated Issues"
msgstr "Книги с наивысшим рейтингом"
#: cps/templates/index.xml:32 cps/web.py:1140
msgid "Random Books"
msgid "Random Issues"
msgstr "Случайный выбор"
#: cps/web.py:1154
msgid "Author list"
msgid "Publisher list"
msgstr "Авторы"
#: cps/web.py:1166 cps/web.py:1225 cps/web.py:1355 cps/web.py:1827
@ -143,7 +143,7 @@ msgid "Error opening eBook. File does not exist or file is not accessible:"
msgstr "Невозможно открыть книгу. Файл не существует или недоступен."
#: cps/templates/index.xml:64 cps/web.py:1209
msgid "Series list"
msgid "Comics list"
msgstr "Серии"
#: cps/web.py:1223
@ -195,12 +195,12 @@ msgstr "поиск"
#: cps/templates/index.xml:39 cps/templates/index.xml:42
#: cps/templates/layout.html:131 cps/web.py:1782
msgid "Read Books"
msgid "Read Issues"
msgstr "Прочитанные"
#: cps/templates/index.xml:45 cps/templates/index.xml:48
#: cps/templates/layout.html:132 cps/web.py:1785
msgid "Unread Books"
msgid "Unread Issues"
msgstr "Непрочитанные"
#: cps/web.py:1860 cps/web.py:1862 cps/web.py:1864 cps/web.py:1873
@ -950,7 +950,7 @@ msgid "Search"
msgstr "Поиск"
#: cps/templates/index.html:5
msgid "Discover (Random Books)"
msgid "Discover (Random Issues)"
msgstr "Обзор (случайные книги)"
#: cps/templates/index.xml:5
@ -958,7 +958,7 @@ msgid "Start"
msgstr "Старт"
#: cps/templates/index.xml:14 cps/templates/layout.html:125
msgid "Hot Books"
msgid "Hot Issues"
msgstr "Популярные книги"
#: cps/templates/index.xml:17
@ -982,7 +982,7 @@ msgid "The latest Books"
msgstr "Последние поступления"
#: cps/templates/index.xml:35
msgid "Show Random Books"
msgid "Show Random Issues"
msgstr "Показывать случайные книги"
#: cps/templates/index.xml:52 cps/templates/layout.html:144

@ -126,7 +126,7 @@ msgid "Random Books"
msgstr ""
#: cps/web.py:1154
msgid "Author list"
msgid "Publisher list"
msgstr ""
#: cps/web.py:1166 cps/web.py:1225 cps/web.py:1355 cps/web.py:1827

Loading…
Cancel
Save