# The lines in this file are silently added to the front of each file
# processed by kdev-python. See b7b1955f in kdev-python.git.

# konversation.i18n.init() adds the i18n* callables to builtins at
# runtime (as the original gettext module does with _()), which
# kdev-python can't economically replicate statically. Help it out here
# so they're not flagged as undefined variables.
def i18n(msg, *args): pass
def i18np(smsg, pmsg, num, *args): pass
def i18nc(ctxt, msg, *args): pass
def i18ncp(ctxt, smsg, pmsg, num, *args): pass