{{ _('What is my current browser?') }}

{# Note: The name of the browser follows in the next line. Example: Your current browser ist ... Internet Explorer 7 on Windows 7. #} {{ _x('Your current browser is') }}

{{ browser.t }}

(Version {{ browser.fullv }})

on {{ system.title }}.

{% if browser.age %} {# Note: [The browser was] ... release 5 months ago #}

{{ _('released {months} months ago').format(months=browser.age_years*12|round) }}

{% endif %} {% if browser.is_supported %}

{{ _x("Your browser is still supported by the vendor.") }}

{% else %} {# Note: It (the browser) is not ... #}

{{ _x("It is not supported by the vendor anymore.") }}

{% endif %} {% if not browser.is_latest %} {# Note: "[The Browser (e.g. Chrome 22.0)] is not the latest version. #}

{{ _x("It is not the latest version.") }}

{{ _x("You can upgrade to a newer version of {browser_name}.").format(browser_name=browser.name) }}

{% endif %} {#

updated {} months ago

#} {% if browser.is_insecure %}

{{ _x("Your browser has severe security issues.") }} {{ _x("You could get a virus by just viewing a malicious website.") }}

{% else %}

{{ _x("Your browser is safe.") }}

{% endif %}

{{ _x('Your browser identifies itself with ("User agent string"):') }}
{{ emulate or request.user_agent }}

{# TODO #}