Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
douban-api-proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
douban-api-proxy
Commits
e99f5bcc
Commit
e99f5bcc
authored
Apr 03, 2020
by
Ozzieisaacs
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'english/master'
parents
b89309ab
c870f6e8
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
188 additions
and
188 deletions
+188
-188
shelf.py
cps/shelf.py
+2
-2
admin.html
cps/templates/admin.html
+2
-2
index.html
cps/templates/index.html
+0
-0
modal_restriction.html
cps/templates/modal_restriction.html
+4
-4
user_edit.html
cps/templates/user_edit.html
+2
-2
messages.po
cps/translations/cs/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/de/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/es/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/fi/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/fr/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/hu/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/it/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/ja/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/km/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/nl/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/pl/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/ru/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/sv/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/uk/LC_MESSAGES/messages.po
+11
-11
messages.po
cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po
+11
-11
web.py
cps/web.py
+2
-2
messages.pot
messages.pot
+11
-11
No files found.
cps/shelf.py
View file @
e99f5bcc
...
@@ -229,9 +229,9 @@ def create_shelf():
...
@@ -229,9 +229,9 @@ def create_shelf():
return
redirect
(
url_for
(
'shelf.show_shelf'
,
shelf_id
=
shelf
.
id
))
return
redirect
(
url_for
(
'shelf.show_shelf'
,
shelf_id
=
shelf
.
id
))
except
Exception
:
except
Exception
:
flash
(
_
(
u"There was an error"
),
category
=
"error"
)
flash
(
_
(
u"There was an error"
),
category
=
"error"
)
return
render_title_template
(
'shelf_edit.html'
,
shelf
=
shelf
,
title
=
_
(
u"
create a s
helf"
),
page
=
"shelfcreate"
)
return
render_title_template
(
'shelf_edit.html'
,
shelf
=
shelf
,
title
=
_
(
u"
Create a S
helf"
),
page
=
"shelfcreate"
)
else
:
else
:
return
render_title_template
(
'shelf_edit.html'
,
shelf
=
shelf
,
title
=
_
(
u"
create a s
helf"
),
page
=
"shelfcreate"
)
return
render_title_template
(
'shelf_edit.html'
,
shelf
=
shelf
,
title
=
_
(
u"
Create a S
helf"
),
page
=
"shelfcreate"
)
@
shelf
.
route
(
"/shelf/edit/<int:shelf_id>"
,
methods
=
[
"GET"
,
"POST"
])
@
shelf
.
route
(
"/shelf/edit/<int:shelf_id>"
,
methods
=
[
"GET"
,
"POST"
])
...
...
cps/templates/admin.html
View file @
e99f5bcc
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
<th>
{{_('Downloads')}}
</th>
<th>
{{_('Downloads')}}
</th>
<th
class=
"hidden-xs"
>
{{_('Admin')}}
</th>
<th
class=
"hidden-xs"
>
{{_('Admin')}}
</th>
<th
class=
"hidden-xs"
>
{{_('Download')}}
</th>
<th
class=
"hidden-xs"
>
{{_('Download')}}
</th>
<th
class=
"hidden-xs"
>
{{_('View
e
Books')}}
</th>
<th
class=
"hidden-xs"
>
{{_('View Books')}}
</th>
<th
class=
"hidden-xs"
>
{{_('Upload')}}
</th>
<th
class=
"hidden-xs"
>
{{_('Upload')}}
</th>
<th
class=
"hidden-xs"
>
{{_('Edit')}}
</th>
<th
class=
"hidden-xs"
>
{{_('Edit')}}
</th>
</tr>
</tr>
...
@@ -58,7 +58,7 @@
...
@@ -58,7 +58,7 @@
<td
class=
"hidden-xs"
>
{{email.mail_from}}
</td>
<td
class=
"hidden-xs"
>
{{email.mail_from}}
</td>
</tr>
</tr>
</table>
</table>
<div
class=
"btn btn-default"
id=
"admin_edit_email"
><a
href=
"{{url_for('admin.edit_mailsettings')}}"
>
{{_('
Change SMTP s
ettings')}}
</a></div>
<div
class=
"btn btn-default"
id=
"admin_edit_email"
><a
href=
"{{url_for('admin.edit_mailsettings')}}"
>
{{_('
Edit E-mail Server S
ettings')}}
</a></div>
</div>
</div>
</div>
</div>
...
...
cps/templates/index.html
100755 → 100644
View file @
e99f5bcc
File mode changed from 100755 to 100644
cps/templates/modal_restriction.html
View file @
e99f5bcc
...
@@ -3,10 +3,10 @@
...
@@ -3,10 +3,10 @@
<div
class=
"modal-dialog modal-lg"
role=
"document"
>
<div
class=
"modal-dialog modal-lg"
role=
"document"
>
<div
class=
"modal-content"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<div
class=
"modal-header"
>
<h4
class=
"modal-title hidden"
id=
"h1"
>
{{_('Select
allowed/d
enied Tags')}}
</h4>
<h4
class=
"modal-title hidden"
id=
"h1"
>
{{_('Select
Allowed/D
enied Tags')}}
</h4>
<h4
class=
"modal-title hidden"
id=
"h2"
>
{{_('Select
allowed/denied Custom Column v
alues')}}
</h4>
<h4
class=
"modal-title hidden"
id=
"h2"
>
{{_('Select
Allowed/Denied Custom Column V
alues')}}
</h4>
<h4
class=
"modal-title hidden"
id=
"h3"
>
{{_('Select
allowed/denied Tags of u
ser')}}
</h4>
<h4
class=
"modal-title hidden"
id=
"h3"
>
{{_('Select
Allowed/Denied Tags of U
ser')}}
</h4>
<h4
class=
"modal-title hidden"
id=
"h4"
>
{{_('Select
allowed/denied Custom Column values of u
ser')}}
</h4>
<h4
class=
"modal-title hidden"
id=
"h4"
>
{{_('Select
Allowed/Denied Custom Column Values of U
ser')}}
</h4>
</div>
</div>
<div
class=
"modal-body"
>
<div
class=
"modal-body"
>
<table
class=
"table table-no-bordered"
id=
"restrict-elements-table"
data-id-field=
"id"
data-show-header=
"false"
data-editable-mode=
"inline"
>
<table
class=
"table table-no-bordered"
id=
"restrict-elements-table"
data-id-field=
"id"
data-show-header=
"false"
data-editable-mode=
"inline"
>
...
...
cps/templates/user_edit.html
View file @
e99f5bcc
...
@@ -80,8 +80,8 @@
...
@@ -80,8 +80,8 @@
<label
for=
"Show_detail_random"
>
{{_('Show Random Books')}}
</label>
<label
for=
"Show_detail_random"
>
{{_('Show Random Books')}}
</label>
</div>
</div>
{% if ( g.user and g.user.role_admin() and not new_user ) %}
{% if ( g.user and g.user.role_admin() and not new_user ) %}
<a
href=
"#"
id=
"get_user_tags"
class=
"btn btn-default"
data-toggle=
"modal"
data-target=
"#restrictModal"
>
{{_('Add
allowed/d
enied Tags')}}
</a>
<a
href=
"#"
id=
"get_user_tags"
class=
"btn btn-default"
data-toggle=
"modal"
data-target=
"#restrictModal"
>
{{_('Add
Allowed/D
enied Tags')}}
</a>
<a
href=
"#"
id=
"get_user_column_values"
class=
"btn btn-default"
data-toggle=
"modal"
data-target=
"#restrictModal"
>
{{_('Add allowed/
denied custom column v
alues')}}
</a>
<a
href=
"#"
id=
"get_user_column_values"
class=
"btn btn-default"
data-toggle=
"modal"
data-target=
"#restrictModal"
>
{{_('Add allowed/
Denied Custom Column V
alues')}}
</a>
{% endif %}
{% endif %}
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"col-sm-6"
>
...
...
cps/translations/cs/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -583,7 +583,7 @@ msgid "There was an error"
...
@@ -583,7 +583,7 @@ msgid "There was an error"
msgstr "Došlo k chybě"
msgstr "Došlo k chybě"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "vytvořit polici"
msgstr "vytvořit polici"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -852,11 +852,11 @@ msgstr "Kniha byla úspěšně zařazena do fronty pro odeslání na %(kindlemai
...
@@ -852,11 +852,11 @@ msgstr "Kniha byla úspěšně zařazena do fronty pro odeslání na %(kindlemai
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Při odesílání této knihy došlo k chybě: %(res)s"
msgstr "Při odesílání této knihy došlo k chybě: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Nejprve nakonfigurujte vaši kindle e-mailovou adresu.."
msgstr "Nejprve nakonfigurujte vaši kindle e-mailovou adresu.."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -992,7 +992,7 @@ msgid "Download"
...
@@ -992,7 +992,7 @@ msgid "Download"
msgstr "Stahovat"
msgstr "Stahovat"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr ""
msgstr ""
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1032,7 +1032,7 @@ msgid "From E-mail"
...
@@ -1032,7 +1032,7 @@ msgid "From E-mail"
msgstr "Z e-mailu"
msgstr "Z e-mailu"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Změnit SMTP nastavení"
msgstr "Změnit SMTP nastavení"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1977,19 +1977,19 @@ msgid "Show Access Log: "
...
@@ -1977,19 +1977,19 @@ msgid "Show Access Log: "
msgstr "Zobrazit log přístupu: "
msgstr "Zobrazit log přístupu: "
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2313,11 +2313,11 @@ msgid "Create/View"
...
@@ -2313,11 +2313,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/de/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -584,7 +584,7 @@ msgid "There was an error"
...
@@ -584,7 +584,7 @@ msgid "There was an error"
msgstr "Es trat ein Fehler auf"
msgstr "Es trat ein Fehler auf"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "Bücherregal erzeugen"
msgstr "Bücherregal erzeugen"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -853,11 +853,11 @@ msgstr "Buch erfolgreich zum Senden an %(kindlemail)s eingereiht"
...
@@ -853,11 +853,11 @@ msgstr "Buch erfolgreich zum Senden an %(kindlemail)s eingereiht"
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Beim Senden des Buchs trat ein Fehler auf: %(res)s"
msgstr "Beim Senden des Buchs trat ein Fehler auf: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Bitte zuerst die Kindle E-Mailadresse konfigurieren..."
msgstr "Bitte zuerst die Kindle E-Mailadresse konfigurieren..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -993,7 +993,7 @@ msgid "Download"
...
@@ -993,7 +993,7 @@ msgid "Download"
msgstr "Download"
msgstr "Download"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Bücher ansehen"
msgstr "Bücher ansehen"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
msgstr "Absenderadresse"
msgstr "Absenderadresse"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "SMTP-Einstellungen ändern"
msgstr "SMTP-Einstellungen ändern"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
msgstr "Zugriffslogbuch anzeigen: "
msgstr "Zugriffslogbuch anzeigen: "
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr "Erlaubte/verbotene Tags auswählen"
msgstr "Erlaubte/verbotene Tags auswählen"
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr "Erlaubte/Verbotene Calibre Spalten auswählen"
msgstr "Erlaubte/Verbotene Calibre Spalten auswählen"
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr "Erlaubte/Verbotene Tags des Benutzers auswählen"
msgstr "Erlaubte/Verbotene Tags des Benutzers auswählen"
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr "Erlaubte/Verbotene Calibre Spalten des Benutzers auswählen"
msgstr "Erlaubte/Verbotene Calibre Spalten des Benutzers auswählen"
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
msgstr "Erzeugen/Ansehen"
msgstr "Erzeugen/Ansehen"
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr "Erlaubte/Verbotene Tags"
msgstr "Erlaubte/Verbotene Tags"
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr "Erlaubte/Verbotene Calibre Spalten hinzufügen"
msgstr "Erlaubte/Verbotene Calibre Spalten hinzufügen"
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/es/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -586,7 +586,7 @@ msgid "There was an error"
...
@@ -586,7 +586,7 @@ msgid "There was an error"
msgstr "Ha sucedido un error"
msgstr "Ha sucedido un error"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "crear un estante"
msgstr "crear un estante"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -855,11 +855,11 @@ msgstr "Libro puesto en la cola de envío a %(kindlemail)s"
...
@@ -855,11 +855,11 @@ msgstr "Libro puesto en la cola de envío a %(kindlemail)s"
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Ha sucedido un error en el envío del libro: %(res)s"
msgstr "Ha sucedido un error en el envío del libro: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Por favor configure primero la dirección de correo de su kindle..."
msgstr "Por favor configure primero la dirección de correo de su kindle..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -995,7 +995,7 @@ msgid "Download"
...
@@ -995,7 +995,7 @@ msgid "Download"
msgstr "Descargar"
msgstr "Descargar"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Ver libros electrónicos"
msgstr "Ver libros electrónicos"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1035,7 +1035,7 @@ msgid "From E-mail"
...
@@ -1035,7 +1035,7 @@ msgid "From E-mail"
msgstr "Desde el correo"
msgstr "Desde el correo"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Cambiar parámetros SMTP"
msgstr "Cambiar parámetros SMTP"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1980,19 +1980,19 @@ msgid "Show Access Log: "
...
@@ -1980,19 +1980,19 @@ msgid "Show Access Log: "
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2316,11 +2316,11 @@ msgid "Create/View"
...
@@ -2316,11 +2316,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/fi/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -584,7 +584,7 @@ msgid "There was an error"
...
@@ -584,7 +584,7 @@ msgid "There was an error"
msgstr "Tapahtui virhe"
msgstr "Tapahtui virhe"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "luo hylly"
msgstr "luo hylly"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -853,11 +853,11 @@ msgstr "Kirja lisätty onnistuneeksi lähetettäväksi osoitteeseen %(kindlemail
...
@@ -853,11 +853,11 @@ msgstr "Kirja lisätty onnistuneeksi lähetettäväksi osoitteeseen %(kindlemail
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Kirjan: %(res)s lähettämisessa tapahtui virhe"
msgstr "Kirjan: %(res)s lähettämisessa tapahtui virhe"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Ole hyvä ja aseta Kindle sähköpostiosoite ensin..."
msgstr "Ole hyvä ja aseta Kindle sähköpostiosoite ensin..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -993,7 +993,7 @@ msgid "Download"
...
@@ -993,7 +993,7 @@ msgid "Download"
msgstr "Lataa"
msgstr "Lataa"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Näytä ekirjat"
msgstr "Näytä ekirjat"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
msgstr "Lähettäjän sähköposti"
msgstr "Lähettäjän sähköposti"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Muuta SMTP asetuksia"
msgstr "Muuta SMTP asetuksia"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/fr/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -597,7 +597,7 @@ msgid "There was an error"
...
@@ -597,7 +597,7 @@ msgid "There was an error"
msgstr "Il y a eu une erreur"
msgstr "Il y a eu une erreur"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "créer une étagère"
msgstr "créer une étagère"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -866,11 +866,11 @@ msgstr "Le livre a été mis en file de traitement avec succès pour un envois v
...
@@ -866,11 +866,11 @@ msgstr "Le livre a été mis en file de traitement avec succès pour un envois v
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Il y a eu une erreur en envoyant ce livre : %(res)s"
msgstr "Il y a eu une erreur en envoyant ce livre : %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Veuillez configurer votre adresse de courriel Kindle en premier lieu…"
msgstr "Veuillez configurer votre adresse de courriel Kindle en premier lieu…"
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -1006,7 +1006,7 @@ msgid "Download"
...
@@ -1006,7 +1006,7 @@ msgid "Download"
msgstr "Télécharger"
msgstr "Télécharger"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Afficher les Ebooks"
msgstr "Afficher les Ebooks"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1046,7 +1046,7 @@ msgid "From E-mail"
...
@@ -1046,7 +1046,7 @@ msgid "From E-mail"
msgstr "Expéditeur des courriels"
msgstr "Expéditeur des courriels"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Modifier les paramètres SMTP"
msgstr "Modifier les paramètres SMTP"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1991,19 +1991,19 @@ msgid "Show Access Log: "
...
@@ -1991,19 +1991,19 @@ msgid "Show Access Log: "
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2327,11 +2327,11 @@ msgid "Create/View"
...
@@ -2327,11 +2327,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/hu/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -584,7 +584,7 @@ msgid "There was an error"
...
@@ -584,7 +584,7 @@ msgid "There was an error"
msgstr "Hiba történt"
msgstr "Hiba történt"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "Polc készítése"
msgstr "Polc készítése"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -853,11 +853,11 @@ msgstr "A könyv sikeresen küldésre lett jelölve a következő címre: %(kind
...
@@ -853,11 +853,11 @@ msgstr "A könyv sikeresen küldésre lett jelölve a következő címre: %(kind
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Hiba történt a könyv küldésekor: %(res)s"
msgstr "Hiba történt a könyv küldésekor: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Először be kell állítani a kindle e-mail címet..."
msgstr "Először be kell állítani a kindle e-mail címet..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -993,7 +993,7 @@ msgid "Download"
...
@@ -993,7 +993,7 @@ msgid "Download"
msgstr "Letöltés"
msgstr "Letöltés"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr ""
msgstr ""
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
msgstr "Küldő e-mail cím"
msgstr "Küldő e-mail cím"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "SMTP beállítások változtatása"
msgstr "SMTP beállítások változtatása"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/it/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -583,7 +583,7 @@ msgid "There was an error"
...
@@ -583,7 +583,7 @@ msgid "There was an error"
msgstr "C'era un errore"
msgstr "C'era un errore"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "Crea uno scaffale"
msgstr "Crea uno scaffale"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -852,11 +852,11 @@ msgstr "Libro accodato con successo per essere spedito a %(kindlemail)s"
...
@@ -852,11 +852,11 @@ msgstr "Libro accodato con successo per essere spedito a %(kindlemail)s"
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Si è verificato un errore durante l'invio di questo libro: %(res)s"
msgstr "Si è verificato un errore durante l'invio di questo libro: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Per favore configura dapprima il tuo indirizzo e-mail di Kindle..."
msgstr "Per favore configura dapprima il tuo indirizzo e-mail di Kindle..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -992,7 +992,7 @@ msgid "Download"
...
@@ -992,7 +992,7 @@ msgid "Download"
msgstr "Download"
msgstr "Download"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Vedi libri"
msgstr "Vedi libri"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1032,7 +1032,7 @@ msgid "From E-mail"
...
@@ -1032,7 +1032,7 @@ msgid "From E-mail"
msgstr "E-mail da"
msgstr "E-mail da"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Modifica le impostazioni SMTP"
msgstr "Modifica le impostazioni SMTP"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1977,19 +1977,19 @@ msgid "Show Access Log: "
...
@@ -1977,19 +1977,19 @@ msgid "Show Access Log: "
msgstr "Mostra il log di accesso: "
msgstr "Mostra il log di accesso: "
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr "Seleziona le categorie consentite/negate"
msgstr "Seleziona le categorie consentite/negate"
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr "Seleziona i valori personali per le colonne consentiti/negati"
msgstr "Seleziona i valori personali per le colonne consentiti/negati"
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr "Seleziona le categorie consentite/negate per l'utente"
msgstr "Seleziona le categorie consentite/negate per l'utente"
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr "Seleziona i valori personali per le colonne consentiti/negati per l'utente"
msgstr "Seleziona i valori personali per le colonne consentiti/negati per l'utente"
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2313,11 +2313,11 @@ msgid "Create/View"
...
@@ -2313,11 +2313,11 @@ msgid "Create/View"
msgstr "Crea/Visualizza"
msgstr "Crea/Visualizza"
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr "Aggiungi categorie permesse/negate"
msgstr "Aggiungi categorie permesse/negate"
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr "Aggiungi valori personali nelle colonne permessi/negati"
msgstr "Aggiungi valori personali nelle colonne permessi/negati"
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/ja/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -584,7 +584,7 @@ msgid "There was an error"
...
@@ -584,7 +584,7 @@ msgid "There was an error"
msgstr "エラーが発生しました"
msgstr "エラーが発生しました"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "本棚を作成する"
msgstr "本棚を作成する"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -853,11 +853,11 @@ msgstr "本の %(kindlemail)s への送信がキューに追加されました"
...
@@ -853,11 +853,11 @@ msgstr "本の %(kindlemail)s への送信がキューに追加されました"
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "%(res)s を送信中にエラーが発生しました"
msgstr "%(res)s を送信中にエラーが発生しました"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "初めにKindleのメールアドレスを設定してください"
msgstr "初めにKindleのメールアドレスを設定してください"
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -993,7 +993,7 @@ msgid "Download"
...
@@ -993,7 +993,7 @@ msgid "Download"
msgstr "ダウンロード"
msgstr "ダウンロード"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr ""
msgstr ""
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
msgstr ""
msgstr ""
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "SMTP設定を変更"
msgstr "SMTP設定を変更"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/km/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -585,7 +585,7 @@ msgid "There was an error"
...
@@ -585,7 +585,7 @@ msgid "There was an error"
msgstr "មានបញ្ហា"
msgstr "មានបញ្ហា"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "បង្កើតធ្នើ"
msgstr "បង្កើតធ្នើ"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -854,11 +854,11 @@ msgstr "សៀវភៅបានចូលជួរសម្រាប់ផ្ញ
...
@@ -854,11 +854,11 @@ msgstr "សៀវភៅបានចូលជួរសម្រាប់ផ្ញ
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "មានបញ្ហានៅពេលផ្ញើសៀវភៅនេះ៖ %(res)s"
msgstr "មានបញ្ហានៅពេលផ្ញើសៀវភៅនេះ៖ %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr ""
msgstr ""
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -994,7 +994,7 @@ msgid "Download"
...
@@ -994,7 +994,7 @@ msgid "Download"
msgstr "ទាញយក"
msgstr "ទាញយក"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr ""
msgstr ""
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1034,7 +1034,7 @@ msgid "From E-mail"
...
@@ -1034,7 +1034,7 @@ msgid "From E-mail"
msgstr "ពីអ៊ីមែល"
msgstr "ពីអ៊ីមែល"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "ប្តូរការកំណត់ SMTP"
msgstr "ប្តូរការកំណត់ SMTP"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1979,19 +1979,19 @@ msgid "Show Access Log: "
...
@@ -1979,19 +1979,19 @@ msgid "Show Access Log: "
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2315,11 +2315,11 @@ msgid "Create/View"
...
@@ -2315,11 +2315,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/nl/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -585,7 +585,7 @@ msgid "There was an error"
...
@@ -585,7 +585,7 @@ msgid "There was an error"
msgstr "Er is een fout opgetreden"
msgstr "Er is een fout opgetreden"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "creëer een boekenplank"
msgstr "creëer een boekenplank"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -854,11 +854,11 @@ msgstr "Het boek is in de wachtrij geplaatst om te worden verstuurd aan %(kindle
...
@@ -854,11 +854,11 @@ msgstr "Het boek is in de wachtrij geplaatst om te worden verstuurd aan %(kindle
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Fout opgetreden bij het versturen van dit boek: %(res)s"
msgstr "Fout opgetreden bij het versturen van dit boek: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Stel je kindle-e-mailadres in..."
msgstr "Stel je kindle-e-mailadres in..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -994,7 +994,7 @@ msgid "Download"
...
@@ -994,7 +994,7 @@ msgid "Download"
msgstr "Downloaden"
msgstr "Downloaden"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Boeken lezen"
msgstr "Boeken lezen"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1034,7 +1034,7 @@ msgid "From E-mail"
...
@@ -1034,7 +1034,7 @@ msgid "From E-mail"
msgstr "Van e-mail"
msgstr "Van e-mail"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "SMTP-instellingen bewerken"
msgstr "SMTP-instellingen bewerken"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1979,19 +1979,19 @@ msgid "Show Access Log: "
...
@@ -1979,19 +1979,19 @@ msgid "Show Access Log: "
msgstr "Toon Toegangslog: "
msgstr "Toon Toegangslog: "
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr "Selecteer Toegestaan/Geweigerd tags toe"
msgstr "Selecteer Toegestaan/Geweigerd tags toe"
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr "Selecteer Toegestaan/Geweigerd aangepaste kolom waarden"
msgstr "Selecteer Toegestaan/Geweigerd aangepaste kolom waarden"
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr "Selecteer Toegestaan/Geweigerd tags van gebruikers"
msgstr "Selecteer Toegestaan/Geweigerd tags van gebruikers"
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr "Selecteer Toegestaan/Geweigerd aangepaste kolom waarden van gebruikers"
msgstr "Selecteer Toegestaan/Geweigerd aangepaste kolom waarden van gebruikers"
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2315,11 +2315,11 @@ msgid "Create/View"
...
@@ -2315,11 +2315,11 @@ msgid "Create/View"
msgstr "Aanmaken/Bekijk"
msgstr "Aanmaken/Bekijk"
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr "Voeg Toegestaan/Geweigerd tags toe"
msgstr "Voeg Toegestaan/Geweigerd tags toe"
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr "Voeg Toegestaan/Geweigerd aangepaste kolom waarden toe"
msgstr "Voeg Toegestaan/Geweigerd aangepaste kolom waarden toe"
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/pl/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -591,7 +591,7 @@ msgid "There was an error"
...
@@ -591,7 +591,7 @@ msgid "There was an error"
msgstr "Wystąpił błąd"
msgstr "Wystąpił błąd"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "utwórz półkę"
msgstr "utwórz półkę"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -860,11 +860,11 @@ msgstr "Książka została umieszczona w kolejce do wysłania do %(kindlemail)s"
...
@@ -860,11 +860,11 @@ msgstr "Książka została umieszczona w kolejce do wysłania do %(kindlemail)s"
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Wystąpił błąd podczas wysyłania tej książki: %(res)s"
msgstr "Wystąpił błąd podczas wysyłania tej książki: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Najpierw skonfiguruj adres e-mail Kindle..."
msgstr "Najpierw skonfiguruj adres e-mail Kindle..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -1002,7 +1002,7 @@ msgid "Download"
...
@@ -1002,7 +1002,7 @@ msgid "Download"
msgstr "Pobieranie"
msgstr "Pobieranie"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Przeglądanie"
msgstr "Przeglądanie"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1042,7 +1042,7 @@ msgid "From E-mail"
...
@@ -1042,7 +1042,7 @@ msgid "From E-mail"
msgstr "Wyślij z adresu e-mail"
msgstr "Wyślij z adresu e-mail"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Zmień ustawienia SMTP"
msgstr "Zmień ustawienia SMTP"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1996,19 +1996,19 @@ msgid "Show Access Log: "
...
@@ -1996,19 +1996,19 @@ msgid "Show Access Log: "
msgstr "Pokaż dziennik dostępu: "
msgstr "Pokaż dziennik dostępu: "
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr "Wybierz dozwolone/zabronione etykiety"
msgstr "Wybierz dozwolone/zabronione etykiety"
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr "Wybierz dozwolone/zabronione wartości własnych kolumn"
msgstr "Wybierz dozwolone/zabronione wartości własnych kolumn"
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr "Wybierz dozwolone/zabronione etykiety użytkownika"
msgstr "Wybierz dozwolone/zabronione etykiety użytkownika"
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr "Wybierz dozwolone/zabronione wartości własnych kolumn użytkownika"
msgstr "Wybierz dozwolone/zabronione wartości własnych kolumn użytkownika"
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2334,11 +2334,11 @@ msgid "Create/View"
...
@@ -2334,11 +2334,11 @@ msgid "Create/View"
msgstr "Utwórz/Przeglądaj"
msgstr "Utwórz/Przeglądaj"
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr "Dodaj dozwolone/zabronione etykiety"
msgstr "Dodaj dozwolone/zabronione etykiety"
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr "Dodaj dozwolone/zabronione wartości własnych kolumn"
msgstr "Dodaj dozwolone/zabronione wartości własnych kolumn"
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/ru/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -585,7 +585,7 @@ msgid "There was an error"
...
@@ -585,7 +585,7 @@ msgid "There was an error"
msgstr "Произошла ошибка"
msgstr "Произошла ошибка"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "создать полку"
msgstr "создать полку"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -854,11 +854,11 @@ msgstr "Книга успешно поставлена в очередь для
...
@@ -854,11 +854,11 @@ msgstr "Книга успешно поставлена в очередь для
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "При отправке этой книги произошла ошибка: %(res)s"
msgstr "При отправке этой книги произошла ошибка: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Пожалуйста, сначала настройте e-mail на вашем kindle..."
msgstr "Пожалуйста, сначала настройте e-mail на вашем kindle..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -994,7 +994,7 @@ msgid "Download"
...
@@ -994,7 +994,7 @@ msgid "Download"
msgstr "Скачать"
msgstr "Скачать"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Посмотреть электронные книги"
msgstr "Посмотреть электронные книги"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1034,7 +1034,7 @@ msgid "From E-mail"
...
@@ -1034,7 +1034,7 @@ msgid "From E-mail"
msgstr "Отправитель"
msgstr "Отправитель"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Изменить настройки SMTP"
msgstr "Изменить настройки SMTP"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1979,19 +1979,19 @@ msgid "Show Access Log: "
...
@@ -1979,19 +1979,19 @@ msgid "Show Access Log: "
msgstr "Показать журнал доступа:"
msgstr "Показать журнал доступа:"
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr "Выбрать разрешенные / запрещенные теги"
msgstr "Выбрать разрешенные / запрещенные теги"
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr "Выбрать разрешенные / запрещенные значения индивидуальных столбцов"
msgstr "Выбрать разрешенные / запрещенные значения индивидуальных столбцов"
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr "Выбрать разрешенные / запрещенные теги пользователя"
msgstr "Выбрать разрешенные / запрещенные теги пользователя"
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr "Выбрать разрешенные / запрещенные значения индивидуальных столбцов пользователя"
msgstr "Выбрать разрешенные / запрещенные значения индивидуальных столбцов пользователя"
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2315,11 +2315,11 @@ msgid "Create/View"
...
@@ -2315,11 +2315,11 @@ msgid "Create/View"
msgstr "Создать/Просмотреть"
msgstr "Создать/Просмотреть"
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr "Добавить разрешенные / запрещенные теги"
msgstr "Добавить разрешенные / запрещенные теги"
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr "Добавить разрешенные / запрещенные значения индивидуальных столбцов"
msgstr "Добавить разрешенные / запрещенные значения индивидуальных столбцов"
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/sv/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -584,7 +584,7 @@ msgid "There was an error"
...
@@ -584,7 +584,7 @@ msgid "There was an error"
msgstr "Det fanns ett fel"
msgstr "Det fanns ett fel"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "skapa en hylla"
msgstr "skapa en hylla"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -853,11 +853,11 @@ msgstr "Boken är i kö för att skicka till %(kindlemail)s"
...
@@ -853,11 +853,11 @@ msgstr "Boken är i kö för att skicka till %(kindlemail)s"
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Det gick inte att skicka den här boken: %(res)s"
msgstr "Det gick inte att skicka den här boken: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "Konfigurera din kindle-e-postadress först..."
msgstr "Konfigurera din kindle-e-postadress först..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -993,7 +993,7 @@ msgid "Download"
...
@@ -993,7 +993,7 @@ msgid "Download"
msgstr "Hämta"
msgstr "Hämta"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "Visa e-böcker"
msgstr "Visa e-böcker"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
msgstr "Från meddelande"
msgstr "Från meddelande"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Ändra SMTP-inställningar"
msgstr "Ändra SMTP-inställningar"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
msgstr "Visa åtkomstlogg: "
msgstr "Visa åtkomstlogg: "
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr "Välj tillåtna/avvisade taggar"
msgstr "Välj tillåtna/avvisade taggar"
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr "Välj tillåtna/avvisade anpassade kolumnvärden"
msgstr "Välj tillåtna/avvisade anpassade kolumnvärden"
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr "Välj tillåtna/avvisade användarens taggar"
msgstr "Välj tillåtna/avvisade användarens taggar"
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr "Välj tillåtna/avvisade anpassade kolumnvärden för användaren"
msgstr "Välj tillåtna/avvisade anpassade kolumnvärden för användaren"
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
msgstr "Skapa/Visa"
msgstr "Skapa/Visa"
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr "Lägg till tillåtna/avvisade taggar"
msgstr "Lägg till tillåtna/avvisade taggar"
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr "Lägg till tillåtna/avvisade anpassade kolumnvärden"
msgstr "Lägg till tillåtna/avvisade anpassade kolumnvärden"
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/uk/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -583,7 +583,7 @@ msgid "There was an error"
...
@@ -583,7 +583,7 @@ msgid "There was an error"
msgstr "Сталась помилка"
msgstr "Сталась помилка"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "створити книжкову полицю"
msgstr "створити книжкову полицю"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -852,11 +852,11 @@ msgstr ""
...
@@ -852,11 +852,11 @@ msgstr ""
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "Помилка при відправці книги: %(res)s"
msgstr "Помилка при відправці книги: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr ""
msgstr ""
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -992,7 +992,7 @@ msgid "Download"
...
@@ -992,7 +992,7 @@ msgid "Download"
msgstr "Завантажити"
msgstr "Завантажити"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr ""
msgstr ""
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1032,7 +1032,7 @@ msgid "From E-mail"
...
@@ -1032,7 +1032,7 @@ msgid "From E-mail"
msgstr "Відправник"
msgstr "Відправник"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "Змінити налаштування SMTP"
msgstr "Змінити налаштування SMTP"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1977,19 +1977,19 @@ msgid "Show Access Log: "
...
@@ -1977,19 +1977,19 @@ msgid "Show Access Log: "
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2313,11 +2313,11 @@ msgid "Create/View"
...
@@ -2313,11 +2313,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po
View file @
e99f5bcc
...
@@ -584,7 +584,7 @@ msgid "There was an error"
...
@@ -584,7 +584,7 @@ msgid "There was an error"
msgstr "发生错误"
msgstr "发生错误"
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr "创建书架"
msgstr "创建书架"
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -853,11 +853,11 @@ msgstr "书籍已经被成功加入 %(kindlemail)s 的发送队列"
...
@@ -853,11 +853,11 @@ msgstr "书籍已经被成功加入 %(kindlemail)s 的发送队列"
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr "发送这本书的时候出现错误: %(res)s"
msgstr "发送这本书的时候出现错误: %(res)s"
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr "请先配置您的kindle邮箱..."
msgstr "请先配置您的kindle邮箱..."
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -993,7 +993,7 @@ msgid "Download"
...
@@ -993,7 +993,7 @@ msgid "Download"
msgstr "下载"
msgstr "下载"
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr "查看电子书"
msgstr "查看电子书"
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
...
@@ -1033,7 +1033,7 @@ msgid "From E-mail"
msgstr "来自邮箱"
msgstr "来自邮箱"
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr "修改SMTP设置"
msgstr "修改SMTP设置"
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
...
@@ -1978,19 +1978,19 @@ msgid "Show Access Log: "
msgstr "显示Access Log: "
msgstr "显示Access Log: "
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr "选择(允许/禁止)标签"
msgstr "选择(允许/禁止)标签"
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr "选择(允许/禁止)自定义栏值"
msgstr "选择(允许/禁止)自定义栏值"
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr "选择(允许/禁止)用户标签"
msgstr "选择(允许/禁止)用户标签"
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr "选择(允许/禁止)用户自定义栏值"
msgstr "选择(允许/禁止)用户自定义栏值"
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
...
@@ -2314,11 +2314,11 @@ msgid "Create/View"
msgstr "新建/查看"
msgstr "新建/查看"
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr "添加(允许/禁止)标签"
msgstr "添加(允许/禁止)标签"
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr "添加(允许/禁止)自定义栏值"
msgstr "添加(允许/禁止)自定义栏值"
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
cps/web.py
View file @
e99f5bcc
...
@@ -1061,9 +1061,9 @@ def send_to_kindle(book_id, book_format, convert):
...
@@ -1061,9 +1061,9 @@ def send_to_kindle(book_id, book_format, convert):
category
=
"success"
)
category
=
"success"
)
ub
.
update_download
(
book_id
,
int
(
current_user
.
id
))
ub
.
update_download
(
book_id
,
int
(
current_user
.
id
))
else
:
else
:
flash
(
_
(
u"There was an error sending this book:
%(res)
s"
,
res
=
result
),
category
=
"error"
)
flash
(
_
(
u"
Oops!
There was an error sending this book:
%(res)
s"
,
res
=
result
),
category
=
"error"
)
else
:
else
:
flash
(
_
(
u"Please
configure your kindle e-mail address first..
."
),
category
=
"error"
)
flash
(
_
(
u"Please
update your profile with a valid Send to Kindle E-mail Address
."
),
category
=
"error"
)
if
"HTTP_REFERER"
in
request
.
environ
:
if
"HTTP_REFERER"
in
request
.
environ
:
return
redirect
(
request
.
environ
[
"HTTP_REFERER"
])
return
redirect
(
request
.
environ
[
"HTTP_REFERER"
])
else
:
else
:
...
...
messages.pot
View file @
e99f5bcc
...
@@ -583,7 +583,7 @@ msgid "There was an error"
...
@@ -583,7 +583,7 @@ msgid "There was an error"
msgstr ""
msgstr ""
#: cps/shelf.py:232 cps/shelf.py:234
#: cps/shelf.py:232 cps/shelf.py:234
msgid "
create a s
helf"
msgid "
Create a S
helf"
msgstr ""
msgstr ""
#: cps/shelf.py:270
#: cps/shelf.py:270
...
@@ -852,11 +852,11 @@ msgstr ""
...
@@ -852,11 +852,11 @@ msgstr ""
#: cps/web.py:1064
#: cps/web.py:1064
#, python-format
#, python-format
msgid "There was an error sending this book: %(res)s"
msgid "
Oops!
There was an error sending this book: %(res)s"
msgstr ""
msgstr ""
#: cps/web.py:1066
#: cps/web.py:1066
msgid "Please
configure your kindle e-mail address first..
."
msgid "Please
update your profile with a valid Send to Kindle E-mail Address
."
msgstr ""
msgstr ""
#: cps/web.py:1083
#: cps/web.py:1083
...
@@ -992,7 +992,7 @@ msgid "Download"
...
@@ -992,7 +992,7 @@ msgid "Download"
msgstr ""
msgstr ""
#: cps/templates/admin.html:18
#: cps/templates/admin.html:18
msgid "View
e
Books"
msgid "View Books"
msgstr ""
msgstr ""
#: cps/templates/admin.html:19 cps/templates/layout.html:65
#: cps/templates/admin.html:19 cps/templates/layout.html:65
...
@@ -1032,7 +1032,7 @@ msgid "From E-mail"
...
@@ -1032,7 +1032,7 @@ msgid "From E-mail"
msgstr ""
msgstr ""
#: cps/templates/admin.html:61
#: cps/templates/admin.html:61
msgid "
Change SMTP s
ettings"
msgid "
Edit E-mail Server S
ettings"
msgstr ""
msgstr ""
#: cps/templates/admin.html:67
#: cps/templates/admin.html:67
...
@@ -1977,19 +1977,19 @@ msgid "Show Access Log: "
...
@@ -1977,19 +1977,19 @@ msgid "Show Access Log: "
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:6
#: cps/templates/modal_restriction.html:6
msgid "Select
allowed/d
enied Tags"
msgid "Select
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:7
#: cps/templates/modal_restriction.html:7
msgid "Select
allowed/denied Custom Column v
alues"
msgid "Select
Allowed/Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:8
#: cps/templates/modal_restriction.html:8
msgid "Select
allowed/denied Tags of u
ser"
msgid "Select
Allowed/Denied Tags of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:9
#: cps/templates/modal_restriction.html:9
msgid "Select
allowed/denied Custom Column values of u
ser"
msgid "Select
Allowed/Denied Custom Column Values of U
ser"
msgstr ""
msgstr ""
#: cps/templates/modal_restriction.html:15
#: cps/templates/modal_restriction.html:15
...
@@ -2313,11 +2313,11 @@ msgid "Create/View"
...
@@ -2313,11 +2313,11 @@ msgid "Create/View"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:83
#: cps/templates/user_edit.html:83
msgid "Add
allowed/d
enied Tags"
msgid "Add
Allowed/D
enied Tags"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:84
#: cps/templates/user_edit.html:84
msgid "Add allowed/
denied custom column v
alues"
msgid "Add allowed/
Denied Custom Column V
alues"
msgstr ""
msgstr ""
#: cps/templates/user_edit.html:129
#: cps/templates/user_edit.html:129
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment