diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 1b14149f..08661e9c 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -24,5 +24,5 @@ jobs: pip install pylint - name: Analysing the code with pylint run: | - pylint bookwyrm/ --ignore=migrations,tests --disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801 + pylint bookwyrm/ --ignore=migrations --disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801 diff --git a/README.md b/README.md index bd7344df..1d3eb543 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,10 @@ Social reading and reviewing, decentralized with ActivityPub - [What it is and isn't](#what-it-is-and-isnt) - [The role of federation](#the-role-of-federation) - [Features](#features) -- [Book data](#book-data) -- [Set up Bookwyrm](#set-up-bookwyrm) +- [Set up BookWyrm](#set-up-bookwyrm) ## Joining BookWyrm -BookWyrm is still a young piece of software, and isn't at the level of stability and feature-richness that you'd find in a production-ready application. But it does what it says on the box! If you'd like to join an instance, you can check out the [instances](https://joinbookwyrm.com/instances/) list. - -You can request an invite by entering your email address at https://bookwyrm.social. +If you'd like to join an instance, you can check out the [instances](https://joinbookwyrm.com/instances/) list. ## Contributing @@ -23,7 +20,7 @@ See [contributing](https://docs.joinbookwyrm.com/how-to-contribute.html) for cod ## About BookWyrm ### What it is and isn't -BookWyrm is a platform for social reading! You can use it to track what you're reading, review books, and follow your friends. It isn't primarily meant for cataloguing or as a data-source for books, but it does do both of those things to some degree. +BookWyrm is a platform for social reading. You can use it to track what you're reading, review books, and follow your friends. It isn't primarily meant for cataloguing or as a data-source for books, but it does do both of those things to some degree. ### The role of federation BookWyrm is built on [ActivityPub](http://activitypub.rocks/). With ActivityPub, it inter-operates with different instances of BookWyrm, and other ActivityPub compliant services, like Mastodon. This means you can run an instance for your book club, and still follow your friend who posts on a server devoted to 20th century Russian speculative fiction. It also means that your friend on mastodon can read and comment on a book review that you post on your BookWyrm instance. @@ -78,8 +75,5 @@ Deployment - [Nginx](https://nginx.org/en/) HTTP server -## Book data -The application is set up to share book and author data between instances, and get book data from arbitrary outside sources. Right now, the only connector is to OpenLibrary, but other connectors could be written. - -## Set up Bookwyrm -The [documentation website](https://docs.joinbookwyrm.com/) has instruction on how to set up Bookwyrm in a [developer environment](https://docs.joinbookwyrm.com/developer-environment.html) or [production](https://docs.joinbookwyrm.com/installing-in-production.html). +## Set up BookWyrm +The [documentation website](https://docs.joinbookwyrm.com/) has instruction on how to set up BookWyrm in a [developer environment](https://docs.joinbookwyrm.com/developer-environment.html) or [production](https://docs.joinbookwyrm.com/installing-in-production.html). diff --git a/bookwyrm/models/fields.py b/bookwyrm/models/fields.py index 5a03df01..62c61cc4 100644 --- a/bookwyrm/models/fields.py +++ b/bookwyrm/models/fields.py @@ -125,7 +125,7 @@ class ActivitypubFieldMixin: """model_field_name to activitypubFieldName""" if self.activitypub_field: return self.activitypub_field - name = self.name.split(".")[-1] + name = self.name.rsplit(".", maxsplit=1)[-1] components = name.split("_") return components[0] + "".join(x.title() for x in components[1:]) diff --git a/bookwyrm/static/css/bookwyrm/utilities/_colors.scss b/bookwyrm/static/css/bookwyrm/utilities/_colors.scss index e44efee9..f38d2a40 100644 --- a/bookwyrm/static/css/bookwyrm/utilities/_colors.scss +++ b/bookwyrm/static/css/bookwyrm/utilities/_colors.scss @@ -23,3 +23,8 @@ .has-background-tertiary { background-color: $background-tertiary !important; } + +/* Workaround for dark theme as .has-text-black doesn't give desired effect. */ +.has-text-default { + color: $text !important; +} diff --git a/bookwyrm/static/css/themes/bookwyrm-dark.scss b/bookwyrm/static/css/themes/bookwyrm-dark.scss index 96997c4a..88ee865b 100644 --- a/bookwyrm/static/css/themes/bookwyrm-dark.scss +++ b/bookwyrm/static/css/themes/bookwyrm-dark.scss @@ -53,6 +53,7 @@ $link-hover: $white-bis; $link-hover-border: #51595d; $link-focus: $white-bis; $link-active: $white-bis; +$link-light: #0d1c26; /* bulma overrides */ $background: $background-secondary; @@ -83,6 +84,13 @@ $progress-value-background-color: $border-light; $family-primary: $family-sans-serif; $family-secondary: $family-sans-serif; +.has-text-muted { + color: $grey-lighter !important; +} + +.has-text-more-muted { + color: $grey-light !important; +} @import "../bookwyrm.scss"; @import "../vendor/icons.css"; diff --git a/bookwyrm/static/css/themes/bookwyrm-light.scss b/bookwyrm/static/css/themes/bookwyrm-light.scss index 69c1a806..75f05164 100644 --- a/bookwyrm/static/css/themes/bookwyrm-light.scss +++ b/bookwyrm/static/css/themes/bookwyrm-light.scss @@ -57,5 +57,13 @@ $invisible-overlay-background-color: rgba($scheme-invert, 0.66); $family-primary: $family-sans-serif; $family-secondary: $family-sans-serif; +.has-text-muted { + color: $grey-dark !important; +} + +.has-text-more-muted { + color: $grey !important; +} + @import "../bookwyrm.scss"; @import "../vendor/icons.css"; diff --git a/bookwyrm/templates/book/editions/editions.html b/bookwyrm/templates/book/editions/editions.html index e15e7a74..16f65e45 100644 --- a/bookwyrm/templates/book/editions/editions.html +++ b/bookwyrm/templates/book/editions/editions.html @@ -21,7 +21,7 @@
- {% trans "Join Bookwyrm" %} + {% trans "Join BookWyrm" %}
diff --git a/bookwyrm/templates/groups/members.html b/bookwyrm/templates/groups/members.html index 2c256c61..e9c9047c 100644 --- a/bookwyrm/templates/groups/members.html +++ b/bookwyrm/templates/groups/members.html @@ -38,7 +38,7 @@ {% for membership in group.memberships.all %} {% with member=membership.user %}bookwyrm/static/css/themes
directory on your server from the command line."
-msgstr ""
+msgstr "Copia el nombre de archivo al directorio bookwyrm/static/css/themes
en tu servidor desde la línea de comandos."
#: bookwyrm/templates/settings/themes.html:32
msgid "Run ./bw-dev collectstatic
."
-msgstr ""
+msgstr "Introduce ./bw-dev collectstatic
."
#: bookwyrm/templates/settings/themes.html:35
msgid "Add the file name using the form below to make it available in the application interface."
-msgstr ""
+msgstr "Añade el nombre de archivo del formulario que aparece acontinuación para que esté disponible en la aplicación."
#: bookwyrm/templates/settings/themes.html:42
#: bookwyrm/templates/settings/themes.html:83
msgid "Add theme"
-msgstr ""
+msgstr "Añadir tema"
#: bookwyrm/templates/settings/themes.html:48
msgid "Unable to save theme"
-msgstr ""
+msgstr "No se ha podido guardar el tema."
#: bookwyrm/templates/settings/themes.html:64
#: bookwyrm/templates/settings/themes.html:94
msgid "Theme name"
-msgstr ""
+msgstr "Nombrar tema"
#: bookwyrm/templates/settings/themes.html:74
msgid "Theme filename"
-msgstr ""
+msgstr "Nombre de archivo del tema"
#: bookwyrm/templates/settings/themes.html:89
msgid "Available Themes"
-msgstr ""
+msgstr "Temas disponibles"
#: bookwyrm/templates/settings/themes.html:97
msgid "File"
-msgstr ""
+msgstr "Archivo"
#: bookwyrm/templates/settings/themes.html:112
msgid "Remove theme"
-msgstr ""
+msgstr "Quitar tema"
#: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:32
@@ -4156,7 +4159,7 @@ msgstr "Ver perfil de usuario"
#: bookwyrm/templates/settings/users/user_info.html:19
msgid "Go to user admin"
-msgstr ""
+msgstr "Ve a Administración de usuaries"
#: bookwyrm/templates/settings/users/user_info.html:40
msgid "Local"
@@ -4232,71 +4235,75 @@ msgstr "Nivel de acceso:"
#: bookwyrm/templates/setup/admin.html:5
msgid "Set up BookWyrm"
-msgstr ""
+msgstr "Configura BookWyrm"
#: bookwyrm/templates/setup/admin.html:7
msgid "Your account as a user and an admin"
-msgstr ""
+msgstr "Esta cuenta es de usuarie y admin."
#: bookwyrm/templates/setup/admin.html:13
msgid "Create your account"
-msgstr ""
+msgstr "Crear cuenta"
#: bookwyrm/templates/setup/admin.html:20
msgid "Admin key:"
-msgstr ""
+msgstr "Contraseña de administrador:"
#: bookwyrm/templates/setup/admin.html:32
msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code
from the command line on your server."
-msgstr ""
+msgstr "Al instalar BookWyrm, creaste una contraseña de administrador. Para obtenerla, usa el código ./bw-dev admin_code
en la línea de comandos de tu servidor."
#: bookwyrm/templates/setup/admin.html:45
msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam."
-msgstr ""
+msgstr "Como admin, podrás configurar el nombre y descripción de la instancia, además de moderarla. Eso quiere decir que tienes acceso a información privada de tus usuarios y eres responsable de responder a denuncias y actuar ante comportamientos inadecuados o spam."
#: bookwyrm/templates/setup/admin.html:51
msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel."
-msgstr ""
+msgstr "Cuando la instancia esté lista, podrás otorgar permisos de moderación o administración a otres usuaries desde el panel de administración."
#: bookwyrm/templates/setup/admin.html:55
msgid "Learn more about moderation"
-msgstr ""
+msgstr "Más información sobre moderación"
#: bookwyrm/templates/setup/config.html:5
msgid "Instance Configuration"
-msgstr ""
+msgstr "Configurar instancia"
#: bookwyrm/templates/setup/config.html:7
msgid "Make sure everything looks right before proceeding"
-msgstr ""
+msgstr "Asegúrate de que todo está tal y como quieres antes de seguir."
#: bookwyrm/templates/setup/config.html:18
msgid "You are running BookWyrm in debug mode. This should never be used in a production environment."
-msgstr ""
+msgstr "Estás ejecutando BookWyrm en modo debug. Este modo no debería usarse en un entrono de producción."
#: bookwyrm/templates/setup/config.html:30
msgid "Your domain appears to be misconfigured. It should not include protocol or slashes."
-msgstr ""
+msgstr "Parece que tu dominio no está bien configurado. No includas protocolos o barras diagonales."
#: bookwyrm/templates/setup/config.html:42
msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production."
-msgstr ""
+msgstr "Estás ejecutando BookWyrm en modo producción sin https. Activa USE_HTTPS."
+
+#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
+msgid "Settings"
+msgstr "Configuración"
#: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:"
-msgstr ""
+msgstr "Domino de la instancia:"
#: bookwyrm/templates/setup/config.html:63
msgid "Protocol:"
-msgstr ""
+msgstr "Protocolo:"
#: bookwyrm/templates/setup/config.html:81
msgid "Using S3:"
-msgstr ""
+msgstr "Usar S3:"
#: bookwyrm/templates/setup/config.html:95
msgid "Default interface language:"
-msgstr ""
+msgstr "Idioma por defecto:"
#: bookwyrm/templates/setup/config.html:102
msgid "Email sender:"
@@ -4304,31 +4311,31 @@ msgstr ""
#: bookwyrm/templates/setup/config.html:109
msgid "Enable preview images:"
-msgstr ""
+msgstr "Permitir previsualizar imágenes:"
#: bookwyrm/templates/setup/config.html:116
msgid "Enable image thumbnails:"
-msgstr ""
+msgstr "Permitir miniaturas de imágenes:"
#: bookwyrm/templates/setup/config.html:128
msgid "Does everything look right?"
-msgstr ""
+msgstr "¿Lo tienes todo a punto?"
#: bookwyrm/templates/setup/config.html:130
msgid "This is your last chance to set your domain and protocol."
-msgstr ""
+msgstr "Esta es tu última oportunidad para establecer tu dominio y protocolo."
#: bookwyrm/templates/setup/config.html:144
msgid "You can change your instance settings in the .env
file on your server."
-msgstr ""
+msgstr "Puedes cambiar la configuración de tu instancia en el archivo .env
de tu servidor."
#: bookwyrm/templates/setup/config.html:148
msgid "View installation instructions"
-msgstr ""
+msgstr "Ver instrucciones de instalación"
#: bookwyrm/templates/setup/layout.html:5
msgid "Instance Setup"
-msgstr ""
+msgstr "Configurar instancia"
#: bookwyrm/templates/setup/layout.html:15
msgid "Installing BookWyrm"
@@ -4336,7 +4343,7 @@ msgstr ""
#: bookwyrm/templates/setup/layout.html:18
msgid "Need help?"
-msgstr ""
+msgstr "¿Necesitas ayuda?"
#: bookwyrm/templates/shelf/create_shelf_form.html:5
#: bookwyrm/templates/shelf/shelf.html:72
@@ -4485,7 +4492,7 @@ msgstr "Incluir alerta de spoiler"
#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18
msgid "Spoilers/content warnings:"
-msgstr ""
+msgstr "Spoilers/Avisos de contenido:"
#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27
msgid "Spoilers ahead!"
@@ -4659,7 +4666,7 @@ msgstr "Establecer meta"
#: bookwyrm/templates/snippets/goal_progress.html:7
msgctxt "Goal successfully completed"
msgid "Success!"
-msgstr ""
+msgstr "¡Hecho!"
#: bookwyrm/templates/snippets/goal_progress.html:9
#, python-format
@@ -4737,7 +4744,7 @@ msgstr "Quiero leer \"%(book_title)s\""
#: bookwyrm/templates/snippets/register_form.html:18
msgid "Choose wisely! Your username cannot be changed."
-msgstr ""
+msgstr "¡Elige bien! No podrás cambiar tu nombre du usuarie más adelante."
#: bookwyrm/templates/snippets/register_form.html:64
msgid "Sign Up"
@@ -4923,7 +4930,7 @@ msgstr "Me gusta estado"
#: bookwyrm/templates/snippets/status/status.html:10
msgid "boosted"
-msgstr "difundió"
+msgstr "lo difundió"
#: bookwyrm/templates/snippets/status/status_options.html:7
#: bookwyrm/templates/snippets/user_options.html:7
@@ -5090,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s seguidores que sigues"
msgid "No followers you follow"
msgstr "No le sigue nadie que tu sigas"
+#: bookwyrm/templates/user_menu.html:7
+msgid "View profile and more"
+msgstr "Ver perfil y más"
+
+#: bookwyrm/templates/user_menu.html:72
+msgid "Log out"
+msgstr "Cerrar sesión"
+
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB"
msgstr "Archivo excede el tamaño máximo: 10MB"
diff --git a/locale/fi_FI/LC_MESSAGES/django.mo b/locale/fi_FI/LC_MESSAGES/django.mo
index fbde7d10..27e9faa8 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 6504dc60..f3f2ac4d 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-03-26 20:16+0000\n"
-"PO-Revision-Date: 2022-03-31 15:40\n"
+"POT-Creation-Date: 2022-04-08 21:00+0000\n"
+"PO-Revision-Date: 2022-04-11 04:29\n"
"Last-Translator: Mouse Reeve bookwyrm/static/css/themes
directory on your server from the command line."
-msgstr ""
+msgstr "Nukopijuokite fialus į serverio katalogą bookwyrm/static/css/themes
iš komandinės eilutės."
#: bookwyrm/templates/settings/themes.html:32
msgid "Run ./bw-dev collectstatic
."
-msgstr ""
+msgstr "Paleiskite ./bw-dev collectstatic
."
#: bookwyrm/templates/settings/themes.html:35
msgid "Add the file name using the form below to make it available in the application interface."
-msgstr ""
+msgstr "Pridėkite failo pavadinimą, naudodamiesi žemiau esančia forma, kad jis atsirastų programėlėje."
#: bookwyrm/templates/settings/themes.html:42
#: bookwyrm/templates/settings/themes.html:83
msgid "Add theme"
-msgstr ""
+msgstr "Pridėti temą"
#: bookwyrm/templates/settings/themes.html:48
msgid "Unable to save theme"
-msgstr ""
+msgstr "Nepavyko išsaugoti temos"
#: bookwyrm/templates/settings/themes.html:64
#: bookwyrm/templates/settings/themes.html:94
msgid "Theme name"
-msgstr ""
+msgstr "Temos pavadinimas"
#: bookwyrm/templates/settings/themes.html:74
msgid "Theme filename"
-msgstr ""
+msgstr "Temos failo vardas"
#: bookwyrm/templates/settings/themes.html:89
msgid "Available Themes"
-msgstr ""
+msgstr "Galimos temos"
#: bookwyrm/templates/settings/themes.html:97
msgid "File"
-msgstr ""
+msgstr "Failas"
#: bookwyrm/templates/settings/themes.html:112
msgid "Remove theme"
-msgstr ""
+msgstr "Pašalinti temą"
#: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:32
@@ -4188,7 +4191,7 @@ msgstr "Peržiūrėti nario paskyrą"
#: bookwyrm/templates/settings/users/user_info.html:19
msgid "Go to user admin"
-msgstr ""
+msgstr "Eiti į administratoriaus naudotoją"
#: bookwyrm/templates/settings/users/user_info.html:40
msgid "Local"
@@ -4216,7 +4219,7 @@ msgstr "Užblokavę:"
#: bookwyrm/templates/settings/users/user_info.html:74
msgid "Date added:"
-msgstr ""
+msgstr "Pridėjimo data:"
#: bookwyrm/templates/settings/users/user_info.html:77
msgid "Last active date:"
@@ -4264,111 +4267,115 @@ msgstr "Priėjimo lygis:"
#: bookwyrm/templates/setup/admin.html:5
msgid "Set up BookWyrm"
-msgstr ""
+msgstr "Nustatyti „BookWyrm“"
#: bookwyrm/templates/setup/admin.html:7
msgid "Your account as a user and an admin"
-msgstr ""
+msgstr "Jūsų, kaip naudotojo ir administratoriaus paskyra"
#: bookwyrm/templates/setup/admin.html:13
msgid "Create your account"
-msgstr ""
+msgstr "Kurti paskyrą"
#: bookwyrm/templates/setup/admin.html:20
msgid "Admin key:"
-msgstr ""
+msgstr "Administratoriaus raktas:"
#: bookwyrm/templates/setup/admin.html:32
msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code
from the command line on your server."
-msgstr ""
+msgstr "„BookWyrm“ buvo sukurtas ir įdiegtas administratoriaus raktas. Savo administratoriaus raktą galite gauti, paleisdami ./bw-dev admin_code
iš komandinės eilutės, esančios savo serveryje."
#: bookwyrm/templates/setup/admin.html:45
msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam."
-msgstr ""
+msgstr "Kaip administratorius galėsite konfigūruoti serverio vardą ir informaciją, keisti nustatymus. Tai reiškia, kad turėsite prieigą prie asmeninės naudotojų informacijos ir būsite atsakingi už pranešimų apie blogą elgesį arba brukalus administravimą."
#: bookwyrm/templates/setup/admin.html:51
msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel."
-msgstr ""
+msgstr "Kai viską nustatysite, administratoriaus valdymo panelėje galėsite ir kitus naudotojus paskirti moderatoriais arba administratoriais."
#: bookwyrm/templates/setup/admin.html:55
msgid "Learn more about moderation"
-msgstr ""
+msgstr "Sužinokite daugiau apie moderavimą"
#: bookwyrm/templates/setup/config.html:5
msgid "Instance Configuration"
-msgstr ""
+msgstr "Serverio konfigūravimas"
#: bookwyrm/templates/setup/config.html:7
msgid "Make sure everything looks right before proceeding"
-msgstr ""
+msgstr "Prieš tęsdami įsitikinkite, kad viskas atrodo gerai"
#: bookwyrm/templates/setup/config.html:18
msgid "You are running BookWyrm in debug mode. This should never be used in a production environment."
-msgstr ""
+msgstr "„BookWyrm“ paleistas debug būsenoje. To niekada neturėtumėte naudoti produkcinėje aplinkoje."
#: bookwyrm/templates/setup/config.html:30
msgid "Your domain appears to be misconfigured. It should not include protocol or slashes."
-msgstr ""
+msgstr "Atrodo, kad jūsų domenas nesukonfigūruotas. Į jį neturėtų įeiti protokolas arba pasvirieji brūkšniai."
#: bookwyrm/templates/setup/config.html:42
msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production."
-msgstr ""
+msgstr "„BookWyrm“ leidžiate produkcinėje būsenoje be https. Produkcinėje aplinkoje turi būti įjungtasUSE_HTTPS."
+
+#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
+msgid "Settings"
+msgstr "Nustatymai"
#: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:"
-msgstr ""
+msgstr "Serverio informacija:"
#: bookwyrm/templates/setup/config.html:63
msgid "Protocol:"
-msgstr ""
+msgstr "Protokolas:"
#: bookwyrm/templates/setup/config.html:81
msgid "Using S3:"
-msgstr ""
+msgstr "Naudojama S3:"
#: bookwyrm/templates/setup/config.html:95
msgid "Default interface language:"
-msgstr ""
+msgstr "Įprastinė sąsajos kalba:"
#: bookwyrm/templates/setup/config.html:102
msgid "Email sender:"
-msgstr ""
+msgstr "El. pašto siuntėjas:"
#: bookwyrm/templates/setup/config.html:109
msgid "Enable preview images:"
-msgstr ""
+msgstr "Įjungti paveikslėlių peržiūrą:"
#: bookwyrm/templates/setup/config.html:116
msgid "Enable image thumbnails:"
-msgstr ""
+msgstr "Įjungti paveikslėlių miniatūras:"
#: bookwyrm/templates/setup/config.html:128
msgid "Does everything look right?"
-msgstr ""
+msgstr "Ar viskas atrodo gerai?"
#: bookwyrm/templates/setup/config.html:130
msgid "This is your last chance to set your domain and protocol."
-msgstr ""
+msgstr "Tai paskutinė galimybė nustatyti savo domeną ir protokolą."
#: bookwyrm/templates/setup/config.html:144
msgid "You can change your instance settings in the .env
file on your server."
-msgstr ""
+msgstr "Nustatymus galite pakeisti .env
faile, esančiame jūsų serveryje."
#: bookwyrm/templates/setup/config.html:148
msgid "View installation instructions"
-msgstr ""
+msgstr "Žiūrėti diegimo instrukcijas"
#: bookwyrm/templates/setup/layout.html:5
msgid "Instance Setup"
-msgstr ""
+msgstr "Serverio nustatymai"
#: bookwyrm/templates/setup/layout.html:15
msgid "Installing BookWyrm"
-msgstr ""
+msgstr "Diegiamas „BookWyrm“"
#: bookwyrm/templates/setup/layout.html:18
msgid "Need help?"
-msgstr ""
+msgstr "Reikia pagalbos?"
#: bookwyrm/templates/shelf/create_shelf_form.html:5
#: bookwyrm/templates/shelf/shelf.html:72
@@ -4521,7 +4528,7 @@ msgstr "Įdėti įspėjimą apie turinio atskleidimą"
#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18
msgid "Spoilers/content warnings:"
-msgstr ""
+msgstr "Įspėjimas apie atskleistą turinį:"
#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27
msgid "Spoilers ahead!"
@@ -4705,7 +4712,7 @@ msgstr "Nustatyti tikslą"
#: bookwyrm/templates/snippets/goal_progress.html:7
msgctxt "Goal successfully completed"
msgid "Success!"
-msgstr ""
+msgstr "Sėkmingai!"
#: bookwyrm/templates/snippets/goal_progress.html:9
#, python-format
@@ -4783,7 +4790,7 @@ msgstr "Noriu perskaityti „%(book_title)s“"
#: bookwyrm/templates/snippets/register_form.html:18
msgid "Choose wisely! Your username cannot be changed."
-msgstr ""
+msgstr "Rinkitės išmintingai! Naudotojo vardo negalima pakeisti."
#: bookwyrm/templates/snippets/register_form.html:64
msgid "Sign Up"
@@ -5140,6 +5147,14 @@ msgstr[3] "%(mutuals_display)s sekėjai, kuriuos sekate jūs"
msgid "No followers you follow"
msgstr "Jūs kartu nieko nesekate"
+#: bookwyrm/templates/user_menu.html:7
+msgid "View profile and more"
+msgstr "Žiūrėti paskyrą ir dar daugiau"
+
+#: bookwyrm/templates/user_menu.html:72
+msgid "Log out"
+msgstr "Atsijungti"
+
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB"
msgstr "Failas viršijo maksimalų dydį: 10 MB"
diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo
index 3454c0de..8df82422 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 f2094c48..21cd784c 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-03-26 20:16+0000\n"
-"PO-Revision-Date: 2022-03-31 15:40\n"
+"POT-Creation-Date: 2022-04-08 21:00+0000\n"
+"PO-Revision-Date: 2022-04-08 21:50\n"
"Last-Translator: Mouse Reeve