From d2f5ef71bf8ebc656bf51f3398e23ca1dd973558 Mon Sep 17 00:00:00 2001 From: Erwin Dondorp Date: Mon, 15 Nov 2021 01:17:34 +0100 Subject: [PATCH] ARTEMIS-3571 fixed pluralization in confirmation message (cherry picked from commit abf82bc8519aed0e1da24838123397b035f5d559) --- .../src/main/webapp/plugin/js/components/browse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js index 13102370cf5..e046fffb818 100644 --- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js +++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js @@ -544,7 +544,7 @@ var Artemis; selectedItems = []; return; } - ctrl.message = "Moved " + Core.maybePlural(selectedItems.length, "message" + " to " + ctrl.queueName); + ctrl.message = "Moved " + Core.maybePlural(selectedItems.length, "message") + " to " + ctrl.queueName; ctrl.errorMessage = "failed to move message"; angular.forEach(selectedItems, function(item, idx) { var id = item.messageID;