#!/usr/bin/python3

import xapp.os
import gettext

gettext.install("mintsources", "/usr/share/linuxmint/locale")

icon = "/usr/share/icons/hicolor/48x48/apps/software-sources.png"
message = _("Please enter your password to configure the software sources")

xapp.os.run_with_admin_privs("/usr/lib/linuxmint/mintSources/mintSources.py", message=message, icon=icon, support_pkexec=False)
