diff --git a/bookwyrm/templates/guided_tour/book.html b/bookwyrm/templates/guided_tour/book.html
index ee703e3b9..44a37f65e 100644
--- a/bookwyrm/templates/guided_tour/book.html
+++ b/bookwyrm/templates/guided_tour/book.html
@@ -7,7 +7,7 @@
tour.addSteps([
{
- text: "{% trans 'This is home page of a book. Let\'s see what you can do while you\'re here!' %}",
+ text: `{% trans "This is home page of a book. Let's see what you can do while you're here!" %}`,
title: "{% trans 'Book page' %}",
buttons: [
{
@@ -52,7 +52,7 @@
],
},
{
- text: "{% trans 'You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves.
Got a favourite you re-read every year? We\'ve got you covered - you can add multiple read dates for the same book 😀' %}",
+ text: `{% trans "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." %}
{% trans "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" %}`,
title: "{% trans 'Add read dates' %}",
attachTo: {
element: "#tour-add-readthrough",
@@ -196,7 +196,7 @@
],
},
{
- text: "{% trans 'If your review or comment might ruin the book for someone who hasn\'t read it yet, you can hide your post behind a spoiler alert' %}",
+ text: `{% trans "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" %}`,
title: "{% trans 'Spoiler alerts' %}",
attachTo: {
element: "",
@@ -221,7 +221,7 @@
],
},
{
- text: "{% trans 'Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\'t appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)' %}",
+ text: `{% trans "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" %}`,
title: "{% trans 'Post privacy' %}",
attachTo: {
element: "[id^=form_review] [id^=privacy_]",
@@ -270,7 +270,7 @@
],
},
{
- text: "{% trans '
Continue the tour by selecting Your books from the drop down menu.
' %}", + text: '{% trans "Continue the tour by selecting Your books from the drop down menu." %}
', title: "{% trans 'Next' %}", attachTo: { element: () => { diff --git a/bookwyrm/templates/guided_tour/group.html b/bookwyrm/templates/guided_tour/group.html index 58f627b06..088437233 100644 --- a/bookwyrm/templates/guided_tour/group.html +++ b/bookwyrm/templates/guided_tour/group.html @@ -74,7 +74,7 @@ ], }, { - text: "{% trans 'As well as creating lists from the Lists page, you can create a group-curated list here on the group\'s homepage. Any member of the group can create a list curated by group members.' %}", + text: `{% trans "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." %}"`, title: "{% trans 'Group lists' %}", attachTo: { element: "#tour-create-list", @@ -97,25 +97,25 @@ ], }, { - text: "{% trans 'Congratulations, you\'ve finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!' %}", - title: "{% trans 'Finish' %}", - buttons: [ - { - action() { - return this.back(); + text: `{% trans "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" %}`, + title: "{% trans 'Finish' %}", + buttons: [ + { + action() { + return this.back(); + }, + secondary: true, + text: "{% trans 'Back' %}", }, - secondary: true, - text: "{% trans 'Back' %}", - }, - { - action() { - disableGuidedTour(csrf_token); - return this.next(); + { + action() { + disableGuidedTour(csrf_token); + return this.next(); + }, + text: "{% trans 'End tour' %}", }, - text: "{% trans 'End tour' %}", - }, ], - } + } ]) tour.start() diff --git a/bookwyrm/templates/guided_tour/home.html b/bookwyrm/templates/guided_tour/home.html index e9bc3d9fc..37e874afa 100644 --- a/bookwyrm/templates/guided_tour/home.html +++ b/bookwyrm/templates/guided_tour/home.html @@ -6,8 +6,8 @@ const initiateTour = new Shepherd.Tour({ }); function checkResponsiveState(anchor) { - let menu = document.querySelector('#navbar-dropdown'); - let display = window.getComputedStyle(menu).display; + let menu = document.querySelector('#navbar-dropdown'); + let display = window.getComputedStyle(menu).display; return display == 'flex' ? anchor : '.navbar-burger'; } @@ -76,7 +76,7 @@ homeTour.addSteps([ ], }, { - text: "{% trans 'Search book records by scanning an ISBN barcode using your device\'s camera - great when you\'re in the bookstore or library!' %}", + text: `{% trans "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" %}`, title: "{% trans 'Barcode reader' %}", attachTo: { element: "#tour-barcode", @@ -197,7 +197,7 @@ homeTour.addSteps([ ], }, { - text: "{% trans 'Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.Try selecting Profile from the drop down menu to continue the tour.
' %}", + text: `{% trans "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here." %}{% trans "Try selecting Profile from the drop down menu to continue the tour." %}
`, title: "{% trans 'Profile and settings menu' %}", attachTo: { element: checkResponsiveState('#navbar-dropdown'), diff --git a/bookwyrm/templates/guided_tour/lists.html b/bookwyrm/templates/guided_tour/lists.html index 1ec1756b1..4c4d241c8 100644 --- a/bookwyrm/templates/guided_tour/lists.html +++ b/bookwyrm/templates/guided_tour/lists.html @@ -10,7 +10,7 @@ tour.addSteps([ { - text: "{% trans 'This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf.Click the Create List button, then Next to continue the tour
' %}", + text: `{% trans "Let's see how to create a new list." %}{% trans "Click the Create List button, then Next to continue the tour" %}
`, title: "{% trans 'Creating a new list' %}", attachTo: { element: "#tour-create-list", diff --git a/bookwyrm/templates/guided_tour/search.html b/bookwyrm/templates/guided_tour/search.html index 507352e05..aa8cf7538 100644 --- a/bookwyrm/templates/guided_tour/search.html +++ b/bookwyrm/templates/guided_tour/search.html @@ -40,7 +40,7 @@ } else if (localResult) { tour.addStep( { - text: "{% trans 'If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\'s page.' %}", + text: `{% trans "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." %}`, title: "{% trans 'Searching' %}", attachTo: { element: "#tour-local-book-search-result", @@ -118,7 +118,7 @@ ], }, { - text: "{% trans 'If you still can\'t find your book, you can add a record manually.' %}", + text: `{% trans "If you still can't find your book, you can add a record manually." %}`, title: "{% trans 'Add a record manally' %}", attachTo: { element: "#tour-manually-add-book", @@ -144,7 +144,7 @@ } tour.addStep({ - text: "{% trans 'Import, manually add, or view an existing book to continue the tour.
' %}", + text: '
{% trans "Import, manually add, or view an existing book to continue the tour." %}
', title: "{% trans 'Continue the tour' %}", buttons: [ { diff --git a/bookwyrm/templates/guided_tour/user_books.html b/bookwyrm/templates/guided_tour/user_books.html index 8931e428d..2a4629050 100644 --- a/bookwyrm/templates/guided_tour/user_books.html +++ b/bookwyrm/templates/guided_tour/user_books.html @@ -98,7 +98,7 @@ ], }, { - text: "{% trans 'Now that we\'ve explored book shelves, let\'s take a look at a related concept: book lists!
Click on the Lists link here to continue the tour.' %}", + text: `{% trans "Now that we've explored book shelves, let's take a look at a related concept: book lists!" %}
{% trans "Click on the Lists link here to continue the tour." %}`, title: "{% trans 'Lists' %}", attachTo: { element: () => { diff --git a/bookwyrm/templates/guided_tour/user_groups.html b/bookwyrm/templates/guided_tour/user_groups.html index 2ca4b0029..fc6169521 100644 --- a/bookwyrm/templates/guided_tour/user_groups.html +++ b/bookwyrm/templates/guided_tour/user_groups.html @@ -28,7 +28,7 @@ ], }, { - text: "{% trans 'Let\'s create a new group!
Click the Create group button, then Next to continue the tour
' %}", + text: `{% trans "Let's create a new group!" %}{% trans "Click the Create group button, then Next to continue the tour" %}
`, title: "{% trans 'Create group' %}", attachTo: { element: "#tour-create-group", @@ -99,7 +99,7 @@ ], }, { - text: "{% trans 'Once you\'re happy with how everything is set up, click the Save button to create your new group.Create and save a group to continue the tour.
' %}", + text: `{% trans "Once you're happy with how everything is set up, click the Save button to create your new group." %}{% trans "Create and save a group to continue the tour." %}
`, title: "{% trans 'Save your group' %}", buttons: [ { diff --git a/bookwyrm/templates/guided_tour/user_profile.html b/bookwyrm/templates/guided_tour/user_profile.html index 7c08233dd..29a94a2ad 100644 --- a/bookwyrm/templates/guided_tour/user_profile.html +++ b/bookwyrm/templates/guided_tour/user_profile.html @@ -28,7 +28,7 @@ tour.addSteps([ ], }, { - text: "{% trans 'This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\'t have to set a reading goal if that\'s not your thing!' %}", + text: `{% trans "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" %}`, title: "{% trans 'Reading Goal' %}", attachTo: { element: "#tour-reading-goal", @@ -97,7 +97,7 @@ tour.addSteps([ ], }, { - text: "{% trans 'The Books tab shows your book shelves. We\'ll explore this later in the tour.' %}", + text: `{% trans "The Books tab shows your book shelves. We'll explore this later in the tour." %}`, title: "{% trans 'Books' %}", attachTo: { element: "#tour-shelves-tab", @@ -120,7 +120,7 @@ tour.addSteps([ ], }, { - text: "{% trans 'Now you understand the basics of your profile page, let\s add a book to your shelves.Search for a title or author to continue the tour.
' %}", + text: `{% trans "Now you understand the basics of your profile page, let's add a book to your shelves." %}{% trans "Search for a title or author to continue the tour." %}
`, title: "{% trans 'Find a book' %}", attachTo: { element: "#tour-search", diff --git a/locale/ca_ES/LC_MESSAGES/django.po b/locale/ca_ES/LC_MESSAGES/django.po index cb367c48c..6b439259a 100644 --- a/locale/ca_ES/LC_MESSAGES/django.po +++ b/locale/ca_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-15 19:29+0000\n" -"PO-Revision-Date: 2022-07-21 17:08\n" +"POT-Creation-Date: 2022-07-28 18:11+0000\n" +"PO-Revision-Date: 2022-07-28 19:14\n" "Last-Translator: Mouse Reeve
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Notificacions"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Els teus llibres"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grups"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Perfil de l'usuari"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Objectiu de lectura"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
%(support_title)s"
msgstr "Dona suport a %(site_name)s a %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "El codi font de BookWyrm està disponible de manera oberta. Pots contribuir o informar de problemes a GitHub."
@@ -4930,19 +5451,10 @@ msgstr "pàgina %(page)s"
msgid "Previous"
msgstr "Anterior"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Següent"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Només seguidors"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Privacitat de la publicació"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Deixa una valoració"
@@ -5212,10 +5724,6 @@ msgstr "Mostra'n més"
msgid "Show less"
msgstr "Mostra'n menys"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Els teus llibres"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Els teus grups"
msgid "Groups: %(username)s"
msgstr "Grups: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Perfil de l'usuari"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Peticions de seguiment"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Objectiu de lectura"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grups"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/de_DE/LC_MESSAGES/django.mo b/locale/de_DE/LC_MESSAGES/django.mo
index 01b2aa67b..4ce83f72b 100644
Binary files a/locale/de_DE/LC_MESSAGES/django.mo and b/locale/de_DE/LC_MESSAGES/django.mo differ
diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po
index 501547fa4..09ed93e8d 100644
--- a/locale/de_DE/LC_MESSAGES/django.po
+++ b/locale/de_DE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-19 20:26\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:13\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "%(site_name)s auf %(support_title)s unterstützen"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm ist open source Software. Du kannst dich auf GitHub beteiligen oder etwas melden."
@@ -4930,19 +5451,10 @@ msgstr "Seite %(page)s"
msgid "Previous"
msgstr "Zurück"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Weiter"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Nur für Follower*innen"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Beitragssichtbarkeit"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Bewerten"
@@ -5212,10 +5724,6 @@ msgstr "Mehr anzeigen"
msgid "Show less"
msgstr "Weniger anzeigen"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Deine Bücher"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Deine Gruppen"
msgid "Groups: %(username)s"
msgstr "Gruppen: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Benutzer*inprofil"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Folgeanfragen"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Leseziel"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Gruppen"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po
index 24c22a99f..5633966d5 100644
--- a/locale/en_US/LC_MESSAGES/django.po
+++ b/locale/en_US/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"POT-Creation-Date: 2022-07-29 18:24+0000\n"
"PO-Revision-Date: 2021-02-28 17:19-0800\n"
"Last-Translator: Mouse Reeve Your books from the drop down menu."
msgstr ""
#: bookwyrm/templates/guided_tour/book.html:296
@@ -2228,7 +2231,7 @@ msgid "Group members"
msgstr ""
#: bookwyrm/templates/guided_tour/group.html:77
-msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group\\"
+msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members."
msgstr ""
#: bookwyrm/templates/guided_tour/group.html:78
@@ -2236,7 +2239,7 @@ msgid "Group lists"
msgstr ""
#: bookwyrm/templates/guided_tour/group.html:100
-msgid "Congratulations, you\\"
+msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!"
msgstr ""
#: bookwyrm/templates/guided_tour/group.html:115
@@ -2274,7 +2277,7 @@ msgid "Search box"
msgstr ""
#: bookwyrm/templates/guided_tour/home.html:79
-msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!"
msgstr ""
#: bookwyrm/templates/guided_tour/home.html:80
@@ -2313,7 +2316,11 @@ msgid "Notifications"
msgstr ""
#: bookwyrm/templates/guided_tour/home.html:200
-msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here. Profile from the drop down menu to continue the tour."
msgstr ""
#: bookwyrm/templates/guided_tour/home.html:201
@@ -2321,12 +2328,19 @@ msgid "Profile and settings menu"
msgstr ""
#: bookwyrm/templates/guided_tour/lists.html:13
-msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf. \n"
"Language-Team: Spanish\n"
"Language: es\n"
@@ -285,7 +285,9 @@ msgstr "Inicio"
msgid "Books Timeline"
msgstr "Línea temporal de libros"
-#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
+#: bookwyrm/settings.py:210
+#: bookwyrm/templates/guided_tour/user_profile.html:101
+#: bookwyrm/templates/search/layout.html:21
#: bookwyrm/templates/search/layout.html:42
#: bookwyrm/templates/user/layout.html:91
msgid "Books"
@@ -862,6 +864,7 @@ msgid "Your reading activity"
msgstr "Tu actividad de lectura"
#: bookwyrm/templates/book/book.html:260
+#: bookwyrm/templates/guided_tour/book.html:56
msgid "Add read dates"
msgstr "Agregar fechas de lectura"
@@ -890,9 +893,13 @@ msgid "Places"
msgstr "Lugares"
#: bookwyrm/templates/book/book.html:365
-#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83
-#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
-#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
+#: bookwyrm/templates/groups/group.html:19
+#: bookwyrm/templates/guided_tour/lists.html:14
+#: bookwyrm/templates/guided_tour/user_books.html:102
+#: bookwyrm/templates/guided_tour/user_profile.html:78
+#: bookwyrm/templates/layout.html:83 bookwyrm/templates/lists/curate.html:8
+#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5
+#: bookwyrm/templates/lists/lists.html:12
#: bookwyrm/templates/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
#: bookwyrm/templates/user/layout.html:85
@@ -1002,6 +1009,49 @@ msgstr "Esta es una obra nueva"
#: bookwyrm/templates/book/edit/edit_book.html:124
#: bookwyrm/templates/feed/status.html:21
+#: bookwyrm/templates/guided_tour/book.html:44
+#: bookwyrm/templates/guided_tour/book.html:68
+#: bookwyrm/templates/guided_tour/book.html:91
+#: bookwyrm/templates/guided_tour/book.html:116
+#: bookwyrm/templates/guided_tour/book.html:140
+#: bookwyrm/templates/guided_tour/book.html:164
+#: bookwyrm/templates/guided_tour/book.html:188
+#: bookwyrm/templates/guided_tour/book.html:213
+#: bookwyrm/templates/guided_tour/book.html:237
+#: bookwyrm/templates/guided_tour/book.html:262
+#: bookwyrm/templates/guided_tour/book.html:290
+#: bookwyrm/templates/guided_tour/group.html:43
+#: bookwyrm/templates/guided_tour/group.html:66
+#: bookwyrm/templates/guided_tour/group.html:89
+#: bookwyrm/templates/guided_tour/group.html:108
+#: bookwyrm/templates/guided_tour/home.html:91
+#: bookwyrm/templates/guided_tour/home.html:115
+#: bookwyrm/templates/guided_tour/home.html:140
+#: bookwyrm/templates/guided_tour/home.html:165
+#: bookwyrm/templates/guided_tour/home.html:189
+#: bookwyrm/templates/guided_tour/home.html:212
+#: bookwyrm/templates/guided_tour/lists.html:47
+#: bookwyrm/templates/guided_tour/lists.html:70
+#: bookwyrm/templates/guided_tour/lists.html:94
+#: bookwyrm/templates/guided_tour/lists.html:117
+#: bookwyrm/templates/guided_tour/lists.html:136
+#: bookwyrm/templates/guided_tour/search.html:83
+#: bookwyrm/templates/guided_tour/search.html:110
+#: bookwyrm/templates/guided_tour/search.html:134
+#: bookwyrm/templates/guided_tour/search.html:155
+#: bookwyrm/templates/guided_tour/user_books.html:44
+#: bookwyrm/templates/guided_tour/user_books.html:67
+#: bookwyrm/templates/guided_tour/user_books.html:90
+#: bookwyrm/templates/guided_tour/user_books.html:118
+#: bookwyrm/templates/guided_tour/user_groups.html:44
+#: bookwyrm/templates/guided_tour/user_groups.html:67
+#: bookwyrm/templates/guided_tour/user_groups.html:91
+#: bookwyrm/templates/guided_tour/user_groups.html:110
+#: bookwyrm/templates/guided_tour/user_profile.html:43
+#: bookwyrm/templates/guided_tour/user_profile.html:66
+#: bookwyrm/templates/guided_tour/user_profile.html:89
+#: bookwyrm/templates/guided_tour/user_profile.html:112
+#: bookwyrm/templates/guided_tour/user_profile.html:135
msgid "Back"
msgstr "Volver"
@@ -1658,16 +1708,16 @@ msgstr "Todos los mensajes"
msgid "You have no messages right now."
msgstr "No tienes ningún mensaje en este momento."
-#: bookwyrm/templates/feed/feed.html:54
+#: bookwyrm/templates/feed/feed.html:55
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "¡No hay actividad ahora mismo! Sigue a otro usuario para empezar"
-#: bookwyrm/templates/feed/feed.html:55
+#: bookwyrm/templates/feed/feed.html:56
msgid "Alternatively, you can try enabling more status types"
msgstr "Alternativamente, puedes intentar habilitar más tipos de estado"
#: bookwyrm/templates/feed/goal_card.html:6
-#: bookwyrm/templates/feed/layout.html:15
+#: bookwyrm/templates/feed/layout.html:14
#: bookwyrm/templates/user/goal_form.html:6
#, python-format
msgid "%(year)s Reading Goal"
@@ -1678,11 +1728,12 @@ msgstr "Objetivo de lectura de %(year)s"
msgid "You can set or change your reading goal any time from your profile page"
msgstr "Puedes establecer o cambiar tu objetivo de lectura en cualquier momento desde tu página de perfil"
-#: bookwyrm/templates/feed/layout.html:5
+#: bookwyrm/templates/feed/layout.html:4
msgid "Updates"
msgstr "Actualizaciones"
#: bookwyrm/templates/feed/suggested_books.html:6
+#: bookwyrm/templates/guided_tour/home.html:127
#: bookwyrm/templates/user_menu.html:35
msgid "Your Books"
msgstr "Tus libros"
@@ -1833,6 +1884,7 @@ msgid "Skip this step"
msgstr "Saltar este paso"
#: bookwyrm/templates/get_started/layout.html:54
+#: bookwyrm/templates/guided_tour/group.html:101
msgid "Finish"
msgstr "Terminar"
@@ -1878,6 +1930,7 @@ msgid "No users found for \"%(query)s\""
msgstr "No se encontró ningún usuario correspondiente a \"%(query)s\""
#: bookwyrm/templates/groups/create_form.html:5
+#: bookwyrm/templates/guided_tour/user_groups.html:32
#: bookwyrm/templates/user/groups.html:17
msgid "Create group"
msgstr "Crear grupo"
@@ -1988,6 +2041,480 @@ msgstr "No se encontraron miembros potenciales para «%(user_query)s»"
msgid "Manager"
msgstr "Gestor"
+#: bookwyrm/templates/guided_tour/book.html:10
+msgid "This is home page of a book. Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:11
+msgid "Book page"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:19
+#: bookwyrm/templates/guided_tour/group.html:19
+#: bookwyrm/templates/guided_tour/lists.html:22
+#: bookwyrm/templates/guided_tour/search.html:29
+#: bookwyrm/templates/guided_tour/search.html:56
+#: bookwyrm/templates/guided_tour/user_books.html:19
+#: bookwyrm/templates/guided_tour/user_groups.html:19
+#: bookwyrm/templates/guided_tour/user_profile.html:19
+msgid "End Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:26
+#: bookwyrm/templates/guided_tour/book.html:50
+#: bookwyrm/templates/guided_tour/book.html:74
+#: bookwyrm/templates/guided_tour/book.html:97
+#: bookwyrm/templates/guided_tour/book.html:122
+#: bookwyrm/templates/guided_tour/book.html:146
+#: bookwyrm/templates/guided_tour/book.html:170
+#: bookwyrm/templates/guided_tour/book.html:194
+#: bookwyrm/templates/guided_tour/book.html:219
+#: bookwyrm/templates/guided_tour/book.html:243
+#: bookwyrm/templates/guided_tour/book.html:268
+#: bookwyrm/templates/guided_tour/book.html:274
+#: bookwyrm/templates/guided_tour/group.html:26
+#: bookwyrm/templates/guided_tour/group.html:49
+#: bookwyrm/templates/guided_tour/group.html:72
+#: bookwyrm/templates/guided_tour/group.html:95
+#: bookwyrm/templates/guided_tour/home.html:74
+#: bookwyrm/templates/guided_tour/home.html:97
+#: bookwyrm/templates/guided_tour/home.html:121
+#: bookwyrm/templates/guided_tour/home.html:146
+#: bookwyrm/templates/guided_tour/home.html:171
+#: bookwyrm/templates/guided_tour/home.html:195
+#: bookwyrm/templates/guided_tour/lists.html:29
+#: bookwyrm/templates/guided_tour/lists.html:53
+#: bookwyrm/templates/guided_tour/lists.html:76
+#: bookwyrm/templates/guided_tour/lists.html:100
+#: bookwyrm/templates/guided_tour/lists.html:123
+#: bookwyrm/templates/guided_tour/search.html:36
+#: bookwyrm/templates/guided_tour/search.html:63
+#: bookwyrm/templates/guided_tour/search.html:89
+#: bookwyrm/templates/guided_tour/search.html:116
+#: bookwyrm/templates/guided_tour/search.html:140
+#: bookwyrm/templates/guided_tour/user_books.html:26
+#: bookwyrm/templates/guided_tour/user_books.html:50
+#: bookwyrm/templates/guided_tour/user_books.html:73
+#: bookwyrm/templates/guided_tour/user_books.html:96
+#: bookwyrm/templates/guided_tour/user_groups.html:26
+#: bookwyrm/templates/guided_tour/user_groups.html:50
+#: bookwyrm/templates/guided_tour/user_groups.html:73
+#: bookwyrm/templates/guided_tour/user_groups.html:97
+#: bookwyrm/templates/guided_tour/user_profile.html:26
+#: bookwyrm/templates/guided_tour/user_profile.html:49
+#: bookwyrm/templates/guided_tour/user_profile.html:72
+#: bookwyrm/templates/guided_tour/user_profile.html:95
+#: bookwyrm/templates/guided_tour/user_profile.html:118
+#: bookwyrm/templates/snippets/pagination.html:23
+msgid "Next"
+msgstr "Siguiente"
+
+#: bookwyrm/templates/guided_tour/book.html:31
+msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:32
+msgid "Reading status"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:55
+msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves. %(support_title)s"
msgstr "Apoyar %(site_name)s en %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm es software de código abierto. Puedes contribuir o reportar problemas en GitHub."
@@ -4930,19 +5451,10 @@ msgstr "página %(page)s"
msgid "Previous"
msgstr "Anterior"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Siguiente"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Solo seguidores"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Privacidad de publicación"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Da una valoración"
@@ -5212,10 +5724,6 @@ msgstr "Mostrar más"
msgid "Show less"
msgstr "Mostrar menos"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Tus libros"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Tus grupos"
msgid "Groups: %(username)s"
msgstr "Grupos: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Perfil de usuario"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Solicitudes de seguimiento"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Objetivo de lectura"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grupos"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/fi_FI/LC_MESSAGES/django.mo b/locale/fi_FI/LC_MESSAGES/django.mo
index 7f55dba48..68400e662 100644
Binary files a/locale/fi_FI/LC_MESSAGES/django.mo and b/locale/fi_FI/LC_MESSAGES/django.mo differ
diff --git a/locale/fi_FI/LC_MESSAGES/django.po b/locale/fi_FI/LC_MESSAGES/django.po
index 031875a3f..52a89d886 100644
--- a/locale/fi_FI/LC_MESSAGES/django.po
+++ b/locale/fi_FI/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-22 17:47\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:14\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Tue %(site_name)s-sivustoa osoitteessa %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrmin lähdekoodi on avointa. Kehitystyöhön voi osallistua ja ongelmista voi ilmoittaa GitHubissa."
@@ -4930,19 +5451,10 @@ msgstr "sivu %(page)s"
msgid "Previous"
msgstr "Edellinen"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Seuraava"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Vain seuraajille"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Julkaisun näkyvyys"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Anna arvosana"
@@ -5212,10 +5724,6 @@ msgstr "Näytä lisää"
msgid "Show less"
msgstr "Näytä vähemmän"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Omat kirjat"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Omat ryhmät"
msgid "Groups: %(username)s"
msgstr "Ryhmät: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Käyttäjäprofiili"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Seuraamispyynnöt"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Lukutavoite"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Ryhmät"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po
index 9c9b9e537..9bdc9d949 100644
--- a/locale/fr_FR/LC_MESSAGES/django.po
+++ b/locale/fr_FR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-16 07:14\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:14\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Soutenez %(site_name)s avec %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via GitHub."
@@ -4930,19 +5451,10 @@ msgstr "page %(page)s"
msgid "Previous"
msgstr "Précédente"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Suivante"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Abonnemé(e)s uniquement"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Confidentialité du statut"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Laisser une note"
@@ -5212,10 +5724,6 @@ msgstr "Déplier"
msgid "Show less"
msgstr "Replier"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Vos livres"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Vos Groupes"
msgid "Groups: %(username)s"
msgstr "Groupes : %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Profil"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Demandes d’abonnement"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Défi lecture"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Groupes"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/gl_ES/LC_MESSAGES/django.mo b/locale/gl_ES/LC_MESSAGES/django.mo
index 2617fc9b2..bd2618087 100644
Binary files a/locale/gl_ES/LC_MESSAGES/django.mo and b/locale/gl_ES/LC_MESSAGES/django.mo differ
diff --git a/locale/gl_ES/LC_MESSAGES/django.po b/locale/gl_ES/LC_MESSAGES/django.po
index ba8b4c646..e25b6268a 100644
--- a/locale/gl_ES/LC_MESSAGES/django.po
+++ b/locale/gl_ES/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-26 12:44\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:13\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Axuda a %(site_name)s en %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en GitHub."
@@ -4930,19 +5451,10 @@ msgstr "páxina %(page)s"
msgid "Previous"
msgstr "Anterior"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Seguinte"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Só seguidoras"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Privacidade da publicación"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Fai unha valoración"
@@ -5212,10 +5724,6 @@ msgstr "Mostrar máis"
msgid "Show less"
msgstr "Mostrar menos"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Os teus libros"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Os teus grupos"
msgid "Groups: %(username)s"
msgstr "Grupos: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Perfil da usuaria"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Solicitudes de seguimento"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Obxectivo de lectura"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grupos"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/it_IT/LC_MESSAGES/django.mo b/locale/it_IT/LC_MESSAGES/django.mo
index 5816a8888..95b6bf10f 100644
Binary files a/locale/it_IT/LC_MESSAGES/django.mo and b/locale/it_IT/LC_MESSAGES/django.mo differ
diff --git a/locale/it_IT/LC_MESSAGES/django.po b/locale/it_IT/LC_MESSAGES/django.po
index a314b1480..8dd9d8805 100644
--- a/locale/it_IT/LC_MESSAGES/django.po
+++ b/locale/it_IT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-15 19:48\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:14\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Supporta %(site_name)s su %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "Il codice sorgente di BookWyrm è disponibile liberamente. Puoi contribuire o segnalare problemi su GitHub."
@@ -4930,19 +5451,10 @@ msgstr "pagina %(page)s"
msgid "Previous"
msgstr "Precedente"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Successivo"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Solo Followers"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Privacy dei post"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Lascia una recensione"
@@ -5212,10 +5724,6 @@ msgstr "Mostra di più"
msgid "Show less"
msgstr "Mostra meno"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "I tuoi libri"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "I tuoi gruppi"
msgid "Groups: %(username)s"
msgstr "Gruppi: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Profilo utente"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Richieste di seguirti"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Obiettivo di lettura"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Gruppi"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/lt_LT/LC_MESSAGES/django.mo b/locale/lt_LT/LC_MESSAGES/django.mo
index c7cb6d9bb..b29eabb1e 100644
Binary files a/locale/lt_LT/LC_MESSAGES/django.mo and b/locale/lt_LT/LC_MESSAGES/django.mo differ
diff --git a/locale/lt_LT/LC_MESSAGES/django.po b/locale/lt_LT/LC_MESSAGES/django.po
index e16c2d1cc..3148feb45 100644
--- a/locale/lt_LT/LC_MESSAGES/django.po
+++ b/locale/lt_LT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-16 18:16\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:14\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Paremkite %(site_name)s per %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "„BookWyrm“ šaltinio kodas yra laisvai prieinamas. Galite prisidėti arba pranešti apie klaidas per GitHub."
@@ -4982,19 +5503,10 @@ msgstr "%(page)s psl."
msgid "Previous"
msgstr "Ankstesnis"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Kitas"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Tik sekėjai"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Įrašo privatumas"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Palikti įvertinimą"
@@ -5264,10 +5776,6 @@ msgstr "Rodyti daugiau"
msgid "Show less"
msgstr "Rodyti mažiau"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Jūsų knygos"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5306,22 +5814,10 @@ msgstr "Jūsų grupės"
msgid "Groups: %(username)s"
msgstr "Grupės: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Nario paskyra"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Sekti prašymus"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Skaitymo tikslas"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grupės"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo
index 979c514e9..04198a903 100644
Binary files a/locale/no_NO/LC_MESSAGES/django.mo and b/locale/no_NO/LC_MESSAGES/django.mo differ
diff --git a/locale/no_NO/LC_MESSAGES/django.po b/locale/no_NO/LC_MESSAGES/django.po
index e13f647d9..ced7348cb 100644
--- a/locale/no_NO/LC_MESSAGES/django.po
+++ b/locale/no_NO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-15 19:48\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:13\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Støtt %(site_name)s på %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrms kildekode er fritt tilgjengelig. Du kan bidra eller rapportere problemer på GitHub."
@@ -4928,19 +5449,10 @@ msgstr "side %(page)s"
msgid "Previous"
msgstr "Forrige"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Neste"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Kun følgere"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Delingsinstilling for post"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Legg inn en vurdering"
@@ -5210,10 +5722,6 @@ msgstr "Vis mer"
msgid "Show less"
msgstr "Vis mindre"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Dine bøker"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5252,22 +5760,10 @@ msgstr "Gruppene dine"
msgid "Groups: %(username)s"
msgstr "Grupper: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Brukerprofil"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Følgeforespørsler"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Lesemål"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grupper"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo
index 72fab65e7..c4f73f1b0 100644
Binary files a/locale/pt_BR/LC_MESSAGES/django.mo and b/locale/pt_BR/LC_MESSAGES/django.mo differ
diff --git a/locale/pt_BR/LC_MESSAGES/django.po b/locale/pt_BR/LC_MESSAGES/django.po
index cbe4a2108..ee4bd7dc0 100644
--- a/locale/pt_BR/LC_MESSAGES/django.po
+++ b/locale/pt_BR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-15 19:48\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:13\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Apoie a instância %(site_name)s: %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "O código-fonte da BookWyrm está disponível gratuitamente. Você pode contribuir ou reportar problemas no GitHub."
@@ -4930,19 +5451,10 @@ msgstr "página %(page)s"
msgid "Previous"
msgstr "Anterior"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Próxima"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Apenas seguidores"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Privacidade da publicação"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Deixe uma avaliação"
@@ -5212,10 +5724,6 @@ msgstr "Mostrar mais"
msgid "Show less"
msgstr "Mostrar menos"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Seus livros"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Seus grupos"
msgid "Groups: %(username)s"
msgstr "Grupos: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Perfil do usuário"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Solicitações para seguir"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Meta de leitura"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grupos"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/pt_PT/LC_MESSAGES/django.mo b/locale/pt_PT/LC_MESSAGES/django.mo
index c71f79be3..0cc28c813 100644
Binary files a/locale/pt_PT/LC_MESSAGES/django.mo and b/locale/pt_PT/LC_MESSAGES/django.mo differ
diff --git a/locale/pt_PT/LC_MESSAGES/django.po b/locale/pt_PT/LC_MESSAGES/django.po
index 18e699525..048ddf4c7 100644
--- a/locale/pt_PT/LC_MESSAGES/django.po
+++ b/locale/pt_PT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-15 19:48\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:13\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Apoia %(site_name)s em %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "O código de fonte do BookWyrm está disponível gratuitamente. E também podes contribuir ou reportar problemas no GitHub."
@@ -4930,19 +5451,10 @@ msgstr "página %(page)s"
msgid "Previous"
msgstr "Anterior"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Seguinte"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Apenas seguidores"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Privacidade de publicação"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Deixar uma avaliação"
@@ -5212,10 +5724,6 @@ msgstr "Mostrar mais"
msgid "Show less"
msgstr "Mostrar menos"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Os teus livros"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Os Teus Grupos"
msgid "Groups: %(username)s"
msgstr "Grupos: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Perfil de Utilizador"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Solicitações para seguir"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Meta de leitura"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grupos"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/ro_RO/LC_MESSAGES/django.mo b/locale/ro_RO/LC_MESSAGES/django.mo
index 36ca42b3f..7bb7c32ec 100644
Binary files a/locale/ro_RO/LC_MESSAGES/django.mo and b/locale/ro_RO/LC_MESSAGES/django.mo differ
diff --git a/locale/ro_RO/LC_MESSAGES/django.po b/locale/ro_RO/LC_MESSAGES/django.po
index b9c0a65d1..08f49e88e 100644
--- a/locale/ro_RO/LC_MESSAGES/django.po
+++ b/locale/ro_RO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-15 19:48\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:14\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Susțineți %(site_name)s la %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "Codul sursă a lui BookWyrm este disponibil gratuit. Puteți contribui sau raporta probleme la GitHub."
@@ -4956,19 +5477,10 @@ msgstr "pagina %(page)s"
msgid "Previous"
msgstr "Înapoi"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Înainte"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Numai urmăritorii"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Confidențialitatea postării"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Lăsați o evaluare"
@@ -5238,10 +5750,6 @@ msgstr "Arătați mai multe"
msgid "Show less"
msgstr "Arătați mai puțin"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Cărțile dvs."
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5280,22 +5788,10 @@ msgstr "Grupurile dvs."
msgid "Groups: %(username)s"
msgstr "Grupuri: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Profilul utilizatorului"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Cereri de urmărire"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Obiectiv de lectură"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grupuri"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/sv_SE/LC_MESSAGES/django.mo b/locale/sv_SE/LC_MESSAGES/django.mo
index 2dc0be7c7..442bae032 100644
Binary files a/locale/sv_SE/LC_MESSAGES/django.mo and b/locale/sv_SE/LC_MESSAGES/django.mo differ
diff --git a/locale/sv_SE/LC_MESSAGES/django.po b/locale/sv_SE/LC_MESSAGES/django.po
index 1fa7396ae..a038e6238 100644
--- a/locale/sv_SE/LC_MESSAGES/django.po
+++ b/locale/sv_SE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-15 19:48\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:13\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "Stötta %(site_name)s på %(support_title)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm's källkod är fritt tillgängligt. Du kan bidra eller rapportera problem på GitHub."
@@ -4930,19 +5451,10 @@ msgstr "sida %(page)s"
msgid "Previous"
msgstr "Föregående"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "Nästa"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "Endast följare"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "Sekretess för inlägg"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "Lämna ett betyg"
@@ -5212,10 +5724,6 @@ msgstr "Visa mer"
msgid "Show less"
msgstr "Visa mindre"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "Dina böcker"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5254,22 +5762,10 @@ msgstr "Dina grupper"
msgid "Groups: %(username)s"
msgstr "Grupper: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "Användarprofil"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "Följdförfrågningar"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "Läs-mål"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "Grupper"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po
index 06df7c773..75b20c9f4 100644
--- a/locale/zh_Hans/LC_MESSAGES/django.po
+++ b/locale/zh_Hans/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-15 19:48\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:13\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "在 %(support_title)s 上支持 %(site_name)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm 是开源软件。你可以在 GitHub 贡献或报告问题。"
@@ -4904,19 +5425,10 @@ msgstr "第 %(page)s 页"
msgid "Previous"
msgstr "往前"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "往后"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "仅关注者"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "发文隐私"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "留下评价"
@@ -5186,10 +5698,6 @@ msgstr "显示更多"
msgid "Show less"
msgstr "显示更少"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "你的书目"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5228,22 +5736,10 @@ msgstr "您的群组"
msgid "Groups: %(username)s"
msgstr "群组: %(username)s"
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "用户个人资料"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "关注请求"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "阅读目标"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr "群组"
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po
index 91dced282..50e85640e 100644
--- a/locale/zh_Hant/LC_MESSAGES/django.po
+++ b/locale/zh_Hant/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-07-15 19:29+0000\n"
-"PO-Revision-Date: 2022-07-15 19:48\n"
+"POT-Creation-Date: 2022-07-28 18:11+0000\n"
+"PO-Revision-Date: 2022-07-28 19:13\n"
"Last-Translator: Mouse Reeve %(support_title)s"
msgstr "在 %(support_title)s 上支援 %(site_name)s"
-#: bookwyrm/templates/layout.html:201
+#: bookwyrm/templates/layout.html:207
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm 是開源軟體。你可以在 GitHub 貢獻或報告問題。"
@@ -4902,19 +5423,10 @@ msgstr "第 %(page)s 頁"
msgid "Previous"
msgstr "往前"
-#: bookwyrm/templates/snippets/pagination.html:23
-msgid "Next"
-msgstr "往後"
-
#: bookwyrm/templates/snippets/privacy-icons.html:12
msgid "Followers-only"
msgstr "僅關注者"
-#: bookwyrm/templates/snippets/privacy_select.html:6
-#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
-msgid "Post privacy"
-msgstr "發文隱私"
-
#: bookwyrm/templates/snippets/rate_action.html:5
msgid "Leave a rating"
msgstr "留下評價"
@@ -5184,10 +5696,6 @@ msgstr "顯示更多"
msgid "Show less"
msgstr "顯示更少"
-#: bookwyrm/templates/user/books_header.html:4
-msgid "Your books"
-msgstr "你的書目"
-
#: bookwyrm/templates/user/books_header.html:9
#, python-format
msgid "%(username)s's books"
@@ -5226,22 +5734,10 @@ msgstr ""
msgid "Groups: %(username)s"
msgstr ""
-#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
-msgid "User Profile"
-msgstr "使用者使用者資料"
-
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
msgstr "關注請求"
-#: bookwyrm/templates/user/layout.html:73
-msgid "Reading Goal"
-msgstr "閱讀目標"
-
-#: bookwyrm/templates/user/layout.html:79
-msgid "Groups"
-msgstr ""
-
#: bookwyrm/templates/user/lists.html:11
#, python-format
msgid "Lists: %(username)s"
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Beitragssichtbarkeit"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Benachrichtigungen"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Deine Bücher"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Gruppen"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Benutzer*inprofil"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Leseziel"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:55
+msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀"
msgstr ""
#: bookwyrm/templates/guided_tour/book.html:79
@@ -2163,7 +2167,7 @@ msgid "Share a quote"
msgstr ""
#: bookwyrm/templates/guided_tour/book.html:199
-msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert"
msgstr ""
#: bookwyrm/templates/guided_tour/book.html:200
@@ -2171,7 +2175,7 @@ msgid "Spoiler alerts"
msgstr ""
#: bookwyrm/templates/guided_tour/book.html:224
-msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)"
msgstr ""
#: bookwyrm/templates/guided_tour/book.html:225
@@ -2189,8 +2193,7 @@ msgid "Download links"
msgstr ""
#: bookwyrm/templates/guided_tour/book.html:273
-#: bookwyrm/templates/guided_tour/search.html:147
-msgid "
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:13
+msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
msgstr ""
#: bookwyrm/templates/guided_tour/lists.html:34
-#: bookwyrm/templates/guided_tour/user_groups.html:31
-msgid "Let\\"
+msgid "Let's see how to create a new list."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+msgid "Click the Create List button, then Next to continue the tour"
msgstr ""
#: bookwyrm/templates/guided_tour/lists.html:35
@@ -2376,7 +2390,7 @@ msgid "Searching"
msgstr ""
#: bookwyrm/templates/guided_tour/search.html:43
-msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page."
msgstr ""
#: bookwyrm/templates/guided_tour/search.html:71
@@ -2396,13 +2410,17 @@ msgid "Search again"
msgstr ""
#: bookwyrm/templates/guided_tour/search.html:121
-msgid "If you still can\\"
+msgid "If you still can't find your book, you can add a record manually."
msgstr ""
#: bookwyrm/templates/guided_tour/search.html:122
msgid "Add a record manally"
msgstr ""
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "Import, manually add, or view an existing book to continue the tour."
+msgstr ""
+
#: bookwyrm/templates/guided_tour/search.html:148
msgid "Continue the tour"
msgstr ""
@@ -2441,7 +2459,11 @@ msgid "Import from another service"
msgstr ""
#: bookwyrm/templates/guided_tour/user_books.html:101
-msgid "Now that we\\"
+msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Click on the Lists link here to continue the tour."
msgstr ""
#: bookwyrm/templates/guided_tour/user_groups.html:10
@@ -2454,6 +2476,14 @@ msgstr ""
msgid "Groups"
msgstr ""
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let's create a new group!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Click the Create group button, then Next to continue the tour"
+msgstr ""
+
#: bookwyrm/templates/guided_tour/user_groups.html:55
msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
msgstr ""
@@ -2471,7 +2501,11 @@ msgid "Group visibility"
msgstr ""
#: bookwyrm/templates/guided_tour/user_groups.html:102
-msgid "Once you\\"
+msgid "Once you're happy with how everything is set up, click the Save button to create your new group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Create and save a group to continue the tour."
msgstr ""
#: bookwyrm/templates/guided_tour/user_groups.html:103
@@ -2488,7 +2522,7 @@ msgid "User Profile"
msgstr ""
#: bookwyrm/templates/guided_tour/user_profile.html:31
-msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!"
msgstr ""
#: bookwyrm/templates/guided_tour/user_profile.html:32
@@ -2505,11 +2539,15 @@ msgid "You can see your lists, or create a new one, here. A list is a collection
msgstr ""
#: bookwyrm/templates/guided_tour/user_profile.html:100
-msgid "The Books tab shows your book shelves. We\\"
+msgid "The Books tab shows your book shelves. We'll explore this later in the tour."
msgstr ""
#: bookwyrm/templates/guided_tour/user_profile.html:123
-msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Privacidad de publicación"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Notificaciones"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Tus libros"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grupos"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Perfil de usuario"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Objetivo de lectura"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Julkaisun näkyvyys"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Ilmoitukset"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Omat kirjat"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Ryhmät"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Käyttäjäprofiili"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Lukutavoite"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Confidentialité du statut"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Notifications"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Vos livres"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Groupes"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Profil"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Défi lecture"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Privacidade da publicación"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Notificacións"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Os teus libros"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grupos"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Perfil da usuaria"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Obxectivo de lectura"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Privacy dei post"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Notifiche"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "I tuoi libri"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Gruppi"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Profilo utente"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Obiettivo di lettura"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Įrašo privatumas"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Pranešimai"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Jūsų knygos"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grupės"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Nario paskyra"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Skaitymo tikslas"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Delingsinstilling for post"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Varsler"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Dine bøker"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grupper"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Brukerprofil"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Lesemål"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Privacidade da publicação"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Notificações"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Seus livros"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grupos"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Perfil do usuário"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Meta de leitura"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Privacidade de publicação"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Notificações"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Os teus livros"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grupos"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Perfil de Utilizador"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Meta de leitura"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Confidențialitatea postării"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Notificări"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Cărțile dvs."
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grupuri"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Profilul utilizatorului"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Obiectiv de lectură"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "Sekretess för inlägg"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "Aviseringar"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "Dina böcker"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "Grupper"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "Användarprofil"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "Läs-mål"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "发文隐私"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "通知"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "你的书目"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr "群组"
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "用户个人资料"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "阅读目标"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.
Got a favourite you re-read every year? We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:79
+msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:80
+msgid "Other editions"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:102
+msgid "You can post a review, comment, or quote here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:103
+msgid "Share your thoughts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:127
+msgid "If you have read this book you can post a review including an optional star rating"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:128
+msgid "Post a review"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:151
+msgid "You can share your thoughts on this book generally with a simple comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:152
+msgid "Post a comment"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:175
+msgid "Just read some perfect prose? Let the world know by sharing a quote!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:176
+msgid "Share a quote"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:199
+msgid "If your review or comment might ruin the book for someone who hasn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:200
+msgid "Spoiler alerts"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:224
+msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:225
+#: bookwyrm/templates/snippets/privacy_select.html:6
+#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6
+msgid "Post privacy"
+msgstr "發文隱私"
+
+#: bookwyrm/templates/guided_tour/book.html:248
+msgid "Some ebooks can be downloaded for free from external sources. They will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:249
+msgid "Download links"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/book.html:273
+#: bookwyrm/templates/guided_tour/search.html:147
+msgid "
Would you like to take the guided tour to help you get started?"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:17
+#: bookwyrm/templates/guided_tour/home.html:39
+#: bookwyrm/templates/layout.html:194
+msgid "Guided Tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:25
+msgid "No thanks"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:33
+msgid "Yes please!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:38
+msgid "If you ever change your mind, just click on the Guided Tour link to start your tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:62
+msgid "Search for books, users, or lists using this search box."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:63
+msgid "Search box"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:79
+msgid "Search book records by scanning an ISBN barcode using your device\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:80
+msgid "Barcode reader"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:102
+msgid "Use the Feed, Lists and Discover links to discover the latest news from your feed, lists of books by topic, and the latest happenings on this Bookwyrm server!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:103
+msgid "Navigation Bar"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:126
+msgid "Books on your reading status shelves will be shown here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:151
+msgid "Updates from people you are following will appear in your Home timeline.
The Books tab shows activity from anyone, related to your books."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:152
+msgid "Timelines"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:176
+msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/home.html:177
+#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
+#: bookwyrm/templates/notifications/notifications_page.html:5
+#: bookwyrm/templates/notifications/notifications_page.html:10
+msgid "Notifications"
+msgstr "通知"
+
+#: bookwyrm/templates/guided_tour/home.html:200
+msgid "Your profile, books, direct messages, and settings can be accessed by clicking on your name in the menu here.
Shelves are for organising books for yourself, whereas Lists are generally for sharing with others."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:34
+#: bookwyrm/templates/guided_tour/user_groups.html:31
+msgid "Let\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:35
+#: bookwyrm/templates/guided_tour/lists.html:59
+msgid "Creating a new list"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:58
+msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:81
+msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:82
+msgid "List privacy"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:105
+msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:106
+msgid "List curation"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:128
+msgid "Next in our tour we will explore Groups!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:129
+msgid "Next: Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/lists.html:143
+msgid "Take me there"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:16
+msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:17
+#: bookwyrm/templates/guided_tour/search.html:44
+msgid "Searching"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:43
+msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:71
+msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:72
+msgid "Load more records"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:98
+msgid "If your book is not in the results, try adjusting your search terms."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:99
+msgid "Search again"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:121
+msgid "If you still can\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:122
+msgid "Add a record manally"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/search.html:148
+msgid "Continue the tour"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:10
+msgid "This is the page where your books are listed, organised into shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:11
+#: bookwyrm/templates/user/books_header.html:4
+msgid "Your books"
+msgstr "你的書目"
+
+#: bookwyrm/templates/guided_tour/user_books.html:31
+msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:32
+msgid "Reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:55
+msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:56
+msgid "Adding custom shelves."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:78
+msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:79
+msgid "Import from another service"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_books.html:101
+msgid "Now that we\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:10
+msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:11
+#: bookwyrm/templates/guided_tour/user_profile.html:55
+#: bookwyrm/templates/user/layout.html:79
+msgid "Groups"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:55
+msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:56
+msgid "Creating a group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:78
+msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:79
+msgid "Group visibility"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:102
+msgid "Once you\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_groups.html:103
+msgid "Save your group"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:10
+msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:11
+#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
+msgid "User Profile"
+msgstr "使用者使用者資料"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:31
+msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:32
+#: bookwyrm/templates/user/layout.html:73
+msgid "Reading Goal"
+msgstr "閱讀目標"
+
+#: bookwyrm/templates/guided_tour/user_profile.html:54
+msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:77
+msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common."
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:100
+msgid "The Books tab shows your book shelves. We\\"
+msgstr ""
+
+#: bookwyrm/templates/guided_tour/user_profile.html:123
+msgid "Now you understand the basics of your profile page, let\\s add a book to your shelves.