├── .build.yml ├── .github ├── FUNDING.yml └── issue_template.md ├── .travis.yml ├── .tx ├── config └── config_20221028215449.bak ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── Mozo ├── MainWindow.py ├── Makefile.am ├── MenuEditor.py ├── __init__.py ├── config.py.in ├── meson.build └── util.py ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── data ├── Makefile.am ├── icons │ ├── Makefile.am │ ├── hicolor_apps_16x16_mozo.png │ ├── hicolor_apps_22x22_mozo.png │ ├── hicolor_apps_24x24_mozo.png │ ├── hicolor_apps_256x256_mozo.png │ ├── hicolor_apps_32x32_mozo.png │ ├── hicolor_apps_48x48_mozo.png │ └── meson.build ├── meson.build ├── mozo.1 ├── mozo.desktop.in.in └── mozo.ui ├── makepot ├── meson.build ├── mozo.in ├── mozo.pot ├── po ├── ChangeLog ├── 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_CR.po ├── es_DO.po ├── es_EC.po ├── es_ES.po ├── es_MX.po ├── es_NI.po ├── es_PA.po ├── es_PE.po ├── es_PR.po ├── es_SV.po ├── es_UY.po ├── es_VE.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fr_CA.po ├── frp.po ├── fur.po ├── fy.po ├── ga.po ├── gd.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 ├── 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 ├── nan.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── nqo.po ├── nso.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── pms.po ├── ps.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── 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 ├── tt.po ├── ug.po ├── uk.po ├── ur.po ├── ur_PK.po ├── uz.po ├── vi.po ├── wa.po ├── xh.po ├── yi.po ├── yo.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po └── post_install.py /.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/mozo 7 | - gcc 8 | - git 9 | - gtk3 10 | - intltool 11 | - make 12 | - mate-common 13 | - mate-menus 14 | - meson 15 | - python-gobject 16 | - which 17 | 18 | debian: 19 | # Useful URL: https://github.com/mate-desktop/debian-packages 20 | # Useful URL: https://salsa.debian.org/debian-mate-team/mozo 21 | - autopoint 22 | - gettext 23 | - git 24 | - intltool 25 | - libmate-menu-dev 26 | - make 27 | - mate-common 28 | - meson 29 | - python-gi-dev 30 | - python3 31 | 32 | fedora: 33 | # Useful URL: https://src.fedoraproject.org/cgit/rpms/mozo.git 34 | - desktop-file-utils 35 | - gcc 36 | - git 37 | - make 38 | - mate-common 39 | - mate-menus-devel 40 | - meson 41 | - pygobject3-devel 42 | - python3-devel 43 | - redhat-rpm-config 44 | 45 | ubuntu: 46 | - autopoint 47 | - gettext 48 | - git 49 | - intltool 50 | - libmate-menu-dev 51 | - make 52 | - mate-common 53 | - meson 54 | - python-gi-dev 55 | - python3 56 | 57 | variables: 58 | - CFLAGS="-Wall -Werror=format-security" 59 | 60 | build_scripts: 61 | - NOCONFIGURE=1 ./autogen.sh 62 | - ./configure 63 | - make 64 | 65 | after_scripts: 66 | - if [ ${BUILD_TYPE} == "scripts" ];then 67 | - if [ ${DISTRO_NAME} == "debian" ];then 68 | - curl -Ls -o debian.sh https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/debian.sh 69 | - bash ./debian.sh 70 | - fi 71 | - make distcheck 72 | - fi 73 | 74 | releases: 75 | draft: false 76 | prerelease: false 77 | checksum: true 78 | file_glob: true 79 | files: mozo-*.tar.xz 80 | github_release: 81 | tags: true 82 | overwrite: true 83 | base_version: 1.20.0 84 | notify_servers: 85 | - https://release.mate-desktop.org/release 86 | -------------------------------------------------------------------------------- /.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 | before_install: 14 | - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build 15 | - chmod +x docker-build 16 | 17 | install: 18 | - pip3 install PyGithub 19 | - ./docker-build --name ${DISTRO} --config .build.yml --install 20 | 21 | script: 22 | - ./docker-build --name ${DISTRO} --verbose --config .build.yml --build meson --build scripts 23 | 24 | notifications: 25 | irc: 26 | if: (tag OR branch = master) AND 27 | repo = mate-desktop/mozo 28 | channels: 29 | - "irc.libera.chat#mate-dev" 30 | template: 31 | - "[%{repository_name}] %{author}: %{commit_subject}" 32 | - "[%{branch}] %{commit} %{message} %{build_url}" 33 | on_success: never 34 | on_failure: always 35 | 36 | deploy: 37 | - provider: script 38 | edge: true 39 | script: ./docker-build --verbose --config .build.yml --release github 40 | on: 41 | tags: true 42 | condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" 43 | 44 | env: 45 | # - DISTRO="archlinux:latest" 46 | - DISTRO="debian:testing" 47 | - DISTRO="fedora:latest" 48 | # - DISTRO="ubuntu:rolling" 49 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [o:mate:p:MATE:r:master--mozo] 5 | file_filter = po/.po 6 | source_file = po/mozo.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | 11 | -------------------------------------------------------------------------------- /.tx/config_20221028215449.bak: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [MATE.master--mozo] 5 | file_filter = po/.po 6 | source_file = po/mozo.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | MATE: 2 | Perberos 3 | Steve Zesch 4 | Stefano Karapetsas 5 | 6 | GNOME: 7 | Travis Watkins 8 | -------------------------------------------------------------------------------- /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 | ## Process this file with automake to produce Makefile.in 2 | 3 | SUBDIRS = po data Mozo 4 | 5 | CLEANFILES= 6 | 7 | bin_SCRIPTS = mozo 8 | CLEANFILES += mozo 9 | 10 | DISTCLEANFILES = ChangeLog 11 | 12 | DISTCHECK_CONFIGURE_FLAGS = \ 13 | --disable-icon-update \ 14 | CFLAGS='-Wno-deprecated-declarations' 15 | 16 | mozo: mozo.in 17 | $(AM_V_GEN)sed -e s!\@PYTHON\@!@PYTHON@! \ 18 | -e s!\@PYOPTIONS\@!-OOt! \ 19 | < $< > $@ 20 | mozo: Makefile 21 | 22 | EXTRA_DIST = \ 23 | autogen.sh \ 24 | meson.build \ 25 | mozo.in \ 26 | post_install.py \ 27 | po/meson.build 28 | 29 | # Build ChangeLog from GIT history 30 | ChangeLog: 31 | $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ 32 | GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ 33 | fi 34 | 35 | dist: ChangeLog 36 | 37 | .PHONY: ChangeLog 38 | -------------------------------------------------------------------------------- /Mozo/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | appdir = $(pythondir)/Mozo 4 | app_PYTHON = __init__.py MainWindow.py MenuEditor.py util.py 5 | nodist_app_PYTHON = config.py 6 | 7 | config.py: config.py.in 8 | $(AM_V_GEN)sed \ 9 | -e s!\@prefix\@!$(prefix)! \ 10 | -e s!\@datadir\@!$(datadir)! \ 11 | -e s!\@pkgdatadir\@!$(pkgdatadir)! \ 12 | -e s!\@PACKAGE\@!$(PACKAGE)! \ 13 | -e s!\@VERSION\@!$(VERSION)! \ 14 | -e s!\@GETTEXT_PACKAGE\@!$(GETTEXT_PACKAGE)! \ 15 | < $< > $@ 16 | config.py: Makefile 17 | 18 | CLEANFILES = config.py 19 | EXTRA_DIST = \ 20 | config.py.in \ 21 | meson.build 22 | 23 | all-local: config.py 24 | 25 | -------------------------------------------------------------------------------- /Mozo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mozo/89532fb843cedb669e3af7d20fc1c1ba5c618af6/Mozo/__init__.py -------------------------------------------------------------------------------- /Mozo/config.py.in: -------------------------------------------------------------------------------- 1 | prefix="@prefix@" 2 | datadir="@datadir@" 3 | localedir=datadir+"/locale" 4 | pkgdatadir="@pkgdatadir@" 5 | PACKAGE="@PACKAGE@" 6 | VERSION="@VERSION@" 7 | GETTEXT_PACKAGE="@GETTEXT_PACKAGE@" 8 | -------------------------------------------------------------------------------- /Mozo/meson.build: -------------------------------------------------------------------------------- 1 | config_py = configuration_data() 2 | config_py.set('prefix', prefix) 3 | config_py.set('datadir', datadir) 4 | config_py.set('pkgdatadir', join_paths(datadir, meson.project_name())) 5 | config_py.set('PACKAGE', meson.project_name()) 6 | config_py.set('VERSION', meson.project_version()) 7 | config_py.set('GETTEXT_PACKAGE', meson.project_name()) 8 | 9 | config = configure_file( 10 | input: 'config.py.in', 11 | output: 'config.py', 12 | configuration: config_py, 13 | ) 14 | 15 | mozo_sources = [ 16 | config, 17 | '__init__.py', 18 | 'MainWindow.py', 19 | 'MenuEditor.py', 20 | 'util.py', 21 | ] 22 | 23 | py_inst = python.find_installation('python3') 24 | py_inst.install_sources(mozo_sources, 25 | pure: true, 26 | subdir: 'Mozo' 27 | ) 28 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Mozo 2 | ========== 3 | 4 | Mozo is a menu editor for MATE using the freedesktop.org menu 5 | specification. 6 | 7 | Mozo is a fork of Alacarte. 8 | 9 | Installation 10 | ============ 11 | 12 | See http://wiki.mate-desktop.org. 13 | 14 | How to report bugs 15 | ================== 16 | 17 | Bugs should be filed in MATE's bug tracker on GitHub 18 | (https://github.com/mate-desktop/mozo/issues). You will 19 | need to create an account on github for yourself. 20 | -------------------------------------------------------------------------------- /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="mozo" 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 | dnl -*- Mode: autoconf -*- 2 | dnl Process this file with autoconf to produce a configure script. 3 | AC_PREREQ(2.58) 4 | AC_INIT(mozo, 1.28.0, https://mate-desktop.org) 5 | m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) 6 | AC_CONFIG_SRCDIR(mozo.in) 7 | AC_CONFIG_HEADERS([config.h]) 8 | AM_INIT_AUTOMAKE([1.7 dist-xz no-dist-gzip check-news]) 9 | AM_MAINTAINER_MODE 10 | 11 | dnl put the ACLOCAL flags in the makefile 12 | ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" 13 | 14 | 15 | GETTEXT_PACKAGE=mozo 16 | AC_SUBST(GETTEXT_PACKAGE) 17 | AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package]) 18 | AM_GNU_GETTEXT_VERSION([0.19.8]) 19 | AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8]) 20 | AM_GNU_GETTEXT([external]) 21 | 22 | AM_PATH_PYTHON(3.5) 23 | 24 | PKG_CHECK_MODULES(MOZO, libmate-menu >= 1.21.0 pygobject-3.0) 25 | 26 | AC_ARG_ENABLE(icon-update, AS_HELP_STRING([--disable-icon-update], 27 | [Disable icon cache update])) 28 | if (test "$enable_icon_update" != no); then 29 | AC_PATH_PROG(UPDATE_ICON_CACHE, [gtk-update-icon-cache]) 30 | fi 31 | AM_CONDITIONAL([ICON_UPDATE], [test -n "$UPDATE_ICON_CACHE"]) 32 | 33 | AC_CONFIG_FILES([ 34 | Makefile 35 | po/Makefile.in 36 | Mozo/Makefile 37 | data/mozo.desktop.in 38 | data/Makefile 39 | data/icons/Makefile 40 | ]) 41 | 42 | AC_OUTPUT 43 | 44 | -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = icons 2 | 3 | desktopdir = $(datadir)/applications 4 | desktop_in_files = mozo.desktop.in 5 | desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) 6 | 7 | $(desktop_DATA): $(desktop_in_files) 8 | $(AM_V_GEN) $(MSGFMT) --desktop --keyword= --keyword=Name --keyword=Comment --keyword=Keywords --template $< -d $(top_srcdir)/po -o $@ 9 | 10 | man_MANS = mozo.1 11 | 12 | pkgdata_DATA = mozo.ui 13 | 14 | CLEANFILES = $(desktop_DATA) 15 | 16 | EXTRA_DIST = \ 17 | meson.build \ 18 | $(pkgdata_DATA) \ 19 | $(man_MANS) 20 | 21 | install-data-hook: $(UPDATE_DESKTOP) 22 | 23 | uninstall-hook: $(UPDATE_DESKTOP) 24 | 25 | -------------------------------------------------------------------------------- /data/icons/Makefile.am: -------------------------------------------------------------------------------- 1 | NULL = 2 | 3 | public_icons_themes = \ 4 | hicolor \ 5 | $(NULL) 6 | 7 | public_icons = \ 8 | hicolor_apps_16x16_mozo.png \ 9 | hicolor_apps_22x22_mozo.png \ 10 | hicolor_apps_24x24_mozo.png \ 11 | hicolor_apps_32x32_mozo.png \ 12 | hicolor_apps_48x48_mozo.png \ 13 | hicolor_apps_256x256_mozo.png \ 14 | $(NULL) 15 | 16 | private_icons = \ 17 | $(NULL) 18 | 19 | noinst_DATA = \ 20 | $(NULL) 21 | 22 | EXTRA_DIST = \ 23 | meson.build \ 24 | $(public_icons) \ 25 | $(private_icons) \ 26 | $(noinst_DATA) \ 27 | $(NULL) 28 | 29 | ############################################################################### 30 | 31 | gtk_update_icon_cache = $(UPDATE_ICON_CACHE) -f -t 32 | 33 | update-icon-cache: 34 | @-if test -z "$(DESTDIR)" && ICON_UPDATE; then \ 35 | echo "Updating Gtk icon cache."; \ 36 | for theme in $(public_icons_themes); do \ 37 | $(gtk_update_icon_cache) $(datadir)/icons/$$theme; \ 38 | done; \ 39 | else \ 40 | echo "*** Icon cache not updated. After (un)install, run this:"; \ 41 | for theme in $(public_icons_themes); do \ 42 | echo "*** $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \ 43 | done; \ 44 | fi 45 | 46 | install-icons: 47 | for icon in $(public_icons); do \ 48 | THEME=`echo $$icon | cut -d_ -f1`; \ 49 | CONTEXT=`echo $$icon | cut -d_ -f2`; \ 50 | SIZE=`echo $$icon | cut -d_ -f3`; \ 51 | ICONFILE=`echo $$icon | cut -d_ -f4`; \ 52 | mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \ 53 | $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ 54 | done; \ 55 | for icon in $(private_icons); do \ 56 | THEME=`echo $$icon | cut -d_ -f1`; \ 57 | CONTEXT=`echo $$icon | cut -d_ -f2`; \ 58 | SIZE=`echo $$icon | cut -d_ -f3`; \ 59 | ICONFILE=`echo $$icon | cut -d_ -f4`; \ 60 | mkdir -p $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \ 61 | $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ 62 | done 63 | 64 | uninstall-icons: 65 | -for icon in $(public_icons); do \ 66 | THEME=`echo $$icon | cut -d_ -f1`; \ 67 | CONTEXT=`echo $$icon | cut -d_ -f2`; \ 68 | SIZE=`echo $$icon | cut -d_ -f3`; \ 69 | ICONFILE=`echo $$icon | cut -d_ -f4`; \ 70 | rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ 71 | done; \ 72 | for icon in $(private_icons); do \ 73 | THEME=`echo $$icon | cut -d_ -f1`; \ 74 | CONTEXT=`echo $$icon | cut -d_ -f2`; \ 75 | SIZE=`echo $$icon | cut -d_ -f3`; \ 76 | ICONFILE=`echo $$icon | cut -d_ -f4`; \ 77 | rm -f $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ 78 | done 79 | 80 | install-data-local: install-icons update-icon-cache 81 | 82 | uninstall-local: uninstall-icons update-icon-cache 83 | -------------------------------------------------------------------------------- /data/icons/hicolor_apps_16x16_mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mozo/89532fb843cedb669e3af7d20fc1c1ba5c618af6/data/icons/hicolor_apps_16x16_mozo.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_22x22_mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mozo/89532fb843cedb669e3af7d20fc1c1ba5c618af6/data/icons/hicolor_apps_22x22_mozo.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_24x24_mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mozo/89532fb843cedb669e3af7d20fc1c1ba5c618af6/data/icons/hicolor_apps_24x24_mozo.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_256x256_mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mozo/89532fb843cedb669e3af7d20fc1c1ba5c618af6/data/icons/hicolor_apps_256x256_mozo.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_32x32_mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mozo/89532fb843cedb669e3af7d20fc1c1ba5c618af6/data/icons/hicolor_apps_32x32_mozo.png -------------------------------------------------------------------------------- /data/icons/hicolor_apps_48x48_mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mozo/89532fb843cedb669e3af7d20fc1c1ba5c618af6/data/icons/hicolor_apps_48x48_mozo.png -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- 1 | icon_files = { 2 | '16x16': 'hicolor_apps_16x16_mozo.png', 3 | '22x22': 'hicolor_apps_22x22_mozo.png', 4 | '24x24': 'hicolor_apps_24x24_mozo.png', 5 | '32x32': 'hicolor_apps_32x32_mozo.png', 6 | '48x48': 'hicolor_apps_48x48_mozo.png', 7 | '256x256': 'hicolor_apps_256x256_mozo.png', 8 | } 9 | 10 | icondir = join_paths(datadir, 'icons', 'hicolor') 11 | 12 | # Remember to call gtk-update-icon-cache when installing / uninstalling. 13 | foreach size, file : icon_files 14 | install_data(file, 15 | install_dir: join_paths(icondir, size, 'apps'), 16 | rename: '@0@.png'.format(meson.project_name()), 17 | ) 18 | endforeach 19 | 20 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | subdir('icons') 2 | 3 | desktop_in = configuration_data() 4 | desktop_in.set('VERSION', meson.project_version()) 5 | 6 | desktop_file = 'mozo.desktop' 7 | i18n.merge_file( 8 | input: configure_file( 9 | input: desktop_file + '.in.in', 10 | output: desktop_file + '.in', 11 | configuration : desktop_in, 12 | ), 13 | output: desktop_file, 14 | po_dir: join_paths(meson.source_root(), 'po'), 15 | type: 'desktop', 16 | install: true, 17 | install_dir : join_paths(datadir, 'applications') 18 | ) 19 | 20 | install_man('mozo.1') 21 | install_data('mozo.ui', install_dir: join_paths(datadir, meson.project_name())) 22 | -------------------------------------------------------------------------------- /data/mozo.1: -------------------------------------------------------------------------------- 1 | .\" Man page for Mozo 2 | .TH MOZO 1 "5 February 2014" "MATE Desktop Environment" "General Manual" 3 | .\" Please adjust this date when revising the manpage. 4 | .SH "NAME" 5 | Mozo \- MATE Menu Editor 6 | .SH "SYNOPSIS" 7 | .B mozo 8 | .SH "DESCRIPTION" 9 | Mozo is a menu editor for MATE using the freedesktop.org menu specification. It is a fork of Alacarte. 10 | .SH "BUGS" 11 | .SS Should you encounter any bugs, they may be reported at: 12 | http://github.com/mate-desktop/mozo/issues 13 | .SH "AUTHORS" 14 | .SS Mozo is maintained by: 15 | .nf 16 | Perberos 17 | Steve Zesch 18 | Stefano Karapetsas 19 | .fi 20 | .PP 21 | .SS This Manual Page has been written for the MATE Desktop Environment by: 22 | Adam Erdman (2014) 23 | .SH "HISTORY" 24 | .SS Alacarte was written by Travis Watkins. 25 | .SH "SEE ALSO" 26 | .SS Mozo documentation can be found by pressing the F1 key. 27 | Further information may also be available at: http://wiki.mate-desktop.org/docs 28 | -------------------------------------------------------------------------------- /data/mozo.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Main Menu 3 | Comment=Change which applications are shown on the main menu 4 | Exec=mozo 5 | Terminal=false 6 | Type=Application 7 | StartupNotify=true 8 | Categories=Settings;DesktopSettings; 9 | # Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! 10 | Keywords=application;main;menu;editor;customize;MATE; 11 | OnlyShowIn=MATE; 12 | # Translators: Do NOT translate or transliterate this text (this is an icon file name)! 13 | Icon=mozo 14 | X-MATE-Bugzilla-Bugzilla=MATE 15 | X-MATE-Bugzilla-Product=mozo 16 | X-MATE-Bugzilla-Component=general 17 | X-MATE-Bugzilla-Version=@VERSION@ 18 | -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | PACKAGE=mozo; 4 | 5 | rm -f po/$PACKAGE.pot && 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 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project('mozo', 2 | version : '1.28.0', 3 | meson_version: '>= 0.47.0' 4 | ) 5 | 6 | i18n = import('i18n') 7 | python = import('python') 8 | py3 = find_program('python3', required:true) 9 | 10 | dependency('libmate-menu', version: '>= 1.21.0') 11 | dependency('pygobject-3.0') 12 | 13 | prefix = get_option('prefix') 14 | datadir = join_paths(prefix, get_option('datadir')) 15 | 16 | mozo_in = configuration_data() 17 | mozo_in.set('PYTHON', py3.path()) 18 | mozo_in.set('PYOPTIONS', '-OOt') 19 | 20 | mozo = configure_file(input: 'mozo.in', 21 | output: 'mozo', 22 | configuration: mozo_in, 23 | ) 24 | 25 | install_data(mozo, 26 | install_mode: 'rwxr-xr-x', 27 | install_dir: get_option('bindir') 28 | ) 29 | 30 | subdir('po') 31 | subdir('Mozo') 32 | subdir('data') 33 | 34 | meson.add_install_script('post_install.py') 35 | -------------------------------------------------------------------------------- /mozo.in: -------------------------------------------------------------------------------- 1 | #! @PYTHON@ @PYOPTIONS@ 2 | # -*- python -*- 3 | # -*- coding: utf-8 -*- 4 | # Mozo Menu Editor - Simple fd.o Compliant Menu Editor 5 | # Copyright (C) 2006 Travis Watkins 6 | # Copyright (C) 2012-2021 MATE Developers 7 | # 8 | # This library is free software; you can redistribute it and/or 9 | # modify it under the terms of the GNU Library General Public 10 | # License as published by the Free Software Foundation; either 11 | # version 2 of the License, or (at your option) any later version. 12 | # 13 | # This library is distributed in the hope that it will be useful, 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 | # Library General Public License for more details. 17 | # 18 | # You should have received a copy of the GNU Library General Public 19 | # License along with this library; if not, write to the Free Software 20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 | 22 | import sys 23 | from Mozo.MainWindow import MainWindow 24 | 25 | def main(): 26 | try: 27 | from Mozo import config 28 | datadir = config.pkgdatadir 29 | version = config.VERSION 30 | except: 31 | datadir = './data/' 32 | version = '1.21.0' 33 | app = MainWindow(datadir, version, sys.argv) 34 | app.run() 35 | 36 | if __name__ == '__main__': 37 | main() 38 | -------------------------------------------------------------------------------- /mozo.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: mozo 1.26.0\n" 9 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 10 | "POT-Creation-Date: 2022-10-29 15:31+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 | #: Mozo/MainWindow.py:178 20 | msgid "Name" 21 | msgstr "" 22 | 23 | #: Mozo/MainWindow.py:195 24 | msgid "Show" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:203 28 | msgid "Item" 29 | msgstr "" 30 | 31 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 32 | msgid "Main Menu" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:4 36 | msgid "Change which applications are shown on the main menu" 37 | msgstr "" 38 | 39 | #. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! 40 | #: data/mozo.desktop.in.in:11 41 | msgid "application;main;menu;editor;customize;MATE;" 42 | msgstr "" 43 | 44 | #: data/mozo.ui:67 45 | msgid "Revert Changes?" 46 | msgstr "" 47 | 48 | #: data/mozo.ui:85 49 | msgid "_Cancel" 50 | msgstr "" 51 | 52 | #: data/mozo.ui:100 data/mozo.ui:278 53 | msgid "_Revert" 54 | msgstr "" 55 | 56 | #: data/mozo.ui:142 57 | msgid "Revert all menus to original settings?" 58 | msgstr "" 59 | 60 | #: data/mozo.ui:177 61 | msgid "_Revert to Original" 62 | msgstr "" 63 | 64 | #: data/mozo.ui:230 65 | msgid "_Help" 66 | msgstr "" 67 | 68 | #: data/mozo.ui:246 69 | msgid "_Undo" 70 | msgstr "" 71 | 72 | #: data/mozo.ui:262 73 | msgid "R_edo" 74 | msgstr "" 75 | 76 | #: data/mozo.ui:294 77 | msgid "_Close" 78 | msgstr "" 79 | 80 | #: data/mozo.ui:335 81 | msgid "_Menus:" 82 | msgstr "" 83 | 84 | #: data/mozo.ui:388 85 | msgid "_Items:" 86 | msgstr "" 87 | 88 | #: data/mozo.ui:455 89 | msgid "_New Menu" 90 | msgstr "" 91 | 92 | #: data/mozo.ui:471 93 | msgid "Ne_w Item" 94 | msgstr "" 95 | 96 | #: data/mozo.ui:487 97 | msgid "New _Separator" 98 | msgstr "" 99 | 100 | #: data/mozo.ui:502 101 | msgid "_Properties" 102 | msgstr "" 103 | 104 | #: data/mozo.ui:518 105 | msgid "_Delete" 106 | msgstr "" 107 | 108 | #: data/mozo.ui:549 109 | msgid "Move _Up" 110 | msgstr "" 111 | 112 | #: data/mozo.ui:565 113 | msgid "Move _Down" 114 | msgstr "" 115 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | #please keep this list sorted alphabetically 2 | # 3 | af 4 | am 5 | an 6 | ar 7 | as 8 | ast 9 | az 10 | be 11 | bg 12 | bn 13 | bn_IN 14 | br 15 | bs 16 | ca 17 | ca@valencia 18 | cmn 19 | crh 20 | cs 21 | cy 22 | da 23 | de 24 | dz 25 | el 26 | en_AU 27 | en_CA 28 | en_GB 29 | eo 30 | es 31 | es_AR 32 | es_CL 33 | es_CO 34 | es_CR 35 | es_DO 36 | es_EC 37 | es_ES 38 | es_MX 39 | es_NI 40 | es_PA 41 | es_PE 42 | es_PR 43 | es_SV 44 | es_UY 45 | es_VE 46 | et 47 | eu 48 | fa 49 | fi 50 | fr 51 | fr_CA 52 | frp 53 | fur 54 | fy 55 | ga 56 | gd 57 | gl 58 | gu 59 | ha 60 | he 61 | hi 62 | hr 63 | hu 64 | hy 65 | ia 66 | id 67 | ie 68 | ig 69 | is 70 | it 71 | ja 72 | ka 73 | kab 74 | kk 75 | km 76 | kn 77 | ko 78 | ks 79 | ku 80 | ku_IQ 81 | ky 82 | la 83 | li 84 | lt 85 | lv 86 | mai 87 | mg 88 | mi 89 | mk 90 | ml 91 | mn 92 | mr 93 | ms 94 | my 95 | nan 96 | nah 97 | nb 98 | nds 99 | ne 100 | nqo 101 | nl 102 | nn 103 | nso 104 | oc 105 | or 106 | pa 107 | pl 108 | pms 109 | ps 110 | pt 111 | pt_BR 112 | ro 113 | ru 114 | rw 115 | sc 116 | si 117 | sk 118 | sl 119 | sq 120 | sr 121 | sr@latin 122 | sv 123 | ta 124 | te 125 | th 126 | tk 127 | tr 128 | tt 129 | ug 130 | uk 131 | ur 132 | ur_PK 133 | uz 134 | vi 135 | wa 136 | xh 137 | yi 138 | yo 139 | zh_CN 140 | zh_HK 141 | zh_TW 142 | zu 143 | -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | Mozo/MainWindow.py 2 | Mozo/MenuEditor.py 3 | data/mozo.desktop.in.in 4 | data/mozo.ui 5 | -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | data/mozo.desktop.in 2 | -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # samson , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: samson , 2021\n" 16 | "Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: am\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "ስም" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "ማሳያ " 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "እቃ " 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "ዋናው ዝርዝር " 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "በዋናው ዝርዝር ላይ የሚታዩትን መተግበሪያዎች ማሳያ መቀየሪያ " 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "ለውጦቹን ወደ ነበሩበት ልቀይራቸው? " 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "_መሰረዣ " 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_ወደ ነበረበት መመለሻ" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "ሁሉንም ዝርዝሮች ወደ ነበሩበት ማሰናጃዎች ልቀይራቸው? " 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "_መቀየሪያ ወደነበረበት " 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_እርዳታ" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_መተው" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_መዝጊያ" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_ዝርዝሮች :" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "_አዲስ ዝርዝር " 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "አዲ_ስ እቃ " 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "አዲስ _መለያያ " 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_ባህሪዎች " 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_ማጥፊያ" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "ወደ ላይ _ማንቀሳቀሻ" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "ማንቀሳቀሻ _ወደ ታች" 120 | -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Aragonese (https://app.transifex.com/mate/teams/13566/an/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: an\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Nome" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Amostrar" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Elemento" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Menu prencipal" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "Cambea as aplicacions que s'amostran en o menu prencipal" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Revertir cambeos?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Revertir os cambeos de toz os menus a l'orichinal?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "_Revertir a l'orichinal" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_Menus:" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "_Nuevo menu" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "Nue_vo elemento" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "Nuevo _separador" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Ad" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Əsas Menyu" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "Ç_evir" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Yardım" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Geri Al" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Bağla" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Xassələr" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Sil" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "_Yuxarı Daşı" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # 趙惟倫 , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Name" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "顯示" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Item" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "主選單" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "選擇那一個應用程式顯示在主選單上" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "還原變更?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "還原(_R)" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "將所有選單還原為原本的設定?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "還原為原本的設定(_R)" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "求助(_H)" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "復原(_U)" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "關閉(_C)" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "選單(_M):" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "新增選單(_N)" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "新增項目(_W)" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "新增分隔線(_S)" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "屬性(_P)" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "刪除(_D)" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "上移(_U)" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "下移(_D)" 120 | -------------------------------------------------------------------------------- /po/crh.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: crh\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "İsim" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Köster" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Unsur" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Baş Menü" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "Baş menüde qaysı uyğulamalarnıñ kösterilecegini deñiştir" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Deñişikliklerni Keri Döndür?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "_Vazgeç" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Keri döndür" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Menülerniñ episini özgün tesbitlerge keri döndür?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "Özgünge _Keri Döndür" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Yardım" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Keri yap" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Qapat" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "Menü_ler" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "Yañı _Menü" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "_Yañı Unsur" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "Yañı _Ayırğıç" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Hasiyetler" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Sil" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "_Yuqarı Taşı" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "_Aşağı Taşı" 120 | -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # ciaran, 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: ciaran, 2021\n" 17 | "Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: cy\n" 22 | "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "Enw" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "Dangos" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "Eitem" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "Prif ddewislen" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "Newid pa raglenni i'w dangos yn y brif ddewislen" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "Dychwelyd?" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "_Diddymu" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "_Dychwelyd" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "Dychwelyd i osodiadau gwreiddiol pob dewislen?" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "_Dychwelyd i'r gwreiddiol" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "_Cymorth" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "_Dadwneud" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "Ca_u" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "_Dewislenni:" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "Dewislen _newydd" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "Eitem ne_wydd" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "_Gwahanydd newydd" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "_Priodweddau" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "_Dileu" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Michael Findlay , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Michael Findlay , 2021\n" 16 | "Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: en_AU\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Name" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Show" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Item" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Main Menu" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "Change which applications are shown on the main menu" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Revert Changes?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "_Cancel" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Revert" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Revert all menus to original settings?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "_Revert to Original" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Help" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Undo" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Close" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_Menus:" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "_New Menu" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "Ne_w Item" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "New _Separator" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Properties" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Delete" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Move _Up" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "Move _Down" 120 | -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: en_CA\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Name" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Show" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Item" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Main Menu" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "Change which applications are shown on the main menu" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Revert Changes?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Revert" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Revert all menus to original settings?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "_Revert to Original" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Help" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Undo" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Close" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_Menus:" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "_New Menu" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "Ne_w Item" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "New _Separator" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Properties" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Delete" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Move _Up" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_CR.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Spanish (Costa Rica) (https://app.transifex.com/mate/teams/13566/es_CR/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_CR\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ay_uda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Propiedades" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_DO.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Spanish (Dominican Republic) (https://app.transifex.com/mate/teams/13566/es_DO/)\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_DO\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ay_uda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Propiedades" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_EC.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Spanish (Ecuador) (https://app.transifex.com/mate/teams/13566/es_EC/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_EC\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ay_uda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Propiedades" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Mario Verdin , 2018 8 | # David García-Abad , 2018 9 | # Stefano Karapetsas , 2021 10 | # 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: mozo 1.26.0\n" 14 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 15 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 16 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 17 | "Last-Translator: Stefano Karapetsas , 2021\n" 18 | "Language-Team: Spanish (Spain) (https://app.transifex.com/mate/teams/13566/es_ES/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: es_ES\n" 23 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 24 | 25 | #: Mozo/MainWindow.py:178 26 | msgid "Name" 27 | msgstr "Nombre" 28 | 29 | #: Mozo/MainWindow.py:195 30 | msgid "Show" 31 | msgstr "Mostrar" 32 | 33 | #: Mozo/MainWindow.py:203 34 | msgid "Item" 35 | msgstr "Elemento" 36 | 37 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 38 | msgid "Main Menu" 39 | msgstr "Menú Principal" 40 | 41 | #: data/mozo.desktop.in.in:4 42 | msgid "Change which applications are shown on the main menu" 43 | msgstr "" 44 | 45 | #. Translators: Search terms to find this application. Do NOT translate or 46 | #. localize the semicolons! The list MUST also end with a semicolon! 47 | #: data/mozo.desktop.in.in:11 48 | msgid "application;main;menu;editor;customize;MATE;" 49 | msgstr "" 50 | 51 | #: data/mozo.ui:67 52 | msgid "Revert Changes?" 53 | msgstr "" 54 | 55 | #: data/mozo.ui:85 56 | msgid "_Cancel" 57 | msgstr "" 58 | 59 | #: data/mozo.ui:100 data/mozo.ui:278 60 | msgid "_Revert" 61 | msgstr "" 62 | 63 | #: data/mozo.ui:142 64 | msgid "Revert all menus to original settings?" 65 | msgstr "" 66 | 67 | #: data/mozo.ui:177 68 | msgid "_Revert to Original" 69 | msgstr "" 70 | 71 | #: data/mozo.ui:230 72 | msgid "_Help" 73 | msgstr "Ay_uda" 74 | 75 | #: data/mozo.ui:246 76 | msgid "_Undo" 77 | msgstr "" 78 | 79 | #: data/mozo.ui:262 80 | msgid "R_edo" 81 | msgstr "" 82 | 83 | #: data/mozo.ui:294 84 | msgid "_Close" 85 | msgstr "" 86 | 87 | #: data/mozo.ui:335 88 | msgid "_Menus:" 89 | msgstr "" 90 | 91 | #: data/mozo.ui:388 92 | msgid "_Items:" 93 | msgstr "" 94 | 95 | #: data/mozo.ui:455 96 | msgid "_New Menu" 97 | msgstr "" 98 | 99 | #: data/mozo.ui:471 100 | msgid "Ne_w Item" 101 | msgstr "" 102 | 103 | #: data/mozo.ui:487 104 | msgid "New _Separator" 105 | msgstr "" 106 | 107 | #: data/mozo.ui:502 108 | msgid "_Properties" 109 | msgstr "_Propiedades" 110 | 111 | #: data/mozo.ui:518 112 | msgid "_Delete" 113 | msgstr "" 114 | 115 | #: data/mozo.ui:549 116 | msgid "Move _Up" 117 | msgstr "" 118 | 119 | #: data/mozo.ui:565 120 | msgid "Move _Down" 121 | msgstr "" 122 | -------------------------------------------------------------------------------- /po/es_NI.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Spanish (Nicaragua) (https://app.transifex.com/mate/teams/13566/es_NI/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_NI\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ay_uda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Propiedades" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_PA.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Spanish (Panama) (https://app.transifex.com/mate/teams/13566/es_PA/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_PA\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ay_uda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Propiedades" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_PE.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Spanish (Peru) (https://app.transifex.com/mate/teams/13566/es_PE/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_PE\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ay_uda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Propiedades" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # Neverest , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: Neverest , 2021\n" 17 | "Language-Team: Spanish (Puerto Rico) (https://app.transifex.com/mate/teams/13566/es_PR/)\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_PR\n" 22 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "Nombre" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "_Ayuda" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "_Propiedades" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/es_SV.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Spanish (El Salvador) (https://app.transifex.com/mate/teams/13566/es_SV/)\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_SV\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ay_uda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Propiedades" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_UY.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Spanish (Uruguay) (https://app.transifex.com/mate/teams/13566/es_UY/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: es_UY\n" 21 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ay_uda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Propiedades" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/es_VE.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Hector Colina , 2018 8 | # Stefano Karapetsas , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: Stefano Karapetsas , 2021\n" 17 | "Language-Team: Spanish (Venezuela) (https://app.transifex.com/mate/teams/13566/es_VE/)\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_VE\n" 22 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "Nombre" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "Mostrar" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "Item" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "Menú principal" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "¿Revertir los cambios?" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "¿Devolver todos los menús a sus configuraciones originales?" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "Ay_uda" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "_Propiedades" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # Ivar Smolin , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: Ivar Smolin , 2021\n" 17 | "Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: et\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "Nimi" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "Näita" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "Kirje" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "Peamenüü" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "Peamenüüs näidatavate rakenduste valimine" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "Kas pöörata muutused tagasi?" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "_Tühista" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "_Taasta" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "Kas taastada kõigi menüüde algseaded?" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "_Taasta algne seis" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "A_bi" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "_Unusta" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "_Sulge" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "_Menüüd:" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "_Uus menüü" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "Uus _kirje" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "Uus e_raldaja" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "_Omadused" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "_Eemalda" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "Liiguta ü_les" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "Liiguta _alla" 121 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # eere leme , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: eere leme , 2021\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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Nom" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Montrer" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Menu principal" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Aide" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alexandre Raymond, 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Alexandre Raymond, 2021\n" 16 | "Language-Team: Franco-Provençal (Arpitan) (https://app.transifex.com/mate/teams/13566/frp/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: frp\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Nom" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Montrar" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Objèt" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Menu principâl" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Dèfâre" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: fur\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Nom" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Mostre" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Vôs" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Menu principâl" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "Gambie lis aplicazions mostradis tal menu principâl" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Tornâ a ripristinâ?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Ripristine" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Tornâ a ripristinâ i setagjos dai menu originâi?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "_Ripuarte a l'origjinâl" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Jutori" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Anule" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Siere" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_Menu:" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "_Gnûf menu" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "G_nove vôs" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "Gn_ûf separadôr" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "Pr_oprietâts" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Elimine" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "_Pare sù" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Western Frisian (https://app.transifex.com/mate/teams/13566/fy/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: fy\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Namme" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Sjen litte" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Item" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Haadmenu" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "Feroarje hokke applikaasje wurde sjen litte in it haadmenu" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Feroaringen Weromkeare?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Alle menus nei orizjinele ynstellingen weromkeare?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "Nij Orizjineel Weromkeare" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Help" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "Ûngedien meitsje" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "Slute" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_Menus:" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "_Nij Menu" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "Nij Item" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "Nije Ôf_skieder" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "Foarkarren" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "Wiske" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Ferpleats Omheech" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/gd.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # GunChleoc, 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: GunChleoc, 2021\n" 16 | "Language-Team: Gaelic, Scottish (https://app.transifex.com/mate/teams/13566/gd/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: gd\n" 21 | "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Ainm" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Gluais s_uas" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ha\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Suna" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Babbar Mazaɓa" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Taimako" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Warware" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Rufe" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Furofati" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Goge" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Gusa _Sama" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Tea Coba , 2018 8 | # Funkin, 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: Funkin, 2021\n" 17 | "Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: ia\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "Nomine" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "_Clauder" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # clefebvre , 2021 8 | # Caarmi, 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: Caarmi, 2021\n" 17 | "Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: ie\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "Nómine" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "Monstrar" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "Element" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "Menú principal" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "Modificar quel application es monstrat in li menú principal" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "Reverter li modificationes?" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "_Anullar" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "_Reverter" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "Reverter omni menús al configuration original?" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "_Reverter al original" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "Au_xilie" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "_Defar" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "_Clúder" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "_Menús:" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "_Crear un menú" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "Crear u_n element" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "Crear un _separator" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "_Proprietás" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "_Deleter" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "Mover ad-_up" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "Mover a-_bass" 121 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ig\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Aha" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Menu nkeisi" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Nnyemaka" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Nweghachi" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Mechie" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Akparamagwa" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Hichaa" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Kpụga _n'elu" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Slimane Selyan AMIRI , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Slimane Selyan AMIRI , 2021\n" 16 | "Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: kab\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Isem" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "_Sefsex" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Tti" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Ta_llalt" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "Se_fsex" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Mdel" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Iraten" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Kkes" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Khmer (https://app.transifex.com/mate/teams/13566/km/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: km\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "ជំនួយ" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "បិទ" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "मदद (_H)" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "फेरिव (_U)" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "बंद करिव (_C)" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ku\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Nav" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Nîşandan" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Hêman" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Pêşeka Bingehîn" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Guherînan _paş de vegerîne?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "_Betal" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Bizivirîne Paş" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Bila hemû pêşek vegere mîhengên sereke?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "_Vegerîne Orjînalê" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Alîkarî" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Vegerîne" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Bigire" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_Pêşek:" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "_Pêşeka nû" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "Hêmana _nû" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "V_eqetandeka nû" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Taybetî" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Rake" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "_Berjor" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Haval Abdulkarim , 2018 8 | # Rasti K5 , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: Rasti K5 , 2021\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 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "ناو" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "پیشاندان" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "بڕگە" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "پێڕستی سەرەکی" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "_هەڵوەشاندنەوە" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "_یارمەتی" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "_داخستن" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "_پێڕستی نوێ" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "بڕ_گەی نوێ" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "_تایبەتمەندییەکان" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "_سڕینەوە" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "جوڵاندن بۆ _سەرەوە" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021\n" 16 | "Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ky\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Аты" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Көрсөтүү" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Элемент" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Башкы меню" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "Башкы менюда кайсы тиркемелер көрсөтүлөөрүн өзгөртүү" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Өзгөртүүлөрдү кайтаруу?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "_Жокко чыгаруу" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Кайтаруу" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Асыл нуска ырастоолоруна бардык менюларды кайтаруу?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "Баштапкы аблын _кайтаруу" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Жардам" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Жокко чыгаруу" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Жабуу" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_Менюлар:" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "Жаңы _меню" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "_Жаңы элемент" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "Жаңы _бөлгүч" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Касиеттери" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "Ө_чүрүү" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Өй_дө ташуу" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "_Ылдый ташуу" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Vendelín Slezák , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Vendelín Slezák , 2018\n" 16 | "Language-Team: Latin (https://app.transifex.com/mate/teams/13566/la/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: la\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Nomen" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Limburgian (https://app.transifex.com/mate/teams/13566/li/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: li\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Naam" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "T_rökvalle" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Hulp" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "Óngeda_on make" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Sjloete" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Eigesjappe" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "Eweg_doon" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mai\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "नाम" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "देखाबू" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "वस्तु" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "मुख्य मेनू" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "जकरा मुख्य मेन्यूमे देखाओल गेल अछि अनुप्रयोग केँ बदलू" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "बदलाव वापस लिअ'?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "रद्द करू (_C)" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "पुरान स्थितिमे लौटाबू (_R)" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "सभ मेनू मूल जमावटमे वापस करू?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "मूलमे वापस करू (_R)" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "मद्दति (_H)" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "पूर्ववत् करू (_U)" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "बन्न करू (_C)" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "मेनू (_M):" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "नवीन मेनू (_N)" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "नवीन मद (_w)" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "नवीन पृथक्कारक (_S)" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "गुण (_P)" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "मेटाबू (_D)" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "उप्पर जाउ (_U)" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), preset: 'glib',) 2 | -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mg\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Anarana" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "Asehoy" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Singa" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Tolotra Fototra" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "Ovay ireo rindran'asa miseo amin'ny tolotra fototra" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "Foanana ireo fanovana?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "_Aoka" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Ahemory" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "Averina amin'ny laminy taloha ny tolotra rehetra?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "_Averina amin'ny taloha" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Toro-làlana" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Foano" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_hidio" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "_Tolotra:" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "_Tolotra vaovao" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "Singa _vaovao" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "_Mpampisaraka vaovao" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Toetoetra" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Fafao" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "_Akaro" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Maori (https://app.transifex.com/mate/teams/13566/mi/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mi\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Ingoa" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Whakakāhoretia" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Āwhina" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Whakakore" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Kati" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "Ngā _Āhuatanga" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Porowhiu" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Zorig, 2021 8 | # Stefano Karapetsas , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: Stefano Karapetsas , 2021\n" 17 | "Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: mn\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "Нэр" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "Харуулах" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "Элемент" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "Үндсэн цэс" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "Үндсэн цэсэнд ямар програмууд харагдахыг өөрчлөх" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "Өөрчилөлтүүдийг буцаах уу?" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "_Буцах" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "_Сэргээх" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "Бүх цэсийн оргинал тохиргоо руу нь буцаах уу?" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "Оргинал руу нь _буцаах" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "_Тусламж" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "_Цуцлах" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "_Хаах" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "_Цэсүүд:" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "_Шинэ цэс" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "_Шинэ элемент" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "Шинэ _тусгаарлагч" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "_Онцлогууд..." 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "_Устгах" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "Д_ээш шилжүүлэх" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_H အကူအညီ" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_C ပိတ်ပါ" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # jorge becerril , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: jorge becerril , 2021\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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "Tla_pewalistli" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/nan.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Tan, Kian-ting, 2023 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Tan, Kian-ting, 2023\n" 16 | "Language-Team: Chinese (Min Nan) (https://app.transifex.com/mate/teams/13566/nan/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nan\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "名" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "取消 (_C)" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "復歸 (_R)" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "Thâi掉 (_D)" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Suá kàu頂懸 (_U)" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # chautari , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: chautari , 2021\n" 17 | "Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: ne\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "नाम" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "वस्तु" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "मुख्य मेनु" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "रद्द गर्नुहोस्" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "उल्टाउनुहोस्" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "मद्दत" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "पूर्वस्थितिमा फर्काउनुहोस्" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "_Close" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "_गुणहरु" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "_मेट्नुहोस्" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "माथि सार्नुहोस्" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "" 121 | -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Øystein Steffensen-Alværvik, 2021 8 | # Stefano Karapetsas , 2021 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 16 | "Last-Translator: Stefano Karapetsas , 2021\n" 17 | "Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: nn\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "Namn" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "Vis" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "Oppføring" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "Hovudmeny" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "Endra kva program som vert viste i hovudmenyen" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "Angra endringer?" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "_Avbryt" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "_Gå tilbake" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "Set menyane tilbake til opphavleg tilstand?" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "_Angra alle endringar" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "_Hjelp" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "_Angre" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "_Lukk" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "_Menyar:" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "_Ny meny" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "N_y oppføring" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "Ny _separator" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "Eigenska_per" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "_Slett" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "Flytt _opp" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "Flytt _ned" 121 | -------------------------------------------------------------------------------- /po/nqo.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Lasnei KANTE , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Lasnei KANTE , 2021\n" 16 | "Language-Team: N'ko (https://app.transifex.com/mate/teams/13566/nqo/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nqo\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "ߺ ߘߍ߬ߡߍ߲߬ߠߌ" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Leina" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Lelokelelo la Dikagare le Legolo" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Boela morago" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Thušo" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Dirolla" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Tswalela" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Dipharologantšho" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Phumola" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Šuthela _Godimo" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: pa\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "ਨਾਂ" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "ਵੇਖਾਓ" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "ਆਈਟਮ" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "ਮੁੱਖ ਮੇਨੂ" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "ਮੁੱਖ ਮੇਨੂ ਉੱਤੇ ਵੇਖਾਉਣ ਲਈ ਕਾਰਜ ਬਦਲੋ" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "ਕੀ ਬਦਲਾਅ ਵਾਪਸ ਲੈਣੇ ਹਨ?" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "ਰੱਦ ਕਰੋ(_C)" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "ਮੁੜ-ਖੋਲ੍ਹੋ(_R)" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "ਕੀ ਮੇਨੂ ਲਈ ਅਸਲੀ ਸੈਟਿੰਗ ਵਾਪਸ ਲੈਣੀ ਹੈ?" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "ਅਸਲੀ ਮੁੜ ਲਵੋ(_R)" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "ਮੱਦਦ(_H)" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "ਵਾਪਿਸ(_U)" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "ਬੰਦ ਕਰੋ(_C)" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "ਮੇਨੂ(_M):" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "ਨਵਾਂ ਮੇਨੂ(_N)" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "ਨਵੀਂ ਆਈਟਮ(_w)" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "ਨਵਾਂ ਸੈਪਰੇਟਰ(_S)" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "ਵਿਸ਼ੇਸ਼ਤਾ(_P)" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "ਹਟਾਓ(_D)" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "ਉੱਤੇ ਭੇਜੋ(_U)" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "ਹੇਠਾਂ ਭੇਜੋ(_D)" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Randy Ichinose , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Randy Ichinose , 2021\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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Nòm" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Oget" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Agiut" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ps\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "نوم" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "ښودل" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "توکی" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "اره غورنۍ" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "په ارې غورنۍ کې د ښودلو لپاره کاريالونه بدلول" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "بدلونونه اړول غواړﺉ؟" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "بندول_" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "ټولې غورنۍ ارو امستنو ته اړول" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "ارې ته اړول_" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "مرسته_" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "ناکړ_" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "بندول_" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr ":غورنۍ_" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "نوې غورنۍ_" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "نو_ی توکی" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "نوی _بېلند" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "ځانتياوې_" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "ړنګول_" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "پورته خوځ_ول" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Izina" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Ikintu" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Fabrizio Pedes , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Fabrizio Pedes , 2021\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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Nùmene" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Moe _Susu" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rockers , 2021 8 | # Akom , 2021 9 | # Stefano Karapetsas , 2021 10 | # 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: mozo 1.26.0\n" 14 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 15 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 16 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 17 | "Last-Translator: Stefano Karapetsas , 2021\n" 18 | "Language-Team: Thai (https://app.transifex.com/mate/teams/13566/th/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: th\n" 23 | "Plural-Forms: nplurals=1; plural=0;\n" 24 | 25 | #: Mozo/MainWindow.py:178 26 | msgid "Name" 27 | msgstr "ชื่อ" 28 | 29 | #: Mozo/MainWindow.py:195 30 | msgid "Show" 31 | msgstr "แสดง" 32 | 33 | #: Mozo/MainWindow.py:203 34 | msgid "Item" 35 | msgstr "รายการ" 36 | 37 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 38 | msgid "Main Menu" 39 | msgstr "เมนูหลัก" 40 | 41 | #: data/mozo.desktop.in.in:4 42 | msgid "Change which applications are shown on the main menu" 43 | msgstr "ปรับเปลี่ยนการแสดงโปรแกรมในเมนูหลัก" 44 | 45 | #. Translators: Search terms to find this application. Do NOT translate or 46 | #. localize the semicolons! The list MUST also end with a semicolon! 47 | #: data/mozo.desktop.in.in:11 48 | msgid "application;main;menu;editor;customize;MATE;" 49 | msgstr "" 50 | 51 | #: data/mozo.ui:67 52 | msgid "Revert Changes?" 53 | msgstr "คืนสู่สภาพเดิมหรือไม่?" 54 | 55 | #: data/mozo.ui:85 56 | msgid "_Cancel" 57 | msgstr "_ยกเลิก" 58 | 59 | #: data/mozo.ui:100 data/mozo.ui:278 60 | msgid "_Revert" 61 | msgstr "คืน_กลับ" 62 | 63 | #: data/mozo.ui:142 64 | msgid "Revert all menus to original settings?" 65 | msgstr "คืนทุกเมนูกลับสู่ี่ค่าเดิมที่กำหนดไว้หรือไม่?" 66 | 67 | #: data/mozo.ui:177 68 | msgid "_Revert to Original" 69 | msgstr "_คืนสู่สภาพเดิม" 70 | 71 | #: data/mozo.ui:230 72 | msgid "_Help" 73 | msgstr "_วิธีใช้" 74 | 75 | #: data/mozo.ui:246 76 | msgid "_Undo" 77 | msgstr "เรี_ยกคืน" 78 | 79 | #: data/mozo.ui:262 80 | msgid "R_edo" 81 | msgstr "" 82 | 83 | #: data/mozo.ui:294 84 | msgid "_Close" 85 | msgstr "ปิ_ด" 86 | 87 | #: data/mozo.ui:335 88 | msgid "_Menus:" 89 | msgstr "เ_มนู:" 90 | 91 | #: data/mozo.ui:388 92 | msgid "_Items:" 93 | msgstr "" 94 | 95 | #: data/mozo.ui:455 96 | msgid "_New Menu" 97 | msgstr "เ_มนูใหม่" 98 | 99 | #: data/mozo.ui:471 100 | msgid "Ne_w Item" 101 | msgstr "รายการใ_หม่" 102 | 103 | #: data/mozo.ui:487 104 | msgid "New _Separator" 105 | msgstr "เส้นแ_บ่งใหม่" 106 | 107 | #: data/mozo.ui:502 108 | msgid "_Properties" 109 | msgstr "คุณ_สมบัติ" 110 | 111 | #: data/mozo.ui:518 112 | msgid "_Delete" 113 | msgstr "_ลบ" 114 | 115 | #: data/mozo.ui:549 116 | msgid "Move _Up" 117 | msgstr "เลื่อน_ขึ้น" 118 | 119 | #: data/mozo.ui:565 120 | msgid "Move _Down" 121 | msgstr "" 122 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Ad" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Ewir" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Help" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Izine Al" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Ýap" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Häsyýetler" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Poz" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "_Ýokara göçir" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Tatar (https://app.transifex.com/mate/teams/13566/tt/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: tt\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Qaytart" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Yärdäm" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "Kire _al" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "Ya_p" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "Ü_zençälege" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Uyghur (https://app.transifex.com/mate/teams/13566/ug/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ug\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "ئاتى" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "كۆرسەت" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "تۇر" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "باش menu" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "باش menu دا قايسى پروگراممىنى كۆرسىتىدىغانلىقىنى ئۆزگەرتىدۇ" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "ئۆزگىرىشلەرنى ئەسلىگە كەلتۈرەمسىز؟" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "ئەسلىگە كەلتۈر(_R)" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "بارلىق menu لارنى ئەسلىدىكى تەڭشەككە قايتۇرامسىز؟" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "ئەسلىگە قايتۇرۇش(_R)" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "ياردەم(_H)" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "يېنىۋال(_U)" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "ياپ(_C)" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "Menus(_M):" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "يېڭى Menu(_N)" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr " يېڭى تۇر(_W)" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "يېڭى ئايرىغۇچ(_S)" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "خاسلىق(_P)" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "ئۆچۈر(_D)" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "يۇقىرىغا(_U)" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "تۆۋەنگە(_D)" 120 | -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # mauron, 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: mauron, 2021\n" 16 | "Language-Team: Urdu (https://app.transifex.com/mate/teams/13566/ur/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ur\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "نام" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "مرکزی فہرست" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "_ملتوی" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_الٹیں" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_ہدایات" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_منسوخ کریں" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_بند کریں" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_خصوصیات" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_حذف کریں" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "_اوپر کریں" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "_نیچے کریں" 120 | -------------------------------------------------------------------------------- /po/ur_PK.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Urdu (Pakistan) (https://app.transifex.com/mate/teams/13566/ur_PK/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ur_PK\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_ہدایات" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: wa\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "No" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Elemint" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Rivni en erî" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Aidance" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Disfé" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Clôre" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Prôpietés" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Disfacer" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: xh\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Igama" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "Umba" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Imenyu Esentloko" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Buyela" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Nceda" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Buyisela okwenziweyo" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Vala" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Iimpawu" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Cima" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Shenxisela _Phezulu" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/yi.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Yiddish (https://app.transifex.com/mate/teams/13566/yi/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: yi\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "נאָמען" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "װי פֿריִער" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "געהילף" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "פֿאַרקער" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "פֿאַרמאַך" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "נאַטורן" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "מעק אָפּ" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2021\n" 16 | "Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: yo\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Orúkọ" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Àtòjọ-ẹ̀yàn Gangan" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Ìrànwọ́" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Padà Sípò" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Ti" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Àwọn Àbùdá" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Pajẹ" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Lọ _Sókè" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /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 mozo 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: mozo 1.26.0\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 14 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 15 | "PO-Revision-Date: 2018-03-12 09:38+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 | #: Mozo/MainWindow.py:178 25 | msgid "Name" 26 | msgstr "名稱" 27 | 28 | #: Mozo/MainWindow.py:195 29 | msgid "Show" 30 | msgstr "顯示" 31 | 32 | #: Mozo/MainWindow.py:203 33 | msgid "Item" 34 | msgstr "項目" 35 | 36 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 37 | msgid "Main Menu" 38 | msgstr "主選單" 39 | 40 | #: data/mozo.desktop.in.in:4 41 | msgid "Change which applications are shown on the main menu" 42 | msgstr "選擇那一個應用程式顯示在主選單上" 43 | 44 | #. Translators: Search terms to find this application. Do NOT translate or 45 | #. localize the semicolons! The list MUST also end with a semicolon! 46 | #: data/mozo.desktop.in.in:11 47 | msgid "application;main;menu;editor;customize;MATE;" 48 | msgstr "" 49 | 50 | #: data/mozo.ui:67 51 | msgid "Revert Changes?" 52 | msgstr "還原更改?" 53 | 54 | #: data/mozo.ui:85 55 | msgid "_Cancel" 56 | msgstr "取消(_C)" 57 | 58 | #: data/mozo.ui:100 data/mozo.ui:278 59 | msgid "_Revert" 60 | msgstr "回復(_R)" 61 | 62 | #: data/mozo.ui:142 63 | msgid "Revert all menus to original settings?" 64 | msgstr "將所有選單還原為原本的設定?" 65 | 66 | #: data/mozo.ui:177 67 | msgid "_Revert to Original" 68 | msgstr "還原為原本的設定(_R)" 69 | 70 | #: data/mozo.ui:230 71 | msgid "_Help" 72 | msgstr "求助(_H)" 73 | 74 | #: data/mozo.ui:246 75 | msgid "_Undo" 76 | msgstr "復原(_U)" 77 | 78 | #: data/mozo.ui:262 79 | msgid "R_edo" 80 | msgstr "" 81 | 82 | #: data/mozo.ui:294 83 | msgid "_Close" 84 | msgstr "關閉(_C)" 85 | 86 | #: data/mozo.ui:335 87 | msgid "_Menus:" 88 | msgstr "選單(_M):" 89 | 90 | #: data/mozo.ui:388 91 | msgid "_Items:" 92 | msgstr "" 93 | 94 | #: data/mozo.ui:455 95 | msgid "_New Menu" 96 | msgstr "新增選單(_N)" 97 | 98 | #: data/mozo.ui:471 99 | msgid "Ne_w Item" 100 | msgstr "新增項目(_W)" 101 | 102 | #: data/mozo.ui:487 103 | msgid "New _Separator" 104 | msgstr "新增分隔線(_S)" 105 | 106 | #: data/mozo.ui:502 107 | msgid "_Properties" 108 | msgstr "屬性(_P)" 109 | 110 | #: data/mozo.ui:518 111 | msgid "_Delete" 112 | msgstr "刪除(_D)" 113 | 114 | #: data/mozo.ui:549 115 | msgid "Move _Up" 116 | msgstr "上移(_U)" 117 | 118 | #: data/mozo.ui:565 119 | msgid "Move _Down" 120 | msgstr "下移(_D)" 121 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # 趙惟倫 , 2021 8 | # 黃柏諺 , 2021 9 | # Stefano Karapetsas , 2021 10 | # 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: mozo 1.26.0\n" 14 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 15 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 16 | "PO-Revision-Date: 2018-03-12 09:38+0000\n" 17 | "Last-Translator: Stefano Karapetsas , 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 | #: Mozo/MainWindow.py:178 26 | msgid "Name" 27 | msgstr "名稱" 28 | 29 | #: Mozo/MainWindow.py:195 30 | msgid "Show" 31 | msgstr "顯示" 32 | 33 | #: Mozo/MainWindow.py:203 34 | msgid "Item" 35 | msgstr "項目" 36 | 37 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 38 | msgid "Main Menu" 39 | msgstr "主選單" 40 | 41 | #: data/mozo.desktop.in.in:4 42 | msgid "Change which applications are shown on the main menu" 43 | msgstr "選擇那一個應用程式顯示在主選單上" 44 | 45 | #. Translators: Search terms to find this application. Do NOT translate or 46 | #. localize the semicolons! The list MUST also end with a semicolon! 47 | #: data/mozo.desktop.in.in:11 48 | msgid "application;main;menu;editor;customize;MATE;" 49 | msgstr "application;main;menu;editor;customize;MATE;" 50 | 51 | #: data/mozo.ui:67 52 | msgid "Revert Changes?" 53 | msgstr "還原變更?" 54 | 55 | #: data/mozo.ui:85 56 | msgid "_Cancel" 57 | msgstr "取消(_C)" 58 | 59 | #: data/mozo.ui:100 data/mozo.ui:278 60 | msgid "_Revert" 61 | msgstr "回復(_R)" 62 | 63 | #: data/mozo.ui:142 64 | msgid "Revert all menus to original settings?" 65 | msgstr "將所有選單還原為原本的設定?" 66 | 67 | #: data/mozo.ui:177 68 | msgid "_Revert to Original" 69 | msgstr "還原為原本的設定(_R)" 70 | 71 | #: data/mozo.ui:230 72 | msgid "_Help" 73 | msgstr "說明(_H)" 74 | 75 | #: data/mozo.ui:246 76 | msgid "_Undo" 77 | msgstr "復原(_U)" 78 | 79 | #: data/mozo.ui:262 80 | msgid "R_edo" 81 | msgstr "重作(_E)" 82 | 83 | #: data/mozo.ui:294 84 | msgid "_Close" 85 | msgstr "關閉(_C)" 86 | 87 | #: data/mozo.ui:335 88 | msgid "_Menus:" 89 | msgstr "選單(_M):" 90 | 91 | #: data/mozo.ui:388 92 | msgid "_Items:" 93 | msgstr "項目(_I):" 94 | 95 | #: data/mozo.ui:455 96 | msgid "_New Menu" 97 | msgstr "新增選單(_N)" 98 | 99 | #: data/mozo.ui:471 100 | msgid "Ne_w Item" 101 | msgstr "新增項目(_W)" 102 | 103 | #: data/mozo.ui:487 104 | msgid "New _Separator" 105 | msgstr "新增分隔線(_S)" 106 | 107 | #: data/mozo.ui:502 108 | msgid "_Properties" 109 | msgstr "屬性(_P)" 110 | 111 | #: data/mozo.ui:518 112 | msgid "_Delete" 113 | msgstr "刪除(_D)" 114 | 115 | #: data/mozo.ui:549 116 | msgid "Move _Up" 117 | msgstr "上移(_U)" 118 | 119 | #: data/mozo.ui:565 120 | msgid "Move _Down" 121 | msgstr "下移(_D)" 122 | -------------------------------------------------------------------------------- /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 mozo package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2021 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mozo 1.26.0\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org\n" 13 | "POT-Creation-Date: 2022-10-29 15:31+0200\n" 14 | "PO-Revision-Date: 2018-03-12 09:38+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 | #: Mozo/MainWindow.py:178 24 | msgid "Name" 25 | msgstr "Igama" 26 | 27 | #: Mozo/MainWindow.py:195 28 | msgid "Show" 29 | msgstr "" 30 | 31 | #: Mozo/MainWindow.py:203 32 | msgid "Item" 33 | msgstr "" 34 | 35 | #: data/mozo.desktop.in.in:3 data/mozo.ui:207 36 | msgid "Main Menu" 37 | msgstr "Ingqikithi yohlu" 38 | 39 | #: data/mozo.desktop.in.in:4 40 | msgid "Change which applications are shown on the main menu" 41 | msgstr "" 42 | 43 | #. Translators: Search terms to find this application. Do NOT translate or 44 | #. localize the semicolons! The list MUST also end with a semicolon! 45 | #: data/mozo.desktop.in.in:11 46 | msgid "application;main;menu;editor;customize;MATE;" 47 | msgstr "" 48 | 49 | #: data/mozo.ui:67 50 | msgid "Revert Changes?" 51 | msgstr "" 52 | 53 | #: data/mozo.ui:85 54 | msgid "_Cancel" 55 | msgstr "" 56 | 57 | #: data/mozo.ui:100 data/mozo.ui:278 58 | msgid "_Revert" 59 | msgstr "_Buyisela emuva" 60 | 61 | #: data/mozo.ui:142 62 | msgid "Revert all menus to original settings?" 63 | msgstr "" 64 | 65 | #: data/mozo.ui:177 66 | msgid "_Revert to Original" 67 | msgstr "" 68 | 69 | #: data/mozo.ui:230 70 | msgid "_Help" 71 | msgstr "_Usizo" 72 | 73 | #: data/mozo.ui:246 74 | msgid "_Undo" 75 | msgstr "_Ungakwenzi" 76 | 77 | #: data/mozo.ui:262 78 | msgid "R_edo" 79 | msgstr "" 80 | 81 | #: data/mozo.ui:294 82 | msgid "_Close" 83 | msgstr "_Vala" 84 | 85 | #: data/mozo.ui:335 86 | msgid "_Menus:" 87 | msgstr "" 88 | 89 | #: data/mozo.ui:388 90 | msgid "_Items:" 91 | msgstr "" 92 | 93 | #: data/mozo.ui:455 94 | msgid "_New Menu" 95 | msgstr "" 96 | 97 | #: data/mozo.ui:471 98 | msgid "Ne_w Item" 99 | msgstr "" 100 | 101 | #: data/mozo.ui:487 102 | msgid "New _Separator" 103 | msgstr "" 104 | 105 | #: data/mozo.ui:502 106 | msgid "_Properties" 107 | msgstr "_Izakhiwo" 108 | 109 | #: data/mozo.ui:518 110 | msgid "_Delete" 111 | msgstr "_Cima" 112 | 113 | #: data/mozo.ui:549 114 | msgid "Move _Up" 115 | msgstr "Hambisa _Phezulu" 116 | 117 | #: data/mozo.ui:565 118 | msgid "Move _Down" 119 | msgstr "" 120 | -------------------------------------------------------------------------------- /post_install.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | import glob 5 | import subprocess 6 | import sysconfig 7 | from compileall import compile_dir 8 | 9 | prefix = os.environ.get('MESON_INSTALL_PREFIX', '/usr/local') 10 | datadir = os.path.join(prefix, 'share') 11 | destdir = os.environ.get('DESTDIR', '') 12 | 13 | if __name__=="__main__": 14 | print('Compiling python bytecode...') 15 | puredir = sysconfig.get_path('purelib', vars={'base': str(prefix)}) 16 | module_dir = os.path.join(destdir + os.path.join(puredir, 'Mozo')) 17 | compile_dir(module_dir, optimize=2) 18 | 19 | if destdir == '': 20 | print('Updating icon cache...') 21 | icon_cache_dir = os.path.join(datadir, 'icons', 'hicolor') 22 | if not os.path.exists(icon_cache_dir): 23 | os.makedirs(icon_cache_dir) 24 | subprocess.call(['gtk-update-icon-cache', '-qtf', icon_cache_dir]) 25 | 26 | print('Updating desktop database...') 27 | desktop_database_dir = os.path.join(datadir, 'applications') 28 | if not os.path.exists(desktop_database_dir): 29 | os.makedirs(desktop_database_dir) 30 | subprocess.call(['update-desktop-database', '-q', desktop_database_dir]) 31 | --------------------------------------------------------------------------------