├── .build.yml ├── .github ├── FUNDING.yml └── issue_template.md ├── .travis.yml ├── .tx ├── config └── config_20221028215505.bak ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── data ├── Makefile.am ├── icons │ ├── 16x16 │ │ └── mate-notification-properties.png │ ├── 22x22 │ │ └── mate-notification-properties.png │ ├── 24x24 │ │ └── mate-notification-properties.png │ ├── 32x32 │ │ └── mate-notification-properties.png │ ├── 48x48 │ │ └── mate-notification-properties.png │ └── scalable │ │ └── mate-notification-properties.svg ├── mate-notification-daemon.desktop.in.in ├── mate-notification-properties.desktop.in ├── org.freedesktop.mate.Notifications.service.in ├── org.mate.NotificationDaemon.gschema.xml.in ├── org.mate.applets.MateNotificationApplet.desktop.in.in └── org.mate.panel.applet.MateNotificationAppletFactory.service.in ├── git.mk ├── makepot ├── mate-notification-daemon.pot ├── po ├── LINGUAS ├── Makevars ├── POTFILES.in ├── af.po ├── am.po ├── an.po ├── ar.po ├── as.po ├── ast.po ├── az.po ├── be.po ├── bg.po ├── bn.po ├── bn_IN.po ├── boldquot.sed ├── br.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── cmn.po ├── crh.po ├── cs.po ├── csb.po ├── cy.po ├── da.po ├── de.po ├── dz.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── es_AR.po ├── es_CL.po ├── es_CO.po ├── es_CR.po ├── es_DO.po ├── es_EC.po ├── es_ES.po ├── es_MX.po ├── es_NI.po ├── es_PA.po ├── es_PE.po ├── es_PR.po ├── es_SV.po ├── es_UY.po ├── es_VE.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fr_CA.po ├── frp.po ├── fur.po ├── fy.po ├── ga.po ├── gl.po ├── gnome-copyrights.txt ├── gu.po ├── ha.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── is.po ├── it.po ├── ja.po ├── jv.po ├── ka.po ├── kab.po ├── kk.po ├── km.po ├── kn.po ├── ko.po ├── ks.po ├── ku.po ├── ku_IQ.po ├── ky.po ├── lb.po ├── li.po ├── lt.po ├── lv.po ├── mai.po ├── mg.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mr.po ├── ms.po ├── nan.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── nso.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── ps.po ├── pt.po ├── pt_BR.po ├── quot.sed ├── ro.po ├── ru.po ├── sc.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tk.po ├── tr.po ├── tt.po ├── tzm.po ├── ug.po ├── uk.po ├── ur.po ├── uz.po ├── vi.po ├── wa.po ├── xh.po ├── yo.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po └── src ├── Makefile.am ├── capplet ├── Makefile.am ├── mate-notification-applet-dbus.c ├── mate-notification-applet-dbus.h ├── mate-notification-applet-history.c ├── mate-notification-applet-history.h ├── mate-notification-applet-menu.xml ├── mate-notification-applet.c ├── mate-notification-properties.1 ├── mate-notification-properties.c ├── mate-notification-properties.ui ├── org.mate.notifications.properties.gresource.xml └── org.mate.panel.applet.notifications.gresource.xml ├── common └── constants.h ├── daemon ├── Makefile.am ├── daemon.c ├── daemon.h ├── engines.c ├── engines.h ├── mnd-daemon.c ├── notificationdaemon.xml ├── sound.c ├── sound.h ├── stack.c ├── stack.h ├── wayland.c └── wayland.h └── themes ├── Makefile.am ├── coco ├── Makefile.am └── coco-theme.c ├── nodoka ├── Makefile.am └── nodoka-theme.c ├── slider ├── Makefile.am └── theme.c └── standard ├── Makefile.am └── theme.c /.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/.build.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/.tx/config -------------------------------------------------------------------------------- /.tx/config_20221028215505.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/.tx/config_20221028215505.bak -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/README -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/configure.ac -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/icons/16x16/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/icons/16x16/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/22x22/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/icons/22x22/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/24x24/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/icons/24x24/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/32x32/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/icons/32x32/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/48x48/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/icons/48x48/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/scalable/mate-notification-properties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/icons/scalable/mate-notification-properties.svg -------------------------------------------------------------------------------- /data/mate-notification-daemon.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/mate-notification-daemon.desktop.in.in -------------------------------------------------------------------------------- /data/mate-notification-properties.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/mate-notification-properties.desktop.in -------------------------------------------------------------------------------- /data/org.freedesktop.mate.Notifications.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/org.freedesktop.mate.Notifications.service.in -------------------------------------------------------------------------------- /data/org.mate.NotificationDaemon.gschema.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/org.mate.NotificationDaemon.gschema.xml.in -------------------------------------------------------------------------------- /data/org.mate.applets.MateNotificationApplet.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/org.mate.applets.MateNotificationApplet.desktop.in.in -------------------------------------------------------------------------------- /data/org.mate.panel.applet.MateNotificationAppletFactory.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/data/org.mate.panel.applet.MateNotificationAppletFactory.service.in -------------------------------------------------------------------------------- /git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/git.mk -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/makepot -------------------------------------------------------------------------------- /mate-notification-daemon.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/mate-notification-daemon.pot -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/af.po -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/am.po -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/an.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/as.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/boldquot.sed -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/br.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/cmn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/cmn.po -------------------------------------------------------------------------------- /po/crh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/crh.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/csb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/csb.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/de.po -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/dz.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_AR.po -------------------------------------------------------------------------------- /po/es_CL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_CL.po -------------------------------------------------------------------------------- /po/es_CO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_CO.po -------------------------------------------------------------------------------- /po/es_CR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_CR.po -------------------------------------------------------------------------------- /po/es_DO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_DO.po -------------------------------------------------------------------------------- /po/es_EC.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_EC.po -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_MX.po -------------------------------------------------------------------------------- /po/es_NI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_NI.po -------------------------------------------------------------------------------- /po/es_PA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_PA.po -------------------------------------------------------------------------------- /po/es_PE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_PE.po -------------------------------------------------------------------------------- /po/es_PR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_PR.po -------------------------------------------------------------------------------- /po/es_SV.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_SV.po -------------------------------------------------------------------------------- /po/es_UY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_UY.po -------------------------------------------------------------------------------- /po/es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/es_VE.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/fr_CA.po -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/frp.po -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/fur.po -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/fy.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gnome-copyrights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/gnome-copyrights.txt -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ha.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ia.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ig.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/jv.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/kab.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/km.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ks.po -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ku.po -------------------------------------------------------------------------------- /po/ku_IQ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ku_IQ.po -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ky.po -------------------------------------------------------------------------------- /po/lb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/lb.po -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/li.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/mai.po -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/mg.po -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/mi.po -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/mn.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/nan.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/nds.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/nso.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/nso.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ps.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/quot.sed -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/sc.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/tk.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/tt.po -------------------------------------------------------------------------------- /po/tzm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/tzm.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/ur.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/wa.po -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/xh.po -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/yo.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/po/zu.po -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = daemon themes capplet 2 | 3 | -include $(top_srcdir)/git.mk 4 | -------------------------------------------------------------------------------- /src/capplet/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/Makefile.am -------------------------------------------------------------------------------- /src/capplet/mate-notification-applet-dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-applet-dbus.c -------------------------------------------------------------------------------- /src/capplet/mate-notification-applet-dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-applet-dbus.h -------------------------------------------------------------------------------- /src/capplet/mate-notification-applet-history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-applet-history.c -------------------------------------------------------------------------------- /src/capplet/mate-notification-applet-history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-applet-history.h -------------------------------------------------------------------------------- /src/capplet/mate-notification-applet-menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-applet-menu.xml -------------------------------------------------------------------------------- /src/capplet/mate-notification-applet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-applet.c -------------------------------------------------------------------------------- /src/capplet/mate-notification-properties.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-properties.1 -------------------------------------------------------------------------------- /src/capplet/mate-notification-properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-properties.c -------------------------------------------------------------------------------- /src/capplet/mate-notification-properties.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/mate-notification-properties.ui -------------------------------------------------------------------------------- /src/capplet/org.mate.notifications.properties.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/org.mate.notifications.properties.gresource.xml -------------------------------------------------------------------------------- /src/capplet/org.mate.panel.applet.notifications.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/capplet/org.mate.panel.applet.notifications.gresource.xml -------------------------------------------------------------------------------- /src/common/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/common/constants.h -------------------------------------------------------------------------------- /src/daemon/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/Makefile.am -------------------------------------------------------------------------------- /src/daemon/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/daemon.c -------------------------------------------------------------------------------- /src/daemon/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/daemon.h -------------------------------------------------------------------------------- /src/daemon/engines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/engines.c -------------------------------------------------------------------------------- /src/daemon/engines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/engines.h -------------------------------------------------------------------------------- /src/daemon/mnd-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/mnd-daemon.c -------------------------------------------------------------------------------- /src/daemon/notificationdaemon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/notificationdaemon.xml -------------------------------------------------------------------------------- /src/daemon/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/sound.c -------------------------------------------------------------------------------- /src/daemon/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/sound.h -------------------------------------------------------------------------------- /src/daemon/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/stack.c -------------------------------------------------------------------------------- /src/daemon/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/stack.h -------------------------------------------------------------------------------- /src/daemon/wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/wayland.c -------------------------------------------------------------------------------- /src/daemon/wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/daemon/wayland.h -------------------------------------------------------------------------------- /src/themes/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = coco nodoka slider standard 2 | 3 | -include $(top_srcdir)/git.mk 4 | -------------------------------------------------------------------------------- /src/themes/coco/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/themes/coco/Makefile.am -------------------------------------------------------------------------------- /src/themes/coco/coco-theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/themes/coco/coco-theme.c -------------------------------------------------------------------------------- /src/themes/nodoka/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/themes/nodoka/Makefile.am -------------------------------------------------------------------------------- /src/themes/nodoka/nodoka-theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/themes/nodoka/nodoka-theme.c -------------------------------------------------------------------------------- /src/themes/slider/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/themes/slider/Makefile.am -------------------------------------------------------------------------------- /src/themes/slider/theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/themes/slider/theme.c -------------------------------------------------------------------------------- /src/themes/standard/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/themes/standard/Makefile.am -------------------------------------------------------------------------------- /src/themes/standard/theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/HEAD/src/themes/standard/theme.c --------------------------------------------------------------------------------