{% extends 'base.html' %} {% block scripts %} {% endblock %} {% block header %} {# MSG: Page title for the page where the user can batch rename songs. #}

{% block title %}{% trans %}Batch Song Renamer{% endtrans %}{% endblock %}

{% endblock %} {% block content %} {# MSG: Message about the wait for loading the songs #}

{% trans %}The loading process may take a few seconds, as the song titles are compared online. Loading time may vary based on your internet connection.{% endtrans %}

{% if show_all_songs == True %} {# MSG: Label which displays that all songs are being shown #} {% trans %}Showing all songs{% endtrans %} | {# MSG: Button which changes to show only the songs to rename #} {% trans %}Show only songs to rename{% endtrans %} {% else %} {# MSG: Label which displays that only songs to rename are being shown. #} {% trans %}Showing only songs to rename{% endtrans %} | {# MSG: Button which changes to show all songs #} {% trans %}Show all songs{% endtrans %} {% endif %}

{# MSG: Message displaying that the songs are currently being loaded #} {% trans %}Loading songs...{% endtrans %}

{% endblock %}