├── .build.yml ├── .github ├── FUNDING.yml └── issue_template.md ├── .travis.yml ├── .tx ├── config └── config_20221028215442.bak ├── AUTHORS ├── COPYING ├── COPYING.LGPL ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── data ├── Makefile.am ├── mate-indicator-applet.svg ├── org.mate.applets.Indicator.mate-panel-applet.desktop.in.in ├── org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in ├── org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in ├── org.mate.panel.applet.IndicatorAppletAppmenuFactory.service.in ├── org.mate.panel.applet.IndicatorAppletCompleteFactory.service.in └── org.mate.panel.applet.IndicatorAppletFactory.service.in ├── git.mk ├── makepot ├── mate-indicator-applet.pot ├── po ├── LINGUAS ├── Makevars ├── POTFILES.in ├── POTFILES.skip ├── af.po ├── am.po ├── an.po ├── ar.po ├── as.po ├── ast.po ├── az.po ├── be.po ├── bg.po ├── bn.po ├── bn_IN.po ├── 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 ├── 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 ├── la.po ├── lb.po ├── li.po ├── lt.po ├── lv.po ├── mai.po ├── mg.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mr.po ├── ms.po ├── nan.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── nqo.po ├── nso.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── pms.po ├── ps.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sc.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── sw.po ├── ta.po ├── te.po ├── th.po ├── tk.po ├── tr.po ├── tt.po ├── ug.po ├── uk.po ├── ur.po ├── ur_PK.po ├── uz.po ├── vi.po ├── wa.po ├── xh.po ├── yo.po ├── zh-Hans.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po └── src ├── Makefile.am ├── applet-main.c ├── eggaccelerators.c ├── eggaccelerators.h ├── tomboykeybinder.c └── tomboykeybinder.h /.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 | - pip3 install PyGithub 24 | - ./docker-build --name ${DISTRO} --config .build.yml --install 25 | 26 | script: 27 | - ./docker-build --name ${DISTRO} --verbose --config .build.yml --build scripts 28 | 29 | notifications: 30 | irc: 31 | if: (tag OR branch = master) AND 32 | repo = "mate-desktop/mate-indicator-applet" 33 | channels: 34 | - "irc.libera.chat#mate-dev" 35 | template: 36 | - "[%{repository_name}] %{author}: %{commit_subject}" 37 | - "[%{branch}] %{commit} %{message} %{build_url}" 38 | on_success: never 39 | on_failure: always 40 | 41 | deploy: 42 | - provider: pages 43 | edge: true 44 | token: $GITHUB_TOKEN 45 | keep_history: false 46 | committer_from_gh: true 47 | target_branch: gh-pages 48 | local_dir: html-report 49 | strategy: git 50 | on: 51 | all_branches: true 52 | condition: ${DISTRO} =~ ^fedora.*$ 53 | - provider: script 54 | edge: true 55 | script: ./docker-build --verbose --config .build.yml --release github 56 | on: 57 | tags: true 58 | condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" 59 | 60 | after_success: 61 | - 'if [[ "$TRAVIS_SECURE_ENV_VARS" == "true" && "$TRAVIS_PULL_REQUEST" != "false" && ${DISTRO} =~ ^fedora.*$ ]]; then 62 | REPO_SLUG_ARRAY=(${TRAVIS_REPO_SLUG//\// }); 63 | REPO_NAME=${REPO_SLUG_ARRAY[1]}; 64 | URL="https://${REPO_NAME}.mate-desktop.dev"; 65 | COMMENT="Code analysis completed"; 66 | curl -H "Authorization: token $GITHUB_TOKEN" -X POST 67 | -d "{\"state\": \"success\", \"description\": \"$COMMENT\", \"context\":\"scan-build\", \"target_url\": \"$URL\"}" 68 | https://api.github.com/repos/${TRAVIS_REPO_SLUG}/statuses/${TRAVIS_PULL_REQUEST_SHA}; 69 | fi' 70 | 71 | env: 72 | # - DISTRO="archlinux:latest" 73 | - DISTRO="debian:testing" 74 | - DISTRO="fedora:latest" 75 | # - DISTRO="ubuntu:rolling" 76 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [o:mate:p:MATE:r:master--mate-indicator-applet] 5 | file_filter = po/.po 6 | source_file = po/mate-indicator-applet.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | 11 | -------------------------------------------------------------------------------- /.tx/config_20221028215442.bak: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [MATE.master--mate-indicator-applet] 5 | file_filter = po/.po 6 | source_file = po/mate-indicator-applet.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | MATE: 2 | Perberos 3 | Stefano Karapetsas 4 | Steve Zesch 5 | 6 | GNOME: 7 | Aurelien Gateau 8 | Cody Russell 9 | Eitan Isaacson 10 | Kevin Turner 11 | Luke Yelavich 12 | Marco Trevisan (Treviño) 13 | MarkieB 14 | Martin Pitt 15 | Michael Terry 16 | Neil Jagdish Patel 17 | Robert Carr 18 | Roman Vorobets 19 | Sebastien Bacher 20 | Ted Gould 21 | Tom Haddon 22 | -------------------------------------------------------------------------------- /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 | SUBDIRS = \ 2 | src \ 3 | data \ 4 | po 5 | 6 | ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} 7 | 8 | DISTCHECK_CONFIGURE_FLAGS = \ 9 | --enable-localinstall \ 10 | --enable-compile-warnings=no \ 11 | CFLAGS='-Wno-deprecated-declarations' 12 | 13 | DISTCLEANFILES = \ 14 | indicator-applet-*.tar.gz \ 15 | gtk-doc.make 16 | 17 | EXTRA_DIST = \ 18 | autogen.sh \ 19 | COPYING.LGPL 20 | 21 | # Build ChangeLog from GIT history 22 | ChangeLog: 23 | $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ 24 | GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ 25 | fi 26 | 27 | dist: ChangeLog 28 | 29 | .PHONY: ChangeLog 30 | 31 | -include $(top_srcdir)/git.mk 32 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | ### mate-indicator-applet 1.28.0 2 | 3 | * Translations update 4 | * fix warnings in Arabic and Tamil translations 5 | * build warning: AC_OUTPUT should be used without arguments 6 | 7 | ### mate-indicator-applet 1.27.0 8 | 9 | * Translations update 10 | * tx: update resource 11 | * tx: migrate config file 12 | * ci: drop -Wunused-parameter compiler cflag from debian build 13 | * applet-main.c: Support mouse middle-click. 14 | * eggaccelerators: use a blank line at most 15 | * configure.ac: fix incorrect shell test == behavior 16 | 17 | ### mate-indicator-applet 1.26.0 18 | 19 | * Translations update 20 | * applet-main: Replace GtkStock icon 21 | * Update copyright to 2021 22 | * Remove USE_MATE2_MACROS from autogen.sh (legacy) 23 | 24 | ### mate-indicator-applet 1.25.0 25 | 26 | * Translations update 27 | * add git.mk to generate .gitignore 28 | * build: silent build warnings for distcheck 29 | * applet-main: declaration of ‘entry’ shadows a parameter 30 | * applet-main: remove unreachable-code warning reported by scan-build 31 | * use MATE_COMPILE_WARNINGS from mate-common 32 | 33 | ### mate-indicator-applet 1.24.0 34 | 35 | * Translations update 36 | * Update copyright to 2020 37 | * rename data/org*mate-panel-applet.desktop.in.in files 38 | * migrate from intltools to gettext 39 | 40 | ### mate-indicator-applet 1.23.0 41 | 42 | * Translations update 43 | * Remove trailing whitespaces 44 | * Change url projet's website 45 | * Resize indicator icons to fit panel 46 | 47 | ### mate-indicator-applet 1.22.0 48 | 49 | * bump version 50 | 51 | ### mate-indicator-applet 1.21.0 52 | 53 | * Translations update 54 | * tomboykeybinder: avoid 'gdk_error_trap_push/pop' and 'gdk_flush' 55 | * migrate language list to po/LINGUAS file 56 | * disable deprecation warnings for distcheck 57 | * tomboykeybinder: avoid deprecated 'gdk_keymap_get_default' 58 | * transifex: update config with branch specific resoures 59 | 60 | ### mate-indicator-applet 1.20.0 61 | 62 | * require GTK+ 3.22 63 | 64 | ### mate-indicator-applet 1.19.0 65 | 66 | * Support building against Ayatana Indicators and Ubuntu Indicators alike. 67 | * Translations update 68 | 69 | ### mate-indicator-applet 1.18.0 70 | 71 | * NEWS: use consistent, project wide, markdown-like formatting 72 | to make generating release announcements easier 73 | * Build: show new style indicator support status in summary 74 | * Build: require mate-panel >= 1.17 75 | * Move to GTK+3 (require GTK+ >= 3.14), drop GTK+2 code and 76 | --with-gtk build option 77 | * Translations update 78 | 79 | ### mate-indicator-applet 1.16.0 80 | 81 | * Build: fix check for new style indicators support 82 | * Translations update 83 | 84 | ### mate-indicator-applet 1.14.1 85 | 86 | * GTK+3: add support for new style indicators (loaded 87 | from /usr/share/unity/indicators dir). It requires 88 | libindicator >= 12.10 and libido >= 13.10. Support 89 | for older versions of libindicator is left intact. 90 | * GTK+3: allow indicators to receive mouse scroll event 91 | 92 | ### mate-indicator-applet 1.14.0 93 | 94 | * GTK+3: fix a few deprecations 95 | * Translations update 96 | * Fix Changelog generation 97 | 98 | ### mate-indicator-applet 1.12.1 99 | 100 | * Allow volume change with mouse scroll over 101 | sound indicator's icon 102 | 103 | ### mate-indicator-applet 1.12.0 104 | 105 | * Bug fixes and cleanups 106 | 107 | ### mate-indicator-applet 1.10.0 108 | 109 | * Add GTK3 support 110 | * Fixed conflicts with GNOME's indicator-applet 111 | 112 | ### mate-indicator-applet 1.8.0 113 | 114 | * Bugfixes 115 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | mate-indicator-applet 2 | --------------------- 3 | 4 | A small applet to display information from various applications consistently in the panel. 5 | 6 | The indicator applet exposes Ayatana Indicators in the MATE Panel. Ayatana Indicators are an initiative by Canonical to provide crisp and clean system and application status indication. They take the form of an icon and associated menu, displayed (usually) in the desktop panel. Existing indicators include the Message Menu, Battery Menu and Sound menu. 7 | 8 | MATE Indicator Applet is a fork of Indicator Applet for GNOME (https://launchpad.net/indicator-applet). 9 | 10 | https://mate-desktop.org/ 11 | -------------------------------------------------------------------------------- /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-indicator-applet" 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 | REQUIRED_AUTOMAKE_VERSION=1.10 21 | REQUIRED_GTK_DOC_VERSION=1.13 22 | 23 | . mate-autogen 24 | 25 | -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | # This file will be processed with automake to create Makefile.in 2 | 3 | ############################## 4 | # Applets 5 | ############################## 6 | 7 | appletdir = $(datadir)/mate-panel/applets 8 | applet_in_files = \ 9 | org.mate.applets.Indicator.mate-panel-applet.desktop.in \ 10 | org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in \ 11 | org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in 12 | applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) 13 | 14 | %.mate-panel-applet.desktop.in: %.mate-panel-applet.desktop.in.in Makefile 15 | $(AM_V_GEN)sed \ 16 | -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ 17 | $< > $@ 18 | 19 | %.mate-panel-applet: %.mate-panel-applet.desktop.in Makefile 20 | $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ 21 | 22 | ############################## 23 | # DBus Services 24 | ############################## 25 | 26 | servicedir = $(datadir)/dbus-1/services 27 | service_in_files = \ 28 | org.mate.panel.applet.IndicatorAppletFactory.service.in \ 29 | org.mate.panel.applet.IndicatorAppletCompleteFactory.service.in \ 30 | org.mate.panel.applet.IndicatorAppletAppmenuFactory.service.in 31 | service_DATA = $(service_in_files:.service.in=.service) 32 | 33 | %.service: %.service.in Makefile 34 | $(AM_V_GEN)sed \ 35 | -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ 36 | $< > $@ 37 | 38 | ############################## 39 | # Icons 40 | ############################## 41 | 42 | iconsdir = $(datadir)/icons/hicolor/scalable/apps 43 | 44 | icons_DATA = mate-indicator-applet.svg 45 | 46 | gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor 47 | 48 | install-data-hook: update-icon-cache 49 | uninstall-hook: update-icon-cache 50 | update-icon-cache: 51 | @-if test -z "$(DESTDIR)"; then \ 52 | echo "Updating Gtk icon cache."; \ 53 | $(gtk_update_icon_cache); \ 54 | else \ 55 | echo "*** Icon cache not updated. After (un)install, run this:"; \ 56 | echo "*** $(gtk_update_icon_cache)"; \ 57 | fi 58 | 59 | 60 | ############################## 61 | # Autojunk 62 | ############################## 63 | 64 | CLEANFILES = \ 65 | $(applet_in_files) \ 66 | $(applet_DATA) \ 67 | $(service_DATA) \ 68 | *.bak 69 | 70 | EXTRA_DIST = \ 71 | $(icons_DATA) \ 72 | org.mate.applets.Indicator.mate-panel-applet.desktop.in.in \ 73 | org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in \ 74 | org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in \ 75 | $(service_in_files) 76 | 77 | MAINTAINERCLEANFILES = \ 78 | Makefile.in 79 | 80 | -include $(top_srcdir)/git.mk 81 | -------------------------------------------------------------------------------- /data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Applet Factory] 2 | Id=IndicatorAppletFactory 3 | Location=@LIBEXECDIR@/mate-indicator-applet 4 | Name=Indicator Applet Factory 5 | Description=Indicator Applet Factory 6 | 7 | [IndicatorApplet] 8 | Name=Indicator Applet 9 | Description=An indicator of something that needs your attention on the desktop 10 | # Translators: Do NOT translate or transliterate this text (this is an icon file name)! 11 | Icon=mate-indicator-applet 12 | MateComponentId=OAFIID:MATE_IndicatorApplet 13 | -------------------------------------------------------------------------------- /data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Applet Factory] 2 | Id=IndicatorAppletAppmenuFactory 3 | Location=@LIBEXECDIR@/mate-indicator-applet-appmenu 4 | Name=Indicator Applet Appmenu Factory 5 | Description=Indicator Applet Appmenu Factory 6 | 7 | [IndicatorAppletAppmenu] 8 | Name=Indicator Applet Appmenu 9 | Description=A applet containing the application menus. 10 | # Translators: Do NOT translate or transliterate this text (this is an icon file name)! 11 | Icon=mate-indicator-applet 12 | MateComponentId=OAFIID:MATE_IndicatorAppletAppmenu 13 | -------------------------------------------------------------------------------- /data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Applet Factory] 2 | Id=IndicatorAppletCompleteFactory 3 | Location=@LIBEXECDIR@/mate-indicator-applet-complete 4 | Name=Indicator Applet Complete Factory 5 | Description=Indicator Applet Complete Factory 6 | 7 | [IndicatorAppletComplete] 8 | Name=Indicator Applet Complete 9 | Description=A unified applet containing all of the indicators. 10 | # Translators: Do NOT translate or transliterate this text (this is an icon file name)! 11 | Icon=mate-indicator-applet 12 | MateComponentId=OAFIID:MATE_IndicatorAppletComplete 13 | -------------------------------------------------------------------------------- /data/org.mate.panel.applet.IndicatorAppletAppmenuFactory.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=org.mate.panel.applet.IndicatorAppletAppmenuFactory 3 | Exec=@LIBEXECDIR@/mate-indicator-applet-appmenu 4 | -------------------------------------------------------------------------------- /data/org.mate.panel.applet.IndicatorAppletCompleteFactory.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=org.mate.panel.applet.IndicatorAppletCompleteFactory 3 | Exec=@LIBEXECDIR@/mate-indicator-applet-complete 4 | -------------------------------------------------------------------------------- /data/org.mate.panel.applet.IndicatorAppletFactory.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=org.mate.panel.applet.IndicatorAppletFactory 3 | Exec=@LIBEXECDIR@/mate-indicator-applet 4 | -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | PACKAGE=mate-indicator-applet; 4 | 5 | make -C po $PACKAGE.pot && mv po/$PACKAGE.pot . 6 | sed -i "/#, fuzzy/d" $PACKAGE.pot 7 | -------------------------------------------------------------------------------- /mate-indicator-applet.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 9 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/" 10 | "issues\n" 11 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 21 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 22 | msgid "Indicator Applet Factory" 23 | msgstr "" 24 | 25 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 26 | #: src/applet-main.c:1019 27 | msgid "Indicator Applet" 28 | msgstr "" 29 | 30 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 31 | msgid "An indicator of something that needs your attention on the desktop" 32 | msgstr "" 33 | 34 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 35 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 36 | msgid "Indicator Applet Complete Factory" 37 | msgstr "" 38 | 39 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 40 | #: src/applet-main.c:1022 41 | msgid "Indicator Applet Complete" 42 | msgstr "" 43 | 44 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 45 | msgid "A unified applet containing all of the indicators." 46 | msgstr "" 47 | 48 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 49 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 50 | msgid "Indicator Applet Appmenu Factory" 51 | msgstr "" 52 | 53 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 54 | msgid "Indicator Applet Appmenu" 55 | msgstr "" 56 | 57 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 58 | msgid "A applet containing the application menus." 59 | msgstr "" 60 | 61 | #: src/applet-main.c:833 62 | msgid "" 63 | "This program is free software: you can redistribute it and/or modify it " 64 | "under the terms of the GNU General Public License version 3, as published by " 65 | "the Free Software Foundation." 66 | msgstr "" 67 | 68 | #: src/applet-main.c:836 69 | msgid "" 70 | "This program is distributed in the hope that it will be useful, but WITHOUT " 71 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 72 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 73 | "General Public License for more details." 74 | msgstr "" 75 | 76 | #: src/applet-main.c:840 77 | msgid "" 78 | "You should have received a copy of the GNU General Public License along with " 79 | "this program. If not, see ." 80 | msgstr "" 81 | 82 | #: src/applet-main.c:850 83 | msgid "" 84 | "Copyright © 2009-2010 Canonical, Ltd.\n" 85 | "Copyright © 2011-2021 MATE developers" 86 | msgstr "" 87 | 88 | #: src/applet-main.c:853 89 | msgid "An applet to hold your application menus." 90 | msgstr "" 91 | 92 | #: src/applet-main.c:855 93 | msgid "An applet to hold all of the system indicators." 94 | msgstr "" 95 | 96 | #: src/applet-main.c:859 97 | msgid "translator-credits" 98 | msgstr "" 99 | 100 | #: src/applet-main.c:863 101 | msgid "MATE Website" 102 | msgstr "" 103 | 104 | #: src/applet-main.c:1006 105 | msgid "_About" 106 | msgstr "" 107 | 108 | #: src/applet-main.c:1025 109 | msgid "Indicator Applet Application Menu" 110 | msgstr "" 111 | 112 | #: src/applet-main.c:1089 113 | msgid "No Indicators" 114 | msgstr "" 115 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | # please keep this list sorted alphabetically 2 | # 3 | af 4 | am 5 | an 6 | ar 7 | as 8 | ast 9 | az 10 | be 11 | bg 12 | bn 13 | bn_IN 14 | br 15 | bs 16 | ca 17 | ca@valencia 18 | cmn 19 | crh 20 | cs 21 | csb 22 | cy 23 | da 24 | de 25 | dz 26 | el 27 | en_AU 28 | en_CA 29 | en_GB 30 | eo 31 | es 32 | es_AR 33 | es_CL 34 | es_CO 35 | es_CR 36 | es_DO 37 | es_EC 38 | es_ES 39 | es_MX 40 | es_NI 41 | es_PA 42 | es_PE 43 | es_PR 44 | es_SV 45 | es_UY 46 | es_VE 47 | et 48 | eu 49 | fa 50 | fi 51 | fr 52 | frp 53 | fur 54 | fy 55 | ga 56 | gl 57 | gu 58 | ha 59 | he 60 | hi 61 | hr 62 | hu 63 | hy 64 | ia 65 | ie 66 | id 67 | ig 68 | is 69 | it 70 | ja 71 | jv 72 | ka 73 | kab 74 | kk 75 | km 76 | kn 77 | ko 78 | ks 79 | ku 80 | ku_IQ 81 | ky 82 | la 83 | lb 84 | li 85 | lt 86 | lv 87 | mai 88 | mg 89 | mi 90 | mk 91 | ml 92 | mn 93 | mr 94 | ms 95 | nan 96 | nb 97 | nds 98 | ne 99 | nl 100 | nn 101 | nqo 102 | nso 103 | oc 104 | or 105 | pa 106 | pl 107 | pms 108 | ps 109 | pt 110 | pt_BR 111 | ro 112 | ru 113 | sc 114 | si 115 | sk 116 | sl 117 | sq 118 | sr 119 | sr@latin 120 | sv 121 | sw 122 | ta 123 | te 124 | th 125 | tk 126 | tr 127 | tt 128 | ug 129 | uk 130 | ur 131 | ur_PK 132 | uz 133 | vi 134 | wa 135 | xh 136 | yo 137 | zh_CN 138 | zh-Hans 139 | zh_HK 140 | zh_TW 141 | zu 142 | -------------------------------------------------------------------------------- /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 --keyword=Description --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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in 2 | data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in 3 | data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in 4 | src/applet-main.c 5 | -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | data/org.ayatana.panel.IndicatorApplet.mate-panel-applet.in 2 | data/org.ayatana.panel.IndicatorAppletComplete.mate-panel-applet.in 3 | data/org.ayatana.panel.IndicatorAppletAppmenu.mate-panel-applet.in 4 | -------------------------------------------------------------------------------- /po/as.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: as\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "অমিতাক্ষ ফুকন (aphukan@fedoraproject.org)" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "বিষয়ে (_A)" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/bn_IN.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: bn_IN\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "সায়মিন্দু দাশগুপ্ত \n" 103 | "রুণা ভট্টাচার্য্য \n" 104 | "(অঙ্কুর প্রকল্পের পক্ষ থেকে)" 105 | 106 | #: src/applet-main.c:863 107 | msgid "MATE Website" 108 | msgstr "" 109 | 110 | #: src/applet-main.c:1006 111 | msgid "_About" 112 | msgstr "পরিচিতি (_A)" 113 | 114 | #: src/applet-main.c:1025 115 | msgid "Indicator Applet Application Menu" 116 | msgstr "" 117 | 118 | #: src/applet-main.c:1089 119 | msgid "No Indicators" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/es_CL.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Pablo Lezaeta Reyes , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Pablo Lezaeta Reyes , 2018\n" 16 | "Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_CL\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "Applets de inciadores" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "Un aplet que contiene un menú de aplicaciones" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Créditos de los traductores" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "Sitio web de MATE" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Acerca de" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "Sin inidicadores" 118 | -------------------------------------------------------------------------------- /po/es_CR.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Spanish (Costa Rica) (https://app.transifex.com/mate/teams/13566/es_CR/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_CR\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Francisco Javier F. Serrador \n" 103 | "Jorge González González " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Acerca de" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_EC.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Spanish (Ecuador) (https://app.transifex.com/mate/teams/13566/es_EC/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_EC\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Francisco Javier F. Serrador \n" 103 | "Jorge González González " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Acerca de" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_NI.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Spanish (Nicaragua) (https://app.transifex.com/mate/teams/13566/es_NI/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_NI\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Francisco Javier F. Serrador \n" 103 | "Jorge González González " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Acerca de" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_PA.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Spanish (Panama) (https://app.transifex.com/mate/teams/13566/es_PA/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_PA\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Francisco Javier F. Serrador \n" 103 | "Jorge González González " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Acerca de" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_PE.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Spanish (Peru) (https://app.transifex.com/mate/teams/13566/es_PE/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_PE\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Francisco Javier F. Serrador \n" 103 | "Jorge González González " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Acerca de" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_UY.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Spanish (Uruguay) (https://app.transifex.com/mate/teams/13566/es_UY/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_UY\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Francisco Javier F. Serrador \n" 103 | "Jorge González González " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Acerca de" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_VE.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Spanish (Venezuela) (https://app.transifex.com/mate/teams/13566/es_VE/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_VE\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Francisco Javier F. Serrador \n" 103 | "Jorge González González " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Acerca de" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alexandre Raymond, 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Alexandre Raymond, 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Èquipa de traduction" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "Sito de malyâjo de MATE" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/ga.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ga\n" 21 | "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Paul Duffy \n" 103 | "Alastair McKinstry \n" 104 | "Seán de Búrca " 105 | 106 | #: src/applet-main.c:863 107 | msgid "MATE Website" 108 | msgstr "" 109 | 110 | #: src/applet-main.c:1006 111 | msgid "_About" 112 | msgstr "_Maidir Leis Seo" 113 | 114 | #: src/applet-main.c:1025 115 | msgid "Indicator Applet Application Menu" 116 | msgstr "" 117 | 118 | #: src/applet-main.c:1089 119 | msgid "No Indicators" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/gu.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # Milan Savaliya , 2018 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 14 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 15 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 16 | "Last-Translator: Milan Savaliya , 2018\n" 17 | "Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: gu\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 25 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 26 | msgid "Indicator Applet Factory" 27 | msgstr "" 28 | 29 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 30 | #: src/applet-main.c:1019 31 | msgid "Indicator Applet" 32 | msgstr "" 33 | 34 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 35 | msgid "An indicator of something that needs your attention on the desktop" 36 | msgstr "" 37 | 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 39 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 40 | msgid "Indicator Applet Complete Factory" 41 | msgstr "" 42 | 43 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 44 | #: src/applet-main.c:1022 45 | msgid "Indicator Applet Complete" 46 | msgstr "" 47 | 48 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 49 | msgid "A unified applet containing all of the indicators." 50 | msgstr "" 51 | 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 53 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 54 | msgid "Indicator Applet Appmenu Factory" 55 | msgstr "" 56 | 57 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 58 | msgid "Indicator Applet Appmenu" 59 | msgstr "" 60 | 61 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 62 | msgid "A applet containing the application menus." 63 | msgstr "" 64 | 65 | #: src/applet-main.c:833 66 | msgid "" 67 | "This program is free software: you can redistribute it and/or modify it " 68 | "under the terms of the GNU General Public License version 3, as published by" 69 | " the Free Software Foundation." 70 | msgstr "" 71 | 72 | #: src/applet-main.c:836 73 | msgid "" 74 | "This program is distributed in the hope that it will be useful, but WITHOUT " 75 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 76 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 77 | "General Public License for more details." 78 | msgstr "" 79 | 80 | #: src/applet-main.c:840 81 | msgid "" 82 | "You should have received a copy of the GNU General Public License along with" 83 | " this program. If not, see ." 84 | msgstr "" 85 | 86 | #: src/applet-main.c:850 87 | msgid "" 88 | "Copyright © 2009-2010 Canonical, Ltd.\n" 89 | "Copyright © 2011-2021 MATE developers" 90 | msgstr "" 91 | 92 | #: src/applet-main.c:853 93 | msgid "An applet to hold your application menus." 94 | msgstr "" 95 | 96 | #: src/applet-main.c:855 97 | msgid "An applet to hold all of the system indicators." 98 | msgstr "" 99 | 100 | #: src/applet-main.c:859 101 | msgid "translator-credits" 102 | msgstr "અનુવાદક સન્માન" 103 | 104 | #: src/applet-main.c:863 105 | msgid "MATE Website" 106 | msgstr "" 107 | 108 | #: src/applet-main.c:1006 109 | msgid "_About" 110 | msgstr "વિશે (_A)" 111 | 112 | #: src/applet-main.c:1025 113 | msgid "Indicator Applet Application Menu" 114 | msgstr "" 115 | 116 | #: src/applet-main.c:1089 117 | msgid "No Indicators" 118 | msgstr "" 119 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "yabo ga-mai fassara" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Game da" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Tea Coba , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Tea Coba , 2018\n" 16 | "Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ia\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "creditos de traduction" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Re" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Omentụgharị-Uru" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Maka " 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Ngalim Siregar , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Ngalim Siregar , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "kridit-wong sing nyalin nganggo basa liya" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Watara" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/ka.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ka\n" 21 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "საინდიკატორო აპლეტი" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "ერთიანი აპლეტი, რომელიც მოიცავს ყველა ინდიკატორს." 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "აპლეტი მოიცავს პროგრამების მენიუებს." 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Vladimer Sichinava ვლადიმერ სიჭინავა " 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_შესახებ" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/kab.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Slimane Selyan AMIRI , 2020 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Slimane Selyan AMIRI , 2020\n" 16 | "Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: kab\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Launchpad Contributions:\n" 103 | " Belkacem Mohammed https://launchpad.net/~belkacem77\n" 104 | " Slimane Amiri https://launchpad.net/~slimaneamiri" 105 | 106 | #: src/applet-main.c:863 107 | msgid "MATE Website" 108 | msgstr "" 109 | 110 | #: src/applet-main.c:1006 111 | msgid "_About" 112 | msgstr "_Ɣef" 113 | 114 | #: src/applet-main.c:1025 115 | msgid "Indicator Applet Application Menu" 116 | msgstr "" 117 | 118 | #: src/applet-main.c:1089 119 | msgid "No Indicators" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "राकेश पंडित (rakesh.pandit@gmail.com)" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "बारे मंज (_A)" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "Sepanoka Destnîşanî" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "Destnîşanekê hinek tiştan li ser maseyê hewceyî bala we ne" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Erdal Ronahî" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Der barê" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "Bê destnîşan" 118 | -------------------------------------------------------------------------------- /po/ku_IQ.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rasti K5 , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Rasti K5 , 2018\n" 16 | "Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\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_IQ\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "ماڵپەڕی MATE" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_دەربارە" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/la.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Vendelín Slezák , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Vendelín Slezák , 2018\n" 16 | "Language-Team: Latin (https://app.transifex.com/mate/teams/13566/la/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: la\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Vendelín Slezák " 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Euver" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/mai.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mai\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "संगीता कुमारी (sangeeta09@gmail.com)" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "क' संबंधमे (_A)" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/mg.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mg\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Fankasitrahana ny mpandika teny" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Mombamomba" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Mo" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/mk.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # exoos , 2018 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 14 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 15 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 16 | "Last-Translator: exoos , 2018\n" 17 | "Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: mk\n" 22 | "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" 23 | 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 25 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 26 | msgid "Indicator Applet Factory" 27 | msgstr "" 28 | 29 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 30 | #: src/applet-main.c:1019 31 | msgid "Indicator Applet" 32 | msgstr "" 33 | 34 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 35 | msgid "An indicator of something that needs your attention on the desktop" 36 | msgstr "" 37 | 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 39 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 40 | msgid "Indicator Applet Complete Factory" 41 | msgstr "" 42 | 43 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 44 | #: src/applet-main.c:1022 45 | msgid "Indicator Applet Complete" 46 | msgstr "" 47 | 48 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 49 | msgid "A unified applet containing all of the indicators." 50 | msgstr "" 51 | 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 53 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 54 | msgid "Indicator Applet Appmenu Factory" 55 | msgstr "" 56 | 57 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 58 | msgid "Indicator Applet Appmenu" 59 | msgstr "" 60 | 61 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 62 | msgid "A applet containing the application menus." 63 | msgstr "" 64 | 65 | #: src/applet-main.c:833 66 | msgid "" 67 | "This program is free software: you can redistribute it and/or modify it " 68 | "under the terms of the GNU General Public License version 3, as published by" 69 | " the Free Software Foundation." 70 | msgstr "" 71 | 72 | #: src/applet-main.c:836 73 | msgid "" 74 | "This program is distributed in the hope that it will be useful, but WITHOUT " 75 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 76 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 77 | "General Public License for more details." 78 | msgstr "" 79 | 80 | #: src/applet-main.c:840 81 | msgid "" 82 | "You should have received a copy of the GNU General Public License along with" 83 | " this program. If not, see ." 84 | msgstr "" 85 | 86 | #: src/applet-main.c:850 87 | msgid "" 88 | "Copyright © 2009-2010 Canonical, Ltd.\n" 89 | "Copyright © 2011-2021 MATE developers" 90 | msgstr "" 91 | 92 | #: src/applet-main.c:853 93 | msgid "An applet to hold your application menus." 94 | msgstr "" 95 | 96 | #: src/applet-main.c:855 97 | msgid "An applet to hold all of the system indicators." 98 | msgstr "" 99 | 100 | #: src/applet-main.c:859 101 | msgid "translator-credits" 102 | msgstr "Арангел Ангов " 103 | 104 | #: src/applet-main.c:863 105 | msgid "MATE Website" 106 | msgstr "" 107 | 108 | #: src/applet-main.c:1006 109 | msgid "_About" 110 | msgstr "_За" 111 | 112 | #: src/applet-main.c:1025 113 | msgid "Indicator Applet Application Menu" 114 | msgstr "" 115 | 116 | #: src/applet-main.c:1089 117 | msgid "No Indicators" 118 | msgstr "" 119 | -------------------------------------------------------------------------------- /po/mn.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mn\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Сүхбаатарын Дөлмандах \n" 103 | "Санлигийн Бадрал 2004, " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Тухай" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/nan.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Tan, Kian-ting, 2023 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Tan, Kian-ting, 2023\n" 16 | "Language-Team: Chinese (Min Nan) (https://app.transifex.com/mate/teams/13566/nan/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nan\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Tan Kian-ting , 2023" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/nds.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nds\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Launchpad Contributions:\n" 103 | " Skullmaster https://launchpad.net/~koeritz-jonas\n" 104 | " Valmantas Palikša https://launchpad.net/~walmis" 105 | 106 | #: src/applet-main.c:863 107 | msgid "MATE Website" 108 | msgstr "" 109 | 110 | #: src/applet-main.c:1006 111 | msgid "_About" 112 | msgstr "_Över" 113 | 114 | #: src/applet-main.c:1025 115 | msgid "Indicator Applet Application Menu" 116 | msgstr "" 117 | 118 | #: src/applet-main.c:1089 119 | msgid "No Indicators" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/nqo.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Lasnei KANTE , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Lasnei KANTE , 2018\n" 16 | "Language-Team: N'ko (https://app.transifex.com/mate/teams/13566/nqo/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nqo\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_ߞߊ߲߬" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/nso.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Northern Sotho (https://app.transifex.com/mate/teams/13566/nso/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nso\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Translate.org.za \n" 103 | "Pheledi Mathibela " 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Ka ga" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/or.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: or\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "ଶୁଭ୍ରାଂଶୁ ବେହେରା " 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "ବିବରଣୀ (_A)" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/pms.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Randy Ichinose , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Randy Ichinose , 2018\n" 16 | "Language-Team: Piemontese (https://app.transifex.com/mate/teams/13566/pms/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: pms\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Al rësgard" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/ps.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ps\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Saif Khan Pathanisation project " 103 | "" 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "په اړه_" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "දර්ශක ඇමුණුම" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "දර්ශක ඇමුණුම සම්පූර්ණයි" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "පරිවර්තන ස්තුතිය" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "සම්බන්ධව (_A)" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/sw.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Swahili (https://app.transifex.com/mate/teams/13566/sw/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: sw\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Launchpad Contributions:\n" 103 | " MwalimuJini https://launchpad.net/~dude-thony" 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Barada" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Turında" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/ur_PK.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Urdu (Pakistan) (https://app.transifex.com/mate/teams/13566/ur_PK/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ur_PK\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "محمد علی مکی\n" 103 | "makki.ma@gmail.com\n" 104 | "اردو کوڈر لینکس فورم\n" 105 | "www.urducoder.com" 106 | 107 | #: src/applet-main.c:863 108 | msgid "MATE Website" 109 | msgstr "" 110 | 111 | #: src/applet-main.c:1006 112 | msgid "_About" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1025 116 | msgid "Indicator Applet Application Menu" 117 | msgstr "" 118 | 119 | #: src/applet-main.c:1089 120 | msgid "No Indicators" 121 | msgstr "" 122 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Pablo Saratxaga " 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "Å_d fwait" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "Canonical Ltd " 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Malunga" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "ìgbóríyìn òǹgbufọ̀" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "_Nípa" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/zh-Hans.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Xiaoyuan Chen , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Xiaoyuan Chen , 2018\n" 16 | "Language-Team: Chinese Simplified (https://app.transifex.com/mate/teams/13566/zh-Hans/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: zh-Hans\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "翻译人员-致谢" 102 | 103 | #: src/applet-main.c:863 104 | msgid "MATE Website" 105 | msgstr "" 106 | 107 | #: src/applet-main.c:1006 108 | msgid "_About" 109 | msgstr "" 110 | 111 | #: src/applet-main.c:1025 112 | msgid "Indicator Applet Application Menu" 113 | msgstr "" 114 | 115 | #: src/applet-main.c:1089 116 | msgid "No Indicators" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/zu.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-indicator-applet package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-indicator-applet 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/issues\n" 13 | "POT-Creation-Date: 2022-10-29 15:29+0200\n" 14 | "PO-Revision-Date: 2018-03-11 18:40+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Zulu (https://app.transifex.com/mate/teams/13566/zu/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: zu\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:5 24 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:6 25 | msgid "Indicator Applet Factory" 26 | msgstr "" 27 | 28 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:9 29 | #: src/applet-main.c:1019 30 | msgid "Indicator Applet" 31 | msgstr "" 32 | 33 | #: data/org.mate.applets.Indicator.mate-panel-applet.desktop.in.in:10 34 | msgid "An indicator of something that needs your attention on the desktop" 35 | msgstr "" 36 | 37 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:5 38 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:6 39 | msgid "Indicator Applet Complete Factory" 40 | msgstr "" 41 | 42 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:9 43 | #: src/applet-main.c:1022 44 | msgid "Indicator Applet Complete" 45 | msgstr "" 46 | 47 | #: data/org.mate.applets.IndicatorComplete.mate-panel-applet.desktop.in.in:10 48 | msgid "A unified applet containing all of the indicators." 49 | msgstr "" 50 | 51 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:5 52 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:6 53 | msgid "Indicator Applet Appmenu Factory" 54 | msgstr "" 55 | 56 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:9 57 | msgid "Indicator Applet Appmenu" 58 | msgstr "" 59 | 60 | #: data/org.mate.applets.IndicatorAppmenu.mate-panel-applet.desktop.in.in:10 61 | msgid "A applet containing the application menus." 62 | msgstr "" 63 | 64 | #: src/applet-main.c:833 65 | msgid "" 66 | "This program is free software: you can redistribute it and/or modify it " 67 | "under the terms of the GNU General Public License version 3, as published by" 68 | " the Free Software Foundation." 69 | msgstr "" 70 | 71 | #: src/applet-main.c:836 72 | msgid "" 73 | "This program is distributed in the hope that it will be useful, but WITHOUT " 74 | "ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " 75 | "SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " 76 | "General Public License for more details." 77 | msgstr "" 78 | 79 | #: src/applet-main.c:840 80 | msgid "" 81 | "You should have received a copy of the GNU General Public License along with" 82 | " this program. If not, see ." 83 | msgstr "" 84 | 85 | #: src/applet-main.c:850 86 | msgid "" 87 | "Copyright © 2009-2010 Canonical, Ltd.\n" 88 | "Copyright © 2011-2021 MATE developers" 89 | msgstr "" 90 | 91 | #: src/applet-main.c:853 92 | msgid "An applet to hold your application menus." 93 | msgstr "" 94 | 95 | #: src/applet-main.c:855 96 | msgid "An applet to hold all of the system indicators." 97 | msgstr "" 98 | 99 | #: src/applet-main.c:859 100 | msgid "translator-credits" 101 | msgstr "" 102 | "Kemi Translations Translate.org.za " 103 | "" 104 | 105 | #: src/applet-main.c:863 106 | msgid "MATE Website" 107 | msgstr "" 108 | 109 | #: src/applet-main.c:1006 110 | msgid "_About" 111 | msgstr "_Nge" 112 | 113 | #: src/applet-main.c:1025 114 | msgid "Indicator Applet Application Menu" 115 | msgstr "" 116 | 117 | #: src/applet-main.c:1089 118 | msgid "No Indicators" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | if WITH_AYATANA_INDICATOR 2 | INDICATOR_CFLAGS = $(AYATANA_INDICATOR_CFLAGS) \ 3 | $(AYATANA_INDICATOR_NG_CFLAGS) 4 | INDICATOR_LIBS = $(AYATANA_INDICATOR_LIBS) \ 5 | $(AYATANA_INDICATOR_NG_LIBS) 6 | endif 7 | 8 | if WITH_UBUNTU_INDICATOR 9 | INDICATOR_CFLAGS = $(UBUNTU_INDICATOR_CFLAGS) \ 10 | $(UBUNTU_INDICATOR_NG_CFLAGS) 11 | INDICATOR_LIBS = $(UBUNTU_INDICATOR_LIBS) \ 12 | $(UBUNTU_INDICATOR_NG_LIBS) 13 | endif 14 | 15 | libexec_PROGRAMS = \ 16 | mate-indicator-applet \ 17 | mate-indicator-applet-appmenu \ 18 | mate-indicator-applet-complete 19 | 20 | mate_indicator_applet_CFLAGS = \ 21 | -DG_LOG_DOMAIN=\""Indicator-Applet"\" \ 22 | -DDATADIR=\""$(datadir)"\" \ 23 | -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \ 24 | -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \ 25 | -DINDICATOR_APPLET \ 26 | -I$(srcdir)/.. \ 27 | $(APPLET_CFLAGS) \ 28 | $(INDICATOR_CFLAGS) \ 29 | $(WARN_CFLAGS) 30 | 31 | mate_indicator_applet_SOURCES = \ 32 | applet-main.c \ 33 | eggaccelerators.c \ 34 | eggaccelerators.h \ 35 | tomboykeybinder.c \ 36 | tomboykeybinder.h 37 | 38 | mate_indicator_applet_LDADD = \ 39 | $(APPLET_LIBS) \ 40 | $(INDICATOR_LIBS) \ 41 | -lX11 42 | 43 | mate_indicator_applet_appmenu_CFLAGS = \ 44 | -DG_LOG_DOMAIN=\""Indicator-Applet-Appmenu"\" \ 45 | -DDATADIR=\""$(datadir)"\" \ 46 | -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \ 47 | -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \ 48 | -DINDICATOR_APPLET_APPMENU \ 49 | -I$(srcdir)/.. \ 50 | $(APPLET_CFLAGS) \ 51 | $(INDICATOR_CFLAGS) \ 52 | $(WARN_CFLAGS) 53 | 54 | mate_indicator_applet_appmenu_SOURCES = \ 55 | applet-main.c \ 56 | eggaccelerators.c \ 57 | eggaccelerators.h \ 58 | tomboykeybinder.c \ 59 | tomboykeybinder.h 60 | 61 | mate_indicator_applet_appmenu_LDADD = \ 62 | $(APPLET_LIBS) \ 63 | $(INDICATOR_LIBS) \ 64 | -lX11 65 | 66 | mate_indicator_applet_complete_CFLAGS = \ 67 | -DG_LOG_DOMAIN=\""Indicator-Applet-Complete"\" \ 68 | -DDATADIR=\""$(datadir)"\" \ 69 | -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \ 70 | -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \ 71 | -DINDICATOR_APPLET_COMPLETE \ 72 | -I$(srcdir)/.. \ 73 | $(APPLET_CFLAGS) \ 74 | $(INDICATOR_CFLAGS) \ 75 | $(WARN_CFLAGS) 76 | 77 | mate_indicator_applet_complete_SOURCES = \ 78 | applet-main.c \ 79 | eggaccelerators.c \ 80 | eggaccelerators.h \ 81 | tomboykeybinder.c \ 82 | tomboykeybinder.h 83 | 84 | mate_indicator_applet_complete_LDADD = \ 85 | $(APPLET_LIBS) \ 86 | $(INDICATOR_LIBS) \ 87 | -lX11 88 | 89 | -include $(top_srcdir)/git.mk 90 | -------------------------------------------------------------------------------- /src/eggaccelerators.h: -------------------------------------------------------------------------------- 1 | /* eggaccelerators.h 2 | * Copyright (C) 2002 Red Hat, Inc. 3 | * Developed by Havoc Pennington 4 | * 5 | * This library is free software; you can redistribute it and/or 6 | * modify it under the terms of the GNU Library General Public 7 | * License as published by the Free Software Foundation; either 8 | * version 2 of the License, or (at your option) any later version. 9 | * 10 | * This library 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 GNU 13 | * Library General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Library General Public 16 | * License along with this library; if not, write to the 17 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 18 | */ 19 | 20 | #ifndef __EGG_ACCELERATORS_H__ 21 | #define __EGG_ACCELERATORS_H__ 22 | 23 | #include 24 | 25 | G_BEGIN_DECLS 26 | 27 | /* Where a value is also in GdkModifierType we coincide, 28 | * otherwise we don't overlap. 29 | */ 30 | typedef enum 31 | { 32 | EGG_VIRTUAL_SHIFT_MASK = 1 << 0, 33 | EGG_VIRTUAL_LOCK_MASK = 1 << 1, 34 | EGG_VIRTUAL_CONTROL_MASK = 1 << 2, 35 | 36 | EGG_VIRTUAL_ALT_MASK = 1 << 3, /* fixed as Mod1 */ 37 | 38 | EGG_VIRTUAL_MOD2_MASK = 1 << 4, 39 | EGG_VIRTUAL_MOD3_MASK = 1 << 5, 40 | EGG_VIRTUAL_MOD4_MASK = 1 << 6, 41 | EGG_VIRTUAL_MOD5_MASK = 1 << 7, 42 | 43 | #if 0 44 | GDK_BUTTON1_MASK = 1 << 8, 45 | GDK_BUTTON2_MASK = 1 << 9, 46 | GDK_BUTTON3_MASK = 1 << 10, 47 | GDK_BUTTON4_MASK = 1 << 11, 48 | GDK_BUTTON5_MASK = 1 << 12, 49 | /* 13, 14 are used by Xkb for the keyboard group */ 50 | #endif 51 | 52 | EGG_VIRTUAL_META_MASK = 1 << 24, 53 | EGG_VIRTUAL_SUPER_MASK = 1 << 25, 54 | EGG_VIRTUAL_HYPER_MASK = 1 << 26, 55 | EGG_VIRTUAL_MODE_SWITCH_MASK = 1 << 27, 56 | EGG_VIRTUAL_NUM_LOCK_MASK = 1 << 28, 57 | EGG_VIRTUAL_SCROLL_LOCK_MASK = 1 << 29, 58 | 59 | /* Also in GdkModifierType */ 60 | EGG_VIRTUAL_RELEASE_MASK = 1 << 30, 61 | 62 | /* 28-31 24-27 20-23 16-19 12-15 8-11 4-7 0-3 63 | * 7 f 0 0 0 0 f f 64 | */ 65 | EGG_VIRTUAL_MODIFIER_MASK = 0x7f0000ff 66 | 67 | } EggVirtualModifierType; 68 | 69 | gboolean egg_accelerator_parse_virtual (const gchar *accelerator, 70 | guint *accelerator_key, 71 | EggVirtualModifierType *accelerator_mods); 72 | void egg_keymap_resolve_virtual_modifiers (GdkKeymap *keymap, 73 | EggVirtualModifierType virtual_mods, 74 | GdkModifierType *concrete_mods); 75 | void egg_keymap_virtualize_modifiers (GdkKeymap *keymap, 76 | GdkModifierType concrete_mods, 77 | EggVirtualModifierType *virtual_mods); 78 | 79 | G_END_DECLS 80 | 81 | #endif /* __EGG_ACCELERATORS_H__ */ 82 | -------------------------------------------------------------------------------- /src/tomboykeybinder.h: -------------------------------------------------------------------------------- 1 | /* tomboykeybinder.h 2 | * Copyright (C) 2008 Novell 3 | * 4 | * This library is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU Library General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This library is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * Library General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU Library General Public 15 | * License along with this library; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 17 | */ 18 | #ifndef __TOMBOY_KEY_BINDER_H__ 19 | #define __TOMBOY_KEY_BINDER_H__ 20 | 21 | #include 22 | 23 | G_BEGIN_DECLS 24 | 25 | typedef void (* TomboyBindkeyHandler) (char *keystring, gpointer user_data); 26 | 27 | void tomboy_keybinder_init (void); 28 | 29 | void tomboy_keybinder_bind (const char *keystring, 30 | TomboyBindkeyHandler handler, 31 | gpointer user_data); 32 | 33 | void tomboy_keybinder_unbind (const char *keystring, 34 | TomboyBindkeyHandler handler); 35 | 36 | gboolean tomboy_keybinder_is_modifier (guint keycode); 37 | 38 | guint32 tomboy_keybinder_get_current_event_time (void); 39 | 40 | G_END_DECLS 41 | 42 | #endif /* __TOMBOY_KEY_BINDER_H__ */ 43 | 44 | --------------------------------------------------------------------------------