django.utils.translation.trans_real:gettext_noop
def gettext_noop(message):
"""
Marks strings for translation but doesn't translate them now. This can be
used to store strings in global variables that should stay in the base
language (because they might be used externally) and will be translated
later.
"""
return message
gettext - обертка вокруг стандартного модуля gettext, т.е. ищет перевод
gettext_lazy - обертка вокруг django gettext, делающая отложенный вызов
gettext_lazy = lazy(gettext, str)
lazy - в django.utils.functional
P.S. Да читайте же наконец исходники!..