diff --git a/plugin.info.txt b/plugin.info.txt index f1e2eae..8ababe2 100644 --- a/plugin.info.txt +++ b/plugin.info.txt @@ -3,5 +3,5 @@ author Sascha Leib email ad@hominem.com date 2025-09-12 name Bot Monitoring -desc Live monitoring of bot traffic on your DokuWiki instance (under development) +desc A tool for monitoring and analysing bot traffic to your wiki (under development) url https://www.dokuwiki.org/plugin:botmon diff --git a/script.js b/script.js index fb0d026..f17eb69 100644 --- a/script.js +++ b/script.js @@ -1619,7 +1619,7 @@ BotMon.live = { const wmclients = document.getElementById('botmon__today__wm_clients'); if (wmclients) { - wmclients.appendChild(makeElement('dt', {}, "Browsers (humans only)")); + wmclients.appendChild(makeElement('dt', {}, "Top browsers (humans only)")); const clientList = BotMon.live.data.analytics.getTopBrowsers(5); if (clientList) { @@ -1639,7 +1639,7 @@ BotMon.live = { const wmplatforms = document.getElementById('botmon__today__wm_platforms'); if (wmplatforms) { - wmplatforms.appendChild(makeElement('dt', {}, "Platforms (humans only)")); + wmplatforms.appendChild(makeElement('dt', {}, "Top platforms (humans only)")); const pfList = BotMon.live.data.analytics.getTopPlatforms(5); if (pfList) {