diff --git a/qgis-app/plugins/views.py b/qgis-app/plugins/views.py index d1897117..b98b2511 100644 --- a/qgis-app/plugins/views.py +++ b/qgis-app/plugins/views.py @@ -1364,7 +1364,11 @@ def version_approve(request, package_name, version): return HttpResponseRedirect(version.get_absolute_url()) version.approved = True version.save() - msg = _('The plugin version "%s" is now approved' % version) + msg = _( + "The plugin version '%s' is now approved. " + "Please note that there may be a delay of up to 15 minutes " + "between the approval of the plugin and its actual availability in the XML." + ) % version messages.success(request, msg, fail_silently=True) plugin_approve_notify(version.plugin, msg, request.user) try: