{% macro dev_heading(addon, amo) %}
{% with num=addon.weekly_downloads %} {# L10n: {0} is the number of downloads. #} {{ ngettext("{0} weekly download", "{0} weekly downloads", num)|f(num|numberfmt)|safe }} {% endwith %}
{% with num=addon.average_daily_users %} {# L10n: {0} is the number of active users. #} {{ ngettext("{0} active user", "{0} active users", num)|f(num|numberfmt)|safe }} {% endwith %}
{% endmacro %}