├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── MAINTAINERS ├── Makefile.am ├── NEWS ├── README ├── README.install ├── TODO ├── acconfig.h ├── acinclude.m4 ├── autogen.sh ├── common ├── Makefile.am ├── mdm-common-config.c ├── mdm-common-config.h ├── mdm-common.c ├── mdm-common.h ├── mdm-config.c ├── mdm-config.h ├── mdm-log.c ├── mdm-log.h ├── test-config.c ├── test-log.c ├── ve-signal.c └── ve-signal.h ├── config ├── Init.in ├── Makefile.am ├── PostLogin ├── PostSession.in ├── PreSession.in ├── SuperInit.in ├── SuperPost.in ├── XKeepsCrashing ├── Xsession.in ├── default.desktop.in.in ├── extract-shell.sh ├── gettextfoo.h ├── locale.alias ├── mdm ├── mdm-autologin ├── mdm.conf-custom.in ├── mdm.conf.in ├── mdmprefetchlist.in └── ssh.desktop.in.in ├── configure.ac ├── daemon ├── Makefile.am ├── auth.c ├── auth.h ├── cookie.c ├── cookie.h ├── display.c ├── display.h ├── errorgui.c ├── errorgui.h ├── filecheck.c ├── filecheck.h ├── fstype.c ├── getvt.c ├── getvt.h ├── md5.c ├── md5.h ├── mdm-daemon-config-entries.h ├── mdm-daemon-config-keys.h ├── mdm-daemon-config.c ├── mdm-daemon-config.h ├── mdm-net.c ├── mdm-net.h ├── mdm-socket-protocol.h ├── mdm.c ├── mdm.h ├── mdm.in ├── mdmconsolekit.c ├── mdmconsolekit.h ├── misc.c ├── misc.h ├── server.c ├── server.h ├── slave.c ├── slave.h ├── verify-crypt.c ├── verify-pam.c ├── verify-shadow.c └── verify.h ├── data ├── Makefile.am └── icons │ ├── 16x16 │ ├── Makefile.am │ └── apps │ │ ├── Makefile.am │ │ ├── mdmflexiserver.png │ │ ├── mdmflexiserver.xcf.bz2 │ │ ├── mdmsetup.png │ │ └── mdmsetup.svg │ ├── 22x22 │ ├── Makefile.am │ └── apps │ │ ├── Makefile.am │ │ ├── mdmflexiserver.png │ │ ├── mdmflexiserver.xcf.bz2 │ │ ├── mdmsetup.png │ │ └── mdmsetup.xcf.bz2 │ ├── 24x24 │ ├── Makefile.am │ └── apps │ │ ├── Makefile.am │ │ ├── mdmflexiserver.png │ │ └── mdmsetup.png │ ├── 32x32 │ ├── Makefile.am │ └── apps │ │ ├── Makefile.am │ │ ├── mdmflexiserver.png │ │ ├── mdmflexiserver.svg │ │ ├── mdmsetup.png │ │ └── mdmsetup.svg │ ├── 48x48 │ ├── Makefile.am │ └── apps │ │ ├── Makefile.am │ │ ├── mdmflexiserver.png │ │ └── mdmsetup.png │ ├── Makefile.am │ ├── README │ └── scalable │ ├── Makefile.am │ └── apps │ ├── Makefile.am │ ├── mdmflexiserver.svg │ └── mdmsetup.svg ├── debian ├── README.Debian ├── Xsession ├── changelog ├── compat ├── control ├── copyright ├── docs ├── extract-locales ├── insserv.conf.d │ └── mdm ├── locale.conf ├── mdm-autologin.pam ├── mdm.8.pod ├── mdm.config ├── mdm.dirs ├── mdm.init ├── mdm.install ├── mdm.manpages ├── mdm.menu ├── mdm.pam ├── mdm.postinst ├── mdm.postrm ├── mdm.prerm ├── mdm.service ├── mdm.templates ├── mdm.upstart ├── mdm.xpm ├── mdmflexiserver.1.pod ├── mdmlogin.8.pod ├── rules ├── source │ └── format └── watch ├── docs ├── C │ ├── legal.xml │ └── mdm.xml ├── ChangeLog ├── Makefile.am ├── en_GB │ └── en_GB.po ├── mdm.1 └── mdm.omf.in ├── files ├── Makefile ├── Makefile.am ├── Makefile.in ├── etc │ └── X11 │ │ └── Xsession.d │ │ └── 99mdm └── usr │ ├── bin │ ├── mdm-get-monitor-scale │ ├── mdm-recovery │ ├── mdm-set-keyboard-layout │ ├── mdm-theme-emulator │ └── mdm-unlock-logind │ └── share │ └── mdm │ ├── gtk-preview.png │ ├── locale │ ├── af │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── am │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ar │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── az │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── be │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── bn │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── bs │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ca │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── cy │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── da │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── de │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── el │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── en_AU │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── en_CA │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── eo │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── es │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── et │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── eu │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── fa │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── fr_CA │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── frp │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ga │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── gd │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── gl │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── he │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── hi │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── hr │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ia │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── id │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ii │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── is │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── it │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ka │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── kab │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── kk │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── km │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ksw │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ku │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ky │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── lo │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── lv │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── mg │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ml │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── mr │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ms │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── mus │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── my │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── nb │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── nds │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ne │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── nn │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── oc │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── om │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── pa │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── pap │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── pt │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ro │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── rw │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── sc │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── shn │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── si │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── sl │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── sq │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── sr │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── sr@latin │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ta │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── tg │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── th │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── uk │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── ur │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── uz │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── vi │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ ├── zh_HK │ │ └── LC_MESSAGES │ │ │ └── mdm.mo │ └── zh_TW │ │ └── LC_MESSAGES │ │ └── mdm.mo │ └── recovery │ └── mdm.conf ├── gui ├── Makefile.am ├── faces │ ├── Makefile.am │ └── user-generic.png ├── greeter │ ├── Makefile.am │ ├── greeter.c │ ├── greeter.dtd │ ├── greeter.h │ ├── greeter_canvas_item.c │ ├── greeter_canvas_item.h │ ├── greeter_canvas_text.c │ ├── greeter_canvas_text.h │ ├── greeter_configuration.h │ ├── greeter_events.c │ ├── greeter_events.h │ ├── greeter_geometry.c │ ├── greeter_geometry.h │ ├── greeter_item.c │ ├── greeter_item.h │ ├── greeter_item_capslock.c │ ├── greeter_item_capslock.h │ ├── greeter_item_clock.c │ ├── greeter_item_clock.h │ ├── greeter_item_customlist.c │ ├── greeter_item_customlist.h │ ├── greeter_item_pam.c │ ├── greeter_item_pam.h │ ├── greeter_item_timed.c │ ├── greeter_item_timed.h │ ├── greeter_item_ulist.c │ ├── greeter_item_ulist.h │ ├── greeter_parser.c │ ├── greeter_parser.h │ ├── greeter_session.c │ ├── greeter_session.h │ ├── greeter_system.c │ ├── greeter_system.h │ └── themes │ │ ├── Makefile.am │ │ └── circles │ │ ├── GdmGreeterTheme.desktop │ │ ├── GdmGreeterTheme.desktop.in │ │ ├── Makefile.am │ │ ├── background.svg │ │ ├── circles.xml │ │ └── screenshot.png ├── mdmcomm.c ├── mdmcomm.h ├── mdmcommon.c ├── mdmcommon.h ├── mdmconfig.c ├── mdmconfig.h ├── mdmflexiserver.c ├── mdmflexiserver.desktop ├── mdmflexiserver.desktop.in ├── mdmgreeter.c ├── mdmgreeter.h ├── mdmlanguages.c ├── mdmlanguages.h ├── mdmlogin.c ├── mdmsession.c ├── mdmsession.h ├── mdmsetup.c ├── mdmsetup.desktop ├── mdmsetup.desktop.in.in ├── mdmsetup.glade ├── mdmuser.c ├── mdmuser.h ├── mdmwebkit.c ├── mdmwm.c ├── mdmwm.h ├── misc.c ├── misc.h └── modules │ ├── AccessDwellMouseEvents.in │ ├── AccessKeyMouseEvents.in │ ├── Makefile.am │ ├── dwellmouselistener.c │ └── keymouselistener.c ├── launchpad-po ├── af.po ├── am.po ├── ar.po ├── az.po ├── be.po ├── bg.po ├── bn.po ├── bs.po ├── ca.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fr_CA.po ├── frp.po ├── ga.po ├── gd.po ├── gl.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── ia.po ├── id.po ├── ii.po ├── is.po ├── it.po ├── ja.po ├── ka.po ├── kab.po ├── kk.po ├── km.po ├── ko.po ├── ksw.po ├── ku.po ├── ky.po ├── lo.po ├── lt.po ├── lv.po ├── mdm.pot ├── mg.po ├── ml.po ├── mr.po ├── ms.po ├── mus.po ├── my.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── oc.po ├── om.po ├── pa.po ├── pap.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── sc.po ├── shn.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── tg.po ├── th.po ├── tr.po ├── uk.po ├── ur.po ├── uz.po ├── vi.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── makepot ├── mdm.pot ├── pixmaps ├── 24x24 │ ├── Makefile.am │ ├── preferences-desktop-locale.png │ ├── preferences-desktop-remote-desktop.png │ ├── system-log-out.png │ ├── system-restart.png │ ├── system-shut-down.png │ ├── system-suspend.png │ └── user-desktop.png ├── 48x48 │ ├── Makefile.am │ └── mdm.png ├── Makefile.am ├── nobody.png └── nohost.png ├── po ├── ChangeLog ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── af.po ├── am.po ├── ar.po ├── as.po ├── az.po ├── be.po ├── bg.po ├── bn.po ├── bn_IN.po ├── bs.po ├── ca.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── dz.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fr_CA.po ├── frp.po ├── ga.po ├── gd.po ├── gl.po ├── gu.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── ia.po ├── id.po ├── ii.po ├── is.po ├── it.po ├── ja.po ├── ka.po ├── kab.po ├── kk.po ├── km.po ├── kn.po ├── ko.po ├── ksw.po ├── ku.po ├── ky.po ├── lo.po ├── lt.po ├── lv.po ├── mg.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mr.po ├── ms.po ├── mus.po ├── my.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── nso.po ├── oc.po ├── om.po ├── or.po ├── pa.po ├── pap.po ├── pl.po ├── po-files │ ├── mdm-de.po │ ├── mdm-fr.po │ ├── mdm-pl.po │ └── mdm.pot ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── sc.po ├── shn.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@Latn.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── tr.po ├── uk.po ├── ur.po ├── uz.po ├── uz@cyrillic.po ├── vi.po ├── wa.po ├── xh.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po └── utils ├── Makefile.am ├── mdm-dmx-reconnect-proxy.c ├── mdm-restart.in ├── mdm-safe-restart.in ├── mdm-ssh-session ├── mdm-stop.in ├── mdmaskpass.c ├── mdmopen.c ├── mdmprefetch.c ├── mdmsetup-pam ├── mdmsetup-security.in └── mdmtranslate.c /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/INSTALL -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/README -------------------------------------------------------------------------------- /README.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/README.install -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/TODO -------------------------------------------------------------------------------- /acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/acconfig.h -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/mdm-common-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/mdm-common-config.c -------------------------------------------------------------------------------- /common/mdm-common-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/mdm-common-config.h -------------------------------------------------------------------------------- /common/mdm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/mdm-common.c -------------------------------------------------------------------------------- /common/mdm-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/mdm-common.h -------------------------------------------------------------------------------- /common/mdm-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/mdm-config.c -------------------------------------------------------------------------------- /common/mdm-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/mdm-config.h -------------------------------------------------------------------------------- /common/mdm-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/mdm-log.c -------------------------------------------------------------------------------- /common/mdm-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/mdm-log.h -------------------------------------------------------------------------------- /common/test-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/test-config.c -------------------------------------------------------------------------------- /common/test-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/test-log.c -------------------------------------------------------------------------------- /common/ve-signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/ve-signal.c -------------------------------------------------------------------------------- /common/ve-signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/common/ve-signal.h -------------------------------------------------------------------------------- /config/Init.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/Init.in -------------------------------------------------------------------------------- /config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/Makefile.am -------------------------------------------------------------------------------- /config/PostLogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/PostLogin -------------------------------------------------------------------------------- /config/PostSession.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/PostSession.in -------------------------------------------------------------------------------- /config/PreSession.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/PreSession.in -------------------------------------------------------------------------------- /config/SuperInit.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/SuperInit.in -------------------------------------------------------------------------------- /config/SuperPost.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/SuperPost.in -------------------------------------------------------------------------------- /config/XKeepsCrashing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/XKeepsCrashing -------------------------------------------------------------------------------- /config/Xsession.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/Xsession.in -------------------------------------------------------------------------------- /config/default.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/default.desktop.in.in -------------------------------------------------------------------------------- /config/extract-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/extract-shell.sh -------------------------------------------------------------------------------- /config/gettextfoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/gettextfoo.h -------------------------------------------------------------------------------- /config/locale.alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/locale.alias -------------------------------------------------------------------------------- /config/mdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/mdm -------------------------------------------------------------------------------- /config/mdm-autologin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/mdm-autologin -------------------------------------------------------------------------------- /config/mdm.conf-custom.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/mdm.conf-custom.in -------------------------------------------------------------------------------- /config/mdm.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/mdm.conf.in -------------------------------------------------------------------------------- /config/mdmprefetchlist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/mdmprefetchlist.in -------------------------------------------------------------------------------- /config/ssh.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/config/ssh.desktop.in.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/configure.ac -------------------------------------------------------------------------------- /daemon/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/Makefile.am -------------------------------------------------------------------------------- /daemon/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/auth.c -------------------------------------------------------------------------------- /daemon/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/auth.h -------------------------------------------------------------------------------- /daemon/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/cookie.c -------------------------------------------------------------------------------- /daemon/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/cookie.h -------------------------------------------------------------------------------- /daemon/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/display.c -------------------------------------------------------------------------------- /daemon/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/display.h -------------------------------------------------------------------------------- /daemon/errorgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/errorgui.c -------------------------------------------------------------------------------- /daemon/errorgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/errorgui.h -------------------------------------------------------------------------------- /daemon/filecheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/filecheck.c -------------------------------------------------------------------------------- /daemon/filecheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/filecheck.h -------------------------------------------------------------------------------- /daemon/fstype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/fstype.c -------------------------------------------------------------------------------- /daemon/getvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/getvt.c -------------------------------------------------------------------------------- /daemon/getvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/getvt.h -------------------------------------------------------------------------------- /daemon/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/md5.c -------------------------------------------------------------------------------- /daemon/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/md5.h -------------------------------------------------------------------------------- /daemon/mdm-daemon-config-entries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm-daemon-config-entries.h -------------------------------------------------------------------------------- /daemon/mdm-daemon-config-keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm-daemon-config-keys.h -------------------------------------------------------------------------------- /daemon/mdm-daemon-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm-daemon-config.c -------------------------------------------------------------------------------- /daemon/mdm-daemon-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm-daemon-config.h -------------------------------------------------------------------------------- /daemon/mdm-net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm-net.c -------------------------------------------------------------------------------- /daemon/mdm-net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm-net.h -------------------------------------------------------------------------------- /daemon/mdm-socket-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm-socket-protocol.h -------------------------------------------------------------------------------- /daemon/mdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm.c -------------------------------------------------------------------------------- /daemon/mdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm.h -------------------------------------------------------------------------------- /daemon/mdm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdm.in -------------------------------------------------------------------------------- /daemon/mdmconsolekit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdmconsolekit.c -------------------------------------------------------------------------------- /daemon/mdmconsolekit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/mdmconsolekit.h -------------------------------------------------------------------------------- /daemon/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/misc.c -------------------------------------------------------------------------------- /daemon/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/misc.h -------------------------------------------------------------------------------- /daemon/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/server.c -------------------------------------------------------------------------------- /daemon/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/server.h -------------------------------------------------------------------------------- /daemon/slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/slave.c -------------------------------------------------------------------------------- /daemon/slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/slave.h -------------------------------------------------------------------------------- /daemon/verify-crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/verify-crypt.c -------------------------------------------------------------------------------- /daemon/verify-pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/verify-pam.c -------------------------------------------------------------------------------- /daemon/verify-shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/verify-shadow.c -------------------------------------------------------------------------------- /daemon/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/daemon/verify.h -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = icons -------------------------------------------------------------------------------- /data/icons/16x16/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = apps 2 | -------------------------------------------------------------------------------- /data/icons/16x16/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/16x16/apps/Makefile.am -------------------------------------------------------------------------------- /data/icons/16x16/apps/mdmflexiserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/16x16/apps/mdmflexiserver.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/mdmflexiserver.xcf.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/16x16/apps/mdmflexiserver.xcf.bz2 -------------------------------------------------------------------------------- /data/icons/16x16/apps/mdmsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/16x16/apps/mdmsetup.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/mdmsetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/16x16/apps/mdmsetup.svg -------------------------------------------------------------------------------- /data/icons/22x22/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = apps 2 | -------------------------------------------------------------------------------- /data/icons/22x22/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/22x22/apps/Makefile.am -------------------------------------------------------------------------------- /data/icons/22x22/apps/mdmflexiserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/22x22/apps/mdmflexiserver.png -------------------------------------------------------------------------------- /data/icons/22x22/apps/mdmflexiserver.xcf.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/22x22/apps/mdmflexiserver.xcf.bz2 -------------------------------------------------------------------------------- /data/icons/22x22/apps/mdmsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/22x22/apps/mdmsetup.png -------------------------------------------------------------------------------- /data/icons/22x22/apps/mdmsetup.xcf.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/22x22/apps/mdmsetup.xcf.bz2 -------------------------------------------------------------------------------- /data/icons/24x24/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = apps 2 | -------------------------------------------------------------------------------- /data/icons/24x24/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/24x24/apps/Makefile.am -------------------------------------------------------------------------------- /data/icons/24x24/apps/mdmflexiserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/24x24/apps/mdmflexiserver.png -------------------------------------------------------------------------------- /data/icons/24x24/apps/mdmsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/24x24/apps/mdmsetup.png -------------------------------------------------------------------------------- /data/icons/32x32/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = apps 2 | -------------------------------------------------------------------------------- /data/icons/32x32/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/32x32/apps/Makefile.am -------------------------------------------------------------------------------- /data/icons/32x32/apps/mdmflexiserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/32x32/apps/mdmflexiserver.png -------------------------------------------------------------------------------- /data/icons/32x32/apps/mdmflexiserver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/32x32/apps/mdmflexiserver.svg -------------------------------------------------------------------------------- /data/icons/32x32/apps/mdmsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/32x32/apps/mdmsetup.png -------------------------------------------------------------------------------- /data/icons/32x32/apps/mdmsetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/32x32/apps/mdmsetup.svg -------------------------------------------------------------------------------- /data/icons/48x48/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = apps 2 | -------------------------------------------------------------------------------- /data/icons/48x48/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/48x48/apps/Makefile.am -------------------------------------------------------------------------------- /data/icons/48x48/apps/mdmflexiserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/48x48/apps/mdmflexiserver.png -------------------------------------------------------------------------------- /data/icons/48x48/apps/mdmsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/48x48/apps/mdmsetup.png -------------------------------------------------------------------------------- /data/icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/Makefile.am -------------------------------------------------------------------------------- /data/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/README -------------------------------------------------------------------------------- /data/icons/scalable/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = apps 2 | -------------------------------------------------------------------------------- /data/icons/scalable/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/scalable/apps/Makefile.am -------------------------------------------------------------------------------- /data/icons/scalable/apps/mdmflexiserver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/scalable/apps/mdmflexiserver.svg -------------------------------------------------------------------------------- /data/icons/scalable/apps/mdmsetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/data/icons/scalable/apps/mdmsetup.svg -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/Xsession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/Xsession -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/docs -------------------------------------------------------------------------------- /debian/extract-locales: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/extract-locales -------------------------------------------------------------------------------- /debian/insserv.conf.d/mdm: -------------------------------------------------------------------------------- 1 | $x-display-manager mdm 2 | -------------------------------------------------------------------------------- /debian/locale.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/locale.conf -------------------------------------------------------------------------------- /debian/mdm-autologin.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm-autologin.pam -------------------------------------------------------------------------------- /debian/mdm.8.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.8.pod -------------------------------------------------------------------------------- /debian/mdm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.config -------------------------------------------------------------------------------- /debian/mdm.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.dirs -------------------------------------------------------------------------------- /debian/mdm.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.init -------------------------------------------------------------------------------- /debian/mdm.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.install -------------------------------------------------------------------------------- /debian/mdm.manpages: -------------------------------------------------------------------------------- 1 | debian/*.[0-9] 2 | -------------------------------------------------------------------------------- /debian/mdm.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.menu -------------------------------------------------------------------------------- /debian/mdm.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.pam -------------------------------------------------------------------------------- /debian/mdm.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.postinst -------------------------------------------------------------------------------- /debian/mdm.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.postrm -------------------------------------------------------------------------------- /debian/mdm.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.prerm -------------------------------------------------------------------------------- /debian/mdm.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.service -------------------------------------------------------------------------------- /debian/mdm.templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.templates -------------------------------------------------------------------------------- /debian/mdm.upstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.upstart -------------------------------------------------------------------------------- /debian/mdm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdm.xpm -------------------------------------------------------------------------------- /debian/mdmflexiserver.1.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdmflexiserver.1.pod -------------------------------------------------------------------------------- /debian/mdmlogin.8.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/mdmlogin.8.pod -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/debian/watch -------------------------------------------------------------------------------- /docs/C/legal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/docs/C/legal.xml -------------------------------------------------------------------------------- /docs/C/mdm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/docs/C/mdm.xml -------------------------------------------------------------------------------- /docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/docs/ChangeLog -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/en_GB/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/docs/en_GB/en_GB.po -------------------------------------------------------------------------------- /docs/mdm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/docs/mdm.1 -------------------------------------------------------------------------------- /docs/mdm.omf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/docs/mdm.omf.in -------------------------------------------------------------------------------- /files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/Makefile -------------------------------------------------------------------------------- /files/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/Makefile.am -------------------------------------------------------------------------------- /files/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/Makefile.in -------------------------------------------------------------------------------- /files/etc/X11/Xsession.d/99mdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/etc/X11/Xsession.d/99mdm -------------------------------------------------------------------------------- /files/usr/bin/mdm-get-monitor-scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/bin/mdm-get-monitor-scale -------------------------------------------------------------------------------- /files/usr/bin/mdm-recovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/bin/mdm-recovery -------------------------------------------------------------------------------- /files/usr/bin/mdm-set-keyboard-layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/bin/mdm-set-keyboard-layout -------------------------------------------------------------------------------- /files/usr/bin/mdm-theme-emulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/bin/mdm-theme-emulator -------------------------------------------------------------------------------- /files/usr/bin/mdm-unlock-logind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/bin/mdm-unlock-logind -------------------------------------------------------------------------------- /files/usr/share/mdm/gtk-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/gtk-preview.png -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/af/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/af/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/am/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/am/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ar/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ar/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/az/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/az/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/be/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/be/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/bg/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/bg/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/bn/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/bn/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/bs/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/bs/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ca/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ca/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/cs/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/cs/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/cy/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/cy/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/da/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/da/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/de/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/de/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/el/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/el/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/en_AU/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/en_AU/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/en_CA/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/en_CA/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/en_GB/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/en_GB/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/eo/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/eo/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/es/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/es/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/et/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/et/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/eu/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/eu/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/fa/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/fa/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/fi/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/fi/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/fr/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/fr/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/fr_CA/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/fr_CA/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/frp/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/frp/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ga/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ga/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/gd/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/gd/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/gl/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/gl/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/he/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/he/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/hi/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/hi/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/hr/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/hr/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/hu/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/hu/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ia/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ia/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/id/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/id/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ii/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ii/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/is/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/is/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/it/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/it/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ja/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ja/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ka/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ka/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/kab/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/kab/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/kk/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/kk/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/km/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/km/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ko/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ko/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ksw/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ksw/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ku/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ku/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ky/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ky/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/lo/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/lo/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/lt/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/lt/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/lv/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/lv/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/mg/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/mg/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ml/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ml/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/mr/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/mr/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ms/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ms/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/mus/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/mus/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/my/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/my/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/nb/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/nb/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/nds/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/nds/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ne/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ne/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/nl/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/nl/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/nn/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/nn/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/oc/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/oc/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/om/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/om/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/pa/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/pa/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/pap/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/pap/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/pl/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/pl/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/pt/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/pt/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/pt_BR/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/pt_BR/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ro/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ro/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ru/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ru/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/rw/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/rw/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/sc/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/sc/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/shn/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/shn/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/si/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/si/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/sk/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/sk/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/sl/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/sl/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/sq/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/sq/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/sr/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/sr/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/sr@latin/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/sr@latin/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/sv/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/sv/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ta/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ta/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/tg/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/tg/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/th/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/th/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/tr/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/tr/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/uk/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/uk/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/ur/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/ur/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/uz/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/uz/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/vi/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/vi/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/zh_CN/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/zh_CN/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/zh_HK/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/zh_HK/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/locale/zh_TW/LC_MESSAGES/mdm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/locale/zh_TW/LC_MESSAGES/mdm.mo -------------------------------------------------------------------------------- /files/usr/share/mdm/recovery/mdm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/files/usr/share/mdm/recovery/mdm.conf -------------------------------------------------------------------------------- /gui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/Makefile.am -------------------------------------------------------------------------------- /gui/faces/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/faces/Makefile.am -------------------------------------------------------------------------------- /gui/faces/user-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/faces/user-generic.png -------------------------------------------------------------------------------- /gui/greeter/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/Makefile.am -------------------------------------------------------------------------------- /gui/greeter/greeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter.c -------------------------------------------------------------------------------- /gui/greeter/greeter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter.dtd -------------------------------------------------------------------------------- /gui/greeter/greeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter.h -------------------------------------------------------------------------------- /gui/greeter/greeter_canvas_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_canvas_item.c -------------------------------------------------------------------------------- /gui/greeter/greeter_canvas_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_canvas_item.h -------------------------------------------------------------------------------- /gui/greeter/greeter_canvas_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_canvas_text.c -------------------------------------------------------------------------------- /gui/greeter/greeter_canvas_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_canvas_text.h -------------------------------------------------------------------------------- /gui/greeter/greeter_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_configuration.h -------------------------------------------------------------------------------- /gui/greeter/greeter_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_events.c -------------------------------------------------------------------------------- /gui/greeter/greeter_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_events.h -------------------------------------------------------------------------------- /gui/greeter/greeter_geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_geometry.c -------------------------------------------------------------------------------- /gui/greeter/greeter_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_geometry.h -------------------------------------------------------------------------------- /gui/greeter/greeter_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item.c -------------------------------------------------------------------------------- /gui/greeter/greeter_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item.h -------------------------------------------------------------------------------- /gui/greeter/greeter_item_capslock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_capslock.c -------------------------------------------------------------------------------- /gui/greeter/greeter_item_capslock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_capslock.h -------------------------------------------------------------------------------- /gui/greeter/greeter_item_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_clock.c -------------------------------------------------------------------------------- /gui/greeter/greeter_item_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_clock.h -------------------------------------------------------------------------------- /gui/greeter/greeter_item_customlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_customlist.c -------------------------------------------------------------------------------- /gui/greeter/greeter_item_customlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_customlist.h -------------------------------------------------------------------------------- /gui/greeter/greeter_item_pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_pam.c -------------------------------------------------------------------------------- /gui/greeter/greeter_item_pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_pam.h -------------------------------------------------------------------------------- /gui/greeter/greeter_item_timed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_timed.c -------------------------------------------------------------------------------- /gui/greeter/greeter_item_timed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_timed.h -------------------------------------------------------------------------------- /gui/greeter/greeter_item_ulist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_ulist.c -------------------------------------------------------------------------------- /gui/greeter/greeter_item_ulist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_item_ulist.h -------------------------------------------------------------------------------- /gui/greeter/greeter_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_parser.c -------------------------------------------------------------------------------- /gui/greeter/greeter_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_parser.h -------------------------------------------------------------------------------- /gui/greeter/greeter_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_session.c -------------------------------------------------------------------------------- /gui/greeter/greeter_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_session.h -------------------------------------------------------------------------------- /gui/greeter/greeter_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_system.c -------------------------------------------------------------------------------- /gui/greeter/greeter_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/greeter_system.h -------------------------------------------------------------------------------- /gui/greeter/themes/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = circles 2 | -------------------------------------------------------------------------------- /gui/greeter/themes/circles/GdmGreeterTheme.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/themes/circles/GdmGreeterTheme.desktop -------------------------------------------------------------------------------- /gui/greeter/themes/circles/GdmGreeterTheme.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/themes/circles/GdmGreeterTheme.desktop.in -------------------------------------------------------------------------------- /gui/greeter/themes/circles/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/themes/circles/Makefile.am -------------------------------------------------------------------------------- /gui/greeter/themes/circles/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/themes/circles/background.svg -------------------------------------------------------------------------------- /gui/greeter/themes/circles/circles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/themes/circles/circles.xml -------------------------------------------------------------------------------- /gui/greeter/themes/circles/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/greeter/themes/circles/screenshot.png -------------------------------------------------------------------------------- /gui/mdmcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmcomm.c -------------------------------------------------------------------------------- /gui/mdmcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmcomm.h -------------------------------------------------------------------------------- /gui/mdmcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmcommon.c -------------------------------------------------------------------------------- /gui/mdmcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmcommon.h -------------------------------------------------------------------------------- /gui/mdmconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmconfig.c -------------------------------------------------------------------------------- /gui/mdmconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmconfig.h -------------------------------------------------------------------------------- /gui/mdmflexiserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmflexiserver.c -------------------------------------------------------------------------------- /gui/mdmflexiserver.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmflexiserver.desktop -------------------------------------------------------------------------------- /gui/mdmflexiserver.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmflexiserver.desktop.in -------------------------------------------------------------------------------- /gui/mdmgreeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmgreeter.c -------------------------------------------------------------------------------- /gui/mdmgreeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmgreeter.h -------------------------------------------------------------------------------- /gui/mdmlanguages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmlanguages.c -------------------------------------------------------------------------------- /gui/mdmlanguages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmlanguages.h -------------------------------------------------------------------------------- /gui/mdmlogin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmlogin.c -------------------------------------------------------------------------------- /gui/mdmsession.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmsession.c -------------------------------------------------------------------------------- /gui/mdmsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmsession.h -------------------------------------------------------------------------------- /gui/mdmsetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmsetup.c -------------------------------------------------------------------------------- /gui/mdmsetup.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmsetup.desktop -------------------------------------------------------------------------------- /gui/mdmsetup.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmsetup.desktop.in.in -------------------------------------------------------------------------------- /gui/mdmsetup.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmsetup.glade -------------------------------------------------------------------------------- /gui/mdmuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmuser.c -------------------------------------------------------------------------------- /gui/mdmuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmuser.h -------------------------------------------------------------------------------- /gui/mdmwebkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmwebkit.c -------------------------------------------------------------------------------- /gui/mdmwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmwm.c -------------------------------------------------------------------------------- /gui/mdmwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/mdmwm.h -------------------------------------------------------------------------------- /gui/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/misc.c -------------------------------------------------------------------------------- /gui/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/misc.h -------------------------------------------------------------------------------- /gui/modules/AccessDwellMouseEvents.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/modules/AccessDwellMouseEvents.in -------------------------------------------------------------------------------- /gui/modules/AccessKeyMouseEvents.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/modules/AccessKeyMouseEvents.in -------------------------------------------------------------------------------- /gui/modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/modules/Makefile.am -------------------------------------------------------------------------------- /gui/modules/dwellmouselistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/modules/dwellmouselistener.c -------------------------------------------------------------------------------- /gui/modules/keymouselistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/gui/modules/keymouselistener.c -------------------------------------------------------------------------------- /launchpad-po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/af.po -------------------------------------------------------------------------------- /launchpad-po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/am.po -------------------------------------------------------------------------------- /launchpad-po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ar.po -------------------------------------------------------------------------------- /launchpad-po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/az.po -------------------------------------------------------------------------------- /launchpad-po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/be.po -------------------------------------------------------------------------------- /launchpad-po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/bg.po -------------------------------------------------------------------------------- /launchpad-po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/bn.po -------------------------------------------------------------------------------- /launchpad-po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/bs.po -------------------------------------------------------------------------------- /launchpad-po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ca.po -------------------------------------------------------------------------------- /launchpad-po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/cs.po -------------------------------------------------------------------------------- /launchpad-po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/cy.po -------------------------------------------------------------------------------- /launchpad-po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/da.po -------------------------------------------------------------------------------- /launchpad-po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/de.po -------------------------------------------------------------------------------- /launchpad-po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/el.po -------------------------------------------------------------------------------- /launchpad-po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/en_AU.po -------------------------------------------------------------------------------- /launchpad-po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/en_CA.po -------------------------------------------------------------------------------- /launchpad-po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/en_GB.po -------------------------------------------------------------------------------- /launchpad-po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/eo.po -------------------------------------------------------------------------------- /launchpad-po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/es.po -------------------------------------------------------------------------------- /launchpad-po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/et.po -------------------------------------------------------------------------------- /launchpad-po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/eu.po -------------------------------------------------------------------------------- /launchpad-po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/fa.po -------------------------------------------------------------------------------- /launchpad-po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/fi.po -------------------------------------------------------------------------------- /launchpad-po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/fr.po -------------------------------------------------------------------------------- /launchpad-po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/fr_CA.po -------------------------------------------------------------------------------- /launchpad-po/frp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/frp.po -------------------------------------------------------------------------------- /launchpad-po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ga.po -------------------------------------------------------------------------------- /launchpad-po/gd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/gd.po -------------------------------------------------------------------------------- /launchpad-po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/gl.po -------------------------------------------------------------------------------- /launchpad-po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/he.po -------------------------------------------------------------------------------- /launchpad-po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/hi.po -------------------------------------------------------------------------------- /launchpad-po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/hr.po -------------------------------------------------------------------------------- /launchpad-po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/hu.po -------------------------------------------------------------------------------- /launchpad-po/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ia.po -------------------------------------------------------------------------------- /launchpad-po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/id.po -------------------------------------------------------------------------------- /launchpad-po/ii.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ii.po -------------------------------------------------------------------------------- /launchpad-po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/is.po -------------------------------------------------------------------------------- /launchpad-po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/it.po -------------------------------------------------------------------------------- /launchpad-po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ja.po -------------------------------------------------------------------------------- /launchpad-po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ka.po -------------------------------------------------------------------------------- /launchpad-po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/kab.po -------------------------------------------------------------------------------- /launchpad-po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/kk.po -------------------------------------------------------------------------------- /launchpad-po/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/km.po -------------------------------------------------------------------------------- /launchpad-po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ko.po -------------------------------------------------------------------------------- /launchpad-po/ksw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ksw.po -------------------------------------------------------------------------------- /launchpad-po/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ku.po -------------------------------------------------------------------------------- /launchpad-po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ky.po -------------------------------------------------------------------------------- /launchpad-po/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/lo.po -------------------------------------------------------------------------------- /launchpad-po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/lt.po -------------------------------------------------------------------------------- /launchpad-po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/lv.po -------------------------------------------------------------------------------- /launchpad-po/mdm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/mdm.pot -------------------------------------------------------------------------------- /launchpad-po/mg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/mg.po -------------------------------------------------------------------------------- /launchpad-po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ml.po -------------------------------------------------------------------------------- /launchpad-po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/mr.po -------------------------------------------------------------------------------- /launchpad-po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ms.po -------------------------------------------------------------------------------- /launchpad-po/mus.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/mus.po -------------------------------------------------------------------------------- /launchpad-po/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/my.po -------------------------------------------------------------------------------- /launchpad-po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/nb.po -------------------------------------------------------------------------------- /launchpad-po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/nds.po -------------------------------------------------------------------------------- /launchpad-po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ne.po -------------------------------------------------------------------------------- /launchpad-po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/nl.po -------------------------------------------------------------------------------- /launchpad-po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/nn.po -------------------------------------------------------------------------------- /launchpad-po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/oc.po -------------------------------------------------------------------------------- /launchpad-po/om.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/om.po -------------------------------------------------------------------------------- /launchpad-po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/pa.po -------------------------------------------------------------------------------- /launchpad-po/pap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/pap.po -------------------------------------------------------------------------------- /launchpad-po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/pl.po -------------------------------------------------------------------------------- /launchpad-po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/pt.po -------------------------------------------------------------------------------- /launchpad-po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/pt_BR.po -------------------------------------------------------------------------------- /launchpad-po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ro.po -------------------------------------------------------------------------------- /launchpad-po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ru.po -------------------------------------------------------------------------------- /launchpad-po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/rw.po -------------------------------------------------------------------------------- /launchpad-po/sc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/sc.po -------------------------------------------------------------------------------- /launchpad-po/shn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/shn.po -------------------------------------------------------------------------------- /launchpad-po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/si.po -------------------------------------------------------------------------------- /launchpad-po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/sk.po -------------------------------------------------------------------------------- /launchpad-po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/sl.po -------------------------------------------------------------------------------- /launchpad-po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/sq.po -------------------------------------------------------------------------------- /launchpad-po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/sr.po -------------------------------------------------------------------------------- /launchpad-po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/sr@latin.po -------------------------------------------------------------------------------- /launchpad-po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/sv.po -------------------------------------------------------------------------------- /launchpad-po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ta.po -------------------------------------------------------------------------------- /launchpad-po/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/tg.po -------------------------------------------------------------------------------- /launchpad-po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/th.po -------------------------------------------------------------------------------- /launchpad-po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/tr.po -------------------------------------------------------------------------------- /launchpad-po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/uk.po -------------------------------------------------------------------------------- /launchpad-po/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/ur.po -------------------------------------------------------------------------------- /launchpad-po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/uz.po -------------------------------------------------------------------------------- /launchpad-po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/vi.po -------------------------------------------------------------------------------- /launchpad-po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/zh_CN.po -------------------------------------------------------------------------------- /launchpad-po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/zh_HK.po -------------------------------------------------------------------------------- /launchpad-po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/launchpad-po/zh_TW.po -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/makepot -------------------------------------------------------------------------------- /mdm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/mdm.pot -------------------------------------------------------------------------------- /pixmaps/24x24/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/24x24/Makefile.am -------------------------------------------------------------------------------- /pixmaps/24x24/preferences-desktop-locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/24x24/preferences-desktop-locale.png -------------------------------------------------------------------------------- /pixmaps/24x24/preferences-desktop-remote-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/24x24/preferences-desktop-remote-desktop.png -------------------------------------------------------------------------------- /pixmaps/24x24/system-log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/24x24/system-log-out.png -------------------------------------------------------------------------------- /pixmaps/24x24/system-restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/24x24/system-restart.png -------------------------------------------------------------------------------- /pixmaps/24x24/system-shut-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/24x24/system-shut-down.png -------------------------------------------------------------------------------- /pixmaps/24x24/system-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/24x24/system-suspend.png -------------------------------------------------------------------------------- /pixmaps/24x24/user-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/24x24/user-desktop.png -------------------------------------------------------------------------------- /pixmaps/48x48/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/48x48/Makefile.am -------------------------------------------------------------------------------- /pixmaps/48x48/mdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/48x48/mdm.png -------------------------------------------------------------------------------- /pixmaps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/Makefile.am -------------------------------------------------------------------------------- /pixmaps/nobody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/nobody.png -------------------------------------------------------------------------------- /pixmaps/nohost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/pixmaps/nohost.png -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/af.po -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/am.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/as.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/de.po -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/dz.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/fr_CA.po -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/frp.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/gd.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ia.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ii.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ii.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/kab.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/km.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ksw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ksw.po -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ku.po -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ky.po -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/lo.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/mg.po -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/mi.po -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/mn.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/mus.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/mus.po -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/my.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/nds.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/nso.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/nso.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/om.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/om.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/pap.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/po-files/mdm-de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/po-files/mdm-de.po -------------------------------------------------------------------------------- /po/po-files/mdm-fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/po-files/mdm-fr.po -------------------------------------------------------------------------------- /po/po-files/mdm-pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/po-files/mdm-pl.po -------------------------------------------------------------------------------- /po/po-files/mdm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/po-files/mdm.pot -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/rw.po -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/sc.po -------------------------------------------------------------------------------- /po/shn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/shn.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/sr@Latn.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/te.po -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/tg.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/ur.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/uz@cyrillic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/uz@cyrillic.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/wa.po -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/xh.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/po/zu.po -------------------------------------------------------------------------------- /utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/Makefile.am -------------------------------------------------------------------------------- /utils/mdm-dmx-reconnect-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdm-dmx-reconnect-proxy.c -------------------------------------------------------------------------------- /utils/mdm-restart.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdm-restart.in -------------------------------------------------------------------------------- /utils/mdm-safe-restart.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdm-safe-restart.in -------------------------------------------------------------------------------- /utils/mdm-ssh-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdm-ssh-session -------------------------------------------------------------------------------- /utils/mdm-stop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdm-stop.in -------------------------------------------------------------------------------- /utils/mdmaskpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdmaskpass.c -------------------------------------------------------------------------------- /utils/mdmopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdmopen.c -------------------------------------------------------------------------------- /utils/mdmprefetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdmprefetch.c -------------------------------------------------------------------------------- /utils/mdmsetup-pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdmsetup-pam -------------------------------------------------------------------------------- /utils/mdmsetup-security.in: -------------------------------------------------------------------------------- 1 | USER=root 2 | PROGRAM=@sbindir@/mdmsetup 3 | SESSION=true 4 | FALLBACK=false 5 | 6 | -------------------------------------------------------------------------------- /utils/mdmtranslate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mdm/HEAD/utils/mdmtranslate.c --------------------------------------------------------------------------------