{% extends "base.html" %} {% block content %} {% if testing %}
{{ _s('This is the page that is shown to visitors with an out-of-date browser after they clicked the notification to update their browser.') }} {{ _s('This is not the information for your currently used browser.') }}
{{ _s('Check if my browser is up-to-date!') }}
{% endif %}
{% if status.uptodate %}
{{ _('Your browser is up-to-date.') }}
{% endif %} {% if status.normal_update_possible and not status.unknown and not status.ancient_os and not status.discontinued and not status.uptodate %}

{{ _('Your browser is out-of-date.') }}

{{ _('Please download one of these up-to-date, free and excellent browsers:') }}

{% endif %} {% if status.discontinued %}

{{ _('Your web browser ({brow_name}) is out of date.').format(brow_name=(''+browser.name+'')|safe) }}

{# Note: Example: [The browser] is not updated for Windows 7 anymore. #} {{ _('It is not updated anymore for {system_name}.').format(system_name=system.title)|safe }}

{{ _('Please download one of these up-to-date, free and excellent browsers:') }} {# _('Please download one of these alternative up-to-date, free and excellent browsers, which are even better:') #}

{% endif %} {% if not status.uptodate and status.device_not_updated_anymore %}

{{ _('Your browser is out-of-date.') }}

{% if status.tied_to_system %}

{{ _('On {system_name} the built-in browser can only be updated together with the operating system.').format(system_name=status.device_name or system.title) }}

{% endif %}

{{ _('Unfortunately, {vendor_name} has stopped supplying your device with updates.'.format(vendor_name=system.vendor)) }}

{% elif not status.uptodate and (status.ancient_os or status.tied_to_system) %}

{{ _('Your browser is out-of-date.') }}

{% if status.tied_to_system %}

{{ _('On {system_name} the built-in browser can only be updated together with the operating system.').format(system_name=status.device_name or system.title) }}

{% else %}

{{ _('On top of that your operating system ({system_name}) is so old and insecure that there is no up-to-date browser available anymore.').format(system_name=system.title) }}

{% endif %}

{{ _('Please try to update {system_name} to get the latest version of your browser.').format(link=(' href="%s" onmousedown="countBrowser(\'os\')"'%status.os_update_url)|safe ,system_name=system.name) }}

{% endif %} {% if status.unknown %}
{{ _('We cannot identify your browser.') }}
{{ _('You can try to install one of these up-to-date, free and excellent browsers:') }}
{% endif %} {% if not status.uptodate and not status.system_not_updated_anymore and not status.tied_to_system and not status.ancient_os %} {% if browsers|length >0 %} {% for b in browsers %} {% endfor %}
{% if not b.na %} {% else %} {% endif %} {{ b.display_name }} {{ b.vendor }}{% if b.sponsored %}
{{ _("Sponsored") }}! {% endif %}
{% if b.na %} {{ _('Most recent version not available for your system.') }} {{ _('Please choose another browser.') }} {% endif %} {{ b.add }}
{{ b.add2 }}
{% endif %}
{{ _('For more security, speed and comfort.').format(security_link=' href="#security"'|safe,speed_link=' href="#speed"'|safe,comfort_link=' href="#comfort"'|safe) }}
{{ _('The download is safe from the vendor\'s official website.') }}
{% endif %}
{% include 'ads.html' %}

{{ _('Why do I need an up-to-date browser?') }}

{{ _('Why this website?') }}

{{ _('This is an initiative by websites and blogs to raise security awareness and bring forward the web.') }} {{ _('About the Project') }}

{% if request.lang in ['en'] or system.id in ["win", "macos"] %}

{{ _('I can\'t update my browser') }}

{% endif %} {% if _x_is_translated('Your current browser is') %} {% include 'browser-info.html' %} {% endif %} {# #} {% endblock %}