├── po ├── meson.build ├── POTFILES.skip ├── POTFILES.in ├── LINGUAS ├── nan.po ├── frp.po ├── cy.po ├── tt.po ├── mi.po ├── wa.po ├── az.po ├── ks.po ├── li.po ├── xh.po ├── zu.po ├── fur.po ├── ku.po ├── mg.po ├── ps.po ├── fy.po ├── ku_IQ.po ├── nso.po ├── ug.po ├── ur_PK.po ├── dz.po ├── mn.po ├── en_CA.po ├── ka.po ├── kab.po ├── ast.po ├── as.po ├── bn.po ├── crh.po ├── eo.po ├── mai.po ├── af.po ├── fa.po ├── nds.po ├── nn.po ├── mk.po ├── ga.po ├── uz.po ├── si.po ├── Makevars ├── sr@latin.po ├── ky.po ├── ne.po ├── bs.po ├── cmn.po ├── zh_HK.po ├── br.po ├── zh_TW.po ├── zh_CN.po ├── am.po ├── ja.po └── ko.po ├── ChangeLog ├── makepot ├── AUTHORS ├── .tx ├── config_20221028215507.bak └── config ├── meson_options.txt ├── .github ├── issue_template.md └── FUNDING.yml ├── src ├── polkit-mate-authentication-agent-1.desktop.in.in ├── meson.build ├── Makefile.am ├── polkitmatelistener.h └── polkitmateauthenticator.h ├── README ├── autogen.sh ├── HACKING ├── Makefile.am ├── .travis.yml ├── mate-polkit.pot ├── NEWS └── .build.yml /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(gettext_package, preset : 'glib') 2 | -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | src/polkit-mate-authentication-agent-1.desktop.in 2 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | PACKAGE=mate-polkit; 4 | 5 | make -C po $PACKAGE.pot && mv po/$PACKAGE.pot . 6 | sed -i "/#, fuzzy/d" $PACKAGE.pot 7 | sed -i 's/charset=CHARSET/charset=UTF-8/g' $PACKAGE.pot 8 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | MATE developers: 2 | Perberos 3 | Steve Zesch 4 | Stefano Karapetsas 5 | 6 | GNOME developers: 7 | davidz:David Zeuthen 8 | -------------------------------------------------------------------------------- /.tx/config_20221028215507.bak: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [MATE.master--mate-polkit] 5 | file_filter = po/.po 6 | source_file = po/mate-polkit.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [o:mate:p:MATE:r:master--mate-polkit] 5 | file_filter = po/.po 6 | source_file = po/mate-polkit.pot 7 | source_lang = en 8 | type = PO 9 | minimum_perc = 2 10 | 11 | -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- 1 | option('accountsservice', 2 | type : 'boolean', 3 | value : true, 4 | description : 'Use libmagic to detect file type' 5 | ) 6 | 7 | option('appindicator', 8 | type : 'string', 9 | value : 'auto', 10 | description : 'Path to the cpio program' 11 | ) 12 | -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files containing translatable strings. 2 | # Please keep this file sorted alphabetically. 3 | src/main.c 4 | src/polkitmateauthenticationdialog.c 5 | src/polkitmateauthenticator.c 6 | src/polkitmatelistener.c 7 | src/polkit-mate-authentication-agent-1.desktop.in.in 8 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /src/polkit-mate-authentication-agent-1.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PolicyKit Authentication Agent 3 | Comment=PolicyKit Authentication Agent for the MATE Desktop 4 | Exec=@FULL_LIBEXECDIR@/polkit-mate-authentication-agent-1 5 | Terminal=false 6 | Type=Application 7 | NoDisplay=true 8 | OnlyShowIn=MATE; 9 | X-MATE-AutoRestart=true 10 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | PolicyKit-mate provides an Authentication Agent for PolicyKit that 2 | integrates well with the MATE desktop environment 3 | 4 | See http://www.freedesktop.org/wiki/Software/PolicyKit for lots of 5 | documentation, mailing lists, etc. about PolicyKit. 6 | 7 | See also the file HACKING for notes of interest to developers working 8 | on PolicyKit-mate. 9 | 10 | Report bugs against PolicyKit-mate at github 11 | 12 | https://github.com/mate-desktop/mate-polkit/issues 13 | 14 | MATE polkit is a fork of GNOME polkit. 15 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Run this to generate all the initial makefiles, etc. 3 | 4 | srcdir=`dirname $0` 5 | test -z "$srcdir" && srcdir=. 6 | 7 | PKG_NAME="mate-polkit" 8 | 9 | (test -f $srcdir/src/Makefile.am) || { 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 SVN repository" 17 | exit 1 18 | } 19 | 20 | REQUIRED_AUTOMAKE_VERSION=1.9 21 | USE_COMMON_DOC_BUILD=yes 22 | 23 | . mate-autogen 24 | -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- 1 | Coding Style 2 | === 3 | 4 | - Please follow the coding style already used - it's not a must, but it's 5 | nice to have consistency. 6 | 7 | - Write docs for all functions and structs and so on. We use gtkdoc format. 8 | 9 | - All external interfaces (network protocols, file formats, etc.) 10 | should have documented specifications sufficient to allow an 11 | alternative implementation to be written. Our implementation should 12 | be strict about specification compliance (should not for example 13 | heuristically parse a file and accept not-well-formed 14 | data). Avoiding heuristics is also important for security reasons; 15 | if it looks funny, ignore it (or exit, or disconnect). 16 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = po src 2 | 3 | DISTCHECK_CONFIGURE_FLAGS = \ 4 | --enable-compile-warnings=no \ 5 | CFLAGS='-Wno-deprecated-declarations' 6 | 7 | EXTRA_DIST = \ 8 | autogen.sh \ 9 | HACKING 10 | 11 | # Distribute the Meson build system files as well 12 | EXTRA_DIST += \ 13 | meson.build \ 14 | meson_options.txt \ 15 | po/meson.build \ 16 | src/meson.build 17 | 18 | ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} 19 | 20 | clean-local : 21 | rm -f *~ po/*~ 22 | 23 | # Build ChangeLog from GIT history 24 | ChangeLog: 25 | $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ 26 | GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ 27 | fi 28 | 29 | dist: ChangeLog 30 | 31 | .PHONY: ChangeLog 32 | 33 | -include $(top_srcdir)/git.mk 34 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | # please keep this list sorted alphabetically 2 | # 3 | af 4 | am 5 | ar 6 | as 7 | ast 8 | az 9 | be 10 | bg 11 | bn 12 | bn_IN 13 | br 14 | bs 15 | ca 16 | ca@valencia 17 | cmn 18 | crh 19 | cs 20 | cy 21 | da 22 | de 23 | dz 24 | el 25 | en_AU 26 | en_CA 27 | en_GB 28 | eo 29 | es 30 | es_AR 31 | es_CO 32 | et 33 | eu 34 | fa 35 | fi 36 | fr 37 | fr_CA 38 | frp 39 | fur 40 | fy 41 | ga 42 | gl 43 | gu 44 | he 45 | hi 46 | hr 47 | hu 48 | hy 49 | id 50 | ie 51 | is 52 | it 53 | ja 54 | ka 55 | kab 56 | kk 57 | kn 58 | ko 59 | ks 60 | ku 61 | ku_IQ 62 | ky 63 | li 64 | lt 65 | lv 66 | mai 67 | mg 68 | mi 69 | mk 70 | ml 71 | mn 72 | mr 73 | ms 74 | nan 75 | nb 76 | nds 77 | ne 78 | nl 79 | nn 80 | nso 81 | oc 82 | or 83 | pa 84 | pl 85 | ps 86 | pt 87 | pt_BR 88 | ro 89 | ru 90 | si 91 | sk 92 | sl 93 | sq 94 | sr 95 | sr@latin 96 | sv 97 | ta 98 | te 99 | th 100 | tr 101 | tt 102 | ug 103 | uk 104 | ur 105 | ur_PK 106 | uz 107 | vi 108 | wa 109 | xh 110 | zh_CN 111 | zh_HK 112 | zh_TW 113 | zu 114 | -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- 1 | po_dir = join_paths(meson.source_root(), 'po') 2 | # Sources 3 | 4 | source_files = files( 5 | 'main.c', 6 | 'polkitmateauthenticationdialog.c', 7 | 'polkitmateauthenticator.c', 8 | 'polkitmatelistener.c' 9 | 10 | ) 11 | 12 | # Build targets 13 | 14 | executable('polkit-mate-authentication-agent-1', 15 | sources : [ 16 | config_file, 17 | source_files 18 | ], 19 | dependencies : [ 20 | glib_dep, 21 | gthread_dep, 22 | gtk_dep, 23 | agent_dep, 24 | gobject_dep, 25 | appindicator_dep 26 | ], 27 | include_directories : config_inc, 28 | c_args : c_args + ['-DPOLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE'] + ['-DHAVE_CONFIG_H'], 29 | install : true, 30 | install_dir: libexecdir 31 | ) 32 | 33 | # .desktop file 34 | 35 | desktop_data = configuration_data() 36 | desktop_data.set('FULL_LIBEXECDIR', libexecdir) 37 | desktop_in_file = configure_file( 38 | input : 'polkit-mate-authentication-agent-1.desktop.in.in', 39 | output : 'polkit-mate-authentication-agent-1.desktop.in', 40 | configuration : desktop_data 41 | ) 42 | 43 | i18n.merge_file( 44 | input : desktop_in_file, 45 | output : 'polkit-mate-authentication-agent-1.desktop', 46 | type : 'desktop', 47 | po_dir : po_dir, 48 | install : true, 49 | install_dir: join_paths(get_option('sysconfdir'), 'xdg', 'autostart') 50 | ) 51 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | FULL_LIBEXECDIR=$(libexecdir) 3 | 4 | desktopdir = $(sysconfdir)/xdg/autostart 5 | desktop_in_files = polkit-mate-authentication-agent-1.desktop.in 6 | desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) 7 | 8 | polkit-mate-authentication-agent-1.desktop.in : polkit-mate-authentication-agent-1.desktop.in.in Makefile 9 | $(AM_V_GEN)sed \ 10 | -e "s|\@FULL_LIBEXECDIR\@|$(FULL_LIBEXECDIR)|" \ 11 | $< > $@ 12 | 13 | $(desktop_DATA): $(desktop_in_files) 14 | $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ 15 | 16 | libexec_PROGRAMS = polkit-mate-authentication-agent-1 17 | 18 | polkit_mate_authentication_agent_1_SOURCES = \ 19 | polkitmatelistener.h polkitmatelistener.c \ 20 | polkitmateauthenticator.h polkitmateauthenticator.c \ 21 | polkitmateauthenticationdialog.h polkitmateauthenticationdialog.c \ 22 | main.c \ 23 | $(BUILT_SOURCES) 24 | 25 | polkit_mate_authentication_agent_1_CPPFLAGS = \ 26 | -I$(top_srcdir) \ 27 | -DG_LOG_DOMAIN=\"polkit-mate-1\" \ 28 | -DDATADIR=\""$(pkgdatadir)"\" \ 29 | -DMATELOCALEDIR=\""$(datadir)/locale"\" \ 30 | -DPOLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE \ 31 | $(AM_CPPFLAGS) 32 | 33 | polkit_mate_authentication_agent_1_CFLAGS = \ 34 | $(GTK_CFLAGS) \ 35 | $(GLIB_CFLAGS) \ 36 | $(POLKIT_AGENT_CFLAGS) \ 37 | $(POLKIT_GOBJECT_CFLAGS) \ 38 | $(AYATANA_APPINDICATOR_CFLAGS) \ 39 | $(UBUNTU_APPINDICATOR_CFLAGS) \ 40 | $(WARN_CFLAGS) \ 41 | $(AM_CFLAGS) 42 | 43 | polkit_mate_authentication_agent_1_LDFLAGS = \ 44 | $(AM_LDFLAGS) 45 | 46 | polkit_mate_authentication_agent_1_LDADD = \ 47 | $(GTK_LIBS) \ 48 | $(GLIB_LIBS) \ 49 | $(POLKIT_AGENT_LIBS) \ 50 | $(POLKIT_GOBJECT_LIBS) \ 51 | $(AYATANA_APPINDICATOR_LIBS) \ 52 | $(UBUNTU_APPINDICATOR_LIBS) 53 | 54 | EXTRA_DIST = \ 55 | polkit-mate-authentication-agent-1.desktop.in \ 56 | polkit-mate-authentication-agent-1.desktop.in.in 57 | 58 | clean-local : 59 | rm -f *~ polkit-mate-authentication-agent-1.desktop polkit-mate-authentication-agent-1.desktop.in 60 | 61 | -include $(top_srcdir)/git.mk 62 | -------------------------------------------------------------------------------- /src/polkitmatelistener.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2009 Red Hat, Inc. 3 | * Copyright (C) 2012-2021 MATE Developers 4 | * 5 | * This library is free software; you can redistribute it and/or 6 | * modify it under the terms of the GNU Lesser General Public 7 | * License as published by the Free Software Foundation; either 8 | * version 2 of the License, or (at your option) any later version. 9 | * 10 | * This library is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 | * Lesser General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Lesser General 16 | * Public License along with this library; if not, write to the 17 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 | * Boston, MA 02110-1301, USA. 19 | * 20 | * Author: David Zeuthen 21 | */ 22 | 23 | #ifndef __POLKIT_MATE_LISTENER_H 24 | #define __POLKIT_MATE_LISTENER_H 25 | 26 | #include 27 | 28 | #ifdef __cplusplus 29 | extern "C" { 30 | #endif 31 | 32 | #define POLKIT_MATE_TYPE_LISTENER (polkit_mate_listener_get_type()) 33 | #define POLKIT_MATE_LISTENER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), POLKIT_MATE_TYPE_LISTENER, PolkitMateListener)) 34 | #define POLKIT_MATE_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), POLKIT_MATE_TYPE_LISTENER, PolkitMateListenerClass)) 35 | #define POLKIT_MATE_LISTENER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), POLKIT_MATE_TYPE_LISTENER, PolkitMateListenerClass)) 36 | #define POLKIT_MATE_IS_LISTENER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), POLKIT_MATE_TYPE_LISTENER)) 37 | #define POLKIT_MATE_IS_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), POLKIT_MATE_TYPE_LISTENER)) 38 | 39 | typedef struct _PolkitMateListener PolkitMateListener; 40 | typedef struct _PolkitMateListenerClass PolkitMateListenerClass; 41 | 42 | GType polkit_mate_listener_get_type (void) G_GNUC_CONST; 43 | PolkitAgentListener *polkit_mate_listener_new (void); 44 | 45 | #ifdef __cplusplus 46 | } 47 | #endif 48 | 49 | #endif /* __POLKIT_MATE_LISTENER_H */ 50 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # vim: set ts=2 sts=2 sw=2 expandtab : 2 | dist: jammy 3 | language: shell 4 | os: linux 5 | services: 6 | - docker 7 | addons: 8 | apt: 9 | packages: 10 | - python3-pip 11 | - python3-setuptools 12 | 13 | branches: 14 | except: 15 | - gh-pages 16 | 17 | before_install: 18 | - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build 19 | - curl -Ls -o gen-index https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/gen-index.sh 20 | - chmod +x docker-build gen-index 21 | 22 | install: 23 | - pip3 install PyGithub 24 | - ./docker-build --name ${DISTRO} --config .build.yml --install 25 | 26 | script: 27 | - ./docker-build --name ${DISTRO} --verbose --config .build.yml --build scripts 28 | 29 | notifications: 30 | irc: 31 | if: (tag OR branch = master) AND 32 | repo = "mate-desktop/mate-polkit" 33 | channels: 34 | - "irc.libera.chat#mate-dev" 35 | template: 36 | - "[%{repository_name}] %{author}: %{commit_subject}" 37 | - "[%{branch}] %{commit} %{message} %{build_url}" 38 | on_success: never 39 | on_failure: always 40 | 41 | deploy: 42 | - provider: pages 43 | edge: true 44 | token: $GITHUB_TOKEN 45 | keep_history: false 46 | committer_from_gh: true 47 | target_branch: gh-pages 48 | local_dir: html-report 49 | strategy: git 50 | on: 51 | all_branches: true 52 | condition: ${DISTRO} =~ ^fedora.*$ 53 | - provider: script 54 | edge: true 55 | script: ./docker-build --verbose --config .build.yml --release github 56 | on: 57 | tags: true 58 | condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" 59 | 60 | after_success: 61 | - 'if [[ "$TRAVIS_SECURE_ENV_VARS" == "true" && "$TRAVIS_PULL_REQUEST" != "false" && ${DISTRO} =~ ^fedora.*$ ]]; then 62 | REPO_SLUG_ARRAY=(${TRAVIS_REPO_SLUG//\// }); 63 | REPO_NAME=${REPO_SLUG_ARRAY[1]}; 64 | URL="https://${REPO_NAME}.mate-desktop.dev"; 65 | COMMENT="Code analysis completed"; 66 | curl -H "Authorization: token $GITHUB_TOKEN" -X POST 67 | -d "{\"state\": \"success\", \"description\": \"$COMMENT\", \"context\":\"scan-build\", \"target_url\": \"$URL\"}" 68 | https://api.github.com/repos/${TRAVIS_REPO_SLUG}/statuses/${TRAVIS_PULL_REQUEST_SHA}; 69 | fi' 70 | 71 | env: 72 | # - DISTRO="archlinux:latest" 73 | - DISTRO="debian:testing" 74 | - DISTRO="fedora:latest" 75 | # - DISTRO="ubuntu:rolling" 76 | -------------------------------------------------------------------------------- /src/polkitmateauthenticator.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2009 Red Hat, Inc. 3 | * Copyright (C) 2012-2021 MATE Developers 4 | * 5 | * This library is free software; you can redistribute it and/or 6 | * modify it under the terms of the GNU Lesser General Public 7 | * License as published by the Free Software Foundation; either 8 | * version 2 of the License, or (at your option) any later version. 9 | * 10 | * This library is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 | * Lesser General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Lesser General 16 | * Public License along with this library; if not, write to the 17 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 | * Boston, MA 02110-1301, USA. 19 | * 20 | * Author: David Zeuthen 21 | */ 22 | 23 | #ifndef __POLKIT_MATE_AUTHENTICATOR_H 24 | #define __POLKIT_MATE_AUTHENTICATOR_H 25 | 26 | #include 27 | 28 | #ifdef __cplusplus 29 | extern "C" { 30 | #endif 31 | 32 | #define POLKIT_MATE_TYPE_AUTHENTICATOR (polkit_mate_authenticator_get_type()) 33 | #define POLKIT_MATE_AUTHENTICATOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), POLKIT_MATE_TYPE_AUTHENTICATOR, PolkitMateAuthenticator)) 34 | #define POLKIT_MATE_AUTHENTICATOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), POLKIT_MATE_TYPE_AUTHENTICATOR, PolkitMateAuthenticatorClass)) 35 | #define POLKIT_MATE_AUTHENTICATOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), POLKIT_MATE_TYPE_AUTHENTICATOR, PolkitMateAuthenticatorClass)) 36 | #define POLKIT_MATE_IS_AUTHENTICATOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), POLKIT_MATE_TYPE_AUTHENTICATOR)) 37 | #define POLKIT_MATE_IS_AUTHENTICATOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), POLKIT_MATE_TYPE_AUTHENTICATOR)) 38 | 39 | typedef struct _PolkitMateAuthenticator PolkitMateAuthenticator; 40 | typedef struct _PolkitMateAuthenticatorClass PolkitMateAuthenticatorClass; 41 | 42 | GType polkit_mate_authenticator_get_type (void) G_GNUC_CONST; 43 | PolkitMateAuthenticator *polkit_mate_authenticator_new (const gchar *action_id, 44 | const gchar *message, 45 | const gchar *icon_name, 46 | PolkitDetails *details, 47 | const gchar *cookie, 48 | GList *identities); 49 | void polkit_mate_authenticator_initiate (PolkitMateAuthenticator *authenticator); 50 | void polkit_mate_authenticator_cancel (PolkitMateAuthenticator *authenticator); 51 | const gchar *polkit_mate_authenticator_get_cookie (PolkitMateAuthenticator *authenticator); 52 | 53 | #ifdef __cplusplus 54 | } 55 | #endif 56 | 57 | #endif /* __POLKIT_MATE_AUTHENTICATOR_H */ 58 | -------------------------------------------------------------------------------- /mate-polkit.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: mate-polkit 1.27.1\n" 9 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 10 | "POT-Creation-Date: 2023-09-02 20:41+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 | #: src/main.c:164 20 | msgid "Drop all elevated privileges" 21 | msgstr "" 22 | 23 | #: src/main.c:188 24 | msgid "Click the icon to drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/polkitmateauthenticationdialog.c:276 28 | msgid "Select user..." 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:310 32 | #, c-format 33 | msgid "%s (%s)" 34 | msgstr "" 35 | 36 | #: src/polkitmateauthenticationdialog.c:663 37 | msgid "_Cancel" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:668 41 | msgid "_Authenticate" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:709 45 | msgid "" 46 | "An application is attempting to perform an action that requires privileges. " 47 | "Authentication as one of the users below is required to perform this action." 48 | msgstr "" 49 | 50 | #: src/polkitmateauthenticationdialog.c:717 51 | msgid "" 52 | "An application is attempting to perform an action that requires privileges. " 53 | "Authentication is required to perform this action." 54 | msgstr "" 55 | 56 | #: src/polkitmateauthenticationdialog.c:723 57 | msgid "" 58 | "An application is attempting to perform an action that requires privileges. " 59 | "Authentication as the super user is required to perform this action." 60 | msgstr "" 61 | 62 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 63 | msgid "_Password:" 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:777 67 | msgid "_Details" 68 | msgstr "" 69 | 70 | #: src/polkitmateauthenticationdialog.c:835 71 | msgid "Action:" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:838 75 | #, c-format 76 | msgid "Click to edit %s" 77 | msgstr "" 78 | 79 | #: src/polkitmateauthenticationdialog.c:855 80 | msgid "Vendor:" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:857 84 | #, c-format 85 | msgid "Click to open %s" 86 | msgstr "" 87 | 88 | #: src/polkitmateauthenticationdialog.c:1014 89 | msgid "Authenticate" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticator.c:297 93 | #, c-format 94 | msgid "_Password for %s:" 95 | msgstr "" 96 | 97 | #: src/polkitmateauthenticator.c:460 98 | msgid "Your authentication attempt was unsuccessful. Please try again." 99 | msgstr "" 100 | 101 | #: src/polkitmatelistener.c:164 102 | msgid "Authentication dialog was dismissed by the user" 103 | msgstr "" 104 | 105 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 106 | msgid "PolicyKit Authentication Agent" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 110 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/nan.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Tan, Kian-ting, 2023 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "取消 (_C)" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alexandre Raymond, 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Alexandre Raymond, 2018\n" 16 | "Language-Team: Franco-Provençal (Arpitan) (https://app.transifex.com/mate/teams/13566/frp/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: frp\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Contresinyo" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /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 mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # ciaran, 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: ciaran, 2019\n" 16 | "Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: cy\n" 21 | "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Diddymu" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Cyfrinair:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Tatar (https://app.transifex.com/mate/teams/13566/tt/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: tt\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Sersüz:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Maori (https://app.transifex.com/mate/teams/13566/mi/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mi\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Hiporete:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: wa\n" 21 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Sicret:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "Ş_ifrə:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Kashmiri (https://app.transifex.com/mate/teams/13566/ks/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ks\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "पासवर्ड: (_P)" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Limburgian (https://app.transifex.com/mate/teams/13566/li/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: li\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Wachwaord" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: xh\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "I-_Password:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Zulu (https://app.transifex.com/mate/teams/13566/zu/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: zu\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Igama lokungena:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Password:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Betal" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Belgekirin" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Şîfre:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Aoka" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Teny fanalahidy:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "بندول_" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr ":تېرنويې_" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /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 mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Wachtwurd" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/ku_IQ.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rasti K5 , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Rasti K5 , 2019\n" 16 | "Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ku_IQ\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_هەڵوەشاندنەوە" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_تێپەڕەوشە:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/nso.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Northern Sotho (https://app.transifex.com/mate/teams/13566/nso/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nso\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Lentšuphetišo:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /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 mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "دەلىللە(_A)" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "ئىم(_P):" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/ur_PK.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\n" 16 | "Language-Team: Urdu (Pakistan) (https://app.transifex.com/mate/teams/13566/ur_PK/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ur_PK\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_پاس ورڈ:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: dz\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "ཆ་མེད།(_C)" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "བདེན་བཤད་འབད།(_A)" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "ཆོག་ཡིག་:(_P)" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mn\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Буцах" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Баталгаажуулах" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Нууц үг:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2018\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Password:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ka\n" 21 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_გაუქმება" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_ავტორიზაცია" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_პაროლი:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Slimane Selyan AMIRI , 2020 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Slimane Selyan AMIRI , 2020\n" 16 | "Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: kab\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Sefsex" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Awal uffir:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ast\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Encaboxar" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Autenticar" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Contraseña:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: as\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "বাতিল (_C)" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "অনুমোদন (_A)" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "গুপ্তশব্দ: (_P)" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: bn\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%1$s (%2$s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "বাতিল (_C)" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "অনুমোদন (_A)" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "পাসওয়ার্ড: (_P)" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /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 mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Vazgeç" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Kimlik Doğrula" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Sır-söz:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # Forecast , 2020 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-polkit 1.27.1\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 14 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 15 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 16 | "Last-Translator: Forecast , 2020\n" 17 | "Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: eo\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: src/main.c:164 25 | msgid "Drop all elevated privileges" 26 | msgstr "" 27 | 28 | #: src/main.c:188 29 | msgid "Click the icon to drop all elevated privileges" 30 | msgstr "" 31 | 32 | #: src/polkitmateauthenticationdialog.c:276 33 | msgid "Select user..." 34 | msgstr "" 35 | 36 | #: src/polkitmateauthenticationdialog.c:310 37 | #, c-format 38 | msgid "%s (%s)" 39 | msgstr "%s (%s)" 40 | 41 | #: src/polkitmateauthenticationdialog.c:663 42 | msgid "_Cancel" 43 | msgstr "_Rezigni" 44 | 45 | #: src/polkitmateauthenticationdialog.c:668 46 | msgid "_Authenticate" 47 | msgstr "" 48 | 49 | #: src/polkitmateauthenticationdialog.c:709 50 | msgid "" 51 | "An application is attempting to perform an action that requires privileges. " 52 | "Authentication as one of the users below is required to perform this action." 53 | msgstr "" 54 | 55 | #: src/polkitmateauthenticationdialog.c:717 56 | msgid "" 57 | "An application is attempting to perform an action that requires privileges. " 58 | "Authentication is required to perform this action." 59 | msgstr "" 60 | 61 | #: src/polkitmateauthenticationdialog.c:723 62 | msgid "" 63 | "An application is attempting to perform an action that requires privileges. " 64 | "Authentication as the super user is required to perform this action." 65 | msgstr "" 66 | 67 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 68 | msgid "_Password:" 69 | msgstr "_Pasvorto:" 70 | 71 | #: src/polkitmateauthenticationdialog.c:777 72 | msgid "_Details" 73 | msgstr "" 74 | 75 | #: src/polkitmateauthenticationdialog.c:835 76 | msgid "Action:" 77 | msgstr "" 78 | 79 | #: src/polkitmateauthenticationdialog.c:838 80 | #, c-format 81 | msgid "Click to edit %s" 82 | msgstr "" 83 | 84 | #: src/polkitmateauthenticationdialog.c:855 85 | msgid "Vendor:" 86 | msgstr "" 87 | 88 | #: src/polkitmateauthenticationdialog.c:857 89 | #, c-format 90 | msgid "Click to open %s" 91 | msgstr "" 92 | 93 | #: src/polkitmateauthenticationdialog.c:1014 94 | msgid "Authenticate" 95 | msgstr "" 96 | 97 | #: src/polkitmateauthenticator.c:297 98 | #, c-format 99 | msgid "_Password for %s:" 100 | msgstr "" 101 | 102 | #: src/polkitmateauthenticator.c:460 103 | msgid "Your authentication attempt was unsuccessful. Please try again." 104 | msgstr "" 105 | 106 | #: src/polkitmatelistener.c:164 107 | msgid "Authentication dialog was dismissed by the user" 108 | msgstr "" 109 | 110 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 111 | msgid "PolicyKit Authentication Agent" 112 | msgstr "" 113 | 114 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 115 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 116 | msgstr "" 117 | -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "रद्द करू (_C)" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "सत्यापित कएल (_A)" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "कूटशब्द (_P):" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # nato323 , 2018 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-polkit 1.27.1\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 14 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 15 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 16 | "Last-Translator: nato323 , 2018\n" 17 | "Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: af\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: src/main.c:164 25 | msgid "Drop all elevated privileges" 26 | msgstr "" 27 | 28 | #: src/main.c:188 29 | msgid "Click the icon to drop all elevated privileges" 30 | msgstr "" 31 | 32 | #: src/polkitmateauthenticationdialog.c:276 33 | msgid "Select user..." 34 | msgstr "" 35 | 36 | #: src/polkitmateauthenticationdialog.c:310 37 | #, c-format 38 | msgid "%s (%s)" 39 | msgstr "%s (%s)" 40 | 41 | #: src/polkitmateauthenticationdialog.c:663 42 | msgid "_Cancel" 43 | msgstr "" 44 | 45 | #: src/polkitmateauthenticationdialog.c:668 46 | msgid "_Authenticate" 47 | msgstr "Teken _aan" 48 | 49 | #: src/polkitmateauthenticationdialog.c:709 50 | msgid "" 51 | "An application is attempting to perform an action that requires privileges. " 52 | "Authentication as one of the users below is required to perform this action." 53 | msgstr "" 54 | 55 | #: src/polkitmateauthenticationdialog.c:717 56 | msgid "" 57 | "An application is attempting to perform an action that requires privileges. " 58 | "Authentication is required to perform this action." 59 | msgstr "" 60 | 61 | #: src/polkitmateauthenticationdialog.c:723 62 | msgid "" 63 | "An application is attempting to perform an action that requires privileges. " 64 | "Authentication as the super user is required to perform this action." 65 | msgstr "" 66 | 67 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 68 | msgid "_Password:" 69 | msgstr "_Wagwoord:" 70 | 71 | #: src/polkitmateauthenticationdialog.c:777 72 | msgid "_Details" 73 | msgstr "" 74 | 75 | #: src/polkitmateauthenticationdialog.c:835 76 | msgid "Action:" 77 | msgstr "" 78 | 79 | #: src/polkitmateauthenticationdialog.c:838 80 | #, c-format 81 | msgid "Click to edit %s" 82 | msgstr "" 83 | 84 | #: src/polkitmateauthenticationdialog.c:855 85 | msgid "Vendor:" 86 | msgstr "" 87 | 88 | #: src/polkitmateauthenticationdialog.c:857 89 | #, c-format 90 | msgid "Click to open %s" 91 | msgstr "" 92 | 93 | #: src/polkitmateauthenticationdialog.c:1014 94 | msgid "Authenticate" 95 | msgstr "" 96 | 97 | #: src/polkitmateauthenticator.c:297 98 | #, c-format 99 | msgid "_Password for %s:" 100 | msgstr "" 101 | 102 | #: src/polkitmateauthenticator.c:460 103 | msgid "Your authentication attempt was unsuccessful. Please try again." 104 | msgstr "" 105 | 106 | #: src/polkitmatelistener.c:164 107 | msgid "Authentication dialog was dismissed by the user" 108 | msgstr "" 109 | 110 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 111 | msgid "PolicyKit Authentication Agent" 112 | msgstr "" 113 | 114 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 115 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 116 | msgstr "" 117 | -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Mahdi Pourghasem , 2018 8 | # sir_hawell , 2019 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-polkit 1.27.1\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 14 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 15 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 16 | "Last-Translator: sir_hawell , 2019\n" 17 | "Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: fa\n" 22 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 23 | 24 | #: src/main.c:164 25 | msgid "Drop all elevated privileges" 26 | msgstr "" 27 | 28 | #: src/main.c:188 29 | msgid "Click the icon to drop all elevated privileges" 30 | msgstr "" 31 | 32 | #: src/polkitmateauthenticationdialog.c:276 33 | msgid "Select user..." 34 | msgstr "" 35 | 36 | #: src/polkitmateauthenticationdialog.c:310 37 | #, c-format 38 | msgid "%s (%s)" 39 | msgstr "" 40 | 41 | #: src/polkitmateauthenticationdialog.c:663 42 | msgid "_Cancel" 43 | msgstr "ان_صراف" 44 | 45 | #: src/polkitmateauthenticationdialog.c:668 46 | msgid "_Authenticate" 47 | msgstr "" 48 | 49 | #: src/polkitmateauthenticationdialog.c:709 50 | msgid "" 51 | "An application is attempting to perform an action that requires privileges. " 52 | "Authentication as one of the users below is required to perform this action." 53 | msgstr "" 54 | 55 | #: src/polkitmateauthenticationdialog.c:717 56 | msgid "" 57 | "An application is attempting to perform an action that requires privileges. " 58 | "Authentication is required to perform this action." 59 | msgstr "" 60 | 61 | #: src/polkitmateauthenticationdialog.c:723 62 | msgid "" 63 | "An application is attempting to perform an action that requires privileges. " 64 | "Authentication as the super user is required to perform this action." 65 | msgstr "" 66 | 67 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 68 | msgid "_Password:" 69 | msgstr "کلمه عبور" 70 | 71 | #: src/polkitmateauthenticationdialog.c:777 72 | msgid "_Details" 73 | msgstr "" 74 | 75 | #: src/polkitmateauthenticationdialog.c:835 76 | msgid "Action:" 77 | msgstr "" 78 | 79 | #: src/polkitmateauthenticationdialog.c:838 80 | #, c-format 81 | msgid "Click to edit %s" 82 | msgstr "" 83 | 84 | #: src/polkitmateauthenticationdialog.c:855 85 | msgid "Vendor:" 86 | msgstr "" 87 | 88 | #: src/polkitmateauthenticationdialog.c:857 89 | #, c-format 90 | msgid "Click to open %s" 91 | msgstr "" 92 | 93 | #: src/polkitmateauthenticationdialog.c:1014 94 | msgid "Authenticate" 95 | msgstr "" 96 | 97 | #: src/polkitmateauthenticator.c:297 98 | #, c-format 99 | msgid "_Password for %s:" 100 | msgstr "" 101 | 102 | #: src/polkitmateauthenticator.c:460 103 | msgid "Your authentication attempt was unsuccessful. Please try again." 104 | msgstr "" 105 | 106 | #: src/polkitmatelistener.c:164 107 | msgid "Authentication dialog was dismissed by the user" 108 | msgstr "" 109 | 110 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 111 | msgid "PolicyKit Authentication Agent" 112 | msgstr "" 113 | 114 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 115 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 116 | msgstr "" 117 | -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: nds\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Avbreken" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Bewiesen, dat je du sülvst büst" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Passwoord:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /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 mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # Øystein Steffensen-Alværvik, 2019 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-polkit 1.27.1\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 14 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 15 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 16 | "Last-Translator: Øystein Steffensen-Alværvik, 2019\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 | #: src/main.c:164 25 | msgid "Drop all elevated privileges" 26 | msgstr "" 27 | 28 | #: src/main.c:188 29 | msgid "Click the icon to drop all elevated privileges" 30 | msgstr "" 31 | 32 | #: src/polkitmateauthenticationdialog.c:276 33 | msgid "Select user..." 34 | msgstr "" 35 | 36 | #: src/polkitmateauthenticationdialog.c:310 37 | #, c-format 38 | msgid "%s (%s)" 39 | msgstr "%s (%s)" 40 | 41 | #: src/polkitmateauthenticationdialog.c:663 42 | msgid "_Cancel" 43 | msgstr "_Avbryt" 44 | 45 | #: src/polkitmateauthenticationdialog.c:668 46 | msgid "_Authenticate" 47 | msgstr "_Autentiser" 48 | 49 | #: src/polkitmateauthenticationdialog.c:709 50 | msgid "" 51 | "An application is attempting to perform an action that requires privileges. " 52 | "Authentication as one of the users below is required to perform this action." 53 | msgstr "" 54 | 55 | #: src/polkitmateauthenticationdialog.c:717 56 | msgid "" 57 | "An application is attempting to perform an action that requires privileges. " 58 | "Authentication is required to perform this action." 59 | msgstr "" 60 | 61 | #: src/polkitmateauthenticationdialog.c:723 62 | msgid "" 63 | "An application is attempting to perform an action that requires privileges. " 64 | "Authentication as the super user is required to perform this action." 65 | msgstr "" 66 | 67 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 68 | msgid "_Password:" 69 | msgstr "_Passord:" 70 | 71 | #: src/polkitmateauthenticationdialog.c:777 72 | msgid "_Details" 73 | msgstr "" 74 | 75 | #: src/polkitmateauthenticationdialog.c:835 76 | msgid "Action:" 77 | msgstr "" 78 | 79 | #: src/polkitmateauthenticationdialog.c:838 80 | #, c-format 81 | msgid "Click to edit %s" 82 | msgstr "" 83 | 84 | #: src/polkitmateauthenticationdialog.c:855 85 | msgid "Vendor:" 86 | msgstr "" 87 | 88 | #: src/polkitmateauthenticationdialog.c:857 89 | #, c-format 90 | msgid "Click to open %s" 91 | msgstr "" 92 | 93 | #: src/polkitmateauthenticationdialog.c:1014 94 | msgid "Authenticate" 95 | msgstr "" 96 | 97 | #: src/polkitmateauthenticator.c:297 98 | #, c-format 99 | msgid "_Password for %s:" 100 | msgstr "" 101 | 102 | #: src/polkitmateauthenticator.c:460 103 | msgid "Your authentication attempt was unsuccessful. Please try again." 104 | msgstr "" 105 | 106 | #: src/polkitmatelistener.c:164 107 | msgid "Authentication dialog was dismissed by the user" 108 | msgstr "" 109 | 110 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 111 | msgid "PolicyKit Authentication Agent" 112 | msgstr "" 113 | 114 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 115 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 116 | msgstr "" 117 | -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: mk\n" 21 | "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Откажи" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Провери автентичност" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Лозинка:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: ga\n" 21 | "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Cealaigh" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "Fí_ordheimhnigh" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Focal faire:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Muzaffar Habibullayev , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Muzaffar Habibullayev , 2019\n" 16 | "Language-Team: Uzbek (https://app.transifex.com/mate/teams/13566/uz/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: uz\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "Foydalanuvchi tanlash..." 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Bekor qilish" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Tasdiqlash" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Maxfiy so'z:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "Tasdiqlash" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Darshana Weerasingha , 2018 8 | # Stefano Karapetsas , 2019 9 | # 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: mate-polkit 1.27.1\n" 13 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 14 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 15 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 16 | "Last-Translator: Stefano Karapetsas , 2019\n" 17 | "Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: si\n" 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 23 | 24 | #: src/main.c:164 25 | msgid "Drop all elevated privileges" 26 | msgstr "" 27 | 28 | #: src/main.c:188 29 | msgid "Click the icon to drop all elevated privileges" 30 | msgstr "" 31 | 32 | #: src/polkitmateauthenticationdialog.c:276 33 | msgid "Select user..." 34 | msgstr "" 35 | 36 | #: src/polkitmateauthenticationdialog.c:310 37 | #, c-format 38 | msgid "%s (%s)" 39 | msgstr "%s (%s)" 40 | 41 | #: src/polkitmateauthenticationdialog.c:663 42 | msgid "_Cancel" 43 | msgstr "අවලංගු කරන්න (_C)" 44 | 45 | #: src/polkitmateauthenticationdialog.c:668 46 | msgid "_Authenticate" 47 | msgstr "" 48 | 49 | #: src/polkitmateauthenticationdialog.c:709 50 | msgid "" 51 | "An application is attempting to perform an action that requires privileges. " 52 | "Authentication as one of the users below is required to perform this action." 53 | msgstr "" 54 | 55 | #: src/polkitmateauthenticationdialog.c:717 56 | msgid "" 57 | "An application is attempting to perform an action that requires privileges. " 58 | "Authentication is required to perform this action." 59 | msgstr "" 60 | 61 | #: src/polkitmateauthenticationdialog.c:723 62 | msgid "" 63 | "An application is attempting to perform an action that requires privileges. " 64 | "Authentication as the super user is required to perform this action." 65 | msgstr "" 66 | 67 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 68 | msgid "_Password:" 69 | msgstr "_රහස්‍ය පදය:" 70 | 71 | #: src/polkitmateauthenticationdialog.c:777 72 | msgid "_Details" 73 | msgstr "" 74 | 75 | #: src/polkitmateauthenticationdialog.c:835 76 | msgid "Action:" 77 | msgstr "" 78 | 79 | #: src/polkitmateauthenticationdialog.c:838 80 | #, c-format 81 | msgid "Click to edit %s" 82 | msgstr "" 83 | 84 | #: src/polkitmateauthenticationdialog.c:855 85 | msgid "Vendor:" 86 | msgstr "" 87 | 88 | #: src/polkitmateauthenticationdialog.c:857 89 | #, c-format 90 | msgid "Click to open %s" 91 | msgstr "" 92 | 93 | #: src/polkitmateauthenticationdialog.c:1014 94 | msgid "Authenticate" 95 | msgstr "" 96 | 97 | #: src/polkitmateauthenticator.c:297 98 | #, c-format 99 | msgid "_Password for %s:" 100 | msgstr "" 101 | 102 | #: src/polkitmateauthenticator.c:460 103 | msgid "Your authentication attempt was unsuccessful. Please try again." 104 | msgstr "" 105 | 106 | #: src/polkitmatelistener.c:164 107 | msgid "Authentication dialog was dismissed by the user" 108 | msgstr "" 109 | 110 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 111 | msgid "PolicyKit Authentication Agent" 112 | msgstr "" 113 | 114 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 115 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 116 | msgstr "" 117 | -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- 1 | # Makefile variables for PO directory in any package using GNU gettext. 2 | 3 | # Usually the message domain is the same as the package name. 4 | DOMAIN = $(PACKAGE) 5 | 6 | # These two variables depend on the location of this directory. 7 | subdir = po 8 | top_builddir = .. 9 | 10 | # These options get passed to xgettext. 11 | XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_ --keyword=C_:1c,2 --keyword=NC_:1c,2 --keyword=g_dngettext:2,3 --add-comments=Translators: 12 | 13 | # This is the copyright holder that gets inserted into the header of the 14 | # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding 15 | # package. (Note that the msgstr strings, extracted from the package's 16 | # sources, belong to the copyright holder of the package.) Translators are 17 | # expected to transfer the copyright for their translations to this person 18 | # or entity, or to disclaim their copyright. The empty string stands for 19 | # the public domain; in this case the translators are expected to disclaim 20 | # their copyright. 21 | COPYRIGHT_HOLDER = MATE Desktop Environment team 22 | 23 | # This tells whether or not to prepend "GNU " prefix to the package 24 | # name that gets inserted into the header of the $(DOMAIN).pot file. 25 | # Possible values are "yes", "no", or empty. If it is empty, try to 26 | # detect it automatically by scanning the files in $(top_srcdir) for 27 | # "GNU packagename" string. 28 | PACKAGE_GNU = 29 | 30 | # This is the email address or URL to which the translators shall report 31 | # bugs in the untranslated strings: 32 | # - Strings which are not entire sentences, see the maintainer guidelines 33 | # in the GNU gettext documentation, section 'Preparing Strings'. 34 | # - Strings which use unclear terms or require additional context to be 35 | # understood. 36 | # - Strings which make invalid assumptions about notation of date, time or 37 | # money. 38 | # - Pluralisation problems. 39 | # - Incorrect English spelling. 40 | # - Incorrect formatting. 41 | # It can be your email address, or a mailing list address where translators 42 | # can write to without being subscribed, or the URL of a web page through 43 | # which the translators can contact you. 44 | MSGID_BUGS_ADDRESS = 45 | 46 | # This is the list of locale categories, beyond LC_MESSAGES, for which the 47 | # message catalogs shall be used. It is usually empty. 48 | EXTRA_LOCALE_CATEGORIES = 49 | 50 | # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' 51 | # context. Possible values are "yes" and "no". Set this to yes if the 52 | # package uses functions taking also a message context, like pgettext(), or 53 | # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. 54 | USE_MSGCTXT = no 55 | 56 | # These options get passed to msgmerge. 57 | # Useful options are in particular: 58 | # --previous to keep previous msgids of translated messages, 59 | # --quiet to reduce the verbosity. 60 | MSGMERGE_OPTIONS = 61 | 62 | # These options get passed to msginit. 63 | # If you want to disable line wrapping when writing PO files, add 64 | # --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and 65 | # MSGINIT_OPTIONS. 66 | MSGINIT_OPTIONS = 67 | 68 | # This tells whether or not to regenerate a PO file when $(DOMAIN).pot 69 | # has changed. Possible values are "yes" and "no". Set this to no if 70 | # the POT file is checked in the repository and the version control 71 | # program ignores timestamps. 72 | PO_DEPENDS_ON_POT = yes 73 | 74 | # This tells whether or not to forcibly update $(DOMAIN).pot and 75 | # regenerate PO files on "make dist". Possible values are "yes" and 76 | # "no". Set this to no if the POT file and PO files are maintained 77 | # externally. 78 | DIST_DEPENDS_ON_UPDATE_PO = yes 79 | -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: sr@latin\n" 21 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Otkaži" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Potvrdi identitet" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Lozinka:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /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 mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2019\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "Колдонуучуну тандаңыз..." 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Жокко чыгаруу" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_Автордоштурулуу" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Сырсөзү:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "Аракет:" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "Иштетүүчүсү:" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "Аутентификация" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "%s колдонуучунун сырсөзү:" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /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 mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Sven Keeter , 2018 8 | # chautari , 2018 9 | # Stefano Karapetsas , 2019 10 | # 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: mate-polkit 1.27.1\n" 14 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 15 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 16 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 17 | "Last-Translator: Stefano Karapetsas , 2019\n" 18 | "Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: ne\n" 23 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 24 | 25 | #: src/main.c:164 26 | msgid "Drop all elevated privileges" 27 | msgstr "" 28 | 29 | #: src/main.c:188 30 | msgid "Click the icon to drop all elevated privileges" 31 | msgstr "" 32 | 33 | #: src/polkitmateauthenticationdialog.c:276 34 | msgid "Select user..." 35 | msgstr "प्रयोगकर्ता छान्नुहोस्..." 36 | 37 | #: src/polkitmateauthenticationdialog.c:310 38 | #, c-format 39 | msgid "%s (%s)" 40 | msgstr "%s (%s)" 41 | 42 | #: src/polkitmateauthenticationdialog.c:663 43 | msgid "_Cancel" 44 | msgstr "रद्द गर्नुहोस्" 45 | 46 | #: src/polkitmateauthenticationdialog.c:668 47 | msgid "_Authenticate" 48 | msgstr "प्रमाणीकरण गर्नुहोस्" 49 | 50 | #: src/polkitmateauthenticationdialog.c:709 51 | msgid "" 52 | "An application is attempting to perform an action that requires privileges. " 53 | "Authentication as one of the users below is required to perform this action." 54 | msgstr "" 55 | 56 | #: src/polkitmateauthenticationdialog.c:717 57 | msgid "" 58 | "An application is attempting to perform an action that requires privileges. " 59 | "Authentication is required to perform this action." 60 | msgstr "" 61 | 62 | #: src/polkitmateauthenticationdialog.c:723 63 | msgid "" 64 | "An application is attempting to perform an action that requires privileges. " 65 | "Authentication as the super user is required to perform this action." 66 | msgstr "" 67 | 68 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 69 | msgid "_Password:" 70 | msgstr "पासवर्ड:" 71 | 72 | #: src/polkitmateauthenticationdialog.c:777 73 | msgid "_Details" 74 | msgstr "" 75 | 76 | #: src/polkitmateauthenticationdialog.c:835 77 | msgid "Action:" 78 | msgstr "" 79 | 80 | #: src/polkitmateauthenticationdialog.c:838 81 | #, c-format 82 | msgid "Click to edit %s" 83 | msgstr "%s सम्पादन गर्न क्लिक गर्नुहोस्" 84 | 85 | #: src/polkitmateauthenticationdialog.c:855 86 | msgid "Vendor:" 87 | msgstr "" 88 | 89 | #: src/polkitmateauthenticationdialog.c:857 90 | #, c-format 91 | msgid "Click to open %s" 92 | msgstr "%s खोल्न क्लिक गर्नुहोस्" 93 | 94 | #: src/polkitmateauthenticationdialog.c:1014 95 | msgid "Authenticate" 96 | msgstr "" 97 | 98 | #: src/polkitmateauthenticator.c:297 99 | #, c-format 100 | msgid "_Password for %s:" 101 | msgstr "" 102 | 103 | #: src/polkitmateauthenticator.c:460 104 | msgid "Your authentication attempt was unsuccessful. Please try again." 105 | msgstr "" 106 | 107 | #: src/polkitmatelistener.c:164 108 | msgid "Authentication dialog was dismissed by the user" 109 | msgstr "" 110 | 111 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 112 | msgid "PolicyKit Authentication Agent" 113 | msgstr "" 114 | 115 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 116 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 117 | msgstr "" 118 | -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Sky Lion , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Sky Lion , 2018\n" 16 | "Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: bs\n" 21 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "Odaberite korisnika..." 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Šifra:" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "_Detalji" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "Radnja:" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "Kliknite da uredite %s" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "Prodavač:" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "Kliknite da otvorite %s" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "_Šifra za %s:" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/cmn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # 趙惟倫 , 2018 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: 趙惟倫 , 2018\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "按下這個圖示放棄所有已提升的權限" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "選擇使用者…" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "驗證(_A)" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "有應用程式試圖進行需要權限的動作。必須授權為下列使用者之一才能進行這個動作。" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "有應用程式試圖進行需要權限的動作。必須獲得授權才能進行這個動作。" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "有應用程式試圖進行需要權限的動作。必須授權為超級使用者才能進行這個動作。" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "密碼(_P):" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "詳細資料(_D)" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "動作:" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "按下這裡編輯 %s" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "廠商:" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "按一下來開啟 %s" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "驗證" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "%s 的密碼(_P):" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "PolicyKit 驗證代理程式" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: zh_HK\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "按下這個圖示放棄所有已提升的權限" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "選擇使用者..." 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "取消(_C)" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "驗證(_A)" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "有應用程式試圖進行需要權限的動作。必須授權為下列使用者之一才能進行這個動作。" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "有應用程式試圖進行需要權限的動作。必須獲得授權才能進行這個動作。" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "有應用程式試圖進行需要權限的動作。必須授權為超級使用者才能進行這個動作。" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "密碼(_P):" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "詳細資料(_D)" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "動作:" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "按下這裏編輯 %s" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "廠商:" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "按一下來開啟 %s" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "驗證" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "%s 的密碼 (_P):" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "PolicyKit 驗證代理程式" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: Stefano Karapetsas , 2019\n" 16 | "Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: br\n" 21 | "Plural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n" 22 | 23 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "" 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_Nullañ" 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "Diles_a" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | 54 | #: src/polkitmateauthenticationdialog.c:717 55 | msgid "" 56 | "An application is attempting to perform an action that requires privileges. " 57 | "Authentication is required to perform this action." 58 | msgstr "" 59 | 60 | #: src/polkitmateauthenticationdialog.c:723 61 | msgid "" 62 | "An application is attempting to perform an action that requires privileges. " 63 | "Authentication as the super user is required to perform this action." 64 | msgstr "" 65 | 66 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 67 | msgid "_Password:" 68 | msgstr "_Ger-tremen :" 69 | 70 | #: src/polkitmateauthenticationdialog.c:777 71 | msgid "_Details" 72 | msgstr "" 73 | 74 | #: src/polkitmateauthenticationdialog.c:835 75 | msgid "Action:" 76 | msgstr "" 77 | 78 | #: src/polkitmateauthenticationdialog.c:838 79 | #, c-format 80 | msgid "Click to edit %s" 81 | msgstr "" 82 | 83 | #: src/polkitmateauthenticationdialog.c:855 84 | msgid "Vendor:" 85 | msgstr "" 86 | 87 | #: src/polkitmateauthenticationdialog.c:857 88 | #, c-format 89 | msgid "Click to open %s" 90 | msgstr "" 91 | 92 | #: src/polkitmateauthenticationdialog.c:1014 93 | msgid "Authenticate" 94 | msgstr "" 95 | 96 | #: src/polkitmateauthenticator.c:297 97 | #, c-format 98 | msgid "_Password for %s:" 99 | msgstr "" 100 | 101 | #: src/polkitmateauthenticator.c:460 102 | msgid "Your authentication attempt was unsuccessful. Please try again." 103 | msgstr "" 104 | 105 | #: src/polkitmatelistener.c:164 106 | msgid "Authentication dialog was dismissed by the user" 107 | msgstr "" 108 | 109 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 110 | msgid "PolicyKit Authentication Agent" 111 | msgstr "" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 114 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 115 | msgstr "" 116 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | ### mate-polkit 1.28.1 2 | 3 | * Distribute Meson build system 4 | 5 | ### mate-polkit 1.28.0 6 | 7 | * Translations update 8 | * Fix meson build libexecdir to the correct path 9 | * drop categories from desktop file 10 | 11 | ### mate-polkit 1.27.1 12 | 13 | * Translations update 14 | * Add meson compilation support 15 | * Prefer building against Ayatana AppIndicator, but also support legacy Ubuntu Appindicator 16 | 17 | ### mate-polkit 1.27.0 18 | 19 | * Translations update 20 | * configure.ac: The macro 'AC_HELP_STRING' is obsolete 21 | * tx: update resource 22 | * tx: migrate config file 23 | * ci: drop -Wunused-parameter compiler cflag from debian build 24 | * build: show configure summary using a pretty format 25 | * Use a blank line at most 26 | * Fix segfault from gdk_x11_get_server_time if not on X11 27 | 28 | ### mate-polkit 1.26.0 29 | 30 | * Translations update 31 | * update copyright to 2021 32 | 33 | ### mate-polkit 1.25.0 34 | 35 | * Translations update 36 | * Remove USE_MATE2_MACROS from autogen.sh (legacy) 37 | * add git.mk to generate .gitignore 38 | * build: silent build warnings for distcheck 39 | 40 | ### mate-polkit 1.24.0 41 | 42 | * build: show warning flags on configure summary 43 | * build: warning flags are already defined 44 | * autoconf: AC_PROG_CC was called before AX_CHECK_ENABLE_DEBUG 45 | * Translations update 46 | * migrate from intltool to gettext 47 | 48 | ### mate-polkit 1.23.0 49 | 50 | * Translations update 51 | * Migrate from GSimpleAsyncResult to GTask 52 | * [ci] Add cppcheck html report 53 | * drop deprecated gtk_dialog_get_action_area 54 | * Avoid deprecated g_type_class_add_private 55 | * polkitmateauthenticationdialog: avoid GtkStock 56 | * Change url project's website 57 | * [ci] Enable Clang Static Analyzer 58 | 59 | ### mate-polkit 1.22.0 60 | 61 | * Translations update 62 | * Initialize Travis CI support 63 | 64 | ### mate-polkit 1.21.0 65 | 66 | * Translations update 67 | * disable deprecation warnings for distcheck 68 | 69 | ### mate-polkit 1.20.0 70 | 71 | * Translations update 72 | * require GTK+ 3.22 and GLib 2.50 73 | * drop polkitgtkmate library and its docs 74 | 75 | ### mate-polkit 1.19.0 76 | 77 | * Translations update 78 | * Fix reshow/hide icon with statusnotifier 79 | * Restore Polish translation credits from GNOME 80 | * status-icon: don't use stock icons 81 | * polkitmateauthenticationdialog: avoid deprecated GtkAlignment 82 | * polkitmateauthenticationdialog: replace a GTK_STOCK deprecation 83 | 84 | ### mate-polkit 1.18.0 85 | 86 | * NEWS: use consistent, project wide, markdown-like formatting 87 | to make generating release announcements easier 88 | * Fix some GTK+ deprecations 89 | * Translations update 90 | 91 | ### mate-polkit 1.16.0 92 | 93 | * Move to GTK+3 (require GTK+ >= 3.14), drop GTK+2 code and 94 | --with-gtk build option 95 | * Translations update 96 | 97 | ### mate-polkit 1.14.0 98 | 99 | * GTK+3: fix several deprecations 100 | * Translations update 101 | * Add Changelog generation 102 | 103 | ### mate-polkit 1.12.0 104 | 105 | * GTK+3: add support for application indicators as well 106 | * Some fixes and cleanups 107 | 108 | ### mate-polkit 1.10.2 109 | 110 | * Return error when authentication dialog is dismissed 111 | * Optionally use accountsservice to retrieve face 112 | * Add support for autorestart 113 | * Select the current user to authenticate by default 114 | * Add support for application indicators 115 | * Gtk3: Auth dialog: make the label wrap at 50 chars 116 | 117 | ### mate-polkit 1.10.1 118 | 119 | * Fix losing focus when displaying password prompt dialog. 120 | * Drop some deprecated GTK code and obsolete build marco. 121 | * Update translations. 122 | 123 | ### mate-polkit 1.10.0 124 | 125 | * Translations updates 126 | 127 | ### mate-polkit 1.8.0 128 | 129 | * Add GTK3 support 130 | -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # 趙惟倫 , 2018 9 | # 黃柏諺 , 2019 10 | # 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: mate-polkit 1.27.1\n" 14 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 15 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 16 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 17 | "Last-Translator: 黃柏諺 , 2019\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 | #: src/main.c:164 26 | msgid "Drop all elevated privileges" 27 | msgstr "放棄所有已提升的權限" 28 | 29 | #: src/main.c:188 30 | msgid "Click the icon to drop all elevated privileges" 31 | msgstr "按下這個圖示放棄所有已提升的權限" 32 | 33 | #: src/polkitmateauthenticationdialog.c:276 34 | msgid "Select user..." 35 | msgstr "選擇使用者…" 36 | 37 | #: src/polkitmateauthenticationdialog.c:310 38 | #, c-format 39 | msgid "%s (%s)" 40 | msgstr "%s (%s)" 41 | 42 | #: src/polkitmateauthenticationdialog.c:663 43 | msgid "_Cancel" 44 | msgstr "取消(_C)" 45 | 46 | #: src/polkitmateauthenticationdialog.c:668 47 | msgid "_Authenticate" 48 | msgstr "驗證(_A)" 49 | 50 | #: src/polkitmateauthenticationdialog.c:709 51 | msgid "" 52 | "An application is attempting to perform an action that requires privileges. " 53 | "Authentication as one of the users below is required to perform this action." 54 | msgstr "有應用程式試圖進行需要權限的動作。必須授權為下列使用者之一才能進行這個動作。" 55 | 56 | #: src/polkitmateauthenticationdialog.c:717 57 | msgid "" 58 | "An application is attempting to perform an action that requires privileges. " 59 | "Authentication is required to perform this action." 60 | msgstr "有應用程式試圖進行需要權限的動作。必須獲得授權才能進行這個動作。" 61 | 62 | #: src/polkitmateauthenticationdialog.c:723 63 | msgid "" 64 | "An application is attempting to perform an action that requires privileges. " 65 | "Authentication as the super user is required to perform this action." 66 | msgstr "有應用程式試圖進行需要權限的動作。必須授權為超級使用者才能進行這個動作。" 67 | 68 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 69 | msgid "_Password:" 70 | msgstr "密碼(_P):" 71 | 72 | #: src/polkitmateauthenticationdialog.c:777 73 | msgid "_Details" 74 | msgstr "詳細資料(_D)" 75 | 76 | #: src/polkitmateauthenticationdialog.c:835 77 | msgid "Action:" 78 | msgstr "動作:" 79 | 80 | #: src/polkitmateauthenticationdialog.c:838 81 | #, c-format 82 | msgid "Click to edit %s" 83 | msgstr "按下這裡編輯 %s" 84 | 85 | #: src/polkitmateauthenticationdialog.c:855 86 | msgid "Vendor:" 87 | msgstr "廠商:" 88 | 89 | #: src/polkitmateauthenticationdialog.c:857 90 | #, c-format 91 | msgid "Click to open %s" 92 | msgstr "按一下來開啟 %s" 93 | 94 | #: src/polkitmateauthenticationdialog.c:1014 95 | msgid "Authenticate" 96 | msgstr "驗證" 97 | 98 | #: src/polkitmateauthenticator.c:297 99 | #, c-format 100 | msgid "_Password for %s:" 101 | msgstr "%s 的密碼(_P):" 102 | 103 | #: src/polkitmateauthenticator.c:460 104 | msgid "Your authentication attempt was unsuccessful. Please try again." 105 | msgstr "您的驗證嘗試未成功。請再試一次。" 106 | 107 | #: src/polkitmatelistener.c:164 108 | msgid "Authentication dialog was dismissed by the user" 109 | msgstr "驗證對話框已被使用者退回" 110 | 111 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 112 | msgid "PolicyKit Authentication Agent" 113 | msgstr "PolicyKit 驗證代理程式" 114 | 115 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 116 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 117 | msgstr "MATE 桌面環境的 PolicyKit 驗證代理程式" 118 | -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # e0c668032ced196bd60f2b6a070d982d_8f72ae0, 2018 8 | # Stefano Karapetsas , 2018 9 | # Wolfgang Ulbrich , 2019 10 | # Wenbin Lv , 2022 11 | # 12 | msgid "" 13 | msgstr "" 14 | "Project-Id-Version: mate-polkit 1.27.1\n" 15 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 16 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 17 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 18 | "Last-Translator: Wenbin Lv , 2022\n" 19 | "Language-Team: Chinese (China) (https://app.transifex.com/mate/teams/13566/zh_CN/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: zh_CN\n" 24 | "Plural-Forms: nplurals=1; plural=0;\n" 25 | 26 | #: src/main.c:164 27 | msgid "Drop all elevated privileges" 28 | msgstr "放弃所有提升的权限" 29 | 30 | #: src/main.c:188 31 | msgid "Click the icon to drop all elevated privileges" 32 | msgstr "点击图标来放弃所有提升的权限" 33 | 34 | #: src/polkitmateauthenticationdialog.c:276 35 | msgid "Select user..." 36 | msgstr "选择用户..." 37 | 38 | #: src/polkitmateauthenticationdialog.c:310 39 | #, c-format 40 | msgid "%s (%s)" 41 | msgstr "%s(%s)" 42 | 43 | #: src/polkitmateauthenticationdialog.c:663 44 | msgid "_Cancel" 45 | msgstr "取消" 46 | 47 | #: src/polkitmateauthenticationdialog.c:668 48 | msgid "_Authenticate" 49 | msgstr "授权(_A)" 50 | 51 | #: src/polkitmateauthenticationdialog.c:709 52 | msgid "" 53 | "An application is attempting to perform an action that requires privileges. " 54 | "Authentication as one of the users below is required to perform this action." 55 | msgstr "一个程序正试图执行一个需要特权的动作。要求授权为下列用户之一以执行该动作。" 56 | 57 | #: src/polkitmateauthenticationdialog.c:717 58 | msgid "" 59 | "An application is attempting to perform an action that requires privileges. " 60 | "Authentication is required to perform this action." 61 | msgstr "一个程序正试图执行一个需要特权的动作。要求授权以执行该动作。" 62 | 63 | #: src/polkitmateauthenticationdialog.c:723 64 | msgid "" 65 | "An application is attempting to perform an action that requires privileges. " 66 | "Authentication as the super user is required to perform this action." 67 | msgstr "一个程序正试图执行一个需要特权的动作。要求授权为超级用户以执行该动作。" 68 | 69 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 70 | msgid "_Password:" 71 | msgstr "密码(_P):" 72 | 73 | #: src/polkitmateauthenticationdialog.c:777 74 | msgid "_Details" 75 | msgstr "详情(_D)" 76 | 77 | #: src/polkitmateauthenticationdialog.c:835 78 | msgid "Action:" 79 | msgstr "动作:" 80 | 81 | #: src/polkitmateauthenticationdialog.c:838 82 | #, c-format 83 | msgid "Click to edit %s" 84 | msgstr "单击以编辑 %s" 85 | 86 | #: src/polkitmateauthenticationdialog.c:855 87 | msgid "Vendor:" 88 | msgstr "厂商:" 89 | 90 | #: src/polkitmateauthenticationdialog.c:857 91 | #, c-format 92 | msgid "Click to open %s" 93 | msgstr "单击以打开 %s" 94 | 95 | #: src/polkitmateauthenticationdialog.c:1014 96 | msgid "Authenticate" 97 | msgstr "授权" 98 | 99 | #: src/polkitmateauthenticator.c:297 100 | #, c-format 101 | msgid "_Password for %s:" 102 | msgstr "%s 的密码(_P):" 103 | 104 | #: src/polkitmateauthenticator.c:460 105 | msgid "Your authentication attempt was unsuccessful. Please try again." 106 | msgstr "授权失败。请再试一次。" 107 | 108 | #: src/polkitmatelistener.c:164 109 | msgid "Authentication dialog was dismissed by the user" 110 | msgstr "授权对话框被用户关闭" 111 | 112 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 113 | msgid "PolicyKit Authentication Agent" 114 | msgstr "PolicyKit 认证代理" 115 | 116 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 117 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 118 | msgstr "MATE 桌面的 PolicyKit 认证代理" 119 | -------------------------------------------------------------------------------- /.build.yml: -------------------------------------------------------------------------------- 1 | ########################################################## 2 | # THE FOLLOWING LINES IS USED BY docker-build 3 | ########################################################## 4 | requires: 5 | archlinux: 6 | # Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-polkit 7 | - autoconf-archive 8 | - clang 9 | - gcc 10 | - git 11 | - gtk3 12 | - libappindicator-gtk3 13 | - make 14 | - mate-common 15 | - polkit 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/mate-polkit 21 | - autoconf-archive 22 | - autopoint 23 | - clang 24 | - clang-tools 25 | - cppcheck 26 | - gcc 27 | - git 28 | - libappindicator3-dev 29 | - libgtk-3-dev 30 | - libpolkit-agent-1-dev 31 | - libpolkit-gobject-1-dev 32 | - make 33 | - mate-common 34 | 35 | fedora: 36 | # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-polkit.git 37 | - autoconf-archive 38 | - clang 39 | - clang-analyzer 40 | - cppcheck-htmlreport 41 | - gcc 42 | - git 43 | - gtk3-devel 44 | - libappindicator-gtk3-devel 45 | - make 46 | - mate-common 47 | - polkit-devel 48 | - redhat-rpm-config 49 | 50 | ubuntu: 51 | - autoconf-archive 52 | - autopoint 53 | - clang 54 | - clang-tools 55 | - gcc 56 | - git 57 | - libappindicator3-dev 58 | - libgtk-3-dev 59 | - libpolkit-agent-1-dev 60 | - libpolkit-gobject-1-dev 61 | - make 62 | - mate-common 63 | 64 | variables: 65 | - 'CHECKERS=" 66 | -enable-checker deadcode.DeadStores 67 | -enable-checker alpha.deadcode.UnreachableCode 68 | -enable-checker alpha.core.CastSize 69 | -enable-checker alpha.core.CastToStruct 70 | -enable-checker alpha.core.IdenticalExpr 71 | -enable-checker alpha.core.SizeofPtr 72 | -enable-checker alpha.security.ArrayBoundV2 73 | -enable-checker alpha.security.MallocOverflow 74 | -enable-checker alpha.security.ReturnPtrRange 75 | -enable-checker alpha.unix.SimpleStream 76 | -enable-checker alpha.unix.cstring.BufferOverlap 77 | -enable-checker alpha.unix.cstring.NotNullTerminated 78 | -enable-checker alpha.unix.cstring.OutOfBounds 79 | -enable-checker alpha.core.FixedAddr 80 | -enable-checker security.insecureAPI.strcpy"' 81 | 82 | before_scripts: 83 | 84 | build_scripts: 85 | - if [ ${DISTRO_NAME} == "debian" ];then 86 | - export CFLAGS+=" -Wsign-compare" 87 | - cppcheck --enable=warning,style,performance,portability,information,missingInclude . 88 | - fi 89 | 90 | - NOCONFIGURE=1 ./autogen.sh 91 | - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum 92 | - if [ $CPU_COUNT -gt 1 ]; then 93 | - if [ ${DISTRO_NAME} == "debian" ];then 94 | - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make -j $CPU_COUNT 95 | - make clean 96 | - fi 97 | - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT 98 | - else 99 | - if [ ${DISTRO_NAME} == "debian" ];then 100 | - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make 101 | - make clean 102 | - fi 103 | - scan-build $CHECKERS --keep-cc -o html-report make 104 | - fi 105 | 106 | after_scripts: 107 | - if [ ${DISTRO_NAME} == "fedora" ];then 108 | - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude . 109 | - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport 110 | - ./gen-index -l 20 111 | - fi 112 | - make distcheck 113 | 114 | releases: 115 | draft: false 116 | prerelease: false 117 | checksum: true 118 | file_glob: true 119 | files: mate-polkit-*.tar.xz 120 | github_release: 121 | tags: true 122 | overwrite: true 123 | base_version: 1.20.0 124 | notify_servers: 125 | - https://release.mate-desktop.org/release 126 | -------------------------------------------------------------------------------- /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 mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # samson , 2019 8 | # 9 | msgid "" 10 | msgstr "" 11 | "Project-Id-Version: mate-polkit 1.27.1\n" 12 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 13 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 14 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 15 | "Last-Translator: samson , 2019\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 | #: src/main.c:164 24 | msgid "Drop all elevated privileges" 25 | msgstr "የ ተሰጠውን ቅድሚያ መጣያ" 26 | 27 | #: src/main.c:188 28 | msgid "Click the icon to drop all elevated privileges" 29 | msgstr "ይጫኑ በ ምልክት ላይ ድሚያ ለ መጣል" 30 | 31 | #: src/polkitmateauthenticationdialog.c:276 32 | msgid "Select user..." 33 | msgstr "ተጠቃሚ መምረጫ..." 34 | 35 | #: src/polkitmateauthenticationdialog.c:310 36 | #, c-format 37 | msgid "%s (%s)" 38 | msgstr "%s (%s)" 39 | 40 | #: src/polkitmateauthenticationdialog.c:663 41 | msgid "_Cancel" 42 | msgstr "_መሰረዣ " 43 | 44 | #: src/polkitmateauthenticationdialog.c:668 45 | msgid "_Authenticate" 46 | msgstr "_ማረጋገጫ" 47 | 48 | #: src/polkitmateauthenticationdialog.c:709 49 | msgid "" 50 | "An application is attempting to perform an action that requires privileges. " 51 | "Authentication as one of the users below is required to perform this action." 52 | msgstr "" 53 | "መተግበሪያ ተግባር ለ መፈጸም እየሞከረ ነው ቅድሚያ የሚፈልግ: ማረጋገጫ ያስፈልጋል በ ተጠቃሚዎች በ አንዱ ይህን ተግባር" 54 | " ለ መፈጸም" 55 | 56 | #: src/polkitmateauthenticationdialog.c:717 57 | msgid "" 58 | "An application is attempting to perform an action that requires privileges. " 59 | "Authentication is required to perform this action." 60 | msgstr "መተግበሪያ ተግባር ለ መፈጸም እየሞከረ ነው ቅድሚያ የሚፈልግ: ማረጋገጫ ያስፈልጋል ይህን ተግባር ለ መፈጸም " 61 | 62 | #: src/polkitmateauthenticationdialog.c:723 63 | msgid "" 64 | "An application is attempting to perform an action that requires privileges. " 65 | "Authentication as the super user is required to perform this action." 66 | msgstr "" 67 | "መተግበሪያ ተግባር ለ መፈጸም እየሞከረ ነው ቅድሚያ የሚፈልግ: ማረጋገጫ ያስፈልጋል በ ሱፐር ተጠቃሚ ይህን ተግባር ለ " 68 | "መፈጸም" 69 | 70 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 71 | msgid "_Password:" 72 | msgstr "የ _መግቢያ ቃል:" 73 | 74 | #: src/polkitmateauthenticationdialog.c:777 75 | msgid "_Details" 76 | msgstr "_ዝርዝሮች" 77 | 78 | #: src/polkitmateauthenticationdialog.c:835 79 | msgid "Action:" 80 | msgstr "ተግባር:" 81 | 82 | #: src/polkitmateauthenticationdialog.c:838 83 | #, c-format 84 | msgid "Click to edit %s" 85 | msgstr "ለማረም ይጫኑ %s" 86 | 87 | #: src/polkitmateauthenticationdialog.c:855 88 | msgid "Vendor:" 89 | msgstr "ሻጭ:" 90 | 91 | #: src/polkitmateauthenticationdialog.c:857 92 | #, c-format 93 | msgid "Click to open %s" 94 | msgstr "ለመክፈት ይጫኑ %s" 95 | 96 | #: src/polkitmateauthenticationdialog.c:1014 97 | msgid "Authenticate" 98 | msgstr "ማረጋገጫ" 99 | 100 | #: src/polkitmateauthenticator.c:297 101 | #, c-format 102 | msgid "_Password for %s:" 103 | msgstr "የ _መግቢያ ቃል ለ %s:" 104 | 105 | #: src/polkitmateauthenticator.c:460 106 | msgid "Your authentication attempt was unsuccessful. Please try again." 107 | msgstr "ማረጋገጫው አልተሳካም: እባክዎን እንደገና ይሞክሩ" 108 | 109 | #: src/polkitmatelistener.c:164 110 | msgid "Authentication dialog was dismissed by the user" 111 | msgstr "የ ማረጋገጫው ንግግር በ ተጠቃሚው ተዘርዟል" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 114 | msgid "PolicyKit Authentication Agent" 115 | msgstr "የ አሰራር ጥቅል ማረጋገጫ ወኪል" 116 | 117 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 118 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 119 | msgstr "የ አሰራር ጥቅል ማረጋገጫ ወኪል ለ ሜት ዴስክቶፕ" 120 | -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Stefano Karapetsas , 2018 8 | # fbc955180bc2b956cb4ef52d00eb80a0_91487f8, 2018 9 | # ABE Tsunehiko, 2019 10 | # 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: mate-polkit 1.27.1\n" 14 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 15 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 16 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 17 | "Last-Translator: ABE Tsunehiko, 2019\n" 18 | "Language-Team: Japanese (https://app.transifex.com/mate/teams/13566/ja/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: ja\n" 23 | "Plural-Forms: nplurals=1; plural=0;\n" 24 | 25 | #: src/main.c:164 26 | msgid "Drop all elevated privileges" 27 | msgstr "すべての昇格済特権を破棄" 28 | 29 | #: src/main.c:188 30 | msgid "Click the icon to drop all elevated privileges" 31 | msgstr "アイコンをクリックして与えられたすべての権限を破棄" 32 | 33 | #: src/polkitmateauthenticationdialog.c:276 34 | msgid "Select user..." 35 | msgstr "ユーザの選択..." 36 | 37 | #: src/polkitmateauthenticationdialog.c:310 38 | #, c-format 39 | msgid "%s (%s)" 40 | msgstr "%s (%s)" 41 | 42 | #: src/polkitmateauthenticationdialog.c:663 43 | msgid "_Cancel" 44 | msgstr "キャンセル(_C)" 45 | 46 | #: src/polkitmateauthenticationdialog.c:668 47 | msgid "_Authenticate" 48 | msgstr "認証する(_A)" 49 | 50 | #: src/polkitmateauthenticationdialog.c:709 51 | msgid "" 52 | "An application is attempting to perform an action that requires privileges. " 53 | "Authentication as one of the users below is required to perform this action." 54 | msgstr "" 55 | "あるアプリケーションが特権の必要なアクションを実行しようとしています。このアクションを実行するには、次に示すいずれかのユーザとしての認証が必要になります。" 56 | 57 | #: src/polkitmateauthenticationdialog.c:717 58 | msgid "" 59 | "An application is attempting to perform an action that requires privileges. " 60 | "Authentication is required to perform this action." 61 | msgstr "あるアプリケーションが特権の必要なアクションを実行しようとしています。このアクションを実行するには認証が必要になります。" 62 | 63 | #: src/polkitmateauthenticationdialog.c:723 64 | msgid "" 65 | "An application is attempting to perform an action that requires privileges. " 66 | "Authentication as the super user is required to perform this action." 67 | msgstr "" 68 | "あるアプリケーションが特権の必要なアクションを実行しようとしています。このアクションを実行するには root 権限としての認証が必要になります。" 69 | 70 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 71 | msgid "_Password:" 72 | msgstr "パスワード(_P):" 73 | 74 | #: src/polkitmateauthenticationdialog.c:777 75 | msgid "_Details" 76 | msgstr "詳細(_D)" 77 | 78 | #: src/polkitmateauthenticationdialog.c:835 79 | msgid "Action:" 80 | msgstr "アクション:" 81 | 82 | #: src/polkitmateauthenticationdialog.c:838 83 | #, c-format 84 | msgid "Click to edit %s" 85 | msgstr "ここをクリックして %s を編集して下さい" 86 | 87 | #: src/polkitmateauthenticationdialog.c:855 88 | msgid "Vendor:" 89 | msgstr "ベンダ:" 90 | 91 | #: src/polkitmateauthenticationdialog.c:857 92 | #, c-format 93 | msgid "Click to open %s" 94 | msgstr "ここをクリックして %s を開いて下さい" 95 | 96 | #: src/polkitmateauthenticationdialog.c:1014 97 | msgid "Authenticate" 98 | msgstr "認証" 99 | 100 | #: src/polkitmateauthenticator.c:297 101 | #, c-format 102 | msgid "_Password for %s:" 103 | msgstr "%s のパスワード(_P):" 104 | 105 | #: src/polkitmateauthenticator.c:460 106 | msgid "Your authentication attempt was unsuccessful. Please try again." 107 | msgstr "認証に失敗しました。やり直してください" 108 | 109 | #: src/polkitmatelistener.c:164 110 | msgid "Authentication dialog was dismissed by the user" 111 | msgstr "認証ダイアログはユーザにより閉じられました" 112 | 113 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 114 | msgid "PolicyKit Authentication Agent" 115 | msgstr "PolicyKit 認証エージェント" 116 | 117 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 118 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 119 | msgstr "PolicyKit 認証エージェント" 120 | -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR MATE Desktop Environment team 3 | # This file is distributed under the same license as the mate-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Seong-ho Cho , 2018 8 | # Alan Lee , 2018 9 | # 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2019 10 | # Junghee Lee , 2021 11 | # 12 | msgid "" 13 | msgstr "" 14 | "Project-Id-Version: mate-polkit 1.27.1\n" 15 | "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" 16 | "POT-Creation-Date: 2023-09-02 20:41+0200\n" 17 | "PO-Revision-Date: 2018-03-11 20:32+0000\n" 18 | "Last-Translator: Junghee Lee , 2021\n" 19 | "Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: ko\n" 24 | "Plural-Forms: nplurals=1; plural=0;\n" 25 | 26 | #: src/main.c:164 27 | msgid "Drop all elevated privileges" 28 | msgstr "상승된 모든 권한을 해제합니다." 29 | 30 | #: src/main.c:188 31 | msgid "Click the icon to drop all elevated privileges" 32 | msgstr "아이콘을 클릭하여 모든 상승된 권한을 해제합니다." 33 | 34 | #: src/polkitmateauthenticationdialog.c:276 35 | msgid "Select user..." 36 | msgstr "사용자를 선택하십시오." 37 | 38 | #: src/polkitmateauthenticationdialog.c:310 39 | #, c-format 40 | msgid "%s (%s)" 41 | msgstr "%s (%s)" 42 | 43 | #: src/polkitmateauthenticationdialog.c:663 44 | msgid "_Cancel" 45 | msgstr "취소(_C)" 46 | 47 | #: src/polkitmateauthenticationdialog.c:668 48 | msgid "_Authenticate" 49 | msgstr "인증(_A)" 50 | 51 | #: src/polkitmateauthenticationdialog.c:709 52 | msgid "" 53 | "An application is attempting to perform an action that requires privileges. " 54 | "Authentication as one of the users below is required to perform this action." 55 | msgstr "프로그램에서 실행하려는 작동은 권한이 필요합니다. 아래의 사용자로 인증하여 이를 수행하세요." 56 | 57 | #: src/polkitmateauthenticationdialog.c:717 58 | msgid "" 59 | "An application is attempting to perform an action that requires privileges. " 60 | "Authentication is required to perform this action." 61 | msgstr "프로그램에서 실행하려는 작동은 권한이 필요합니다. 인증하여 이를 수행하세요." 62 | 63 | #: src/polkitmateauthenticationdialog.c:723 64 | msgid "" 65 | "An application is attempting to perform an action that requires privileges. " 66 | "Authentication as the super user is required to perform this action." 67 | msgstr "프로그램에서 권한이 필요한 동작을 수행하려 합니다. 이 동작을 수행하려면 최고 권한 사용자의 인증이 필요합니다." 68 | 69 | #: src/polkitmateauthenticationdialog.c:759 src/polkitmateauthenticator.c:301 70 | msgid "_Password:" 71 | msgstr "암호(_P):" 72 | 73 | #: src/polkitmateauthenticationdialog.c:777 74 | msgid "_Details" 75 | msgstr "자세히(_D)" 76 | 77 | #: src/polkitmateauthenticationdialog.c:835 78 | msgid "Action:" 79 | msgstr "동작:" 80 | 81 | #: src/polkitmateauthenticationdialog.c:838 82 | #, c-format 83 | msgid "Click to edit %s" 84 | msgstr "%s을(를) 편집하려면 누르십시오" 85 | 86 | #: src/polkitmateauthenticationdialog.c:855 87 | msgid "Vendor:" 88 | msgstr "제조자:" 89 | 90 | #: src/polkitmateauthenticationdialog.c:857 91 | #, c-format 92 | msgid "Click to open %s" 93 | msgstr "%s을(를) 열려면 누르십시오" 94 | 95 | #: src/polkitmateauthenticationdialog.c:1014 96 | msgid "Authenticate" 97 | msgstr "인증" 98 | 99 | #: src/polkitmateauthenticator.c:297 100 | #, c-format 101 | msgid "_Password for %s:" 102 | msgstr "%s의 암호(_P):" 103 | 104 | #: src/polkitmateauthenticator.c:460 105 | msgid "Your authentication attempt was unsuccessful. Please try again." 106 | msgstr "인증 시도에 실패했습니다. 다시 해보세요." 107 | 108 | #: src/polkitmatelistener.c:164 109 | msgid "Authentication dialog was dismissed by the user" 110 | msgstr "인증 대화 창이 사용자에 의해 해제되었습니다" 111 | 112 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:3 113 | msgid "PolicyKit Authentication Agent" 114 | msgstr "PolicyKit 인증 에이전트" 115 | 116 | #: src/polkit-mate-authentication-agent-1.desktop.in.in:4 117 | msgid "PolicyKit Authentication Agent for the MATE Desktop" 118 | msgstr "MATE 데스크톱용 정책키트 인증 에이전트" 119 | --------------------------------------------------------------------------------