From b39c342f09aa5ff69cd9b25a578a43eea856cdd8 Mon Sep 17 00:00:00 2001 From: Gary Martin Date: Tue, 04 Oct 2011 22:22:21 +0000 Subject: Use _ instead of _p for marking reanslatable strings SL#1658 --- (limited to 'pgettext.py') diff --git a/pgettext.py b/pgettext.py index ac1473c..e3ce7af 100644 --- a/pgettext.py +++ b/pgettext.py @@ -31,7 +31,7 @@ def pgettext(msgctxt, msgid): else: return gettext(msgid) -# Map our pgettext() custom function to _p() -_p = lambda msgctxt, msgid: pgettext(msgctxt, msgid) +# Map our pgettext() custom function to _() +_ = lambda msgctxt, msgid: pgettext(msgctxt, msgid) -- cgit v0.9.1