{% extends 'base.html' %} {% block scripts %} {% endblock %} {% block header %}

{% block title %} {# MSG: Title of the information page. #} {% trans %}Information{% endtrans %} {% endblock %}

{% endblock %} {% block content %}

{# MSG: Label which appears before a url which links to the current page. #} {%- trans -%} URL of {{site_title}}: {%- endtrans -%}

{{ url }}

{# MSG: Label before a QR code which brings a frind (pal) to the main page if scanned, so they can also add songs. QR code follows this text. #}

{% trans %}Handy URL QR code to share with a pal:{% endtrans %}


{# MSG: Header of the information section about the computer running Pikaraoke. #}

{% trans %}System Info{% endtrans %}

{% trans %}System stats{% endtrans %}


{% if admin %} {# MSG: Title of the updates section. #}

{% trans %}Updates{% endtrans %}

{# MSG: Label before a link which forces Pikaraoke to rescan and pick up any new songs. #}

{% trans %}Refresh the song list:{% endtrans %}

{# MSG: Help text explaining the Rescan song directory link. #}

{% trans -%} You should only need to do this if you manually copied files to the download directory while pikaraoke was running. {%- endtrans %}

{# MSG: Text explaining why you might want to update youtube-dl. #}

{% trans %}If downloads or searches stopped working, updating youtube-dl will probably fix it. The current installed version is: "{{ youtubedl_version }}"{% endtrans %}

{# MSG: Help text which explains why updating youtube-dl can fail. The log is a file on the machine running Pikaraoke. #} {% trans -%} This update link above may fail if you don't have proper file permissions. Check the pikaraoke log for errors. {%- endtrans %}

{# MSG: Title of the section on shutting down / turning off the machine running Pikaraoke. #}

{% trans %}Shutdown{% endtrans %}

{# MSG: Explainitory text which explains why to use the shutdown link. #} {% trans -%} Don't just pull the plug! Always shut down your server properly to avoid data corruption. {%- endtrans %}

{% if is_pi %} {# MSG: Title for section containing a few other options on the Info page. #}

{% trans %}Other{% endtrans %}

{# MSG: Text for button#} {% trans %}Expand Raspberry Pi filesystem{% endtrans %} {# MSG: Explainitory text which explains why you might want to expand the filesystem. #}

{% trans -%} If you just installed the pre-built pikaraoke pi image and your SD card is larger than 4GB, you may want to expand the filesystem to utilize the remaining space. You only need to do this once. This will reboot the system. {%- endtrans %}

{% endif %}
{% if admin_enabled %} {# MSG: Link which will log out the user from admin mode. #}

{% trans logout_url=url_for('logout') -%} Disable admin mode: Log out {%- endtrans %}

{% endif %} {% else %} {# from if admin #} {# MSG: Link which will let the user log into admin mode. #}

{% trans login_url=url_for('login') %} Enable admin mode: Log in {% endtrans %}

{% endif %} {% endblock %}