├── .build.yml ├── .github ├── FUNDING.yml └── issue_template.md ├── .travis.yml ├── .tx ├── config └── config_20221028215437.bak ├── AUTHORS ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── desktop-directories ├── Makefile.am ├── mate-audio-video.directory.in ├── mate-collection.directory.in ├── mate-development.directory.in ├── mate-education.directory.in ├── mate-game.directory.in ├── mate-graphics.directory.in ├── mate-hardware.directory.in ├── mate-internet-and-network.directory.in ├── mate-look-and-feel.directory.in ├── mate-menu-applications.directory.in ├── mate-menu-system.directory.in ├── mate-network.directory.in ├── mate-office.directory.in ├── mate-other.directory.in ├── mate-personal.directory.in ├── mate-settings-system.directory.in ├── mate-settings.directory.in ├── mate-system-tools.directory.in ├── mate-system.directory.in ├── mate-utility-accessibility.directory.in ├── mate-utility.directory.in └── meson.build ├── git.mk ├── layout ├── Makefile.am ├── mate-applications.menu ├── mate-preferences-categories.menu ├── mate-settings.menu └── meson.build ├── libmenu ├── Makefile.am ├── desktop-entries.c ├── desktop-entries.h ├── entry-directories.c ├── entry-directories.h ├── libmate-menu-uninstalled.pc.in ├── libmate-menu.pc.in ├── matemenu-tree.c ├── matemenu-tree.h ├── menu-layout.c ├── menu-layout.h ├── menu-monitor.c ├── menu-monitor.h ├── menu-util.c ├── menu-util.h └── meson.build ├── makepot ├── mate-menus.pot ├── meson.build ├── meson_options.txt ├── 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 ├── 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_ES.po ├── es_MX.po ├── es_PR.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fil.po ├── fr.po ├── fr_CA.po ├── frp.po ├── fur.po ├── fy.po ├── ga.po ├── gl.po ├── gnome-copyrights.txt ├── gu.po ├── ha.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── is.po ├── it.po ├── ja.po ├── jv.po ├── ka.po ├── kab.po ├── kk.po ├── km.po ├── kn.po ├── ko.po ├── ks.po ├── ku.po ├── ku_IQ.po ├── ky.po ├── la.po ├── li.po ├── lt.po ├── lv.po ├── mai.po ├── meson.build ├── mg.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mr.po ├── ms.po ├── my.po ├── nah.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── nso.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── pms.po ├── ps.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── sc.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tk.po ├── tr.po ├── ts.po ├── ug.po ├── uk.po ├── ur.po ├── uz.po ├── vi.po ├── wa.po ├── xh.po ├── yo.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po └── util ├── Makefile.am ├── mate-menus-ls.py ├── meson.build └── test-menu-spec.c /.build.yml: -------------------------------------------------------------------------------- 1 | ########################################################## 2 | # THE FOLLOWING LINES IS USED BY docker-build 3 | ########################################################## 4 | requires: 5 | archlinux: 6 | # Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-menus 7 | - autoconf-archive 8 | - clang 9 | - gcc 10 | - git 11 | - glib2 12 | - gobject-introspection 13 | - make 14 | - mate-common 15 | - meson 16 | - python2 17 | - which 18 | 19 | debian: 20 | # Useful URL: https://github.com/mate-desktop/debian-packages 21 | # Useful URL: https://salsa.debian.org/debian-mate-team/mate-menus 22 | - autopoint 23 | - clang 24 | - clang-tools 25 | - cppcheck 26 | - gcc 27 | - git 28 | - gobject-introspection 29 | - libgirepository1.0-dev 30 | - libglib2.0-dev 31 | - make 32 | - mate-common 33 | - meson 34 | 35 | fedora: 36 | # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-menus.git 37 | - autoconf-archive 38 | - clang 39 | - clang-analyzer 40 | - cppcheck-htmlreport 41 | - chrpath 42 | - gcc 43 | - git 44 | - gobject-introspection-devel 45 | - make 46 | - mate-common 47 | - meson 48 | - python2-devel 49 | - redhat-rpm-config 50 | 51 | ubuntu: 52 | - autopoint 53 | - clang 54 | - clang-tools 55 | - git 56 | - gobject-introspection 57 | - libgirepository1.0-dev 58 | - libglib2.0-dev 59 | - make 60 | - mate-common 61 | - meson 62 | 63 | variables: 64 | - 'CHECKERS=" 65 | -enable-checker deadcode.DeadStores 66 | -enable-checker alpha.deadcode.UnreachableCode 67 | -enable-checker alpha.core.CastSize 68 | -enable-checker alpha.core.CastToStruct 69 | -enable-checker alpha.core.IdenticalExpr 70 | -enable-checker alpha.core.SizeofPtr 71 | -enable-checker alpha.security.ArrayBoundV2 72 | -enable-checker alpha.security.MallocOverflow 73 | -enable-checker alpha.security.ReturnPtrRange 74 | -enable-checker alpha.unix.SimpleStream 75 | -enable-checker alpha.unix.cstring.BufferOverlap 76 | -enable-checker alpha.unix.cstring.NotNullTerminated 77 | -enable-checker alpha.unix.cstring.OutOfBounds 78 | -enable-checker alpha.core.FixedAddr 79 | -enable-checker security.insecureAPI.strcpy"' 80 | 81 | before_scripts: 82 | 83 | build_scripts: 84 | - if [ ${DISTRO_NAME} == "debian" ];then 85 | - export CFLAGS+=" -Wsign-compare" 86 | - cppcheck --enable=warning,style,performance,portability,information,missingInclude -D'MATEMENU_I_KNOW_THIS_IS_UNSTABLE' -D'G_ENABLE_DEBUG' . 87 | - fi 88 | 89 | - NOCONFIGURE=1 ./autogen.sh 90 | - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum 91 | - if [ $CPU_COUNT -gt 1 ]; then 92 | - if [ ${DISTRO_NAME} == "debian" ];then 93 | - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make -j $CPU_COUNT 94 | - make clean 95 | - fi 96 | - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT 97 | - else 98 | - if [ ${DISTRO_NAME} == "debian" ];then 99 | - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make 100 | - make clean 101 | - fi 102 | - scan-build $CHECKERS --keep-cc -o html-report make 103 | - fi 104 | 105 | after_scripts: 106 | - if [ ${DISTRO_NAME} == "fedora" ];then 107 | - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude -D'MATEMENU_I_KNOW_THIS_IS_UNSTABLE' -D'G_ENABLE_DEBUG' . 108 | - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport 109 | - ./gen-index -l 20 110 | - fi 111 | - make distcheck 112 | 113 | releases: 114 | draft: false 115 | prerelease: false 116 | checksum: true 117 | file_glob: true 118 | files: mate-menus-*.tar.xz 119 | github_release: 120 | tags: true 121 | overwrite: true 122 | base_version: 1.20.0 123 | notify_servers: 124 | - https://release.mate-desktop.org/release 125 | 126 | -------------------------------------------------------------------------------- /.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 --build meson 28 | 29 | notifications: 30 | irc: 31 | if: (tag OR branch = master) AND 32 | repo = "mate-desktop/mate-menus" 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-menus] 5 | file_filter = po/.po 6 | source_file = po/mate-menus.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | 11 | -------------------------------------------------------------------------------- /.tx/config_20221028215437.bak: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [MATE.master--mate-menus] 5 | file_filter = po/.po 6 | source_file = po/mate-menus.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Mark McLoughlin 2 | Havoc Pennington 3 | Vincent Untz 4 | Perberos 5 | Steve Zesch 6 | Stefano Karapetsas 7 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | The ChangeLog is auto-generated when releasing. If you are seeing this, use 2 | 'git log' for a detailed list of changes. 3 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | if USE_NLS 2 | PO_SUBDIR = po 3 | endif 4 | 5 | SUBDIRS = $(PO_SUBDIR) libmenu desktop-directories layout util 6 | 7 | ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} 8 | 9 | EXTRA_DIST = autogen.sh 10 | 11 | DISTCHECK_CONFIGURE_FLAGS = \ 12 | --disable-introspection \ 13 | --enable-compile-warnings=no \ 14 | CFLAGS='-Wno-deprecated-declarations' 15 | 16 | MAINTAINERCLEANFILES = \ 17 | $(srcdir)/INSTALL \ 18 | $(srcdir)/aclocal.m4 \ 19 | $(srcdir)/config.guess \ 20 | $(srcdir)/config.h.in \ 21 | $(srcdir)/config.sub \ 22 | $(srcdir)/depcomp \ 23 | $(srcdir)/install-sh \ 24 | $(srcdir)/ltmain.sh \ 25 | $(srcdir)/missing \ 26 | $(srcdir)/mkinstalldirs \ 27 | `find "$(srcdir)" -type f -name Makefile.in -print` \ 28 | $(srcdir)/configure \ 29 | $(srcdir)/m4/libtool.m4 \ 30 | $(srcdir)/m4/ltoptions.m4 \ 31 | $(srcdir)/m4/ltsugar.m4 \ 32 | $(srcdir)/m4/ltversion.m4 \ 33 | $(srcdir)/m4/lt~obsolete.m4 34 | 35 | # Build ChangeLog from GIT history 36 | ChangeLog: 37 | $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ 38 | GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ 39 | fi 40 | 41 | dist: ChangeLog 42 | 43 | .PHONY: ChangeLog 44 | 45 | -include $(top_srcdir)/git.mk 46 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | ### mate-menus 1.28.0 2 | 3 | * Translations update 4 | * matemenu-tree: Fix crash when adding launcher from compact menu 5 | * add meson build system 6 | * matemenu-tree: Fix build warning -Wsign-conversion 7 | * fix test programs 8 | * test-menu-spec: Fix build warning -Wmissing-field-initializers 9 | 10 | ### mate-menus 1.27.0 11 | 12 | * Translations update 13 | * configure.ac: The macro 'AC_HELP_STRING' is obsolete 14 | * tx: update resource 15 | * tx: migrate config file 16 | * build warning: AC_OUTPUT should be used without arguments 17 | * fix build error: invalid operands to binary expression 18 | * ci: drop -Wunused-parameter compiler cflag from debian build 19 | * Use a blank line at most 20 | * Remove extra whitespaces on #ifdef..#endif code block 21 | * Let user disable collection menu entry [--disable-collection] 22 | 23 | ### mate-menus 1.26.0 24 | 25 | * Translations update 26 | * update copyright to 2021 27 | 28 | ### mate-menus 1.25.1 29 | 30 | * Translations update 31 | * build: remove .directory files using clean target 32 | * build: allow users to disable gettext support (--disable-nls) 33 | * Set compiler debug flags / logging with MATE_DEBUG_CHECK 34 | * build: set GETTEXT_PACKAGE=AC_PACKAGE_NAME 35 | * Remove -Wconversion -Wsign-compare -Wsign-conversion warnings 36 | * matemenu-tree: do not call g_settings_get_string unless necessary 37 | * Improve the description of the collection directory 38 | * i18n: Add mate-collection.directory.in in POTFILES.in 39 | * build: Set debug symbols and logging using --enable-debug 40 | * entry-directories: Use of memory after it is freed (scan-build) 41 | * matemenu-tree: Fix memory leak 42 | * matemenu-tree: Remove collection_applet_free 43 | * Remove the cppcheck warning about the variable scope can be reduced 44 | * matemenu-tree: minor code format 45 | * desktop-entries: warning -Wempty-body 46 | * Remove USE_MATE2_MACROS from autogen.sh (legacy) 47 | * Add collection menu item 48 | 49 | ### mate-menus 1.25.0 50 | 51 | * Translations update 52 | * add git.mk to generate .gitignore 53 | * build: silent build warnings for distcheck 54 | * build: do not override the default value for MATE_COMPILE_WARNINGS 55 | * Do not collect the translation for Icon 56 | 57 | ### mate-menus 1.24.0 58 | 59 | * build: show warning flags on configuration summary 60 | * Translations update 61 | * migrate from intltools to gettext 62 | 63 | ### mate-menus 1.23.0 64 | 65 | * Translations update 66 | * Use datadir and libdir when install gir files 67 | * Change url project's website 68 | * [ci] Add cppcheck html report 69 | * [ci] Enable Clang Static Analyzer 70 | 71 | ### mate-menus 1.22.0 72 | 73 | * Translations update 74 | * initial travis-ci support 75 | * Switch to modern realpath() 76 | * disable deprecation warnings for distcheck 77 | * drop Python support leftovers 78 | 79 | ### mate-menus 1.21.0 80 | 81 | * udpate examples 82 | * backports from gnome-menus 83 | * use G_BEGIN/END_DECLS 84 | * require gio-unix, drop python example 85 | * require gio-unix 86 | * drop python2 support 87 | 88 | ### mate-menus 1.20.0 89 | 90 | * Translations update 91 | * bump gio version to 2.50.0 92 | * require GLib 2.50.0 93 | 94 | ### mate-menus 1.19.0 95 | 96 | * Translations update 97 | * make mate-applications-merged symlink 98 | * Restore Polish translation credits from GNOME 99 | 100 | ### mate-menus 1.18.0 101 | 102 | * NEWS: use consistent, project wide, markdown-like formatting 103 | to make generating release announcements easier 104 | * Translations update 105 | 106 | ### mate-menus 1.16.0 107 | 108 | * Translations update 109 | 110 | ### mate-menus 1.14.0 111 | 112 | * Move mate-preferences-categories.menu from mate-control-center. 113 | That file can be packaged separately in distros to let users 114 | decide whether they want categories in preferences menu or not. 115 | * Translations update 116 | * Add Changelog generation 117 | 118 | ### mate-menus 1.12.0 119 | 120 | * Use pkg-config to check for python (requires python 2.7) 121 | * Some fixes and cleanups 122 | * Translations update 123 | 124 | ### mate-menus 1.10.0 125 | 126 | * Translations update 127 | * Bugfixes 128 | 129 | ### mate-menus 1.8.0 130 | 131 | * Add a possibility to enable old gnome-2 preferences menu style with 132 | categories 133 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | mate-menus 2 | =========== 3 | 4 | mate-menus contains the libmate-menu library, the layout configuration 5 | files for the MATE menu, as well as a simple menu editor. 6 | 7 | The libmate-menu library implements the "Desktop Menu Specification" 8 | from freedesktop.org: 9 | 10 | http://freedesktop.org/wiki/Specifications/menu-spec 11 | http://specifications.freedesktop.org/menu-spec/menu-spec-latest.html 12 | 13 | You may download updates to the package from: 14 | 15 | http://pub.mate-desktop.org/ 16 | 17 | mate-menus is a fork of gnome-menus. 18 | 19 | Installation 20 | ============ 21 | 22 | If you are not using a released version of mate-menus (for example, if 23 | you checked out the code from git), you first need to run './autogen.sh'. 24 | 25 | 26 | How to report bugs 27 | ================== 28 | 29 | Bugs should be reported to the MATE bug tracking system: 30 | 31 | https://github.com/mate-desktop/mate-menus/issues 32 | 33 | You will need to create an account for yourself. 34 | -------------------------------------------------------------------------------- /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-menus" 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.9 21 | USE_COMMON_DOC_BUILD=yes 22 | 23 | . mate-autogen 24 | 25 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- 1 | AC_PREREQ(2.62) 2 | 3 | AC_INIT([mate-menus], [1.28.0], [https://mate-desktop.org]) 4 | AC_CONFIG_SRCDIR(libmenu/matemenu-tree.h) 5 | 6 | AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-xz check-news]) 7 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 8 | AC_CONFIG_MACRO_DIR([m4]) 9 | AC_CONFIG_HEADERS(config.h) 10 | 11 | AM_MAINTAINER_MODE 12 | MATE_MAINTAINER_MODE_DEFINES 13 | MATE_DEBUG_CHECK([no]) 14 | MATE_COMPILE_WARNINGS 15 | 16 | # Before making a release, the LT_VERSION string should be modified. 17 | # The string is of the form C:R:A. 18 | # - If interfaces have been changed or added, but binary compatibility has 19 | # been preserved, change to C+1:0:A+1 20 | # - If binary compatibility has been broken (eg removed or changed interfaces) 21 | # change to C+1:0:0 22 | # - If the interface is the same as the previous version, change to C:R+1:A 23 | 24 | LIB_MENU_LT_VERSION=6:9:4 25 | AC_SUBST(LIB_MENU_LT_VERSION) 26 | 27 | AM_GNU_GETTEXT([external]) 28 | AM_GNU_GETTEXT_VERSION([0.19.8]) 29 | AM_CONDITIONAL([USE_NLS], [test "x${USE_NLS}" = "xyes"]) 30 | 31 | GETTEXT_PACKAGE=AC_PACKAGE_NAME 32 | AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Name of default gettext domain]) 33 | AC_SUBST(GETTEXT_PACKAGE) 34 | 35 | AC_PROG_CC 36 | AC_STDC_HEADERS 37 | AC_ARG_PROGRAM 38 | AM_PROG_LIBTOOL 39 | 40 | PKG_CHECK_MODULES(GIO_UNIX, gio-unix-2.0 >= 2.50.0) 41 | AC_SUBST(GIO_UNIX_CFLAGS) 42 | AC_SUBST(GIO_UNIX_LIBS) 43 | 44 | AC_ARG_ENABLE(collection, 45 | AS_HELP_STRING([--enable-collection], 46 | [enable collection menu entry]),, 47 | enable_collection=yes) 48 | 49 | if test x$enable_collection = xyes; then 50 | AC_DEFINE(WITH_COLLECTION,1,[Build with collection menu entry support]) 51 | fi 52 | 53 | AC_ARG_ENABLE(deprecation_flags, 54 | [AS_HELP_STRING([--enable-deprecation-flags], 55 | [use *_DISABLE_DEPRECATED flags @<:@default=no@:>@])],, 56 | [enable_deprecation_flags=no]) 57 | 58 | if test "x$enable_deprecation_flags" = "xyes"; then 59 | DISABLE_DEPRECATED_CFLAGS=$DISABLE_DEPRECATED 60 | AC_SUBST(DISABLE_DEPRECATED_CFLAGS) 61 | fi 62 | 63 | dnl --------------------------------------------------------------------------- 64 | dnl - logging 65 | dnl --------------------------------------------------------------------------- 66 | if test "$ax_enable_debug" = "yes"; then 67 | DEBUG_CFLAGS="-DG_ENABLE_DEBUG" 68 | else 69 | if test "x$ax_enable_debug" = "xno"; then 70 | DEBUG_CFLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS" 71 | else 72 | DEBUG_CFLAGS="" 73 | fi 74 | fi 75 | AC_SUBST(DEBUG_CFLAGS) 76 | 77 | GOBJECT_INTROSPECTION_CHECK([0.6.7]) 78 | 79 | AC_CONFIG_FILES([ 80 | Makefile 81 | libmenu/Makefile 82 | libmenu/libmate-menu.pc 83 | libmenu/libmate-menu-uninstalled.pc 84 | layout/Makefile 85 | desktop-directories/Makefile 86 | util/Makefile 87 | po/Makefile.in 88 | ]) 89 | AC_OUTPUT 90 | 91 | dnl --------------------------------------------------------------------------- 92 | dnl - Show summary 93 | dnl --------------------------------------------------------------------------- 94 | 95 | echo " 96 | mate-menus $VERSION 97 | `echo mate-menus $VERSION | sed "s/./=/g"` 98 | 99 | prefix: ${prefix} 100 | exec_prefix: ${exec_prefix} 101 | libdir: ${libdir} 102 | bindir: ${bindir} 103 | sbindir: ${sbindir} 104 | sysconfdir: ${sysconfdir} 105 | localstatedir: ${localstatedir} 106 | datadir: ${datadir} 107 | source code location: ${srcdir} 108 | compiler: ${CC} 109 | cflags: ${CFLAGS} 110 | Warning flags: ${WARN_CFLAGS} 111 | Maintainer mode: ${USE_MAINTAINER_MODE} 112 | Use *_DISABLE_DEPRECATED: ${enable_deprecation_flags} 113 | 114 | Turn on debugging: ${ax_enable_debug} 115 | Collection menu entry: ${enable_collection} 116 | Build introspection support: ${found_introspection} 117 | Native Language support: ${USE_NLS} 118 | 119 | " 120 | -------------------------------------------------------------------------------- /desktop-directories/Makefile.am: -------------------------------------------------------------------------------- 1 | directorydir = $(datadir)/mate/desktop-directories 2 | 3 | # Should be moved to mate-control-center: 4 | directory_in_controlcenterfiles = \ 5 | mate-hardware.directory.in \ 6 | mate-internet-and-network.directory.in \ 7 | mate-look-and-feel.directory.in \ 8 | mate-personal.directory.in \ 9 | mate-system.directory.in 10 | 11 | directory_in_files = \ 12 | mate-audio-video.directory.in \ 13 | mate-development.directory.in \ 14 | mate-education.directory.in \ 15 | mate-game.directory.in \ 16 | mate-graphics.directory.in \ 17 | mate-network.directory.in \ 18 | mate-office.directory.in \ 19 | mate-settings.directory.in \ 20 | mate-settings-system.directory.in \ 21 | mate-system-tools.directory.in \ 22 | mate-utility.directory.in \ 23 | mate-utility-accessibility.directory.in \ 24 | mate-other.directory.in \ 25 | mate-menu-applications.directory.in \ 26 | mate-menu-system.directory.in \ 27 | mate-collection.directory.in \ 28 | $(directory_in_controlcenterfiles) 29 | 30 | directory_DATA = $(directory_in_files:.directory.in=.directory) 31 | 32 | %.directory: %.directory.in 33 | if USE_NLS 34 | $(AM_V_GEN) $(MSGFMT) --desktop --keyword= --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ 35 | else 36 | $(AM_V_GEN) cp $< $@ 37 | endif 38 | 39 | EXTRA_DIST= $(directory_in_files) 40 | 41 | CLEANFILES = $(directory_DATA) 42 | 43 | -include $(top_srcdir)/git.mk 44 | -------------------------------------------------------------------------------- /desktop-directories/mate-audio-video.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Sound & Video 3 | Comment=Multimedia menu 4 | Icon=applications-multimedia 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-collection.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Collection 3 | Comment=The most frequently used shortcuts 4 | Icon=starred 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-development.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Programming 3 | Comment=Tools for software development 4 | Icon=applications-development 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-education.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Education 3 | Icon=applications-science 4 | Type=Directory 5 | -------------------------------------------------------------------------------- /desktop-directories/mate-game.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Games 3 | Comment=Games and amusements 4 | Icon=applications-games 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-graphics.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Graphics 3 | Comment=Graphics applications 4 | Icon=applications-graphics 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-hardware.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Hardware 3 | Comment=Settings for several hardware devices 4 | Icon=preferences-desktop-peripherals 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-internet-and-network.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Internet and Network 3 | Comment=Network-related settings 4 | Icon=preferences-system-network 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-look-and-feel.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Look and Feel 3 | Comment=Settings controlling the desktop appearance and behavior 4 | Icon=preferences-desktop 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-menu-applications.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Applications 3 | Comment=Applications 4 | Icon=applications-other 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-menu-system.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=System 3 | Comment=Personal preferences and administration settings 4 | Icon=preferences-other 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-network.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Internet 3 | Comment=Programs for Internet access such as web and email 4 | Icon=applications-internet 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-office.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Office 3 | Comment=Office Applications 4 | Icon=applications-office 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-other.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Other 3 | Comment=Applications that did not fit in other categories 4 | Icon=applications-other 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-personal.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | # Translators: this is Personal as in "Personal settings" 3 | Name=Personal 4 | Comment=Personal settings 5 | Icon=preferences-desktop-personal 6 | Type=Directory 7 | -------------------------------------------------------------------------------- /desktop-directories/mate-settings-system.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Directory 3 | Name=Administration 4 | Comment=Change system-wide settings (affects all users) 5 | Icon=preferences-system 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-settings.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Preferences 3 | Comment=Personal preferences 4 | Icon=preferences-desktop 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-system-tools.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=System Tools 3 | Comment=System configuration and monitoring 4 | Icon=applications-system 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-system.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=System 3 | Comment=System settings 4 | Icon=preferences-system 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-utility-accessibility.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Universal Access 3 | Comment=Universal Access Settings 4 | Type=Directory 5 | Icon=preferences-desktop-accessibility 6 | -------------------------------------------------------------------------------- /desktop-directories/mate-utility.directory.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Accessories 3 | Comment=Desktop accessories 4 | Icon=applications-accessories 5 | Type=Directory 6 | -------------------------------------------------------------------------------- /desktop-directories/meson.build: -------------------------------------------------------------------------------- 1 | desktop_files = [ 2 | # Should be moved to mate-control-center: 3 | 'mate-hardware.directory', 4 | 'mate-internet-and-network.directory', 5 | 'mate-look-and-feel.directory', 6 | 'mate-personal.directory', 7 | 'mate-system.directory', 8 | 9 | 'mate-audio-video.directory', 10 | 'mate-development.directory', 11 | 'mate-education.directory', 12 | 'mate-game.directory', 13 | 'mate-graphics.directory', 14 | 'mate-network.directory', 15 | 'mate-office.directory', 16 | 'mate-settings.directory', 17 | 'mate-settings-system.directory', 18 | 'mate-system-tools.directory', 19 | 'mate-utility.directory', 20 | 'mate-utility-accessibility.directory', 21 | 'mate-other.directory', 22 | 'mate-menu-applications.directory', 23 | 'mate-menu-system.directory', 24 | 'mate-collection.directory', 25 | ] 26 | 27 | foreach f : desktop_files 28 | desktop_file = i18n.merge_file( 29 | input: '@0@.in'.format(f), 30 | output: f, 31 | type: 'desktop', 32 | po_dir: join_paths(srcdir, 'po'), 33 | install: true, 34 | install_dir: join_paths( 35 | datadir, 36 | 'mate', 37 | 'desktop-directories', 38 | ) 39 | ) 40 | endforeach 41 | -------------------------------------------------------------------------------- /layout/Makefile.am: -------------------------------------------------------------------------------- 1 | menudir = $(sysconfdir)/xdg/menus 2 | 3 | menu_DATA = \ 4 | mate-applications.menu \ 5 | mate-settings.menu \ 6 | mate-preferences-categories.menu 7 | 8 | EXTRA_DIST= $(menu_DATA) 9 | 10 | -include $(top_srcdir)/git.mk 11 | -------------------------------------------------------------------------------- /layout/mate-applications.menu: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | Applications 7 | mate-menu-applications.directory 8 | 9 | 10 | 11 | /etc/X11/applnk 12 | /usr/share/mate/apps 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | applications-merged 21 | 22 | 23 | 24 | Accessories 25 | mate-utility.directory 26 | 27 | 28 | Utility 29 | 33 | Accessibility 34 | System 35 | 36 | 37 | 38 | 39 | 40 | 41 | Universal Access 42 | mate-utility-accessibility.directory 43 | 44 | 45 | Accessibility 46 | Settings 47 | 48 | 49 | 50 | 51 | 52 | 53 | Development 54 | mate-development.directory 55 | 56 | 57 | Development 58 | 59 | emacs.desktop 60 | 61 | 62 | 63 | 64 | 65 | Education 66 | mate-education.directory 67 | 68 | 69 | Education 70 | 71 | 72 | 73 | 74 | 75 | 76 | Games 77 | mate-game.directory 78 | 79 | 80 | Game 81 | 82 | 83 | 84 | 85 | 86 | 87 | Graphics 88 | mate-graphics.directory 89 | 90 | 91 | Graphics 92 | 93 | 94 | 95 | 96 | 97 | 98 | Internet 99 | mate-network.directory 100 | 101 | 102 | Network 103 | 104 | 105 | 106 | 107 | 108 | 109 | Multimedia 110 | mate-audio-video.directory 111 | 112 | 113 | AudioVideo 114 | 115 | 116 | 117 | 118 | 119 | 120 | Office 121 | mate-office.directory 122 | 123 | 124 | Office 125 | 126 | 127 | 128 | 129 | 130 | 131 | System 132 | mate-system-tools.directory 133 | 134 | 135 | System 136 | Settings 137 | 138 | 139 | 140 | 141 | 142 | 143 | Collection 144 | mate-collection.directory 145 | 146 | 147 | Collection 148 | Settings 149 | 150 | 151 | 152 | 153 | 154 | Other 155 | mate-other.directory 156 | 157 | 158 | 159 | Core 160 | Settings 161 | Screensaver 162 | 163 | 164 | 165 | 166 | 167 | -------------------------------------------------------------------------------- /layout/mate-preferences-categories.menu: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Preferences 6 | 7 | 8 | Personal 9 | mate-personal.directory 10 | 11 | 12 | Settings 13 | X-MATE-PersonalSettings 14 | System 15 | 16 | 17 | Settings 18 | X-GNOME-PersonalSettings 19 | System 20 | 21 | 22 | Settings 23 | X-GNOME-SystemSettings 24 | Archiving 25 | 26 | 27 | Settings 28 | Accessibility 29 | 30 | 31 | 32 | 33 | 34 | Look and Feel 35 | mate-look-and-feel.directory 36 | 37 | 38 | Settings 39 | DesktopSettings 40 | System 41 | Security 42 | 43 | 44 | Settings 45 | Qt 46 | System 47 | Security 48 | 49 | 50 | 51 | 52 | 53 | Internet and Network 54 | mate-internet-and-network.directory 55 | 56 | 57 | Settings 58 | X-MATE-NetworkSettings 59 | System 60 | 61 | 62 | Settings 63 | X-GNOME-NetworkSettings 64 | System 65 | 66 | 67 | Settings 68 | Security 69 | System 70 | 71 | 72 | 73 | 74 | 75 | Hardware 76 | mate-hardware.directory 77 | 78 | 79 | Settings 80 | HardwareSettings 81 | System 82 | 83 | 84 | 85 | 86 | 87 | Other 88 | mate-other.directory 89 | 90 | 91 | Settings 92 | Accessibility 93 | System 94 | DesktopSettings 95 | HardwareSettings 96 | Security 97 | Archiving 98 | Qt 99 | X-MATE-NetworkSettings 100 | X-GNOME-NetworkSettings 101 | X-MATE-PersonalSettings 102 | X-GNOME-PersonalSettings 103 | 104 | 105 | 106 | matecc.desktop 107 | 108 | 109 | 110 | 111 | Settings 112 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /layout/mate-settings.menu: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | Desktop 7 | mate-menu-system.directory 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | preferences-merged 16 | 17 | 18 | 19 | matecc.desktop 20 | 21 | 22 | 23 | 24 | Preferences 25 | mate-settings.directory 26 | 27 | 28 | Settings 29 | 30 | 31 | System 32 | matecc.desktop 33 | 34 | 35 | 36 | 37 | mate-preferences-categories.menu 38 | 39 | 40 | 41 | 42 | Administration 43 | mate-settings-system.directory 44 | 45 | 46 | Settings 47 | System 48 | 49 | 50 | 51 | 52 | 53 | Preferences 54 | Administration 55 | 56 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /layout/meson.build: -------------------------------------------------------------------------------- 1 | menu_files = [ 2 | 'mate-applications.menu', 3 | 'mate-settings.menu', 4 | 'mate-preferences-categories.menu', 5 | ] 6 | 7 | install_data(menu_files, 8 | install_dir : get_option('sysconfdir') / 'xdg/menus' 9 | ) 10 | 11 | -------------------------------------------------------------------------------- /libmenu/Makefile.am: -------------------------------------------------------------------------------- 1 | lib_LTLIBRARIES = libmate-menu.la 2 | 3 | AM_CPPFLAGS = \ 4 | $(GIO_UNIX_CFLAGS) \ 5 | -DMATEMENU_I_KNOW_THIS_IS_UNSTABLE \ 6 | $(DISABLE_DEPRECATED_CFLAGS) \ 7 | $(DEBUG_CFLAGS) 8 | 9 | AM_CFLAGS = $(WARN_CFLAGS) 10 | 11 | libmate_menu_includedir = $(includedir)/mate-menus 12 | libmate_menu_include_HEADERS = \ 13 | matemenu-tree.h 14 | 15 | libmate_menu_sources = \ 16 | desktop-entries.c \ 17 | entry-directories.c \ 18 | matemenu-tree.c \ 19 | menu-layout.c \ 20 | menu-monitor.c \ 21 | menu-util.c 22 | 23 | libmate_menu_la_SOURCES = \ 24 | $(libmate_menu_sources) \ 25 | desktop-entries.h \ 26 | entry-directories.h \ 27 | matemenu-tree.h \ 28 | menu-layout.h \ 29 | menu-monitor.h \ 30 | menu-util.h 31 | 32 | libmate_menu_la_LIBADD = \ 33 | $(GIO_UNIX_LIBS) 34 | 35 | libmate_menu_la_LDFLAGS = \ 36 | -version-info $(LIB_MENU_LT_VERSION) \ 37 | -no-undefined \ 38 | -export-symbols-regex matemenu_tree 39 | 40 | pkgconfigdir = $(libdir)/pkgconfig 41 | pkgconfig_DATA = libmate-menu.pc 42 | 43 | EXTRA_DIST = \ 44 | libmate-menu.pc.in \ 45 | libmate-menu-uninstalled.pc.in 46 | 47 | CLEANFILES = 48 | 49 | # Introspection 50 | -include $(INTROSPECTION_MAKEFILE) 51 | INTROSPECTION_GIRS = 52 | INTROSPECTION_SCANNER_ARGS = --warn-all --add-include-path=$(srcdir) 53 | INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir) 54 | 55 | if HAVE_INTROSPECTION 56 | # Note: we only include the headers here so far because there's no gtk-doc at all anyway 57 | introspection_sources = $(libmate_menu_include_HEADERS) matemenu-tree.c 58 | 59 | MateMenu-2.0.gir: libmate-menu.la 60 | MateMenu_2_0_gir_INCLUDES = Gio-2.0 61 | MateMenu_2_0_gir_CFLAGS = $(AM_CPPFLAGS) 62 | MateMenu_2_0_gir_LIBS = libmate-menu.la 63 | MateMenu_2_0_gir_SCANNERFLAGS = --identifier-prefix=MateMenu --symbol-prefix=matemenu --pkg-export=libmate-menu --c-include=matemenu-tree.h 64 | MateMenu_2_0_gir_FILES = $(addprefix $(srcdir)/,$(introspection_sources)) 65 | INTROSPECTION_GIRS += MateMenu-2.0.gir 66 | 67 | girdir = $(datadir)/gir-1.0/ 68 | gir_DATA = $(INTROSPECTION_GIRS) 69 | 70 | typelibdir = $(libdir)/girepository-1.0/ 71 | typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) 72 | 73 | CLEANFILES += $(gir_DATA) $(typelib_DATA) 74 | endif 75 | 76 | -include $(top_srcdir)/git.mk 77 | -------------------------------------------------------------------------------- /libmenu/desktop-entries.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2002 - 2004 Red Hat, Inc. 3 | * Copyright (C) 2012-2021 MATE Developers 4 | * 5 | * This library is free software; you can redistribute it and/or 6 | * modify it under the terms of the GNU Lesser 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 | * Lesser General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Lesser General Public 16 | * License along with this library; if not, write to the 17 | * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 18 | * Boston, MA 02110-1301, USA. 19 | */ 20 | 21 | #ifndef __DESKTOP_ENTRIES_H__ 22 | #define __DESKTOP_ENTRIES_H__ 23 | 24 | #include 25 | 26 | G_BEGIN_DECLS 27 | 28 | typedef enum { 29 | DESKTOP_ENTRY_INVALID = 0, 30 | DESKTOP_ENTRY_DESKTOP, 31 | DESKTOP_ENTRY_DIRECTORY 32 | } DesktopEntryType; 33 | 34 | typedef struct DesktopEntry DesktopEntry; 35 | 36 | DesktopEntry* desktop_entry_new(const char* path); 37 | 38 | DesktopEntry* desktop_entry_ref(DesktopEntry* entry); 39 | DesktopEntry* desktop_entry_copy(DesktopEntry* entry); 40 | DesktopEntry* desktop_entry_reload(DesktopEntry* entry); 41 | void desktop_entry_unref(DesktopEntry* entry); 42 | 43 | DesktopEntryType desktop_entry_get_type (DesktopEntry *entry); 44 | const char *desktop_entry_get_path (DesktopEntry *entry); 45 | const char *desktop_entry_get_basename (DesktopEntry *entry); 46 | const char *desktop_entry_get_name (DesktopEntry *entry); 47 | const char *desktop_entry_get_generic_name (DesktopEntry *entry); 48 | const char *desktop_entry_get_comment (DesktopEntry *entry); 49 | GIcon *desktop_entry_get_icon (DesktopEntry *entry); 50 | gboolean desktop_entry_get_hidden (DesktopEntry *entry); 51 | gboolean desktop_entry_get_no_display (DesktopEntry *entry); 52 | gboolean desktop_entry_get_show_in (DesktopEntry *entry); 53 | 54 | /* Only valid for DESKTOP_ENTRY_DESKTOP */ 55 | GDesktopAppInfo *desktop_entry_get_app_info (DesktopEntry *entry); 56 | gboolean desktop_entry_has_categories (DesktopEntry *entry); 57 | gboolean desktop_entry_has_category (DesktopEntry *entry, 58 | const char *category); 59 | 60 | void desktop_entry_add_legacy_category(DesktopEntry* src); 61 | 62 | typedef struct DesktopEntrySet DesktopEntrySet; 63 | 64 | DesktopEntrySet* desktop_entry_set_new(void); 65 | DesktopEntrySet* desktop_entry_set_ref(DesktopEntrySet* set); 66 | void desktop_entry_set_unref(DesktopEntrySet* set); 67 | 68 | void desktop_entry_set_add_entry(DesktopEntrySet* set, DesktopEntry* entry, const char* file_id); 69 | DesktopEntry* desktop_entry_set_lookup(DesktopEntrySet* set, const char* file_id); 70 | guint desktop_entry_set_get_count (DesktopEntrySet *set); 71 | 72 | void desktop_entry_set_union(DesktopEntrySet* set, DesktopEntrySet* with); 73 | void desktop_entry_set_intersection(DesktopEntrySet* set, DesktopEntrySet* with); 74 | void desktop_entry_set_subtract(DesktopEntrySet* set, DesktopEntrySet* other); 75 | void desktop_entry_set_swap_contents(DesktopEntrySet* a, DesktopEntrySet* b); 76 | 77 | typedef void (*DesktopEntrySetForeachFunc) (const char* file_id, DesktopEntry* entry, gpointer user_data); 78 | 79 | void desktop_entry_set_foreach(DesktopEntrySet* set, DesktopEntrySetForeachFunc func, gpointer user_data); 80 | 81 | G_END_DECLS 82 | 83 | #endif /* __DESKTOP_ENTRIES_H__ */ 84 | -------------------------------------------------------------------------------- /libmenu/entry-directories.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2002 - 2004 Red Hat, Inc. 3 | * Copyright (C) 2012-2021 MATE Developers 4 | * 5 | * This library is free software; you can redistribute it and/or 6 | * modify it under the terms of the GNU Lesser 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 | * Lesser General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Lesser General Public 16 | * License along with this library; if not, write to the 17 | * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 18 | * Boston, MA 02110-1301, USA. 19 | */ 20 | 21 | #ifndef __ENTRY_DIRECTORIES_H__ 22 | #define __ENTRY_DIRECTORIES_H__ 23 | 24 | #include 25 | #include "desktop-entries.h" 26 | 27 | G_BEGIN_DECLS 28 | 29 | typedef struct EntryDirectory EntryDirectory; 30 | 31 | typedef void (*EntryDirectoryChangedFunc) (EntryDirectory* ed, gpointer user_data); 32 | 33 | EntryDirectory* entry_directory_new(DesktopEntryType entry_type, const char* path); 34 | EntryDirectory* entry_directory_new_legacy(DesktopEntryType entry_type, const char* path, const char* legacy_prefix); 35 | 36 | EntryDirectory* entry_directory_ref(EntryDirectory* ed); 37 | void entry_directory_unref(EntryDirectory* ed); 38 | 39 | void entry_directory_get_flat_contents(EntryDirectory* ed, DesktopEntrySet* desktop_entries, DesktopEntrySet* directory_entries, GSList** subdirs); 40 | 41 | 42 | typedef struct EntryDirectoryList EntryDirectoryList; 43 | 44 | EntryDirectoryList* entry_directory_list_new(void); 45 | EntryDirectoryList* entry_directory_list_ref(EntryDirectoryList* list); 46 | void entry_directory_list_unref(EntryDirectoryList* list); 47 | 48 | int entry_directory_list_get_length(EntryDirectoryList* list); 49 | gboolean _entry_directory_list_compare(const EntryDirectoryList* a, const EntryDirectoryList* b); 50 | 51 | void entry_directory_list_prepend(EntryDirectoryList* list, EntryDirectory* ed); 52 | void entry_directory_list_append_list(EntryDirectoryList* list, EntryDirectoryList* to_append); 53 | 54 | void entry_directory_list_add_monitors(EntryDirectoryList* list, EntryDirectoryChangedFunc callback, gpointer user_data); 55 | void entry_directory_list_remove_monitors(EntryDirectoryList* list, EntryDirectoryChangedFunc callback, gpointer user_data); 56 | 57 | DesktopEntry* entry_directory_list_get_directory (EntryDirectoryList* list, const char* relative_path); 58 | 59 | DesktopEntrySet* _entry_directory_list_get_all_desktops(EntryDirectoryList* list); 60 | void _entry_directory_list_empty_desktop_cache(void); 61 | 62 | G_END_DECLS 63 | 64 | #endif /* __ENTRY_DIRECTORIES_H__ */ 65 | -------------------------------------------------------------------------------- /libmenu/libmate-menu-uninstalled.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libmate-menu 7 | Description: Desktop Menu Specification Implementation 8 | Requires: gio-unix-2.0 9 | Version: @VERSION@ 10 | Libs: ${pc_top_builddir}/${pcfiledir}/libmate-menu.la 11 | Cflags: -I${pc_top_builddir}/${pcfiledir} 12 | -------------------------------------------------------------------------------- /libmenu/libmate-menu.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libmate-menu 7 | Description: Desktop Menu Specification Implementation 8 | Requires: gio-unix-2.0 9 | Version: @VERSION@ 10 | Libs: -L${libdir} -lmate-menu 11 | Cflags: -I${includedir}/mate-menus 12 | -------------------------------------------------------------------------------- /libmenu/menu-monitor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2005 Red Hat, Inc. 3 | * Copyright (C) 2011 Perberos 4 | * Copyright (C) 2012-2021 MATE Developers 5 | * 6 | * This library is free software; you can redistribute it and/or 7 | * modify it under the terms of the GNU Lesser General Public 8 | * License as published by the Free Software Foundation; either 9 | * version 2 of the License, or (at your option) any later version. 10 | * 11 | * This library is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | * Lesser General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU Lesser General Public 17 | * License along with this library; if not, write to the 18 | * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 19 | * Boston, MA 02110-1301, USA. 20 | */ 21 | 22 | #ifndef __MENU_MONITOR_H__ 23 | #define __MENU_MONITOR_H__ 24 | 25 | #include 26 | 27 | G_BEGIN_DECLS 28 | 29 | typedef struct MenuMonitor MenuMonitor; 30 | 31 | typedef enum { 32 | MENU_MONITOR_EVENT_INVALID = 0, 33 | MENU_MONITOR_EVENT_CREATED = 1, 34 | MENU_MONITOR_EVENT_DELETED = 2, 35 | MENU_MONITOR_EVENT_CHANGED = 3 36 | } MenuMonitorEvent; 37 | 38 | typedef void (*MenuMonitorNotifyFunc) (MenuMonitor* monitor, MenuMonitorEvent event, const char* path, gpointer user_data); 39 | 40 | 41 | MenuMonitor* menu_get_file_monitor(const char* path); 42 | MenuMonitor* menu_get_directory_monitor(const char* path); 43 | 44 | MenuMonitor* menu_monitor_ref(MenuMonitor* monitor); 45 | void menu_monitor_unref(MenuMonitor* monitor); 46 | 47 | void menu_monitor_add_notify(MenuMonitor* monitor, MenuMonitorNotifyFunc notify_func, gpointer user_data); 48 | void menu_monitor_remove_notify(MenuMonitor* monitor, MenuMonitorNotifyFunc notify_func, gpointer user_data); 49 | 50 | 51 | /* Izquierda a derecha 52 | */ 53 | 54 | #define mate_menu_monitor_file_get menu_get_file_monitor 55 | #define mate_menu_monitor_directory_get menu_get_directory_monitor 56 | 57 | #define mate_menu_monitor_ref menu_monitor_ref 58 | #define mate_menu_monitor_unref menu_monitor_unref 59 | 60 | #define mate_menu_monitor_notify_add menu_monitor_add_notify 61 | #define mate_menu_monitor_notify_remove menu_monitor_remove_notify 62 | #define mate_menu_monitor_notify_ref menu_monitor_notify_ref /* private */ 63 | #define mate_menu_monitor_notify_unref menu_monitor_notify_unref /* private */ 64 | 65 | G_END_DECLS 66 | 67 | #endif /* __MENU_MONITOR_H__ */ 68 | -------------------------------------------------------------------------------- /libmenu/menu-util.h: -------------------------------------------------------------------------------- 1 | /* Random utility functions for menu code */ 2 | 3 | /* 4 | * Copyright (C) 2003 Red Hat, Inc. 5 | * Copyright (C) 2012-2021 MATE Developers 6 | * 7 | * This library is free software; you can redistribute it and/or 8 | * modify it under the terms of the GNU Lesser General Public 9 | * License as published by the Free Software Foundation; either 10 | * version 2 of the License, or (at your option) any later version. 11 | * 12 | * This library is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 | * Lesser General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Lesser General Public 18 | * License along with this library; if not, write to the 19 | * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 20 | * Boston, MA 02110-1301, USA. 21 | */ 22 | 23 | #ifndef __MENU_UTIL_H__ 24 | #define __MENU_UTIL_H__ 25 | 26 | #include 27 | 28 | #include "menu-layout.h" 29 | 30 | G_BEGIN_DECLS 31 | 32 | 33 | #ifdef G_ENABLE_DEBUG 34 | 35 | void menu_verbose(const char* format, ...) G_GNUC_PRINTF(1, 2); 36 | void menu_debug_print_layout(MenuLayoutNode* node, gboolean onelevel); 37 | 38 | #else /* !defined(G_ENABLE_DEBUG) */ 39 | 40 | #ifdef G_HAVE_ISO_VARARGS 41 | #define menu_verbose(...) 42 | #elif defined(G_HAVE_GNUC_VARARGS) 43 | #define menu_verbose(format...) 44 | #else 45 | #error "Cannot disable verbose mode due to lack of varargs macros" 46 | #endif 47 | 48 | #define menu_debug_print_layout(n, o) 49 | 50 | #endif /* G_ENABLE_DEBUG */ 51 | 52 | G_END_DECLS 53 | 54 | #endif /* __MENU_UTIL_H__ */ 55 | -------------------------------------------------------------------------------- /libmenu/meson.build: -------------------------------------------------------------------------------- 1 | source_h = [ 2 | 'matemenu-tree.h', 3 | ] 4 | 5 | install_headers(source_h, subdir : 'mate-menus') 6 | 7 | sources = [ 8 | 'desktop-entries.h', 9 | 'entry-directories.h', 10 | 'menu-layout.h', 11 | 'menu-monitor.h', 12 | 'menu-util.h', 13 | 'desktop-entries.c', 14 | 'entry-directories.c', 15 | 'matemenu-tree.c', 16 | 'menu-layout.c', 17 | 'menu-monitor.c', 18 | 'menu-util.c', 19 | ] 20 | 21 | gnome = import('gnome') 22 | pkg = import('pkgconfig') 23 | 24 | libmate_menu = shared_library('mate-menu', 25 | sources, 26 | dependencies: [gio_unix_dep], 27 | soversion: soversion, 28 | version: libversion, 29 | include_directories: top_srcdir, 30 | install : true, 31 | install_dir : get_option('libdir') 32 | ) 33 | 34 | libmate_menu_deps = declare_dependency(sources: source_h, 35 | include_directories: [top_srcdir, include_directories('.')], 36 | dependencies: [gio_unix_dep], 37 | link_with: libmate_menu) 38 | 39 | pkg.generate( 40 | name: 'mate-menu', 41 | version: meson.project_version(), 42 | description: 'Desktop Menu Specification Implementation', 43 | requires_private: 'gio-unix-2.0', 44 | filebase: 'libmate-menu', 45 | libraries: '-lmate-menu', 46 | subdirs: 'mate-menus', 47 | ) 48 | 49 | if get_option('introspection') 50 | libmate_menu_gir = gnome.generate_gir(libmate_menu, 51 | sources: [source_h, sources], 52 | nsversion : api_version, 53 | namespace : 'MateMenu', 54 | symbol_prefix : 'matemenu', 55 | export_packages: 'libmatemenu', 56 | identifier_prefix : 'MateMenu', 57 | link_with: libmate_menu, 58 | includes : ['Gio-2.0'], 59 | install : true, 60 | install_dir_gir: girdir, 61 | install_dir_typelib: typelibdir, 62 | extra_args: [ '--c-include=mate-menus/matemenu-tree.h' ], 63 | ) 64 | if get_option('vapi') 65 | mate_menu_vapi = gnome.generate_vapi('libmate-menu', 66 | sources: libmate_menu_gir.get(0), 67 | packages: 'gio-unix-2.0', 68 | install: true, 69 | install_dir: vapidir, 70 | ) 71 | endif 72 | endif 73 | -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | PACKAGE=mate-menus; 4 | 5 | make -C po $PACKAGE.pot && mv po/$PACKAGE.pot . 6 | sed -i "/#, fuzzy/d" $PACKAGE.pot 7 | sed -i 's/charset=CHARSET/charset=UTF-8/g' $PACKAGE.pot 8 | -------------------------------------------------------------------------------- /mate-menus.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: mate-menus 1.26.0\n" 9 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 10 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: desktop-directories/mate-audio-video.directory.in:3 20 | msgid "Sound & Video" 21 | msgstr "" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:4 24 | msgid "Multimedia menu" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-collection.directory.in:3 28 | msgid "Collection" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:4 32 | msgid "The most frequently used shortcuts" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-development.directory.in:3 36 | msgid "Programming" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:4 40 | msgid "Tools for software development" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-education.directory.in:3 44 | msgid "Education" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-game.directory.in:3 48 | msgid "Games" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:4 52 | msgid "Games and amusements" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-graphics.directory.in:3 56 | msgid "Graphics" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:4 60 | msgid "Graphics applications" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-hardware.directory.in:3 64 | msgid "Hardware" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:4 68 | msgid "Settings for several hardware devices" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-internet-and-network.directory.in:3 72 | msgid "Internet and Network" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:4 76 | msgid "Network-related settings" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-look-and-feel.directory.in:3 80 | msgid "Look and Feel" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:4 84 | msgid "Settings controlling the desktop appearance and behavior" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-network.directory.in:3 88 | msgid "Internet" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:4 92 | msgid "Programs for Internet access such as web and email" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-office.directory.in:3 96 | msgid "Office" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:4 100 | msgid "Office Applications" 101 | msgstr "" 102 | 103 | #. Translators: this is Personal as in "Personal settings" 104 | #: desktop-directories/mate-personal.directory.in:4 105 | msgid "Personal" 106 | msgstr "" 107 | 108 | #: desktop-directories/mate-personal.directory.in:5 109 | msgid "Personal settings" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-settings-system.directory.in:4 113 | msgid "Administration" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:5 117 | msgid "Change system-wide settings (affects all users)" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings.directory.in:3 121 | msgid "Preferences" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:4 125 | msgid "Personal preferences" 126 | msgstr "" 127 | 128 | #: desktop-directories/mate-system.directory.in:3 129 | #: desktop-directories/mate-menu-system.directory.in:3 130 | msgid "System" 131 | msgstr "" 132 | 133 | #: desktop-directories/mate-system.directory.in:4 134 | msgid "System settings" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system-tools.directory.in:3 138 | msgid "System Tools" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:4 142 | msgid "System configuration and monitoring" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-utility-accessibility.directory.in:3 146 | msgid "Universal Access" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:4 150 | msgid "Universal Access Settings" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility.directory.in:3 154 | msgid "Accessories" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:4 158 | msgid "Desktop accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-menu-applications.directory.in:3 162 | #: desktop-directories/mate-menu-applications.directory.in:4 163 | msgid "Applications" 164 | msgstr "" 165 | 166 | #: desktop-directories/mate-menu-system.directory.in:4 167 | msgid "Personal preferences and administration settings" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-other.directory.in:3 171 | msgid "Other" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:4 175 | msgid "Applications that did not fit in other categories" 176 | msgstr "" 177 | -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- 1 | option('introspection', 2 | type: 'boolean', 3 | value : true, 4 | description: 'Build with GObject Introspection support') 5 | 6 | option('vapi', 7 | type: 'boolean', 8 | value: false, 9 | description: 'Build to generation vala vapi file') 10 | 11 | option('collection', 12 | type : 'boolean', 13 | value : true, 14 | description : 'Build with collection menu entry support') 15 | 16 | option('tests', 17 | type : 'boolean', 18 | value : false, 19 | description : 'Enable test programs (default: no)') 20 | 21 | # For subproject usage 22 | option('package_subdir', 23 | type: 'string', 24 | description: 'Private sub-directory used when built as a subproject' 25 | ) 26 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | # please keep this list sorted alphabetically 2 | af 3 | am 4 | an 5 | ar 6 | as 7 | ast 8 | az 9 | be 10 | bg 11 | bn_IN 12 | bn 13 | br 14 | bs 15 | ca 16 | ca@valencia 17 | cmn 18 | crh 19 | cs 20 | cy 21 | da 22 | de 23 | dz 24 | el 25 | en_AU 26 | en_CA 27 | en_GB 28 | eo 29 | es 30 | es_AR 31 | es_CL 32 | es_CO 33 | es_ES 34 | es_MX 35 | es_PR 36 | et 37 | eu 38 | fa 39 | fi 40 | fil 41 | fr 42 | fr_CA 43 | frp 44 | fur 45 | fy 46 | ga 47 | gl 48 | gu 49 | ha 50 | he 51 | hi 52 | hr 53 | hu 54 | hy 55 | ia 56 | id 57 | ie 58 | ig 59 | is 60 | it 61 | ja 62 | jv 63 | ka 64 | kk 65 | km 66 | kn 67 | ko 68 | ks 69 | ku 70 | ku_IQ 71 | ky 72 | kab 73 | la 74 | li 75 | lt 76 | lv 77 | mai 78 | mg 79 | mi 80 | mk 81 | ml 82 | mn 83 | mr 84 | ms 85 | my 86 | nah 87 | nb 88 | nds 89 | ne 90 | nl 91 | nn 92 | nso 93 | oc 94 | or 95 | pa 96 | pl 97 | pms 98 | ps 99 | pt_BR 100 | pt 101 | ro 102 | ru 103 | rw 104 | sc 105 | si 106 | sk 107 | sl 108 | sq 109 | sr 110 | sr@latin 111 | sv 112 | ta 113 | te 114 | th 115 | tk 116 | tr 117 | ts 118 | ug 119 | uk 120 | ur 121 | uz 122 | vi 123 | wa 124 | xh 125 | yo 126 | zh_CN 127 | zh_HK 128 | zh_TW 129 | zu 130 | -------------------------------------------------------------------------------- /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 -L Desktop --keyword=_ --keyword=N_ --keyword=C_:1c,2 --keyword=NC_:1c,2 --keyword=g_dngettext:2,3 --add-comments=Translators: 12 | 13 | # This is the copyright holder that gets inserted into the header of the 14 | # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding 15 | # package. (Note that the msgstr strings, extracted from the package's 16 | # sources, belong to the copyright holder of the package.) Translators are 17 | # expected to transfer the copyright for their translations to this person 18 | # or entity, or to disclaim their copyright. The empty string stands for 19 | # the public domain; in this case the translators are expected to disclaim 20 | # their copyright. 21 | COPYRIGHT_HOLDER = MATE Desktop Environment team 22 | 23 | # This tells whether or not to prepend "GNU " prefix to the package 24 | # name that gets inserted into the header of the $(DOMAIN).pot file. 25 | # Possible values are "yes", "no", or empty. If it is empty, try to 26 | # detect it automatically by scanning the files in $(top_srcdir) for 27 | # "GNU packagename" string. 28 | PACKAGE_GNU = 29 | 30 | # This is the email address or URL to which the translators shall report 31 | # bugs in the untranslated strings: 32 | # - Strings which are not entire sentences, see the maintainer guidelines 33 | # in the GNU gettext documentation, section 'Preparing Strings'. 34 | # - Strings which use unclear terms or require additional context to be 35 | # understood. 36 | # - Strings which make invalid assumptions about notation of date, time or 37 | # money. 38 | # - Pluralisation problems. 39 | # - Incorrect English spelling. 40 | # - Incorrect formatting. 41 | # It can be your email address, or a mailing list address where translators 42 | # can write to without being subscribed, or the URL of a web page through 43 | # which the translators can contact you. 44 | MSGID_BUGS_ADDRESS = 45 | 46 | # This is the list of locale categories, beyond LC_MESSAGES, for which the 47 | # message catalogs shall be used. It is usually empty. 48 | EXTRA_LOCALE_CATEGORIES = 49 | 50 | # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' 51 | # context. Possible values are "yes" and "no". Set this to yes if the 52 | # package uses functions taking also a message context, like pgettext(), or 53 | # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. 54 | USE_MSGCTXT = no 55 | 56 | # These options get passed to msgmerge. 57 | # Useful options are in particular: 58 | # --previous to keep previous msgids of translated messages, 59 | # --quiet to reduce the verbosity. 60 | MSGMERGE_OPTIONS = 61 | 62 | # These options get passed to msginit. 63 | # If you want to disable line wrapping when writing PO files, add 64 | # --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and 65 | # MSGINIT_OPTIONS. 66 | MSGINIT_OPTIONS = 67 | 68 | # This tells whether or not to regenerate a PO file when $(DOMAIN).pot 69 | # has changed. Possible values are "yes" and "no". Set this to no if 70 | # the POT file is checked in the repository and the version control 71 | # program ignores timestamps. 72 | PO_DEPENDS_ON_POT = yes 73 | 74 | # This tells whether or not to forcibly update $(DOMAIN).pot and 75 | # regenerate PO files on "make dist". Possible values are "yes" and 76 | # "no". Set this to no if the POT file and PO files are maintained 77 | # externally. 78 | DIST_DEPENDS_ON_UPDATE_PO = yes 79 | -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files containing translatable strings. 2 | # Please keep this file sorted alphabetically. 3 | desktop-directories/mate-audio-video.directory.in 4 | desktop-directories/mate-collection.directory.in 5 | desktop-directories/mate-development.directory.in 6 | desktop-directories/mate-education.directory.in 7 | desktop-directories/mate-game.directory.in 8 | desktop-directories/mate-graphics.directory.in 9 | desktop-directories/mate-hardware.directory.in 10 | desktop-directories/mate-internet-and-network.directory.in 11 | desktop-directories/mate-look-and-feel.directory.in 12 | desktop-directories/mate-network.directory.in 13 | desktop-directories/mate-office.directory.in 14 | desktop-directories/mate-personal.directory.in 15 | desktop-directories/mate-settings-system.directory.in 16 | desktop-directories/mate-settings.directory.in 17 | desktop-directories/mate-system.directory.in 18 | desktop-directories/mate-system-tools.directory.in 19 | desktop-directories/mate-utility-accessibility.directory.in 20 | desktop-directories/mate-utility.directory.in 21 | desktop-directories/mate-menu-applications.directory.in 22 | desktop-directories/mate-menu-system.directory.in 23 | desktop-directories/mate-other.directory.in 24 | util/test-menu-spec.c 25 | -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | # List of source files containing translatable strings that should be skipped. 2 | # Please keep this file sorted alphabetically. 3 | util/test-menu-spec.c 4 | -------------------------------------------------------------------------------- /po/az.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: az\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "Kolleksiya" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Qurğular" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Sistem" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Proqramlar" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/cmn.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # 趙惟倫 , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: 趙惟倫 , 2021\n" 16 | "Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: cmn\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "影音" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "多媒體選單" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "圖片集" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "軟體開發" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "軟體開發工具" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "教育" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "遊戲" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "遊戲及娛樂" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "美工繪圖" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "繪圖工具" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "硬體" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "多種硬體的設定" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "網際網路及網路" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "網路相關設定" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "外觀與感覺" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "控制桌面顯示方式及行為的設定" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "網際網路" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "如瀏覽網頁及收發電郵等網路軟體" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "辦公" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "辦公室軟體" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "個人" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "個人設定" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "管理" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "更改全系統設定值(影響所有用戶)" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "偏好設定" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "個人偏好設定" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "系統" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "系統設定" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "系統工具" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "系統配置及監察" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "無障礙功能" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "無障礙功能設定值" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "附屬應用程式" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "桌面附屬應用程式" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "應用程式" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "個人偏好及管理設定" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "其他" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "不符合其他分類的軟體" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alejo_K , 2018 8 | # Robert Petitpas , 2018 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-menus 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 15 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 16 | "Last-Translator: Robert Petitpas , 2018\n" 17 | "Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: es_CL\n" 22 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 23 | 24 | #: desktop-directories/mate-audio-video.directory.in:3 25 | msgid "Sound & Video" 26 | msgstr "" 27 | 28 | #: desktop-directories/mate-audio-video.directory.in:4 29 | msgid "Multimedia menu" 30 | msgstr "" 31 | 32 | #: desktop-directories/mate-collection.directory.in:3 33 | msgid "Collection" 34 | msgstr "" 35 | 36 | #: desktop-directories/mate-collection.directory.in:4 37 | msgid "The most frequently used shortcuts" 38 | msgstr "" 39 | 40 | #: desktop-directories/mate-development.directory.in:3 41 | msgid "Programming" 42 | msgstr "" 43 | 44 | #: desktop-directories/mate-development.directory.in:4 45 | msgid "Tools for software development" 46 | msgstr "" 47 | 48 | #: desktop-directories/mate-education.directory.in:3 49 | msgid "Education" 50 | msgstr "" 51 | 52 | #: desktop-directories/mate-game.directory.in:3 53 | msgid "Games" 54 | msgstr "" 55 | 56 | #: desktop-directories/mate-game.directory.in:4 57 | msgid "Games and amusements" 58 | msgstr "" 59 | 60 | #: desktop-directories/mate-graphics.directory.in:3 61 | msgid "Graphics" 62 | msgstr "" 63 | 64 | #: desktop-directories/mate-graphics.directory.in:4 65 | msgid "Graphics applications" 66 | msgstr "" 67 | 68 | #: desktop-directories/mate-hardware.directory.in:3 69 | msgid "Hardware" 70 | msgstr "" 71 | 72 | #: desktop-directories/mate-hardware.directory.in:4 73 | msgid "Settings for several hardware devices" 74 | msgstr "" 75 | 76 | #: desktop-directories/mate-internet-and-network.directory.in:3 77 | msgid "Internet and Network" 78 | msgstr "" 79 | 80 | #: desktop-directories/mate-internet-and-network.directory.in:4 81 | msgid "Network-related settings" 82 | msgstr "" 83 | 84 | #: desktop-directories/mate-look-and-feel.directory.in:3 85 | msgid "Look and Feel" 86 | msgstr "" 87 | 88 | #: desktop-directories/mate-look-and-feel.directory.in:4 89 | msgid "Settings controlling the desktop appearance and behavior" 90 | msgstr "" 91 | 92 | #: desktop-directories/mate-network.directory.in:3 93 | msgid "Internet" 94 | msgstr "" 95 | 96 | #: desktop-directories/mate-network.directory.in:4 97 | msgid "Programs for Internet access such as web and email" 98 | msgstr "" 99 | 100 | #: desktop-directories/mate-office.directory.in:3 101 | msgid "Office" 102 | msgstr "" 103 | 104 | #: desktop-directories/mate-office.directory.in:4 105 | msgid "Office Applications" 106 | msgstr "" 107 | 108 | #. Translators: this is Personal as in "Personal settings" 109 | #: desktop-directories/mate-personal.directory.in:4 110 | msgid "Personal" 111 | msgstr "" 112 | 113 | #: desktop-directories/mate-personal.directory.in:5 114 | msgid "Personal settings" 115 | msgstr "" 116 | 117 | #: desktop-directories/mate-settings-system.directory.in:4 118 | msgid "Administration" 119 | msgstr "" 120 | 121 | #: desktop-directories/mate-settings-system.directory.in:5 122 | msgid "Change system-wide settings (affects all users)" 123 | msgstr "" 124 | 125 | #: desktop-directories/mate-settings.directory.in:3 126 | msgid "Preferences" 127 | msgstr "Preferencias" 128 | 129 | #: desktop-directories/mate-settings.directory.in:4 130 | msgid "Personal preferences" 131 | msgstr "" 132 | 133 | #: desktop-directories/mate-system.directory.in:3 134 | #: desktop-directories/mate-menu-system.directory.in:3 135 | msgid "System" 136 | msgstr "Sistema" 137 | 138 | #: desktop-directories/mate-system.directory.in:4 139 | msgid "System settings" 140 | msgstr "" 141 | 142 | #: desktop-directories/mate-system-tools.directory.in:3 143 | msgid "System Tools" 144 | msgstr "" 145 | 146 | #: desktop-directories/mate-system-tools.directory.in:4 147 | msgid "System configuration and monitoring" 148 | msgstr "" 149 | 150 | #: desktop-directories/mate-utility-accessibility.directory.in:3 151 | msgid "Universal Access" 152 | msgstr "" 153 | 154 | #: desktop-directories/mate-utility-accessibility.directory.in:4 155 | msgid "Universal Access Settings" 156 | msgstr "" 157 | 158 | #: desktop-directories/mate-utility.directory.in:3 159 | msgid "Accessories" 160 | msgstr "" 161 | 162 | #: desktop-directories/mate-utility.directory.in:4 163 | msgid "Desktop accessories" 164 | msgstr "" 165 | 166 | #: desktop-directories/mate-menu-applications.directory.in:3 167 | #: desktop-directories/mate-menu-applications.directory.in:4 168 | msgid "Applications" 169 | msgstr "" 170 | 171 | #: desktop-directories/mate-menu-system.directory.in:4 172 | msgid "Personal preferences and administration settings" 173 | msgstr "" 174 | 175 | #: desktop-directories/mate-other.directory.in:3 176 | msgid "Other" 177 | msgstr "" 178 | 179 | #: desktop-directories/mate-other.directory.in:4 180 | msgid "Applications that did not fit in other categories" 181 | msgstr "" 182 | -------------------------------------------------------------------------------- /po/es_ES.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Jose11091 , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Jose11091 , 2018\n" 16 | "Language-Team: Spanish (Spain) (https://app.transifex.com/mate/teams/13566/es_ES/)\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_ES\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Preferencias" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/es_PR.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Neverest , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Neverest , 2018\n" 16 | "Language-Team: Spanish (Puerto Rico) (https://app.transifex.com/mate/teams/13566/es_PR/)\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_PR\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Preferencias" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Sistema" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Aplicaciones" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/fil.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Martin Wimpress , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Martin Wimpress , 2018\n" 16 | "Language-Team: Filipino (https://app.transifex.com/mate/teams/13566/fil/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: fil\n" 21 | "Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Mga Pagtatangi" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # eere leme , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: eere leme , 2018\n" 16 | "Language-Team: French (Canada) (https://app.transifex.com/mate/teams/13566/fr_CA/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: fr_CA\n" 21 | "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "Son & Vidéo" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "Menu multimédia" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "Éducation" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "Jeux" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Préférences" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Ngalim Siregar , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+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 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Paling disenengi" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Slimane Selyan AMIRI , 2018 8 | # ButterflyOfFire, 2020 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-menus 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 15 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 16 | "Last-Translator: ButterflyOfFire, 2020\n" 17 | "Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: kab\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: desktop-directories/mate-audio-video.directory.in:3 25 | msgid "Sound & Video" 26 | msgstr "Imesli & Avidyu" 27 | 28 | #: desktop-directories/mate-audio-video.directory.in:4 29 | msgid "Multimedia menu" 30 | msgstr "" 31 | 32 | #: desktop-directories/mate-collection.directory.in:3 33 | msgid "Collection" 34 | msgstr "" 35 | 36 | #: desktop-directories/mate-collection.directory.in:4 37 | msgid "The most frequently used shortcuts" 38 | msgstr "" 39 | 40 | #: desktop-directories/mate-development.directory.in:3 41 | msgid "Programming" 42 | msgstr "" 43 | 44 | #: desktop-directories/mate-development.directory.in:4 45 | msgid "Tools for software development" 46 | msgstr "" 47 | 48 | #: desktop-directories/mate-education.directory.in:3 49 | msgid "Education" 50 | msgstr "" 51 | 52 | #: desktop-directories/mate-game.directory.in:3 53 | msgid "Games" 54 | msgstr "Uraren" 55 | 56 | #: desktop-directories/mate-game.directory.in:4 57 | msgid "Games and amusements" 58 | msgstr "" 59 | 60 | #: desktop-directories/mate-graphics.directory.in:3 61 | msgid "Graphics" 62 | msgstr "" 63 | 64 | #: desktop-directories/mate-graphics.directory.in:4 65 | msgid "Graphics applications" 66 | msgstr "" 67 | 68 | #: desktop-directories/mate-hardware.directory.in:3 69 | msgid "Hardware" 70 | msgstr "" 71 | 72 | #: desktop-directories/mate-hardware.directory.in:4 73 | msgid "Settings for several hardware devices" 74 | msgstr "" 75 | 76 | #: desktop-directories/mate-internet-and-network.directory.in:3 77 | msgid "Internet and Network" 78 | msgstr "" 79 | 80 | #: desktop-directories/mate-internet-and-network.directory.in:4 81 | msgid "Network-related settings" 82 | msgstr "" 83 | 84 | #: desktop-directories/mate-look-and-feel.directory.in:3 85 | msgid "Look and Feel" 86 | msgstr "" 87 | 88 | #: desktop-directories/mate-look-and-feel.directory.in:4 89 | msgid "Settings controlling the desktop appearance and behavior" 90 | msgstr "" 91 | 92 | #: desktop-directories/mate-network.directory.in:3 93 | msgid "Internet" 94 | msgstr "" 95 | 96 | #: desktop-directories/mate-network.directory.in:4 97 | msgid "Programs for Internet access such as web and email" 98 | msgstr "" 99 | 100 | #: desktop-directories/mate-office.directory.in:3 101 | msgid "Office" 102 | msgstr "" 103 | 104 | #: desktop-directories/mate-office.directory.in:4 105 | msgid "Office Applications" 106 | msgstr "" 107 | 108 | #. Translators: this is Personal as in "Personal settings" 109 | #: desktop-directories/mate-personal.directory.in:4 110 | msgid "Personal" 111 | msgstr "" 112 | 113 | #: desktop-directories/mate-personal.directory.in:5 114 | msgid "Personal settings" 115 | msgstr "" 116 | 117 | #: desktop-directories/mate-settings-system.directory.in:4 118 | msgid "Administration" 119 | msgstr "" 120 | 121 | #: desktop-directories/mate-settings-system.directory.in:5 122 | msgid "Change system-wide settings (affects all users)" 123 | msgstr "" 124 | 125 | #: desktop-directories/mate-settings.directory.in:3 126 | msgid "Preferences" 127 | msgstr "Ismenyifen" 128 | 129 | #: desktop-directories/mate-settings.directory.in:4 130 | msgid "Personal preferences" 131 | msgstr "" 132 | 133 | #: desktop-directories/mate-system.directory.in:3 134 | #: desktop-directories/mate-menu-system.directory.in:3 135 | msgid "System" 136 | msgstr "" 137 | 138 | #: desktop-directories/mate-system.directory.in:4 139 | msgid "System settings" 140 | msgstr "Iγewwaren n unagraw" 141 | 142 | #: desktop-directories/mate-system-tools.directory.in:3 143 | msgid "System Tools" 144 | msgstr "Ifecka n unagraw" 145 | 146 | #: desktop-directories/mate-system-tools.directory.in:4 147 | msgid "System configuration and monitoring" 148 | msgstr "" 149 | 150 | #: desktop-directories/mate-utility-accessibility.directory.in:3 151 | msgid "Universal Access" 152 | msgstr "" 153 | 154 | #: desktop-directories/mate-utility-accessibility.directory.in:4 155 | msgid "Universal Access Settings" 156 | msgstr "" 157 | 158 | #: desktop-directories/mate-utility.directory.in:3 159 | msgid "Accessories" 160 | msgstr "" 161 | 162 | #: desktop-directories/mate-utility.directory.in:4 163 | msgid "Desktop accessories" 164 | msgstr "" 165 | 166 | #: desktop-directories/mate-menu-applications.directory.in:3 167 | #: desktop-directories/mate-menu-applications.directory.in:4 168 | msgid "Applications" 169 | msgstr "Isnasen" 170 | 171 | #: desktop-directories/mate-menu-system.directory.in:4 172 | msgid "Personal preferences and administration settings" 173 | msgstr "" 174 | 175 | #: desktop-directories/mate-other.directory.in:3 176 | msgid "Other" 177 | msgstr "Wiyaḍ" 178 | 179 | #: desktop-directories/mate-other.directory.in:4 180 | msgid "Applications that did not fit in other categories" 181 | msgstr "" 182 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Khmer (https://app.transifex.com/mate/teams/13566/km/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: km\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "ចំណូល​ចិត្ត" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Kashmiri (https://app.transifex.com/mate/teams/13566/ks/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ks\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "संबरिव (_I)" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "अन्य" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Haval Abdulkarim , 2018 8 | # Rasti K5 , 2018 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-menus 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 15 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 16 | "Last-Translator: Rasti K5 , 2018\n" 17 | "Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: ku_IQ\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: desktop-directories/mate-audio-video.directory.in:3 25 | msgid "Sound & Video" 26 | msgstr "دەنگ و ڤیدیۆ" 27 | 28 | #: desktop-directories/mate-audio-video.directory.in:4 29 | msgid "Multimedia menu" 30 | msgstr "" 31 | 32 | #: desktop-directories/mate-collection.directory.in:3 33 | msgid "Collection" 34 | msgstr "" 35 | 36 | #: desktop-directories/mate-collection.directory.in:4 37 | msgid "The most frequently used shortcuts" 38 | msgstr "" 39 | 40 | #: desktop-directories/mate-development.directory.in:3 41 | msgid "Programming" 42 | msgstr "بەرنامەسازی" 43 | 44 | #: desktop-directories/mate-development.directory.in:4 45 | msgid "Tools for software development" 46 | msgstr "ئامرازەکانی گەشەپێدانی نەرمەکاڵا" 47 | 48 | #: desktop-directories/mate-education.directory.in:3 49 | msgid "Education" 50 | msgstr "فێرکردن" 51 | 52 | #: desktop-directories/mate-game.directory.in:3 53 | msgid "Games" 54 | msgstr "یارییەکان" 55 | 56 | #: desktop-directories/mate-game.directory.in:4 57 | msgid "Games and amusements" 58 | msgstr "" 59 | 60 | #: desktop-directories/mate-graphics.directory.in:3 61 | msgid "Graphics" 62 | msgstr "گرافیکی" 63 | 64 | #: desktop-directories/mate-graphics.directory.in:4 65 | msgid "Graphics applications" 66 | msgstr "نەرمەواڵەی گرافیکی" 67 | 68 | #: desktop-directories/mate-hardware.directory.in:3 69 | msgid "Hardware" 70 | msgstr "ڕەقەکاڵا" 71 | 72 | #: desktop-directories/mate-hardware.directory.in:4 73 | msgid "Settings for several hardware devices" 74 | msgstr "" 75 | 76 | #: desktop-directories/mate-internet-and-network.directory.in:3 77 | msgid "Internet and Network" 78 | msgstr "ئینتەرنێت و ڕایەڵە" 79 | 80 | #: desktop-directories/mate-internet-and-network.directory.in:4 81 | msgid "Network-related settings" 82 | msgstr "" 83 | 84 | #: desktop-directories/mate-look-and-feel.directory.in:3 85 | msgid "Look and Feel" 86 | msgstr "" 87 | 88 | #: desktop-directories/mate-look-and-feel.directory.in:4 89 | msgid "Settings controlling the desktop appearance and behavior" 90 | msgstr "" 91 | 92 | #: desktop-directories/mate-network.directory.in:3 93 | msgid "Internet" 94 | msgstr "ئینتەرنێت" 95 | 96 | #: desktop-directories/mate-network.directory.in:4 97 | msgid "Programs for Internet access such as web and email" 98 | msgstr "" 99 | 100 | #: desktop-directories/mate-office.directory.in:3 101 | msgid "Office" 102 | msgstr "نووسینگە" 103 | 104 | #: desktop-directories/mate-office.directory.in:4 105 | msgid "Office Applications" 106 | msgstr "نەرمەواڵەکانی نووسینگە" 107 | 108 | #. Translators: this is Personal as in "Personal settings" 109 | #: desktop-directories/mate-personal.directory.in:4 110 | msgid "Personal" 111 | msgstr "کەسی" 112 | 113 | #: desktop-directories/mate-personal.directory.in:5 114 | msgid "Personal settings" 115 | msgstr "ڕێکخستنە کەسییەکان" 116 | 117 | #: desktop-directories/mate-settings-system.directory.in:4 118 | msgid "Administration" 119 | msgstr "" 120 | 121 | #: desktop-directories/mate-settings-system.directory.in:5 122 | msgid "Change system-wide settings (affects all users)" 123 | msgstr "" 124 | 125 | #: desktop-directories/mate-settings.directory.in:3 126 | msgid "Preferences" 127 | msgstr "هەڵبژاردنەکان" 128 | 129 | #: desktop-directories/mate-settings.directory.in:4 130 | msgid "Personal preferences" 131 | msgstr "هەڵبژاردە کەسییەکان" 132 | 133 | #: desktop-directories/mate-system.directory.in:3 134 | #: desktop-directories/mate-menu-system.directory.in:3 135 | msgid "System" 136 | msgstr "سیستەم" 137 | 138 | #: desktop-directories/mate-system.directory.in:4 139 | msgid "System settings" 140 | msgstr "ڕێکخستنەکانی سیستەم" 141 | 142 | #: desktop-directories/mate-system-tools.directory.in:3 143 | msgid "System Tools" 144 | msgstr "ئامرازەکانی سیستەم" 145 | 146 | #: desktop-directories/mate-system-tools.directory.in:4 147 | msgid "System configuration and monitoring" 148 | msgstr "" 149 | 150 | #: desktop-directories/mate-utility-accessibility.directory.in:3 151 | msgid "Universal Access" 152 | msgstr "" 153 | 154 | #: desktop-directories/mate-utility-accessibility.directory.in:4 155 | msgid "Universal Access Settings" 156 | msgstr "" 157 | 158 | #: desktop-directories/mate-utility.directory.in:3 159 | msgid "Accessories" 160 | msgstr "" 161 | 162 | #: desktop-directories/mate-utility.directory.in:4 163 | msgid "Desktop accessories" 164 | msgstr "" 165 | 166 | #: desktop-directories/mate-menu-applications.directory.in:3 167 | #: desktop-directories/mate-menu-applications.directory.in:4 168 | msgid "Applications" 169 | msgstr "نەرمەواڵەکان" 170 | 171 | #: desktop-directories/mate-menu-system.directory.in:4 172 | msgid "Personal preferences and administration settings" 173 | msgstr "" 174 | 175 | #: desktop-directories/mate-other.directory.in:3 176 | msgid "Other" 177 | msgstr "هی دیکە" 178 | 179 | #: desktop-directories/mate-other.directory.in:4 180 | msgid "Applications that did not fit in other categories" 181 | msgstr "" 182 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 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 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Praeferentiae" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Systema" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Opportuna" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+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 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Systeem" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Toepassinge" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n = import('i18n') 2 | i18n.gettext(meson.project_name(), preset: 'glib',) 3 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+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 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Ngā tina hiahia" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Ngā Pūmanawa Rorohiko" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/my.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Burmese (https://app.transifex.com/mate/teams/13566/my/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: my\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "လိုလားချက်များ" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/nah.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # jorge becerril , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: jorge becerril , 2018\n" 16 | "Language-Team: Nahuatl (https://app.transifex.com/mate/teams/13566/nah/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nah\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Sistema" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\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 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "Kgoboketšo" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Tshepedio" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Ditirišo" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "Tše Dingwe" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Randy Ichinose , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+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 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Preferense" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/rw.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Kinyarwanda (https://app.transifex.com/mate/teams/13566/rw/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: rw\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "Ibishushanyo" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "Interineti" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "Ofise" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "ubuyobozi" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Ibyahisemo" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Sisitemu" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Porogaramu" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "Ikindi" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/sc.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Fabrizio Pedes , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Fabrizio Pedes , 2018\n" 16 | "Language-Team: Sardinian (https://app.transifex.com/mate/teams/13566/sc/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: sc\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "Multimedia menù" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Turkmen (https://app.transifex.com/mate/teams/13566/tk/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: tk\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "Ýygym" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Seçenekler" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Sistem" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/ts.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Martin Wimpress , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Martin Wimpress , 2018\n" 16 | "Language-Team: Tsonga (https://app.transifex.com/mate/teams/13566/ts/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ts\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Mintsakelo" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+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 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "Preferinces" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Sistinme" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Programes" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "Ôtes" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /po/zh_HK.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # tomoe_musashi , 2018 8 | # Stefano Karapetsas , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-menus 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 15 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 16 | "Last-Translator: Stefano Karapetsas , 2021\n" 17 | "Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: zh_HK\n" 22 | "Plural-Forms: nplurals=1; plural=0;\n" 23 | 24 | #: desktop-directories/mate-audio-video.directory.in:3 25 | msgid "Sound & Video" 26 | msgstr "影音" 27 | 28 | #: desktop-directories/mate-audio-video.directory.in:4 29 | msgid "Multimedia menu" 30 | msgstr "多媒體選單" 31 | 32 | #: desktop-directories/mate-collection.directory.in:3 33 | msgid "Collection" 34 | msgstr "圖片集" 35 | 36 | #: desktop-directories/mate-collection.directory.in:4 37 | msgid "The most frequently used shortcuts" 38 | msgstr "" 39 | 40 | #: desktop-directories/mate-development.directory.in:3 41 | msgid "Programming" 42 | msgstr "軟件開發" 43 | 44 | #: desktop-directories/mate-development.directory.in:4 45 | msgid "Tools for software development" 46 | msgstr "軟件開發工具" 47 | 48 | #: desktop-directories/mate-education.directory.in:3 49 | msgid "Education" 50 | msgstr "教育" 51 | 52 | #: desktop-directories/mate-game.directory.in:3 53 | msgid "Games" 54 | msgstr "遊戲" 55 | 56 | #: desktop-directories/mate-game.directory.in:4 57 | msgid "Games and amusements" 58 | msgstr "遊戲及娛樂" 59 | 60 | #: desktop-directories/mate-graphics.directory.in:3 61 | msgid "Graphics" 62 | msgstr "美工繪圖" 63 | 64 | #: desktop-directories/mate-graphics.directory.in:4 65 | msgid "Graphics applications" 66 | msgstr "繪圖工具" 67 | 68 | #: desktop-directories/mate-hardware.directory.in:3 69 | msgid "Hardware" 70 | msgstr "硬件" 71 | 72 | #: desktop-directories/mate-hardware.directory.in:4 73 | msgid "Settings for several hardware devices" 74 | msgstr "多種硬件的設定" 75 | 76 | #: desktop-directories/mate-internet-and-network.directory.in:3 77 | msgid "Internet and Network" 78 | msgstr "互聯網及網絡" 79 | 80 | #: desktop-directories/mate-internet-and-network.directory.in:4 81 | msgid "Network-related settings" 82 | msgstr "網絡相關設定" 83 | 84 | #: desktop-directories/mate-look-and-feel.directory.in:3 85 | msgid "Look and Feel" 86 | msgstr "外觀與感覺" 87 | 88 | #: desktop-directories/mate-look-and-feel.directory.in:4 89 | msgid "Settings controlling the desktop appearance and behavior" 90 | msgstr "控制桌面顯示方式及行為的設定" 91 | 92 | #: desktop-directories/mate-network.directory.in:3 93 | msgid "Internet" 94 | msgstr "互聯網" 95 | 96 | #: desktop-directories/mate-network.directory.in:4 97 | msgid "Programs for Internet access such as web and email" 98 | msgstr "如瀏覽網頁及收發電郵等網絡軟件" 99 | 100 | #: desktop-directories/mate-office.directory.in:3 101 | msgid "Office" 102 | msgstr "辦公" 103 | 104 | #: desktop-directories/mate-office.directory.in:4 105 | msgid "Office Applications" 106 | msgstr "辦公室軟件" 107 | 108 | #. Translators: this is Personal as in "Personal settings" 109 | #: desktop-directories/mate-personal.directory.in:4 110 | msgid "Personal" 111 | msgstr "個人" 112 | 113 | #: desktop-directories/mate-personal.directory.in:5 114 | msgid "Personal settings" 115 | msgstr "個人設定" 116 | 117 | #: desktop-directories/mate-settings-system.directory.in:4 118 | msgid "Administration" 119 | msgstr "管理" 120 | 121 | #: desktop-directories/mate-settings-system.directory.in:5 122 | msgid "Change system-wide settings (affects all users)" 123 | msgstr "更改全系統設定值(影響所有用戶)" 124 | 125 | #: desktop-directories/mate-settings.directory.in:3 126 | msgid "Preferences" 127 | msgstr "偏好設定" 128 | 129 | #: desktop-directories/mate-settings.directory.in:4 130 | msgid "Personal preferences" 131 | msgstr "個人偏好設定" 132 | 133 | #: desktop-directories/mate-system.directory.in:3 134 | #: desktop-directories/mate-menu-system.directory.in:3 135 | msgid "System" 136 | msgstr "系統" 137 | 138 | #: desktop-directories/mate-system.directory.in:4 139 | msgid "System settings" 140 | msgstr "系統設定" 141 | 142 | #: desktop-directories/mate-system-tools.directory.in:3 143 | msgid "System Tools" 144 | msgstr "系統工具" 145 | 146 | #: desktop-directories/mate-system-tools.directory.in:4 147 | msgid "System configuration and monitoring" 148 | msgstr "系統配置及監察" 149 | 150 | #: desktop-directories/mate-utility-accessibility.directory.in:3 151 | msgid "Universal Access" 152 | msgstr "無障礙功能" 153 | 154 | #: desktop-directories/mate-utility-accessibility.directory.in:4 155 | msgid "Universal Access Settings" 156 | msgstr "無障礙功能設定值" 157 | 158 | #: desktop-directories/mate-utility.directory.in:3 159 | msgid "Accessories" 160 | msgstr "附屬應用程式" 161 | 162 | #: desktop-directories/mate-utility.directory.in:4 163 | msgid "Desktop accessories" 164 | msgstr "桌面附屬應用程式" 165 | 166 | #: desktop-directories/mate-menu-applications.directory.in:3 167 | #: desktop-directories/mate-menu-applications.directory.in:4 168 | msgid "Applications" 169 | msgstr "應用程式" 170 | 171 | #: desktop-directories/mate-menu-system.directory.in:4 172 | msgid "Personal preferences and administration settings" 173 | msgstr "個人偏好及管理設定" 174 | 175 | #: desktop-directories/mate-other.directory.in:3 176 | msgid "Other" 177 | msgstr "其他" 178 | 179 | #: desktop-directories/mate-other.directory.in:4 180 | msgid "Applications that did not fit in other categories" 181 | msgstr "不符合其它分類的軟件" 182 | -------------------------------------------------------------------------------- /po/zh_TW.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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # 趙惟倫 , 2018 8 | # Stefano Karapetsas , 2021 9 | # 黃柏諺 , 2021 10 | # 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: mate-menus 1.26.0\n" 14 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 15 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 16 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 17 | "Last-Translator: 黃柏諺 , 2021\n" 18 | "Language-Team: Chinese (Taiwan) (https://app.transifex.com/mate/teams/13566/zh_TW/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: zh_TW\n" 23 | "Plural-Forms: nplurals=1; plural=0;\n" 24 | 25 | #: desktop-directories/mate-audio-video.directory.in:3 26 | msgid "Sound & Video" 27 | msgstr "影音" 28 | 29 | #: desktop-directories/mate-audio-video.directory.in:4 30 | msgid "Multimedia menu" 31 | msgstr "多媒體選單" 32 | 33 | #: desktop-directories/mate-collection.directory.in:3 34 | msgid "Collection" 35 | msgstr "圖片集" 36 | 37 | #: desktop-directories/mate-collection.directory.in:4 38 | msgid "The most frequently used shortcuts" 39 | msgstr "最常用的捷徑" 40 | 41 | #: desktop-directories/mate-development.directory.in:3 42 | msgid "Programming" 43 | msgstr "軟體開發" 44 | 45 | #: desktop-directories/mate-development.directory.in:4 46 | msgid "Tools for software development" 47 | msgstr "軟體開發工具" 48 | 49 | #: desktop-directories/mate-education.directory.in:3 50 | msgid "Education" 51 | msgstr "教育" 52 | 53 | #: desktop-directories/mate-game.directory.in:3 54 | msgid "Games" 55 | msgstr "遊戲" 56 | 57 | #: desktop-directories/mate-game.directory.in:4 58 | msgid "Games and amusements" 59 | msgstr "遊戲及娛樂" 60 | 61 | #: desktop-directories/mate-graphics.directory.in:3 62 | msgid "Graphics" 63 | msgstr "美工繪圖" 64 | 65 | #: desktop-directories/mate-graphics.directory.in:4 66 | msgid "Graphics applications" 67 | msgstr "繪圖工具" 68 | 69 | #: desktop-directories/mate-hardware.directory.in:3 70 | msgid "Hardware" 71 | msgstr "硬體" 72 | 73 | #: desktop-directories/mate-hardware.directory.in:4 74 | msgid "Settings for several hardware devices" 75 | msgstr "多種硬體的設定" 76 | 77 | #: desktop-directories/mate-internet-and-network.directory.in:3 78 | msgid "Internet and Network" 79 | msgstr "網際網路及網路" 80 | 81 | #: desktop-directories/mate-internet-and-network.directory.in:4 82 | msgid "Network-related settings" 83 | msgstr "網路相關設定" 84 | 85 | #: desktop-directories/mate-look-and-feel.directory.in:3 86 | msgid "Look and Feel" 87 | msgstr "外觀與感覺" 88 | 89 | #: desktop-directories/mate-look-and-feel.directory.in:4 90 | msgid "Settings controlling the desktop appearance and behavior" 91 | msgstr "控制桌面顯示方式及行為的設定" 92 | 93 | #: desktop-directories/mate-network.directory.in:3 94 | msgid "Internet" 95 | msgstr "網際網路" 96 | 97 | #: desktop-directories/mate-network.directory.in:4 98 | msgid "Programs for Internet access such as web and email" 99 | msgstr "如瀏覽網頁及收發電郵等網路軟體" 100 | 101 | #: desktop-directories/mate-office.directory.in:3 102 | msgid "Office" 103 | msgstr "辦公" 104 | 105 | #: desktop-directories/mate-office.directory.in:4 106 | msgid "Office Applications" 107 | msgstr "辦公室軟體" 108 | 109 | #. Translators: this is Personal as in "Personal settings" 110 | #: desktop-directories/mate-personal.directory.in:4 111 | msgid "Personal" 112 | msgstr "個人" 113 | 114 | #: desktop-directories/mate-personal.directory.in:5 115 | msgid "Personal settings" 116 | msgstr "個人設定" 117 | 118 | #: desktop-directories/mate-settings-system.directory.in:4 119 | msgid "Administration" 120 | msgstr "管理" 121 | 122 | #: desktop-directories/mate-settings-system.directory.in:5 123 | msgid "Change system-wide settings (affects all users)" 124 | msgstr "更改全系統設定值(影響所有用戶)" 125 | 126 | #: desktop-directories/mate-settings.directory.in:3 127 | msgid "Preferences" 128 | msgstr "偏好設定" 129 | 130 | #: desktop-directories/mate-settings.directory.in:4 131 | msgid "Personal preferences" 132 | msgstr "個人偏好設定" 133 | 134 | #: desktop-directories/mate-system.directory.in:3 135 | #: desktop-directories/mate-menu-system.directory.in:3 136 | msgid "System" 137 | msgstr "系統" 138 | 139 | #: desktop-directories/mate-system.directory.in:4 140 | msgid "System settings" 141 | msgstr "系統設定" 142 | 143 | #: desktop-directories/mate-system-tools.directory.in:3 144 | msgid "System Tools" 145 | msgstr "系統工具" 146 | 147 | #: desktop-directories/mate-system-tools.directory.in:4 148 | msgid "System configuration and monitoring" 149 | msgstr "系統配置及監察" 150 | 151 | #: desktop-directories/mate-utility-accessibility.directory.in:3 152 | msgid "Universal Access" 153 | msgstr "無障礙功能" 154 | 155 | #: desktop-directories/mate-utility-accessibility.directory.in:4 156 | msgid "Universal Access Settings" 157 | msgstr "無障礙功能設定值" 158 | 159 | #: desktop-directories/mate-utility.directory.in:3 160 | msgid "Accessories" 161 | msgstr "附屬應用程式" 162 | 163 | #: desktop-directories/mate-utility.directory.in:4 164 | msgid "Desktop accessories" 165 | msgstr "桌面附屬應用程式" 166 | 167 | #: desktop-directories/mate-menu-applications.directory.in:3 168 | #: desktop-directories/mate-menu-applications.directory.in:4 169 | msgid "Applications" 170 | msgstr "應用程式" 171 | 172 | #: desktop-directories/mate-menu-system.directory.in:4 173 | msgid "Personal preferences and administration settings" 174 | msgstr "個人偏好及管理設定" 175 | 176 | #: desktop-directories/mate-other.directory.in:3 177 | msgid "Other" 178 | msgstr "其他" 179 | 180 | #: desktop-directories/mate-other.directory.in:4 181 | msgid "Applications that did not fit in other categories" 182 | msgstr "不符合其它分類的軟體" 183 | -------------------------------------------------------------------------------- /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-menus package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-menus 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:26+0200\n" 14 | "PO-Revision-Date: 2018-03-11 19:02+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\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 | #: desktop-directories/mate-audio-video.directory.in:3 24 | msgid "Sound & Video" 25 | msgstr "" 26 | 27 | #: desktop-directories/mate-audio-video.directory.in:4 28 | msgid "Multimedia menu" 29 | msgstr "" 30 | 31 | #: desktop-directories/mate-collection.directory.in:3 32 | msgid "Collection" 33 | msgstr "Iqoqo" 34 | 35 | #: desktop-directories/mate-collection.directory.in:4 36 | msgid "The most frequently used shortcuts" 37 | msgstr "" 38 | 39 | #: desktop-directories/mate-development.directory.in:3 40 | msgid "Programming" 41 | msgstr "" 42 | 43 | #: desktop-directories/mate-development.directory.in:4 44 | msgid "Tools for software development" 45 | msgstr "" 46 | 47 | #: desktop-directories/mate-education.directory.in:3 48 | msgid "Education" 49 | msgstr "" 50 | 51 | #: desktop-directories/mate-game.directory.in:3 52 | msgid "Games" 53 | msgstr "" 54 | 55 | #: desktop-directories/mate-game.directory.in:4 56 | msgid "Games and amusements" 57 | msgstr "" 58 | 59 | #: desktop-directories/mate-graphics.directory.in:3 60 | msgid "Graphics" 61 | msgstr "" 62 | 63 | #: desktop-directories/mate-graphics.directory.in:4 64 | msgid "Graphics applications" 65 | msgstr "" 66 | 67 | #: desktop-directories/mate-hardware.directory.in:3 68 | msgid "Hardware" 69 | msgstr "" 70 | 71 | #: desktop-directories/mate-hardware.directory.in:4 72 | msgid "Settings for several hardware devices" 73 | msgstr "" 74 | 75 | #: desktop-directories/mate-internet-and-network.directory.in:3 76 | msgid "Internet and Network" 77 | msgstr "" 78 | 79 | #: desktop-directories/mate-internet-and-network.directory.in:4 80 | msgid "Network-related settings" 81 | msgstr "" 82 | 83 | #: desktop-directories/mate-look-and-feel.directory.in:3 84 | msgid "Look and Feel" 85 | msgstr "" 86 | 87 | #: desktop-directories/mate-look-and-feel.directory.in:4 88 | msgid "Settings controlling the desktop appearance and behavior" 89 | msgstr "" 90 | 91 | #: desktop-directories/mate-network.directory.in:3 92 | msgid "Internet" 93 | msgstr "" 94 | 95 | #: desktop-directories/mate-network.directory.in:4 96 | msgid "Programs for Internet access such as web and email" 97 | msgstr "" 98 | 99 | #: desktop-directories/mate-office.directory.in:3 100 | msgid "Office" 101 | msgstr "" 102 | 103 | #: desktop-directories/mate-office.directory.in:4 104 | msgid "Office Applications" 105 | msgstr "" 106 | 107 | #. Translators: this is Personal as in "Personal settings" 108 | #: desktop-directories/mate-personal.directory.in:4 109 | msgid "Personal" 110 | msgstr "" 111 | 112 | #: desktop-directories/mate-personal.directory.in:5 113 | msgid "Personal settings" 114 | msgstr "" 115 | 116 | #: desktop-directories/mate-settings-system.directory.in:4 117 | msgid "Administration" 118 | msgstr "" 119 | 120 | #: desktop-directories/mate-settings-system.directory.in:5 121 | msgid "Change system-wide settings (affects all users)" 122 | msgstr "" 123 | 124 | #: desktop-directories/mate-settings.directory.in:3 125 | msgid "Preferences" 126 | msgstr "" 127 | 128 | #: desktop-directories/mate-settings.directory.in:4 129 | msgid "Personal preferences" 130 | msgstr "" 131 | 132 | #: desktop-directories/mate-system.directory.in:3 133 | #: desktop-directories/mate-menu-system.directory.in:3 134 | msgid "System" 135 | msgstr "Uhlelo" 136 | 137 | #: desktop-directories/mate-system.directory.in:4 138 | msgid "System settings" 139 | msgstr "" 140 | 141 | #: desktop-directories/mate-system-tools.directory.in:3 142 | msgid "System Tools" 143 | msgstr "" 144 | 145 | #: desktop-directories/mate-system-tools.directory.in:4 146 | msgid "System configuration and monitoring" 147 | msgstr "" 148 | 149 | #: desktop-directories/mate-utility-accessibility.directory.in:3 150 | msgid "Universal Access" 151 | msgstr "" 152 | 153 | #: desktop-directories/mate-utility-accessibility.directory.in:4 154 | msgid "Universal Access Settings" 155 | msgstr "" 156 | 157 | #: desktop-directories/mate-utility.directory.in:3 158 | msgid "Accessories" 159 | msgstr "" 160 | 161 | #: desktop-directories/mate-utility.directory.in:4 162 | msgid "Desktop accessories" 163 | msgstr "" 164 | 165 | #: desktop-directories/mate-menu-applications.directory.in:3 166 | #: desktop-directories/mate-menu-applications.directory.in:4 167 | msgid "Applications" 168 | msgstr "Izisebenziso" 169 | 170 | #: desktop-directories/mate-menu-system.directory.in:4 171 | msgid "Personal preferences and administration settings" 172 | msgstr "" 173 | 174 | #: desktop-directories/mate-other.directory.in:3 175 | msgid "Other" 176 | msgstr "Okunye" 177 | 178 | #: desktop-directories/mate-other.directory.in:4 179 | msgid "Applications that did not fit in other categories" 180 | msgstr "" 181 | -------------------------------------------------------------------------------- /util/Makefile.am: -------------------------------------------------------------------------------- 1 | noinst_PROGRAMS = mate-menu-spec-test 2 | 3 | AM_CPPFLAGS = \ 4 | $(GIO_UNIX_CFLAGS) \ 5 | -I$(srcdir)/../libmenu \ 6 | -DMATEMENU_I_KNOW_THIS_IS_UNSTABLE \ 7 | -DMATELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ 8 | $(DISABLE_DEPRECATED_CFLAGS) \ 9 | $(DEBUG_CFLAGS) 10 | 11 | AM_CFLAGS = $(WARN_CFLAGS) 12 | 13 | mate_menu_spec_test_SOURCES = \ 14 | test-menu-spec.c 15 | 16 | mate_menu_spec_test_LDADD = \ 17 | $(GIO_UNIX_LIBS) \ 18 | ../libmenu/libmate-menu.la 19 | 20 | exampledir = $(pkgdatadir)/examples 21 | example_DATA = mate-menus-ls.py 22 | 23 | EXTRA_DIST = $(example_DATA) 24 | 25 | -include $(top_srcdir)/git.mk 26 | 27 | -------------------------------------------------------------------------------- /util/mate-menus-ls.py: -------------------------------------------------------------------------------- 1 | # vim: set ts=4 sw=4 et: 2 | 3 | # 4 | # Copyright (C) 2008 Novell, Inc. 5 | # Copyright (C) 2012-2021 MATE Developers 6 | # 7 | # Authors: Vincent Untz 8 | # 9 | # This program is free software; you can redistribute it and/or modify 10 | # it under the terms of the GNU General Public License as published by 11 | # the Free Software Foundation; either version 2 of the License, or 12 | # (at your option) any later version. 13 | # 14 | # This program is distributed in the hope that it will be useful, 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | # GNU General Public License for more details. 18 | # 19 | # You should have received a copy of the GNU General Public License 20 | # along with this program; if not, write to the Free Software 21 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 22 | # MA 02110-1301, USA. 23 | # 24 | 25 | import optparse 26 | import sys 27 | import gi 28 | gi.require_version('MateMenu', '2.0') 29 | from gi.repository import MateMenu 30 | 31 | def print_directory(dir, parent_path = None): 32 | if not parent_path: 33 | path = '/' 34 | else: 35 | path = '%s%s/' % (parent_path, dir.get_name()) 36 | 37 | iter = dir.iter() 38 | nextType = iter.next() 39 | while(nextType != MateMenu.TreeItemType.INVALID): 40 | if (nextType == MateMenu.TreeItemType.ENTRY): 41 | entry = iter.get_entry() 42 | print(path + "\t" + entry.get_app_info().get_name() + "\t" + entry.get_desktop_file_path()) 43 | elif (nextType == MateMenu.TreeItemType.DIRECTORY): 44 | print_directory(iter.get_directory(), path); 45 | nextType = iter.next() 46 | 47 | def main(args): 48 | parser = optparse.OptionParser() 49 | 50 | parser.add_option('-f', '--file', dest='file', 51 | help='Menu file') 52 | parser.add_option('-i', '--include-excluded', dest='exclude', 53 | action='store_true', default=False, 54 | help='Include d entries') 55 | parser.add_option('-n', '--include-nodisplay', dest='nodisplay', 56 | action='store_true', default=False, 57 | help='Include NoDisplay=true entries') 58 | 59 | (options, args) = parser.parse_args() 60 | 61 | if options.file: 62 | menu_file = options.file 63 | else: 64 | menu_file = 'mate-applications.menu' 65 | 66 | flags = MateMenu.TreeFlags.NONE 67 | if options.exclude: 68 | flags |= MateMenu.TreeFlags.INCLUDE_EXCLUDED 69 | if options.nodisplay: 70 | flags |= MateMenu.TreeFlags.INCLUDE_NODISPLAY 71 | tree = MateMenu.Tree(menu_basename = menu_file, flags = flags) 72 | tree.load_sync(); 73 | root = tree.get_root_directory() 74 | 75 | if not root: 76 | print('Menu tree is empty') 77 | else: 78 | print_directory(root) 79 | 80 | if __name__ == '__main__': 81 | try: 82 | main(sys.argv) 83 | except KeyboardInterrupt: 84 | pass 85 | -------------------------------------------------------------------------------- /util/meson.build: -------------------------------------------------------------------------------- 1 | t = executable('mate-menu-spec-test', 2 | sources : 'test-menu-spec.c', 3 | dependencies : libmate_menu_deps, 4 | install : false, 5 | ) 6 | 7 | test('mate-menu-testing', t) 8 | 9 | install_data('mate-menus-ls.py', install_dir : pkgdatadir / 'examples') 10 | 11 | --------------------------------------------------------------------------------