Skip to content

Commit

Permalink
ARTEMIS-3571 fixed pluralization in confirmation message
Browse files Browse the repository at this point in the history
(cherry picked from commit abf82bc)
  • Loading branch information
Erwin Dondorp authored and clebertsuconic committed Jan 24, 2022
1 parent e927a54 commit d2f5ef7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d2f5ef7

Please sign in to comment.