We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
com/jidesoft/plaf/basic/folderChooser.properties contains the following entry:
com/jidesoft/plaf/basic/folderChooser.properties
FolderChooser.delete.message2=Are you sure you want to permanently delete these {0} items?
This is used from some manual-pluralisation code:
if (selection.size() > 1) { text = MessageFormat.format( resourceBundle.getString("FolderChooser.delete.message2"), selection.size()); } else { text = resourceBundle.getString("FolderChooser.delete.message1"); }
This affects translations because not all languages have the same pluralisation rules as English.
The text was updated successfully, but these errors were encountered:
If a language doesn't use this pluralization, the two strings can be the same. It shouldn't affect you in any case, right?
Sorry, something went wrong.
http://www.unicode.org/cldr/charts/29/supplemental/language_plural_rules.html
No branches or pull requests
com/jidesoft/plaf/basic/folderChooser.properties
contains the following entry:This is used from some manual-pluralisation code:
This affects translations because not all languages have the same pluralisation rules as English.
The text was updated successfully, but these errors were encountered: