├── .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 ├── 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 ├── 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-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: -------------------------------------------------------------------------------- 1 | ########################################################## 2 | # THE FOLLOWING LINES IS USED BY docker-build 3 | ########################################################## 4 | requires: 5 | archlinux: 6 | # Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-notification-daemon 7 | - autoconf-archive 8 | - clang 9 | - gcc 10 | - git 11 | - gtk3 12 | - libnotify 13 | - libwnck3 14 | - make 15 | - mate-common 16 | - mate-panel 17 | - which 18 | 19 | debian: 20 | # Useful URL: https://github.com/mate-desktop/debian-packages 21 | # Useful URL: https://salsa.debian.org/debian-mate-team/mate-notification-daemon 22 | - autoconf-archive 23 | - autopoint 24 | - clang 25 | - clang-tools 26 | - cppcheck 27 | - gcc 28 | - git 29 | - gobject-introspection 30 | - gtk-doc-tools 31 | - libcanberra-gtk3-dev 32 | - libdconf-dev 33 | - libexempi-dev 34 | - libexif-dev 35 | - libgail-3-dev 36 | - libgirepository1.0-dev 37 | - libglib2.0-dev 38 | - libgtk-3-dev 39 | - libmate-desktop-dev 40 | - libmate-panel-applet-dev 41 | - libnotify-dev 42 | - libpango1.0-dev 43 | - libstartup-notification0-dev 44 | - libwnck-3-dev 45 | - libx11-dev 46 | - libxml2-dev 47 | - libxml2-utils 48 | - mate-common 49 | - quilt 50 | - shared-mime-info 51 | 52 | fedora: 53 | # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-notification-daemon.git 54 | - autoconf-archive 55 | - clang 56 | - clang-analyzer 57 | - cppcheck-htmlreport 58 | - desktop-file-utils 59 | - file 60 | - git 61 | - libcanberra-devel 62 | - libnotify-devel 63 | - libwnck3-devel 64 | - libxml2-devel 65 | - make 66 | - mate-common 67 | - mate-desktop-devel 68 | - mate-panel-devel 69 | 70 | ubuntu: 71 | - autoconf-archive 72 | - autopoint 73 | - clang 74 | - clang-tools 75 | - git 76 | - gobject-introspection 77 | - gtk-doc-tools 78 | - libcanberra-gtk3-dev 79 | - libdconf-dev 80 | - libexempi-dev 81 | - libexif-dev 82 | - libgail-3-dev 83 | - libgirepository1.0-dev 84 | - libglib2.0-dev 85 | - libgtk-3-dev 86 | - libmate-desktop-dev 87 | - libmate-panel-applet-dev 88 | - libnotify-dev 89 | - libpango1.0-dev 90 | - libstartup-notification0-dev 91 | - libwnck-3-dev 92 | - libx11-dev 93 | - libxml2-dev 94 | - libxml2-utils 95 | - mate-common 96 | - quilt 97 | - shared-mime-info 98 | 99 | variables: 100 | - 'CHECKERS=" 101 | -enable-checker deadcode.DeadStores 102 | -enable-checker alpha.deadcode.UnreachableCode 103 | -enable-checker alpha.core.CastSize 104 | -enable-checker alpha.core.CastToStruct 105 | -enable-checker alpha.core.IdenticalExpr 106 | -enable-checker alpha.core.SizeofPtr 107 | -enable-checker alpha.security.ArrayBoundV2 108 | -enable-checker alpha.security.MallocOverflow 109 | -enable-checker alpha.security.ReturnPtrRange 110 | -enable-checker alpha.unix.SimpleStream 111 | -enable-checker alpha.unix.cstring.BufferOverlap 112 | -enable-checker alpha.unix.cstring.NotNullTerminated 113 | -enable-checker alpha.unix.cstring.OutOfBounds 114 | -enable-checker alpha.core.FixedAddr 115 | -enable-checker security.insecureAPI.strcpy"' 116 | 117 | before_scripts: 118 | 119 | build_scripts: 120 | - if [ ${DISTRO_NAME} == "debian" ];then 121 | - export CFLAGS+=" -Wsign-compare" 122 | - cppcheck --enable=warning,style,performance,portability,information,missingInclude . 123 | - fi 124 | 125 | - NOCONFIGURE=1 ./autogen.sh 126 | - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum 127 | - if [ $CPU_COUNT -gt 1 ]; then 128 | - if [ ${DISTRO_NAME} == "debian" ];then 129 | - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make -j $CPU_COUNT 130 | - make clean 131 | - fi 132 | - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT 133 | - else 134 | - if [ ${DISTRO_NAME} == "debian" ];then 135 | - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make 136 | - make clean 137 | - fi 138 | - scan-build $CHECKERS --keep-cc -o html-report make 139 | - fi 140 | 141 | after_scripts: 142 | - if [ ${DISTRO_NAME} == "fedora" ];then 143 | - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude . 144 | - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport 145 | - ./gen-index -l 20 -i https://github.com/${OWNER_NAME}/mate-notification-daemon/raw/master/data/icons/16x16/mate-notification-properties.png 146 | - fi 147 | - make distcheck 148 | 149 | releases: 150 | draft: false 151 | prerelease: false 152 | checksum: true 153 | file_glob: true 154 | files: mate-notification-daemon-*.tar.xz 155 | github_release: 156 | tags: true 157 | overwrite: true 158 | base_version: 1.20.0 159 | notify_servers: 160 | - https://release.mate-desktop.org/release 161 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | custom: https://mate-desktop.org/donate/ 10 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | #### Expected behaviour 2 | 3 | 4 | #### Actual behaviour 5 | 6 | 7 | #### Steps to reproduce the behaviour 8 | 9 | 10 | #### MATE general version 11 | 12 | 13 | #### Package version 14 | 15 | 16 | #### Linux Distribution 17 | 18 | 19 | #### Link to bugreport of your Distribution (requirement) 20 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # vim: set ts=2 sts=2 sw=2 expandtab : 2 | dist: jammy 3 | language: shell 4 | os: linux 5 | services: 6 | - docker 7 | addons: 8 | apt: 9 | packages: 10 | - python3-pip 11 | - python3-setuptools 12 | 13 | branches: 14 | except: 15 | - gh-pages 16 | 17 | before_install: 18 | - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build 19 | - curl -Ls -o gen-index https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/gen-index.sh 20 | - chmod +x docker-build gen-index 21 | 22 | install: 23 | - sudo apt-get install -y python3-pip python3-setuptools 24 | - sudo pip3 install --upgrade pip 25 | - sudo pip3 install PyGithub 26 | - ./docker-build --name ${DISTRO} --config .build.yml --install 27 | 28 | script: 29 | - ./docker-build --name ${DISTRO} --verbose --config .build.yml --build scripts 30 | 31 | notifications: 32 | irc: 33 | if: (tag OR branch = master) AND 34 | repo = "mate-desktop/mate-notification-daemon" 35 | channels: 36 | - "irc.libera.chat#mate-dev" 37 | template: 38 | - "[%{repository_name}] %{author}: %{commit_subject}" 39 | - "[%{branch}] %{commit} %{message} %{build_url}" 40 | on_success: never 41 | on_failure: always 42 | 43 | before_deploy: 44 | - yes | gem update --system --force 45 | - gem install bundler 46 | - gem install faraday-net_http -v '3.3.0' # Avoid faraday version problem 47 | - gem install uri 48 | - gem install logger 49 | 50 | deploy: 51 | - provider: pages 52 | edge: 53 | branch: v2.0.5 54 | token: $GITHUB_TOKEN 55 | keep_history: false 56 | committer_from_gh: true 57 | target_branch: gh-pages 58 | local_dir: html-report 59 | strategy: git 60 | on: 61 | all_branches: true 62 | condition: ${DISTRO} =~ ^fedora.*$ 63 | - provider: script 64 | edge: 65 | branch: v2.0.5 66 | script: ./docker-build --verbose --config .build.yml --release github 67 | on: 68 | tags: true 69 | condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" 70 | 71 | after_success: 72 | - 'if [[ "$TRAVIS_SECURE_ENV_VARS" == "true" && "$TRAVIS_PULL_REQUEST" != "false" && ${DISTRO} =~ ^fedora.*$ ]]; then 73 | REPO_SLUG_ARRAY=(${TRAVIS_REPO_SLUG//\// }); 74 | REPO_NAME=${REPO_SLUG_ARRAY[1]}; 75 | URL="https://${REPO_NAME}.mate-desktop.dev"; 76 | COMMENT="Code analysis completed"; 77 | curl -H "Authorization: token $GITHUB_TOKEN" -X POST 78 | -d "{\"state\": \"success\", \"description\": \"$COMMENT\", \"context\":\"scan-build\", \"target_url\": \"$URL\"}" 79 | https://api.github.com/repos/${TRAVIS_REPO_SLUG}/statuses/${TRAVIS_PULL_REQUEST_SHA}; 80 | fi' 81 | 82 | env: 83 | # - DISTRO="archlinux:latest" 84 | - DISTRO="debian:testing" 85 | - DISTRO="fedora:latest" 86 | # - DISTRO="ubuntu:rolling" 87 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [o:mate:p:MATE:r:master--mate-notification-daemon] 5 | file_filter = po/.po 6 | source_file = po/mate-notification-daemon.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | 11 | -------------------------------------------------------------------------------- /.tx/config_20221028215505.bak: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [MATE.master--mate-notification-daemon] 5 | file_filter = po/.po 6 | source_file = po/mate-notification-daemon.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Authors: 2 | MATE developers: 3 | Perberos 4 | Steve Zesch 5 | Stefano Karapetsas 6 | 7 | GNOME developers: 8 | Christian Hammond 9 | John (J5) Palmieri 10 | 11 | Coco engine: 12 | Eduardo Grajeda 13 | Martin Sourada 14 | 15 | Nodoka engine: 16 | Martin Sourada 17 | 18 | Contributors: 19 | driehuis@playbeing.org 20 | Ed Catmur 21 | felix@hsgheli.de 22 | Jim Ramsay 23 | Luca Cavalli 24 | Matt Walton 25 | Pawel Worach 26 | Rodney Dawes 27 | Jonh Wendell 28 | Vincent Untz 29 | 30 | Translators: 31 | Arabic - Djihed Afifi 32 | Dutch - Wouter Bolsterlee 33 | German - Florian Steinel 34 | Italian - Luca Ferretti 35 | Japanese - Takeshi Aihana 36 | Polish - Raven 37 | Russian - Артём Попов 38 | Swedish - Daniel Nylander 39 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | The ChangeLog is auto-generated when releasing. If you are seeing this, use 2 | 'git log' for a detailed list of changes. 3 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | if USE_NLS 2 | PO_SUBDIR = po 3 | endif 4 | 5 | SUBDIRS = $(PO_SUBDIR) data src 6 | 7 | # Point to our macro directory and pick up user flags from the environment 8 | ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} 9 | 10 | EXTRA_DIST = \ 11 | AUTHORS NEWS COPYING README \ 12 | ChangeLog \ 13 | autogen.sh \ 14 | configure.ac 15 | 16 | $(OBJECTS): libtool 17 | libtool: $(LIBTOOL_DEPS) 18 | $(SHELL) ./config.status --recheck 19 | 20 | DISTCHECK_CONFIGURE_FLAGS = \ 21 | --disable-icon-update \ 22 | --enable-compile-warnings=no \ 23 | CFLAGS='-Wno-deprecated-declarations' 24 | 25 | DISTCLEANFILES = 26 | 27 | MAINTAINERCLEANFILES = \ 28 | $(srcdir)/INSTALL \ 29 | $(srcdir)/aclocal.m4 \ 30 | $(srcdir)/autoscan.log \ 31 | $(srcdir)/compile \ 32 | $(srcdir)/config.guess \ 33 | $(srcdir)/config.h.in \ 34 | $(srcdir)/config.sub \ 35 | $(srcdir)/configure.scan \ 36 | $(srcdir)/depcomp \ 37 | $(srcdir)/install-sh \ 38 | $(srcdir)/ltmain.sh \ 39 | $(srcdir)/missing \ 40 | $(srcdir)/mkinstalldirs \ 41 | $(srcdir)/omf.make \ 42 | $(srcdir)/xmldocs.make \ 43 | $(srcdir)/gtk-doc.make \ 44 | $(srcdir)/ChangeLog \ 45 | `find "$(srcdir)" -type f -name Makefile.in -print` 46 | 47 | # Build ChangeLog from GIT history 48 | ChangeLog: 49 | $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ 50 | GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ 51 | fi 52 | 53 | dist: ChangeLog 54 | 55 | .PHONY: ChangeLog 56 | 57 | -include $(top_srcdir)/git.mk 58 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | mate-notification-daemon is a fork of gnome-notification-daemon 2 | -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- 1 | dnl AS_AC_EXPAND(VAR, CONFIGURE_VAR) 2 | dnl 3 | dnl example 4 | dnl AS_AC_EXPAND(SYSCONFDIR, $sysconfdir) 5 | dnl will set SYSCONFDIR to /usr/local/etc if prefix=/usr/local 6 | 7 | AC_DEFUN([AS_AC_EXPAND], 8 | [ 9 | EXP_VAR=[$1] 10 | FROM_VAR=[$2] 11 | 12 | dnl first expand prefix and exec_prefix if necessary 13 | prefix_save=$prefix 14 | exec_prefix_save=$exec_prefix 15 | 16 | dnl if no prefix given, then use /usr/local, the default prefix 17 | if test "x$prefix" = "xNONE"; then 18 | prefix=$ac_default_prefix 19 | fi 20 | dnl if no exec_prefix given, then use prefix 21 | if test "x$exec_prefix" = "xNONE"; then 22 | exec_prefix=$prefix 23 | fi 24 | 25 | full_var="$FROM_VAR" 26 | dnl loop until it doesn't change anymore 27 | while true; do 28 | new_full_var="`eval echo $full_var`" 29 | if test "x$new_full_var"="x$full_var"; then break; fi 30 | full_var=$new_full_var 31 | done 32 | 33 | dnl clean up 34 | full_var=$new_full_var 35 | AC_SUBST([$1], "$full_var") 36 | 37 | dnl restore prefix and exec_prefix 38 | prefix=$prefix_save 39 | exec_prefix=$exec_prefix_save 40 | ]) 41 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Run this to generate all the initial makefiles, etc. 3 | 4 | srcdir=`dirname $0` 5 | test -z "$srcdir" && srcdir=. 6 | 7 | PKG_NAME="mate-notification-daemon" 8 | 9 | (test -f $srcdir/configure.ac) || { 10 | echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" 11 | echo " top-level $PKG_NAME directory" 12 | exit 1 13 | } 14 | 15 | which mate-autogen || { 16 | echo "You need to install mate-common from the MATE Git" 17 | exit 1 18 | } 19 | 20 | . mate-autogen 21 | -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | icon16dir = $(datadir)/icons/hicolor/16x16/apps 2 | icon22dir = $(datadir)/icons/hicolor/22x22/apps 3 | icon24dir = $(datadir)/icons/hicolor/24x24/apps 4 | icon32dir = $(datadir)/icons/hicolor/32x32/apps 5 | icon48dir = $(datadir)/icons/hicolor/48x48/apps 6 | iconscalabledir = $(datadir)/icons/hicolor/scalable/apps 7 | 8 | icon16_DATA = icons/16x16/mate-notification-properties.png 9 | icon22_DATA = icons/22x22/mate-notification-properties.png 10 | icon24_DATA = icons/24x24/mate-notification-properties.png 11 | icon32_DATA = icons/32x32/mate-notification-properties.png 12 | icon48_DATA = icons/48x48/mate-notification-properties.png 13 | iconscalable_DATA = icons/scalable/mate-notification-properties.svg 14 | 15 | if ENABLE_IN_PROCESS 16 | servicedir = $(DBUS_SERVICES_DIR) 17 | service_DATA = org.freedesktop.mate.Notifications.service 18 | service_in_files = $(service_DATA:=.in) 19 | else 20 | servicedir = $(DBUS_SERVICES_DIR) 21 | service_DATA = org.freedesktop.mate.Notifications.service org.mate.panel.applet.MateNotificationAppletFactory.service 22 | service_in_files = $(service_DATA:=.in) 23 | endif 24 | 25 | autostartdir = $(sysconfdir)/xdg/autostart 26 | autostart_in_files = mate-notification-daemon.desktop.in 27 | autostart_DATA = $(autostart_in_files:.desktop.in=.desktop) 28 | 29 | $(autostart_DATA): $(autostart_in_files) 30 | if USE_NLS 31 | $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ 32 | else 33 | $(AM_V_GEN) sed '/^# Translators/d' < $< > $@ 34 | endif 35 | 36 | appletdir = $(datadir)/mate-panel/applets 37 | applet_DATA = org.mate.applets.MateNotificationApplet.mate-panel-applet 38 | applet_in_files = $(applet_DATA:.mate-panel-applet=.desktop.in) 39 | 40 | $(applet_DATA): $(applet_in_files) 41 | if USE_NLS 42 | $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ 43 | else 44 | $(AM_V_GEN) cp -f $< $@ 45 | endif 46 | 47 | desktopdir = $(datadir)/applications 48 | desktop_DATA = mate-notification-properties.desktop 49 | desktop_in_files = $(desktop_DATA:.desktop=.desktop.in) 50 | 51 | $(desktop_DATA): $(desktop_in_files) 52 | if USE_NLS 53 | $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ 54 | else 55 | $(AM_V_GEN) sed '/^# Translators/d' < $< > $@ 56 | endif 57 | 58 | gsettings_SCHEMAS = org.mate.NotificationDaemon.gschema.xml 59 | gsettingsschema_in_files = $(gsettings_SCHEMAS:=.in) 60 | @GSETTINGS_RULES@ 61 | 62 | EXTRA_DIST = \ 63 | $(autostart_in_files) \ 64 | $(desktop_in_files) \ 65 | $(gsettingsschema_in_files) \ 66 | $(icon16_DATA) \ 67 | $(icon22_DATA) \ 68 | $(icon24_DATA) \ 69 | $(icon32_DATA) \ 70 | $(icon48_DATA) \ 71 | $(iconscalable_DATA) 72 | 73 | CLEANFILES = \ 74 | $(autostart_DATA) \ 75 | $(applet_DATA) \ 76 | $(desktop_DATA) \ 77 | $(gsettings_SCHEMAS) 78 | 79 | DISTCLEANFILES = \ 80 | $(applet_in_files) \ 81 | $(service_DATA) 82 | 83 | gtk_update_icon_cache = $(UPDATE_ICON_CACHE) -f -t $(datadir)/icons/hicolor 84 | 85 | install-data-hook: update-icon-cache 86 | uninstall-hook: update-icon-cache 87 | update-icon-cache: 88 | @-if test -z "$(DESTDIR)" && ICON_UPDATE; then \ 89 | echo "Updating Gtk icon cache."; \ 90 | $(gtk_update_icon_cache); \ 91 | else \ 92 | echo "*** Icon cache not updated. After (un)install, run this:"; \ 93 | echo "*** $(gtk_update_icon_cache)"; \ 94 | fi 95 | 96 | -include $(top_srcdir)/git.mk 97 | -------------------------------------------------------------------------------- /data/icons/16x16/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/4eb7c11eaffc769bd1d75739e710230b28e2882e/data/icons/16x16/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/22x22/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/4eb7c11eaffc769bd1d75739e710230b28e2882e/data/icons/22x22/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/24x24/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/4eb7c11eaffc769bd1d75739e710230b28e2882e/data/icons/24x24/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/32x32/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/4eb7c11eaffc769bd1d75739e710230b28e2882e/data/icons/32x32/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/48x48/mate-notification-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/4eb7c11eaffc769bd1d75739e710230b28e2882e/data/icons/48x48/mate-notification-properties.png -------------------------------------------------------------------------------- /data/icons/scalable/mate-notification-properties.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 23 | 26 | 30 | 31 | 38 | 39 | 60 | 65 | 66 | 68 | 69 | 71 | image/svg+xml 72 | 74 | 75 | 76 | 77 | 81 | 84 | 87 | 92 | 97 | 104 | 109 | 114 | 119 | 120 | 121 | 122 | 123 | -------------------------------------------------------------------------------- /data/mate-notification-daemon.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=MATE Notification Daemon 3 | Comment=Display notifications 4 | Exec=@LIBEXECDIR@/mate-notification-daemon 5 | Terminal=false 6 | Type=Application 7 | OnlyShowIn=MATE; 8 | NoDisplay=true 9 | X-MATE-Autostart-Phase=Application 10 | X-MATE-Autostart-Notify=true 11 | X-MATE-Bugzilla-Bugzilla=MATE 12 | X-MATE-Bugzilla-Product=mate-notification-daemon 13 | X-MATE-Bugzilla-Component=general 14 | X-MATE-Bugzilla-Version=@VERSION@ 15 | -------------------------------------------------------------------------------- /data/mate-notification-properties.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Popup Notifications 3 | Comment=Set your popup notification preferences 4 | Exec=mate-notification-properties 5 | # Translators: Do NOT translate or transliterate this text (this is an icon file name)! 6 | Icon=mate-notification-properties 7 | Terminal=false 8 | Type=Application 9 | StartupNotify=true 10 | Categories=GTK;Settings;DesktopSettings; 11 | OnlyShowIn=MATE; 12 | # Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! 13 | Keywords=MATE;Notification;Theme; 14 | -------------------------------------------------------------------------------- /data/org.freedesktop.mate.Notifications.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=org.freedesktop.Notifications 3 | Exec=@LIBEXECDIR@/mate-notification-daemon --idle-exit 4 | AssumedAppArmorLabel=unconfined 5 | -------------------------------------------------------------------------------- /data/org.mate.NotificationDaemon.gschema.xml.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 'top_right' 5 | Popup location 6 | Default popup location on the workspace for stack notifications. Allowed values: "top_left","top_right","bottom_left" and "bottom_right" 7 | 8 | 9 | true 10 | Use Active Monitor 11 | Display the notification on the active monitor. 12 | 13 | 14 | 0 15 | Monitor 16 | Monitor to display the notification. Allowed values: -1 (display on active monitor) and 0 to n - 1 where n is the number of monitors. 17 | 18 | 19 | 'nodoka' 20 | Current theme 21 | The theme used when displaying notifications. 22 | 23 | 24 | true 25 | Sound Enabled 26 | Turns on and off sound support for notifications. 27 | 28 | 29 | false 30 | Do not disturb 31 | When enabled, notifications are not shown. 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /data/org.mate.applets.MateNotificationApplet.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Applet Factory] 2 | Id=MateNotificationAppletFactory 3 | Location=@APPLET_LOCATION@ 4 | InProcess=@ENABLE_IN_PROCESS@ 5 | Name=Mate Notification Applet Factory 6 | Description=Mate Notification Applet Factory 7 | 8 | [MateNotificationApplet] 9 | Name=Do Not Disturb 10 | Description=Activate the do not disturb mode. 11 | # Translators: Do NOT translate or transliterate this text (this is an icon file name)! 12 | Icon=mate-notification-properties 13 | MateComponentId=OAFIID:MATE_Panel_Notification_Applet 14 | X-MATE-Bugzilla-Bugzilla=MATE 15 | X-MATE-Bugzilla-Product=mate-notification-daemon 16 | X-MATE-Bugzilla-Component=notification applet 17 | X-MATE-Bugzilla-Version=@VERSION@ 18 | -------------------------------------------------------------------------------- /data/org.mate.panel.applet.MateNotificationAppletFactory.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=org.mate.panel.applet.MateNotificationAppletFactory 3 | Exec=@LIBEXECDIR@/mate-notification-applet 4 | -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | PACKAGE=mate-notification-daemon; 4 | 5 | make -C po $PACKAGE.pot && mv po/$PACKAGE.pot . 6 | sed -i "/#, fuzzy/d" $PACKAGE.pot 7 | sed -i 's/charset=CHARSET/charset=UTF-8/g' $PACKAGE.pot 8 | -------------------------------------------------------------------------------- /mate-notification-daemon.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 9 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 10 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/mate-notification-properties.desktop.in:3 20 | msgid "Popup Notifications" 21 | msgstr "" 22 | 23 | #: data/mate-notification-properties.desktop.in:4 24 | msgid "Set your popup notification preferences" 25 | msgstr "" 26 | 27 | #. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! 28 | #: data/mate-notification-properties.desktop.in:14 29 | msgid "MATE;Notification;Theme;" 30 | msgstr "" 31 | 32 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 33 | msgid "Mate Notification Applet Factory" 34 | msgstr "" 35 | 36 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 37 | #: src/capplet/mate-notification-applet.c:177 38 | #: src/capplet/mate-notification-applet.c:196 39 | msgid "Do Not Disturb" 40 | msgstr "" 41 | 42 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 43 | msgid "Popup location" 44 | msgstr "" 45 | 46 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 47 | msgid "" 48 | "Default popup location on the workspace for stack notifications. Allowed " 49 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 50 | msgstr "" 51 | 52 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 53 | #: src/capplet/mate-notification-properties.ui:186 54 | msgid "Use Active Monitor" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 58 | msgid "Display the notification on the active monitor." 59 | msgstr "" 60 | 61 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 62 | msgid "Monitor" 63 | msgstr "" 64 | 65 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 66 | msgid "" 67 | "Monitor to display the notification. Allowed values: -1 (display on active " 68 | "monitor) and 0 to n - 1 where n is the number of monitors." 69 | msgstr "" 70 | 71 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 72 | msgid "Current theme" 73 | msgstr "" 74 | 75 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 76 | msgid "The theme used when displaying notifications." 77 | msgstr "" 78 | 79 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 80 | msgid "Sound Enabled" 81 | msgstr "" 82 | 83 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 84 | msgid "Turns on and off sound support for notifications." 85 | msgstr "" 86 | 87 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 88 | msgid "Do not disturb" 89 | msgstr "" 90 | 91 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 92 | msgid "When enabled, notifications are not shown." 93 | msgstr "" 94 | 95 | #: src/capplet/mate-notification-applet.c:52 96 | msgid "_Preferences" 97 | msgstr "" 98 | 99 | #: src/capplet/mate-notification-applet.c:54 100 | msgid "_About" 101 | msgstr "" 102 | 103 | #: src/capplet/mate-notification-applet.c:105 104 | msgid "About Do Not Disturb" 105 | msgstr "" 106 | 107 | #: src/capplet/mate-notification-applet.c:107 108 | msgid "Copyright © 2021 MATE developers" 109 | msgstr "" 110 | 111 | #: src/capplet/mate-notification-applet.c:108 112 | msgid "Activate the do not disturb mode quickly." 113 | msgstr "" 114 | 115 | #: src/capplet/mate-notification-applet.c:110 116 | msgid "translator-credits" 117 | msgstr "" 118 | 119 | #: src/capplet/mate-notification-applet.c:197 120 | msgid "Notifications Enabled" 121 | msgstr "" 122 | 123 | #: src/capplet/mate-notification-applet.c:218 124 | msgid "_Do not disturb" 125 | msgstr "" 126 | 127 | #: src/capplet/mate-notification-applet.c:219 128 | msgid "Enable/Disable do-not-disturb mode." 129 | msgstr "" 130 | 131 | #: src/capplet/mate-notification-properties.c:327 132 | msgid "Coco" 133 | msgstr "" 134 | 135 | #: src/capplet/mate-notification-properties.c:331 136 | msgid "Nodoka" 137 | msgstr "" 138 | 139 | #: src/capplet/mate-notification-properties.c:335 140 | msgid "Slider" 141 | msgstr "" 142 | 143 | #: src/capplet/mate-notification-properties.c:339 144 | msgid "Standard theme" 145 | msgstr "" 146 | 147 | #: src/capplet/mate-notification-properties.c:402 148 | msgid "Error initializing libmatenotify" 149 | msgstr "" 150 | 151 | #: src/capplet/mate-notification-properties.c:415 152 | msgid "Notification Test" 153 | msgstr "" 154 | 155 | #: src/capplet/mate-notification-properties.c:415 156 | msgid "Just a test" 157 | msgstr "" 158 | 159 | #: src/capplet/mate-notification-properties.c:419 160 | #, c-format 161 | msgid "Error while displaying notification: %s" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:459 165 | #, c-format 166 | msgid "Could not load user interface: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.ui:18 170 | msgid "Notification Settings" 171 | msgstr "" 172 | 173 | #: src/capplet/mate-notification-properties.ui:36 174 | msgid "_Preview" 175 | msgstr "" 176 | 177 | #: src/capplet/mate-notification-properties.ui:52 178 | msgid "_Close" 179 | msgstr "" 180 | 181 | #: src/capplet/mate-notification-properties.ui:101 182 | msgid "_Theme:" 183 | msgstr "" 184 | 185 | #: src/capplet/mate-notification-properties.ui:115 186 | msgid "P_osition:" 187 | msgstr "" 188 | 189 | #: src/capplet/mate-notification-properties.ui:129 190 | msgid "_Monitor:" 191 | msgstr "" 192 | 193 | #: src/capplet/mate-notification-properties.ui:155 194 | msgid "Top Left" 195 | msgstr "" 196 | 197 | #: src/capplet/mate-notification-properties.ui:156 198 | msgid "Top Right" 199 | msgstr "" 200 | 201 | #: src/capplet/mate-notification-properties.ui:157 202 | msgid "Bottom Left" 203 | msgstr "" 204 | 205 | #: src/capplet/mate-notification-properties.ui:158 206 | msgid "Bottom Right" 207 | msgstr "" 208 | 209 | #: src/capplet/mate-notification-properties.ui:201 210 | msgid "Enable Do Not Disturb" 211 | msgstr "" 212 | 213 | #: src/capplet/mate-notification-properties.ui:222 214 | msgid "General Options" 215 | msgstr "" 216 | 217 | #: src/daemon/daemon.c:1359 218 | msgid "Exceeded maximum number of notifications" 219 | msgstr "" 220 | 221 | #: src/daemon/daemon.c:1664 222 | #, c-format 223 | msgid "%u is not a valid notification ID" 224 | msgstr "" 225 | 226 | #: src/daemon/sound.c:37 227 | msgid "Notification" 228 | msgstr "" 229 | 230 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 231 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 232 | msgid "Notification summary text." 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 236 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 237 | msgid "Notification body text." 238 | msgstr "" 239 | 240 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 241 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 242 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 243 | msgid "Closes the notification." 244 | msgstr "" 245 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | # please keep this list sorted alphabetically 2 | # 3 | af 4 | am 5 | ar 6 | as 7 | ast 8 | az 9 | be 10 | bg 11 | bn 12 | bn_IN 13 | br 14 | bs 15 | ca 16 | ca@valencia 17 | cmn 18 | crh 19 | cs 20 | cy 21 | da 22 | de 23 | dz 24 | el 25 | en_AU 26 | en_CA 27 | en_GB 28 | eo 29 | es 30 | es_AR 31 | es_CL 32 | es_CO 33 | es_MX 34 | et 35 | eu 36 | fa 37 | fi 38 | fr 39 | fr_CA 40 | frp 41 | ga 42 | gl 43 | gu 44 | ha 45 | he 46 | hi 47 | hr 48 | hu 49 | hy 50 | id 51 | ie 52 | ig 53 | is 54 | it 55 | ja 56 | ka 57 | kab 58 | kk 59 | kn 60 | ko 61 | ku 62 | ku_IQ 63 | ky 64 | lt 65 | lv 66 | mai 67 | mg 68 | mk 69 | ml 70 | mn 71 | mr 72 | ms 73 | nb 74 | nds 75 | ne 76 | nl 77 | nn 78 | oc 79 | or 80 | pa 81 | pl 82 | ps 83 | pt 84 | pt_BR 85 | ro 86 | ru 87 | sc 88 | si 89 | sk 90 | sl 91 | sq 92 | sr 93 | sr@latin 94 | sv 95 | ta 96 | te 97 | th 98 | tr 99 | ug 100 | uk 101 | ur 102 | uz 103 | vi 104 | wa 105 | xh 106 | yo 107 | zh_CN 108 | zh_HK 109 | zh_TW 110 | -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- 1 | # Makefile variables for PO directory in any package using GNU gettext. 2 | 3 | # Usually the message domain is the same as the package name. 4 | DOMAIN = $(PACKAGE) 5 | 6 | # These two variables depend on the location of this directory. 7 | subdir = po 8 | top_builddir = .. 9 | 10 | # These options get passed to xgettext. 11 | XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_ --keyword=C_:1c,2 --keyword=NC_:1c,2 --keyword=g_dngettext:2,3 --add-comments=Translators: 12 | 13 | # This is the copyright holder that gets inserted into the header of the 14 | # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding 15 | # package. (Note that the msgstr strings, extracted from the package's 16 | # sources, belong to the copyright holder of the package.) Translators are 17 | # expected to transfer the copyright for their translations to this person 18 | # or entity, or to disclaim their copyright. The empty string stands for 19 | # the public domain; in this case the translators are expected to disclaim 20 | # their copyright. 21 | COPYRIGHT_HOLDER = MATE Desktop Environment team 22 | 23 | # This tells whether or not to prepend "GNU " prefix to the package 24 | # name that gets inserted into the header of the $(DOMAIN).pot file. 25 | # Possible values are "yes", "no", or empty. If it is empty, try to 26 | # detect it automatically by scanning the files in $(top_srcdir) for 27 | # "GNU packagename" string. 28 | PACKAGE_GNU = 29 | 30 | # This is the email address or URL to which the translators shall report 31 | # bugs in the untranslated strings: 32 | # - Strings which are not entire sentences, see the maintainer guidelines 33 | # in the GNU gettext documentation, section 'Preparing Strings'. 34 | # - Strings which use unclear terms or require additional context to be 35 | # understood. 36 | # - Strings which make invalid assumptions about notation of date, time or 37 | # money. 38 | # - Pluralisation problems. 39 | # - Incorrect English spelling. 40 | # - Incorrect formatting. 41 | # It can be your email address, or a mailing list address where translators 42 | # can write to without being subscribed, or the URL of a web page through 43 | # which the translators can contact you. 44 | MSGID_BUGS_ADDRESS = 45 | 46 | # This is the list of locale categories, beyond LC_MESSAGES, for which the 47 | # message catalogs shall be used. It is usually empty. 48 | EXTRA_LOCALE_CATEGORIES = 49 | 50 | # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' 51 | # context. Possible values are "yes" and "no". Set this to yes if the 52 | # package uses functions taking also a message context, like pgettext(), or 53 | # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. 54 | USE_MSGCTXT = no 55 | 56 | # These options get passed to msgmerge. 57 | # Useful options are in particular: 58 | # --previous to keep previous msgids of translated messages, 59 | # --quiet to reduce the verbosity. 60 | MSGMERGE_OPTIONS = 61 | 62 | # These options get passed to msginit. 63 | # If you want to disable line wrapping when writing PO files, add 64 | # --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and 65 | # MSGINIT_OPTIONS. 66 | MSGINIT_OPTIONS = 67 | 68 | # This tells whether or not to regenerate a PO file when $(DOMAIN).pot 69 | # has changed. Possible values are "yes" and "no". Set this to no if 70 | # the POT file is checked in the repository and the version control 71 | # program ignores timestamps. 72 | PO_DEPENDS_ON_POT = yes 73 | 74 | # This tells whether or not to forcibly update $(DOMAIN).pot and 75 | # regenerate PO files on "make dist". Possible values are "yes" and 76 | # "no". Set this to no if the POT file and PO files are maintained 77 | # externally. 78 | DIST_DEPENDS_ON_UPDATE_PO = yes 79 | $(DOMAIN).pot-update: export GETTEXTDATADIRS = $(top_srcdir) 80 | -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | data/mate-notification-properties.desktop.in 2 | data/org.mate.applets.MateNotificationApplet.desktop.in.in 3 | data/org.mate.NotificationDaemon.gschema.xml.in 4 | src/capplet/mate-notification-applet.c 5 | src/capplet/mate-notification-properties.c 6 | src/capplet/mate-notification-properties.ui 7 | src/daemon/daemon.c 8 | src/daemon/sound.c 9 | src/themes/coco/coco-theme.c 10 | src/themes/nodoka/nodoka-theme.c 11 | src/themes/slider/theme.c 12 | src/themes/standard/theme.c 13 | -------------------------------------------------------------------------------- /po/boldquot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | s/“/“/g 8 | s/”/”/g 9 | s/‘/‘/g 10 | s/’/’/g 11 | -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: en_CA\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "Current theme" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Preferences" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_About" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "Adam Weinberger " 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Close" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # eere leme , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: eere leme , 2018\n" 16 | "Language-Team: French (Canada) (https://app.transifex.com/mate/teams/13566/fr_CA/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: fr_CA\n" 21 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "Moniteur" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "Coco" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alexandre Raymond, 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Alexandre Raymond, 2021\n" 16 | "Language-Team: Franco-Provençal (Arpitan) (https://app.transifex.com/mate/teams/13566/frp/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: frp\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Prèfèrences" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "Èquipa de traduction" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "Règllâjos de notificacion" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: fur\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Preferencis" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "Informazions" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "Andrea Decorte " 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Siere" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/gnome-copyrights.txt: -------------------------------------------------------------------------------- 1 | ========== ar.po ========== 2 | # Arabic translations for notification-daemon package. 3 | # Copyright (C) 2007 THE notification-daemon'S COPYRIGHT HOLDER 4 | # This file is distributed under the same license as the notification-daemon package. 5 | # Djihed Afifi , 2007. 6 | # 7 | 8 | 9 | 10 | 11 | ========== cs.po ========== 12 | # Czech translation for notification-daemon. 13 | # Copyright (C) 2010 the author(s) of notification-daemon. 14 | # This file is distributed under the same license as the notification-daemon package. 15 | # Petr Kovar , 2010. 16 | 17 | 18 | 19 | 20 | ========== da.po ========== 21 | # Danish translation for notification-daemon. 22 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 23 | # This file is distributed under the same license as the notification-daemon package. 24 | # Joe Hansen (joedalton2@yahoo.dk), 2010. 25 | # 26 | 27 | 28 | 29 | 30 | ========== de.po ========== 31 | # German translation for notification-daemon 32 | # Copyright (C) 2006 Christian Hammond 33 | # This file is distributed under the same license as the notification-daemon package. 34 | # Florian Steinel , 2007. 35 | # Mario Blättermann , 2010. 36 | # 37 | 38 | 39 | 40 | 41 | ========== el.po ========== 42 | # Greek translation for notification-daemon. 43 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 44 | # This file is distributed under the same license as the notification-daemon package. 45 | # Kostas Papadimas , 2010. 46 | # 47 | 48 | 49 | 50 | 51 | ========== es.po ========== 52 | # translation of notification-daemon.po.master.po to Español 53 | # Spanish translation for notification-daemon. 54 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 55 | # This file is distributed under the same license as the notification-daemon package. 56 | # Jorge González , 2010. 57 | 58 | 59 | 60 | 61 | ========== et.po ========== 62 | # Estonian translation for notification-daemon. 63 | # Copyright (C) 2010 Free Software Foundation, Inc. 64 | # This file is distributed under the same license as the notification-daemon package. 65 | # Rene Pärts , 2010. 66 | # 67 | 68 | 69 | 70 | 71 | ========== fr.po ========== 72 | # French translation for notification-daemon. 73 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 74 | # This file is distributed under the same license as the notification-daemon package. 75 | # 76 | # Claude Paroz , 2010. 77 | # 78 | 79 | 80 | 81 | 82 | ========== gl.po ========== 83 | # Galician translation for notification-daemon. 84 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 85 | # This file is distributed under the same license as the notification-daemon package. 86 | # Fran Diéguez , 2010. 87 | # 88 | 89 | 90 | 91 | 92 | ========== hu.po ========== 93 | # Hungarian translation for notification-daemon 94 | # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 95 | # This file is distributed under the same license as the notification-daemon package. 96 | # 97 | # Gabor Kelemen , 2010. 98 | 99 | 100 | 101 | 102 | ========== it.po ========== 103 | # Italian translation for notification-daemon package. 104 | # Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc. 105 | # This file is distributed under the same license as the notification-daemon package. 106 | # Luca Ferretti , 2007, 2008, 2009 107 | # 108 | 109 | 110 | 111 | 112 | ========== ja.po ========== 113 | # $notification-daemon ja.po. 114 | # Copyright (C) 2006,2007,2009 Free Software Foundation, Inc. 115 | # This file is distributed under the same license as the notification-daemon package. 116 | # Takeshi AIHANA , 2006,2007,2009. 117 | # 118 | 119 | 120 | 121 | 122 | ========== lt.po ========== 123 | # Lithuanian translation for notification-daemon. 124 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 125 | # This file is distributed under the same license as the notification-daemon package. 126 | # Aurimas Černius , 2010. 127 | 128 | 129 | 130 | 131 | ========== nb.po ========== 132 | # Norwegian bokmål translation of notification-daemon. 133 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 134 | # This file is distributed under the same license as the PACKAGE package. 135 | # Kjartan Maraas , 2010. 136 | # 137 | 138 | 139 | 140 | 141 | ========== nl.po ========== 142 | # Dutch translation for notification-daemon 143 | # Copyright (C) 2006 Christian Hammond 144 | # This file is distributed under the same license as the notification-daemon package. 145 | # 146 | # Wouter Bolsterlee , 2006. 147 | # 148 | 149 | 150 | 151 | 152 | ========== pa.po ========== 153 | # Punjabi translation for notification-daemon. 154 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 155 | # This file is distributed under the same license as the notification-daemon package. 156 | # 157 | # A S Alam , 2010. 158 | 159 | 160 | 161 | 162 | ========== pl.po ========== 163 | # Polish translation for notification-daemon. 164 | # Copyright © 2007-2010 the notification-daemon authors. 165 | # This file is distributed under the same license as the notification-daemon package. 166 | # Piotr Drąg , 2007-2010. 167 | # Aviary.pl , 2010. 168 | # 169 | 170 | 171 | 172 | 173 | ========== pt_BR.po ========== 174 | # Brazilian Portuguese translation for notification-daemon. 175 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 176 | # This file is distributed under the same license as the notification-daemon package. 177 | # Henrique P. Machado , 2010. 178 | # André Gondim , 2010. 179 | # 180 | 181 | 182 | 183 | 184 | ========== ru.po ========== 185 | # Russian translation for notification-daemon 186 | # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 187 | # This file is distributed under the same license as the notification-daemon package. 188 | # FIRST AUTHOR , 2006. 189 | # 190 | 191 | 192 | 193 | 194 | ========== sl.po ========== 195 | # Slovenian translation for notification-daemon. 196 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 197 | # This file is distributed under the same license as the notification-daemon package. 198 | # 199 | # Andrej Žnidaršič , 2010. 200 | # 201 | 202 | 203 | 204 | 205 | ========== sv.po ========== 206 | # Swedish translation for notification-daemon. 207 | # Copyright (C) 2006-2010 Free Software Foundation 208 | # This file is distributed under the same license as the galago package. 209 | # Daniel Nylander , 2006, 2010. 210 | # 211 | 212 | 213 | 214 | 215 | ========== zh_CN.po ========== 216 | # Chinese (China) translation for notification-daemon. 217 | # Copyright (C) 2010 notification-daemon's COPYRIGHT HOLDER 218 | # This file is distributed under the same license as the notification-daemon package. 219 | # YunQiang Su , 2010. 220 | # 221 | 222 | 223 | 224 | 225 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ha\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "Jigo wanda ake kai yanzu" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Fifiko" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Game da" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "yabo ga-mai fassara" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Rufe" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Funkin, 2020 8 | # Tea Coba , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 15 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 16 | "Last-Translator: Tea Coba , 2021\n" 17 | "Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: ia\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: data/mate-notification-properties.desktop.in:3 25 | msgid "Popup Notifications" 26 | msgstr "" 27 | 28 | #: data/mate-notification-properties.desktop.in:4 29 | msgid "Set your popup notification preferences" 30 | msgstr "" 31 | 32 | #. Translators: Search terms to find this application. Do NOT translate or 33 | #. localize the semicolons! The list MUST also end with a semicolon! 34 | #: data/mate-notification-properties.desktop.in:14 35 | msgid "MATE;Notification;Theme;" 36 | msgstr "" 37 | 38 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 39 | msgid "Mate Notification Applet Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 43 | #: src/capplet/mate-notification-applet.c:177 44 | #: src/capplet/mate-notification-applet.c:196 45 | msgid "Do Not Disturb" 46 | msgstr "" 47 | 48 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 49 | msgid "Popup location" 50 | msgstr "" 51 | 52 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 53 | msgid "" 54 | "Default popup location on the workspace for stack notifications. Allowed " 55 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 56 | msgstr "" 57 | 58 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 59 | #: src/capplet/mate-notification-properties.ui:186 60 | msgid "Use Active Monitor" 61 | msgstr "" 62 | 63 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 64 | msgid "Display the notification on the active monitor." 65 | msgstr "" 66 | 67 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 68 | msgid "Monitor" 69 | msgstr "" 70 | 71 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 72 | msgid "" 73 | "Monitor to display the notification. Allowed values: -1 (display on active " 74 | "monitor) and 0 to n - 1 where n is the number of monitors." 75 | msgstr "" 76 | 77 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 78 | msgid "Current theme" 79 | msgstr "" 80 | 81 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 82 | msgid "The theme used when displaying notifications." 83 | msgstr "" 84 | 85 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 86 | msgid "Sound Enabled" 87 | msgstr "" 88 | 89 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 90 | msgid "Turns on and off sound support for notifications." 91 | msgstr "" 92 | 93 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 94 | msgid "Do not disturb" 95 | msgstr "" 96 | 97 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 98 | msgid "When enabled, notifications are not shown." 99 | msgstr "" 100 | 101 | #: src/capplet/mate-notification-applet.c:52 102 | msgid "_Preferences" 103 | msgstr "" 104 | 105 | #: src/capplet/mate-notification-applet.c:54 106 | msgid "_About" 107 | msgstr "_Re" 108 | 109 | #: src/capplet/mate-notification-applet.c:105 110 | msgid "About Do Not Disturb" 111 | msgstr "" 112 | 113 | #: src/capplet/mate-notification-applet.c:107 114 | msgid "Copyright © 2021 MATE developers" 115 | msgstr "" 116 | 117 | #: src/capplet/mate-notification-applet.c:108 118 | msgid "Activate the do not disturb mode quickly." 119 | msgstr "" 120 | 121 | #: src/capplet/mate-notification-applet.c:110 122 | msgid "translator-credits" 123 | msgstr "creditos de traduction" 124 | 125 | #: src/capplet/mate-notification-applet.c:197 126 | msgid "Notifications Enabled" 127 | msgstr "" 128 | 129 | #: src/capplet/mate-notification-applet.c:218 130 | msgid "_Do not disturb" 131 | msgstr "" 132 | 133 | #: src/capplet/mate-notification-applet.c:219 134 | msgid "Enable/Disable do-not-disturb mode." 135 | msgstr "" 136 | 137 | #: src/capplet/mate-notification-properties.c:327 138 | msgid "Coco" 139 | msgstr "" 140 | 141 | #: src/capplet/mate-notification-properties.c:331 142 | msgid "Nodoka" 143 | msgstr "" 144 | 145 | #: src/capplet/mate-notification-properties.c:335 146 | msgid "Slider" 147 | msgstr "" 148 | 149 | #: src/capplet/mate-notification-properties.c:339 150 | msgid "Standard theme" 151 | msgstr "" 152 | 153 | #: src/capplet/mate-notification-properties.c:402 154 | msgid "Error initializing libmatenotify" 155 | msgstr "" 156 | 157 | #: src/capplet/mate-notification-properties.c:415 158 | msgid "Notification Test" 159 | msgstr "" 160 | 161 | #: src/capplet/mate-notification-properties.c:415 162 | msgid "Just a test" 163 | msgstr "" 164 | 165 | #: src/capplet/mate-notification-properties.c:419 166 | #, c-format 167 | msgid "Error while displaying notification: %s" 168 | msgstr "" 169 | 170 | #: src/capplet/mate-notification-properties.c:459 171 | #, c-format 172 | msgid "Could not load user interface: %s" 173 | msgstr "" 174 | 175 | #: src/capplet/mate-notification-properties.ui:18 176 | msgid "Notification Settings" 177 | msgstr "" 178 | 179 | #: src/capplet/mate-notification-properties.ui:36 180 | msgid "_Preview" 181 | msgstr "" 182 | 183 | #: src/capplet/mate-notification-properties.ui:52 184 | msgid "_Close" 185 | msgstr "_Clauder" 186 | 187 | #: src/capplet/mate-notification-properties.ui:101 188 | msgid "_Theme:" 189 | msgstr "" 190 | 191 | #: src/capplet/mate-notification-properties.ui:115 192 | msgid "P_osition:" 193 | msgstr "" 194 | 195 | #: src/capplet/mate-notification-properties.ui:129 196 | msgid "_Monitor:" 197 | msgstr "" 198 | 199 | #: src/capplet/mate-notification-properties.ui:155 200 | msgid "Top Left" 201 | msgstr "" 202 | 203 | #: src/capplet/mate-notification-properties.ui:156 204 | msgid "Top Right" 205 | msgstr "" 206 | 207 | #: src/capplet/mate-notification-properties.ui:157 208 | msgid "Bottom Left" 209 | msgstr "" 210 | 211 | #: src/capplet/mate-notification-properties.ui:158 212 | msgid "Bottom Right" 213 | msgstr "" 214 | 215 | #: src/capplet/mate-notification-properties.ui:201 216 | msgid "Enable Do Not Disturb" 217 | msgstr "" 218 | 219 | #: src/capplet/mate-notification-properties.ui:222 220 | msgid "General Options" 221 | msgstr "" 222 | 223 | #: src/daemon/daemon.c:1359 224 | msgid "Exceeded maximum number of notifications" 225 | msgstr "" 226 | 227 | #: src/daemon/daemon.c:1664 228 | #, c-format 229 | msgid "%u is not a valid notification ID" 230 | msgstr "" 231 | 232 | #: src/daemon/sound.c:37 233 | msgid "Notification" 234 | msgstr "" 235 | 236 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 237 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 238 | msgid "Notification summary text." 239 | msgstr "" 240 | 241 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 242 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 243 | msgid "Notification body text." 244 | msgstr "" 245 | 246 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 247 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 248 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 249 | msgid "Closes the notification." 250 | msgstr "" 251 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ig\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "Isiokwu ọfụụ" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Nkarachọ" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Maka " 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "Omentụgharị-Uru" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Mechie" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Ngalim Siregar , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Ngalim Siregar , 2021\n" 16 | "Language-Team: Javanese (https://app.transifex.com/mate/teams/13566/jv/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: jv\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Paling disenengi" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Watara" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "kridit-wong sing nyalin nganggo basa liya" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Khmer (https://app.transifex.com/mate/teams/13566/km/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: km\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_អំពី" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "ខឹម សុខែម, ម៉ន ម៉េត, សេង សុត្ថា, ចាន់ សម្បត្តិរតនៈ, សុខ សុភា" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "បិទ" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Kashmiri (https://app.transifex.com/mate/teams/13566/ks/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ks\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "बारे मंज (_A)" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "राकेश पंडित (rakesh.pandit@gmail.com)" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "बंद करिव (_C)" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ku\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "Dirbê derbasdar" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Vebijêrk" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Der barê" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "Erdal Ronahî" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "_Pêşdîtin" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Bigire" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Limburgian (https://app.transifex.com/mate/teams/13566/li/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: li\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Euver" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Sjloete" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Maori (https://app.transifex.com/mate/teams/13566/mi/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mi\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Mo" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Kati" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/quot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: si\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "දැනට ඇති තේමාව" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "අභිප්‍රේත (_P)" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "සම්බන්ධව (_A)" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "පරිවර්තන ස්තුතිය" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "පෙන්වන්න (_P)" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "වසන්න (_C)" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Turkmen (https://app.transifex.com/mate/teams/13566/tk/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: tk\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Barada" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Ýap" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Tatar (https://app.transifex.com/mate/teams/13566/tt/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: tt\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Turında" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "Ya_p" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: wa\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "Tinme do moumint" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Preferinces" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "Å_d fwait" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "Pablo Saratxaga " 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Clôre" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: xh\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "Umxholo wangoku" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Ezikhethwayo" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Malunga" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "Canonical Ltd " 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Vala" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-notification-daemon package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-notification-daemon 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2023-09-02 17:27+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:46+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: yo\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: data/mate-notification-properties.desktop.in:3 24 | msgid "Popup Notifications" 25 | msgstr "" 26 | 27 | #: data/mate-notification-properties.desktop.in:4 28 | msgid "Set your popup notification preferences" 29 | msgstr "" 30 | 31 | #. Translators: Search terms to find this application. Do NOT translate or 32 | #. localize the semicolons! The list MUST also end with a semicolon! 33 | #: data/mate-notification-properties.desktop.in:14 34 | msgid "MATE;Notification;Theme;" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:6 38 | msgid "Mate Notification Applet Factory" 39 | msgstr "" 40 | 41 | #: data/org.mate.applets.MateNotificationApplet.desktop.in.in:10 42 | #: src/capplet/mate-notification-applet.c:177 43 | #: src/capplet/mate-notification-applet.c:196 44 | msgid "Do Not Disturb" 45 | msgstr "" 46 | 47 | #: data/org.mate.NotificationDaemon.gschema.xml.in:5 48 | msgid "Popup location" 49 | msgstr "" 50 | 51 | #: data/org.mate.NotificationDaemon.gschema.xml.in:6 52 | msgid "" 53 | "Default popup location on the workspace for stack notifications. Allowed " 54 | "values: \"top_left\",\"top_right\",\"bottom_left\" and \"bottom_right\"" 55 | msgstr "" 56 | 57 | #: data/org.mate.NotificationDaemon.gschema.xml.in:10 58 | #: src/capplet/mate-notification-properties.ui:186 59 | msgid "Use Active Monitor" 60 | msgstr "" 61 | 62 | #: data/org.mate.NotificationDaemon.gschema.xml.in:11 63 | msgid "Display the notification on the active monitor." 64 | msgstr "" 65 | 66 | #: data/org.mate.NotificationDaemon.gschema.xml.in:15 67 | msgid "Monitor" 68 | msgstr "" 69 | 70 | #: data/org.mate.NotificationDaemon.gschema.xml.in:16 71 | msgid "" 72 | "Monitor to display the notification. Allowed values: -1 (display on active " 73 | "monitor) and 0 to n - 1 where n is the number of monitors." 74 | msgstr "" 75 | 76 | #: data/org.mate.NotificationDaemon.gschema.xml.in:20 77 | msgid "Current theme" 78 | msgstr "Kókó lọ́wọ́lọ́wọ́" 79 | 80 | #: data/org.mate.NotificationDaemon.gschema.xml.in:21 81 | msgid "The theme used when displaying notifications." 82 | msgstr "" 83 | 84 | #: data/org.mate.NotificationDaemon.gschema.xml.in:25 85 | msgid "Sound Enabled" 86 | msgstr "" 87 | 88 | #: data/org.mate.NotificationDaemon.gschema.xml.in:26 89 | msgid "Turns on and off sound support for notifications." 90 | msgstr "" 91 | 92 | #: data/org.mate.NotificationDaemon.gschema.xml.in:30 93 | msgid "Do not disturb" 94 | msgstr "" 95 | 96 | #: data/org.mate.NotificationDaemon.gschema.xml.in:31 97 | msgid "When enabled, notifications are not shown." 98 | msgstr "" 99 | 100 | #: src/capplet/mate-notification-applet.c:52 101 | msgid "_Preferences" 102 | msgstr "_Àwọn ìkúndùǹ" 103 | 104 | #: src/capplet/mate-notification-applet.c:54 105 | msgid "_About" 106 | msgstr "_Nípa" 107 | 108 | #: src/capplet/mate-notification-applet.c:105 109 | msgid "About Do Not Disturb" 110 | msgstr "" 111 | 112 | #: src/capplet/mate-notification-applet.c:107 113 | msgid "Copyright © 2021 MATE developers" 114 | msgstr "" 115 | 116 | #: src/capplet/mate-notification-applet.c:108 117 | msgid "Activate the do not disturb mode quickly." 118 | msgstr "" 119 | 120 | #: src/capplet/mate-notification-applet.c:110 121 | msgid "translator-credits" 122 | msgstr "ìgbóríyìn òǹgbufọ̀" 123 | 124 | #: src/capplet/mate-notification-applet.c:197 125 | msgid "Notifications Enabled" 126 | msgstr "" 127 | 128 | #: src/capplet/mate-notification-applet.c:218 129 | msgid "_Do not disturb" 130 | msgstr "" 131 | 132 | #: src/capplet/mate-notification-applet.c:219 133 | msgid "Enable/Disable do-not-disturb mode." 134 | msgstr "" 135 | 136 | #: src/capplet/mate-notification-properties.c:327 137 | msgid "Coco" 138 | msgstr "" 139 | 140 | #: src/capplet/mate-notification-properties.c:331 141 | msgid "Nodoka" 142 | msgstr "" 143 | 144 | #: src/capplet/mate-notification-properties.c:335 145 | msgid "Slider" 146 | msgstr "" 147 | 148 | #: src/capplet/mate-notification-properties.c:339 149 | msgid "Standard theme" 150 | msgstr "" 151 | 152 | #: src/capplet/mate-notification-properties.c:402 153 | msgid "Error initializing libmatenotify" 154 | msgstr "" 155 | 156 | #: src/capplet/mate-notification-properties.c:415 157 | msgid "Notification Test" 158 | msgstr "" 159 | 160 | #: src/capplet/mate-notification-properties.c:415 161 | msgid "Just a test" 162 | msgstr "" 163 | 164 | #: src/capplet/mate-notification-properties.c:419 165 | #, c-format 166 | msgid "Error while displaying notification: %s" 167 | msgstr "" 168 | 169 | #: src/capplet/mate-notification-properties.c:459 170 | #, c-format 171 | msgid "Could not load user interface: %s" 172 | msgstr "" 173 | 174 | #: src/capplet/mate-notification-properties.ui:18 175 | msgid "Notification Settings" 176 | msgstr "" 177 | 178 | #: src/capplet/mate-notification-properties.ui:36 179 | msgid "_Preview" 180 | msgstr "" 181 | 182 | #: src/capplet/mate-notification-properties.ui:52 183 | msgid "_Close" 184 | msgstr "_Ti" 185 | 186 | #: src/capplet/mate-notification-properties.ui:101 187 | msgid "_Theme:" 188 | msgstr "" 189 | 190 | #: src/capplet/mate-notification-properties.ui:115 191 | msgid "P_osition:" 192 | msgstr "" 193 | 194 | #: src/capplet/mate-notification-properties.ui:129 195 | msgid "_Monitor:" 196 | msgstr "" 197 | 198 | #: src/capplet/mate-notification-properties.ui:155 199 | msgid "Top Left" 200 | msgstr "" 201 | 202 | #: src/capplet/mate-notification-properties.ui:156 203 | msgid "Top Right" 204 | msgstr "" 205 | 206 | #: src/capplet/mate-notification-properties.ui:157 207 | msgid "Bottom Left" 208 | msgstr "" 209 | 210 | #: src/capplet/mate-notification-properties.ui:158 211 | msgid "Bottom Right" 212 | msgstr "" 213 | 214 | #: src/capplet/mate-notification-properties.ui:201 215 | msgid "Enable Do Not Disturb" 216 | msgstr "" 217 | 218 | #: src/capplet/mate-notification-properties.ui:222 219 | msgid "General Options" 220 | msgstr "" 221 | 222 | #: src/daemon/daemon.c:1359 223 | msgid "Exceeded maximum number of notifications" 224 | msgstr "" 225 | 226 | #: src/daemon/daemon.c:1664 227 | #, c-format 228 | msgid "%u is not a valid notification ID" 229 | msgstr "" 230 | 231 | #: src/daemon/sound.c:37 232 | msgid "Notification" 233 | msgstr "" 234 | 235 | #: src/themes/coco/coco-theme.c:461 src/themes/nodoka/nodoka-theme.c:815 236 | #: src/themes/slider/theme.c:417 src/themes/standard/theme.c:734 237 | msgid "Notification summary text." 238 | msgstr "" 239 | 240 | #: src/themes/coco/coco-theme.c:475 src/themes/nodoka/nodoka-theme.c:868 241 | #: src/themes/slider/theme.c:438 src/themes/standard/theme.c:786 242 | msgid "Notification body text." 243 | msgstr "" 244 | 245 | #: src/themes/nodoka/nodoka-theme.c:829 src/themes/nodoka/nodoka-theme.c:831 246 | #: src/themes/slider/theme.c:399 src/themes/slider/theme.c:401 247 | #: src/themes/standard/theme.c:750 src/themes/standard/theme.c:752 248 | msgid "Closes the notification." 249 | msgstr "" 250 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = daemon themes capplet 2 | 3 | -include $(top_srcdir)/git.mk 4 | -------------------------------------------------------------------------------- /src/capplet/Makefile.am: -------------------------------------------------------------------------------- 1 | define generate_resources_deps 2 | $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir) $(srcdir)/$(1)) 3 | endef 4 | 5 | bin_PROGRAMS = mate-notification-properties 6 | 7 | if ENABLE_IN_PROCESS 8 | pkglib_LTLIBRARIES = libmate-notification-applet.la 9 | else 10 | libexec_PROGRAMS = mate-notification-applet 11 | endif 12 | NULL = 13 | 14 | mate_notification_properties_CFLAGS = \ 15 | -I$(top_srcdir) \ 16 | -I$(top_srcdir)/src/common \ 17 | -I$(top_srcdir)/src/daemon \ 18 | $(NOTIFICATION_CAPPLET_CFLAGS) \ 19 | -DENGINES_DIR=\"$(libdir)/mate-notification-daemon/engines\" \ 20 | -DNOTIFICATION_LOCALEDIR=\"$(datadir)/locale\" \ 21 | $(WARN_CFLAGS) \ 22 | $(NULL) 23 | 24 | mate_notification_properties_LDADD = \ 25 | $(NOTIFICATION_CAPPLET_LIBS) \ 26 | $(NULL) 27 | 28 | mate_notification_properties_resources_xml = org.mate.notifications.properties.gresource.xml 29 | mate_notification_properties_resources_deps = $(call generate_resources_deps $(mate_notification_properties_resources_xml)) 30 | mate_notification_properties_resources_files = mate-notification-properties-resources.h mate-notification-properties-resources.c 31 | $(mate_notification_properties_resources_files): $(mate_notification_properties_resources_xml) Makefile $(mate_notification_properties_resources_deps) 32 | $(AM_V_GEN) XMLLINT=$(XMLLINT) $(GLIB_COMPILE_RESOURCES) $< \ 33 | --target $@ --sourcedir $(srcdir) --generate --c-name notification_properties 34 | mate_notification_properties_SOURCES = \ 35 | $(mate_notification_properties_resources_files) \ 36 | ../common/constants.h \ 37 | mate-notification-properties.c \ 38 | $(NULL) 39 | 40 | man_MANS = mate-notification-properties.1 41 | 42 | if ENABLE_IN_PROCESS 43 | 44 | libmate_notification_applet_la_SOURCES = \ 45 | $(mate_notification_applet_resources_files) \ 46 | ../common/constants.h \ 47 | mate-notification-applet.c \ 48 | $(NULL) 49 | 50 | libmate_notification_applet_la_CFLAGS = \ 51 | -I$(top_srcdir)/src/common \ 52 | $(NOTIFICATION_APPLET_CFLAGS) \ 53 | -DMATELOCALEDIR=\"$(datadir)/locale\" \ 54 | -DRESOURCE_PATH=\""/org/mate/panel/applet/notifications/"\" \ 55 | $(WARN_CFLAGS) \ 56 | $(NULL) 57 | 58 | libmate_notification_applet_la_LIBADD = \ 59 | $(NOTIFICATION_APPLET_LIBS) \ 60 | $(NULL) 61 | 62 | else 63 | mate_notification_applet_SOURCES = \ 64 | $(mate_notification_applet_resources_files) \ 65 | ../common/constants.h \ 66 | mate-notification-applet.c \ 67 | $(NULL) 68 | 69 | mate_notification_applet_CFLAGS = \ 70 | -I$(top_srcdir)/src/common \ 71 | $(NOTIFICATION_APPLET_CFLAGS) \ 72 | -DMATELOCALEDIR=\"$(datadir)/locale\" \ 73 | -DRESOURCE_PATH=\""/org/mate/panel/applet/notifications/"\" \ 74 | $(WARN_CFLAGS) \ 75 | $(NULL) 76 | 77 | mate_notification_applet_LDADD = \ 78 | $(NOTIFICATION_APPLET_LIBS) \ 79 | $(NULL) 80 | 81 | endif 82 | 83 | mate_notification_applet_resources_xml = org.mate.panel.applet.notifications.gresource.xml 84 | mate_notification_applet_resources_deps = $(call generate_resources_deps $(mate_notification_applet_resources_xml)) 85 | mate_notification_applet_resources_files = mate-notification-applet-resources.h mate-notification-applet-resources.c 86 | $(mate_notification_applet_resources_files): $(mate_notification_applet_resources_xml) Makefile $(mate_notification_applet_resources_deps) 87 | $(AM_V_GEN) XMLLINT=$(XMLLINT) $(GLIB_COMPILE_RESOURCES) $< \ 88 | --target $@ --sourcedir $(srcdir) --generate --c-name notification_applet 89 | 90 | 91 | BUILT_SOURCES = \ 92 | $(mate_notification_properties_resources_files) \ 93 | $(mate_notification_applet_resources_files) \ 94 | $(NULL) 95 | 96 | CLEANFILES = \ 97 | $(BUILT_SOURCES) \ 98 | $(NULL) 99 | 100 | EXTRA_DIST = \ 101 | $(man_MANS) \ 102 | $(pixmap_DATA) \ 103 | $(mate_notification_applet_resources_xml) \ 104 | $(mate_notification_properties_resources_xml) \ 105 | mate-notification-applet-menu.xml \ 106 | mate-notification-properties.ui \ 107 | $(NULL) 108 | 109 | -include $(top_srcdir)/git.mk 110 | -------------------------------------------------------------------------------- /src/capplet/mate-notification-applet-menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/capplet/mate-notification-properties.1: -------------------------------------------------------------------------------- 1 | .TH "mate-notification-properties" "1" "2009-08-03" 2 | 3 | .SH "NAME" 4 | mate-notification-properties \- Set up the options for desktop notifications 5 | 6 | .SH "SYNOPSIS" 7 | .PP 8 | .B mate-notification-properties 9 | 10 | .SH "DESCRIPTION" 11 | .PP 12 | This manual page documents briefly the \fBmate-notification-properties\fR 13 | command. 14 | .PP 15 | \fBmate-notification-properties\fR is a utility to set up various 16 | options related to desktop notifications. 17 | 18 | .SH "AUTHOR" 19 | .PP 20 | .B mate-notification-properties was 21 | written by Jonh Wendell and Perberos . 22 | 23 | This manual page was written by Francois Wendling for the 24 | notification-properties in Debian project (but may be used by others) 25 | and adapted for MATE by Stefano Karapetsas . 26 | -------------------------------------------------------------------------------- /src/capplet/org.mate.notifications.properties.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | mate-notification-properties.ui 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/capplet/org.mate.panel.applet.notifications.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mate-notification-applet-menu.xml 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/common/constants.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2020 Robert Buj 3 | * Copyright (C) 2020-2021 MATE Developers 4 | * 5 | * This program is free software; you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation; either version 2, or (at your option) 8 | * any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program; if not, write to the Free Software 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 18 | * 02110-1301, USA. 19 | */ 20 | 21 | #ifndef _CONSTANTS_H_ 22 | #define _CONSTANTS_H_ 23 | 24 | #define GSETTINGS_SCHEMA "org.mate.NotificationDaemon" 25 | #define GSETTINGS_KEY_THEME "theme" 26 | #define GSETTINGS_KEY_DO_NOT_DISTURB "do-not-disturb" 27 | #define GSETTINGS_KEY_MONITOR_NUMBER "monitor-number" 28 | #define GSETTINGS_KEY_POPUP_LOCATION "popup-location" 29 | #define GSETTINGS_KEY_SOUND_ENABLED "sound-enabled" 30 | #define GSETTINGS_KEY_USE_ACTIVE_MONITOR "use-active-monitor" 31 | #define NOTIFICATION_BUS_NAME "org.freedesktop.Notifications" 32 | #define NOTIFICATION_BUS_PATH "/org/freedesktop/Notifications" 33 | 34 | #endif /* _CONSTANTS_H_ */ 35 | -------------------------------------------------------------------------------- /src/daemon/Makefile.am: -------------------------------------------------------------------------------- 1 | libexec_PROGRAMS = mate-notification-daemon 2 | 3 | mate_notification_daemon_SOURCES = \ 4 | $(mate_notification_daemon_built_sources) \ 5 | ../common/constants.h \ 6 | daemon.c \ 7 | daemon.h \ 8 | engines.c \ 9 | engines.h \ 10 | stack.c \ 11 | stack.h \ 12 | sound.c \ 13 | sound.h \ 14 | mnd-daemon.c 15 | 16 | if ENABLE_WAYLAND 17 | mate_notification_daemon_SOURCES += \ 18 | wayland.h \ 19 | wayland.c 20 | endif 21 | 22 | mate_notification_daemon_LDADD = $(NOTIFICATION_DAEMON_LIBS) 23 | 24 | mate_notification_daemon_CFLAGS = $(WARN_CFLAGS) 25 | 26 | mate_notification_daemon_built_sources = \ 27 | mnd-dbus-generated.h \ 28 | mnd-dbus-generated.c \ 29 | $(NULL) 30 | 31 | $(mate_notification_daemon_built_sources) : Makefile.am $(srcdir)/notificationdaemon.xml 32 | $(AM_V_GEN) gdbus-codegen \ 33 | --interface-prefix org.freedesktop. \ 34 | --c-namespace NotifyDaemon \ 35 | --generate-c-code mnd-dbus-generated \ 36 | $(srcdir)/notificationdaemon.xml 37 | 38 | AM_CPPFLAGS = \ 39 | -I$(top_srcdir) \ 40 | -I$(top_srcdir)/src/common \ 41 | $(NOTIFICATION_DAEMON_CFLAGS) \ 42 | -DENGINES_DIR=\"$(libdir)/mate-notification-daemon/engines\" 43 | 44 | EXTRA_DIST = notificationdaemon.xml 45 | DISTCLEANFILES = \ 46 | $(mate_notification_daemon_built_sources) 47 | 48 | -include $(top_srcdir)/git.mk 49 | -------------------------------------------------------------------------------- /src/daemon/daemon.h: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 2 | * 3 | * Copyright (C) 2006 Christian Hammond 4 | * Copyright (C) 2005 John (J5) Palmieri 5 | * Copyright (C) 2010 Red Hat, Inc. 6 | * Copyright (C) 2011 Perberos 7 | * Copyright (C) 2012-2021 MATE Developers 8 | * 9 | * This program is free software; you can redistribute it and/or modify 10 | * it under the terms of the GNU General Public License as published by 11 | * the Free Software Foundation; either version 2, or (at your option) 12 | * any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU General Public License 20 | * along with this program; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 22 | * 02110-1301, USA. 23 | */ 24 | 25 | #ifndef NOTIFY_DAEMON_H 26 | #define NOTIFY_DAEMON_H 27 | 28 | #include 29 | #include 30 | #include 31 | 32 | #include "constants.h" 33 | 34 | #define NOTIFY_TYPE_DAEMON (notify_daemon_get_type()) 35 | G_DECLARE_FINAL_TYPE (NotifyDaemon, notify_daemon, NOTIFY, DAEMON, GObject) 36 | 37 | #define NOTIFY_DAEMON_DEFAULT_TIMEOUT 7000 38 | 39 | enum { 40 | URGENCY_LOW, 41 | URGENCY_NORMAL, 42 | URGENCY_CRITICAL 43 | }; 44 | 45 | typedef enum { 46 | NOTIFYD_CLOSED_EXPIRED = 1, 47 | NOTIFYD_CLOSED_USER = 2, 48 | NOTIFYD_CLOSED_API = 3, 49 | NOTIFYD_CLOSED_RESERVED = 4 50 | } NotifydClosedReason; 51 | 52 | G_BEGIN_DECLS 53 | 54 | NotifyDaemon* notify_daemon_new (gboolean replace, 55 | gboolean idle_exit); 56 | 57 | GQuark notify_daemon_error_quark(void); 58 | 59 | G_END_DECLS 60 | #endif /* NOTIFY_DAEMON_H */ 61 | -------------------------------------------------------------------------------- /src/daemon/engines.h: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 2 | * 3 | * Copyright (C) 2006 Christian Hammond 4 | * Copyright (C) 2005 John (J5) Palmieri 5 | * Copyright (C) 2010 Red Hat, Inc. 6 | * Copyright (C) 2011 Perberos 7 | * Copyright (C) 2012-2021 MATE Developers 8 | * 9 | * This program is free software; you can redistribute it and/or modify 10 | * it under the terms of the GNU General Public License as published by 11 | * the Free Software Foundation; either version 2, or (at your option) 12 | * any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU General Public License 20 | * along with this program; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 22 | * 02110-1301, USA. 23 | */ 24 | 25 | #ifndef _ENGINES_H_ 26 | #define _ENGINES_H_ 27 | 28 | #include 29 | 30 | typedef void (*UrlClickedCb) (GtkWindow * nw, const char *url); 31 | 32 | GtkWindow *theme_create_notification (UrlClickedCb url_clicked_cb); 33 | void theme_destroy_notification (GtkWindow *nw); 34 | void theme_show_notification (GtkWindow *nw); 35 | void theme_hide_notification (GtkWindow *nw); 36 | void theme_set_notification_hints (GtkWindow *nw, 37 | GVariant *hints); 38 | void theme_set_notification_timeout (GtkWindow *nw, 39 | glong timeout); 40 | void theme_notification_tick (GtkWindow *nw, 41 | glong remaining); 42 | void theme_set_notification_text (GtkWindow *nw, 43 | const char *summary, 44 | const char *body); 45 | void theme_set_notification_icon (GtkWindow *nw, 46 | GdkPixbuf *pixbuf); 47 | void theme_set_notification_arrow (GtkWindow *nw, 48 | gboolean visible, 49 | int x, 50 | int y); 51 | void theme_add_notification_action (GtkWindow *nw, 52 | const char *label, 53 | const char *key, 54 | GCallback cb); 55 | void theme_clear_notification_actions (GtkWindow *nw); 56 | void theme_move_notification (GtkWindow *nw, 57 | int x, 58 | int y); 59 | gboolean theme_get_always_stack (GtkWindow *nw); 60 | 61 | #endif /* _ENGINES_H_ */ 62 | -------------------------------------------------------------------------------- /src/daemon/mnd-daemon.c: -------------------------------------------------------------------------------- 1 | /* vi: set sw=4 ts=4 wrap ai: */ 2 | /* 3 | * mnd-daemon.c: This file is part of mate-notification-daemon 4 | * 5 | * Copyright (C) 2018 Wu Xiaotian 6 | * Copyright (C) 2018-2021 MATE Developers 7 | * 8 | * This program is free software; you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation; either version 2 of the License, or 11 | * (at your option) any later version. 12 | * 13 | * This program is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License along 19 | * with this program; if not, write to the Free Software Foundation, Inc., 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 21 | * */ 22 | 23 | #ifdef HAVE_CONFIG_H 24 | #include "config.h" 25 | #endif 26 | 27 | #include 28 | #include 29 | 30 | #include "daemon.h" 31 | 32 | static gboolean debug = FALSE; 33 | static gboolean replace = FALSE; 34 | static gboolean idle_exit = FALSE; 35 | 36 | static GOptionEntry entries[] = 37 | { 38 | { 39 | "debug", 0, G_OPTION_FLAG_NONE, 40 | G_OPTION_ARG_NONE, &debug, 41 | "Enable debugging code", 42 | NULL 43 | }, 44 | { 45 | "replace", 'r', G_OPTION_FLAG_NONE, 46 | G_OPTION_ARG_NONE, &replace, 47 | "Replace a currently running application", 48 | NULL 49 | }, 50 | { 51 | "idle-exit", 'i', G_OPTION_FLAG_NONE, 52 | G_OPTION_ARG_NONE, &idle_exit, 53 | "Auto-exit when idle, useful if run through D-Bus activation", 54 | NULL 55 | }, 56 | { 57 | NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL 58 | } 59 | }; 60 | 61 | static gboolean parse_arguments (int *argc, char ***argv) 62 | { 63 | GOptionContext *context; 64 | GError *error; 65 | 66 | context = g_option_context_new (NULL); 67 | 68 | g_option_context_add_main_entries (context, entries, NULL); 69 | 70 | error = NULL; 71 | if (g_option_context_parse (context, argc, argv, &error) == FALSE) 72 | { 73 | g_option_context_free (context); 74 | g_warning ("Failed to parse command line arguments: %s", error->message); 75 | g_error_free (error); 76 | 77 | return FALSE; 78 | } 79 | 80 | g_option_context_free (context); 81 | 82 | if (debug) 83 | g_setenv ("G_MESSAGES_DEBUG", "all", FALSE); 84 | 85 | return TRUE; 86 | } 87 | 88 | int main (int argc, char *argv[]) 89 | { 90 | NotifyDaemon *daemon; 91 | 92 | #if defined(HAVE_X11) && defined(HAVE_WAYLAND) 93 | gdk_set_allowed_backends ("wayland,x11"); 94 | #elif defined(HAVE_WAYLAND) 95 | gdk_set_allowed_backends ("wayland"); 96 | #else 97 | gdk_set_allowed_backends ("x11"); 98 | #endif 99 | 100 | gtk_init(&argc, &argv); 101 | 102 | if (!parse_arguments (&argc, &argv)) 103 | return EXIT_FAILURE; 104 | 105 | daemon = notify_daemon_new (replace, idle_exit); 106 | 107 | gtk_main(); 108 | 109 | g_object_unref (daemon); 110 | 111 | return EXIT_SUCCESS; 112 | } 113 | -------------------------------------------------------------------------------- /src/daemon/notificationdaemon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /src/daemon/sound.c: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 2 | * 3 | * Copyright (C) 2007 Jim Ramsay 4 | * Copyright (C) 2011 Perberos 5 | * Copyright (C) 2012-2021 MATE Developers 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License as published by 9 | * the Free Software Foundation; either version 2, or (at your option) 10 | * any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU General Public License 18 | * along with this program; if not, write to the Free Software 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 20 | * 02110-1301, USA. 21 | */ 22 | 23 | #include "config.h" 24 | 25 | #include "sound.h" 26 | 27 | #include 28 | #include 29 | 30 | void 31 | sound_play_file (GtkWidget *widget, 32 | const char *filename) 33 | { 34 | ca_gtk_play_for_widget (widget, 0, 35 | CA_PROP_MEDIA_ROLE, "event", 36 | CA_PROP_MEDIA_FILENAME, filename, 37 | CA_PROP_EVENT_DESCRIPTION, _("Notification"), 38 | NULL); 39 | } 40 | 41 | -------------------------------------------------------------------------------- /src/daemon/sound.h: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 2 | * 3 | * Copyright (C) 2007 Jim Ramsay 4 | * Copyright (C) 2011 Perberos 5 | * Copyright (C) 2012-2021 MATE Developers 6 | * 7 | * This program is free software; you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License as published by 9 | * the Free Software Foundation; either version 2, or (at your option) 10 | * any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU General Public License 18 | * along with this program; if not, write to the Free Software 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 20 | * 02110-1301, USA. 21 | */ 22 | 23 | #ifndef _SOUND_H 24 | #define _SOUND_H 25 | 26 | #include 27 | 28 | void sound_play_file(GtkWidget* widget, const char* filename); 29 | 30 | #endif /* _SOUND_H */ 31 | -------------------------------------------------------------------------------- /src/daemon/stack.h: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 2 | * 3 | * Copyright (C) 2006 Christian Hammond 4 | * Copyright (C) 2010 Red Hat, Inc. 5 | * Copyright (C) 2011 Perberos 6 | * Copyright (C) 2012-2021 MATE Developers 7 | * 8 | * This program is free software; you can redistribute it and/or modify 9 | * it under the terms of the GNU General Public License as published by 10 | * the Free Software Foundation; either version 2, or (at your option) 11 | * any later version. 12 | * 13 | * This program is distributed in the hope that it will be useful, 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | * GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License 19 | * along with this program; if not, write to the Free Software 20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 21 | * 02110-1301, USA. 22 | */ 23 | 24 | #ifndef _NOTIFY_STACK_H_ 25 | #define _NOTIFY_STACK_H_ 26 | 27 | #include 28 | 29 | #include "daemon.h" 30 | 31 | typedef enum { 32 | NOTIFY_STACK_LOCATION_UNKNOWN = -1, 33 | NOTIFY_STACK_LOCATION_TOP_LEFT, 34 | NOTIFY_STACK_LOCATION_TOP_RIGHT, 35 | NOTIFY_STACK_LOCATION_BOTTOM_LEFT, 36 | NOTIFY_STACK_LOCATION_BOTTOM_RIGHT, 37 | NOTIFY_STACK_LOCATION_DEFAULT = NOTIFY_STACK_LOCATION_BOTTOM_RIGHT 38 | } NotifyStackLocation; 39 | 40 | typedef struct _NotifyStack NotifyStack; 41 | 42 | NotifyStack* notify_stack_new(NotifyDaemon* daemon, GdkScreen* screen, GdkMonitor *monitor, NotifyStackLocation stack_location); 43 | void notify_stack_destroy(NotifyStack* stack); 44 | 45 | void notify_stack_set_location(NotifyStack* stack, NotifyStackLocation location); 46 | void notify_stack_add_window(NotifyStack* stack, GtkWindow* nw, gboolean new_notification); 47 | void notify_stack_remove_window(NotifyStack* stack, GtkWindow* nw); 48 | GList* notify_stack_get_windows(NotifyStack* stack); 49 | GdkMonitor* notify_stack_get_monitor(NotifyStack* stack); 50 | void notify_stack_queue_update_position(NotifyStack* stack); 51 | 52 | #endif /* _NOTIFY_STACK_H_ */ 53 | -------------------------------------------------------------------------------- /src/daemon/wayland.c: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 2 | * 3 | * Copyright (C) 2020 William Wold 4 | * Copyright (C) 2020-2021 MATE Developers 5 | * 6 | * This program is free software; you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation; either version 2, or (at your option) 9 | * any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, write to the Free Software 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 19 | * 02110-1301, USA. 20 | */ 21 | 22 | #include "config.h" 23 | 24 | #ifndef HAVE_WAYLAND 25 | #error file should only be built when HAVE_WAYLAND is enabled 26 | #endif 27 | 28 | #include 29 | #include 30 | #include 31 | #include 32 | 33 | #include 34 | 35 | #include "wayland.h" 36 | 37 | void wayland_init_notification (GtkWindow* nw) 38 | { 39 | gtk_layer_init_for_window (nw); 40 | gtk_layer_set_layer (nw, GTK_LAYER_SHELL_LAYER_TOP); 41 | gtk_layer_set_namespace (nw, "notification"); 42 | } 43 | 44 | void wayland_move_notification (GtkWindow* nw, int x, int y) 45 | { 46 | GdkWindow *window = gtk_widget_get_window (GTK_WIDGET (nw)); 47 | GdkMonitor *monitor = gdk_display_get_monitor_at_window ( 48 | gdk_window_get_display (window), 49 | window); 50 | GdkRectangle workarea; 51 | gdk_monitor_get_workarea (monitor, &workarea); 52 | GtkRequisition req; 53 | gtk_widget_get_preferred_size (GTK_WIDGET (nw), NULL, &req); 54 | int left_gap = x - workarea.x; 55 | int top_gap = y - workarea.y; 56 | int right_gap = workarea.x + workarea.width - x - req.width; 57 | int bottom_gap = workarea.y + workarea.height - y - req.height; 58 | 59 | if (left_gap < right_gap) 60 | { 61 | gtk_layer_set_anchor (nw, GTK_LAYER_SHELL_EDGE_LEFT, TRUE); 62 | gtk_layer_set_anchor (nw, GTK_LAYER_SHELL_EDGE_RIGHT, FALSE); 63 | gtk_layer_set_margin (nw, GTK_LAYER_SHELL_EDGE_LEFT, left_gap); 64 | } 65 | else 66 | { 67 | gtk_layer_set_anchor (nw, GTK_LAYER_SHELL_EDGE_LEFT, FALSE); 68 | gtk_layer_set_anchor (nw, GTK_LAYER_SHELL_EDGE_RIGHT, TRUE); 69 | gtk_layer_set_margin (nw, GTK_LAYER_SHELL_EDGE_RIGHT, right_gap); 70 | } 71 | 72 | if (top_gap < bottom_gap) 73 | { 74 | gtk_layer_set_anchor (nw, GTK_LAYER_SHELL_EDGE_TOP, TRUE); 75 | gtk_layer_set_anchor (nw, GTK_LAYER_SHELL_EDGE_BOTTOM, FALSE); 76 | gtk_layer_set_margin (nw, GTK_LAYER_SHELL_EDGE_TOP, top_gap); 77 | } 78 | else 79 | { 80 | gtk_layer_set_anchor (nw, GTK_LAYER_SHELL_EDGE_TOP, FALSE); 81 | gtk_layer_set_anchor (nw, GTK_LAYER_SHELL_EDGE_BOTTOM, TRUE); 82 | gtk_layer_set_margin (nw, GTK_LAYER_SHELL_EDGE_BOTTOM, bottom_gap); 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /src/daemon/wayland.h: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 2 | * 3 | * Copyright (C) 2020 William Wold 4 | * Copyright (C) 2020-2021 MATE Developers 5 | * 6 | * This program is free software; you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation; either version 2, or (at your option) 9 | * any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, write to the Free Software 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 19 | * 02110-1301, USA. 20 | */ 21 | 22 | #ifndef _WAYLAND_H 23 | #define _WAYLAND_H 24 | 25 | #ifdef PACKAGE_NAME /* only check HAVE_WAYLAND if config.h has been included */ 26 | #ifndef HAVE_WAYLAND 27 | #error file should only be included when HAVE_WAYLAND is enabled 28 | #endif 29 | #endif 30 | 31 | #include 32 | 33 | void wayland_init_notification (GtkWindow* nw); 34 | void wayland_move_notification (GtkWindow* nw, int x, int y); 35 | 36 | #endif /* _WAYLAND_H */ 37 | -------------------------------------------------------------------------------- /src/themes/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = coco nodoka slider standard 2 | 3 | -include $(top_srcdir)/git.mk 4 | -------------------------------------------------------------------------------- /src/themes/coco/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = $(THEME_CFLAGS) 2 | 3 | enginedir = $(libdir)/mate-notification-daemon/engines 4 | engine_LTLIBRARIES = libcoco.la 5 | 6 | libcoco_la_SOURCES = coco-theme.c 7 | libcoco_la_CFLAGS = $(WARN_CFLAGS) 8 | libcoco_la_LDFLAGS = -module -avoid-version -no-undefined 9 | libcoco_la_LIBADD = $(THEME_LIBS) 10 | 11 | -include $(top_srcdir)/git.mk 12 | -------------------------------------------------------------------------------- /src/themes/nodoka/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = $(THEME_CFLAGS) 2 | 3 | enginedir = $(libdir)/mate-notification-daemon/engines 4 | engine_LTLIBRARIES = libnodoka.la 5 | 6 | libnodoka_la_SOURCES = nodoka-theme.c 7 | libnodoka_la_CFLAGS = $(WARN_CFLAGS) 8 | libnodoka_la_LDFLAGS = -module -avoid-version -no-undefined 9 | libnodoka_la_LIBADD = $(THEME_LIBS) 10 | 11 | -include $(top_srcdir)/git.mk 12 | -------------------------------------------------------------------------------- /src/themes/slider/Makefile.am: -------------------------------------------------------------------------------- 1 | NULL = 2 | 3 | enginedir = $(libdir)/mate-notification-daemon/engines 4 | engine_LTLIBRARIES = libslider.la 5 | 6 | AM_CPPFLAGS = $(THEME_CFLAGS) 7 | 8 | libslider_la_SOURCES = theme.c 9 | libslider_la_CFLAGS = $(WARN_CFLAGS) 10 | libslider_la_LDFLAGS = -module -avoid-version -no-undefined 11 | libslider_la_LIBADD = \ 12 | $(THEME_LIBS) \ 13 | $(NULL) 14 | 15 | -include $(top_srcdir)/git.mk 16 | -------------------------------------------------------------------------------- /src/themes/standard/Makefile.am: -------------------------------------------------------------------------------- 1 | enginedir = $(libdir)/mate-notification-daemon/engines 2 | 3 | engine_LTLIBRARIES = libstandard.la 4 | 5 | libstandard_la_SOURCES = theme.c 6 | libstandard_la_CFLAGS = $(WARN_CFLAGS) 7 | libstandard_la_LDFLAGS = -module -avoid-version -no-undefined 8 | libstandard_la_LIBADD = $(THEME_LIBS) 9 | 10 | AM_CPPFLAGS = $(THEME_CFLAGS) 11 | 12 | -include $(top_srcdir)/git.mk 13 | --------------------------------------------------------------------------------