├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── gettext.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── application.css ├── meson.build ├── notifications.gresource.xml ├── notifications.gschema.xml └── notifications.metainfo.xml.in ├── demo ├── Application.vala ├── MainWindow.vala ├── io.elementary.notifications.demo.desktop └── meson.build ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── aa.po │ ├── ab.po │ ├── ace.po │ ├── ae.po │ ├── af.po │ ├── ak.po │ ├── am.po │ ├── an.po │ ├── ar.po │ ├── as.po │ ├── ast.po │ ├── av.po │ ├── ay.po │ ├── az.po │ ├── ba.po │ ├── be.po │ ├── bg.po │ ├── bh.po │ ├── bi.po │ ├── bm.po │ ├── bn.po │ ├── bo.po │ ├── br.po │ ├── bs.po │ ├── ca.po │ ├── ca@valencia.po │ ├── ce.po │ ├── ch.po │ ├── ckb.po │ ├── co.po │ ├── cr.po │ ├── cs.po │ ├── cu.po │ ├── cv.po │ ├── cy.po │ ├── da.po │ ├── de.po │ ├── dv.po │ ├── dz.po │ ├── ee.po │ ├── el.po │ ├── en_AU.po │ ├── en_CA.po │ ├── en_GB.po │ ├── en_ZA.po │ ├── eo.po │ ├── es.po │ ├── et.po │ ├── eu.po │ ├── extra.pot │ ├── fa.po │ ├── ff.po │ ├── fi.po │ ├── fil.po │ ├── fj.po │ ├── fo.po │ ├── fr.po │ ├── fr_CA.po │ ├── frp.po │ ├── fy.po │ ├── ga.po │ ├── gd.po │ ├── gl.po │ ├── gn.po │ ├── gu.po │ ├── gv.po │ ├── ha.po │ ├── he.po │ ├── hi.po │ ├── ho.po │ ├── hr.po │ ├── ht.po │ ├── hu.po │ ├── hy.po │ ├── hz.po │ ├── ia.po │ ├── id.po │ ├── id_ID.po │ ├── ie.po │ ├── ig.po │ ├── ii.po │ ├── ik.po │ ├── io.po │ ├── is.po │ ├── it.po │ ├── iu.po │ ├── ja.po │ ├── jv.po │ ├── ka.po │ ├── kg.po │ ├── ki.po │ ├── kj.po │ ├── kk.po │ ├── kl.po │ ├── km.po │ ├── kn.po │ ├── ko.po │ ├── kr.po │ ├── ks.po │ ├── ku.po │ ├── kv.po │ ├── kw.po │ ├── ky.po │ ├── la.po │ ├── lb.po │ ├── lg.po │ ├── li.po │ ├── ln.po │ ├── lo.po │ ├── lt.po │ ├── lu.po │ ├── lv.po │ ├── meson.build │ ├── mg.po │ ├── mh.po │ ├── mi.po │ ├── mk.po │ ├── ml.po │ ├── mn.po │ ├── mo.po │ ├── mr.po │ ├── ms.po │ ├── mt.po │ ├── my.po │ ├── na.po │ ├── nb.po │ ├── nd.po │ ├── ne.po │ ├── ng.po │ ├── nl.po │ ├── nn.po │ ├── no.po │ ├── nr.po │ ├── nv.po │ ├── ny.po │ ├── oc.po │ ├── oj.po │ ├── om.po │ ├── or.po │ ├── os.po │ ├── pa.po │ ├── pap.po │ ├── pi.po │ ├── pl.po │ ├── ps.po │ ├── pt.po │ ├── pt_BR.po │ ├── qu.po │ ├── rm.po │ ├── rn.po │ ├── ro.po │ ├── ru.po │ ├── rue.po │ ├── rw.po │ ├── sa.po │ ├── sc.po │ ├── sco.po │ ├── sd.po │ ├── se.po │ ├── sg.po │ ├── si.po │ ├── sk.po │ ├── sl.po │ ├── sm.po │ ├── sma.po │ ├── sn.po │ ├── so.po │ ├── sq.po │ ├── sr.po │ ├── sr@latin.po │ ├── ss.po │ ├── st.po │ ├── su.po │ ├── sv.po │ ├── sw.po │ ├── szl.po │ ├── ta.po │ ├── te.po │ ├── tg.po │ ├── th.po │ ├── ti.po │ ├── tk.po │ ├── tl.po │ ├── tn.po │ ├── to.po │ ├── tr.po │ ├── ts.po │ ├── tt.po │ ├── tw.po │ ├── ty.po │ ├── ug.po │ ├── uk.po │ ├── ur.po │ ├── uz.po │ ├── ve.po │ ├── vi.po │ ├── vo.po │ ├── wa.po │ ├── wo.po │ ├── xh.po │ ├── yi.po │ ├── yo.po │ ├── za.po │ ├── zh.po │ ├── zh_CN.po │ ├── zh_HANS.po │ ├── zh_HANT.po │ ├── zh_HK.po │ ├── zh_TW.po │ └── zu.po └── meson.build ├── protocol ├── meson.build ├── pantheon-desktop-shell-v1.xml ├── pantheon-desktop-shell.deps └── pantheon-desktop-shell.vapi └── src ├── AbstractBubble.vala ├── Application.vala ├── Bubble.vala ├── CanberraGtk4.vala ├── Confirmation.vala ├── DBus.vala ├── FdoActionGroup.vala ├── Notification.vala └── Widgets └── MaskedImage.vala /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/gettext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/.github/workflows/gettext.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/README.md -------------------------------------------------------------------------------- /data/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/data/application.css -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/notifications.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/data/notifications.gresource.xml -------------------------------------------------------------------------------- /data/notifications.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/data/notifications.gschema.xml -------------------------------------------------------------------------------- /data/notifications.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/data/notifications.metainfo.xml.in -------------------------------------------------------------------------------- /demo/Application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/demo/Application.vala -------------------------------------------------------------------------------- /demo/MainWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/demo/MainWindow.vala -------------------------------------------------------------------------------- /demo/io.elementary.notifications.demo.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/demo/io.elementary.notifications.demo.desktop -------------------------------------------------------------------------------- /demo/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/demo/meson.build -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/LINGUAS -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/notifications.metainfo.xml.in 2 | -------------------------------------------------------------------------------- /po/extra/aa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/aa.po -------------------------------------------------------------------------------- /po/extra/ab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ab.po -------------------------------------------------------------------------------- /po/extra/ace.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ace.po -------------------------------------------------------------------------------- /po/extra/ae.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ae.po -------------------------------------------------------------------------------- /po/extra/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/af.po -------------------------------------------------------------------------------- /po/extra/ak.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ak.po -------------------------------------------------------------------------------- /po/extra/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/am.po -------------------------------------------------------------------------------- /po/extra/an.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/an.po -------------------------------------------------------------------------------- /po/extra/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ar.po -------------------------------------------------------------------------------- /po/extra/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/as.po -------------------------------------------------------------------------------- /po/extra/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ast.po -------------------------------------------------------------------------------- /po/extra/av.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/av.po -------------------------------------------------------------------------------- /po/extra/ay.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ay.po -------------------------------------------------------------------------------- /po/extra/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/az.po -------------------------------------------------------------------------------- /po/extra/ba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ba.po -------------------------------------------------------------------------------- /po/extra/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/be.po -------------------------------------------------------------------------------- /po/extra/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/bg.po -------------------------------------------------------------------------------- /po/extra/bh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/bh.po -------------------------------------------------------------------------------- /po/extra/bi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/bi.po -------------------------------------------------------------------------------- /po/extra/bm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/bm.po -------------------------------------------------------------------------------- /po/extra/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/bn.po -------------------------------------------------------------------------------- /po/extra/bo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/bo.po -------------------------------------------------------------------------------- /po/extra/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/br.po -------------------------------------------------------------------------------- /po/extra/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/bs.po -------------------------------------------------------------------------------- /po/extra/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ca.po -------------------------------------------------------------------------------- /po/extra/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ca@valencia.po -------------------------------------------------------------------------------- /po/extra/ce.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ce.po -------------------------------------------------------------------------------- /po/extra/ch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ch.po -------------------------------------------------------------------------------- /po/extra/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ckb.po -------------------------------------------------------------------------------- /po/extra/co.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/co.po -------------------------------------------------------------------------------- /po/extra/cr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/cr.po -------------------------------------------------------------------------------- /po/extra/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/cs.po -------------------------------------------------------------------------------- /po/extra/cu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/cu.po -------------------------------------------------------------------------------- /po/extra/cv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/cv.po -------------------------------------------------------------------------------- /po/extra/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/cy.po -------------------------------------------------------------------------------- /po/extra/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/da.po -------------------------------------------------------------------------------- /po/extra/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/de.po -------------------------------------------------------------------------------- /po/extra/dv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/dv.po -------------------------------------------------------------------------------- /po/extra/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/dz.po -------------------------------------------------------------------------------- /po/extra/ee.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ee.po -------------------------------------------------------------------------------- /po/extra/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/el.po -------------------------------------------------------------------------------- /po/extra/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/en_AU.po -------------------------------------------------------------------------------- /po/extra/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/en_CA.po -------------------------------------------------------------------------------- /po/extra/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/en_GB.po -------------------------------------------------------------------------------- /po/extra/en_ZA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/en_ZA.po -------------------------------------------------------------------------------- /po/extra/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/eo.po -------------------------------------------------------------------------------- /po/extra/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/es.po -------------------------------------------------------------------------------- /po/extra/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/et.po -------------------------------------------------------------------------------- /po/extra/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/eu.po -------------------------------------------------------------------------------- /po/extra/extra.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/extra.pot -------------------------------------------------------------------------------- /po/extra/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/fa.po -------------------------------------------------------------------------------- /po/extra/ff.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ff.po -------------------------------------------------------------------------------- /po/extra/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/fi.po -------------------------------------------------------------------------------- /po/extra/fil.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/fil.po -------------------------------------------------------------------------------- /po/extra/fj.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/fj.po -------------------------------------------------------------------------------- /po/extra/fo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/fo.po -------------------------------------------------------------------------------- /po/extra/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/fr.po -------------------------------------------------------------------------------- /po/extra/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/fr_CA.po -------------------------------------------------------------------------------- /po/extra/frp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/frp.po -------------------------------------------------------------------------------- /po/extra/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/fy.po -------------------------------------------------------------------------------- /po/extra/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ga.po -------------------------------------------------------------------------------- /po/extra/gd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/gd.po -------------------------------------------------------------------------------- /po/extra/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/gl.po -------------------------------------------------------------------------------- /po/extra/gn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/gn.po -------------------------------------------------------------------------------- /po/extra/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/gu.po -------------------------------------------------------------------------------- /po/extra/gv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/gv.po -------------------------------------------------------------------------------- /po/extra/ha.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ha.po -------------------------------------------------------------------------------- /po/extra/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/he.po -------------------------------------------------------------------------------- /po/extra/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/hi.po -------------------------------------------------------------------------------- /po/extra/ho.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ho.po -------------------------------------------------------------------------------- /po/extra/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/hr.po -------------------------------------------------------------------------------- /po/extra/ht.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ht.po -------------------------------------------------------------------------------- /po/extra/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/hu.po -------------------------------------------------------------------------------- /po/extra/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/hy.po -------------------------------------------------------------------------------- /po/extra/hz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/hz.po -------------------------------------------------------------------------------- /po/extra/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ia.po -------------------------------------------------------------------------------- /po/extra/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/id.po -------------------------------------------------------------------------------- /po/extra/id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/id_ID.po -------------------------------------------------------------------------------- /po/extra/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ie.po -------------------------------------------------------------------------------- /po/extra/ig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ig.po -------------------------------------------------------------------------------- /po/extra/ii.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ii.po -------------------------------------------------------------------------------- /po/extra/ik.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ik.po -------------------------------------------------------------------------------- /po/extra/io.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/io.po -------------------------------------------------------------------------------- /po/extra/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/is.po -------------------------------------------------------------------------------- /po/extra/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/it.po -------------------------------------------------------------------------------- /po/extra/iu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/iu.po -------------------------------------------------------------------------------- /po/extra/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ja.po -------------------------------------------------------------------------------- /po/extra/jv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/jv.po -------------------------------------------------------------------------------- /po/extra/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ka.po -------------------------------------------------------------------------------- /po/extra/kg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/kg.po -------------------------------------------------------------------------------- /po/extra/ki.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ki.po -------------------------------------------------------------------------------- /po/extra/kj.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/kj.po -------------------------------------------------------------------------------- /po/extra/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/kk.po -------------------------------------------------------------------------------- /po/extra/kl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/kl.po -------------------------------------------------------------------------------- /po/extra/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/km.po -------------------------------------------------------------------------------- /po/extra/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/kn.po -------------------------------------------------------------------------------- /po/extra/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ko.po -------------------------------------------------------------------------------- /po/extra/kr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/kr.po -------------------------------------------------------------------------------- /po/extra/ks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ks.po -------------------------------------------------------------------------------- /po/extra/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ku.po -------------------------------------------------------------------------------- /po/extra/kv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/kv.po -------------------------------------------------------------------------------- /po/extra/kw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/kw.po -------------------------------------------------------------------------------- /po/extra/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ky.po -------------------------------------------------------------------------------- /po/extra/la.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/la.po -------------------------------------------------------------------------------- /po/extra/lb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/lb.po -------------------------------------------------------------------------------- /po/extra/lg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/lg.po -------------------------------------------------------------------------------- /po/extra/li.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/li.po -------------------------------------------------------------------------------- /po/extra/ln.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ln.po -------------------------------------------------------------------------------- /po/extra/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/lo.po -------------------------------------------------------------------------------- /po/extra/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/lt.po -------------------------------------------------------------------------------- /po/extra/lu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/lu.po -------------------------------------------------------------------------------- /po/extra/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/lv.po -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/meson.build -------------------------------------------------------------------------------- /po/extra/mg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/mg.po -------------------------------------------------------------------------------- /po/extra/mh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/mh.po -------------------------------------------------------------------------------- /po/extra/mi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/mi.po -------------------------------------------------------------------------------- /po/extra/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/mk.po -------------------------------------------------------------------------------- /po/extra/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ml.po -------------------------------------------------------------------------------- /po/extra/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/mn.po -------------------------------------------------------------------------------- /po/extra/mo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/mo.po -------------------------------------------------------------------------------- /po/extra/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/mr.po -------------------------------------------------------------------------------- /po/extra/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ms.po -------------------------------------------------------------------------------- /po/extra/mt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/mt.po -------------------------------------------------------------------------------- /po/extra/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/my.po -------------------------------------------------------------------------------- /po/extra/na.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/na.po -------------------------------------------------------------------------------- /po/extra/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/nb.po -------------------------------------------------------------------------------- /po/extra/nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/nd.po -------------------------------------------------------------------------------- /po/extra/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ne.po -------------------------------------------------------------------------------- /po/extra/ng.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ng.po -------------------------------------------------------------------------------- /po/extra/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/nl.po -------------------------------------------------------------------------------- /po/extra/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/nn.po -------------------------------------------------------------------------------- /po/extra/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/no.po -------------------------------------------------------------------------------- /po/extra/nr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/nr.po -------------------------------------------------------------------------------- /po/extra/nv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/nv.po -------------------------------------------------------------------------------- /po/extra/ny.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ny.po -------------------------------------------------------------------------------- /po/extra/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/oc.po -------------------------------------------------------------------------------- /po/extra/oj.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/oj.po -------------------------------------------------------------------------------- /po/extra/om.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/om.po -------------------------------------------------------------------------------- /po/extra/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/or.po -------------------------------------------------------------------------------- /po/extra/os.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/os.po -------------------------------------------------------------------------------- /po/extra/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/pa.po -------------------------------------------------------------------------------- /po/extra/pap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/pap.po -------------------------------------------------------------------------------- /po/extra/pi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/pi.po -------------------------------------------------------------------------------- /po/extra/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/pl.po -------------------------------------------------------------------------------- /po/extra/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ps.po -------------------------------------------------------------------------------- /po/extra/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/pt.po -------------------------------------------------------------------------------- /po/extra/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/pt_BR.po -------------------------------------------------------------------------------- /po/extra/qu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/qu.po -------------------------------------------------------------------------------- /po/extra/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/rm.po -------------------------------------------------------------------------------- /po/extra/rn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/rn.po -------------------------------------------------------------------------------- /po/extra/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ro.po -------------------------------------------------------------------------------- /po/extra/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ru.po -------------------------------------------------------------------------------- /po/extra/rue.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/rue.po -------------------------------------------------------------------------------- /po/extra/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/rw.po -------------------------------------------------------------------------------- /po/extra/sa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sa.po -------------------------------------------------------------------------------- /po/extra/sc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sc.po -------------------------------------------------------------------------------- /po/extra/sco.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sco.po -------------------------------------------------------------------------------- /po/extra/sd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sd.po -------------------------------------------------------------------------------- /po/extra/se.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/se.po -------------------------------------------------------------------------------- /po/extra/sg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sg.po -------------------------------------------------------------------------------- /po/extra/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/si.po -------------------------------------------------------------------------------- /po/extra/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sk.po -------------------------------------------------------------------------------- /po/extra/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sl.po -------------------------------------------------------------------------------- /po/extra/sm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sm.po -------------------------------------------------------------------------------- /po/extra/sma.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sma.po -------------------------------------------------------------------------------- /po/extra/sn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sn.po -------------------------------------------------------------------------------- /po/extra/so.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/so.po -------------------------------------------------------------------------------- /po/extra/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sq.po -------------------------------------------------------------------------------- /po/extra/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sr.po -------------------------------------------------------------------------------- /po/extra/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sr@latin.po -------------------------------------------------------------------------------- /po/extra/ss.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ss.po -------------------------------------------------------------------------------- /po/extra/st.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/st.po -------------------------------------------------------------------------------- /po/extra/su.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/su.po -------------------------------------------------------------------------------- /po/extra/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sv.po -------------------------------------------------------------------------------- /po/extra/sw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/sw.po -------------------------------------------------------------------------------- /po/extra/szl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/szl.po -------------------------------------------------------------------------------- /po/extra/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ta.po -------------------------------------------------------------------------------- /po/extra/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/te.po -------------------------------------------------------------------------------- /po/extra/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/tg.po -------------------------------------------------------------------------------- /po/extra/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/th.po -------------------------------------------------------------------------------- /po/extra/ti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ti.po -------------------------------------------------------------------------------- /po/extra/tk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/tk.po -------------------------------------------------------------------------------- /po/extra/tl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/tl.po -------------------------------------------------------------------------------- /po/extra/tn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/tn.po -------------------------------------------------------------------------------- /po/extra/to.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/to.po -------------------------------------------------------------------------------- /po/extra/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/tr.po -------------------------------------------------------------------------------- /po/extra/ts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ts.po -------------------------------------------------------------------------------- /po/extra/tt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/tt.po -------------------------------------------------------------------------------- /po/extra/tw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/tw.po -------------------------------------------------------------------------------- /po/extra/ty.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ty.po -------------------------------------------------------------------------------- /po/extra/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ug.po -------------------------------------------------------------------------------- /po/extra/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/uk.po -------------------------------------------------------------------------------- /po/extra/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ur.po -------------------------------------------------------------------------------- /po/extra/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/uz.po -------------------------------------------------------------------------------- /po/extra/ve.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/ve.po -------------------------------------------------------------------------------- /po/extra/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/vi.po -------------------------------------------------------------------------------- /po/extra/vo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/vo.po -------------------------------------------------------------------------------- /po/extra/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/wa.po -------------------------------------------------------------------------------- /po/extra/wo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/wo.po -------------------------------------------------------------------------------- /po/extra/xh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/xh.po -------------------------------------------------------------------------------- /po/extra/yi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/yi.po -------------------------------------------------------------------------------- /po/extra/yo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/yo.po -------------------------------------------------------------------------------- /po/extra/za.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/za.po -------------------------------------------------------------------------------- /po/extra/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/zh.po -------------------------------------------------------------------------------- /po/extra/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/zh_CN.po -------------------------------------------------------------------------------- /po/extra/zh_HANS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/zh_HANS.po -------------------------------------------------------------------------------- /po/extra/zh_HANT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/zh_HANT.po -------------------------------------------------------------------------------- /po/extra/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/zh_HK.po -------------------------------------------------------------------------------- /po/extra/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/zh_TW.po -------------------------------------------------------------------------------- /po/extra/zu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/po/extra/zu.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | subdir('extra') 2 | -------------------------------------------------------------------------------- /protocol/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/protocol/meson.build -------------------------------------------------------------------------------- /protocol/pantheon-desktop-shell-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/protocol/pantheon-desktop-shell-v1.xml -------------------------------------------------------------------------------- /protocol/pantheon-desktop-shell.deps: -------------------------------------------------------------------------------- 1 | wayland-client 2 | -------------------------------------------------------------------------------- /protocol/pantheon-desktop-shell.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/protocol/pantheon-desktop-shell.vapi -------------------------------------------------------------------------------- /src/AbstractBubble.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/AbstractBubble.vala -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/Application.vala -------------------------------------------------------------------------------- /src/Bubble.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/Bubble.vala -------------------------------------------------------------------------------- /src/CanberraGtk4.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/CanberraGtk4.vala -------------------------------------------------------------------------------- /src/Confirmation.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/Confirmation.vala -------------------------------------------------------------------------------- /src/DBus.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/DBus.vala -------------------------------------------------------------------------------- /src/FdoActionGroup.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/FdoActionGroup.vala -------------------------------------------------------------------------------- /src/Notification.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/Notification.vala -------------------------------------------------------------------------------- /src/Widgets/MaskedImage.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/notifications/HEAD/src/Widgets/MaskedImage.vala --------------------------------------------------------------------------------