# HG changeset patch # User Tomas Mraz # Date 1430837902 -7200 # Tue May 05 16:58:22 2015 +0200 # Node ID 69a7954def822e4c7b8841024b0230b9dd6f0d8b # Parent 5a4ace32f696a6560352b6e4aad61b58f8d0dd7a Use gettext instead of lgettext. diff -r 5a4ace32f696 -r 69a7954def82 authconfig-gtk.py --- a/authconfig-gtk.py Wed Apr 01 19:04:09 2015 +0200 +++ b/authconfig-gtk.py Tue May 05 16:58:22 2015 +0200 @@ -26,7 +26,7 @@ import authinfo, acutil import gettext, os, signal, sys -_ = gettext.lgettext +_ = gettext.gettext import locale import dbus diff -r 5a4ace32f696 -r 69a7954def82 authconfig.py --- a/authconfig.py Wed Apr 01 19:04:09 2015 +0200 +++ b/authconfig.py Tue May 05 16:58:22 2015 +0200 @@ -26,7 +26,7 @@ import authinfo, acutil import gettext, os, signal, sys -_ = gettext.lgettext +_ = gettext.gettext from optparse import OptionParser, IndentedHelpFormatter import locale diff -r 5a4ace32f696 -r 69a7954def82 authinfo.py --- a/authinfo.py Wed Apr 01 19:04:09 2015 +0200 +++ b/authinfo.py Tue May 05 16:58:22 2015 +0200 @@ -50,7 +50,7 @@ from subprocess import * import acutil import gettext -_ = gettext.lgettext +_ = gettext.gettext try: import SSSDConfig except ImportError: