Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p>Dear {{ user }},</p>
<p>Thank you for applying for access to {{ partner }} resources through The Wikipedia Library. We are happy to inform you that your application has been approved.</p>
<p>{{ user_instructions }}</p>
<p>You can view the collections you're authorized to access at My Library: {{ link }}</p>
<p>You can view the collections you're authorized to access at the My Library page: {{ link }}</p>
<p>Cheers!</p>
<p>The Wikipedia Library</p>
{% endblocktranslate %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

{{ user_instructions }}

You can view the collections you're authorized to access at My Library: {{ link }}
You can view the collections you're authorized to access at the My Library page: {{ link }}

Cheers!

Expand Down
4 changes: 2 additions & 2 deletions TWLight/resources/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Translators: On the MyLibrary page (https://wikipedialibrary.wmflabs.org/users/my_library), this indicates that a collection may be accessed immediately.
(INSTANT, _("Instant (proxy) access")),
# Translators: On the MyLibrary page (https://wikipedialibrary.wmflabs.org/users/my_library), this indicates that a collection may be accessed only after additional steps, such as submitting an application and awaiting approval.
(MULTI_STEP, _("Multi-step access")),
(MULTI_STEP, _("Access upon application")),
)


Expand Down Expand Up @@ -75,7 +75,7 @@ class PartnerFilter(MainPartnerFilter):

searchable = django_filters.MultipleChoiceFilter(
# Translators: On the MyLibrary page (https://wikipedialibrary.wmflabs.org/users/my_library), this text is shown to indicate if a collection is searchable.
label=_("Searchable"),
label=_("Indexed in the Library's search engine"),
choices=Partner.SEARCHABLE_CHOICES,
widget=forms.CheckboxSelectMultiple,
)
Expand Down
2 changes: 1 addition & 1 deletion TWLight/resources/templates/resources/filter_section.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
<div class="dropdown-divider"></div>
{% comment %}Translators: On the Browse Partners page (https://wikipedialibrary.wmflabs.org/partners/), this is a placeholder for an input that helps users filter collections. {% endcomment %}
<input id="collection-live-search" class="form-control form-control-sm mr-sm-2"
type="search" placeholder="{% trans 'Filter collections' %}" aria-label="Filter">
type="search" placeholder="{% trans 'Search the collection descriptions' %}" aria-label="Filter">
</div>
</nav>
2 changes: 1 addition & 1 deletion TWLight/users/templates/users/filter_section.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@
<div class="dropdown-divider"></div>
{% comment %}Translators: On the MyLibrary page (https://wikipedialibrary.wmflabs.org/users/my_library), this is a placeholder for an input that helps users filter collections. {% endcomment %}
<input id="collection-live-search" class="form-control form-control-sm mr-sm-2"
type="search" placeholder="{% trans 'Filter collections' %}" aria-label="Filter">
type="search" placeholder="{% trans 'Search the collection descriptions' %}" aria-label="Filter">
</div>
</nav>
2 changes: 1 addition & 1 deletion TWLight/users/templates/users/my_applications.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h4>
<a class="btn twl-secondary-btn btn-sm" href="{% url 'applications:renew' app.pk %}">{% trans "Request renewal" %}</a>
{% else %}
{% comment %}Translators: On the page listing applications, this text explains a user they cannot renew their application since they've already requested a renewal or there aren't any renewals available.{% endcomment %}
<em>{% trans "Renewals are either not required, not available right now, or you have already requested a renewal." %}</em>
<em>{% trans "It is not possible to request a renewal because it is not necessary, you have already requested one, or it is not currently available." %}</em>
{% endif %}
</div>
{% endif %}
Expand Down
Loading