Skip to content

Commit

Permalink
Update another 'single'/'multi' string to use 'one/other'
Browse files Browse the repository at this point in the history
This should have gone in with 41bbbcc
  • Loading branch information
bhousel committed Dec 20, 2024
1 parent 11d315e commit 062f7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/validations/missing_tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function validationMissingTag(context) {
new ValidationFix({
icon: 'rapid-operation-delete',
title: l10n.t('issues.fix.delete_feature.title'),
disabledReason: disabledReasonID ? l10n.t(`operations.delete.${disabledReasonID}.single`) : undefined,
disabledReason: disabledReasonID ? l10n.t(`operations.delete.${disabledReasonID}`, { n: 1 }) : undefined,
onClick: deleteOnClick
})
);
Expand Down

0 comments on commit 062f7a6

Please sign in to comment.