From eefe6afc966e9dcb7bed9f36e79569d6b7413446 Mon Sep 17 00:00:00 2001 From: openKylinBot Date: Sat, 14 May 2022 03:39:32 +0800 Subject: [PATCH] Import Upstream version 1.24.0 --- .github/FUNDING.yml | 9 + .github/issue_template.md | 19 + .travis.yml | 169 +++ .tx/config | 9 + AUTHORS | 7 + COPYING | 482 +++++++ ChangeLog | 2 + HACKING | 15 + Makefile.am | 24 + NEWS | 90 ++ README | 14 + autogen.sh | 24 + configure.ac | 186 +++ makepot | 7 + mate-polkit.pot | 111 ++ po/ChangeLog | 213 +++ po/LINGUAS | 112 ++ po/Makevars | 78 ++ po/POTFILES.in | 7 + po/POTFILES.skip | 1 + po/af.po | 116 ++ po/am.po | 119 ++ po/ar.po | 124 ++ po/as.po | 115 ++ po/ast.po | 115 ++ po/az.po | 115 ++ po/be.po | 124 ++ po/bg.po | 123 ++ po/bn.po | 115 ++ po/bn_IN.po | 123 ++ po/br.po | 115 ++ po/bs.po | 115 ++ po/ca.po | 124 ++ po/ca@valencia.po | 123 ++ po/cmn.po | 115 ++ po/crh.po | 115 ++ po/cs.po | 123 ++ po/cy.po | 115 ++ po/da.po | 123 ++ po/de.po | 125 ++ po/dz.po | 115 ++ po/el.po | 126 ++ po/en_AU.po | 121 ++ po/en_CA.po | 115 ++ po/en_GB.po | 123 ++ po/eo.po | 115 ++ po/es.po | 126 ++ po/es_AR.po | 124 ++ po/es_CO.po | 124 ++ po/et.po | 121 ++ po/eu.po | 123 ++ po/fa.po | 116 ++ po/fi.po | 125 ++ po/fr.po | 131 ++ po/fr_CA.po | 243 ++++ po/frp.po | 115 ++ po/fur.po | 115 ++ po/fy.po | 115 ++ po/ga.po | 115 ++ po/gl.po | 124 ++ po/gnome-copyrights.txt | 439 ++++++ po/gu.po | 123 ++ po/he.po | 121 ++ po/hi.po | 122 ++ po/hr.po | 122 ++ po/hu.po | 125 ++ po/hy.po | 123 ++ po/id.po | 124 ++ po/ie.po | 121 ++ po/is.po | 121 ++ po/it.po | 125 ++ po/ja.po | 119 ++ po/ka.po | 115 ++ po/kab.po | 115 ++ po/kk.po | 122 ++ po/kn.po | 122 ++ po/ko.po | 117 ++ po/ks.po | 115 ++ po/ku.po | 115 ++ po/ku_IQ.po | 115 ++ po/ky.po | 115 ++ po/li.po | 115 ++ po/lt.po | 124 ++ po/lv.po | 123 ++ po/mai.po | 115 ++ po/mg.po | 115 ++ po/mi.po | 115 ++ po/mk.po | 115 ++ po/ml.po | 123 ++ po/mn.po | 115 ++ po/mr.po | 123 ++ po/ms.po | 123 ++ po/nb.po | 122 ++ po/nds.po | 115 ++ po/ne.po | 117 ++ po/nl.po | 125 ++ po/nn.po | 116 ++ po/nso.po | 115 ++ po/oc.po | 123 ++ po/or.po | 122 ++ po/pa.po | 121 ++ po/pl.po | 126 ++ po/ps.po | 115 ++ po/pt.po | 128 ++ po/pt_BR.po | 125 ++ po/ro.po | 125 ++ po/ru.po | 126 ++ po/si.po | 116 ++ po/sk.po | 128 ++ po/sl.po | 123 ++ po/sq.po | 125 ++ po/sr.po | 123 ++ po/sr@latin.po | 115 ++ po/sv.po | 125 ++ po/ta.po | 121 ++ po/te.po | 121 ++ po/th.po | 122 ++ po/tr.po | 125 ++ po/tt.po | 115 ++ po/ug.po | 115 ++ po/uk.po | 123 ++ po/ur.po | 121 ++ po/ur_PK.po | 115 ++ po/uz.po | 115 ++ po/vi.po | 122 ++ po/wa.po | 115 ++ po/xh.po | 115 ++ po/zh_CN.po | 118 ++ po/zh_HK.po | 115 ++ po/zh_TW.po | 117 ++ po/zu.po | 115 ++ src/Makefile.am | 57 + src/main.c | 475 +++++++ ...-mate-authentication-agent-1.desktop.in.in | 10 + src/polkitmateauthenticationdialog.c | 1204 +++++++++++++++++ src/polkitmateauthenticationdialog.h | 77 ++ src/polkitmateauthenticator.c | 515 +++++++ src/polkitmateauthenticator.h | 56 + src/polkitmatelistener.c | 262 ++++ src/polkitmatelistener.h | 48 + 140 files changed, 18025 insertions(+) create mode 100644 .github/FUNDING.yml create mode 100644 .github/issue_template.md create mode 100644 .travis.yml create mode 100644 .tx/config create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 ChangeLog create mode 100644 HACKING create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100755 autogen.sh create mode 100644 configure.ac create mode 100755 makepot create mode 100644 mate-polkit.pot create mode 100644 po/ChangeLog create mode 100644 po/LINGUAS create mode 100644 po/Makevars create mode 100644 po/POTFILES.in create mode 100644 po/POTFILES.skip create mode 100644 po/af.po create mode 100644 po/am.po create mode 100644 po/ar.po create mode 100644 po/as.po create mode 100644 po/ast.po create mode 100644 po/az.po create mode 100644 po/be.po create mode 100644 po/bg.po create mode 100644 po/bn.po create mode 100644 po/bn_IN.po create mode 100644 po/br.po create mode 100644 po/bs.po create mode 100644 po/ca.po create mode 100644 po/ca@valencia.po create mode 100644 po/cmn.po create mode 100644 po/crh.po create mode 100644 po/cs.po create mode 100644 po/cy.po create mode 100644 po/da.po create mode 100644 po/de.po create mode 100644 po/dz.po create mode 100644 po/el.po create mode 100644 po/en_AU.po create mode 100644 po/en_CA.po create mode 100644 po/en_GB.po create mode 100644 po/eo.po create mode 100644 po/es.po create mode 100644 po/es_AR.po create mode 100644 po/es_CO.po create mode 100644 po/et.po create mode 100644 po/eu.po create mode 100644 po/fa.po create mode 100644 po/fi.po create mode 100644 po/fr.po create mode 100644 po/fr_CA.po create mode 100644 po/frp.po create mode 100644 po/fur.po create mode 100644 po/fy.po create mode 100644 po/ga.po create mode 100644 po/gl.po create mode 100644 po/gnome-copyrights.txt create mode 100644 po/gu.po create mode 100644 po/he.po create mode 100644 po/hi.po create mode 100644 po/hr.po create mode 100644 po/hu.po create mode 100644 po/hy.po create mode 100644 po/id.po create mode 100644 po/ie.po create mode 100644 po/is.po create mode 100644 po/it.po create mode 100644 po/ja.po create mode 100644 po/ka.po create mode 100644 po/kab.po create mode 100644 po/kk.po create mode 100644 po/kn.po create mode 100644 po/ko.po create mode 100644 po/ks.po create mode 100644 po/ku.po create mode 100644 po/ku_IQ.po create mode 100644 po/ky.po create mode 100644 po/li.po create mode 100644 po/lt.po create mode 100644 po/lv.po create mode 100644 po/mai.po create mode 100644 po/mg.po create mode 100644 po/mi.po create mode 100644 po/mk.po create mode 100644 po/ml.po create mode 100644 po/mn.po create mode 100644 po/mr.po create mode 100644 po/ms.po create mode 100644 po/nb.po create mode 100644 po/nds.po create mode 100644 po/ne.po create mode 100644 po/nl.po create mode 100644 po/nn.po create mode 100644 po/nso.po create mode 100644 po/oc.po create mode 100644 po/or.po create mode 100644 po/pa.po create mode 100644 po/pl.po create mode 100644 po/ps.po create mode 100644 po/pt.po create mode 100644 po/pt_BR.po create mode 100644 po/ro.po create mode 100644 po/ru.po create mode 100644 po/si.po create mode 100644 po/sk.po create mode 100644 po/sl.po create mode 100644 po/sq.po create mode 100644 po/sr.po create mode 100644 po/sr@latin.po create mode 100644 po/sv.po create mode 100644 po/ta.po create mode 100644 po/te.po create mode 100644 po/th.po create mode 100644 po/tr.po create mode 100644 po/tt.po create mode 100644 po/ug.po create mode 100644 po/uk.po create mode 100644 po/ur.po create mode 100644 po/ur_PK.po create mode 100644 po/uz.po create mode 100644 po/vi.po create mode 100644 po/wa.po create mode 100644 po/xh.po create mode 100644 po/zh_CN.po create mode 100644 po/zh_HK.po create mode 100644 po/zh_TW.po create mode 100644 po/zu.po create mode 100644 src/Makefile.am create mode 100644 src/main.c create mode 100644 src/polkit-mate-authentication-agent-1.desktop.in.in create mode 100644 src/polkitmateauthenticationdialog.c create mode 100644 src/polkitmateauthenticationdialog.h create mode 100644 src/polkitmateauthenticator.c create mode 100644 src/polkitmateauthenticator.h create mode 100644 src/polkitmatelistener.c create mode 100644 src/polkitmatelistener.h diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..de64fd1 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,9 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +custom: https://mate-desktop.org/donate/ diff --git a/.github/issue_template.md b/.github/issue_template.md new file mode 100644 index 0000000..831d46d --- /dev/null +++ b/.github/issue_template.md @@ -0,0 +1,19 @@ +#### Expected behaviour + + +#### Actual behaviour + + +#### Steps to reproduce the behaviour + + +#### MATE general version + + +#### Package version + + +#### Linux Distribution + + +#### Link to downstream report of your Distribution diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1b9f914 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,169 @@ +# vim: set ts=2 sts=2 sw=2 expandtab : +dist: xenial +sudo: required +language: bash +services: + - docker + +branches: + except: + - gh-pages + +before_install: + - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build + - curl -Ls -o gen-index https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/gen-index.sh + - chmod +x docker-build gen-index + +install: + - sudo apt-get install -y python3-pip python3-setuptools + - sudo pip3 install --upgrade pip + - sudo pip install PyGithub + - ./docker-build --name ${DISTRO} --config .travis.yml --install + +script: + - ./docker-build --name ${DISTRO} --verbose --config .travis.yml --build scripts + +deploy: + - provider: pages + github-token: $GITHUB_TOKEN + #keep-history: true + skip_cleanup: true + committer-from-gh: true + target-branch: gh-pages + local-dir: html-report + on: + all_branches: true + condition: ${DISTRO} =~ ^fedora.*$ + - provider: script + script: ./docker-build --verbose --config .travis.yml --release github + skip_cleanup: true + on: + tags: true + condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" + +after_success: + - 'if [[ "$TRAVIS_SECURE_ENV_VARS" == "true" && "$TRAVIS_PULL_REQUEST" != "false" && ${DISTRO} =~ ^fedora.*$ ]]; then + REPO_SLUG_ARRAY=(${TRAVIS_REPO_SLUG//\// }); + REPO_NAME=${REPO_SLUG_ARRAY[1]}; + URL="https://${REPO_NAME}.mate-desktop.dev"; + COMMENT="Code analysis completed"; + curl -H "Authorization: token $GITHUB_TOKEN" -X POST + -d "{\"state\": \"success\", \"description\": \"$COMMENT\", \"context\":\"scan-build\", \"target_url\": \"$URL\"}" + https://api.github.com/repos/${TRAVIS_REPO_SLUG}/statuses/${TRAVIS_PULL_REQUEST_SHA}; + fi' + +env: + - DISTRO="archlinux/base" + - DISTRO="debian:testing" + - DISTRO="fedora:latest" + - DISTRO="ubuntu:19.10" + +########################################################## +# THE FOLLOWING LINES IS USED BY docker-build +########################################################## +requires: + archlinux: + # Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-polkit + - clang + - gcc + - git + - gtk3 + - libappindicator-gtk3 + - make + - mate-common + - polkit + - which + + debian: + # Useful URL: https://github.com/mate-desktop/debian-packages + # Useful URL: https://salsa.debian.org/debian-mate-team/mate-polkit + - autopoint + - clang + - clang-tools + - cppcheck + - gcc + - git + - libappindicator3-dev + - libgtk-3-dev + - libpolkit-agent-1-dev + - libpolkit-gobject-1-dev + - make + - mate-common + + fedora: + # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-polkit.git + - clang + - clang-analyzer + - cppcheck-htmlreport + - gcc + - git + - gtk3-devel + - libappindicator-gtk3-devel + - make + - mate-common + - polkit-devel + - redhat-rpm-config + + ubuntu: + - autopoint + - clang + - clang-tools + - git + - libappindicator3-dev + - libgtk-3-dev + - libpolkit-agent-1-dev + - libpolkit-gobject-1-dev + - make + - mate-common + +variables: + - CFLAGS="-Wall -Werror=format-security -Wredundant-decls" + - 'CHECKERS=" + -enable-checker deadcode.DeadStores + -enable-checker alpha.deadcode.UnreachableCode + -enable-checker alpha.core.CastSize + -enable-checker alpha.core.CastToStruct + -enable-checker alpha.core.IdenticalExpr + -enable-checker alpha.core.SizeofPtr + -enable-checker alpha.security.ArrayBoundV2 + -enable-checker alpha.security.MallocOverflow + -enable-checker alpha.security.ReturnPtrRange + -enable-checker alpha.unix.SimpleStream + -enable-checker alpha.unix.cstring.BufferOverlap + -enable-checker alpha.unix.cstring.NotNullTerminated + -enable-checker alpha.unix.cstring.OutOfBounds + -enable-checker alpha.core.FixedAddr + -enable-checker security.insecureAPI.strcpy"' + +build_scripts: + - ./autogen.sh + - scan-build $CHECKERS ./configure + - if [ $CPU_COUNT -gt 1 ]; then + - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT + - else + - scan-build $CHECKERS --keep-cc -o html-report make + - fi + - if [ ${DISTRO_NAME} == "debian" ];then + - cppcheck --enable=warning,style,performance,portability,information,missingInclude . + - fi + +after_scripts: + - if [ ${DISTRO_NAME} == "fedora" ];then + - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude . + - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport + - ./gen-index -l 20 + - fi + - make distcheck + +releases: + draft: false + prerelease: false + checksum: true + file_glob: true + files: mate-polkit-*.tar.xz + github_release: + tags: true + overwrite: true + base_version: 1.20.0 + notify_servers: + - https://release.mate-desktop.org/release diff --git a/.tx/config b/.tx/config new file mode 100644 index 0000000..b3e587b --- /dev/null +++ b/.tx/config @@ -0,0 +1,9 @@ +[main] +host = https://www.transifex.com + +[MATE.master--mate-polkit] +file_filter = po/.po +source_file = po/mate-polkit.pot +source_lang = en +type = PO +minimum_perc = 2 diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..6a63a71 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,7 @@ +MATE developers: + Perberos + Steve Zesch + Stefano Karapetsas + +GNOME developers: + davidz:David Zeuthen diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..4574bf9 --- /dev/null +++ b/COPYING @@ -0,0 +1,482 @@ + GNU LIBRARY GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain +that everyone understands that there is no warranty for this free +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. + + GNU LIBRARY GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..019ffa6 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,2 @@ +The ChangeLog is auto-generated when releasing. If you are seeing this, use +'git log' for a detailed list of changes. diff --git a/HACKING b/HACKING new file mode 100644 index 0000000..55a6819 --- /dev/null +++ b/HACKING @@ -0,0 +1,15 @@ +Coding Style +=== + + - Please follow the coding style already used - it's not a must, but it's + nice to have consistency. + + - Write docs for all functions and structs and so on. We use gtkdoc format. + + - All external interfaces (network protocols, file formats, etc.) + should have documented specifications sufficient to allow an + alternative implementation to be written. Our implementation should + be strict about specification compliance (should not for example + heuristically parse a file and accept not-well-formed + data). Avoiding heuristics is also important for security reasons; + if it looks funny, ignore it (or exit, or disconnect). diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..dcbc79c --- /dev/null +++ b/Makefile.am @@ -0,0 +1,24 @@ +SUBDIRS = po src + +DISTCHECK_CONFIGURE_FLAGS = \ + CFLAGS='-Wno-deprecated-declarations' + +EXTRA_DIST = \ + autogen.sh \ + HACKING + +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} + +clean-local : + rm -f *~ po/*~ + +# Build ChangeLog from GIT history +ChangeLog: + $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ + GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ + fi + +dist: ChangeLog + +.PHONY: ChangeLog + diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..620f11f --- /dev/null +++ b/NEWS @@ -0,0 +1,90 @@ +### mate-polkit 1.24.0 + + * build: show warning flags on configure summary + * build: warning flags are already defined + * autoconf: AC_PROG_CC was called before AX_CHECK_ENABLE_DEBUG + * Translations update + * migrate from intltool to gettext + +### mate-polkit 1.23.0 + + * Translations update + * Migrate from GSimpleAsyncResult to GTask + * [ci] Add cppcheck html report + * drop deprecated gtk_dialog_get_action_area + * Avoid deprecated g_type_class_add_private + * polkitmateauthenticationdialog: avoid GtkStock + * Change url project's website + * [ci] Enable Clang Static Analyzer + +### mate-polkit 1.22.0 + + * Translations update + * Initialize Travis CI support + +### mate-polkit 1.21.0 + + * Translations update + * disable deprecation warnings for distcheck + +### mate-polkit 1.20.0 + + * Translations update + * require GTK+ 3.22 and GLib 2.50 + * drop polkitgtkmate library and its docs + +### mate-polkit 1.19.0 + + * Translations update + * Fix reshow/hide icon with statusnotifier + * Restore Polish translation credits from GNOME + * status-icon: don't use stock icons + * polkitmateauthenticationdialog: avoid deprecated GtkAlignment + * polkitmateauthenticationdialog: replace a GTK_STOCK deprecation + +### mate-polkit 1.18.0 + + * NEWS: use consistent, project wide, markdown-like formatting + to make generating release announcements easier + * Fix some GTK+ deprecations + * Translations update + +### mate-polkit 1.16.0 + + * Move to GTK+3 (require GTK+ >= 3.14), drop GTK+2 code and + --with-gtk build option + * Translations update + +### mate-polkit 1.14.0 + + * GTK+3: fix several deprecations + * Translations update + * Add Changelog generation + +### mate-polkit 1.12.0 + + * GTK+3: add support for application indicators as well + * Some fixes and cleanups + +### mate-polkit 1.10.2 + + * Return error when authentication dialog is dismissed + * Optionally use accountsservice to retrieve face + * Add support for autorestart + * Select the current user to authenticate by default + * Add support for application indicators + * Gtk3: Auth dialog: make the label wrap at 50 chars + +### mate-polkit 1.10.1 + + * Fix losing focus when displaying password prompt dialog. + * Drop some deprecated GTK code and obsolete build marco. + * Update translations. + +### mate-polkit 1.10.0 + + * Translations updates + +### mate-polkit 1.8.0 + + * Add GTK3 support diff --git a/README b/README new file mode 100644 index 0000000..ba5f64b --- /dev/null +++ b/README @@ -0,0 +1,14 @@ +PolicyKit-mate provides an Authentication Agent for PolicyKit that +integrates well with the MATE desktop environment + +See http://www.freedesktop.org/wiki/Software/PolicyKit for lots of +documentation, mailing lists, etc. about PolicyKit. + +See also the file HACKING for notes of interest to developers working +on PolicyKit-mate. + +Report bugs against PolicyKit-mate at github + + https://github.com/mate-desktop/mate-polkit/issues + +MATE polkit is a fork of GNOME polkit. diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..81a7e5b --- /dev/null +++ b/autogen.sh @@ -0,0 +1,24 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="mate-polkit" + +(test -f $srcdir/src/Makefile.am) || { + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" + echo " top-level $PKG_NAME directory" + exit 1 +} + +which mate-autogen || { + echo "You need to install mate-common from the MATE SVN repository" + exit 1 +} + +REQUIRED_AUTOMAKE_VERSION=1.9 +USE_MATE2_MACROS=1 +USE_COMMON_DOC_BUILD=yes + +. mate-autogen diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..b9858ab --- /dev/null +++ b/configure.ac @@ -0,0 +1,186 @@ +AC_INIT([polkit-mate],[1.24.0],[https://mate-desktop.org/],[mate-polkit]) + +AM_INIT_AUTOMAKE([1.9 foreign dist-xz no-dist-gzip check-news]) + +AC_CONFIG_SRCDIR([src]) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIR([m4]) + +AM_MAINTAINER_MODE([enable]) + +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + +# libtool versioning - this applies to all libraries in this package +# +# See http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91 for details +# +LT_CURRENT=0 +LT_REVISION=0 +LT_AGE=0 +AC_SUBST(LT_CURRENT) +AC_SUBST(LT_REVISION) +AC_SUBST(LT_AGE) + +# ***** +# MATE +# ***** + +MATE_DEBUG_CHECK +MATE_COMPILE_WARNINGS([maximum]) + +AC_PROG_CC +AC_HEADER_STDC + +# Initialize libtool +LT_PREREQ([2.2.6]) +LT_INIT + +#### gcc warning flags + +if test "x$GCC" = "xyes"; then + changequote(,)dnl + + if test "x$enable_ansi" = "xyes"; then + case " $CFLAGS " in + *[\ \ ]-ansi[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -ansi" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-D_POSIX_C_SOURCE*) ;; + *) CFLAGS="$CFLAGS -D_POSIX_C_SOURCE=199309L" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-D_BSD_SOURCE[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -D_BSD_SOURCE" ;; + esac + + case " $CFLAGS " in + *[\ \ ]-pedantic[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -pedantic" ;; + esac + fi + if test x$enable_gcov = xyes; then + case " $CFLAGS " in + *[\ \ ]-fprofile-arcs[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -fprofile-arcs" ;; + esac + case " $CFLAGS " in + *[\ \ ]-ftest-coverage[\ \ ]*) ;; + *) CFLAGS="$CFLAGS -ftest-coverage" ;; + esac + + ## remove optimization + CFLAGS=`echo "$CFLAGS" | sed -e 's/-O[0-9]*//g'` + fi + changequote([,])dnl +else + if test x$enable_gcov = xyes; then + AC_MSG_ERROR([--enable-gcov can only be used with gcc]) + fi +fi + +# *************************** +# Check for required packages +# *************************** + +GLIB_REQUIRED=2.50.0 +GTK_REQUIRED=3.22.0 +POLKIT_AGENT_REQUIRED=0.97 +POLKIT_GOBJECT_REQUIRED=0.97 +APPINDICATOR_REQUIRED=0.0.13 + +PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED) + +PKG_CHECK_MODULES(GTK, gtk+-3.0 >= $GTK_REQUIRED) +AC_SUBST(GTK_CFLAGS) +AC_SUBST(GTK_LIBS) + +PKG_CHECK_MODULES(POLKIT_AGENT, polkit-agent-1 >= $POLKIT_AGENT_REQUIRED) +AC_SUBST(POLKIT_AGENT_CFLAGS) +AC_SUBST(POLKIT_AGENT_LIBS) + +PKG_CHECK_MODULES(POLKIT_GOBJECT, polkit-gobject-1 >= $POLKIT_GOBJECT_REQUIRED) +AC_SUBST(POLKIT_GOBJECT_CFLAGS) +AC_SUBST(POLKIT_GOBJECT_LIBS) + +AC_ARG_ENABLE([accountsservice], + AC_HELP_STRING([--enable-accountsservice], [Enable accountsservice]),, + [enable_accountsservice=yes]) + +AM_CONDITIONAL([HAVE_ACCOUNTSSERVICE], [test "x$enable_accountsservice" = xyes]) + +# Application indicator +APPINDICATOR_PKG=appindicator3-0.1 + +AC_ARG_ENABLE([appindicator], + AS_HELP_STRING([--enable-appindicator[=@<:@no/auto/yes@:>@]],[Build support for application indicators]), + [enable_appindicator=$enableval], + [enable_appindicator="auto"]) + + +if test "x$enable_appindicator" = "xauto"; then + PKG_CHECK_EXISTS($APPINDICATOR_PKG >= $APPINDICATOR_REQUIRED, + [enable_appindicator="yes"], + [enable_appindicator="no"]) +fi + +if test "x$enable_appindicator" = "xyes"; then + PKG_CHECK_MODULES(APPINDICATOR, + [$APPINDICATOR_PKG >= $APPINDICATOR_REQUIRED], + [AC_DEFINE(HAVE_APPINDICATOR, 1, [Have AppIndicator])]) +fi + +AM_CONDITIONAL(HAVE_APPINDICATOR, test "x$enable_appindicator" = "xyes") +AC_SUBST(APPINDICATOR_CFLAGS) +AC_SUBST(APPINDICATOR_LIBS) + +# ******************** +# Internationalisation +# ******************** +AM_GNU_GETTEXT_VERSION([0.19.8]) +AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8]) +AM_GNU_GETTEXT([external]) + +GETTEXT_PACKAGE=mate-polkit +AC_SUBST([GETTEXT_PACKAGE]) +AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[gettext domain]) + +# ************************************* +# ************************************* + +AC_SUBST([AM_CPPFLAGS]) +AC_SUBST([AM_CFLAGS]) +AC_SUBST([AM_LDFLAGS]) + +AC_CONFIG_FILES([ +Makefile +po/Makefile.in +src/Makefile +]) + +AC_OUTPUT + +echo " + polkit-mate $VERSION + ======================= + + prefix: ${prefix} + libdir: ${libdir} + libexecdir: ${libexecdir} + bindir: ${bindir} + sbindir: ${sbindir} + datadir: ${datadir} + sysconfdir: ${sysconfdir} + localstatedir: ${localstatedir} + + compiler: ${CC} + cflags: ${CFLAGS} + cppflags: ${CPPFLAGS} + Warning flags: ${WARN_CFLAGS} + + Accountsservice: ${enable_accountsservice} + Application indicator: ${enable_appindicator} + Maintainer mode: ${USE_MAINTAINER_MODE} +" diff --git a/makepot b/makepot new file mode 100755 index 0000000..8e8fc84 --- /dev/null +++ b/makepot @@ -0,0 +1,7 @@ +#! /bin/sh + +PACKAGE=mate-polkit; + +make -C po $PACKAGE.pot && mv po/$PACKAGE.pot . +sed -i "/#, fuzzy/d" $PACKAGE.pot +sed -i 's/charset=CHARSET/charset=UTF-8/g' $PACKAGE.pot diff --git a/mate-polkit.pot b/mate-polkit.pot new file mode 100644 index 0000000..c0aee88 --- /dev/null +++ b/mate-polkit.pot @@ -0,0 +1,111 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ChangeLog b/po/ChangeLog new file mode 100644 index 0000000..582cf17 --- /dev/null +++ b/po/ChangeLog @@ -0,0 +1,213 @@ +2009-01-02 Simos Xenitellis + + * el.po: Updated Greek translation by Evgenia Petoumenou. + +2008-12-29 Gabor Kelemen + + * hu.po: Translation updated. + +2008-11-10 Luca Ferretti + + * it.po: Updated Italian translation by Gianvito Cavasoli. + +2008-10-29 Kjartan Maraas + + * nb.po: Updated Norwegian bokmål translation. + +2008-10-26 Petr Kovar + + * cs.po: Fixed Czech translation by Adrian Gunis + (bug #538982 again). + +2008-10-12 Luca Ferretti + + * it.po: Added Italian translation by Gianvito Cavasoli. + +2008-10-08 Kjartan Maraas + + * nb.po: Added Norwegian bokmål translation. + * LINGUAS: Add it here too. + +2008-10-07 Daniel Nylander + + * sv.po: Updated Swedish translation + +2008-09-21 Claude Paroz + + * fr.po: Updated French translation by Robert-André Mauchin and Claude + Paroz. + +2008-09-21 Ilkka Tuohela + + * fi.po: Updated Finnish translation. + +2008-09-18 Marcel Telka + + * sk.po: Updated Slovak translation by Pavol Šimo. + +2008-09-15 Gil Forcada + + * ca.po: Updated Catalan translation by David Planella. + +2008-08-26 Jorge Gonzalez + + * es.po: Updated Spanish translation by Juan Jesús Ojeda + +2008-08-23 Chao-Hsiung Liao + + * LINGUAS: Added zh_HK zh_TW. + * zh_HK.po: Added Traditional Chinese translation(Hong Kong). + * zh_TW.po: Added Traditional Chinese translation(Taiwan). + +2008-08-23 Petr Kovar + + * cs.po: Updated Czech translation by Adrian Gunis + (bug #538982 again). + +2008-08-14 Tomasz Dominikowski + + * pl.po: Updated Polish translation. + +2008-08-09 Djihed Afifi + + * ar.po: Updated Arabic Translation by Khaled Hosny. + +2008-08-04 Takeshi AIHANA + + * ja.po: Updated Japanese translation. + +2008-08-04 Duarte Loreto + + * pt.po: Updated Portuguese translation by António Lima + . + +2008-07-31 Djihed Afifi + + * ar.po: Added Arabic Translation. + * LINGUAS: Added ar. + +2008-07-29 Leonardo Ferreira Fontenelle + + * pt_BR.po: Translation updated by Igor Pires Soares. (Yes, again!) + +2008-07-21 Leonardo Ferreira Fontenelle + + * pt_BR.po: Translation updated by Igor Pires Soares. + +2008-07-19 Denis Washington + + * de.po: Updated German translation. + +2008-07-19 Denis Washington + + * de.po: Added German translation. + * LINGUAS: Added "de". + +2008-06-28 甘露(Lu Gan) + + * zh_CN.po: Add Simplified Chinese translation. + +2008-06-25 Jonh Wendell + + * pt_BR.po, LINGUAS: Added Brazilian Portuguese translation by Laudeci Oliveira. + +2008-06-21 Petr Kovar + + * cs.po: Added Czech translation by Adrian Gunis + (bug #538982). + * LINGUAS: Added 'cs'. + +2008-06-19 Marcel Telka + + * sk.po: Added Slovak translation by Pavol Šimo. + * LINGUAS: Added sk. + +2008-06-08 Leonid Kanter + + * ru.po: Added Russian translation + * LINGUAS: Added "ru" + +2008-05-31 Yair Hershkovitz + + * he.po: Updated Hebrew translation by Mark Krapivner. + +2008-05-26 Wadim Dziedzic + + * pl.po: Updated polish translation + +2008-05-25 Duarte Loreto + + * pt.po: Added Portuguese translation by António Lima + . + * LINGUAS: Added Portuguese (pt). + +2008-05-25 Jorge Gonzalez + + * es.po: Updated Spanish translation + +2008-05-18 Wadim Dziedzic + + * pl.po: Added Polish translation + * LINGUAS: Added Polish language (pl) + +2008-05-13 Gil Forcada + + * ca.po: Added Catalan translation by David Planella. + * LINGUAS: Added 'ca' (Catalan). + +2008-05-10 Jorge Gonzalez + + * es.po: Updated Spanish translation + +2008-04-20 Jorge Gonzalez + + * es.po: Updated Spanish translation + +2008-04-13 Takeshi AIHANA + + * ja.po: Added Japanese translation. + * LINGUAS: Added 'ja' (Japanese). + +2008-04-09 Gabor Kelemen + + * hu.po: Translation added by Máté Őry + * LINGUAS: Added hu + +2008-04-08 Yair Hershkovitz + + * he.po, LINGUAS: Added Hebrew translation by Mark Krapivner. + +2008-04-06 Jorge Gonzalez + + * es.po: Added Spanish translation. + * LINGUAS: Added es. + +2008-04-05 Ilkka Tuohela + + * fi.po: Added Finnish translation (by Ville-Pekka Vainio). + +2008-04-04 Daniel Nylander + + * sv.po: Added Swedish translation + * LINGUAS: Added sv + +2008-04-04 Simos Xenitellis + + * LINGUAS: Addded el (Greek). + * el.po: Added Greek translation (move from Launchpad). + +2008-04-04 Philip Withnall + + * LINGUAS: Added en_GB (British English). + * en_GB.po: Added British English translation. + +2008-04-04 Claude Paroz + + * fr.po: Added French translation. + * LINGUAS: Added fr. + +2007-08-01 David Zeuthen + + * da.po: Added Danish translations (feel free to fix these, I just + added them to ensure that i18n works) + diff --git a/po/LINGUAS b/po/LINGUAS new file mode 100644 index 0000000..5b98807 --- /dev/null +++ b/po/LINGUAS @@ -0,0 +1,112 @@ +# please keep this list sorted alphabetically +# +af +am +ar +as +ast +az +be +bg +bn +bn_IN +br +bs +ca +ca@valencia +cmn +crh +cs +cy +da +de +dz +el +en_AU +en_CA +en_GB +eo +es +es_AR +es_CO +et +eu +fa +fi +fr +fr_CA +frp +fur +fy +ga +gl +gu +he +hi +hr +hu +hy +id +ie +is +it +ja +ka +kab +kk +kn +ko +ks +ku +ku_IQ +ky +li +lt +lv +mai +mg +mi +mk +ml +mn +mr +ms +nb +nds +ne +nl +nn +nso +oc +or +pa +pl +ps +pt +pt_BR +ro +ru +si +sk +sl +sq +sr +sr@latin +sv +ta +te +th +tr +tt +ug +uk +ur +ur_PK +uz +vi +wa +xh +zh_CN +zh_HK +zh_TW +zu diff --git a/po/Makevars b/po/Makevars new file mode 100644 index 0000000..8d493dc --- /dev/null +++ b/po/Makevars @@ -0,0 +1,78 @@ +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +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: + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgstr strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = MATE Desktop Environment team + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' +# context. Possible values are "yes" and "no". Set this to yes if the +# package uses functions taking also a message context, like pgettext(), or +# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. +USE_MSGCTXT = no + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages, +# --quiet to reduce the verbosity. +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot +# has changed. Possible values are "yes" and "no". Set this to no if +# the POT file is checked in the repository and the version control +# program ignores timestamps. +PO_DEPENDS_ON_POT = yes + +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes diff --git a/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..a99ecc1 --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,7 @@ +# List of source files containing translatable strings. +# Please keep this file sorted alphabetically. +src/main.c +src/polkitmateauthenticationdialog.c +src/polkitmateauthenticator.c +src/polkitmatelistener.c +src/polkit-mate-authentication-agent-1.desktop.in.in diff --git a/po/POTFILES.skip b/po/POTFILES.skip new file mode 100644 index 0000000..8d0c2fb --- /dev/null +++ b/po/POTFILES.skip @@ -0,0 +1 @@ +src/polkit-mate-authentication-agent-1.desktop.in diff --git a/po/af.po b/po/af.po new file mode 100644 index 0000000..b568555 --- /dev/null +++ b/po/af.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# nato323 , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: nato323 , 2018\n" +"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "Teken _aan" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Wagwoord:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/am.po b/po/am.po new file mode 100644 index 0000000..9a11a44 --- /dev/null +++ b/po/am.po @@ -0,0 +1,119 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# samson , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: samson , 2019\n" +"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "የ ተሰጠውን ቅድሚያ መጣያ" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "ይጫኑ በ ምልክት ላይ ድሚያ ለ መጣል" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "ተጠቃሚ መምረጫ..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_መሰረዣ " + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_ማረጋገጫ" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"መተግበሪያ ተግባር ለ መፈጸም እየሞከረ ነው ቅድሚያ የሚፈልግ: ማረጋገጫ ያስፈልጋል በ ተጠቃሚዎች በ አንዱ ይህን ተግባር" +" ለ መፈጸም" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "መተግበሪያ ተግባር ለ መፈጸም እየሞከረ ነው ቅድሚያ የሚፈልግ: ማረጋገጫ ያስፈልጋል ይህን ተግባር ለ መፈጸም " + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"መተግበሪያ ተግባር ለ መፈጸም እየሞከረ ነው ቅድሚያ የሚፈልግ: ማረጋገጫ ያስፈልጋል በ ሱፐር ተጠቃሚ ይህን ተግባር ለ " +"መፈጸም" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "የ _መግቢያ ቃል:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_ዝርዝሮች" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "ተግባር:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "ለማረም ይጫኑ %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "ሻጭ:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "ለመክፈት ይጫኑ %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "ማረጋገጫ" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "የ _መግቢያ ቃል ለ %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "ማረጋገጫው አልተሳካም: እባክዎን እንደገና ይሞክሩ" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "የ ማረጋገጫው ንግግር በ ተጠቃሚው ተዘርዟል" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "የ አሰራር ጥቅል ማረጋገጫ ወኪል" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "የ አሰራር ጥቅል ማረጋገጫ ወኪል ለ ሜት ዴስክቶፕ" diff --git a/po/ar.po b/po/ar.po new file mode 100644 index 0000000..99b7649 --- /dev/null +++ b/po/ar.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# مهدي السطيفي , 2018 +# Abdulwahab Bah , 2018 +# Mosaab Alzoubi , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Mosaab Alzoubi , 2019\n" +"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "اسقط كل الصلاحيات المرفوعة" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "انقر على الرّمز لإسقاط كل الصلاحيات" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "اختر مستخدمًا..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "أل_غ" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "ا_ستوثق" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"يحاول أحد التطبيقات القيام بإجراء يتطلب صلاحيات. تحتاج للاستيثاق كأحد " +"المستخدمين المذكورين أدناه للقيام بهذا الإجراء." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"يحاول أحد التطبيقات القيام بإجراء يتطلب صلاحيات. تحتاج للاستيثاق للقيام بهذا" +" الإجراء." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"يحاول أحد التطبيقات القيام بإجراء يتطلب صلاحيات. تحتاج للاستيثاق كمستخدم " +"فائق للقيام بهذا الإجراء." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_كلمة المرور:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "ال_تفاصيل" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "الإجراء:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "انقر لتحرير %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "المزوّد:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "انقر لفتح %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "استوثق" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_كلمة مرور %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "لم تتم محاولتك للمصادقة. حاول مرة ثانية" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "المستخدم قام برفض لوحة المصادقة" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "مدير الاستيثاق PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "عميل الاستيثاق PolicyKit لسطح مكتب متّة" diff --git a/po/as.po b/po/as.po new file mode 100644 index 0000000..4e9177d --- /dev/null +++ b/po/as.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: as\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "বাতিল (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "অনুমোদন (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "গুপ্তশব্দ: (_P)" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ast.po b/po/ast.po new file mode 100644 index 0000000..9924162 --- /dev/null +++ b/po/ast.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Encaboxar" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autenticar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contraseña:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/az.po b/po/az.po new file mode 100644 index 0000000..7bbe0ec --- /dev/null +++ b/po/az.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "Ş_ifrə:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/be.po b/po/be.po new file mode 100644 index 0000000..2b10b56 --- /dev/null +++ b/po/be.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Mihail Varantsou , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Mihail Varantsou , 2019\n" +"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: be\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Скінуць усе павышаныя прывілеі" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Пстрыкніце па значку, каб скасаваць усе ўзнятыя прывілеі" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Вылучце карыстальніка…" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Скасаваць" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Аўтэнтыфікацыя" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Праграма спрабуе выканаць дзеянне, якое патрабуе дадатковых прывілеяў. " +"Аўтэнтыфікацыя ў якасці аднаго з пералічаных карыстальнікаў патрабуецца, каб" +" выканаць гэтае дзеянне." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Праграма спрабуе выканаць дзеянне, якое патрабуе дадатковых прывілеяў. " +"Аўтэнтыфікацыя патрабуецца, каб выканаць гэтае дзеянне." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Праграма спрабуе выканаць дзеянне, якое патрабуе дадатковых прывілеяў. " +"Аўтэнтыфікацыя ў якасці адміністратара (root) патрабуецца, каб выканаць " +"гэтае дзеянне." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Пароль:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "Д_эталі" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Дзеянне:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Пстрыкніце, каб рэдагаваць %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Вытворца:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Пстрыкніце, каб адкрыць %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Аўтэнтыфікацыя" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Пароль для %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Спроба аўтэнтыфікацыі правалілася. Паспрабуйце ізноў." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Аўтэнтыфікацыя была адхілена карыстальнікам" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit, агент аўтэнтыфікацыі" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit, агент аўтэнтыфікацыі для асяроддзя MATE" diff --git a/po/bg.po b/po/bg.po new file mode 100644 index 0000000..0973f75 --- /dev/null +++ b/po/bg.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Любомир Василев, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Любомир Василев, 2019\n" +"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Премахване на всички временни права" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Щракнете иконката, за да премахнете всички временни права." + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Изберете потребител…" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Отказ" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Идентификация" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Приложение се опитва да извърши действие, което изисква повече права. " +"Необходимо е да се идентифицирате като един от посочените по-долу " +"потребители, за да изпълните това действие." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Приложение се опитва да извърши действие, което изисква повече права. " +"Необходимо е да се идентифицирате, за да изпълните това действие." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Приложение се опитва да извърши действие, което изисква повече права. " +"Необходимо е да се идентифицирате като един от системните администратори, за" +" да изпълните това действие." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Парола:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "П_одробности" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Действие:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Щракнете, за да редактирате %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Доставчик:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Щракнете, за да отворите %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Идентифициране" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Парола за %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Вашият опит за идентифициране не беше успешен. Моля, опитайте отново." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Прозорецът за идентифициране беше затворен от потребителя" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Програма за идентификация PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Програма за идентификация PolicyKit за MATE" diff --git a/po/bn.po b/po/bn.po new file mode 100644 index 0000000..4447182 --- /dev/null +++ b/po/bn.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%1$s (%2$s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "বাতিল (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "অনুমোদন (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "পাসওয়ার্ড: (_P)" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/bn_IN.po b/po/bn_IN.po new file mode 100644 index 0000000..a0616e2 --- /dev/null +++ b/po/bn_IN.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "অতিরিক্ত অধিকার বর্জন করার জন্য আইকনের উপর ক্লিক করুন" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "ব্যবহারকারী নির্বাচন করুন..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "বাতিল (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "অনুমোদন (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"একটি অ্যাপ্লিকেশন দ্বারা, অতিরিক্ত অধিকার সহযোগে সঞ্চালনযোগ্য কর্ম চালানর " +"প্রচেষ্টা করা হচ্ছে। এই কর্ম সঞ্চালনার জন্য নিম্নলিখিত কোনো একজন " +"ব্যবহারকারীর পরিচয় সহযোগে অনুমোদিত হওয়া আবশ্যক।" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"একটি অ্যাপ্লিকেশন দ্বারা, অতিরিক্ত অধিকার সহযোগে সঞ্চালনযোগ্য কর্ম চালানর " +"প্রচেষ্টা করা হচ্ছে। এই কর্ম সঞ্চালনার জন্য অনুমোদিত হওয়া আবশ্যক।" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"একটি অ্যাপ্লিকেশন দ্বারা, অতিরিক্ত অধিকার সহযোগে সঞ্চালনযোগ্য কর্ম চালানর " +"প্রচেষ্টা করা হচ্ছে। এই কর্ম সঞ্চালনার জন্য সুপার-ইউজারের পরিচয় সহযোগে " +"অনুমোদিত হওয়া আবশ্যক।" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "পাসওয়ার্ড: (_P)" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "বিবরণ (_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "কর্ম:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s সম্পাদনার জন্য ক্লিক করুন" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "বিক্রেতা:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s খোলার জন্য ক্লিক করুন" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "অনুমোদন" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s-র জন্য পাসওয়ার্ড: (_P)" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit অনুমোদনের এজেন্ট" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/br.po b/po/br.po new file mode 100644 index 0000000..0232276 --- /dev/null +++ b/po/br.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: br\n" +"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" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Nullañ" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "Diles_a" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Ger-tremen :" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/bs.po b/po/bs.po new file mode 100644 index 0000000..8e29e47 --- /dev/null +++ b/po/bs.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Sky Lion , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Sky Lion , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" +"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" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Odaberite korisnika..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Šifra:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalji" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Radnja:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Kliknite da uredite %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Prodavač:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Kliknite da otvorite %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Šifra za %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 0000000..953b699 --- /dev/null +++ b/po/ca.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Robert Antoni Buj Gelonch , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Robert Antoni Buj Gelonch , 2019\n" +"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Treu tots els privilegis elevats" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Feu clic a la icona per treure tots els privilegis elevats" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Seleccioneu l'usuari..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancel·la" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentifica" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Una aplicació està intentant realitzar una acció que requereix privilegis. " +"Cal autenticar-se com a un dels usuaris d'aquí sota per a dur a terme " +"l'acció." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Una aplicació està intentant realitzar una acció que requereix privilegis. " +"Cal autenticar-se per a dur a terme l'acció." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Una aplicació està intentant realitzar una acció que requereix privilegis. " +"Cal autenticar-se com a superusuari per a dur a terme l'acció." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contrasenya:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalls" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Acció:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Feu clic per editar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Proveïdor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Feu clic per obrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autenticació" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Contrasenya per a %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"El vostre intent d'autenticació no va tenir èxit. Torneu-ho a intentar." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "El diàleg d'autenticació va ser acomiadat per l'usuari" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agent d'autenticació PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agent d'autenticació PolicyKit per a l'escriptori MATE" diff --git a/po/ca@valencia.po b/po/ca@valencia.po new file mode 100644 index 0000000..751fa91 --- /dev/null +++ b/po/ca@valencia.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Jose Alfredo Murcia Andrés , 2018 +# Pilar Embid , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Pilar Embid , 2019\n" +"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca@valencia\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Trau tots els privilegis elevats" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Feu clic a la icona per a traure tots els privilegis" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Seleccioneu l'usuari..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancel·la" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentica" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Una aplicació està intentant realitzar una acció que requereix privilegis. " +"Cal autenticar-se com a un dels usuaris d'ací davall per a dur a terme " +"l'acció." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Una aplicació està intentant realitzar una acció que requereix privilegis. " +"Cal autenticar-se per a dur a terme l'acció." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Una aplicació està intentant realitzar una acció que requereix privilegis. " +"Cal autenticar-se com a superusuari per a dur a terme l'acció." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contrasenya:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalls" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Acció:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Feu clic per a editar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Proveïdor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Feu clic per a obrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autentica" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Contrasenya per a %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "El vostre intent d'autenticació ha fallat. Torneu-ho a provar." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "El diàleg d'autenticació va ser descartat per l'usuari" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agent d'autenticació PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agent d'autenticació PolicyKit per a l'escriptori MATE" diff --git a/po/cmn.po b/po/cmn.po new file mode 100644 index 0000000..4698b06 --- /dev/null +++ b/po/cmn.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# 趙惟倫 , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: 趙惟倫 , 2018\n" +"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cmn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "按下這個圖示放棄所有已提升的權限" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "選擇使用者…" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "驗證(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須授權為下列使用者之一才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須獲得授權才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須授權為超級使用者才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "密碼(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "詳細資料(_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "動作:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "按下這裡編輯 %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "廠商:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "按一下來開啟 %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "驗證" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s 的密碼(_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit 驗證代理程式" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/crh.po b/po/crh.po new file mode 100644 index 0000000..9df4f41 --- /dev/null +++ b/po/crh.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: crh\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Vazgeç" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Kimlik Doğrula" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Sır-söz:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 0000000..6686b2c --- /dev/null +++ b/po/cs.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Michal , 2018 +# LiberteCzech , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: LiberteCzech , 2019\n" +"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Zruší všechna zvýšená oprávnění" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Kliknutím na ikonu zrušíte zvýšená oprávnění" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Vybrat uživatele..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Zrušit" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Ověřit" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Aplikace se pokouší provést akci, která vyžaduje oprávnění. K provedení této" +" akce je vyžadováno ověření jednoho z níže uvedených uživatelů." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Aplikace se pokouší provést akci, která vyžaduje oprávnění. K provedení této" +" akce je vyžadováno ověření." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Aplikace se pokouší provést akci, která vyžaduje oprávnění. K provedení této" +" akce je vyžadováno ověření superuživatele." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Heslo:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Podrobnosti" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Akce:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Kliknutím upravíte %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Dodavatel:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Kliknutím otevřete %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Ověřit" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Heslo %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Váš pokus ověřování byl neúspěšný. Prosím zkuste to znovu." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Dialogové ověřovací okno bylo zamítnuto uživatelem" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Ověřovací agent PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Ověřovací agent PolicyKit pro MATE Desktop " diff --git a/po/cy.po b/po/cy.po new file mode 100644 index 0000000..f879279 --- /dev/null +++ b/po/cy.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# ciaran, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: ciaran, 2019\n" +"Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Diddymu" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Cyfrinair:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/da.po b/po/da.po new file mode 100644 index 0000000..43aba27 --- /dev/null +++ b/po/da.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Allan Nordhøy , 2018 +# Joe Hansen , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Joe Hansen , 2019\n" +"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Fjern alle forhøjede privilegier" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Klik på ikonet for at fjerne alle forhøjede rettigheder" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Vælg bruger …" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Afbryd" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentificer" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Et program forsøger at udføre en handling, der kræver særlige rettigheder. " +"Godkendelse som en af brugerne nedenfor er påkrævet." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Et program forsøger at udføre en handling, der kræver rettigheder. " +"Godkendelse er påkrævet for at udføre denne handling." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Et program forsøger at udføre en handling, der kræver særlige rettigheder. " +"Godkendelse som superbruger er påkrævet for at udføre denne handling." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Adgangskode:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detaljer" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Handling:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Klik for at redigere %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Leverandør:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Klik for at åbne %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Godkend" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Adgangskode for %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Dit godkendelsesforsøg mislykkedes. Prøv igen." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Godkendelsesdialog blev fjernet af brugeren" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Godkendelsesprogrammet PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Godkendelsesprogrammet PolicyKit for MATE-skrivebordet" diff --git a/po/de.po b/po/de.po new file mode 100644 index 0000000..fc5bc0a --- /dev/null +++ b/po/de.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Tobias Bannert , 2018 +# Wolfgang Ulbrich , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2019\n" +"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Alle erhöhten Berechtigungen löschen" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Zum Verwerfen aller erhöhten Berechtigungen das Symbol anklicken" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Benutzer auswählen …" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Abbruch" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Legitimieren" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Eine Anwendung versucht eine Aktion auszuführen, die Berechtigungen " +"benötigt. Eine Legitimierung, als einen der unten aufgelisteten Benutzer, " +"ist erforderlich, um diese Aktion auszuführen." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Eine Anwendung versucht eine Aktion auszuführen, die Berechtigungen " +"benötigt. Eine Legitimierung ist erforderlich, um diese Aktion auszuführen." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Eine Anwendung versucht eine Aktion auszuführen, die Berechtigungen " +"benötigt. Eine Legitimierung als Systemverwalter ist erforderlich, um diese " +"Aktion auszuführen." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Passwort:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Details" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Aktion:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Klicken, um %s zu bearbeiten" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Anbieter:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Klicken, um %s zu öffnen" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Legitimieren" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Passwort für %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Ihr Legitimierungsversuch war erfolglos. Bitte noch einmal versuchen." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Legitimierungsdialog wurde durch den Benutzer verworfen" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit-Legitimationsagent" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit-Legitimationsagent für die MATE-Arbeitsumgebung" diff --git a/po/dz.po b/po/dz.po new file mode 100644 index 0000000..42bc5f1 --- /dev/null +++ b/po/dz.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "ཆ་མེད།(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "བདེན་བཤད་འབད།(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "ཆོག་ཡིག་:(_P)" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/el.po b/po/el.po new file mode 100644 index 0000000..9f8912f --- /dev/null +++ b/po/el.po @@ -0,0 +1,126 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# thunk , 2018 +# 437c9d6e19936ed69f57bed9e0fe4716, 2018 +# Αλέξανδρος Καπετάνιος , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Αλέξανδρος Καπετάνιος , 2019\n" +"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Διαγράψτε όλα τα υψωμένα προνόμια " + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Πατήστε το εικονίδιο για να αναιρέσετε όλα τα ειδικά προνόμια" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Επιλογή χρήστη..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "Α_κύρωση" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Πιστοποίηση" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Μια εφαρμογή προσπαθεί να εκτελέσει ενέργεια που απαιτεί προνόμια. " +"Απαιτείται πιστοποίηση ενός από τους παρακάτω χρήστες για την εκτέλεση της " +"ενέργειας." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Μια εφαρμογή προσπαθεί να εκτελέσει ενέργεια που απαιτεί προνόμια. " +"Απαιτείται πιστοποίηση για την εκτέλεση της ενέργειας." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Μια εφαρμογή προσπαθεί να εκτελέσει ενέργεια που απαιτεί προνόμια. " +"Απαιτείται πιστοποίηση υπερχρήστη για την εκτέλεση της ενέργειας." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Κωδικός:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Λεπτομέρειες" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Ενέργεια:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Κάντε κλικ για να επεξεργαστείτε το %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Προμηθευτής:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Κάντε κλικ για να ανοίξετε το %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Πιστοποίηση" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Συνθηματικό για %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"Η προσπάθεια ταυτοποίησης σας δεν ήταν επιτυχής. Παρακαλώ προσπαθήστε ξανά." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Ο διάλογος ταυτοποίησης απορρίφθηκε από το χρήστη." + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Πράκτορας πιστοποίησης PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Πράκτορας πιστοποίησης PolicyKit για το MATE Desktop" diff --git a/po/en_AU.po b/po/en_AU.po new file mode 100644 index 0000000..7fb5b00 --- /dev/null +++ b/po/en_AU.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Michael Findlay , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Michael Findlay , 2019\n" +"Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Drop all elevated privileges" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Click the icon to drop all elevated privileges" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Select user..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancel" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Authenticate" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Password:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Details" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Action:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Click to edit %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Vendor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Click to open %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Authenticate" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Password for %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Your authentication attempt was unsuccessful. Please try again." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Authentication dialogue was dismissed by the user" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit Authentication Agent" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit Authentication Agent for the MATE Desktop" diff --git a/po/en_CA.po b/po/en_CA.po new file mode 100644 index 0000000..ab2fe97 --- /dev/null +++ b/po/en_CA.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_CA\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Password:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po new file mode 100644 index 0000000..d6e3fad --- /dev/null +++ b/po/en_GB.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Martin Wimpress , 2018 +# Andi Chandler , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Andi Chandler , 2019\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/mate/teams/13566/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Drop all elevated privileges" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Click the icon to drop all elevated privileges" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Select user…" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancel" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Authenticate" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Password:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Details" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Action:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Click to edit %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Vendor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Click to open %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Authenticate" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Password for %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Your authentication attempt was unsuccessful. Please try again." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Authentication dialogue was dismissed by the user" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit Authentication Agent" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit Authentication Agent for the MATE Desktop" diff --git a/po/eo.po b/po/eo.po new file mode 100644 index 0000000..97ced7b --- /dev/null +++ b/po/eo.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Pasvorto:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/es.po b/po/es.po new file mode 100644 index 0000000..add9ef8 --- /dev/null +++ b/po/es.po @@ -0,0 +1,126 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Andres Sanchez , 2018 +# Joel Barrios , 2019 +# Toni Estévez , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Toni Estévez , 2020\n" +"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Eliminar todos los privilegios elevados" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Haga clic en el icono para dejar todos los privilegios elevados" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Seleccione el usuario…" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancelar" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autenticar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que necesita permisos " +"especiales. Es necesario autenticarse como uno de los usuarios siguientes " +"para realizar dicha acción." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que necesita permisos " +"especiales. Es necesario autenticarse para realizar dicha acción." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que necesita permisos " +"especiales. Es necesario autenticarse como super usuario para realizar dicha" +" acción." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contraseña:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalles" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Acción:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Haga clic para editar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Fabricante:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Haga clic para abrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autenticar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "Contrase_ña para %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Su intento de autenticación ha fallado. Inténtelo de nuevo." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "El dialogo de autenticación fue descartado por el usuario" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agente de autenticación de PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agente de autenticación de PolicyKit para el escritorio MATE" diff --git a/po/es_AR.po b/po/es_AR.po new file mode 100644 index 0000000..c3b76e9 --- /dev/null +++ b/po/es_AR.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Germán Herrou , 2018 +# Renzo Sparta , 2019 +# mbarbero , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: mbarbero , 2019\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/teams/13566/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Quitar todos los privilegios elevados" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Hacé clic en el icono para eliminar todos los privilegios elevados." + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Seleccionar usuario..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancelar" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autenticar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que requiere privilegios." +" Se requiere la autenticación como uno de los usuarios a continuación para " +"realizar esta acción." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que requiere privilegios." +" Se requiere autenticación para realizar esta acción." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que requiere privilegios." +" Se requiere autenticación como superusuario para realizar esta acción." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contraseña:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalles" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Acción:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Clic para editar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Vendedor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Hacé clic para abrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autenticar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Contraseña para %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Tu intento de autenticación no tuvo éxito. Intentálo de nuevo." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "El diálogo de autenticación fue descartado por el usuario" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agente de Autenticación PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agente de Autenticación PolicyKit para el escritorio MATE" diff --git a/po/es_CO.po b/po/es_CO.po new file mode 100644 index 0000000..d696a7b --- /dev/null +++ b/po/es_CO.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Sergio Alejandro Bayona Becerra , 2018 +# Julian Borrero , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Julian Borrero , 2018\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/teams/13566/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Retirar todos los privilegios elevados" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Haga clic en el ícono para retirar todos los privilegios elevados" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Seleccionar usuario..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentícar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que necesita privilegios." +" Es necesario autenticarse como uno de los usuarios siguientes para realizar" +" dicha acción." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que necesita privilegios." +" Es necesario autenticarse para realizar dicha acción." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Una aplicación está intentando realizar una acción que necesita privilegios." +" Es necesario autenticarse como super usuario para realizar dicha acción." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contraseña:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalles" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Acción:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Clic para editar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Vendedor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Clic para abrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autenticar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Contraseña para %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"Su intento de autenticación no fue exitoso. Por favor intente de nuevo." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "El dialogo de autenticación fue rechazado por el usuario" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agente de autenticación PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agente de autenticación PolicyKit para el entorno MATE" diff --git a/po/et.po b/po/et.po new file mode 100644 index 0000000..fdb7d95 --- /dev/null +++ b/po/et.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Ivar Smolin , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Ivar Smolin , 2019\n" +"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Kõigist saadud õigustest loobumiseks klõpsa ikoonil" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Kasutaja valimine..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Tühista" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autendi" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Rakendus püüab läbi viia kasutajaõigusi nõudvat tegevust. Selle jaoks on " +"tarvis läbi viia autentimine ühena allpool loetletud kasutajatest." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Rakendus püüab läbi viia kasutajaõigusi nõudvat tegevust. Selle jaoks on " +"tarvis läbi viia autentimine." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Rakendus püüab läbi viia kasutajaõigusi nõudvat tegevust. Selle jaoks on " +"tarvis läbi viia ülemkasutaja autentimine." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Parool:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "Ü_ksikasjad" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Tegevus:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Vajuta %s muutmiseks" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Tootja:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Vajuta %s avamiseks" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autentimine" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "Kasutaja %s _parool:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Autentimisagent PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "MATE töölaua autentimisagent PolicyKit" diff --git a/po/eu.po b/po/eu.po new file mode 100644 index 0000000..78672a3 --- /dev/null +++ b/po/eu.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Asier Iturralde Sarasola , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Asier Iturralde Sarasola , 2019\n" +"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Egin klik ikonoan lortutako lehentasun guztiak jaregiteko" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Hautatu erabiltzailea..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Utzi" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentifikatu" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Aplikazio bat baimena behar duen ekintza bat lantzen saiatzen ari da. " +"Ekintza hau lantzeko, azpiko erabiltzaileetako bat bezala autentifikatu " +"behar da." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Aplikazio bat baimena behar duen ekintza bat lantzen saiatzen ari da. " +"Ekintza hau lantzeko, autentifikatu egin behar da." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Aplikazio bat baimena behar duen ekintza bat lantzen saiatzen ari da. " +"Ekintza hau lantzeko, supererabiltzaile gisa autentifikatu behar da." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Pasahitza:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Xehetasunak" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Ekintza:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Egin klik %s editatzeko" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Hornitzailea:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Egin klik %s irekitzeko" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autentifikatu" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s(r)en _pasahitza:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit autentifikatzeko agentea" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/fa.po b/po/fa.po new file mode 100644 index 0000000..70f8712 --- /dev/null +++ b/po/fa.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Mahdi Pourghasem , 2018 +# sir_hawell , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: sir_hawell , 2019\n" +"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "ان_صراف" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "کلمه عبور" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/fi.po b/po/fi.po new file mode 100644 index 0000000..99a7a26 --- /dev/null +++ b/po/fi.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Lasse Liehu , 2018 +# Stefano Karapetsas , 2018 +# nomen omen, 2018 +# Kimmo Kujansuu , 2019 +# Ammuu5, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Ammuu5, 2019\n" +"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Hylkää kaikki korotetut oikeudet" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Napsauta kuvaketta kaikkien korotettujen oikeuksien hylkäämiseksi" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Valitse käyttäjä..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Peru" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Tunnistaudu" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Sovellus yrittää suorittaa etuoikeuksia vaativan toiminnon. Sen " +"suorittaminen vaatii tunnistautumista jonakuna alla olevista käyttäjistä." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Sovellus yrittää suorittaa etuoikeuksia vaativan toiminnon. Sen " +"suorittaminen vaatii tunnistautumista." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Sovellus yrittää suorittaa etuoikeuksia vaativan toiminnon. Sen " +"suorittaminen vaatii tunnistautumista pääkäyttäjänä." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Salasana:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Tiedot" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Toiminto:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Muokkaa kohdetta %s napsauttamalla" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Valmistaja:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Avaa %s napsauttamalla" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Tunnistaudu" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "Käyttäjän %s _salasana:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Todennus ei onnistunut. Yritä uudelleen." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Käyttäjä hylkäsi todennusikkunan" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicytKit-tunnistautumisohjelma" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit-tunnistautumisagentti MATE-työpöydälle" diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 0000000..cb60426 --- /dev/null +++ b/po/fr.po @@ -0,0 +1,131 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Tubuntu , 2018 +# Étienne Deparis , 2018 +# yoplait , 2018 +# Charles Monzat , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Charles Monzat , 2019\n" +"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Abandonner toutes les permissions supplémentaires obtenues" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" +"Cliquez sur l'icône pour abandonner toutes les permissions supplémentaires " +"obtenues" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Sélectionner un utilisateur..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Annuler" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "S'_authentifier" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Une application tente d'effectuer une action qui nécessite des permissions " +"supplémentaires. Pour effectuer cette action, l'authentification d'un des " +"utilisateurs de la liste ci-dessous est nécessaire." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Une application tente d'effectuer une action qui nécessite des permissions " +"supplémentaires. Pour effectuer cette action, une authentification est " +"nécessaire." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Une application tente d'effectuer une action qui nécessite des permissions " +"supplémentaires. Pour effectuer cette action, l'authentification de " +"l'utilisateur principal est nécessaire." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Mot de passe :" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Détails" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Action :" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Cliquez pour modifier %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Fournisseur :" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Cliquez pour ouvrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "S'authentifier" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "Mot de _passe pour %s :" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"Votre tentative d'identification n'a pas réussi. Veuillez essayer à nouveau." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "La fenêtre d'authentification a été rejetée par l'utilisateur" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agent d'authentification de PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agent d'authentification PolicyKit pour MATE Desktop" diff --git a/po/fr_CA.po b/po/fr_CA.po new file mode 100644 index 0000000..2208863 --- /dev/null +++ b/po/fr_CA.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Ir0nsh007er , 2015 +msgid "" +msgstr "" +"Project-Id-Version: MATE Desktop Environment\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 13:37+0100\n" +"PO-Revision-Date: 2017-09-22 02:12+0000\n" +"Last-Translator: Vlad Orlov \n" +"Language-Team: French (Canada) (http://www.transifex.com/mate/MATE/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../polkitgtkmate/polkitlockbutton.c:451 +msgid "Action Identifier" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:452 +msgid "The action identifier to use for the button" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:468 +msgid "Is Authorized" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:469 +msgid "Whether the process is authorized" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:484 +msgid "Is Visible" +msgstr "Est Visible" + +#: ../polkitgtkmate/polkitlockbutton.c:485 +msgid "Whether the widget is visible" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:500 +msgid "Can Obtain" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:501 +msgid "Whether authorization can be obtained" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:516 +#: ../polkitgtkmate/polkitlockbutton.c:618 +msgid "Unlock Text" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:517 +msgid "The text to display when prompting the user to unlock." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:518 +msgid "Click to make changes" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:533 +#: ../polkitgtkmate/polkitlockbutton.c:635 +msgid "Unlock Tooltip" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:534 +msgid "The tooltip to display when prompting the user to unlock." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:535 +msgid "Authentication is needed to make changes." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:550 +msgid "Lock Text" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:551 +msgid "The text to display when prompting the user to lock." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:552 +msgid "Click to prevent changes" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:567 +msgid "Lock Tooltip" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:568 +msgid "The tooltip to display when prompting the user to lock." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:569 +msgid "To prevent further changes, click the lock." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:584 +msgid "Lock Down Text" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:585 +msgid "" +"The text to display when prompting the user to lock down the action for all " +"users." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:586 +msgid "Click to lock down" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:601 +msgid "Lock Down Tooltip" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:602 +msgid "" +"The tooltip to display when prompting the user to lock down the action for " +"all users." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:603 +msgid "" +"To prevent users without administrative privileges from making changes, " +"click the lock." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:619 +msgid "" +"The text to display when the user cannot obtain authorization through " +"authentication." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:620 +msgid "Not authorized to make changes" +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:636 +msgid "" +"The tooltip to display when the user cannot obtain authorization through " +"authentication." +msgstr "" + +#: ../polkitgtkmate/polkitlockbutton.c:637 +msgid "System policy prevents changes. Contact your system administator." +msgstr "" + +#: ../src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: ../src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:654 +msgid "_Authenticate" +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:700 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:708 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:714 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:753 +#: ../src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "" + +#. Details +#: ../src/polkitmateauthenticationdialog.c:771 +msgid "_Details" +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:833 +msgid "Action:" +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:836 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:855 +msgid "Vendor:" +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:857 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: ../src/polkitmateauthenticationdialog.c:1017 +msgid "Authenticate" +msgstr "" + +#: ../src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: ../src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: ../src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: ../src/polkit-mate-authentication-agent-1.desktop.in.in.h:1 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: ../src/polkit-mate-authentication-agent-1.desktop.in.in.h:2 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/frp.po b/po/frp.po new file mode 100644 index 0000000..7100179 --- /dev/null +++ b/po/frp.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Alexandre Raymond, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Alexandre Raymond, 2018\n" +"Language-Team: Franco-Provençal (Arpitan) (https://www.transifex.com/mate/teams/13566/frp/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: frp\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contresinyo" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/fur.po b/po/fur.po new file mode 100644 index 0000000..1e6ddd1 --- /dev/null +++ b/po/fur.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Password:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/fy.po b/po/fy.po new file mode 100644 index 0000000..db92cf2 --- /dev/null +++ b/po/fy.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Western Frisian (https://www.transifex.com/mate/teams/13566/fy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fy\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Wachtwurd" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ga.po b/po/ga.po new file mode 100644 index 0000000..70db15f --- /dev/null +++ b/po/ga.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cealaigh" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "Fí_ordheimhnigh" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Focal faire:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/gl.po b/po/gl.po new file mode 100644 index 0000000..894e355 --- /dev/null +++ b/po/gl.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Miguel Anxo Bouzada , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Miguel Anxo Bouzada , 2019\n" +"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Eliminar todos os privilexios elevados" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Prema na icona para eliminar todos os privilexios elevados" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Seleccione un usuario..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancelar" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autenticar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Unha aplicación tentou levar a cabo unha acción que require privilexios. " +"Requírese a autenticación como un dos usuarios de embaixo para levar a cabo " +"esta acción." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Unha aplicación tentou levar a cabo unha acción que require privilexios. " +"Requírese a autenticación para levar a cabo esta acción." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Unha aplicación tentou levar a cabo unha acción que require privilexios. " +"Requírese a autenticación como un superusuario para levar a cabo esta " +"acción." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contrasinal:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalles" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Acción:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Prema para editar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Provedor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Prema para abrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autenticar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Contrasinal para %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "O seu intento de autenticación fracasou. Ténteo de novo." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "O dialogo de autenticación foi desbotado polo usuario" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Axente de autenticación PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Axente de autenticación PolicyKit para o escritorio MATE" diff --git a/po/gnome-copyrights.txt b/po/gnome-copyrights.txt new file mode 100644 index 0000000..693ce22 --- /dev/null +++ b/po/gnome-copyrights.txt @@ -0,0 +1,439 @@ +========== ar.po ========== +# translation of policykit-gnome.HEAD.po to Arabic +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Khaled Hosny , 2008, 2009. + + + + +========== be.po ========== +# Belarusian translation of policykit-gnome. +# Copyright (C) 2009 policykit-gnome's COPYRIGHT HOLDER +# This file is distributed under the same license as the policykit-gnome package. +# Alexander Nyakhaychyk , 2009. + + + + +========== bn_IN.po ========== +# translation of bn_IN.po to Bengali INDIA +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Runa Bhattacharjee , 2010. + + + + +========== ca.po ========== +# Catalan translation of PolicyKit-gnome. +# Copyright (C) 2007 David Zeuthen +# This file is distributed under the same license as the PolicyKit-gnome package. +# David Planella Molas , 2008, 2009. +# + + + + +========== cs.po ========== +# Czech translation of PolicyKit-gnome. +# Copyright (C) 2008 the author(s) of PolicyKit-gnome. +# This file is distributed under the same license as the policykit-gnome package. +# Adrian Guniš , 2008. +# Petr Kovar , 2008, 2009. + + + + +========== da.po ========== +# Danish translation of PolicyKit-gnome. +# Copyright (C) 2007 David Zeuthen +# This file is distributed under the same license as the PolicyKit-gnome package. +# David Zeuthen , 2007. +# Mads Bille Lundby , 2009. +# + + + + +========== de.po ========== +# German translation of PolicyKit-gnome. +# Copyright (C) 2008 +# This file is distributed under the same license as the PolicyKit-gnome package. +# # +# # authorize - +# # authenticate - +# # +# Denis Washington , 2008. +# Mario Blättermann , 2009. +# Christian Kirbach , 2009. +# + + + + +========== el.po ========== +# translation of policykit-gnome.HEAD.po to +# Greek translation for policykit-gnome +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the policykit-gnome package. +# +# FIRST AUTHOR , 2008. +# Jennie Petoumenou , 2008. +# Tournaris Pavlos , 2009. +# Simos Xenitellis , 2009. + + + + +========== en_GB.po ========== +# English (British) translation. +# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the policykit-gnome package. +# +# Philip Withnall , 2008, 2009. +# + + + + +========== es.po ========== +# translation of policykit-gnome.HEAD.po to Español +# Copyright (C) 2007, 2008 +# This file is distributed under the same license as the PolicyKit-gnome package. +# +# Jorge González , 2008. +# Juanje Ojeda , 2008. +# Jorge González , 2009. + + + + +========== eu.po ========== +# translation of eu.po to Basque +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Iñaki Larrañaga Murgoitio , 2009. + + + + +========== fi.po ========== +# Finnish translation of PolicyKit-gnome. +# Copyright (C) 2007-2008 Ville-Pekka Vainio, Timo Jyrinki. +# This file is distributed under the same license as the PolicyKit-gnome package. +# Timo Jyrinki +# Ville-Pekka Vainio , 2009. + + + + +========== fr.po ========== +# French translation for policykit-gnome +# Copyright (c) 2008-2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the policykit-gnome package. +# +# Claude Paroz , 2008-2009. +# Robert-André Mauchin , 2008. +# + + + + +========== gl.po ========== +# Galician translation for policykit-gnome. +# Copyright (C) 2009 policykit-gnome's COPYRIGHT HOLDER +# This file is distributed under the same license as the policykit-gnome package. +# Fran Diéguez , 2009. +# + + + + +========== gu.po ========== +# translation of PolicyKit-gnome.master.gu.po to Gujarati +# Gujarati translation for PolicyKit-gnome. +# Copyright (C) 2009 PolicyKit-gnome's COPYRIGHT HOLDER +# This file is distributed under the same license as the PolicyKit-gnome package. +# +# Sweta Kothari , 2009, 2010. + + + + +========== he.po ========== +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Mark Krapivner, 2008. +# + + + + +========== hi.po ========== +# translation of PolicyKit-gnome.master.po to Hindi +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Rajesh Ranjan , 2010. + + + + +========== hu.po ========== +# Hungarian translation for policykit-gnome +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the policykit-gnome package. +# +# Gabor Kelemen , 2008, 2009. +# Máté ŐRY + + + + +========== it.po ========== +# Italian translation of policykit-gnome. +# Copyright (C) 2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the policykit-gnome package. +# Gianvito Cavasoli , 2008, 2009. +# +# + + + + +========== ja.po ========== +# policykit-gnome ja.po. +# Copyright (C) 2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the policykit-gnome package. +# Takeshi AIHANA , 2008. +# + + + + +========== kn.po ========== +# Kannada translation for PolicyKit-gnome. +# Copyright (C) 2010 PolicyKit-gnome's COPYRIGHT HOLDER +# This file is distributed under the same license as the PolicyKit-gnome package. +# +# Shankar Prasad , 2010. + + + + +========== lt.po ========== +# Lithuanian translation for PolicyKit-gnome package. +# Copyright (C) 2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the PolicyKit-gnome package. +# Žygimantas Beručka , 2009. +# Aurimas Černius , 2010. + + + + +========== ml.po ========== +# translation of PolicyKit-gnome.master.ml.po to +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PolicyKit-gnome package. +# Ani Peter , 2010. +# + + + + +========== mr.po ========== +# translation of polkit-gnome-1.po to Marathi +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Sandeep Shedmake , 2010. + + + + +========== nb.po ========== +# Norwegian bokmål translation of policykit-gnome. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Kjartan Maraas , 2008. +# + + + + +========== or.po ========== +# translation of PolicyKit-gnome.master.or.po to Oriya +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Manoj Kumar Giri , 2010. + + + + +========== pa.po ========== +# Punjabi translation of policykit-gnome. +# Copyright (C) 2009 policykit-gnome's COPYRIGHT HOLDER +# This file is distributed under the same license as the policykit-gnome package. +# +# A S Alam , 2009, 2010. + + + + +========== pl.po ========== +# Polish translation for PolicyKit-gnome. +# Copyright © 2008-2010 the PolicyKit-gnome authors. +# This file is distributed under the same license as the PolicyKit-gnome package. +# Piotr Drąg , 2008-2010. +# Wadim Dziedzic , 2008. +# Tomasz Dominikowski , 2008-2009. +# Aviary.pl , 2008-2010. +# + + + + +========== pt.po ========== +# Portuguese translation of policykit-gnome. +# Copyright © 2008 policykit-gnome. +# This file is distributed under the same license as the policykit-gnome package. +# +# António Lima , 200, 2009. + + + + +========== pt_BR.po ========== +# Brazilian Portuguese translation of policykit-gnome. +# This file is distributed under the same license as the policykit-gnome package. +# Copyright (C) 2007-2010 David Zeuthen. +# Laudeci Oliveira , 2008. +# Igor Pires Soares , 2008. +# Leonardo Ferreira Fontenelle , 2009. +# Enrico Nicoletto , 2009. +# + + + + +========== ro.po ========== +# Romanian translation for policykit-1-gnome +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the policykit-1-gnome package. +# FIRST AUTHOR , 2009. +# Lucian Adrian Grijincu , 2010. + + + + +========== ru.po ========== +# translation of policykit-gnome.HEAD.ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Leonid Kanter , 2008. + + + + +========== sk.po ========== +# Slovak translation for PolicyKit-gnome. +# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the PolicyKit-gnome package. +# Pavol Šimo , 2008, 2009, 2010. +# + + + + +========== sl.po ========== +# Copyright (C) 2009 PolicyKit-gnome's COPYRIGHT HOLDER +# This file is distributed under the same license as the PolicyKit-gnome package. +# Matej Urbančič , 2010. +# + + + + +========== sv.po ========== +# Swedish translation for policykit-gnome +# Copyright (c) 2008, 2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the policykit-gnome package. +# Daniel Nylander , 2008, 2009. +# + + + + +========== ta.po ========== +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# I. Felix , 2010. + + + + +========== te.po ========== +# translation of PolicyKit-gnome.po.master.te.po to Telugu +# Telugu translation for PolicyKit-gnome. +# Copyright (C) 2010 PolicyKit-gnome's COPYRIGHT HOLDER +# This file is distributed under the same license as the PolicyKit-gnome package. +# +# Krishna Babu K , 2010. + + + + +========== th.po ========== +# Thai translation for PolicyKit-gnome. +# Copyright (C) 2010 PolicyKit-gnome's COPYRIGHT HOLDER +# This file is distributed under the same license as the PolicyKit-gnome package. +# Sira Nokyoongtong , 2010. +# + + + + +========== uk.po ========== +# translation of policykit-gnome to Ukrainian +# Copyright (C) 2010 Free Software Foundation +# This file is distributed under the same license as the policykit-gnome package. +# Maxim Dziumanenko , 2010 +# + + + + +========== zh_CN.po ========== +# Simplified Chinese translation of PolicyKit-gnome +# Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the policykit-gnome package. +# 甘露(Lu Gan) , 2008. +# Tao Wei , 2009. +# Aron Xu , 2009. + + + + +========== zh_HK.po ========== +# Chinese (Hong Kong) translation of policykit-gnome +# Copyright (C) 20007 Free Software Foundation, Inc. +# Chao-Hsiung Liao , 2008, 2010. + + + + +========== zh_TW.po ========== +# Chinese (Taiwan) translation of policykit-gnome +# Copyright (C) 20007 Free Software Foundation, Inc. +# Chao-Hsiung Liao , 2008, 2010. + + + + diff --git a/po/gu.po b/po/gu.po new file mode 100644 index 0000000..5be1749 --- /dev/null +++ b/po/gu.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "બધા ઉન્નતકૃત્ત અધિકારોને છોડવા માટે આઇકન પર ક્લિક કરો" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "વપરાશકર્તાને પસંદ કરો..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "રદ કરો (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "પ્રસ્થાપિત કરો (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"કાર્યક્રમ એ ક્રિયાને ચલાવવા માટે પ્રયત્ન કરી રહ્યુ છે કે જેને અધિકારોની " +"જરૂરિયાત છે. નીચેનાં વપરાશકર્તાઓ નાં એકને આ ક્રિયાને ચલાવવા માટે " +"સત્તાધિકરણની જરૂર છે." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"કાર્યક્રમ એ ક્રિયાને ચલાવવા માટે પ્રયત્ન કરી રહ્યુ છે કે જેને અધિકારોની " +"જરૂરિયાત છે. સત્તાધિકરણની આ ક્રિયાને ચલાવવા માટે જરૂર છે." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"કાર્યક્રમ એ ક્રિયાને ચલાવવા માટે પ્રયત્ન કરી રહ્યુ છે કે જેને અધિકારોની " +"જરૂરિયાત છે. મુખ્ય વપરાશકર્તા તરીકે સત્તાધિકરણની આ ક્રિયાને ચલાવવા માટે જરૂર" +" છે." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "પાસવર્ડ (_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "વિગતો (_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "ક્રિયા:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s ને ફેરફાર કરવા માટે ક્લિક કરો" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "વેન્ડર:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s ને ખોલવા માટે ક્લિક કરો" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "પ્રસ્થાપિત કરો" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s માટે પાસવર્ડ (_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit સત્તાધિકરણ એજન્ટ" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/he.po b/po/he.po new file mode 100644 index 0000000..9ee973d --- /dev/null +++ b/po/he.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# בר בוכובזה , 2018 +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "מחק את כל ההרשאות הגבוהות." + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "לחץ על הסמליל על מנת למחוק את כל ההרשאות הגבוהות" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "בחר משתמש" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_בטל" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_אימות" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"היישום מנסה לבצע פעולה שדורשת הרשאות. נדרש אימות כאחד המשתמשים למטה כדי לבצע" +" את פעולה זאת." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"היישום מנסה לבצע פעולה שדורשת הרשאות. נדרש אימות כדי לבצע את פעולה זאת." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"היישום מנסה לבצע פעולה שדורשת הרשאות. נדרש אימות של כמנהל המערכת כדי לבצע את" +" פעולה זאת." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "ססמה:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_פרטים" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "פעולה:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "לחץ לעריכת %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "ספק:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "לחץ לפתיחת %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "אימות" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_סיסמה עבור %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "ניסיון האימות לא בוצע בהצלחה. אנא נסה שנית." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "חלון האימות נסגר על ידי המשתמש." + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "סוכן האימון PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "סוכן האימון PolicyKit עבור שולחן העבודה MATE" diff --git a/po/hi.po b/po/hi.po new file mode 100644 index 0000000..8997ff3 --- /dev/null +++ b/po/hi.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Sadgamaya , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Sadgamaya , 2019\n" +"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "सभी बढ़े अधिकार को छोड़ने के लिए चिह्न क्लिक करें" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "उपयोक्ता चुनें..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "रद्द करें (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "सत्यापित किया (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"कोई अनुप्रयोग एक क्रिया करने की कोशिश कर रहा है जो कि अधिकार चाहता है. " +"Authentication as one of the users below is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"कोई अनुप्रयोग एक क्रिया करना चाहता है जिसके लिए अधिकार की जरूरत होती है. " +"सत्यापन इस क्रिया को करने के लिए जरूरी है." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"कोई अनुप्रयोग एक क्रिया करना चाहता है जिसके लिए अधिकार की जरूरत होती है. " +"सुपर यूजर के रूप में सत्यापन इस क्रिया को करने के लिए जरूरी है." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "कूटशब्द (_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr " विवरण" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr " क्रिया" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s संपादन के लिए क्लिक करें" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr " विक्रेता" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s को खोलने के लिए क्लिक करें" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "सत्यापित करें" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s के लिए कूटशब्द (_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit प्रमाणीकरण प्रतिनिधि" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "माटे डेस्कटॉप के लिए पोलिसीकिट प्रमाणीकरण घटक" diff --git a/po/hr.po b/po/hr.po new file mode 100644 index 0000000..4aaf938 --- /dev/null +++ b/po/hr.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Ivica Kolić , 2018 +# Elvis M. Lukšić , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Elvis M. Lukšić , 2019\n" +"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"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" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Spusti sve podignute povlastice" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Klikni sličicu za ispuštanje svih povišenih povlastica" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Odaberi korisnika..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Opozovi" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Ovjeri" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Program pokušava izvesti radnju koja zahtijeva povlastice. Potrebno je niže " +"izvršiti ovjeru u svojstvu jednog od korisnika za izvođenje te radnje." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Program pokušava izvesti radnju koja zahtijeva povlastice. Potrebna je " +"ovjera za izvođenje te radnje." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Program pokušava izvesti radnju koja zahtijeva povlastice. Potrebna je " +"ovjera u svojstvu natkorisnika za izvođenje te radnje." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Zaporka:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Pojedinosti" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Radnja:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Klikni za uređivanje %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Isporučitelj:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Klikni za otvaranje %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Ovjeri" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Zaporka za %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Tvoj pokušaj ovjere bio je neuspješan. Molimo pokušaj iznova." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Dijaloški okvir ovjere napušten je od strane korisnika" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Programski izvršitelj pravila ovjere" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Programski izvršitelj pravila ovjere za radno okruženje MATE" diff --git a/po/hu.po b/po/hu.po new file mode 100644 index 0000000..eb62bd0 --- /dev/null +++ b/po/hu.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# KAMI KAMI , 2018 +# Stefano Karapetsas , 2018 +# Rezső Páder , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Rezső Páder , 2019\n" +"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Minden megemelt jogosultság eldobása" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Kattintson az ikonra a megemelt jogosultságok eldobásához" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Válasszon felhasználót…" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "Mé_gse" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Hitelesítés" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Egy alkalmazás olyan műveletet próbál végrehajtani, amely speciális " +"jogosultságot igényel. A következő felhasználók egyikeként való hitelesítés " +"szükséges a művelet végrehajtásához." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Egy alkalmazás olyan műveletet próbál végrehajtani, amely speciális " +"jogosultságot igényel. A művelet végrehajtásához hitelesítés szükséges." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Egy alkalmazás olyan műveletet próbál végrehajtani, amely speciális " +"jogosultságot igényel. Adminisztrátorként való hitelesítés szükséges a " +"művelet végrehajtásához." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Jelszó:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Részletek" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Művelet:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Kattintson %s művelet jogosultságbeállításainak módosításához" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Gyártó:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Kattintson %s megnyitásához" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Hitelesítés" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s jel_szava:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Az azonosítási kísérlet sikertelen volt. Próbálja újra." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "A hitelesítési párbeszédablakot a felhasználó bezárta" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit hitelesítési ügynök" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit hitelesítési ügynök a MATE Desktophoz" diff --git a/po/hy.po b/po/hy.po new file mode 100644 index 0000000..8b37af1 --- /dev/null +++ b/po/hy.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Siranush , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Siranush , 2019\n" +"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Դադարեցնել բոլոր բարձրացված արտոնությունները" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Սեղմեք պատկերակը թողնել բոլոր բարձր արտոնությունները" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Ընտրել օգտվողին..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Չեղարկել " + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Վավերացնել" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Դիմումը փորձում է կատարել որևէ գործողություն, որը պահանջում արտոնություններ։" +" Նույնականացումը որպես օգտվողներից մեկը պահանջվում ներքևում այս " +"գործողությունը կատարել։" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Դիմումը փորձում է կատարել որևէ գործողություն, որը պահանջում արտոնություններ։" +" Նույնականացումը պահանջվում է կատարել այս գործողությունը։" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Դիմումը փորձում է կատարել որևէ գործողություն, որը պահանջում արտոնություններ։" +" Նույնականացումը որպես գեր օգտագործող պահանջվում է կատարել այս " +"գործողությունը։" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Գաղտնաբառ" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Մանրամասն" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Գործողություն:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Սեղմեք խմբագրել %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Վաճառող:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Սեղմեք բացել %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Վավերացնել" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Գաղտնաբառ %s համար։" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Ձեր նույնականացման փորձը անհաջող էր։ Խնդրում եմ կրկին փորձեք։" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Նույնականացնել օգտատիրոջ կողմից ազատված երկխոսությունը" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit Նույնականացման գործակալը" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit Նույնականացման գործակալը MATE աշխատանքային սեղանի համար" diff --git a/po/id.po b/po/id.po new file mode 100644 index 0000000..828d5b5 --- /dev/null +++ b/po/id.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Andika Triwidada , 2018 +# Ibnu Daru Aji, 2018 +# Willy Sudiarto Raharjo , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Willy Sudiarto Raharjo , 2019\n" +"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Cabut semua hak istimewa" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Klik ikon untuk melepas semua wewenang istimewa." + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Pilih Pengguna....." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Batal" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "Otentik_asi" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Sebuah aplikasi berusaha melakukan aksi yang membutuhkan hak khusus. " +"Otentikasi sebagai salah satu pengguna dibawah dibutuhkan untuk melakukan " +"aksi ini." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Sebuah aplikasi berusaha melakukan aksi yang membutuhkan wewenang khusus. " +"Otentikasi dibutuhkan untuk melakukan aksi ini." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Sebuah aplikasi berusaha melakukan aksi yang membutuhkan wewenang khusus. " +"Otentikasi sebagai super user dibutuhkan untuk melakukan aksi ini." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Password:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detail" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Aksi:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Klik untuk menyunting %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Vendor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Klik untuk membuka %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Mengautentikasi" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Kata sandi untuk %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Percobaan otentikasi Anda gagal. Harap coba lagi." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Dialog otentikasi diakhiri oleh pengguna" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit Authentication Agent" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agen Autentikasi PolicyKit untuk MATE Desktop" diff --git a/po/ie.po b/po/ie.po new file mode 100644 index 0000000..728db0b --- /dev/null +++ b/po/ie.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Caarmi, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Caarmi, 2019\n" +"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ie\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Dechargear omni privilegies elevat" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Fa un clic por renunciar omni privilegies elevat" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Selecter un usator..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "A_nullar" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autenticar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Un application pena far un action que besona privilegies. Un autentication " +"quam un del usatores a infra es besonat por far ti action." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Un application pena far un action que besona privilegies. Un autentication " +"es besonat por far ti action." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Un application pena far un action que besona privilegies. Un autentication " +"quam li superusator es besonat por far ti action." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Contrasigne:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detallies" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Action:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Fa un clic por modificar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Venditor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Fa un clic por aperter %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autenticar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Contrasigne por %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Vor pena autenticar se ne successat. Ples repenar denov." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Dialog de autentication esset anullat per li usator" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agente de autentication PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agente de autentication PolicyKit por ambientie MATE" diff --git a/po/is.po b/po/is.po new file mode 100644 index 0000000..8459fbd --- /dev/null +++ b/po/is.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Sveinn í Felli , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Sveinn í Felli , 2019\n" +"Language-Team: Icelandic (https://www.transifex.com/mate/teams/13566/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Henda öllum auknum heimildum" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Smelltu á táknið til að henda öllum auknum heimildum" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Veldu notanda..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Hætta við" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Staðfesta" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Eitthvað forrit vill framkvæma aðgerðir sem það hefur ekki leyfi til að " +"framkvæma. Einn af notendunum að neðan verður að leyfa þessa aðgerð." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Eitthvað forrit vill framkvæma aðgerðir sem það hefur ekki leyfi til að " +"framkvæma. Þú verður að staðfesta þessa aðgerð." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Eitthvað forrit vill framkvæma aðgerðir sem það hefur ekki leyfi til að " +"framkvæma. Aðeins rótarnotandinn getur leyft þessa aðgerð." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Lykilorð:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Frekari upplýsingar" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Aðgerð:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Ýttu til að breyta %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Framleiðandi:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Ýttu til að opna %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Auðkenning" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Lykilorð fyrir %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Tilraun þín til auðkenningar mistókst. Reyndu aftur." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Notandi hafnaði auðkenningarglugga" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit auðkenningarþjónn" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit auðkenningarþjónn fyrir MATE-skjáborðið" diff --git a/po/it.po b/po/it.po new file mode 100644 index 0000000..f7aad93 --- /dev/null +++ b/po/it.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Marco Bartolucci , 2018 +# Giuseppe Pignataro , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Giuseppe Pignataro , 2019\n" +"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Ritira tutti i privilegi elevati" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Fare clic sull'icona per ritirare tutti i privilegi elevati" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Seleziona utente..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "A_nnulla" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentica" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Un'applicazione sta tentando di compiere un'azione che richiede dei " +"privilegi. È richiesto autenticarsi come uno degli utenti elencati sotto per" +" eseguire tale azione." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Un'applicazione sta tentando di compiere un'azione che richiede dei " +"privilegi. È richiesto autenticarsi per eseguire tale azione." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Un'applicazione sta tentando di compiere un'azione che richiede dei " +"privilegi. È richiesto autenticarsi come super utente per eseguire tale " +"azione." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "Pass_word:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Dettagli" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Azione:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Fare clic per modificare %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Fornitore:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Fare clic per aprire %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autentica" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "Pass_word per %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Il tuo tentativo di autenticazione non è riuscito. Riprovare." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Il dialogo di autenticazione è stato rimosso dall'utente" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agente di autenticazione per PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agente di autenticazione per PolicyKit di MATE Desktop" diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 0000000..c64efe2 --- /dev/null +++ b/po/ja.po @@ -0,0 +1,119 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Mika Kobayashi, 2018 +# ABE Tsunehiko, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: ABE Tsunehiko, 2019\n" +"Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "すべての昇格済特権を破棄" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "アイコンをクリックして与えられたすべての権限を破棄" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "ユーザの選択..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "キャンセル(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "認証する(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"あるアプリケーションが特権の必要なアクションを実行しようとしています。このアクションを実行するには、次に示すいずれかのユーザとしての認証が必要になります。" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "あるアプリケーションが特権の必要なアクションを実行しようとしています。このアクションを実行するには認証が必要になります。" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"あるアプリケーションが特権の必要なアクションを実行しようとしています。このアクションを実行するには root 権限としての認証が必要になります。" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "パスワード(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "詳細(_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "アクション:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "ここをクリックして %s を編集して下さい" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "ベンダ:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "ここをクリックして %s を開いて下さい" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "認証" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s のパスワード(_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "認証に失敗しました。やり直してください" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "認証ダイアログはユーザにより閉じられました" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit 認証エージェント" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit 認証エージェント" diff --git a/po/ka.po b/po/ka.po new file mode 100644 index 0000000..31390d0 --- /dev/null +++ b/po/ka.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_გაუქმება" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_ავტორიზაცია" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_პაროლი:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/kab.po b/po/kab.po new file mode 100644 index 0000000..767d316 --- /dev/null +++ b/po/kab.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Selyan Sliman Ɛmiri , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Selyan Sliman Ɛmiri , 2018\n" +"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Awal uffir:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/kk.po b/po/kk.po new file mode 100644 index 0000000..f310104 --- /dev/null +++ b/po/kk.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Baurzhan Muftakhidinov , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Baurzhan Muftakhidinov , 2019\n" +"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Барлық көтерме привилегияларын тастау" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Барлық көтерме привилегияларын тастау үшін таңбашаға шертіңіз" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Пайдаланушыны таңдау..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "Ба_с тарту" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Аутентификация" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Қолданба привилегияларды талап ететін әрекетті орындау талабын жасап тұр. " +"Бұл әрекетті орындау үшін төмендегі пайдаланушылардың біреуі ретінде " +"аутентификациялау керек." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Қолданба привилегияларды талап ететін әрекетті орындау талабын жасап тұр. " +"Бұл әрекетті орындау үшін аутентификациялау керек." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Қолданба привилегияларды талап ететін әрекетті орындау талабын жасап тұр. " +"Бұл әрекетті орындау үшін супер пайдаланушы ретінде аутентификациялау керек." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Пароль:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Ақпараты" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Әрекет:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s түзету үшін шертіңіз" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Шығарушы:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s ашу үшін шертіңіз" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Аутентификация" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s _паролі:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Сіздің аутентификация талабыңыз сәтсіз аяқталды. Қайталап көріңіз." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Пайдаланушы аутентификация сұхбатын тайдырған" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit аутентификация агенті" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "MATE жұмыс үстелі үшін PolicyKit аутентификация агенті" diff --git a/po/kn.po b/po/kn.po new file mode 100644 index 0000000..414b3a3 --- /dev/null +++ b/po/kn.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "ಎಲ್ಲಾ ಉನ್ನತ ಅಧಿಕಾರಗಳನ್ನು ತೆಗೆದು ಹಾಕಲು ಕ್ಲಿಕ್ ಮಾಡಿ" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "ಬಳಕೆದಾರನನ್ನು ಆಯ್ಕೆ ಮಾಡಿ..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "ರದ್ದು ಮಾಡಲಾಗಿದೆ(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "ದೃಢೀಕರಿಸು(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"ಒಂದು ಅನ್ವಯವು ಅಧಿಕಾರದ ಅಗತ್ಯವಿರುವ ಒಂದು ಕಾರ್ಯವನ್ನು ನಿರ್ವಹಿಸಲು ಪ್ರಯತ್ನಿಸುತ್ತಿದೆ." +" ಈ ಕಾರ್ಯವನ್ನು ನಿರ್ವಹಿಸಲು ಈ ಕೆಳಗಿನ ಬಳಕೆದಾರರಲ್ಲಿ ಒಬ್ಬರಾಗಿ ದೃಢೀಕರಿಸುವ " +"ಅಗತ್ಯವಿರುತ್ತದೆ." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"ಒಂದು ಅನ್ವಯವು ಅಧಿಕಾರದ ಅಗತ್ಯವಿರುವ ಒಂದು ಕಾರ್ಯವನ್ನು ನಿರ್ವಹಿಸಲು ಪ್ರಯತ್ನಿಸುತ್ತಿದೆ." +" ಈ ಕಾರ್ಯವನ್ನು ನಿರ್ವಹಿಸಲು ದೃಢೀಕರಣದ ಅಗತ್ಯವಿರುತ್ತದೆ." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"ಒಂದು ಅನ್ವಯವು ಅಧಿಕಾರದ ಅಗತ್ಯವಿರುವ ಒಂದು ಕಾರ್ಯವನ್ನು ನಿರ್ವಹಿಸಲು ಪ್ರಯತ್ನಿಸುತ್ತಿದೆ." +" ಈ ಕಾರ್ಯವನ್ನು ನಿರ್ವಹಿಸಲು ಸೂಪರ್ ಯೂಸರ್ ಆಗಿ ದೃಢೀಕರಿಸುವ ಅಗತ್ಯವಿರುತ್ತದೆ." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "ಗುಪ್ತಪದ(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "ವಿವರಗಳು(_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "ಕ್ರಿಯೆ:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s ಅನ್ನು ಸಂಪಾದಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "ಮಾರಾಟಗಾರ:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s ಅನ್ನು ತೆರೆಯಲು ಕ್ಲಿಕ್ ಮಾಡಿ" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "ದೃಢೀಕರಿಸಿ" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s ಗಾಗಿನ ಗುಪ್ತಪದ(_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit ದೃಢೀಕರಣ ಮಧ್ಯವರ್ತಿ" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ko.po b/po/ko.po new file mode 100644 index 0000000..18ac35b --- /dev/null +++ b/po/ko.po @@ -0,0 +1,117 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Seong-ho Cho , 2018 +# Alan Lee , 2018 +# 박정규(Jung-Kyu Park) , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: 박정규(Jung-Kyu Park) , 2019\n" +"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "상승된 모든 권한을 해제합니다." + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "아이콘을 클릭하여 모든 상승된 권한을 해제합니다." + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "사용자를 선택하십시오." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "취소(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "인증(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "프로그램에서 실행하려는 작동은 권한이 필요합니다. 아래의 사용자로 인증하여 이를 수행하세요." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "프로그램에서 실행하려는 작동은 권한이 필요합니다. 인증하여 이를 수행하세요." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "프로그램에서 권한이 필요한 동작을 수행하려 합니다. 이 동작을 수행하려면 최고 권한 사용자의 인증이 필요합니다." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "암호(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "자세히(_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "동작:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s을(를) 편집하려면 누르십시오" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "제조자:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s을(를) 열려면 누르십시오" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "인증" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s의 암호(_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "인증 시도에 실패했습니다. 다시 해보세요." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "인증 대화 창이 사용자에 의해 해제되었습니다" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit 인증 에이전트" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "마테 데스크톱용 정책키트 인증 에이전트" diff --git a/po/ks.po b/po/ks.po new file mode 100644 index 0000000..a90996e --- /dev/null +++ b/po/ks.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Kashmiri (https://www.transifex.com/mate/teams/13566/ks/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ks\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "पासवर्ड: (_P)" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ku.po b/po/ku.po new file mode 100644 index 0000000..90e3ff6 --- /dev/null +++ b/po/ku.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Betal" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Belgekirin" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Şîfre:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ku_IQ.po b/po/ku_IQ.po new file mode 100644 index 0000000..d529cba --- /dev/null +++ b/po/ku_IQ.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Rasti K5 , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Rasti K5 , 2019\n" +"Language-Team: Kurdish (Iraq) (https://www.transifex.com/mate/teams/13566/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_هەڵوەشاندنەوە" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_تێپەڕەوشە:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ky.po b/po/ky.po new file mode 100644 index 0000000..80a3ba2 --- /dev/null +++ b/po/ky.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# chingis, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: chingis, 2019\n" +"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ky\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Колдонуучуну тандаңыз..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Жокко чыгаруу" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Автордоштурулуу" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Сырсөзү:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Аракет:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Иштетүүчүсү:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Аутентификация" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s колдонуучунун сырсөзү:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/li.po b/po/li.po new file mode 100644 index 0000000..f217f68 --- /dev/null +++ b/po/li.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Limburgian (https://www.transifex.com/mate/teams/13566/li/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: li\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Wachwaord" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/lt.po b/po/lt.po new file mode 100644 index 0000000..c70c51f --- /dev/null +++ b/po/lt.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Moo, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Moo, 2019\n" +"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Atsisakyti visų gautų privilegijų" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Spustelėję piktogramą atsisakysite visų gautų privilegijų" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Pasirinkite naudotoją..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Atsisakyti" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Patvirtinti tapatybę" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Programa siekia atlikti veiksmą, kuriam reikia privilegijų. Norint atlikti " +"šį veiksmą reikia patvirtinti vieno iš žemiau pateiktų naudotojų tapatybę." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Programa siekia atlikti veiksmą, kuriam reikia privilegijų. Norint atlikti " +"šį veiksmą reikia patvirtinti tapatybę." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Programa siekia atlikti veiksmą, kuriam reikia privilegijų. Norint atlikti " +"šį veiksmą reikia patvirtinti administratoriaus tapatybę." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "Sla_ptažodis:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Išsamiau" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Veiksmas:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Spustelėkite norėdami taisyti %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Pardavėjas:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Spustelėkite, norėdami atverti %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Nustatyti tapatybę" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "Naudotojo %s _slaptažodis:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"Jūsų tapatybės patvirtinimo bandymas buvo nesėkmingas. Prašome bandyti dar " +"kartą." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Tapatybės patvirtinimo dialogas buvo atmestas naudotojo" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit tapatybės nustatymo agentas" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit tapatybės nustatymo agentas MATE darbalaukiui" diff --git a/po/lv.po b/po/lv.po new file mode 100644 index 0000000..dbc6883 --- /dev/null +++ b/po/lv.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Klāvs Priedītis , 2018 +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Nospiediet ikonu, lai atbrīvotots no visām dotajām privilēģijām." + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Izvēlieties lietotāju..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "At_celt" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentificēt" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Aplikācija cenšas veikt darbības, kuras pieprasa privilēģijas. Lai veiktu šo" +" darbību ir nepieciešams autentificēties ar kādu no sekojošajiem " +"lietotājiem." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Aplikācija cenšas veikt darbības, kuras pieprasa privilēģijas. Lai veiktu " +"darbību, ir nepieciešama autentifikācija." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Aplikācija cenšas veikt darbības, kuras pieprasa privilēģijas. Lai veiktu šo" +" darbību, ir nepieciešama super lietotāja autentifikācija." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Parole:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detaļas" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Darbība:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Nospied, lai labotu %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Pārdevējs:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Nospied, lai atvērtu %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Apliecināt" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s _Parole:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKot Apliecinājuma Aģents" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/mai.po b/po/mai.po new file mode 100644 index 0000000..fbd1b09 --- /dev/null +++ b/po/mai.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mai\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "रद्द करू (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "सत्यापित कएल (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "कूटशब्द (_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/mg.po b/po/mg.po new file mode 100644 index 0000000..69dcbad --- /dev/null +++ b/po/mg.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mg\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Aoka" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Teny fanalahidy:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/mi.po b/po/mi.po new file mode 100644 index 0000000..0fe3378 --- /dev/null +++ b/po/mi.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Maori (https://www.transifex.com/mate/teams/13566/mi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mi\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Hiporete:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/mk.po b/po/mk.po new file mode 100644 index 0000000..e7375e7 --- /dev/null +++ b/po/mk.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Откажи" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Провери автентичност" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Лозинка:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ml.po b/po/ml.po new file mode 100644 index 0000000..ce4f931 --- /dev/null +++ b/po/ml.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "അനുമതികള്‍ ലഭ്യമാകുന്നതിനായി ചിഹ്നത്തില്‍ ക്ലിക്ക് ചെയ്യുക" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "ഉപയോക്താവിനെ തെരഞ്ഞെടുക്കുക..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_റദ്ദാക്കുക" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_ആധികാരികത ഉറപ്പാക്കുക" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"അനുമതികള്‍ ആവശ്യമുള്ള ഒരു പ്രവര്‍ത്തി നടപ്പിലാക്കുന്നതിനായി ഒരു പ്രയോഗം " +"ശ്രമിക്കുന്നു.ഈ പ്രവര്‍ത്തി നടപ്പിലാക്കുന്നതിനായി താഴെ പറഞ്ഞിരിക്കുന്ന ഒരു " +"ഉപയോക്താവായി ആധികാരികത ആവശ്യമുണ്ടു്." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"അനുമതികള്‍ ആവശ്യമുള്ള ഒരു പ്രവര്‍ത്തി നടപ്പിലാക്കുന്നതിനായി ഒരു പ്രയോഗം " +"ശ്രമിക്കുന്നു.ഈ പ്രവര്‍ത്തി നടപ്പിലാക്കുന്നതിനായി ആധികാരികത ആവശ്യമുണ്ടു്." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"അനുമതികള്‍ ആവശ്യമുള്ള ഒരു പ്രവര്‍ത്തി നടപ്പിലാക്കുന്നതിനായി ഒരു പ്രയോഗം " +"ശ്രമിക്കുന്നു.ഈ പ്രവര്‍ത്തി നടപ്പിലാക്കുന്നതിനായി സൂപ്പര്‍ യൂസര്‍ " +"ആകേണ്ടതാകുന്നു." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_പാസ്‌വേര്‍ഡ്:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_വിശദവിവരങ്ങള്‍" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "പ്രവര്‍ത്തി:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s ചിട്ടപ്പെടുത്തുന്നതിനായി ക്ലിക്ക് ചെയ്യുക" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "വില്‍പ്പനക്കാരന്‍:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s തുറക്കുന്നതിനായി ക്ലിക്ക് ചെയ്യുക" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "ആധികാരികത ഉറപ്പാക്കുക" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s-നുള്ള _അടയാളവാക്ക്:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "പോളിസിക്കിറ്റ് ഓഥന്റിക്കേഷന്‍ ഏജന്റ്" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/mn.po b/po/mn.po new file mode 100644 index 0000000..4211f7d --- /dev/null +++ b/po/mn.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Буцах" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Баталгаажуулах" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Нууц үг:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/mr.po b/po/mr.po new file mode 100644 index 0000000..14bde38 --- /dev/null +++ b/po/mr.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Vaibhav S Dalvi , 2018 +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "सर्व परवानगी नष्ट करण्यासाठी चिन्हावर क्लिक करा" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "वापरकर्ता बदला..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "रद्द करा(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "ओळख पटवा (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"ऍप्लिकेशन परवानगी आवश्यक असणारी कृती कार्यान्वीत करण्याचा प्रयत्न करत आहे. " +"ही कृती कार्यान्वीत करण्यासाठी खालील वापरकर्ता पैकी ओळख पटवणे आवश्यक आहे." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"ऍप्लिकेशन परवानगी आवश्यक असणारी कृती कार्यान्वीत करण्याचा प्रयत्न करत आहे. " +"ही कृती कार्यान्वीत करण्यासाठी ओळख पटवणे आवश्यक आहे." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"ऍप्लिकेशन परवानगी आवश्यक असणारी कृती कार्यान्वीत करण्याचा प्रयत्न करत आहे. " +"ही कृती कार्यान्वीत करण्यासाठी सर्वोत्तम वापरकर्ता म्हणून ओळख पटवणे आवश्यक " +"आहे." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "परवलीचा शब्द (_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "तपशील (_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "कृती:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s संपादीत करण्यासाठी क्लिक करा" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "विक्रेता:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s उघडण्यासाठी बटन दाबा" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "ओळख पटवा" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s करीता पासवर्ड (_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit ऑथेंटीकेशन एजेंट" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "MATE डेस्कटाॅपसाठी PolicyKit ऑथेंटीकेशन एजेंट" diff --git a/po/ms.po b/po/ms.po new file mode 100644 index 0000000..c726dd4 --- /dev/null +++ b/po/ms.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Puretech , 2018 +# abuyop , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: abuyop , 2019\n" +"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Gugurkan semua kelayakan tertinggi" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Klik pada ikon untuk menggugurkan semua kelayakan tertinggi" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Pilih pengguna..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Batal" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "S_ahihkan" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Satu aplikasi cuba membuat tindakan yang memerlukan kelayakan. Pengesahihan " +"adalah salah satu dari pengguna di bawah diperlukan untuk membuat tindakan " +"ini." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Satu aplikasi cuba membuat tindakan yang memerlukan kelayakan. Pengesahihan " +"diperlukan untuk membuat tindakan ini." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Satu aplikasi cuba membuat tindakan yang memerlukan kelayakan. Pengesahihan " +"dari pengguna sebagai pengguna super diperlukan untuk membuat tindakan ini." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Kata Laluan:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Perincian" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Tindakan:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Klik untuk sunting %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Pembekal:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Klik untuk buka %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Sahihkan" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Kata laluan untuk %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Percubaan pengesahihan tidak berjaya. Sila cuba lagi." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Dialog pengesahihan telah dibuang oleh pengguna" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Ejen Pengesahihan PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Ejen pengesahihan PolicyKit untuk Desktop MATE" diff --git a/po/nb.po b/po/nb.po new file mode 100644 index 0000000..8ae5944 --- /dev/null +++ b/po/nb.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Allan Nordhøy , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Allan Nordhøy , 2019\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Fjern alle forhøyede rettigheter" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Klikk på ikonet for å fjerne alle forhøyede rettigheter" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Velg bruker …" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Avbryt" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentiser" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Et program prøver å utføre en handling som krever rettigheter. Du må " +"autentisere som en av brukerene under for å utføre denne handlingen." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Et program prøver å utføre en handling som krever rettigheter. Du må " +"autentisere deg for å utføre denne handlingen." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Et program prøver å utføre en handling som krever rettigheter. Du må " +"autentisere som superbruker for å utføre denne handlingen." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Passord:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detaljer" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Handling:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Klikk for å redigere %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Leverandør:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Klikk for å åpne %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autentiser" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Passord for %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Ditt godkjenningsforsøk var mislykket. Prøv igjen." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Godkjennelsesdialog ble fjernet av brukeren" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agent for fodkjennelsesprogrammet PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Godkjennelsesprogrammet PolicyKit for MATE-skrivebordet" diff --git a/po/nds.po b/po/nds.po new file mode 100644 index 0000000..9966c62 --- /dev/null +++ b/po/nds.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Low German (https://www.transifex.com/mate/teams/13566/nds/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Avbreken" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Bewiesen, dat je du sülvst büst" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Passwoord:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ne.po b/po/ne.po new file mode 100644 index 0000000..e42968a --- /dev/null +++ b/po/ne.po @@ -0,0 +1,117 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Sven Keeter , 2018 +# chautari , 2018 +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "प्रयोगकर्ता छान्नुहोस्..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "रद्द गर्नुहोस्" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "प्रमाणीकरण गर्नुहोस्" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "पासवर्ड:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s सम्पादन गर्न क्लिक गर्नुहोस्" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s खोल्न क्लिक गर्नुहोस्" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/nl.po b/po/nl.po new file mode 100644 index 0000000..b7ec3af --- /dev/null +++ b/po/nl.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Michael Steenbeek , 2018 +# Pjotr , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Pjotr , 2019\n" +"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Laat alle verhoogde rechten vervallen" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Klik op het pictogram om alle verhoogde rechten te laten vervallen" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Gebruiker selecteren..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Afbreken" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "Authenti_ceren" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Een programma probeert een actie uit te voeren die bepaalde rechten vereist." +" Authenticatie als een van de onderstaande gebruikers is noodzakelijk om " +"deze actie uit te voeren." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Een programma probeert een actie uit te voeren die bepaalde rechten vereist." +" Authenticatie is noodzakelijk om deze actie uit te voeren." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Een programma probeert een actie uit te voeren die bepaalde rechten vereist." +" Authenticatie als de rootgebruiker is noodzakelijk om deze actie uit te " +"voeren." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Wachtwoord:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Details" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Actie:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Klik om %s te bewerken" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Leverancier:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Klik om %s te openen" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Authenticeren" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Wachtwoord voor %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Uw authenticatiepoging is niet geslaagd. Probeer het a.u.b. opnieuw." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Dialoogvenster voor authenticatie werd weggeklikt door de gebruiker" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit Authenticatie-agent" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit Authenticatie-agent voor de MATE-werkomgeving" diff --git a/po/nn.po b/po/nn.po new file mode 100644 index 0000000..15a83b0 --- /dev/null +++ b/po/nn.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Øystein Steffensen-Alværvik , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Øystein Steffensen-Alværvik , 2019\n" +"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/nn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Avbryt" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentiser" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Passord:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/nso.po b/po/nso.po new file mode 100644 index 0000000..d7bbfcb --- /dev/null +++ b/po/nso.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Northern Sotho (https://www.transifex.com/mate/teams/13566/nso/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nso\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Lentšuphetišo:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/oc.po b/po/oc.po new file mode 100644 index 0000000..864b7e0 --- /dev/null +++ b/po/oc.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cfpo Miègjorn-Pirenèus , 2018 +# Cédric Valmary , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Cédric Valmary , 2019\n" +"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/teams/13566/oc/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: oc\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Abandonar totes los privilègis obtenguts" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Clicatz sus l'icòna per abandonar totes los privilègis obtenguts" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Seleccionar un utilizaire..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Anullar" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "S'_autentificar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Una aplicacion ensaja d'efectuar una accion que necessita de privilègis. Per" +" efectuar aquesta accion, un utilizaire de la lista çaijós se deu " +"autentificar." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Una aplicacion ensaja d'efectuar una accion que necessita de privilègis. Per" +" efectuar aquesta accion, es necessari de s'autentificar." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Una aplicacion ensaja d'efectuar una accion que necessita de privilègis. Per" +" efectuar aquesta accion, l'utilizaire principal se deu autentificar." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "Sen_hal :" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalhs" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Accion :" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Clicatz per modificar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Provesidor :" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Clicatz per dobrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "S'autentificar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "Se_nhal per %s :" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Vòstra temptativa d'identificacion a pas capitat. Ensajatz tornamai." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "La fenèstra d'autentificacion es estada regetada per l'utilizaire" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agent d'autentificacion de PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agent d'autentificacion PolicyKit per MATE Desktop" diff --git a/po/or.po b/po/or.po new file mode 100644 index 0000000..e3d5d22 --- /dev/null +++ b/po/or.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Oriya (https://www.transifex.com/mate/teams/13566/or/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "ସମସ୍ତ ଉନ୍ନତ ଅଧିକାରଗୁଡ଼ିକୁ ପକାଇବା ପାଇଁ ଚିତ୍ରସଂକେତକୁ କ୍ଲିକ କରନ୍ତୁ" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "ଚାଳକ ବାଛନ୍ତୁ..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "ବାତିଲ କରନ୍ତୁ (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "ବୈଧିକ୍ରୁତ କରନ୍ତୁ (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"ଗୋଟିଏ ପ୍ରୟୋଗ ପ୍ରାଧିକରଣ ଆବଶ୍ୟକ କରୁଥିବା ଗୋଟିଏ କାର୍ଯ୍ୟକୁ କରିବା ପାଇଁ " +"ଚେଷ୍ଟାକରୁଅଛି।ନିମ୍ନଲିଖିତ ଚାଳକମାନଙ୍କ ମଧ୍ଯରୁ ଜଣକୁ ଏହି କାର୍ଯ୍ୟ କରିବା ପାଇଁ " +"ପ୍ରାଧିକୃତ କରାହୋଇଛି।" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"ଗୋଟିଏ ପ୍ରୟୋଗ ପ୍ରାଧିକରଣ ଆବଶ୍ୟକ କରୁଥିବା ଗୋଟିଏ କାର୍ଯ୍ୟକୁ କରିବା ପାଇଁ " +"ଚେଷ୍ଟାକରୁଅଛି।ଏହି କାର୍ଯ୍ୟ କରିବା ପାଇଁ ବୈଧିକରଣ ଆବଶ୍ୟକ।" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"ଗୋଟିଏ ପ୍ରୟୋଗ ପ୍ରାଧିକରଣ ଆବଶ୍ୟକ କରୁଥିବା ଗୋଟିଏ କାର୍ଯ୍ୟକୁ କରିବା ପାଇଁ " +"ଚେଷ୍ଟାକରୁଅଛି।ଏହି କାର୍ଯ୍ୟ କରିବା ପାଇଁ ମୂଖ୍ୟ ଚାଳକ ଭାବରେ ବୈଧିକୃତ ହେବା ଆବଶ୍ୟକ।" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "ପ୍ରବେଶ ସଂଙ୍କେତ (_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "ବିସ୍ତୃତ ବିବରଣୀ (_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "କାର୍ଯ୍ୟ:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s କୁ ସମ୍ପାଦନ କରିବା ପାଇଁ କ୍ଲିକ କରନ୍ତୁ" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "ବିକ୍ରେତା:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s କୁ ଖୋଲିବା ପାଇଁ ଦବାନ୍ତୁ" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "ପ୍ରମାଣିତ କରନ୍ତୁ" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s ପାଇଁ ପ୍ରବେଶ ସଂକେତ (_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit ବୈଧିକରଣ ସଦସ୍ୟ" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/pa.po b/po/pa.po new file mode 100644 index 0000000..1fc92ef --- /dev/null +++ b/po/pa.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "ਸਭ ਵਧਾਏ ਅਧਿਕਾਰ ਹਟਾਉਣ ਲਈ ਆਈਕਾਨ ਉੱਤੇ ਕਲਿੱਕ ਕਰੋ" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "ਯੂਜ਼ਰ ਚੁਣੋ..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "ਰੱਦ ਕਰੋ(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "ਪਰਮਾਣਕਿਤਾ(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"ਐਪਲੀਕੇਸ਼ਨ ਇੱਕ ਕਾਰਵਾਈ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਰਹੀ ਹੈ, ਜਿਸ ਲਈ ਅਧਿਕਾਰਾਂ ਦੀ ਲੋੜ ਹੈ। " +"ਕਾਰਵਾਈ ਕਰਨ ਲਈ ਹੇਠ ਦਿੱਤੇ ਯੂਜ਼ਰਾਂ ਵਿੱਚੋਂ ਇੱਕ ਵਾਂਗ ਪਰਮਾਣਿਤ ਹੋਵੋ।" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"ਐਪਲੀਕੇਸ਼ਨ ਇੱਕ ਕਾਰਵਾਈ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਰਹੀ ਹੈ, ਜਿਸ ਲਈ ਅਧਿਕਾਰਾਂ ਦੀ ਲੋੜ ਹੈ। " +"ਕਾਰਵਾਈ ਕਰਨ ਲਈ ਪਰਮਾਣਿਤ ਹੋਣ ਦੀ ਲੋੜ ਹੈ।" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"ਐਪਲੀਕੇਸ਼ਨ ਇੱਕ ਕਾਰਵਾਈ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਰਹੀ ਹੈ, ਜਿਸ ਲਈ ਅਧਿਕਾਰਾਂ ਦੀ ਲੋੜ ਹੈ। " +"ਕਾਰਵਾਈ ਕਰਨ ਲਈ ਸੁਪਰ ਯੂਜ਼ਰਾਂ ਵਾਂਗ ਪਰਮਾਣਿਤ ਹੋਵੋ।" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "ਪਾਸਵਰਡ(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "ਵੇਰਵਾ(_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "ਐਕਸ਼ਨ:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s ਸੋਧਣ ਲਈ ਕਲਿੱਕ ਕਰੋ" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "ਵੇਂਡਰ:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s ਖੋਲ੍ਹਣ ਲਈ ਕਲਿੱਕ ਕਰੋ" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "ਪਰਮਾਣਿਤ" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s ਲਈ ਪਾਸਵਰਡ(_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "ਪਾਲਸੀਕਿੱਟ ਪਰਮਾਣਕਿਤਾ ਏਜੰਟ" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/pl.po b/po/pl.po new file mode 100644 index 0000000..b43906d --- /dev/null +++ b/po/pl.po @@ -0,0 +1,126 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Piotr Strębski , 2018 +# Stefano Karapetsas , 2018 +# Marcin Kralka , 2018 +# Przemek P , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Przemek P , 2019\n" +"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Utrać wszystkie podwyższone uprawnienia" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Kliknięcie ikony spowoduje utratę wszystkich podwyższonych upoważnień" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Wybór użytkownika..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Anuluj" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Uwierzytelnij" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Program próbuje dokonać działania wymagającego upoważnienia. Aby dokonać " +"tego działania wymagane jest uwierzytelnienie jako jeden z poniższych " +"użytkowników." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Program próbuje dokonać działania wymagającego upoważnienia. Aby dokonać " +"tego działania wymagane jest uwierzytelnienie." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Program próbuje dokonać działania wymagającego upoważnienia. Aby dokonać " +"tego działania wymagane jest uwierzytelnienie jako administrator." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Hasło:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "S_zczegóły" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Działanie:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Kliknięcie otworzy %s do modyfikacji" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Dostawca:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Kliknięcie otworzy %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Uwierzytelnianie" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Hasło użytkownika %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"Twoja próba uwierzytelnienia była niepomyślna. Proszę spróbować ponownie." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Okno uwierzytelnienia zostało odrzucone przez użytkownika" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agent uwierzytelniania PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agent uwierzytelniania PolicyKit dla MATE" diff --git a/po/ps.po b/po/ps.po new file mode 100644 index 0000000..674de3c --- /dev/null +++ b/po/ps.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Pushto (https://www.transifex.com/mate/teams/13566/ps/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "بندول_" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr ":تېرنويې_" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/pt.po b/po/pt.po new file mode 100644 index 0000000..1b7fcce --- /dev/null +++ b/po/pt.po @@ -0,0 +1,128 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Sérgio Marques , 2018 +# Carlos Moreira, 2018 +# Stefano Karapetsas , 2018 +# Manuela Silva , 2018 +# José Vieira , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: José Vieira , 2019\n" +"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Retirar todos os privilégios concedidos" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Clique no ícone para retirar todos os privilégios concedidos" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Escolha o utilizador..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancelar" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autenticar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Uma aplicação está a tentar executar uma ação que requer privilégios. É " +"necessária uma autenticação como um dos utilizadores para executar esta " +"ação." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Uma aplicação está a tentar executar uma ação que requer privilégios. É " +"necessária autenticação para executar esta ação." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Uma aplicação está a tentar executar uma ação que requer privilégios. É " +"necessária autenticação como superutilizador para executar esta ação." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Senha:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalhes" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Ação:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Clique para editar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Fornecedor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Clique para abrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autenticar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Senha para %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"A tentativa de autenticação não foi bem sucedida. Por favor, tente " +"novamente." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "A janela de autenticação foi rejeitada pelo utilziador" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agente de Autenticação PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agente de Autenticação PolicyKit do Ambiente MATE" diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100644 index 0000000..4ce022a --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Marcus Vinícius Marques, 2018 +# Lucas Mezêncio , 2018 +# Marcelo Ghelman , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Marcelo Ghelman , 2019\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Revogar todos os privilégios elevados" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Clique o ícone para descartar todos os privilégios elevados" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Escolha um usuário..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Cancelar" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autenticar" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Um aplicativo está tentando executar uma ação que requer privilégios. É " +"necessária uma autenticação como um dos usuários abaixo para executar esta " +"ação." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Um aplicativo está tentando executar uma ação que requer privilégios. É " +"necessária uma autenticação para executar esta ação." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Um aplicativo está tentando executar uma ação que requer privilégios. É " +"necessária uma autenticação como superusuário para executar esta ação." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Senha:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalhes" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Ação:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Clique para editar %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Fornecedor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Clique para abrir %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autenticar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "Senha _para %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Sua tentativa de autenticação falhou. Tente novamente." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "O diálogo de autenticação foi fechado pelo usuário" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agente de autenticação PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agente de autenticação PolicyKit para o ambiente de trabalho MATE" diff --git a/po/ro.po b/po/ro.po new file mode 100644 index 0000000..c06404d --- /dev/null +++ b/po/ro.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# corneliu.e , 2018 +# sidro , 2018 +# Daniel , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Daniel , 2019\n" +"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Revocă privilegiile administrative" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Clic pe pictogramă pentru a renunța la toate privilegiile ridicate" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Alegere utilizator..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Renunță" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentifică" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"O aplicație încearcă să efectueze o acțiune ce necesită privilegii. Pentru a" +" efectua această acțiune este necesară autentificarea ca unul din " +"utilizatorii de mai jos." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"O aplicație încearcă să efectueze o acțiune ce necesită privilegii. Pentru a" +" efectua această acțiune este necesară autentificarea." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"O aplicație încearcă să efectueze o acțiune ce necesită privilegii. Pentru a" +" efectua această acțiune este necesară autentificarea ca administrator." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Parolă:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detalii" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Acțiune:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Clic pentru a edita %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Producător:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Clic pentru a deschide %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autentifică" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Parolă pentru %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Încercarea de autentificare a eșuat. Încearcă din nou." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Fereastra pentru autentificare a fost închisă de utilizator" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agent de autentificare PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agent de autentificare PolicyKit" diff --git a/po/ru.po b/po/ru.po new file mode 100644 index 0000000..4b979aa --- /dev/null +++ b/po/ru.po @@ -0,0 +1,126 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Дмитрий Михирев, 2018 +# AlexL , 2018 +# Alexei Sorokin , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Alexei Sorokin , 2019\n" +"Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Сбросить все повышенные привилегии" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Нажмите на иконку для сброса всех повышенных привилегий" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Выберите пользователя..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "О_тмена" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Аутентификация" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Приложение пытается выполнить действие, которое требует дополнительных " +"привилегий. Для выполнения этого действия необходима аутентификация под " +"именем одного из перечисленных ниже пользователей." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Приложение пытается выполнить действие, которое требует дополнительных " +"привилегий. Для выполнения этого действия требуется аутентификация." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Приложение пытается выполнить действие, которое требует дополнительных " +"привилегий. Для выполнения этого действия необходима аутентификация " +"пользователя root." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Пароль:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Сведения" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Действие:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Нажмите, чтобы изменить %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Поставщик:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Нажмите, чтобы открыть %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Аутентификация" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Пароль пользователя %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Ваша попытка аутентификации неудачна. Пожалуйста, попробуйте ещё раз." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Диалог аутентификации был отвергнут пользователем" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Агент аутентификации PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Агент аутентификации PolicyKit для рабочей среды MATE" diff --git a/po/si.po b/po/si.po new file mode 100644 index 0000000..89a86dc --- /dev/null +++ b/po/si.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Darshana Weerasingha , 2018 +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "අවලංගු කරන්න (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_රහස්‍ය පදය:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/sk.po b/po/sk.po new file mode 100644 index 0000000..3d7726f --- /dev/null +++ b/po/sk.po @@ -0,0 +1,128 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Ján Ďanovský , 2018 +# Dušan Kazik , 2018 +# Stefano Karapetsas , 2018 +# Juraj Oravec, 2018 +# Tibor Kaputa , 2018 +# peter, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: peter, 2019\n" +"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Zahodiť všetky zvýšené práva" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Kliknite na ikonu, aby sa zahodili zvýšené práva" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Vybrať používateľa..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Zrušiť" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Overiť totožnosť" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Program sa pokúša vykonať operáciu, ktorá vyžaduje práva. Na vykonanie tejto" +" operácie je vyžadované overenie totožnosti niektorého z uvedených " +"používateľov." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Program sa pokúša vykonať operáciu, ktorá vyžaduje práva. Na vykonanie tejto" +" operácie je vyžadované overenie totožnosti." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Program sa pokúša vykonať operáciu, ktorá vyžaduje práva. Na vykonanie tejto" +" operácie je vyžadované overenie totožnosti superpoužívateľa." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Heslo:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "Po_drobnosti" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Operácia:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Kliknite pre úpravu %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Dodávateľ:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Kliknite pre otvorenie %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Overenie totožnosti" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Heslo používateľa %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"Váš pokus o overenie totožnosti bol neúspešný. Prosím, skúste to znovu." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Dialógové okno s overením totožnosti bolo zrušené používateľom." + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agent PolicyKit na overovanie totožnosti" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit Authentication Agent pre MATE Desktop" diff --git a/po/sl.po b/po/sl.po new file mode 100644 index 0000000..ff99282 --- /dev/null +++ b/po/sl.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Helena S , 2018 +# Damir Jerovšek , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Damir Jerovšek , 2019\n" +"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Kliknite na ikono za preklic vseh posebnih dovoljenj" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Izbor uporabnika ..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Prekliči" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Overi" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Program poskuša izvesti dejanje, ki zahteva posebna dovoljenja. Dejanje " +"lahko odobrijo izpisani uporabniki." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Program poskuša izvesti dejanje, ki zahteva posebna dovoljenja. Za izvedbo " +"dejanja je zahtevana overitev." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Program poskuša izvesti dejanje, ki zahteva posebna dovoljenja. Dejanje je " +"mogoče izvesti le s skrbniškim dovoljenjem." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Geslo:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Podrobnosti" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Dejanje:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Kliknite za urejanje %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Ponudnik:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Kliknite za odpiranje %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Overi" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Geslo za %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Poskus overitve ni uspel. Poskusite ponovno." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Overitveno pogovorno okno je bilo preklicano s strani uporabnika" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Posrednik overjanja PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Posrednik overitve PolicyKit za namizje MATE" diff --git a/po/sq.po b/po/sq.po new file mode 100644 index 0000000..3ce0b0c --- /dev/null +++ b/po/sq.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Indrit Bashkimi , 2018 +# Ardit Dani , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Ardit Dani , 2019\n" +"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Hidhni të gjitha privilegjet e ngritura" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Klikoni ikonën për të hequr të gjitha privilegjet e ngritura" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Zgjidhni përdoruesin..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Anulo" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Autentikimi" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Një aplikacion po përpiqet të kryejë një veprim që kërkon privilegje. " +"Vërtetim si një nga përdoruesit më poshtë kërkohet për të kryer këtë veprim." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Një aplikacion po përpiqet të kryejë një veprim që kërkon privilegje. " +"Vërtetim kërkohet për të kryer këtë veprim." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Një aplikacion po përpiqet të kryejë një veprim që kërkon privilegje. " +"Vërtetim si përdorues super kërkohet për të kryer këtë veprim." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Fjalëkalimi:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detaje" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Veprim:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Kliko për redaktim %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Shitës:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Kliko për hapje %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autentikuar" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Fjalëkalimi për %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" +"Përpjekja juaj për vërtetim nuk ishte e suksesshme. Ju lutemi provoni " +"përsëri." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Dialogu i vërtetimit u hodh poshtë nga përdoruesi" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Agjenti Vërtetimit Politikës" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Agjenti Vërtetimit Politikës për MATE Desktop" diff --git a/po/sr.po b/po/sr.po new file mode 100644 index 0000000..27ab292 --- /dev/null +++ b/po/sr.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Мирослав Николић , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Мирослав Николић , 2019\n" +"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"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" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Одбаци све високе повластице" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Притисните на иконицу да одбаците све високе повластице" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Изабери корисника..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Откажи" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "Потврди _идентитет" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Једна апликација покушава да изврши радњу која захтева извесна овлашћења. " +"Морате да потврдите да сте један од наведених корисника за извршавање ове " +"радње." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Једна апликација покушава да изврши радњу која захтева извесна овлашћења. " +"Морате да потврдите идентитет за извршавање ове радње." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Једна апликација покушава да изврши радњу која захтева извесна овлашћења. " +"Морате да се представите као администратор за извршавање ове радње." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Лозинка:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Појединости" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Радња:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Притисните да уредите „%s“" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Продавац:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Притисните да отворите „%s“" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Потврди идентитет" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Лозинка за %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Ваш покушај потврђивања идентитета није успео. Покушајте поново." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Корисник је одбацио прозорче потврђивања идентитета" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Агент потврђивања идентитета Прибор политике" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" +"Прибор политике је агент за потврђивање идентитета за Мејтову радну површ" diff --git a/po/sr@latin.po b/po/sr@latin.po new file mode 100644 index 0000000..240ee70 --- /dev/null +++ b/po/sr@latin.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr@latin\n" +"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" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Otkaži" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Potvrdi identitet" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Lozinka:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/sv.po b/po/sv.po new file mode 100644 index 0000000..735b953 --- /dev/null +++ b/po/sv.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Patrik Nilsson , 2018 +# Daniel Gullbransen , 2018 +# Tobias Lekare , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Tobias Lekare , 2019\n" +"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Släpp alla förhöjda behörigheter" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Klicka på ikonen för att släppa alla upphöjda privilegier" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Välj användare..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Avbryt" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "A_utentisera" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Ett program försöker genomföra en åtgärd som kräver privilegier. " +"Autentisering som en av användarna nedan krävs för att genomföra denna " +"åtgärd." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Ett program försöker genomföra en åtgärd som kräver privilegier. " +"Autentisering krävs för att genomföra denna åtgärd." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Ett program försöker genomföra en åtgärd som kräver privilegier. " +"Autentisering som superanvändaren krävs för att genomföra denna åtgärd." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Lösenord:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detaljer" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Åtgärd:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Klicka för att redigera %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Leverantör:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Klicka för att öppna %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Autentisera" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Lösenord för %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Autentiseringen misslyckades. Prova igen." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Autentiserings dialogen blev avvisade av användaren" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Autentiseringsagent för PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit autentiseringsagent för MATE skrivbordsmiljön" diff --git a/po/ta.po b/po/ta.po new file mode 100644 index 0000000..95ce9fb --- /dev/null +++ b/po/ta.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Click the icon to drop all elevated privileges" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "பயனரைத் தேர்ந்தெடு..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "ரத்து (_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "அங்கீகாரம் (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "(_P) கடவுச்சொல்:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "விவரங்கள் (_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "செயல்:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%sஐ திருத்த கிளிக் செய்" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "விற்பனையாளர்:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%sஐ திறப்பதற்கு கிளிக் செய்" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "அங்கீகாரம்" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%sக்கான கடவுச்சொல் (_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit அங்கீகார முகவர்" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/te.po b/po/te.po new file mode 100644 index 0000000..6463dce --- /dev/null +++ b/po/te.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Telugu (https://www.transifex.com/mate/teams/13566/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "ఉద్దరించిన అన్ని అనుమతులను తీసివేయుటకు ప్రతిమపై నొక్కుము" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "వినియోగదారి యెంపికచేయుము..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "రద్దు(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "ధృవీకరించు (_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"ఒక చర్యను జరుపుటకు ప్రయత్నిస్తున్న అనువర్తనముకు అనుమతులు కావలసివున్నవి. ఈ " +"చర్యను జరుపుటకు క్రింది వినియోగదారులలో వొకరిగా ధృవీకరించవలసి వుంది." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"ఒక చర్యను జరుపుటకు ప్రయత్నిస్తున్న అనువర్తనముకు అనుమతులు కావలసివున్నవి. ఈ " +"చర్యను జరుపుటకు ధృవీకరణము కావలసివుంది." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"ఒక చర్యను జరుపుటకు ప్రయత్నిస్తున్న అనువర్తనముకు అనుమతులు కావలసివున్నవి. ఈ " +"చర్యను జరుపుటకు సూపర్ వినియోగదారి వలె ధృవీకరించవలసి వుంది." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "సంకేతపదం(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "వివరములు (_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "చర్య:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s సరికూర్చుటకు నొక్కుము" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "అమ్మకందారు:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s తెరుచుటకు నొక్కుము" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "ధృవీకరించు" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s కొరకు సంకేతపదము (_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "పాలసీకిట్ ధృవీకరణ ప్రతినిధి" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/th.po b/po/th.po new file mode 100644 index 0000000..39e17d0 --- /dev/null +++ b/po/th.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Rockers , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Rockers , 2019\n" +"Language-Team: Thai (https://www.transifex.com/mate/teams/13566/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "ยกเลิกสิทธิ์ที่ได้เพิ่มขึ้นมา" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "คลิกไอคอนเพื่อยกเลิกสิทธิ์ที่ได้เพิ่มขึ้นมา" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "เลือกผู้ใช้..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_ยกเลิก" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_ยืนยันตัวบุคคล" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"มีโปรแกรมพยายามจะทำปฏิบัติการที่ต้องอาศัยสิทธิ์พิเศษ " +"ซึ่งต้องยืนยันตัวบุคคลว่าเป็นผู้ใช้คนใดคนหนึ่งต่อไปนี้ก่อนที่จะทำได้" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"มีโปรแกรมพยายามจะทำปฏิบัติการที่ต้องอาศัยสิทธิ์พิเศษ " +"ซึ่งต้องยืนยันตัวบุคคลก่อนที่จะทำได้" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"มีโปรแกรมพยายามจะทำปฏิบัติการที่ต้องอาศัยสิทธิ์พิเศษ " +"ซึ่งต้องยืนยันตัวบุคคลว่าเป็นผู้ดูแลระบบก่อนที่จะทำได้" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "รหัส_ผ่าน:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_รายละเอียด" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "การกระทำ:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "คลิกเพื่อแก้ไข %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "ผู้จำหน่าย:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "คลิกเพื่อเปิด %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "ยืนยันตัวบุคคล" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_รหัสผ่านสำหรับ %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "การพยายามยืนยันตัวบุคคลของคุณไม่สำเร็จ กรุณาลองใหม่อีกครั้ง" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "กล่องโต้ตอบการยืนยันตัวบุคคลถูกยกเลิกโดยผู้ใช้" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "ตัวกลางสำหรับยืนยันตัวบุคคล PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "ตัวกลางสำหรับยืนยันตัวบุคคล PolicyKit สำหรับพื้นโต๊ะของ MATE" diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 0000000..88ed1e6 --- /dev/null +++ b/po/tr.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# tarakbumba , 2018 +# Stefano Karapetsas , 2018 +# mauron, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: mauron, 2019\n" +"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Tüm yüksek yetkilerden vazgeç" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Tüm yüksek yetkilerden vazgeçmek için ikonu tıklayın " + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Kullanıcı seç..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Vazgeç" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "Kimlik _Doğrula" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Bir uygulama yetki gerektiren bir eylem gerçekleştirmeye teşebbüs ediyor. Bu" +" eylemin gerçekleştirilmesi için aşağıdaki kullanıcılardan biri olarak " +"kimlik doğrulaması gereklidir." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Bir uygulama yetki gerektiren bir eylem gerçekleştirmeye teşebbüs ediyor. Bu" +" eylemin gerçekleştirilmesi için kimlik doğrulaması gereklidir." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Bir uygulama yetki gerektiren bir eylem gerçekleştirmeye teşebbüs ediyor. Bu" +" eylemin gerçekleştirilmesi için yönetici (super user) olarak kimlik " +"doğrulaması gereklidir." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Parola:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Detaylar" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Faaliyet:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s unsurunu düzenlemek için tıklayın" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Satıcı:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s unsurunu açmak için tıklayın" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Kimlik Doğrula" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s için _parola:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Kimlik doğrulama teşebbüssünüz başarısız oldu. Lütfen tekrar deneyin." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Kimlik doğrulama diyaloğu kullanıcı tarafından kapatıldı" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit Kimlik Doğrulama Aracı" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "MATE Masaüstü için PolicyKit Kimlik Doğrulama Aracı" diff --git a/po/tt.po b/po/tt.po new file mode 100644 index 0000000..e9e16d5 --- /dev/null +++ b/po/tt.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Tatar (https://www.transifex.com/mate/teams/13566/tt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tt\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Sersüz:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ug.po b/po/ug.po new file mode 100644 index 0000000..63615ed --- /dev/null +++ b/po/ug.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Uighur (https://www.transifex.com/mate/teams/13566/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "دەلىللە(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "ئىم(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/uk.po b/po/uk.po new file mode 100644 index 0000000..6399d2c --- /dev/null +++ b/po/uk.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# Микола Ткач , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Микола Ткач , 2019\n" +"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Скинути усі підвищені привілеї" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Клацніть на піктограмі для скидання усіх підвищених привілеїв" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Виберіть користувача..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Скасувати" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Розпізнання" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Програма намагається виконати дію, яка потребує додаткових привілеїв. Для " +"виконання цієї дії потрібне розпізнання від імени одного з перелічених нижче" +" користувачів." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Програма намагається виконати дію, яка потребує додаткових привілеїв. Для " +"виконання цієї дії потрібне розпізнання." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Програма намагається виконати дію, яка потребує додаткових привілеїв. Для " +"виконання цієї дії потрібне розпізнання користувача root." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Пароль:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Відомості" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Дія:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Натисніть, щоб змінити %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Виробник:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Натисніть, щоб відкрити %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Розпізання" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Пароль користувача %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Ваша спроба розпізнання невдала. Будь ласка, спробуйте ще раз." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Діялоґ розпізнання був відкинутий користувачем" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "Агент розпізнання PolicyKit" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "Агент розпізнання PolicyKit для стільниці MATE" diff --git a/po/ur.po b/po/ur.po new file mode 100644 index 0000000..8a3d9ea --- /dev/null +++ b/po/ur.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# mauron, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: mauron, 2019\n" +"Language-Team: Urdu (https://www.transifex.com/mate/teams/13566/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "تمام اجازے ساقط کرنے کے لیے آئکن پر کلک کریں" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "صارف منتخب کریں..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_ملتوی" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_توثیق کریں" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"کوئی اطلاقیہ ایسا عمل انجام دینا چاہ رہا ہے جس کے لیے اجازوں کی ضرورت ہے. اس" +" عمل کی انجام دہی کے لیے ذیل کے صارفین کی توثیق درکار ہے." + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"کوئی اطلاقیہ ایسا عمل انجام دینا چاہ رہا ہے جس کے لیے اجازوں کی ضرورت ہے. اس" +" عمل کی انجام دہی کے لیے توثیق درکار ہے." + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"کوئی اطلاقیہ ایسا عمل انجام دینا چاہ رہا ہے جس کے لیے اجازوں کی ضرورت ہے. اس" +" عمل کی انجام دہی کے لیے سُپر صارف کی توثیق درکار ہے." + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_پاس ورڈ:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_تفصیلات" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "عمل:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "%s کو مدون کرنے کے لیے کلک کریں" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "فروشندہ:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "%s کو کھولنے کے لیے کلک کریں" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "توثیق کریں" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_پاس ورڈ برائے %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "پالیسی کِٹ PolicyKit توثیقی ایجنٹ" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/ur_PK.po b/po/ur_PK.po new file mode 100644 index 0000000..3bf80db --- /dev/null +++ b/po/ur_PK.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Urdu (Pakistan) (https://www.transifex.com/mate/teams/13566/ur_PK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur_PK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_پاس ورڈ:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/uz.po b/po/uz.po new file mode 100644 index 0000000..77f1cee --- /dev/null +++ b/po/uz.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# muzaffar habibullayev , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: muzaffar habibullayev , 2019\n" +"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Foydalanuvchi tanlash..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "_Bekor qilish" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Tasdiqlash" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Maxfiy so'z:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Tasdiqlash" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/vi.po b/po/vi.po new file mode 100644 index 0000000..d3cb3bb --- /dev/null +++ b/po/vi.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Horazone Detex , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Horazone Detex , 2019\n" +"Language-Team: Vietnamese (https://www.transifex.com/mate/teams/13566/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "Bỏ tất cả các đặc quyền cao cấp" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "Bấm vào biểu tượng để bỏ tất cả các đặc quyền cao cấp" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "Chọn người dùng..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "Th_ôi" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "_Xác thực" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" +"Một ứng dụng đang cố gắng thực hiện một hành động cần đặc quyền. Sự xác thực" +" một trong các người dùng phía dưới là được yêu cầu để thực hiện hành động " +"này. " + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" +"Một ứng dụng đang cố gắng thực hiện một hành động cần đặc quyền. Xác thực là" +" cần thiết để thực hiện hành động này. " + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" +"Một ứng dụng đang cố gắng thực hiện một hành động cần đặc Xác thực siêu " +"người dùng là cần thiết để thực hiện hành động này. " + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Mật khẩu:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "_Chi tiết" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "Hành động :" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "Bấm để chỉnh sửa %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "Vendor:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "Click to open %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "Xác thực" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "_Mật khẩu cho %s:" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "Phiên xác thực của bạn đã không thành công. Vui lòng thử lại." + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "Hộp thoại xác thữ đã bị bỏ qua bởi người dùng" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit Authentication Agent" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "PolicyKit Authentication Agent cho môi trường MATE" diff --git a/po/wa.po b/po/wa.po new file mode 100644 index 0000000..57ef5ee --- /dev/null +++ b/po/wa.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Walloon (https://www.transifex.com/mate/teams/13566/wa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: wa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Sicret:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/xh.po b/po/xh.po new file mode 100644 index 0000000..4679866 --- /dev/null +++ b/po/xh.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Xhosa (https://www.transifex.com/mate/teams/13566/xh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: xh\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "I-_Password:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po new file mode 100644 index 0000000..d604643 --- /dev/null +++ b/po/zh_CN.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Wylmer Wang, 2018 +# Stefano Karapetsas , 2018 +# Mingye Wang , 2018 +# Wolfgang Ulbrich , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2019\n" +"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "放下所有提升的权限" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "点击图标来放下所有提升的权限" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "选择用户..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "取消" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "授权(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "一个程序正试图执行一个需要特权的动作。要求授权为下列用户之一来执行该动作。" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "一个程序正试图执行一个需要特权的动作。要求授权以执行该动作。" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "一个程序正试图执行一个需要特权的动作。要求授权为超级用户来执行该动作。" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "密码(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "详情(_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "动作:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "单击以编辑 %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "厂商:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "单击以打开 %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "授权" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s 的密码(_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "验证失败。请再试一次。" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "验证对话框被使用者关闭" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit 认证代理" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "MATE 桌面的 PolicyKit 认证代理" diff --git a/po/zh_HK.po b/po/zh_HK.po new file mode 100644 index 0000000..2a4e461 --- /dev/null +++ b/po/zh_HK.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2019\n" +"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/mate/teams/13566/zh_HK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_HK\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "按下這個圖示放棄所有已提升的權限" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "選擇使用者..." + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "取消(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "驗證(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須授權為下列使用者之一才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須獲得授權才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須授權為超級使用者才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "密碼(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "詳細資料(_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "動作:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "按下這裏編輯 %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "廠商:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "按一下來開啟 %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "驗證" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s 的密碼 (_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit 驗證代理程式" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po new file mode 100644 index 0000000..ea15448 --- /dev/null +++ b/po/zh_TW.po @@ -0,0 +1,117 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# 趙惟倫 , 2018 +# 黃柏諺 , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: 黃柏諺 , 2019\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mate/teams/13566/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "放棄所有已提升的權限" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "按下這個圖示放棄所有已提升的權限" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "選擇使用者…" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "取消(_C)" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "驗證(_A)" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須授權為下列使用者之一才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須獲得授權才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "有應用程式試圖進行需要權限的動作。必須授權為超級使用者才能進行這個動作。" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "密碼(_P):" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "詳細資料(_D)" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "動作:" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "按下這裡編輯 %s" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "廠商:" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "按一下來開啟 %s" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "驗證" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "%s 的密碼(_P):" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "您的驗證嘗試未成功。請再試一次。" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "驗證對話框已被使用者退回" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "PolicyKit 驗證代理程式" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "MATE 桌面環境的 PolicyKit 驗證代理程式" diff --git a/po/zu.po b/po/zu.po new file mode 100644 index 0000000..ae3a756 --- /dev/null +++ b/po/zu.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-polkit package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stefano Karapetsas , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-polkit 1.23.0\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2019-11-07 09:47+0100\n" +"PO-Revision-Date: 2018-03-11 20:32+0000\n" +"Last-Translator: Stefano Karapetsas , 2018\n" +"Language-Team: Zulu (https://www.transifex.com/mate/teams/13566/zu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/main.c:163 +msgid "Drop all elevated privileges" +msgstr "" + +#: src/main.c:187 +msgid "Click the icon to drop all elevated privileges" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:275 +msgid "Select user..." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:310 +#, c-format +msgid "%s (%s)" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:664 +msgid "_Cancel" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:669 +msgid "_Authenticate" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:710 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as one of the users below is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:718 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:724 +msgid "" +"An application is attempting to perform an action that requires privileges. " +"Authentication as the super user is required to perform this action." +msgstr "" + +#: src/polkitmateauthenticationdialog.c:760 src/polkitmateauthenticator.c:301 +msgid "_Password:" +msgstr "_Igama lokungena:" + +#: src/polkitmateauthenticationdialog.c:778 +msgid "_Details" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:836 +msgid "Action:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:839 +#, c-format +msgid "Click to edit %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:856 +msgid "Vendor:" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:858 +#, c-format +msgid "Click to open %s" +msgstr "" + +#: src/polkitmateauthenticationdialog.c:1016 +msgid "Authenticate" +msgstr "" + +#: src/polkitmateauthenticator.c:297 +#, c-format +msgid "_Password for %s:" +msgstr "" + +#: src/polkitmateauthenticator.c:458 +msgid "Your authentication attempt was unsuccessful. Please try again." +msgstr "" + +#: src/polkitmatelistener.c:164 +msgid "Authentication dialog was dismissed by the user" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:3 +msgid "PolicyKit Authentication Agent" +msgstr "" + +#: src/polkit-mate-authentication-agent-1.desktop.in.in:4 +msgid "PolicyKit Authentication Agent for the MATE Desktop" +msgstr "" diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..ac2131d --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,57 @@ + +FULL_LIBEXECDIR=$(libexecdir) + +desktopdir = $(sysconfdir)/xdg/autostart +desktop_in_files = polkit-mate-authentication-agent-1.desktop.in +desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) + +polkit-mate-authentication-agent-1.desktop.in : polkit-mate-authentication-agent-1.desktop.in.in Makefile + $(AM_V_GEN)sed \ + -e "s|\@FULL_LIBEXECDIR\@|$(FULL_LIBEXECDIR)|" \ + $< > $@ + +$(desktop_DATA): $(desktop_in_files) + $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ + +libexec_PROGRAMS = polkit-mate-authentication-agent-1 + +polkit_mate_authentication_agent_1_SOURCES = \ + polkitmatelistener.h polkitmatelistener.c \ + polkitmateauthenticator.h polkitmateauthenticator.c \ + polkitmateauthenticationdialog.h polkitmateauthenticationdialog.c \ + main.c \ + $(BUILT_SOURCES) + +polkit_mate_authentication_agent_1_CPPFLAGS = \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"polkit-mate-1\" \ + -DDATADIR=\""$(pkgdatadir)"\" \ + -DMATELOCALEDIR=\""$(datadir)/locale"\" \ + -DPOLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE \ + $(AM_CPPFLAGS) + +polkit_mate_authentication_agent_1_CFLAGS = \ + $(GTK_CFLAGS) \ + $(GLIB_CFLAGS) \ + $(POLKIT_AGENT_CFLAGS) \ + $(POLKIT_GOBJECT_CFLAGS) \ + $(APPINDICATOR_CFLAGS) \ + $(WARN_CFLAGS) \ + $(AM_CFLAGS) + +polkit_mate_authentication_agent_1_LDFLAGS = \ + $(AM_LDFLAGS) + +polkit_mate_authentication_agent_1_LDADD = \ + $(GTK_LIBS) \ + $(GLIB_LIBS) \ + $(POLKIT_AGENT_LIBS) \ + $(POLKIT_GOBJECT_LIBS) \ + $(APPINDICATOR_LIBS) + +EXTRA_DIST = \ + polkit-mate-authentication-agent-1.desktop.in \ + polkit-mate-authentication-agent-1.desktop.in.in + +clean-local : + rm -f *~ polkit-mate-authentication-agent-1.desktop polkit-mate-authentication-agent-1.desktop.in diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..68f34ef --- /dev/null +++ b/src/main.c @@ -0,0 +1,475 @@ +/* + * Copyright (C) 2009 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + * Author: David Zeuthen + */ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include +#include +#include +#include +#include + +#ifdef HAVE_APPINDICATOR +#include +#endif + +#include "polkitmatelistener.h" + +/* session management support for auto-restart */ +#define SM_DBUS_NAME "org.gnome.SessionManager" +#define SM_DBUS_PATH "/org/gnome/SessionManager" +#define SM_DBUS_INTERFACE "org.gnome.SessionManager" +#define SM_CLIENT_DBUS_INTERFACE "org.gnome.SessionManager.ClientPrivate" + + +/* the Authority */ +static PolkitAuthority *authority = NULL; + +/* the session we are servicing */ +static PolkitSubject *session = NULL; + +/* the current set of temporary authorizations */ +static GList *current_temporary_authorizations = NULL; + +#ifdef HAVE_APPINDICATOR +static AppIndicator *app_indicator = NULL; +#else +static GtkStatusIcon *status_icon = NULL; +#endif + +static GDBusProxy *sm_proxy; +static GDBusProxy *client_proxy = NULL; + +static GMainLoop *loop; + +static void +revoke_tmp_authz_cb (GObject *source_object, + GAsyncResult *res, + gpointer user_data) +{ + GError *error; + + error = NULL; + polkit_authority_revoke_temporary_authorizations_finish (POLKIT_AUTHORITY (source_object), + res, + &error); + if (error != NULL) + { + g_warning ("Error revoking temporary authorizations: %s", error->message); + g_error_free (error); + } +} + +static void +revoke_tmp_authz (void) +{ + polkit_authority_revoke_temporary_authorizations (authority, + session, + NULL, + revoke_tmp_authz_cb, + NULL); +} + +#ifdef HAVE_APPINDICATOR +static void +on_menu_item_activate (GtkMenuItem *menu_item, + gpointer user_data) +{ + revoke_tmp_authz (); +} +#else +static void +on_status_icon_activate (GtkStatusIcon *status_icon, + gpointer user_data) +{ + revoke_tmp_authz (); +} + +static void +on_status_icon_popup_menu (GtkStatusIcon *status_icon, + guint button, + guint activate_time, + gpointer user_data) +{ + revoke_tmp_authz (); +} +#endif + +static void +update_temporary_authorization_icon_real (void) +{ + +#if 0 + GList *l; + g_debug ("have %d tmp authorizations", g_list_length (current_temporary_authorizations)); + for (l = current_temporary_authorizations; l != NULL; l = l->next) + { + PolkitTemporaryAuthorization *authz = POLKIT_TEMPORARY_AUTHORIZATION (l->data); + + g_debug ("have tmp authz for action %s (subject %s) with id %s (obtained %d, expires %d)", + polkit_temporary_authorization_get_action_id (authz), + polkit_subject_to_string (polkit_temporary_authorization_get_subject (authz)), + polkit_temporary_authorization_get_id (authz), + (gint) polkit_temporary_authorization_get_time_obtained (authz), + (gint) polkit_temporary_authorization_get_time_expires (authz)); + } +#endif + + /* TODO: + * + * - we could do something fancy like displaying a window with the tmp authz + * when the icon is clicked... + * + * - we could do some work using polkit_subject_exists() to ignore tmp authz + * for subjects that no longer exists.. this is because temporary authorizations + * are only valid for the subject that trigger the authentication dialog. + * + * Maybe the authority could do this, would probably involve some polling, but + * it seems cleaner to do this server side. + */ + + if (current_temporary_authorizations != NULL) + { + /* show icon */ +#ifdef HAVE_APPINDICATOR + if (app_indicator == NULL) + { + GtkWidget *item, *menu; + + app_indicator = app_indicator_new ("mate-polkit", + "dialog-password", + APP_INDICATOR_CATEGORY_SYSTEM_SERVICES); + + item = gtk_menu_item_new_with_label (_("Drop all elevated privileges")); + g_signal_connect (item, + "activate", + G_CALLBACK (on_menu_item_activate), + NULL); + menu = gtk_menu_new (); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); + gtk_widget_show_all (menu); + + app_indicator_set_menu (app_indicator, + GTK_MENU (menu)); + app_indicator_set_status (app_indicator, + APP_INDICATOR_STATUS_ACTIVE); + } + else + /*Reshow icon from existing appindicator */ + app_indicator_set_status (app_indicator, + APP_INDICATOR_STATUS_ACTIVE); + +#else + if (status_icon == NULL) + { + status_icon = gtk_status_icon_new_from_icon_name ("dialog-password"); + gtk_status_icon_set_tooltip_text (status_icon, + _("Click the icon to drop all elevated privileges")); + g_signal_connect (status_icon, + "activate", + G_CALLBACK (on_status_icon_activate), + NULL); + g_signal_connect (status_icon, + "popup-menu", + G_CALLBACK (on_status_icon_popup_menu), + NULL); + } +#endif + } + else + { + /* hide icon */ +#ifdef HAVE_APPINDICATOR + if (app_indicator != NULL) + { + /* keep the app_indicator, hide the icon or it won't come back*/ + app_indicator_set_status (app_indicator, + APP_INDICATOR_STATUS_PASSIVE); + } +#else + if (status_icon != NULL) + { + gtk_status_icon_set_visible (status_icon, FALSE); + g_object_unref (status_icon); + status_icon = NULL; + } +#endif + } +} + +static void +enumerate_temporary_authorizations_cb (GObject *source_object, + GAsyncResult *res, + gpointer user_data) +{ + PolkitAuthority *authority = POLKIT_AUTHORITY (source_object); + GList *temporary_authorizations; + GError *error; + + temporary_authorizations = NULL; + + error = NULL; + temporary_authorizations = polkit_authority_enumerate_temporary_authorizations_finish (authority, + res, + &error); + if (error != NULL) + { + g_warning ("Error enumerating temporary authorizations: %s", error->message); + g_error_free (error); + goto out; + } + + g_list_foreach (current_temporary_authorizations, (GFunc) g_object_unref, NULL); + g_list_free (current_temporary_authorizations); + + current_temporary_authorizations = temporary_authorizations; + + update_temporary_authorization_icon_real (); + + out: + ; +} + +static void +update_temporary_authorization_icon (PolkitAuthority *authority) +{ + polkit_authority_enumerate_temporary_authorizations (authority, + session, + NULL, + enumerate_temporary_authorizations_cb, + NULL); +} + +static void +on_authority_changed (PolkitAuthority *authority, + gpointer user_data) +{ + update_temporary_authorization_icon (authority); +} + +static void +stop_cb (void) +{ + g_main_loop_quit (loop); +} + +static gboolean +end_session_response (gboolean is_okay, const gchar *reason) +{ + GVariant *res; + GError *error = NULL; + + res = g_dbus_proxy_call_sync (client_proxy, + "EndSessionResponse", + g_variant_new ("(bs)", + is_okay, + reason), + G_DBUS_CALL_FLAGS_NONE, + -1, /* timeout */ + NULL, /* GCancellable */ + &error); + if (! res) { + g_warning ("Failed to call EndSessionResponse: %s", error->message); + g_error_free (error); + return FALSE; + } + + g_variant_unref (res); + return TRUE; +} + +static void +query_end_session_cb (void) +{ + end_session_response (TRUE, ""); +} + +static void +end_session_cb (void) +{ + end_session_response (TRUE, ""); + g_main_loop_quit (loop); +} + +static void +signal_cb (GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, + GVariant *parameters, gpointer user_data) +{ + if (strcmp (signal_name, "Stop") == 0) { + stop_cb (); + } else if (strcmp (signal_name, "QueryEndSession") == 0) { + query_end_session_cb (); + } else if (strcmp (signal_name, "EndSession") == 0) { + end_session_cb (); + } +} + +static gboolean +register_client_to_gnome_session (void) +{ + GError *error = NULL; + GVariant *res; + const char *startup_id; + const char *app_id; + char *client_id; + + startup_id = g_getenv ("DESKTOP_AUTOSTART_ID"); + app_id = "polkit-mate-authentication-agent-1.desktop"; + + sm_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION, + G_DBUS_PROXY_FLAGS_NONE, + NULL, /* GDBusInterfaceInfo */ + SM_DBUS_NAME, + SM_DBUS_PATH, + SM_DBUS_INTERFACE, + NULL, /* GCancellable */ + &error); + if (sm_proxy == NULL) { + g_message("Failed to get session manager: %s", error->message); + g_error_free (error); + return FALSE; + } + + res = g_dbus_proxy_call_sync (sm_proxy, + "RegisterClient", + g_variant_new ("(ss)", + app_id, + startup_id), + G_DBUS_CALL_FLAGS_NONE, + -1, /* timeout */ + NULL, /* GCancellable */ + &error); + if (! res) { + g_warning ("Failed to register client: %s", error->message); + g_error_free (error); + return FALSE; + } + + if (! g_variant_is_of_type (res, G_VARIANT_TYPE ("(o)"))) { + g_warning ("RegisterClient returned unexpected type %s", + g_variant_get_type_string (res)); + return FALSE; + } + + g_variant_get (res, "(&o)", &client_id); + + client_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION, + G_DBUS_PROXY_FLAGS_NONE, + NULL, /* GDBusInterfaceInfo */ + SM_DBUS_NAME, + client_id, + SM_CLIENT_DBUS_INTERFACE, + NULL, /* GCancellable */ + &error); + g_variant_unref (res); + if (client_proxy == NULL) { + g_message("Failed to get client proxy: %s", error->message); + g_error_free (error); + return FALSE; + } + + g_signal_connect (client_proxy, "g-signal", G_CALLBACK (signal_cb), NULL); + + return TRUE; +} + +int +main (int argc, char **argv) +{ + gint ret; + PolkitAgentListener *listener; + GError *error; + + gtk_init (&argc, &argv); + + loop = NULL; + authority = NULL; + listener = NULL; + session = NULL; + ret = 1; + + bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); +#if HAVE_BIND_TEXTDOMAIN_CODESET + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); +#endif + textdomain (GETTEXT_PACKAGE); + + loop = g_main_loop_new (NULL, FALSE); + + error = NULL; + authority = polkit_authority_get_sync (NULL /* GCancellable* */, &error); + if (authority == NULL) + { + g_warning ("Error getting authority: %s", error->message); + g_error_free (error); + goto out; + } + g_signal_connect (authority, + "changed", + G_CALLBACK (on_authority_changed), + NULL); + + listener = polkit_mate_listener_new (); + + error = NULL; + session = polkit_unix_session_new_for_process_sync (getpid (), NULL, &error); + if (error != NULL) + { + g_warning ("Unable to determine the session we are in: %s", error->message); + g_error_free (error); + goto out; + } + + error = NULL; + if (!polkit_agent_listener_register (listener, + POLKIT_AGENT_REGISTER_FLAGS_NONE, + session, + "/org/mate/PolicyKit1/AuthenticationAgent", + NULL, + &error)) + { + g_printerr ("Cannot register authentication agent: %s\n", error->message); + g_error_free (error); + goto out; + } + + update_temporary_authorization_icon (authority); + + register_client_to_gnome_session(); + + g_main_loop_run (loop); + + ret = 0; + + out: + if (authority != NULL) + g_object_unref (authority); + if (session != NULL) + g_object_unref (session); + if (listener != NULL) + g_object_unref (listener); + if (loop != NULL) + g_main_loop_unref (loop); + + return ret; +} diff --git a/src/polkit-mate-authentication-agent-1.desktop.in.in b/src/polkit-mate-authentication-agent-1.desktop.in.in new file mode 100644 index 0000000..da1129a --- /dev/null +++ b/src/polkit-mate-authentication-agent-1.desktop.in.in @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=PolicyKit Authentication Agent +Comment=PolicyKit Authentication Agent for the MATE Desktop +Exec=@FULL_LIBEXECDIR@/polkit-mate-authentication-agent-1 +Terminal=false +Type=Application +Categories= +NoDisplay=true +OnlyShowIn=MATE; +X-MATE-AutoRestart=true diff --git a/src/polkitmateauthenticationdialog.c b/src/polkitmateauthenticationdialog.c new file mode 100644 index 0000000..04aaef6 --- /dev/null +++ b/src/polkitmateauthenticationdialog.c @@ -0,0 +1,1204 @@ +/* + * Copyright (C) 2009 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + * Author: David Zeuthen + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#define _GNU_SOURCE +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "polkitmateauthenticationdialog.h" + +#define RESPONSE_USER_SELECTED 1001 + +struct _PolkitMateAuthenticationDialogPrivate +{ + GtkWidget *user_combobox; + GtkWidget *prompt_label; + GtkWidget *password_entry; + GtkWidget *auth_button; + GtkWidget *cancel_button; + GtkWidget *info_label; + GtkWidget *grid_password; + + gchar *message; + gchar *action_id; + gchar *vendor; + gchar *vendor_url; + gchar *icon_name; + PolkitDetails *details; + + gchar **users; + gchar *selected_user; + + gboolean is_running; + + GtkListStore *store; +}; + +G_DEFINE_TYPE_WITH_PRIVATE (PolkitMateAuthenticationDialog, polkit_mate_authentication_dialog, GTK_TYPE_DIALOG); + +enum { + PROP_0, + PROP_ACTION_ID, + PROP_VENDOR, + PROP_VENDOR_URL, + PROP_ICON_NAME, + PROP_MESSAGE, + PROP_DETAILS, + PROP_USERS, + PROP_SELECTED_USER, +}; + +enum { + PIXBUF_COL, + TEXT_COL, + USERNAME_COL, + N_COL +}; + +static void +user_combobox_set_sensitive (GtkCellLayout *cell_layout, + GtkCellRenderer *cell, + GtkTreeModel *tree_model, + GtkTreeIter *iter, + gpointer user_data) +{ + GtkTreePath *path; + gint *indices; + gboolean sensitive; + + path = gtk_tree_model_get_path (tree_model, iter); + indices = gtk_tree_path_get_indices (path); + if (indices[0] == 0) + sensitive = FALSE; + else + sensitive = TRUE; + gtk_tree_path_free (path); + + g_object_set (cell, "sensitive", sensitive, NULL); +} + +static void +user_combobox_changed (GtkComboBox *widget, + gpointer user_data) +{ + PolkitMateAuthenticationDialog *dialog = POLKIT_MATE_AUTHENTICATION_DIALOG (user_data); + GtkTreeIter iter; + gchar *user_name; + + if (gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter)) + { + gtk_tree_model_get (GTK_TREE_MODEL (dialog->priv->store), &iter, USERNAME_COL, &user_name, -1); + + g_free (dialog->priv->selected_user); + dialog->priv->selected_user = user_name; + + g_object_notify (G_OBJECT (dialog), "selected-user"); + + gtk_dialog_response (GTK_DIALOG (dialog), RESPONSE_USER_SELECTED); + + /* make the password entry and Authenticate button sensitive again */ + gtk_widget_set_sensitive (dialog->priv->prompt_label, TRUE); + gtk_widget_set_sensitive (dialog->priv->password_entry, TRUE); + gtk_widget_set_sensitive (dialog->priv->auth_button, TRUE); + } +} + +#if HAVE_ACCOUNTSSERVICE +static GdkPixbuf * +get_user_icon (char *username) +{ + GError *error; + GDBusConnection *connection; + GVariant *find_user_result; + GVariant *get_icon_result; + GVariant *icon_result_variant; + const gchar *user_path; + const gchar *icon_filename; + GdkPixbuf *pixbuf = NULL; + + error = NULL; + connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); + + if (connection == NULL) + { + g_warning ("Unable to connect to system bus: %s", error->message); + g_error_free (error); + return NULL; + } + + find_user_result = g_dbus_connection_call_sync (connection, + "org.freedesktop.Accounts", + "/org/freedesktop/Accounts", + "org.freedesktop.Accounts", + "FindUserByName", + g_variant_new ("(s)", + username), + G_VARIANT_TYPE ("(o)"), + G_DBUS_CALL_FLAGS_NONE, + -1, + NULL, + &error); + + if (find_user_result == NULL) + { + g_warning ("Accounts couldn't find user: %s", error->message); + g_error_free (error); + return NULL; + } + + user_path = g_variant_get_string (g_variant_get_child_value (find_user_result, 0), + NULL); + + get_icon_result = g_dbus_connection_call_sync (connection, + "org.freedesktop.Accounts", + user_path, + "org.freedesktop.DBus.Properties", + "Get", + g_variant_new ("(ss)", + "org.freedesktop.Accounts.User", + "IconFile"), + G_VARIANT_TYPE ("(v)"), + G_DBUS_CALL_FLAGS_NONE, + -1, + NULL, + &error); + + g_variant_unref (find_user_result); + + if (get_icon_result == NULL) + { + g_warning ("Accounts couldn't find user icon: %s", error->message); + g_error_free (error); + return NULL; + } + + g_variant_get_child (get_icon_result, 0, "v", &icon_result_variant); + icon_filename = g_variant_get_string (icon_result_variant, NULL); + + if (icon_filename == NULL) + { + g_warning ("Accounts didn't return a valid filename for user icon"); + } + else + { + /* TODO: we probably shouldn't hard-code the size to 16x16 */ + pixbuf = gdk_pixbuf_new_from_file_at_size (icon_filename, + 16, + 16, + &error); + if (pixbuf == NULL) + { + g_warning ("Couldn't open user icon: %s", error->message); + g_error_free (error); + } + } + + g_variant_unref (icon_result_variant); + g_variant_unref (get_icon_result); + + return pixbuf; +} +#else +static GdkPixbuf * +get_user_icon (char *username) +{ + GdkPixbuf *pixbuf = NULL; + struct passwd *passwd; + + passwd = getpwnam (username); + if (passwd->pw_dir != NULL) + { + gchar *path; + path = g_strdup_printf ("%s/.face", passwd->pw_dir); + /* TODO: we probably shouldn't hard-code the size to 16x16 */ + pixbuf = gdk_pixbuf_new_from_file_at_scale (path, 16, 16, TRUE, NULL); + g_free (path); + } + + return pixbuf; +} +#endif /* HAVE_ACCOUNTSSERVICE */ + +static void +create_user_combobox (PolkitMateAuthenticationDialog *dialog) +{ + int n, i, selected_index = 0; + GtkComboBox *combo; + GtkTreeIter iter; + GtkCellRenderer *renderer; + + /* if we've already built the list of admin users once, then avoid + * doing it again.. (this is mainly used when the user entered the + * wrong password and the dialog is recycled) + */ + if (dialog->priv->store != NULL) + return; + + combo = GTK_COMBO_BOX (dialog->priv->user_combobox); + dialog->priv->store = gtk_list_store_new (3, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_STRING); + + gtk_list_store_append (dialog->priv->store, &iter); + gtk_list_store_set (dialog->priv->store, &iter, + PIXBUF_COL, NULL, + TEXT_COL, _("Select user..."), + USERNAME_COL, NULL, + -1); + + + /* For each user */ + for (i = 0, n = 0; dialog->priv->users[n] != NULL; n++) + { + gchar *gecos; + gchar *real_name; + GdkPixbuf *pixbuf = NULL; + struct passwd *passwd; + + /* we're single threaded so this is fine */ + errno = 0; + passwd = getpwnam (dialog->priv->users[n]); + if (passwd == NULL) + { + g_warning ("Error doing getpwnam(\"%s\"): %s", dialog->priv->users[n], strerror (errno)); + continue; + } + + if (passwd->pw_gecos != NULL) + gecos = g_locale_to_utf8 (passwd->pw_gecos, -1, NULL, NULL, NULL); + else + gecos = NULL; + + if (gecos != NULL && strlen (gecos) > 0) + { + gchar *first_comma; + first_comma = strchr (gecos, ','); + if (first_comma != NULL) + *first_comma = '\0'; + } + if (gecos != NULL && strlen (gecos) > 0 && strcmp (gecos, dialog->priv->users[n]) != 0) + real_name = g_strdup_printf (_("%s (%s)"), gecos, dialog->priv->users[n]); + else + real_name = g_strdup (dialog->priv->users[n]); + g_free (gecos); + + /* Load users face */ + pixbuf = get_user_icon (dialog->priv->users[n]); + + /* fall back to stock_person icon */ + if (pixbuf == NULL) + { + pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), + "stock_person", + GTK_ICON_SIZE_MENU, + 0, + NULL); + } + + gtk_list_store_append (dialog->priv->store, &iter); + gtk_list_store_set (dialog->priv->store, &iter, + PIXBUF_COL, pixbuf, + TEXT_COL, real_name, + USERNAME_COL, dialog->priv->users[n], + -1); + + i++; + if (passwd->pw_uid == getuid ()) + { + selected_index = i; + g_free (dialog->priv->selected_user); + dialog->priv->selected_user = g_strdup (dialog->priv->users[n]); + } + + g_free (real_name); + g_object_unref (pixbuf); + } + + gtk_combo_box_set_model (combo, GTK_TREE_MODEL (dialog->priv->store)); + + renderer = gtk_cell_renderer_pixbuf_new (); + gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, FALSE); + gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), + renderer, + "pixbuf", PIXBUF_COL, + NULL); + gtk_cell_layout_set_cell_data_func (GTK_CELL_LAYOUT (combo), + renderer, + user_combobox_set_sensitive, + NULL, NULL); + + renderer = gtk_cell_renderer_text_new (); + gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE); + gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), + renderer, + "text", TEXT_COL, + NULL); + gtk_cell_layout_set_cell_data_func (GTK_CELL_LAYOUT (combo), + renderer, + user_combobox_set_sensitive, + NULL, NULL); + + /* Select the default user */ + gtk_combo_box_set_active (GTK_COMBO_BOX (combo), selected_index); + + /* Listen when a new user is selected */ + g_signal_connect (GTK_WIDGET (combo), + "changed", + G_CALLBACK (user_combobox_changed), + dialog); +} + +static GtkWidget * +get_image (PolkitMateAuthenticationDialog *dialog) +{ + GdkPixbuf *pixbuf; + GdkPixbuf *copy_pixbuf; + GdkPixbuf *vendor_pixbuf; + GtkWidget *image; + + pixbuf = NULL; + copy_pixbuf = NULL; + vendor_pixbuf = NULL; + image = NULL; + + if (dialog->priv->icon_name == NULL || strlen (dialog->priv->icon_name) == 0) + { + image = gtk_image_new_from_icon_name ("dialog-password", GTK_ICON_SIZE_DIALOG); + goto out; + } + + vendor_pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), + dialog->priv->icon_name, + 48, + 0, + NULL); + if (vendor_pixbuf == NULL) + { + g_warning ("No icon for themed icon with name '%s'", dialog->priv->icon_name); + image = gtk_image_new_from_icon_name ("dialog-password", GTK_ICON_SIZE_DIALOG); + goto out; + } + + + pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), + "dialog-password", + 48, + 0, + NULL); + if (pixbuf == NULL) + goto out; + + /* need to copy the pixbuf since we're modifying it */ + copy_pixbuf = gdk_pixbuf_copy (pixbuf); + if (copy_pixbuf == NULL) + goto out; + + /* blend the vendor icon in the bottom right quarter */ + gdk_pixbuf_composite (vendor_pixbuf, + copy_pixbuf, + 24, 24, 24, 24, + 24, 24, 0.5, 0.5, + GDK_INTERP_BILINEAR, + 255); + + image = gtk_image_new_from_pixbuf (copy_pixbuf); + +out: + if (pixbuf != NULL) + g_object_unref (pixbuf); + + if (copy_pixbuf != NULL) + g_object_unref (copy_pixbuf); + + if (vendor_pixbuf != NULL) + g_object_unref (vendor_pixbuf); + + return image; +} + +static void +polkit_mate_authentication_dialog_set_property (GObject *object, + guint prop_id, + const GValue *value, + GParamSpec *pspec) +{ + PolkitMateAuthenticationDialog *dialog = POLKIT_MATE_AUTHENTICATION_DIALOG (object); + + switch (prop_id) + { + case PROP_DETAILS: + dialog->priv->details = g_value_dup_object (value); + break; + + case PROP_ACTION_ID: + dialog->priv->action_id = g_value_dup_string (value); + break; + + case PROP_VENDOR: + dialog->priv->vendor = g_value_dup_string (value); + break; + + case PROP_VENDOR_URL: + dialog->priv->vendor_url = g_value_dup_string (value); + break; + + case PROP_ICON_NAME: + dialog->priv->icon_name = g_value_dup_string (value); + break; + + case PROP_MESSAGE: + dialog->priv->message = g_value_dup_string (value); + break; + + case PROP_USERS: + dialog->priv->users = g_value_dup_boxed (value); + break; + + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; + } +} + +static void +polkit_mate_authentication_dialog_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) +{ + PolkitMateAuthenticationDialog *dialog = POLKIT_MATE_AUTHENTICATION_DIALOG (object); + + switch (prop_id) + { + case PROP_MESSAGE: + g_value_set_string (value, dialog->priv->message); + break; + + /* TODO: rest of the properties */ + + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; + } +} + +static GtkWidget * +add_row (GtkWidget *grid, int row, const char *label_text, GtkWidget *entry) +{ + GtkWidget *label; + + label = gtk_label_new_with_mnemonic (label_text); + gtk_label_set_use_markup (GTK_LABEL (label), TRUE); + gtk_label_set_xalign (GTK_LABEL (label), 1.0); + gtk_label_set_yalign (GTK_LABEL (label), 0.5); + + gtk_widget_set_hexpand (label, FALSE); + gtk_grid_attach (GTK_GRID (grid), label, + 0, row, 1, 1); + gtk_widget_set_hexpand (entry, TRUE); + gtk_grid_attach (GTK_GRID (grid), entry, + 1, row, 1, 1); + gtk_label_set_mnemonic_widget (GTK_LABEL (label), entry); + + return label; +} + +static void +action_id_activated (GtkLabel *url_label, gpointer user_data) +{ +#if 0 + GError *error; + DBusGConnection *bus; + DBusGProxy *manager_proxy; + + error = NULL; + bus = dbus_g_bus_get (DBUS_BUS_SESSION, &error); + if (bus == NULL) + { + g_warning ("Couldn't connect to session bus: %s", error->message); + g_error_free (error); + goto out; + } + + manager_proxy = dbus_g_proxy_new_for_name (bus, + "org.mate.PolicyKit.AuthorizationManager", + "/", + "org.mate.PolicyKit.AuthorizationManager.SingleInstance"); + if (manager_proxy == NULL) + { + g_warning ("Could not construct manager_proxy object; bailing out"); + goto out; + } + + if (!dbus_g_proxy_call (manager_proxy, + "ShowAction", + &error, + G_TYPE_STRING, gtk_label_get_current_uri (GTK_LABEL (url_label)), + G_TYPE_INVALID, + G_TYPE_INVALID)) + { + if (error != NULL) + { + g_warning ("Failed to call into manager: %s", error->message); + g_error_free (error); + } + else + { + g_warning ("Failed to call into manager"); + } + goto out; + } + +out: + ; +#endif +} + +static void +polkit_mate_authentication_dialog_init (PolkitMateAuthenticationDialog *dialog) +{ + dialog->priv = polkit_mate_authentication_dialog_get_instance_private (dialog); +} + +static void +polkit_mate_authentication_dialog_finalize (GObject *object) +{ + PolkitMateAuthenticationDialog *dialog; + + dialog = POLKIT_MATE_AUTHENTICATION_DIALOG (object); + + g_free (dialog->priv->message); + g_free (dialog->priv->action_id); + g_free (dialog->priv->vendor); + g_free (dialog->priv->vendor_url); + g_free (dialog->priv->icon_name); + if (dialog->priv->details != NULL) + g_object_unref (dialog->priv->details); + + g_strfreev (dialog->priv->users); + g_free (dialog->priv->selected_user); + + if (dialog->priv->store != NULL) + g_object_unref (dialog->priv->store); + + if (G_OBJECT_CLASS (polkit_mate_authentication_dialog_parent_class)->finalize != NULL) + G_OBJECT_CLASS (polkit_mate_authentication_dialog_parent_class)->finalize (object); +} + +static GtkWidget* +polkit_mate_dialog_add_button (GtkDialog *dialog, + const gchar *button_text, + const gchar *icon_name, + gint response_id) +{ + GtkWidget *button; + + button = gtk_button_new_with_mnemonic (button_text); + gtk_button_set_image (GTK_BUTTON (button), gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_BUTTON)); + + gtk_button_set_use_underline (GTK_BUTTON (button), TRUE); + gtk_style_context_add_class (gtk_widget_get_style_context (button), "text-button"); + gtk_widget_set_can_default (button, TRUE); + gtk_widget_show (button); + gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, response_id); + + return button; +} + +static void +polkit_mate_authentication_dialog_constructed (GObject *object) +{ + PolkitMateAuthenticationDialog *dialog; + GtkWidget *hbox; + GtkWidget *main_vbox; + GtkWidget *vbox; + GtkWidget *grid_password; + GtkWidget *details_expander; + GtkWidget *details_vbox; + GtkWidget *grid; + GtkWidget *label; + GtkWidget *image; + GtkWidget *content_area; + gboolean have_user_combobox; + gchar *s; + guint rows; + + dialog = POLKIT_MATE_AUTHENTICATION_DIALOG (object); + + if (G_OBJECT_CLASS (polkit_mate_authentication_dialog_parent_class)->constructed != NULL) + G_OBJECT_CLASS (polkit_mate_authentication_dialog_parent_class)->constructed (object); + + have_user_combobox = FALSE; + + dialog->priv->cancel_button = polkit_mate_dialog_add_button (GTK_DIALOG (dialog), + _("_Cancel"), + "process-stop", + GTK_RESPONSE_CANCEL); + + dialog->priv->auth_button = gtk_dialog_add_button (GTK_DIALOG (dialog), + _("_Authenticate"), + GTK_RESPONSE_OK); + + gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); + + content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog)); + + gtk_container_set_border_width (GTK_CONTAINER (dialog), 5); + gtk_box_set_spacing (GTK_BOX (content_area), 2); /* 2 * 5 + 2 = 12 */ + gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); + gtk_window_set_icon_name (GTK_WINDOW (dialog), "dialog-password"); + + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); + gtk_container_set_border_width (GTK_CONTAINER (hbox), 5); + gtk_box_pack_start (GTK_BOX (content_area), hbox, TRUE, TRUE, 0); + + image = get_image (dialog); + gtk_widget_set_halign (image, GTK_ALIGN_CENTER); + gtk_widget_set_valign (image, GTK_ALIGN_START); + gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0); + + main_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 10); + gtk_box_pack_start (GTK_BOX (hbox), main_vbox, TRUE, TRUE, 0); + + /* main message */ + label = gtk_label_new (NULL); + s = g_strdup_printf ("%s", dialog->priv->message); + gtk_label_set_markup (GTK_LABEL (label), s); + g_free (s); + + gtk_label_set_xalign (GTK_LABEL (label), 0.0); + gtk_label_set_yalign (GTK_LABEL (label), 0.5); + gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); + gtk_label_set_max_width_chars (GTK_LABEL (label), 50); + gtk_box_pack_start (GTK_BOX (main_vbox), label, FALSE, FALSE, 0); + + /* secondary message */ + label = gtk_label_new (NULL); + if (g_strv_length (dialog->priv->users) > 1) + { + gtk_label_set_markup (GTK_LABEL (label), + _("An application is attempting to perform an action that requires privileges. " + "Authentication as one of the users below is required to perform this action.")); + } + else + { + if (strcmp (g_get_user_name (), dialog->priv->users[0]) == 0) + { + gtk_label_set_markup (GTK_LABEL (label), + _("An application is attempting to perform an action that requires privileges. " + "Authentication is required to perform this action.")); + } + else + { + gtk_label_set_markup (GTK_LABEL (label), + _("An application is attempting to perform an action that requires privileges. " + "Authentication as the super user is required to perform this action.")); + } + } + + gtk_label_set_xalign (GTK_LABEL (label), 0.0); + gtk_label_set_yalign (GTK_LABEL (label), 0.5); + gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); + gtk_label_set_max_width_chars (GTK_LABEL (label), 50); + gtk_box_pack_start (GTK_BOX (main_vbox), label, FALSE, FALSE, 0); + + /* user combobox */ + if (g_strv_length (dialog->priv->users) > 1) + { + dialog->priv->user_combobox = gtk_combo_box_new (); + gtk_box_pack_start (GTK_BOX (main_vbox), GTK_WIDGET (dialog->priv->user_combobox), FALSE, FALSE, 0); + + create_user_combobox (dialog); + + have_user_combobox = TRUE; + } + else + { + dialog->priv->selected_user = g_strdup (dialog->priv->users[0]); + } + + /* password entry */ + vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + gtk_box_pack_start (GTK_BOX (main_vbox), vbox, FALSE, FALSE, 0); + + grid_password = gtk_grid_new (); + gtk_grid_set_column_spacing (GTK_GRID (grid_password), 12); + gtk_grid_set_row_spacing (GTK_GRID (grid_password), 6); + gtk_box_pack_start (GTK_BOX (vbox), grid_password, FALSE, FALSE, 0); + dialog->priv->password_entry = gtk_entry_new (); + gtk_entry_set_visibility (GTK_ENTRY (dialog->priv->password_entry), FALSE); + dialog->priv->prompt_label = add_row (grid_password, 0, _("_Password:"), dialog->priv->password_entry); + + g_signal_connect_swapped (dialog->priv->password_entry, "activate", + G_CALLBACK (gtk_window_activate_default), + dialog); + + dialog->priv->grid_password = grid_password; + /* initially never show the password entry stuff; we'll toggle it on/off so it's + * only shown when prompting for a password */ + gtk_widget_set_no_show_all (dialog->priv->grid_password, TRUE); + + /* A label for showing PAM_TEXT_INFO and PAM_TEXT_ERROR messages */ + label = gtk_label_new (NULL); + gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); + gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); + dialog->priv->info_label = label; + + /* Details */ + details_expander = gtk_expander_new_with_mnemonic (_("_Details")); + gtk_expander_set_use_markup (GTK_EXPANDER (details_expander), TRUE); + gtk_box_pack_start (GTK_BOX (content_area), details_expander, FALSE, FALSE, 0); + + details_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 10); + gtk_container_add (GTK_CONTAINER (details_expander), details_vbox); + + grid = gtk_grid_new (); + gtk_widget_set_margin_start (grid, 20); + gtk_grid_set_column_spacing (GTK_GRID (grid), 12); + gtk_grid_set_row_spacing (GTK_GRID (grid), 6); + gtk_box_pack_start (GTK_BOX (details_vbox), grid, FALSE, FALSE, 0); + + /* TODO: sort keys? */ + rows = 0; + if (dialog->priv->details != NULL) + { + guint n; + gchar **keys; + + keys = polkit_details_get_keys (dialog->priv->details); + for (n = 0; keys[n] != NULL; n++) + { + const gchar *key = keys[n]; + const gchar *value; + + value = polkit_details_lookup (dialog->priv->details, key); + + label = gtk_label_new (NULL); + s = g_strdup_printf ("%s", value); + gtk_label_set_markup (GTK_LABEL (label), s); + g_free (s); + + gtk_label_set_xalign (GTK_LABEL (label), 0.0); + gtk_label_set_yalign (GTK_LABEL (label), 1.0); + + s = g_strdup_printf ("%s:", key); + add_row (grid, rows, s, label); + g_free (s); + + rows++; + } + g_strfreev (keys); + } + + /* --- */ + + label = gtk_label_new (NULL); + gtk_label_set_use_markup (GTK_LABEL (label), TRUE); + s = g_strdup_printf ("%s", + dialog->priv->action_id, + dialog->priv->action_id); + gtk_label_set_markup (GTK_LABEL (label), s); + g_free (s); + + gtk_label_set_xalign (GTK_LABEL (label), 0.0); + gtk_label_set_yalign (GTK_LABEL (label), 1.0); + + add_row (grid, rows++, _("Action:"), label); + g_signal_connect (label, "activate-link", G_CALLBACK (action_id_activated), NULL); + + s = g_strdup_printf (_("Click to edit %s"), dialog->priv->action_id); + gtk_widget_set_tooltip_markup (label, s); + g_free (s); + + /* --- */ + + label = gtk_label_new (NULL); + gtk_label_set_use_markup (GTK_LABEL (label), TRUE); + s = g_strdup_printf ("%s", + dialog->priv->vendor_url, + dialog->priv->vendor); + gtk_label_set_markup (GTK_LABEL (label), s); + g_free (s); + + gtk_label_set_xalign (GTK_LABEL (label), 0.0); + gtk_label_set_yalign (GTK_LABEL (label), 1.0); + + add_row (grid, rows++, _("Vendor:"), label); + + s = g_strdup_printf (_("Click to open %s"), dialog->priv->vendor_url); + gtk_widget_set_tooltip_markup (label, s); + g_free (s); + + /* Disable password entry and authenticate until have a user selected */ + if (have_user_combobox && gtk_combo_box_get_active (GTK_COMBO_BOX (dialog->priv->user_combobox)) == 0) + { + gtk_widget_set_sensitive (dialog->priv->prompt_label, FALSE); + gtk_widget_set_sensitive (dialog->priv->password_entry, FALSE); + gtk_widget_set_sensitive (dialog->priv->auth_button, FALSE); + } + + gtk_widget_realize (GTK_WIDGET (dialog)); + +} + +static void +polkit_mate_authentication_dialog_class_init (PolkitMateAuthenticationDialogClass *klass) +{ + GObjectClass *gobject_class = G_OBJECT_CLASS (klass); + + gobject_class->finalize = polkit_mate_authentication_dialog_finalize; + gobject_class->get_property = polkit_mate_authentication_dialog_get_property; + gobject_class->set_property = polkit_mate_authentication_dialog_set_property; + gobject_class->constructed = polkit_mate_authentication_dialog_constructed; + + g_object_class_install_property (gobject_class, + PROP_DETAILS, + g_param_spec_object ("details", + NULL, + NULL, + POLKIT_TYPE_DETAILS, + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_NAME | + G_PARAM_STATIC_NICK | + G_PARAM_STATIC_BLURB)); + + g_object_class_install_property (gobject_class, + PROP_ACTION_ID, + g_param_spec_string ("action-id", + NULL, + NULL, + NULL, + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_NAME | + G_PARAM_STATIC_NICK | + G_PARAM_STATIC_BLURB)); + + g_object_class_install_property (gobject_class, + PROP_VENDOR, + g_param_spec_string ("vendor", + NULL, + NULL, + NULL, + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_NAME | + G_PARAM_STATIC_NICK | + G_PARAM_STATIC_BLURB)); + + g_object_class_install_property (gobject_class, + PROP_VENDOR_URL, + g_param_spec_string ("vendor-url", + NULL, + NULL, + NULL, + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_NAME | + G_PARAM_STATIC_NICK | + G_PARAM_STATIC_BLURB)); + + g_object_class_install_property (gobject_class, + PROP_ICON_NAME, + g_param_spec_string ("icon-name", + NULL, + NULL, + NULL, + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_NAME | + G_PARAM_STATIC_NICK | + G_PARAM_STATIC_BLURB)); + + + g_object_class_install_property (gobject_class, + PROP_MESSAGE, + g_param_spec_string ("message", + NULL, + NULL, + NULL, + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_NAME | + G_PARAM_STATIC_NICK | + G_PARAM_STATIC_BLURB)); + + g_object_class_install_property (gobject_class, + PROP_USERS, + g_param_spec_boxed ("users", + NULL, + NULL, + G_TYPE_STRV, + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_NAME | + G_PARAM_STATIC_NICK | + G_PARAM_STATIC_BLURB)); + + g_object_class_install_property (gobject_class, + PROP_SELECTED_USER, + g_param_spec_string ("selected-user", + NULL, + NULL, + NULL, + G_PARAM_READABLE | + G_PARAM_STATIC_NAME | + G_PARAM_STATIC_NICK | + G_PARAM_STATIC_BLURB)); +} + +/** + * polkit_mate_authentication_dialog_new: + * + * Yada yada yada... + * + * Returns: A new password dialog. + **/ +GtkWidget * +polkit_mate_authentication_dialog_new (const gchar *action_id, + const gchar *vendor, + const gchar *vendor_url, + const gchar *icon_name, + const gchar *message_markup, + PolkitDetails *details, + gchar **users) +{ + PolkitMateAuthenticationDialog *dialog; + GtkWindow *window; + + dialog = g_object_new (POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG, + "action-id", action_id, + "vendor", vendor, + "vendor-url", vendor_url, + "icon-name", icon_name, + "message", message_markup, + "details", details, + "users", users, + NULL); + + window = GTK_WINDOW (dialog); + + gtk_window_set_position (window, GTK_WIN_POS_CENTER); + gtk_window_set_modal (window, TRUE); + gtk_window_set_resizable (window, FALSE); + gtk_window_set_keep_above (window, TRUE); + gtk_window_set_title (window, _("Authenticate")); + g_signal_connect (dialog, "close", G_CALLBACK (gtk_widget_hide), NULL); + + return GTK_WIDGET (dialog); +} + +/** + * polkit_mate_authentication_dialog_indicate_error: + * @dialog: the auth dialog + * + * Call this function to indicate an authentication error; typically shakes the window + **/ +void +polkit_mate_authentication_dialog_indicate_error (PolkitMateAuthenticationDialog *dialog) +{ + int x, y; + int n; + int diff; + + /* TODO: detect compositing manager and do fancy stuff here */ + + gtk_window_get_position (GTK_WINDOW (dialog), &x, &y); + + for (n = 0; n < 10; n++) + { + if (n % 2 == 0) + diff = -15; + else + diff = 15; + + gtk_window_move (GTK_WINDOW (dialog), x + diff, y); + + while (gtk_events_pending ()) + { + gtk_main_iteration (); + } + + g_usleep (10000); + } + + gtk_window_move (GTK_WINDOW (dialog), x, y); +} + +/** + * polkit_mate_authentication_dialog_run_until_user_is_selected: + * @dialog: A #PolkitMateAuthenticationDialog. + * + * Runs @dialog in a recursive main loop until a user have been selected. + * + * If there is only one element in the the users array (which is set upon construction) or + * an user has already been selected, this function returns immediately with the return + * value %TRUE. + * + * Returns: %TRUE if a user is selected (use polkit_mate_dialog_get_selected_user() to obtain the user) or + * %FALSE if the dialog was cancelled. + **/ +gboolean +polkit_mate_authentication_dialog_run_until_user_is_selected (PolkitMateAuthenticationDialog *dialog) +{ + gboolean ret; + gint response; + + ret = FALSE; + + if (dialog->priv->selected_user != NULL) + { + ret = TRUE; + goto out; + } + + dialog->priv->is_running = TRUE; + + response = gtk_dialog_run (GTK_DIALOG (dialog)); + + dialog->priv->is_running = FALSE; + + if (response == RESPONSE_USER_SELECTED) + ret = TRUE; + + out: + return ret; +} + +/** + * polkit_mate_authentication_dialog_run_until_response_for_prompt: + * @dialog: A #PolkitMateAuthenticationDialog. + * @prompt: The prompt to present the user with. + * @echo_chars: Whether characters should be echoed in the password entry box. + * @was_cancelled: Set to %TRUE if the dialog was cancelled. + * @new_user_selected: Set to %TRUE if another user was selected. + * + * Runs @dialog in a recursive main loop until a response to @prompt have been obtained from the user. + * + * Returns: The response (free with g_free()) or %NULL if one of @was_cancelled or @new_user_selected + * has been set to %TRUE. + **/ +gchar * +polkit_mate_authentication_dialog_run_until_response_for_prompt (PolkitMateAuthenticationDialog *dialog, + const gchar *prompt, + gboolean echo_chars, + gboolean *was_cancelled, + gboolean *new_user_selected) +{ + gint response; + gchar *ret; + + gtk_label_set_text_with_mnemonic (GTK_LABEL (dialog->priv->prompt_label), prompt); + gtk_entry_set_visibility (GTK_ENTRY (dialog->priv->password_entry), echo_chars); + gtk_entry_set_text (GTK_ENTRY (dialog->priv->password_entry), ""); + gtk_widget_grab_focus (dialog->priv->password_entry); + + ret = NULL; + + if (was_cancelled != NULL) + *was_cancelled = FALSE; + + if (new_user_selected != NULL) + *new_user_selected = FALSE; + + dialog->priv->is_running = TRUE; + + gtk_widget_set_no_show_all (dialog->priv->grid_password, FALSE); + gtk_widget_show_all (dialog->priv->grid_password); + + response = gtk_dialog_run (GTK_DIALOG (dialog)); + + gtk_widget_hide (dialog->priv->grid_password); + gtk_widget_set_no_show_all (dialog->priv->grid_password, TRUE); + + dialog->priv->is_running = FALSE; + + if (response == GTK_RESPONSE_OK) + { + ret = g_strdup (gtk_entry_get_text (GTK_ENTRY (dialog->priv->password_entry))); + } + else if (response == RESPONSE_USER_SELECTED) + { + if (new_user_selected != NULL) + *new_user_selected = TRUE; + } + else + { + if (was_cancelled != NULL) + *was_cancelled = TRUE; + } + + return ret; +} + +/** + * polkit_mate_authentication_dialog_get_selected_user: + * @dialog: A #PolkitMateAuthenticationDialog. + * + * Gets the currently selected user. + * + * Returns: The currently selected user (free with g_free()) or %NULL if no user is currently selected. + **/ +gchar * +polkit_mate_authentication_dialog_get_selected_user (PolkitMateAuthenticationDialog *dialog) +{ + return g_strdup (dialog->priv->selected_user); +} + +void +polkit_mate_authentication_dialog_set_info_message (PolkitMateAuthenticationDialog *dialog, + const gchar *info_markup) +{ + gtk_label_set_markup (GTK_LABEL (dialog->priv->info_label), info_markup); +} + + +/** + * polkit_mate_authentication_dialog_cancel: + * @dialog: A #PolkitMateAuthenticationDialog. + * + * Cancels the dialog if it is currenlty running. + * + * Returns: %TRUE if the dialog was running. + **/ +gboolean +polkit_mate_authentication_dialog_cancel (PolkitMateAuthenticationDialog *dialog) +{ + if (!dialog->priv->is_running) + return FALSE; + + gtk_dialog_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL); + + return TRUE; +} diff --git a/src/polkitmateauthenticationdialog.h b/src/polkitmateauthenticationdialog.h new file mode 100644 index 0000000..debcf1b --- /dev/null +++ b/src/polkitmateauthenticationdialog.h @@ -0,0 +1,77 @@ +/* + * Copyright (C) 2009 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + * Author: David Zeuthen + */ + +#ifndef __POLKIT_MATE_AUTHENTICATION_DIALOG_H +#define __POLKIT_MATE_AUTHENTICATION_DIALOG_H + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#define POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG (polkit_mate_authentication_dialog_get_type ()) +#define POLKIT_MATE_AUTHENTICATION_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG, PolkitMateAuthenticationDialog)) +#define POLKIT_MATE_AUTHENTICATION_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG, PolkitMateAuthenticationDialogClass)) +#define POLKIT_MATE_IS_AUTHENTICATION_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG)) +#define POLKIT_MATE_IS_AUTHENTICATION_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG)) + +typedef struct _PolkitMateAuthenticationDialog PolkitMateAuthenticationDialog; +typedef struct _PolkitMateAuthenticationDialogClass PolkitMateAuthenticationDialogClass; +typedef struct _PolkitMateAuthenticationDialogPrivate PolkitMateAuthenticationDialogPrivate; + +struct _PolkitMateAuthenticationDialog +{ + GtkDialog parent_instance; + PolkitMateAuthenticationDialogPrivate *priv; +}; + +struct _PolkitMateAuthenticationDialogClass +{ + GtkDialogClass parent_class; +}; + +GType polkit_mate_authentication_dialog_get_type (void); +GtkWidget *polkit_mate_authentication_dialog_new (const gchar *action_id, + const gchar *vendor, + const gchar *vendor_url, + const gchar *icon_name, + const gchar *message_markup, + PolkitDetails *details, + gchar **users); +gchar *polkit_mate_authentication_dialog_get_selected_user (PolkitMateAuthenticationDialog *dialog); +gboolean polkit_mate_authentication_dialog_run_until_user_is_selected (PolkitMateAuthenticationDialog *dialog); +gchar *polkit_mate_authentication_dialog_run_until_response_for_prompt (PolkitMateAuthenticationDialog *dialog, + const gchar *prompt, + gboolean echo_chars, + gboolean *was_cancelled, + gboolean *new_user_selected); +gboolean polkit_mate_authentication_dialog_cancel (PolkitMateAuthenticationDialog *dialog); +void polkit_mate_authentication_dialog_indicate_error (PolkitMateAuthenticationDialog *dialog); +void polkit_mate_authentication_dialog_set_info_message (PolkitMateAuthenticationDialog *dialog, + const gchar *info_markup); + +#ifdef __cplusplus +} +#endif + +#endif /* __POLKIT_MATE_AUTHENTICATION_DIALOG_H */ diff --git a/src/polkitmateauthenticator.c b/src/polkitmateauthenticator.c new file mode 100644 index 0000000..ccd1774 --- /dev/null +++ b/src/polkitmateauthenticator.c @@ -0,0 +1,515 @@ +/* + * Copyright (C) 2009 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + * Author: David Zeuthen + */ + + +#include "config.h" + +#include +#include +#include +#include +#include + +#include +#include + +#include "polkitmateauthenticator.h" +#include "polkitmateauthenticationdialog.h" + +struct _PolkitMateAuthenticator +{ + GObject parent_instance; + + PolkitAuthority *authority; + gchar *action_id; + gchar *message; + gchar *icon_name; + PolkitDetails *details; + gchar *cookie; + GList *identities; + + PolkitActionDescription *action_desc; + gchar **users; + + gboolean gained_authorization; + gboolean was_cancelled; + gboolean new_user_selected; + gchar *selected_user; + + PolkitAgentSession *session; + GtkWidget *dialog; + GMainLoop *loop; +}; + +struct _PolkitMateAuthenticatorClass +{ + GObjectClass parent_class; + +}; + +enum +{ + COMPLETED_SIGNAL, + LAST_SIGNAL, +}; + +static guint signals[LAST_SIGNAL] = {0}; + +G_DEFINE_TYPE (PolkitMateAuthenticator, polkit_mate_authenticator, G_TYPE_OBJECT); + +static void +polkit_mate_authenticator_init (PolkitMateAuthenticator *authenticator) +{ +} + +static void +polkit_mate_authenticator_finalize (GObject *object) +{ + PolkitMateAuthenticator *authenticator; + + authenticator = POLKIT_MATE_AUTHENTICATOR (object); + + if (authenticator->authority != NULL) + g_object_unref (authenticator->authority); + g_free (authenticator->action_id); + g_free (authenticator->message); + g_free (authenticator->icon_name); + if (authenticator->details != NULL) + g_object_unref (authenticator->details); + g_free (authenticator->cookie); + g_list_foreach (authenticator->identities, (GFunc) g_object_unref, NULL); + g_list_free (authenticator->identities); + + if (authenticator->action_desc != NULL) + g_object_unref (authenticator->action_desc); + g_strfreev (authenticator->users); + + g_free (authenticator->selected_user); + if (authenticator->session != NULL) + g_object_unref (authenticator->session); + if (authenticator->dialog != NULL) + gtk_widget_destroy (authenticator->dialog); + if (authenticator->loop != NULL) + g_main_loop_unref (authenticator->loop); + + if (G_OBJECT_CLASS (polkit_mate_authenticator_parent_class)->finalize != NULL) + G_OBJECT_CLASS (polkit_mate_authenticator_parent_class)->finalize (object); +} + +static void +polkit_mate_authenticator_class_init (PolkitMateAuthenticatorClass *klass) +{ + GObjectClass *gobject_class; + + gobject_class = G_OBJECT_CLASS (klass); + + gobject_class->finalize = polkit_mate_authenticator_finalize; + + /** + * PolkitMateAuthenticator::completed: + * @authenticator: A #PolkitMateAuthenticator. + * @gained_authorization: Whether the authorization was gained. + * @dismissed: Whether the dialog was dismissed. + * + * Emitted when the authentication is completed. The user is supposed to dispose of @authenticator + * upon receiving this signal. + **/ + signals[COMPLETED_SIGNAL] = g_signal_new ("completed", + POLKIT_MATE_TYPE_AUTHENTICATOR, + G_SIGNAL_RUN_LAST, + 0, /* class offset */ + NULL, /* accumulator */ + NULL, /* accumulator data */ + g_cclosure_marshal_generic, + G_TYPE_NONE, + 2, + G_TYPE_BOOLEAN, + G_TYPE_BOOLEAN); +} + +static PolkitActionDescription * +get_desc_for_action (PolkitAuthority *authority, + const gchar *action_id) +{ + GList *action_descs; + GList *l; + PolkitActionDescription *result; + + result = NULL; + + action_descs = polkit_authority_enumerate_actions_sync (authority, + NULL, + NULL); + for (l = action_descs; l != NULL; l = l->next) + { + PolkitActionDescription *action_desc = POLKIT_ACTION_DESCRIPTION (l->data); + + if (strcmp (polkit_action_description_get_action_id (action_desc), action_id) == 0) + { + result = g_object_ref (action_desc); + goto out; + } + } + + out: + + g_list_foreach (action_descs, (GFunc) g_object_unref, NULL); + g_list_free (action_descs); + + return result; +} + +static void +on_dialog_deleted (GtkWidget *widget, + GdkEvent *event, + gpointer user_data) +{ + PolkitMateAuthenticator *authenticator = POLKIT_MATE_AUTHENTICATOR (user_data); + + polkit_mate_authenticator_cancel (authenticator); +} + +static void +on_user_selected (GObject *object, + GParamSpec *pspec, + gpointer user_data) +{ + PolkitMateAuthenticator *authenticator = POLKIT_MATE_AUTHENTICATOR (user_data); + + /* clear any previous messages */ + polkit_mate_authentication_dialog_set_info_message (POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog), ""); + + polkit_mate_authenticator_cancel (authenticator); + authenticator->new_user_selected = TRUE; +} + +PolkitMateAuthenticator * +polkit_mate_authenticator_new (const gchar *action_id, + const gchar *message, + const gchar *icon_name, + PolkitDetails *details, + const gchar *cookie, + GList *identities) +{ + PolkitMateAuthenticator *authenticator; + GList *l; + guint n; + GError *error; + + authenticator = POLKIT_MATE_AUTHENTICATOR (g_object_new (POLKIT_MATE_TYPE_AUTHENTICATOR, NULL)); + + error = NULL; + authenticator->authority = polkit_authority_get_sync (NULL /* GCancellable* */, &error); + if (authenticator->authority == NULL) + { + g_critical ("Error getting authority: %s", error->message); + g_error_free (error); + goto error; + } + + authenticator->action_id = g_strdup (action_id); + authenticator->message = g_strdup (message); + authenticator->icon_name = g_strdup (icon_name); + if (details != NULL) + authenticator->details = g_object_ref (details); + authenticator->cookie = g_strdup (cookie); + authenticator->identities = g_list_copy (identities); + g_list_foreach (authenticator->identities, (GFunc) g_object_ref, NULL); + + authenticator->action_desc = get_desc_for_action (authenticator->authority, + authenticator->action_id); + if (authenticator->action_desc == NULL) + goto error; + + authenticator->users = g_new0 (gchar *, g_list_length (authenticator->identities) + 1); + for (l = authenticator->identities, n = 0; l != NULL; l = l->next, n++) + { + PolkitUnixUser *user = POLKIT_UNIX_USER (l->data); + uid_t uid; + struct passwd *passwd; + + uid = polkit_unix_user_get_uid (user); + passwd = getpwuid (uid); + authenticator->users[n] = g_strdup (passwd->pw_name); + } + + authenticator->dialog = polkit_mate_authentication_dialog_new + (authenticator->action_id, + polkit_action_description_get_vendor_name (authenticator->action_desc), + polkit_action_description_get_vendor_url (authenticator->action_desc), + authenticator->icon_name, + authenticator->message, + authenticator->details, + authenticator->users); + g_signal_connect (authenticator->dialog, + "delete-event", + G_CALLBACK (on_dialog_deleted), + authenticator); + g_signal_connect (authenticator->dialog, + "notify::selected-user", + G_CALLBACK (on_user_selected), + authenticator); + + return authenticator; + + error: + g_object_unref (authenticator); + return NULL; +} + +static void +session_request (PolkitAgentSession *session, + const char *request, + gboolean echo_on, + gpointer user_data) +{ + PolkitMateAuthenticator *authenticator = POLKIT_MATE_AUTHENTICATOR (user_data); + gchar *password; + gchar *modified_request; + + password = NULL; + + //g_debug ("in conversation_pam_prompt, request='%s', echo_on=%d", request, echo_on); + + /* Fix up, and localize, password prompt if it's password auth */ + if (g_ascii_strncasecmp (request, "password:", 9) == 0) + { + if (strcmp (g_get_user_name (), authenticator->selected_user) != 0) + { + modified_request = g_strdup_printf (_("_Password for %s:"), authenticator->selected_user); + } + else + { + modified_request = g_strdup (_("_Password:")); + } + } + else + { + modified_request = g_strdup (request); + } + + gtk_widget_show_all (GTK_WIDGET (authenticator->dialog)); + gtk_window_present_with_time (GTK_WINDOW (authenticator->dialog), + gdk_x11_get_server_time (gtk_widget_get_window (GTK_WIDGET (authenticator->dialog)))); + password = polkit_mate_authentication_dialog_run_until_response_for_prompt (POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog), + modified_request, + echo_on, + &authenticator->was_cancelled, + &authenticator->new_user_selected); + + /* cancel auth unless user provided a password */ + if (password == NULL) + { + polkit_mate_authenticator_cancel (authenticator); + goto out; + } + else + { + polkit_agent_session_response (authenticator->session, password); + g_free (password); + } + +out: + g_free (modified_request); +} + +static void +session_show_error (PolkitAgentSession *session, + const gchar *msg, + gpointer user_data) +{ + PolkitMateAuthenticator *authenticator = POLKIT_MATE_AUTHENTICATOR (user_data); + gchar *s; + + s = g_strconcat ("", msg, "", NULL); + polkit_mate_authentication_dialog_set_info_message (POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog), s); + g_free (s); +} + +static void +session_show_info (PolkitAgentSession *session, + const gchar *msg, + gpointer user_data) +{ + PolkitMateAuthenticator *authenticator = POLKIT_MATE_AUTHENTICATOR (user_data); + gchar *s; + + s = g_strconcat ("", msg, "", NULL); + polkit_mate_authentication_dialog_set_info_message (POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog), s); + g_free (s); + + gtk_widget_show_all (GTK_WIDGET (authenticator->dialog)); + gtk_window_present (GTK_WINDOW (authenticator->dialog)); +} + + +static void +session_completed (PolkitAgentSession *session, + gboolean gained_authorization, + gpointer user_data) +{ + PolkitMateAuthenticator *authenticator = POLKIT_MATE_AUTHENTICATOR (user_data); + + authenticator->gained_authorization = gained_authorization; + + //g_debug ("in conversation_done gained=%d", gained_authorization); + + g_main_loop_quit (authenticator->loop); +} + + +static gboolean +do_initiate (gpointer user_data) +{ + PolkitMateAuthenticator *authenticator = POLKIT_MATE_AUTHENTICATOR (user_data); + PolkitIdentity *identity; + gint num_tries; + + gtk_widget_show_all (GTK_WIDGET (authenticator->dialog)); + gtk_window_present (GTK_WINDOW (authenticator->dialog)); + if (!polkit_mate_authentication_dialog_run_until_user_is_selected (POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog))) + { + /* user cancelled the dialog */ + /*g_debug ("User cancelled before selecting a user");*/ + authenticator->was_cancelled = TRUE; + goto out; + } + + authenticator->loop = g_main_loop_new (NULL, TRUE); + + num_tries = 0; + + try_again: + + g_free (authenticator->selected_user); + authenticator->selected_user = polkit_mate_authentication_dialog_get_selected_user (POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog)); + + /*g_debug ("Authenticating user %s", authenticator->selected_user);*/ + identity = polkit_unix_user_new_for_name (authenticator->selected_user, NULL); + + authenticator->session = polkit_agent_session_new (identity, authenticator->cookie); + + g_object_unref (identity); + + g_signal_connect (authenticator->session, + "request", + G_CALLBACK (session_request), + authenticator); + + g_signal_connect (authenticator->session, + "show-info", + G_CALLBACK (session_show_info), + authenticator); + + g_signal_connect (authenticator->session, + "show-error", + G_CALLBACK (session_show_error), + authenticator); + + g_signal_connect (authenticator->session, + "completed", + G_CALLBACK (session_completed), + authenticator); + + polkit_agent_session_initiate (authenticator->session); + + g_main_loop_run (authenticator->loop); + + /*g_debug ("gained_authorization=%d was_cancelled=%d new_user_selected=%d.", + authenticator->gained_authorization, + authenticator->was_cancelled, + authenticator->new_user_selected);*/ + + if (authenticator->new_user_selected) + { + /*g_debug ("New user selected");*/ + authenticator->new_user_selected = FALSE; + g_object_unref (authenticator->session); + authenticator->session = NULL; + goto try_again; + } + + num_tries++; + + if (!authenticator->gained_authorization && !authenticator->was_cancelled) + { + if (authenticator->dialog != NULL) + { + gchar *s; + + s = g_strconcat ("", _("Your authentication attempt was unsuccessful. Please try again."), "", NULL); + polkit_mate_authentication_dialog_set_info_message ( + POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog), + s); + g_free (s); + gtk_widget_queue_draw (authenticator->dialog); + + /* shake the dialog to indicate error */ + polkit_mate_authentication_dialog_indicate_error (POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog)); + + if (num_tries < 3) + { + g_object_unref (authenticator->session); + authenticator->session = NULL; + goto try_again; + } + } + } + + out: + g_signal_emit_by_name (authenticator, + "completed", + authenticator->gained_authorization, + authenticator->was_cancelled); + + g_object_unref (authenticator); + + return FALSE; +} + +void +polkit_mate_authenticator_initiate (PolkitMateAuthenticator *authenticator) +{ + /* run from idle since we're going to block the main loop in the dialog (which has a recursive mainloop) */ + g_idle_add (do_initiate, g_object_ref (authenticator)); +} + +void +polkit_mate_authenticator_cancel (PolkitMateAuthenticator *authenticator) +{ + if (authenticator->dialog != NULL) + polkit_mate_authentication_dialog_cancel (POLKIT_MATE_AUTHENTICATION_DIALOG (authenticator->dialog)); + + authenticator->was_cancelled = TRUE; + + if (authenticator->session != NULL) + { + polkit_agent_session_cancel (authenticator->session); + } +} + +const gchar * +polkit_mate_authenticator_get_cookie (PolkitMateAuthenticator *authenticator) +{ + return authenticator->cookie; +} + + diff --git a/src/polkitmateauthenticator.h b/src/polkitmateauthenticator.h new file mode 100644 index 0000000..4c56477 --- /dev/null +++ b/src/polkitmateauthenticator.h @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2009 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + * Author: David Zeuthen + */ + +#ifndef __POLKIT_MATE_AUTHENTICATOR_H +#define __POLKIT_MATE_AUTHENTICATOR_H + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#define POLKIT_MATE_TYPE_AUTHENTICATOR (polkit_mate_authenticator_get_type()) +#define POLKIT_MATE_AUTHENTICATOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), POLKIT_MATE_TYPE_AUTHENTICATOR, PolkitMateAuthenticator)) +#define POLKIT_MATE_AUTHENTICATOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), POLKIT_MATE_TYPE_AUTHENTICATOR, PolkitMateAuthenticatorClass)) +#define POLKIT_MATE_AUTHENTICATOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), POLKIT_MATE_TYPE_AUTHENTICATOR, PolkitMateAuthenticatorClass)) +#define POLKIT_MATE_IS_AUTHENTICATOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), POLKIT_MATE_TYPE_AUTHENTICATOR)) +#define POLKIT_MATE_IS_AUTHENTICATOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), POLKIT_MATE_TYPE_AUTHENTICATOR)) + +typedef struct _PolkitMateAuthenticator PolkitMateAuthenticator; +typedef struct _PolkitMateAuthenticatorClass PolkitMateAuthenticatorClass; + +GType polkit_mate_authenticator_get_type (void) G_GNUC_CONST; +PolkitMateAuthenticator *polkit_mate_authenticator_new (const gchar *action_id, + const gchar *message, + const gchar *icon_name, + PolkitDetails *details, + const gchar *cookie, + GList *identities); +void polkit_mate_authenticator_initiate (PolkitMateAuthenticator *authenticator); +void polkit_mate_authenticator_cancel (PolkitMateAuthenticator *authenticator); +const gchar *polkit_mate_authenticator_get_cookie (PolkitMateAuthenticator *authenticator); + +#ifdef __cplusplus +} +#endif + +#endif /* __POLKIT_MATE_AUTHENTICATOR_H */ diff --git a/src/polkitmatelistener.c b/src/polkitmatelistener.c new file mode 100644 index 0000000..d06c657 --- /dev/null +++ b/src/polkitmatelistener.c @@ -0,0 +1,262 @@ +/* + * Copyright (C) 2009 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + * Author: David Zeuthen + */ + + +#include "config.h" + +#include +#include + +#include "polkitmatelistener.h" +#include "polkitmateauthenticator.h" + +struct _PolkitMateListener +{ + PolkitAgentListener parent_instance; + + /* we support multiple authenticators - they are simply queued up */ + GList *authenticators; + + PolkitMateAuthenticator *active_authenticator; +}; + +struct _PolkitMateListenerClass +{ + PolkitAgentListenerClass parent_class; +}; + +static void polkit_mate_listener_initiate_authentication (PolkitAgentListener *listener, + const gchar *action_id, + const gchar *message, + const gchar *icon_name, + PolkitDetails *details, + const gchar *cookie, + GList *identities, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + +static gboolean polkit_mate_listener_initiate_authentication_finish (PolkitAgentListener *listener, + GAsyncResult *res, + GError **error); + +G_DEFINE_TYPE (PolkitMateListener, polkit_mate_listener, POLKIT_AGENT_TYPE_LISTENER); + +static void +polkit_mate_listener_init (PolkitMateListener *listener) +{ +} + +static void +polkit_mate_listener_finalize (GObject *object) +{ + if (G_OBJECT_CLASS (polkit_mate_listener_parent_class)->finalize != NULL) + G_OBJECT_CLASS (polkit_mate_listener_parent_class)->finalize (object); +} + +static void +polkit_mate_listener_class_init (PolkitMateListenerClass *klass) +{ + GObjectClass *gobject_class; + PolkitAgentListenerClass *listener_class; + + gobject_class = G_OBJECT_CLASS (klass); + listener_class = POLKIT_AGENT_LISTENER_CLASS (klass); + + gobject_class->finalize = polkit_mate_listener_finalize; + + listener_class->initiate_authentication = polkit_mate_listener_initiate_authentication; + listener_class->initiate_authentication_finish = polkit_mate_listener_initiate_authentication_finish; +} + +PolkitAgentListener * +polkit_mate_listener_new (void) +{ + return POLKIT_AGENT_LISTENER (g_object_new (POLKIT_MATE_TYPE_LISTENER, NULL)); +} + +typedef struct +{ + PolkitMateListener *listener; + PolkitMateAuthenticator *authenticator; + + GTask *task; + GCancellable *cancellable; + + gulong cancel_id; +} AuthData; + +static AuthData * +auth_data_new (PolkitMateListener *listener, + PolkitMateAuthenticator *authenticator, + GTask *task, + GCancellable *cancellable) +{ + AuthData *data; + + data = g_new0 (AuthData, 1); + data->listener = g_object_ref (listener); + data->authenticator = g_object_ref (authenticator); + data->task = g_object_ref (task); + data->cancellable = g_object_ref (cancellable); + return data; +} + +static void +auth_data_free (AuthData *data) +{ + g_object_unref (data->listener); + g_object_unref (data->authenticator); + g_object_unref (data->task); + if (data->cancellable != NULL && data->cancel_id > 0) + g_signal_handler_disconnect (data->cancellable, data->cancel_id); + g_object_unref (data->cancellable); + g_free (data); +} + +static void +maybe_initiate_next_authenticator (PolkitMateListener *listener) +{ + if (listener->active_authenticator == NULL && listener->authenticators != NULL) + { + polkit_mate_authenticator_initiate (POLKIT_MATE_AUTHENTICATOR (listener->authenticators->data)); + listener->active_authenticator = listener->authenticators->data; + } +} + +static void +authenticator_completed (PolkitMateAuthenticator *authenticator, + gboolean gained_authorization, + gboolean dismissed, + gpointer user_data) +{ + AuthData *data = user_data; + + data->listener->authenticators = g_list_remove (data->listener->authenticators, authenticator); + if (authenticator == data->listener->active_authenticator) + data->listener->active_authenticator = NULL; + + g_object_unref (authenticator); + + if (dismissed) + { + g_task_return_new_error (data->task, + POLKIT_ERROR, + POLKIT_ERROR_CANCELLED, + _("Authentication dialog was dismissed by the user")); + } + + g_task_return_boolean (data->task, TRUE); + g_object_unref (data->task); + + maybe_initiate_next_authenticator (data->listener); + + auth_data_free (data); +} + +static void +cancelled_cb (GCancellable *cancellable, + gpointer user_data) +{ + AuthData *data = user_data; + + polkit_mate_authenticator_cancel (data->authenticator); +} + +static void +polkit_mate_listener_initiate_authentication (PolkitAgentListener *agent_listener, + const gchar *action_id, + const gchar *message, + const gchar *icon_name, + PolkitDetails *details, + const gchar *cookie, + GList *identities, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + PolkitMateListener *listener = POLKIT_MATE_LISTENER (agent_listener); + GTask *task; + PolkitMateAuthenticator *authenticator; + AuthData *data; + + task = g_task_new (G_OBJECT (listener), + NULL, + callback, + user_data); + g_task_set_source_tag (task, + polkit_mate_listener_initiate_authentication); + + authenticator = polkit_mate_authenticator_new (action_id, + message, + icon_name, + details, + cookie, + identities); + if (authenticator == NULL) + { + g_task_return_new_error (task, + POLKIT_ERROR, + POLKIT_ERROR_FAILED, + "Error creating authentication object"); + g_object_unref (task); + goto out; + } + + data = auth_data_new (listener, authenticator, task, cancellable); + + g_signal_connect (authenticator, + "completed", + G_CALLBACK (authenticator_completed), + data); + + if (cancellable != NULL) + { + data->cancel_id = g_signal_connect (cancellable, + "cancelled", + G_CALLBACK (cancelled_cb), + data); + } + + listener->authenticators = g_list_append (listener->authenticators, authenticator); + + maybe_initiate_next_authenticator (listener); + + out: + ; +} + +static gboolean +polkit_mate_listener_initiate_authentication_finish (PolkitAgentListener *listener, + GAsyncResult *res, + GError **error) +{ + GTask *task = G_TASK (res); + + g_warn_if_fail (g_task_get_source_tag (task) == polkit_mate_listener_initiate_authentication); + + if (g_task_propagate_pointer (task, error) == NULL) { + return FALSE; + } + + return TRUE; +} + diff --git a/src/polkitmatelistener.h b/src/polkitmatelistener.h new file mode 100644 index 0000000..c85b3b0 --- /dev/null +++ b/src/polkitmatelistener.h @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2009 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + * Author: David Zeuthen + */ + +#ifndef __POLKIT_MATE_LISTENER_H +#define __POLKIT_MATE_LISTENER_H + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#define POLKIT_MATE_TYPE_LISTENER (polkit_mate_listener_get_type()) +#define POLKIT_MATE_LISTENER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), POLKIT_MATE_TYPE_LISTENER, PolkitMateListener)) +#define POLKIT_MATE_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), POLKIT_MATE_TYPE_LISTENER, PolkitMateListenerClass)) +#define POLKIT_MATE_LISTENER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), POLKIT_MATE_TYPE_LISTENER, PolkitMateListenerClass)) +#define POLKIT_MATE_IS_LISTENER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), POLKIT_MATE_TYPE_LISTENER)) +#define POLKIT_MATE_IS_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), POLKIT_MATE_TYPE_LISTENER)) + +typedef struct _PolkitMateListener PolkitMateListener; +typedef struct _PolkitMateListenerClass PolkitMateListenerClass; + +GType polkit_mate_listener_get_type (void) G_GNUC_CONST; +PolkitAgentListener *polkit_mate_listener_new (void); + +#ifdef __cplusplus +} +#endif + +#endif /* __POLKIT_MATE_LISTENER_H */