def notifyH(title, text, image=None, mstime=2000): """Notify for human... not using localized string :p """ if not image: image = getImage('icon-default-256') return showNotification(title=title, message=text, image=image, displaytime=mstime)
def notify(title, text, image=None, mstime=2000): """Notification that wrap title and text parameter into lang() """ if not image: image = getImage('icon-default-256') return showNotification(title=lang(title), message=lang(text), image=getImage, displaytime=mstime)
def notify(title, text, image=None, mstime=2000): """Notification that wrap title and text parameter into lang() """ if not image: image = getImage('icon-default-256') return showNotification(title=lang(title), message=lang(text), image= getImage, displaytime=mstime)