use ngettext for proper plural forms use

This commit is contained in:
Paul Franklin 2015-12-09 10:08:03 -08:00
parent 1021b6d178
commit 4a0ce62361

View File

@ -2188,16 +2188,17 @@ class CheckIntegrity(object):
% {'person': cn, 'family': pn}
)
if efam:
self.text.write(
# translators: leave all/any {...} untranslated
ngettext("{quantity} family "
"with no parents or children found, removed.\n",
"{quantity} families "
"with no parents or children found, removed.\n",
efam).format(quantity=efam)
)
if efam == 1:
self.text.write(
_("1 family with no parents or children found, removed.\n")
)
self.text.write("\t%s\n" % self.empty_family[0])
elif efam > 1:
self.text.write(
_("%(quantity)d families with no parents or children, "
"removed.\n") % {'quantity': efam}
)
if rel:
self.text.write(