mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
- Cosmetic styling fixes. Having doc string as suggested by Python doc string guidelines. - 'connected to the Internet' seems much more popular phrase than 'connected on the Internet' judging by web search results. - Stylize as 'Internet' for consistency although 'internet' is correct too. - Add space at the end of main radio button option text as translators seems to understand it incorrectly. See current Spanish translation. - Recommend 'DMZ' for router configuration. - Remove incorrect title casing port forwarding text. - Internationalize some strings. - Update the default value for router configuration to 'not_configured'. - Update the default value for Internet connection type to None so that nothing is selected by default. We could consider introducing a fourth option 'not_configured'. - Update the ID of first boot wizard step for Internet connectivity. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
32 lines
750 B
HTML
32 lines
750 B
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
<h3>
|
|
{% blocktrans trimmed %}
|
|
{{ box_name }} Internet Connectivity
|
|
{% endblocktrans %}
|
|
</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
The following best describes how your {{ box_name }} is connected in your
|
|
network. This information is used only to suggest necessary configuration
|
|
actions.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Your {{ box_name }} gets its Internet from your Router via Wi-Fi or
|
|
Ethernet cable. This is a typical home setup.
|
|
{% endblocktrans %}
|
|
<a href="{% url 'networks:router_setup' %}" class="btn btn-default"
|
|
role="button">
|
|
{% trans 'Update...' %}
|
|
</a>
|
|
</p>
|