Skip to content

Support wxPLURAL( singular, plural, number )

KiCad Bot requested to merge github/fork/GyrosGeier/plural into master

Created by: GyrosGeier

This allows selecting the appropriate form for messages that use plural forms that depend on the preceding number:

Old:

_( "%d item(s)" )

New:

wxPLURAL( "%d item", "%d items", num )

Merge request reports