Translatable strings for plugins (#3893)

This commit is contained in:
Oliver 2022-11-02 09:22:29 +11:00 committed by GitHub
parent c7a2def353
commit 652f4aa7c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,8 +53,10 @@
{% plugins_enabled as plug %}
{% if plug %}
{% include "sidebar_header.html" with text="Plugin Settings" %}
{% include "sidebar_item.html" with label='plugin' text="Plugins" icon="fa-plug" %}
{% trans "Plugin Settings" as text %}
{% include "sidebar_header.html" with text=text %}
{% trans "Plugins" as text %}
{% include "sidebar_item.html" with label='plugin' text=text icon="fa-plug" %}
{% plugin_list as pl_list %}
{% for plugin_key, plugin in pl_list.items %}