Update first time setup flow; update strings, include strings from figma

This commit is contained in:
Ana Custura 2026-03-29 17:17:47 +01:00
parent 9937cc8884
commit 4c25aeabf9
23 changed files with 1451 additions and 245 deletions

View file

@ -8,9 +8,9 @@
<thead>
<tr>
<th></th>
<th>File Name</th>
<th class="file-viewer-date-modified">Date modified</th>
<th>Download</th>
<th>{{ _("File Name")}}</th>
<th class="file-viewer-date-modified">{{ _("Date modified")}}</th>
<th>{{ _("Download") }}</th>
</tr>
</thead>
<tbody>
@ -27,7 +27,7 @@
<td class="file-viewer-date-modified">{{ f.last_modified}}</td>
{% if f.is_file %}
<td><a href="{{ url_for('serve_file', filepath=f.path) }}">Download</a></td>
<td><a href="{{ url_for('serve_file', filepath=f.path) }}">{{ _("Download") }}</a></td>
{% endif %}
{% if f.is_dir %}
<td></td>
@ -36,9 +36,10 @@
{% endfor %}
{% if not render_files %}
<tr>
<td colspan="4"> <p class="butter-centered has-text-grey">Directory is empty</p></td>
<td colspan="4"> <p class="butter-centered has-text-grey">{{ _("Directory is empty") }}</p></td>
</tr>
{% endif %}
</tbody>
</table>
</div>
{% endblock %}