Update translations strings, add setting datetime and improve DC login flow
This commit is contained in:
parent
ed8723ee6b
commit
410f1b7913
11 changed files with 151 additions and 702 deletions
|
|
@ -18,61 +18,62 @@
|
|||
</div>
|
||||
|
||||
|
||||
<label class="label is-large">Services</label>
|
||||
<label class="label is-large">{{ _("Choose Services") }}</label>
|
||||
<div class="field checkbox">
|
||||
{{ wtf.form_bool_field(form.enable_chat) }}
|
||||
<p class="help butter-form-margin">Whether Matrix chat services are enabled.</p>
|
||||
<p class="help butter-form-margin">{{ _("Whether Matrix chat services are enabled.")}}</p>
|
||||
</div>
|
||||
<div class="field checkbox">
|
||||
{{ wtf.form_bool_field(form.enable_deltachat) }}
|
||||
<p class="help butter-form-margin">Whether messaging using DeltaChat is enabled.</p>
|
||||
<p class="help butter-form-margin">{{ _("Whether messaging using DeltaChat is enabled.")}}</p>
|
||||
</div>
|
||||
<div class="field checkbox">
|
||||
{{ wtf.form_bool_field(form.enable_file_viewer) }}
|
||||
<p class="help butter-form-margin">Whether files services via USB are enabled.</p>
|
||||
<p class="help butter-form-margin">{{ _("Whether files services via USB are enabled.")}}</p>
|
||||
</div>
|
||||
|
||||
|
||||
<hr>
|
||||
<label class="label is-large">Branding and name</label>
|
||||
<label class="label is-large">{{ _("Customise Portal") }}</label>
|
||||
|
||||
<div class="field">
|
||||
{{ wtf.form_input_field(form.butterbox_name, form.butterbox_name.errors) }}
|
||||
<p class="help">This is the name shown in the UI.
|
||||
Current name: {{ get_setting('butterbox_name') }}, accessed at {{ get_setting('butterbox_name') }}.local.</p>
|
||||
<p class="help">{{ _("This is the name shown in the UI.
|
||||
Current name:")}} {{ get_setting('butterbox_name') }}, {{ _("accessed at")}} {{ get_setting('butterbox_name') }}.local.</p>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label class="label">{{ form.butterbox_logo.label }} </label>
|
||||
<div class="control block">{{ form.butterbox_logo(class='label', style="width: 280px") }}</div>
|
||||
{{ wtf.field_errors(form.butterbox_logo.errors) }}
|
||||
<div class="block"><p class="help">This is the logo shown in the UI. Current logo:</p></div>
|
||||
<div class="block"><p class="help">{{ _("This is the logo shown in the UI. Current logo:")}}</p></div>
|
||||
<img src="{{ get_setting('butterbox_logo') }}" style="height: 50px">
|
||||
</div>
|
||||
|
||||
|
||||
<hr>
|
||||
<label class="label is-large">Wi-Fi and access point</label>
|
||||
<label class="label is-large">{{ _("Secure Portal") }}</label>
|
||||
|
||||
{% if raspap_installed %}
|
||||
<div class="field">
|
||||
{{ wtf.form_input_field(form.ssid, form.ssid.errors) }}
|
||||
<p class="help"> This is the name of the advertised Wi-Fi network. Current SSID: {{ get_setting('ssid') }}</p>
|
||||
<p class="help"> {{ _("This is the name of the advertised Wi-Fi network. Current SSID:")}} {{ get_setting('ssid') }}</p>
|
||||
</div>
|
||||
<div class="field password">
|
||||
{{ wtf.form_input_field(form.wifi_password, form.wifi_password.errors) }}
|
||||
<p class="help"> This is the secret key needed to connect to the Wi-Fi network. By default, this is not set and everyone can join.
|
||||
Current password: {{ get_setting('wifi_password') or 'Not set' }}</p>
|
||||
<p class="help"> {{ _("This is the secret key needed to connect to the Wi-Fi network. By default, this is not set
|
||||
and everyone can join.
|
||||
Current password:")}} {{ get_setting('wifi_password') or _('Not set') }}</p>
|
||||
</div>
|
||||
<div class="field checkbox">
|
||||
{{ wtf.form_bool_field(form.enable_access_point) }}
|
||||
<p class="butter-form-margin help">Whether this box will advertise a Wi-Fi network.</p>
|
||||
<p class="butter-form-margin help">{{ _("Whether this box will advertise a Wi-Fi network.")}}</p>
|
||||
</div>
|
||||
<div class="field checkbox">
|
||||
{{ wtf.form_bool_field(form.enable_wifi_sharing) }}
|
||||
<p class="butter-form-margin help">Whether a share button for the Wi-Fi network is available.</p>
|
||||
<p class="butter-form-margin help">{{ _("Whether a share button for the Wi-Fi network is available.")}}</p>
|
||||
</div>
|
||||
{% else %}
|
||||
<p> Access point is only enabled when using a Raspberry Pi. </p>
|
||||
<p> {{ _("Access point is only enabled when using a Raspberry Pi.") }} </p>
|
||||
<div style="display: none">
|
||||
<div class="field">
|
||||
{{ wtf.form_input_field(form.ssid, form.ssid.errors) }}
|
||||
|
|
@ -95,10 +96,10 @@
|
|||
{% endif %}
|
||||
|
||||
<hr>
|
||||
<label class="label is-large">Access and security</label>
|
||||
<label class="label is-large">{{ _("Secure Admin Settings") }}</label>
|
||||
<div class="control field">
|
||||
{{ wtf.form_password_field(form.admin_password, form.admin_password.errors) }}
|
||||
<p class="block help">Password for accessing this browser interface.</p>
|
||||
<p class="block help">{{ _("Password for accessing this admin interface.")}}</p>
|
||||
</div>
|
||||
<div class="control block">
|
||||
<label class="label">{{ form.root_account_settings.label }} </label>
|
||||
|
|
@ -113,12 +114,13 @@
|
|||
</label>
|
||||
{% endfor %}
|
||||
{{ wtf.field_errors(form.root_account_settings.errors)}}
|
||||
<p class="block help">If this is the first time configuring the box, you will need to set a root password, and choose whether you want to lock the root account.</p>
|
||||
<p class="block help">{{ _("You need to set a root password, and choose whether you want to lock the root
|
||||
account.")}}</p>
|
||||
|
||||
</div>
|
||||
<div class="control field">
|
||||
{{ wtf.form_password_field(form.root_password, form.root_password.errors) }}
|
||||
<p class="help">Password for accessing the box root account.</p>
|
||||
<p class="help">{{ _("Password for accessing the root account.")}}</p>
|
||||
</div>
|
||||
|
||||
<div class="control block">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue