●
{{ p.name }}
{% if p.loaded and p.type %}{{ type_labels.get(p.type | lower, p.type) }}{% endif %}
{% if not p.loaded %}
{% for reason in p.reasons %}
{% if reason == 'system_off' %}{{ _('Plugin system off') }}
{% elif reason == 'not_installed' %}{{ _('Not installed') }}
{% elif reason == 'not_listed' %}{{ _('Not in builtin') }}
{% elif reason == 'disabled' %}{{ _('Disabled in config') }}
{% elif reason == 'not_registered' %}{{ _('Not registered') }}
{% endif %}
{% endfor %}
{% endif %}
{% if p.loaded and p.events %}{{ p.events[:3]|join(' · ') }}{% if p.events|length > 3 %} +{{ p.events|length - 3 }}{% endif %}{% endif %}
{% if p.loaded %}v{{ p.version }}{% else %}{{ _('Not loaded') }}{% endif %}
{% for reason in p.reasons %}
{% if reason == 'system_off' %}
{{ _('The [plugins] section is disabled, so nothing is loaded from builtin.') }}
{% elif reason == 'not_installed' %}
{{ _('Listed in config.toml, but this build has no implementation for it.') }}
{% elif reason == 'not_listed' %}
{{ _('This build can load it, but [plugins] builtin does not list it.') }}
{% elif reason == 'disabled' %}
{{ _('Installed but switched off in config.toml.') }}
{% elif reason == 'not_registered' %}
{{ _('Enabled and listed, but the plugin is not registered — check the startup log.') }}
{% endif %}
{% endfor %}
{% if p.snippet %}
{{ _('Add to config.toml:') }}
{{ p.snippet }}
{% endif %}