Skip to content

Commit

Permalink
Improve labels for device option dropdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmark committed Dec 2, 2023
1 parent da99502 commit 729d392
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/web/src/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -443,10 +443,10 @@
{% endif %}
{% endfor %}
{% if type in DISK_DEVICE_TYPES %}
<label for="{{ type }}_drive_name">{{ _("Masquerade as:") }}</label>
<label for="{{ type }}_drive_name">{{ _("Identify as:") }}</label>
<select name="drive_name" id="{{ type }}_drive_name">
<option value="">
{{ _("None") }}
{{ _("Generic device") }}
</option>
{% if type == "SCHD" %}
{% for drive in drive_properties["hd_conf"] | sort(attribute='name') %}
Expand Down Expand Up @@ -480,7 +480,7 @@
<label for="{{ type }}_image_file_name">{{ _("Image file:") }}</label>
<select name="file_name" id="{{ type }}_image_file_name">
<option value="">
{{ _("None") }}
{{ _("Choose an image file...") }}
</option>
{% for f in files|sort(attribute='name') %}
{% if type == "SCHD" %}
Expand Down

0 comments on commit 729d392

Please sign in to comment.