{# Translators: This string represents the number of countries where students are enrolled. #}
{% trans "Total Countries Represented" as label %}
{% trans "Countries with at least one student." as tooltip %}
{% summary_point num_countries label ' ' tooltip %}
{% for datum in top_countries %}
{% if forloop.first %}
{# Translators: This string represents the country with the greatest number of enrolled students. #}
{% trans "Top Country by Enrollment" as label %}
{% trans "Country with the largest number of students." as tooltip %}
{% elif forloop.counter == 2 %}
{# Translators: This string represents the country with the second-greatest number of enrolled students. #}
{% trans "Second Country by Enrollment" as label %}
{% trans "Country with the second largest number of students." as tooltip %}
{% elif forloop.counter == 3 %}
{# Translators: This string represents the country with the third-greatest number of enrolled students. #}
{% trans "Third Country by Enrollment" as label %}
{% trans "Country with the third largest number of students." as tooltip %}
{% endif %}
{% captureas subheading %}
{% captureas percent %}{% widthratio datum.percent 1 100 %}{% endcaptureas %}
{# Translators: This string represents the percentage of students in a course. Move the % symbol, if necessary, but keep the percent variable/placeholder. #}
{% blocktrans %}{{ percent }}% of students{% endblocktrans %}
{% endcaptureas %}
{% summary_point datum.countryName label subheading tooltip %}
{% endfor %}
{% else %}
{% show_metrics_error %}
{% endif %}