diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-04 07:11:50 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-04 07:11:50 -0400 |
| commit | 27aec50c25e9cf8beda506ea515d0b0e0930f4be (patch) | |
| tree | 759beb53b7402a2963c83964aa9c95e46e9b7ed1 /src/pluginlist.cpp | |
| parent | 2fe50f2ff366ea850eb70a85c6ea7d6c936bf08a (diff) | |
added tooltip for flags, reworded those copy/pasted from the mod list
Diffstat (limited to 'src/pluginlist.cpp')
| -rw-r--r-- | src/pluginlist.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index c6c61da3..31e88f7e 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -113,10 +113,11 @@ QString PluginList::getColumnName(int column) QString PluginList::getColumnToolTip(int column)
{
switch (column) {
- case COL_NAME: return tr("Name of your mods");
- case COL_PRIORITY: return tr("Load priority of your mod. The higher, the more \"important\" it is and thus "
+ case COL_NAME: return tr("Name of the plugin");
+ case COL_FLAGS: return tr("Emblemes to highlight things that might require attention.");
+ case COL_PRIORITY: return tr("Load priority of plugins. The higher, the more \"important\" it is and thus "
"overwrites data from plugins with lower priority.");
- case COL_MODINDEX: return tr("The modindex determines the formids of objects originating from this mods.");
+ case COL_MODINDEX: return tr("Determines the formids of objects originating from this mods.");
default: return tr("unknown");
}
}
|
