{{ _('Name') }} |
{{ profile.name }} |
{% if profile.location %}
{{ _('Location') }} |
{{ profile.location }} |
{% endif %}
{% if profile.occupation %}
{{ _('Occupation') }} |
{{ profile.occupation }} |
{% endif %}
{% if profile.homepage %}
{{ _('Homepage') }} |
{{ profile.homepage }} |
{% endif %}
{% if not profile.emailhidden %}
{{ _('Email address') }} |
{{ emaillink(profile.email) }} |
{% endif %}
{{ _('User since') }} |
{{ profile.created|datetime }} |
{% if webapp %}
{{ _('Number of apps developed') }}
{% else %}
{{ _('Number of add-ons developed') }}
{% endif %}
|
{% if webapp %}
{% with num=profile.apps_listed|length %}
{% if num == 0 %}
{{ loc('0 apps') }}
{% else %}
{# TODO(apps): Will use ngettext when these strings are ready to be localized. #}
{% if num == 1 %}
{{ loc('{0} app')|f(num) -}}
{% else %}
{{ loc('{0} apps')|f(num) -}}
{% endif -%}
{% endif %}
{% endwith %}
{% else %}
{% with num=profile.addons_listed|length %}
{% if num == 0 %}
{{ _('{0} add-ons')|f(num) }}
{% else %}
{% trans num=num %}
{{ num }} add-on
{% pluralize %}
{{ num }} add-ons
{% endtrans -%}
{% endif %}
{% endwith %}
{% endif %}
|
{{ _("Average rating of developer's add-ons") }}
|
{{ profile.averagerating|float|stars }} |