mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-24 00:26:08 +00:00
Correct localization
"(different across %d items)" is still subject to plural forms even this string doesn't use a singular form -- there can be differences in other languages.
This commit is contained in:
@@ -63,7 +63,7 @@ class TagCounter(dict):
|
||||
if missing > 0:
|
||||
return ungettext("(missing from %d item)", "(missing from %d items)", missing) % missing
|
||||
else:
|
||||
return _("(different across %d items)") % self.objects
|
||||
return ungettext("(different across %d item)", "(different across %d item)", self.objects) % self.objects
|
||||
return None
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user