{% 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 %}

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

{% trans %}System Data{% endtrans %}

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

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

    {# MSG: The hardware platform #}
  • {% trans %}Platform:{% endtrans %} {{ platform }}
  • {# MSG: The os version #}
  • {% trans %}OS Version:{% endtrans %} {{ os_version }}
  • {# MSG: The version of the program "Youtube-dl". #}
  • {% trans %}Youtube-dl (yt-dlp) version:{% endtrans %} {{ youtubedl_version }}
  • {# MSG: The version of the program "ffmpeg". #}
  • {% trans %}FFmpeg version:{% endtrans %} {{ ffmpeg_version }} {% if not is_transpose_enabled %} (missing lib-rubberband, pitch shift is not supported) {% endif %}
  • {# MSG: The version of Pikaraoke running right now. #}
  • {% trans %}Pikaraoke version:{% endtrans %} {{ pikaraoke_version }}
{# MSG: Header of the information section about the System stats. #}

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

    {# MSG: The CPU usage of the computer running Pikaraoke. #}
  • {% trans %}CPU:{% endtrans %} {% trans %}Loading...{% endtrans %}
  • {# MSG: The disk usage of the computer running Pikaraoke. Used by downloaded songs. #}
  • {% trans %}Disk Usage:{% endtrans %} {% trans %}Loading...{% endtrans %}
  • {# MSG: The memory (RAM) usage of the computer running Pikaraoke. #}
  • {% trans %}Memory:{% endtrans %} {% trans %}Loading...{% endtrans %}
{# MSG: Title of the user preferences section. #}

{% trans %}User Preferences{% endtrans %}


{# MSG: Help text explaining how to add phrases #}

{% trans %}Add one phrase per line in each box and hit save.{% endtrans %}

{# MSG: Title for LOW Score Phrases #}
{% trans %}LOW Score Phrases (score < 30){% endtrans %}
{# MSG: Placeholder for the low score phrases textarea #}
{# MSG: Title for MID Score Phrases #}
{% trans %}MID Score Phrases (30 > score < 60){% endtrans %}
{# MSG: Placeholder for the MID score phrases textarea #}
{# MSG: Title for HIGH Score Phrases #}
{% trans %}HIGH Score Phrases (60 < score){% endtrans %}
{# MSG: Placeholder for the HIGH score phrases textarea #} Save phrases


{# MSG: Text for the link where the user can clear all user preferences #} {% trans %}Clear preferences{% endtrans %}
{# MSG: Title of the updates section. #}

{% trans %}Updates{% 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 %}

{% trans %}Rescan song directory{% 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 %}

{% trans %}Update youtube-dl{% 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 %}

{# MSG: Text for button which turns off Pikaraoke for everyone using it at your house. #} {% trans %}Quit Pikaraoke{% endtrans %} {% if is_pi or is_linux %} {# MSG: Text for button which reboots the machine running Pikaraoke. #} {% trans %}Reboot System{% endtrans %} {# MSG: Text for button which turn soff the machine running Pikaraoke. #} {% trans %}Shutdown System{% endtrans %} {% endif %}
{% if is_pi %} {# MSG: Title of the updates section. #}

{% trans %}Other{% 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 %}

{# MSG: Text for button#} {% trans %}Expand Raspberry Pi filesystem{% endtrans %}
{% endif %} {% if admin_password != none %} {# MSG: Title of the admin section. #}

{% trans %}Admin{% endtrans %}

{# MSG: Message for the log out user from admin mode button. #}

{% trans %}Click here to logout from admin mode.{% endtrans %}

{# MSG: Link which will log out the user from admin mode. #} {% trans %}Log out{% endtrans %}
{% endif %} {% else %} {# from if admin #} {# MSG: Title of the admin section. #}

{% trans %}Admin{% endtrans %}

{# MSG: Message for the log in user to admin mode button. #}

{% trans %}Click here to login as admin.{% endtrans %}

{# MSG: Link which will let the user log into admin mode. #} {% trans %}Log in{% endtrans %}
{% endif %} {% endblock %}