Clarify import/export of book vs user

I think this wording is a little clearer
This commit is contained in:
Mouse Reeve 2023-12-09 08:18:31 -08:00
parent dd72013225
commit 029b438355
5 changed files with 19 additions and 20 deletions

View file

@ -1,13 +1,12 @@
{% extends 'layout.html' %} {% extends 'preferences/layout.html' %}
{% load i18n %} {% load i18n %}
{% load humanize %} {% load humanize %}
{% block title %}{% trans "Import Books" %}{% endblock %} {% block title %}{% trans "Import Book List" %}{% endblock %}
{% block header %}{% trans "Import Book List" %}{% endblock %}
{% block content %} {% block panel %}
<div class="block"> <div class="block">
<h1 class="title">{% trans "Import Books" %}</h1>
{% if invalid %} {% if invalid %}
<div class="notification is-danger"> <div class="notification is-danger">
{% trans "Not a valid CSV file" %} {% trans "Not a valid CSV file" %}

View file

@ -1,12 +1,12 @@
{% extends 'layout.html' %} {% extends 'preferences/layout.html' %}
{% load i18n %} {% load i18n %}
{% load humanize %} {% load humanize %}
{% block title %}{% trans "Import User" %}{% endblock %} {% block title %}{% trans "Import BookWyrm Account" %}{% endblock %}
{% block header %}{% trans "Import BookWyrm Account" %}{% endblock %}
{% block content %} {% block panel %}
<div class="block"> <div class="block">
<h1 class="title">{% trans "Import User" %}</h1>
{% if invalid %} {% if invalid %}
<div class="notification is-danger"> <div class="notification is-danger">

View file

@ -2,10 +2,10 @@
{% load i18n %} {% load i18n %}
{% load utilities %} {% load utilities %}
{% block title %}{% trans "User Export" %}{% endblock %} {% block title %}{% trans "Export BookWyrm Account" %}{% endblock %}
{% block header %} {% block header %}
{% trans "Export User" %} {% trans "Export BookWyrm Account" %}
{% endblock %} {% endblock %}
{% block panel %} {% block panel %}

View file

@ -1,10 +1,10 @@
{% extends 'preferences/layout.html' %} {% extends 'preferences/layout.html' %}
{% load i18n %} {% load i18n %}
{% block title %}{% trans "Books Export" %}{% endblock %} {% block title %}{% trans "Export Book List" %}{% endblock %}
{% block header %} {% block header %}
{% trans "Books Export" %} {% trans "Export Book List" %}
{% endblock %} {% endblock %}
{% block panel %} {% block panel %}

View file

@ -40,19 +40,19 @@
<ul class="menu-list"> <ul class="menu-list">
<li> <li>
{% url 'import' as url %} {% url 'import' as url %}
<a href="{{ url }}"{% if url in request.path %} class="is-active" aria-selected="true"{% endif %}>{% trans "Import Books" %}</a> <a href="{{ url }}"{% if url in request.path %} class="is-active" aria-selected="true"{% endif %}>{% trans "Import Book List" %}</a>
</li>
<li>
{% url 'user-import' as url %}
<a href="{{ url }}"{% if url in request.path %} class="is-active" aria-selected="true"{% endif %}>{% trans "Import User" %}</a>
</li> </li>
<li> <li>
{% url 'prefs-export' as url %} {% url 'prefs-export' as url %}
<a href="{{ url }}"{% if url in request.path %} class="is-active" aria-selected="true"{% endif %}>{% trans "Export Books" %}</a> <a href="{{ url }}"{% if url in request.path %} class="is-active" aria-selected="true"{% endif %}>{% trans "Export Book List" %}</a>
</li>
<li>
{% url 'user-import' as url %}
<a href="{{ url }}"{% if url in request.path %} class="is-active" aria-selected="true"{% endif %}>{% trans "Import BookWyrm Account" %}</a>
</li> </li>
<li> <li>
{% url 'prefs-user-export' as url %} {% url 'prefs-user-export' as url %}
<a href="{{ url }}"{% if url in request.path %} class="is-active" aria-selected="true"{% endif %}>{% trans "Export User" %}</a> <a href="{{ url }}"{% if url in request.path %} class="is-active" aria-selected="true"{% endif %}>{% trans "Export BookWyrm Account" %}</a>
</li> </li>
</ul> </ul>
<h2 class="menu-label">{% trans "Relationships" %}</h2> <h2 class="menu-label">{% trans "Relationships" %}</h2>