]> git.ipfire.org Git - people/stevee/pypdns.git/blobdiff - i18n.py
Code rework of the CLI.
[people/stevee/pypdns.git] / i18n.py
diff --git a/i18n.py b/i18n.py
index 78bbcd1c67a6244741c8cdfb40a93635195ee0da..cb7e2d1f14c0aae59040f1281abb3d88e353c01b 100644 (file)
--- a/i18n.py
+++ b/i18n.py
@@ -1,8 +1,8 @@
 #!/usr/bin/python
 ###############################################################################
 #                                                                             #
-# Pakfire - The IPFire package management system                              #
-# Copyright (C) 2011 Pakfire development team                                 #
+# pyPDNS - A PDNS administration tool, written in pure python.                #
+# Copyright (C) 2012 IPFire development team                                  #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -38,9 +38,9 @@ def _(singular, plural=None, n=None):
        """
        if not plural is None:
                assert n is not None
-               return gettext.dngettext("pdns-tool", singular, plural, n)
+               return gettext.dngettext("pyPDNS", singular, plural, n)
 
-       return gettext.dgettext("pdns-tool", singular)
+       return gettext.dgettext("pyPDNS", singular)
 
 def list(parts):
        """