--- depsolve.py.orig2009-11-10 18:26:41.43591 -0500
+++ depsolve.py 2009-11-11 17:49:51.514498000 -0500
@@ -1100,8 +1100,8 @@
pkgresults[po] -= 1024
obsoleted = False
-poprovtup = (po.name, 'EQ', (po.epoch, po.ver, po.release))
-
On Wed, 2009-11-11 at 21:08 +0200, Ville-Pekka Vainio wrote:
> While translating yum into Finnish a couple of things started to bother
> me with the source.
>
> - ngettext (or _P) is not actually used anywhere, which pretty much
> breaks the l10n for languages with more than two plural forms
Ye
While translating yum into Finnish a couple of things started to bother
me with the source.
- ngettext (or _P) is not actually used anywhere, which pretty much
breaks the l10n for languages with more than two plural forms
- the arguments are unnamed, which xgettext actually warns about if run
on
Add the po/Makevars file including XGETTEXT_OPTIONS = --keyword=_P:1,2
so that the _P calls will be recognized as plurals by xgettext and
intltool.
---
po/Makevars |1 +
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 po/Makevars
diff --git a/po/Makevars b/po/Makevars
new