Is it possible to change the password strength containsAtLeast text?

dict: {
passwordStrength: {
containsAtLeast: “Contain at least %d of the following %d types of characters:”,
}
}

Setting

“Contain at least %d of the following %d types of characters:”

The above message will actually be displayed as shown below.
Actual

“Contain at least 3 of the following 4 types of characters:”

However, when changing to our language (Japanese), we need to change the positions of 3 and 4 or change them to fixed wording.
For example, let’s say you want to change to a fixed message like the one below.
Setting

“以下の文字種類から3種類以上を組み合わせて設定してください”

  • In English “Please set a combination of 3 or more of the following character types”

However, it was actually displayed as below.
Actual

“以下の文字種類から3種類以上を組み合わせて設定してください3 4”

  • In English “Please set a combination of 3 or more of the following character types 3 4”

In other words, I changed it to a fixed message that does not include %d, but 3 and 4 were displayed as %d %d at the end of the message.
I would like to change the wording to suit our language, but is it possible to change the order of the numbers or remove the %d?

  • The password policy will not be changed.