gplugin/gplugin

Add more details to basic plugin names

20 months ago, Elliott Sales de Andrade
7cd3caa3f514
Add more details to basic plugin names

Just so there aren't "basic plugin" a bunch of times over in the list.

Testing Done:
Checked viewer and ran `ninja test`.

Reviewed at https://reviews.imfreedom.org/r/1837/
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<template class="GPluginGtkView" parent="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="GtkSearchBar" id="search_bar">
<property name="key-capture-widget">list_box</property>
<property name="show-close-button">1</property>
<child>
<object class="GtkSearchEntry" id="search_entry">
<signal name="search-changed" handler="gplugin_gtk_view_search_changed"/>
</object>
</child>
</object>
</child>
<child>
<object class="GtkScrolledWindow">
<property name="hscrollbar_policy">never</property>
<property name="vexpand">1</property>
<child>
<object class="GtkFrame">
<property name="margin-bottom">24</property>
<property name="margin-end">24</property>
<property name="margin-start">24</property>
<property name="margin-top">24</property>
<child>
<object class="GtkListBox" id="list_box">
<property name="css-classes">rich-list</property>
<property name="selection-mode">none</property>
<property name="show-separators">1</property>
<signal name="row-activated" handler="gplugin_gtk_view_row_activated"/>
<child type="placeholder">
<object class="GtkLabel">
<property name="css-classes">large-title</property>
<property name="label" translatable="1">No plugins found</property>
<property name="margin-bottom">24</property>
<property name="margin-end">24</property>
<property name="margin-start">24</property>
<property name="margin-top">24</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>