mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-23 01:51:08 +00:00
Mark two strings as translatable in the getting started questionnaire
This commit is contained in:
parent
f520d1b7f8
commit
3619d8960b
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
||||||
<fieldset name="books" class="columns is-mobile">
|
<fieldset name="books" class="columns is-mobile">
|
||||||
{% if book_results %}
|
{% if book_results %}
|
||||||
<div class="column is-narrow">
|
<div class="column is-narrow">
|
||||||
<p class="help mb-0">Search results</p>
|
<p class="help mb-0">{% trans "Search results" %}</p>
|
||||||
|
|
||||||
<div class="columns is-mobile">
|
<div class="columns is-mobile">
|
||||||
{% for book in book_results %}
|
{% for book in book_results %}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h2 class="title is-4">{% trans "Who to follow" %}</h2>
|
<h2 class="title is-4">{% trans "Who to follow" %}</h2>
|
||||||
|
|
||||||
<p class="subtitle is-6">You can follow users on other BookWyrm instances and federated services like Mastodon.</p>
|
<p class="subtitle is-6">{% trans "You can follow users on other BookWyrm instances and federated services like Mastodon." %}</p>
|
||||||
<form class="field has-addons" method="get" action="{% url 'get-started-users' %}">
|
<form class="field has-addons" method="get" action="{% url 'get-started-users' %}">
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<input type="text" name="query" value="{{ request.GET.query }}" class="input" placeholder="{% trans 'Search for a user' %}" aria-label="{% trans 'Search for a user' %}">
|
<input type="text" name="query" value="{{ request.GET.query }}" class="input" placeholder="{% trans 'Search for a user' %}" aria-label="{% trans 'Search for a user' %}">
|
||||||
|
|
Loading…
Reference in a new issue