{% extends "impala/base_side_categories.html" %} {% set title = _('Site Credits') %} {% block title %}{{ page_title(title) }}{% endblock %} {% block content %}

{{ title }}

{% trans %} Mozilla would like to thank the following people for their contributions to the addons.mozilla.org project over the years: {% endtrans %}

{{ _('Developers & Administrators') }}

{{ users_list(developers) }}

{{ _('Localizers') }}

{% for lang, users in localizers %} {% if loop.index % 2 == 0 %}{% endif %} {% endfor %}
{{ lang }} {{ users_list(users) }}

{{ _('Reviewers') }}

{% for num in [1000, 500, 100, 10] %} {% with users=reviewers[num] %} {% if users %}

{# L10n: {0} is a number (e.g. 1000). #} {{ _('More than {0} add-on reviews')|f(num) }}

{% for user in users %} {{ user.user__display_name }}{% if not loop.last %}, {% endif %} {% endfor %}

{% endif %} {% endwith %} {% endfor %}

{{ _('Other Contributors') }}

{{ users_list(other_contribs) }}

{{ _('Past Developers & Administrators') }}

{{ users_list(past_developers) }}

{{ _('Software and Images') }}

{% trans url = 'http://wiki.mozilla.org/AMO' %} For information on contributing, please see our wiki page. {% endtrans %}

{% endblock %}