Import Upstream version 1.24.0
This commit is contained in:
commit
eefe6afc96
|
@ -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/
|
|
@ -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
|
|
@ -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
|
|
@ -0,0 +1,9 @@
|
|||
[main]
|
||||
host = https://www.transifex.com
|
||||
|
||||
[MATE.master--mate-polkit]
|
||||
file_filter = po/<lang>.po
|
||||
source_file = po/mate-polkit.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
minimum_perc = 2
|
|
@ -0,0 +1,7 @@
|
|||
MATE developers:
|
||||
Perberos <perberos@gmail.com>
|
||||
Steve Zesch <stevezesch2@gmail.com>
|
||||
Stefano Karapetsas <stefano@karapetsas.com>
|
||||
|
||||
GNOME developers:
|
||||
davidz:David Zeuthen <davidz@redhat.com>
|
|
@ -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.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
|
@ -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.
|
|
@ -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).
|
|
@ -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
|
||||
|
|
@ -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
|
|
@ -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.
|
|
@ -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
|
|
@ -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}
|
||||
"
|
|
@ -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
|
|
@ -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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -0,0 +1,213 @@
|
|||
2009-01-02 Simos Xenitellis <simos@gnome.org>
|
||||
|
||||
* el.po: Updated Greek translation by Evgenia Petoumenou.
|
||||
|
||||
2008-12-29 Gabor Kelemen <kelemeng@gnome.hu>
|
||||
|
||||
* hu.po: Translation updated.
|
||||
|
||||
2008-11-10 Luca Ferretti <elle.uca@libero.it>
|
||||
|
||||
* it.po: Updated Italian translation by Gianvito Cavasoli.
|
||||
|
||||
2008-10-29 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* nb.po: Updated Norwegian bokmål translation.
|
||||
|
||||
2008-10-26 Petr Kovar <pknbe@volny.cz>
|
||||
|
||||
* cs.po: Fixed Czech translation by Adrian Gunis
|
||||
(bug #538982 again).
|
||||
|
||||
2008-10-12 Luca Ferretti <elle.uca@libero.it>
|
||||
|
||||
* it.po: Added Italian translation by Gianvito Cavasoli.
|
||||
|
||||
2008-10-08 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* nb.po: Added Norwegian bokmål translation.
|
||||
* LINGUAS: Add it here too.
|
||||
|
||||
2008-10-07 Daniel Nylander <po@danielnylander.se>
|
||||
|
||||
* sv.po: Updated Swedish translation
|
||||
|
||||
2008-09-21 Claude Paroz <claude@2xlibre.net>
|
||||
|
||||
* fr.po: Updated French translation by Robert-André Mauchin and Claude
|
||||
Paroz.
|
||||
|
||||
2008-09-21 Ilkka Tuohela <hile@iki.fi>
|
||||
|
||||
* fi.po: Updated Finnish translation.
|
||||
|
||||
2008-09-18 Marcel Telka <marcel@telka.sk>
|
||||
|
||||
* sk.po: Updated Slovak translation by Pavol Šimo.
|
||||
|
||||
2008-09-15 Gil Forcada <gforcada@gnome.org>
|
||||
|
||||
* ca.po: Updated Catalan translation by David Planella.
|
||||
|
||||
2008-08-26 Jorge Gonzalez <jorgegonz@svn.gnome.org>
|
||||
|
||||
* es.po: Updated Spanish translation by Juan Jesús Ojeda
|
||||
|
||||
2008-08-23 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
|
||||
|
||||
* 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 <pknbe@volny.cz>
|
||||
|
||||
* cs.po: Updated Czech translation by Adrian Gunis
|
||||
(bug #538982 again).
|
||||
|
||||
2008-08-14 Tomasz Dominikowski <tdominikowski@aviary.pl>
|
||||
|
||||
* pl.po: Updated Polish translation.
|
||||
|
||||
2008-08-09 Djihed Afifi <djihed@gmail.com>
|
||||
|
||||
* ar.po: Updated Arabic Translation by Khaled Hosny.
|
||||
|
||||
2008-08-04 Takeshi AIHANA <takeshi.aihana@gmail.com>
|
||||
|
||||
* ja.po: Updated Japanese translation.
|
||||
|
||||
2008-08-04 Duarte Loreto <happyguy_pt@hotmail.com>
|
||||
|
||||
* pt.po: Updated Portuguese translation by António Lima
|
||||
<amrlima@gmail.com>.
|
||||
|
||||
2008-07-31 Djihed Afifi <djihed@gmail.com>
|
||||
|
||||
* ar.po: Added Arabic Translation.
|
||||
* LINGUAS: Added ar.
|
||||
|
||||
2008-07-29 Leonardo Ferreira Fontenelle <leonardof@gnome.org>
|
||||
|
||||
* pt_BR.po: Translation updated by Igor Pires Soares. (Yes, again!)
|
||||
|
||||
2008-07-21 Leonardo Ferreira Fontenelle <leonardof@gnome.org>
|
||||
|
||||
* pt_BR.po: Translation updated by Igor Pires Soares.
|
||||
|
||||
2008-07-19 Denis Washington <dwashington@gmx.net>
|
||||
|
||||
* de.po: Updated German translation.
|
||||
|
||||
2008-07-19 Denis Washington <dwashington@gmx.net>
|
||||
|
||||
* de.po: Added German translation.
|
||||
* LINGUAS: Added "de".
|
||||
|
||||
2008-06-28 甘露(Lu Gan) <ganlu@svn.gnome.org>
|
||||
|
||||
* zh_CN.po: Add Simplified Chinese translation.
|
||||
|
||||
2008-06-25 Jonh Wendell <jwendell@gnome.org>
|
||||
|
||||
* pt_BR.po, LINGUAS: Added Brazilian Portuguese translation by Laudeci Oliveira.
|
||||
|
||||
2008-06-21 Petr Kovar <pknbe@volny.cz>
|
||||
|
||||
* cs.po: Added Czech translation by Adrian Gunis
|
||||
(bug #538982).
|
||||
* LINGUAS: Added 'cs'.
|
||||
|
||||
2008-06-19 Marcel Telka <marcel@telka.sk>
|
||||
|
||||
* sk.po: Added Slovak translation by Pavol Šimo.
|
||||
* LINGUAS: Added sk.
|
||||
|
||||
2008-06-08 Leonid Kanter <leon@asplinux.ru>
|
||||
|
||||
* ru.po: Added Russian translation
|
||||
* LINGUAS: Added "ru"
|
||||
|
||||
2008-05-31 Yair Hershkovitz <yairhr@gmail.com>
|
||||
|
||||
* he.po: Updated Hebrew translation by Mark Krapivner.
|
||||
|
||||
2008-05-26 Wadim Dziedzic <wadimd@svn.gnome.org>
|
||||
|
||||
* pl.po: Updated polish translation
|
||||
|
||||
2008-05-25 Duarte Loreto <happyguy_pt@hotmail.com>
|
||||
|
||||
* pt.po: Added Portuguese translation by António Lima
|
||||
<amrlima@gmail.com>.
|
||||
* LINGUAS: Added Portuguese (pt).
|
||||
|
||||
2008-05-25 Jorge Gonzalez <jorgegonz@svn.gnome.org>
|
||||
|
||||
* es.po: Updated Spanish translation
|
||||
|
||||
2008-05-18 Wadim Dziedzic <wadimd@svn.gnome.org>
|
||||
|
||||
* pl.po: Added Polish translation
|
||||
* LINGUAS: Added Polish language (pl)
|
||||
|
||||
2008-05-13 Gil Forcada <gforcada@gnome.org>
|
||||
|
||||
* ca.po: Added Catalan translation by David Planella.
|
||||
* LINGUAS: Added 'ca' (Catalan).
|
||||
|
||||
2008-05-10 Jorge Gonzalez <jorgegonz@svn.gnome.org>
|
||||
|
||||
* es.po: Updated Spanish translation
|
||||
|
||||
2008-04-20 Jorge Gonzalez <jorgegonz@svn.gnome.org>
|
||||
|
||||
* es.po: Updated Spanish translation
|
||||
|
||||
2008-04-13 Takeshi AIHANA <takeshi.aihana@gmail.com>
|
||||
|
||||
* ja.po: Added Japanese translation.
|
||||
* LINGUAS: Added 'ja' (Japanese).
|
||||
|
||||
2008-04-09 Gabor Kelemen <kelemeng@gnome.hu>
|
||||
|
||||
* hu.po: Translation added by Máté Őry
|
||||
* LINGUAS: Added hu
|
||||
|
||||
2008-04-08 Yair Hershkovitz <yairhr@gmail.com>
|
||||
|
||||
* he.po, LINGUAS: Added Hebrew translation by Mark Krapivner.
|
||||
|
||||
2008-04-06 Jorge Gonzalez <jorgegonz@svn.gnome.org>
|
||||
|
||||
* es.po: Added Spanish translation.
|
||||
* LINGUAS: Added es.
|
||||
|
||||
2008-04-05 Ilkka Tuohela <hile@iki.fi>
|
||||
|
||||
* fi.po: Added Finnish translation (by Ville-Pekka Vainio).
|
||||
|
||||
2008-04-04 Daniel Nylander <po@danielnylander.se>
|
||||
|
||||
* sv.po: Added Swedish translation
|
||||
* LINGUAS: Added sv
|
||||
|
||||
2008-04-04 Simos Xenitellis <simos@gnome.org>
|
||||
|
||||
* LINGUAS: Addded el (Greek).
|
||||
* el.po: Added Greek translation (move from Launchpad).
|
||||
|
||||
2008-04-04 Philip Withnall <pwithnall@svn.gnome.org>
|
||||
|
||||
* LINGUAS: Added en_GB (British English).
|
||||
* en_GB.po: Added British English translation.
|
||||
|
||||
2008-04-04 Claude Paroz <claude@2xlibre.net>
|
||||
|
||||
* fr.po: Added French translation.
|
||||
* LINGUAS: Added fr.
|
||||
|
||||
2007-08-01 David Zeuthen <davidz@redhat.com>
|
||||
|
||||
* da.po: Added Danish translations (feel free to fix these, I just
|
||||
added them to ensure that i18n works)
|
||||
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
src/polkit-mate-authentication-agent-1.desktop.in
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# nato323 <nato323@gmail.com>, 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 <nato323@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# samson <sambelet@yahoo.com>, 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 <sambelet@yahoo.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_ዝርዝሮች</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>ተግባር:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "ለማረም ይጫኑ %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>ሻጭ:</b></small>"
|
||||
|
||||
#: 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 "የ አሰራር ጥቅል ማረጋገጫ ወኪል ለ ሜት ዴስክቶፕ"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# مهدي السطيفي <chinoune.mehdi@gmail.com>, 2018
|
||||
# Abdulwahab Bah <Amb1110@gmail.com>, 2018
|
||||
# Mosaab Alzoubi <moceap@hotmail.com>, 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 <moceap@hotmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>ال_تفاصيل</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>الإجراء:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "انقر لتحرير %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>المزوّد:</b></small>"
|
||||
|
||||
#: 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 لسطح مكتب متّة"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Mihail Varantsou <meequz@gmail.com>, 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 <meequz@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>Д_эталі</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Дзеянне:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Пстрыкніце, каб рэдагаваць %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Вытворца:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>П_одробности</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Действие:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Щракнете, за да редактирате %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Доставчик:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>বিবরণ (_D)</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>কর্ম:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s সম্পাদনার জন্য ক্লিক করুন"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>বিক্রেতা:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Sky Lion <xskylionx@gmail.com>, 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 <xskylionx@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detalji</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Radnja:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Kliknite da uredite %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Prodavač:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 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 <rbuj@fedoraproject.org>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detalls</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Acció:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Feu clic per editar %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Proveïdor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Jose Alfredo Murcia Andrés <joamuran@gmail.com>, 2018
|
||||
# Pilar Embid <embid.mar@gmail.com>, 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 <embid.mar@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detalls</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Acció:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Feu clic per a editar %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Proveïdor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# 趙惟倫 <bluebat@member.fsf.org>, 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: 趙惟倫 <bluebat@member.fsf.org>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>詳細資料(_D)</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>動作:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "按下這裡編輯 %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>廠商:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Michal <sinope@seznam.cz>, 2018
|
||||
# LiberteCzech <liberte.czech@gmail.com>, 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 <liberte.czech@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Podrobnosti</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Akce:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Kliknutím upravíte %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Dodavatel:</b></small>"
|
||||
|
||||
#: 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 "
|
|
@ -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 <EMAIL@ADDRESS>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Allan Nordhøy <epost@anotheragency.no>, 2018
|
||||
# Joe Hansen <joedalton2@yahoo.dk>, 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 <joedalton2@yahoo.dk>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detaljer</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Handling:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Klik for at redigere %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Leverandør:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Tobias Bannert <tobannert@gmail.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 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 <mate@raveit.de>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Details</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Aktion:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Klicken, um %s zu bearbeiten"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Anbieter:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# thunk <thunk77@gmail.com>, 2018
|
||||
# 437c9d6e19936ed69f57bed9e0fe4716, 2018
|
||||
# Αλέξανδρος Καπετάνιος <alexandros@gnugr.org>, 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: Αλέξανδρος Καπετάνιος <alexandros@gnugr.org>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Λεπτομέρειες</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Ενέργεια:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Κάντε κλικ για να επεξεργαστείτε το %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Προμηθευτής:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Michael Findlay <translate@cobber-linux.org>, 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 <translate@cobber-linux.org>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Details</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Action:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Click to edit %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Vendor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Martin Wimpress <code@flexion.org>, 2018
|
||||
# Andi Chandler <andi@gowling.com>, 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 <andi@gowling.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Details</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Action:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Click to edit %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Vendor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Andres Sanchez <blackatze93@gmail.com>, 2018
|
||||
# Joel Barrios <darkshram@gmail.com>, 2019
|
||||
# Toni Estévez <toni.estevez@gmail.com>, 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 <toni.estevez@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detalles</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Acción:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Haga clic para editar %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Fabricante:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Germán Herrou <german.herrou@gmail.com>, 2018
|
||||
# Renzo Sparta <exequiel0210@gmail.com>, 2019
|
||||
# mbarbero <bastayadefumar@gmail.com>, 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 <bastayadefumar@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detalles</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Acción:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Clic para editar %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Vendedor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Sergio Alejandro Bayona Becerra <sergioalejo@gmail.com>, 2018
|
||||
# Julian Borrero <julborre@gmail.com>, 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 <julborre@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detalles</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Acción:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Clic para editar %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Vendedor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Ivar Smolin <okul@linux.ee>, 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 <okul@linux.ee>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>Ü_ksikasjad</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Tegevus:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Vajuta %s muutmiseks"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Tootja:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 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 <asier.iturralde@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Xehetasunak</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Ekintza:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Egin klik %s editatzeko"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Hornitzailea:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Mahdi Pourghasem <mahdipourghasem@gmail.com>, 2018
|
||||
# sir_hawell <arash.cordi@gmail.com>, 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 <arash.cordi@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Lasse Liehu <larso@gmx.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# nomen omen, 2018
|
||||
# Kimmo Kujansuu <mrkujansuu@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Tiedot</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Toiminto:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Muokkaa kohdetta %s napsauttamalla"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Valmistaja:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Tubuntu <tubuntu@testimonium.be>, 2018
|
||||
# Étienne Deparis <etienne@depar.is>, 2018
|
||||
# yoplait <yoplait@tememe.org>, 2018
|
||||
# Charles Monzat <c.monzat@laposte.net>, 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 <c.monzat@laposte.net>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Détails</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Action :</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Cliquez pour modifier %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Fournisseur :</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <eerlemm@hotmail.com>, 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 <monsta@inbox.ru>\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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: ../src/polkitmateauthenticationdialog.c:833
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: ../src/polkitmateauthenticationdialog.c:836
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../src/polkitmateauthenticationdialog.c:855
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Miguel Anxo Bouzada <mbouzada@gmail.com>, 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 <mbouzada@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detalles</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Acción:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Prema para editar %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Provedor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <khaledhosny@eglug.org>, 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 <nyakhaychyk@gmail.com>, 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 <runab@redhat.com>, 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 <david.planella@gmail.com>, 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š <andygun@seznam.cz>, 2008.
|
||||
# Petr Kovar <pknbe@volny.cz>, 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 <davidz@redhat.com>, 2007.
|
||||
# Mads Bille Lundby <lundbymads@gmail.com>, 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 <denisw@svn.gnome.org>, 2008.
|
||||
# Mario Blättermann <mariobl@gnome.org>, 2009.
|
||||
# Christian Kirbach <Christian.Kirbach@googlemail.com>, 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 <EMAIL@ADDRESS>, 2008.
|
||||
# Jennie Petoumenou <epetoumenou@gmail.com>, 2008.
|
||||
# Tournaris Pavlos <p.tournaris@gmail.com>, 2009.
|
||||
# Simos Xenitellis <simos@gnome.org>, 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 <philip@tecnocode.co.uk>, 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 <jorgegonz@svn.gnome.org>, 2008.
|
||||
# Juanje Ojeda <jojeda@emergya.es>, 2008.
|
||||
# Jorge González <jorgegonz@svn.gnome.org>, 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 <dooteo@euskalgnu.org>, 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 <timo.jyrinki@iki.fi>
|
||||
# Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>, 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 <claude@2xlibre.net>, 2008-2009.
|
||||
# Robert-André Mauchin <zebob.m@pengzone.org>, 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 <fran.dieguez@mabishu.com>, 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 <swkothar@redhat.com>, 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 <rajesh672@gmail.com>, 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 <kelemeng at gnome dot hu>, 2008, 2009.
|
||||
# Máté ŐRY <orygnome at gmail dot com>
|
||||
|
||||
|
||||
|
||||
|
||||
========== 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 <janvitus@ubuntu-it.org>, 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 <takeshi.aihana@gmail.com>, 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 <svenkate@redhat.com>, 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 <zygis@gnome.org>, 2009.
|
||||
# Aurimas Černius <aurisc4@gmail.com>, 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 <apeter@redhat.com>, 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 <sshedmak@redhat.com>, 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 <kmaraas@gnome.org>, 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 <mgiri@redhat.com>, 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 <aalam@users.sf.net>, 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 <piotrdrag@gmail.com>, 2008-2010.
|
||||
# Wadim Dziedzic <wdziedzic@aviary.pl>, 2008.
|
||||
# Tomasz Dominikowski <dominikowski@gmail.com>, 2008-2009.
|
||||
# Aviary.pl <gnomepl@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 <amrlima@gmail.com>, 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 <laudeci@gmail.com>, 2008.
|
||||
# Igor Pires Soares <igor@projetofedora.org>, 2008.
|
||||
# Leonardo Ferreira Fontenelle <leonardof@gnome.org>, 2009.
|
||||
# Enrico Nicoletto <liverig@gmail.com>, 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 <EMAIL@ADDRESS>, 2009.
|
||||
# Lucian Adrian Grijincu <lucian.grijincu@gmail.com>, 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 <leon@asplinux.ru>, 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 <palo.simo@gmail.com>, 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č <gnomeju@svn.gnome.org>, 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 <po@danielnylander.se>, 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 <ifelix@redhat.com>, 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 <kkrothap@redhat.com>, 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 <gumaraa@gmail.com>, 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 <dziumanenko@gmail.com>, 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) <ganlu@svn.gnome.org>, 2008.
|
||||
# Tao Wei <weitao1979@gmail.com>, 2009.
|
||||
# Aron Xu <happyaron.xu@gmail.com>, 2009.
|
||||
|
||||
|
||||
|
||||
|
||||
========== zh_HK.po ==========
|
||||
# Chinese (Hong Kong) translation of policykit-gnome
|
||||
# Copyright (C) 20007 Free Software Foundation, Inc.
|
||||
# Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>, 2008, 2010.
|
||||
|
||||
|
||||
|
||||
|
||||
========== zh_TW.po ==========
|
||||
# Chinese (Taiwan) translation of policykit-gnome
|
||||
# Copyright (C) 20007 Free Software Foundation, Inc.
|
||||
# Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>, 2008, 2010.
|
||||
|
||||
|
||||
|
||||
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>વિગતો (_D)</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>ક્રિયા:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s ને ફેરફાર કરવા માટે ક્લિક કરો"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>વેન્ડર:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# בר בוכובזה <bokovzabox@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_פרטים</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>פעולה:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "לחץ לעריכת %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>ספק:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Sadgamaya <g.raghavan.g@gmail.com>, 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 <g.raghavan.g@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b> विवरण</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b> क्रिया</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s संपादन के लिए क्लिक करें"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b> विक्रेता</b></small>"
|
||||
|
||||
#: 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 "माटे डेस्कटॉप के लिए पोलिसीकिट प्रमाणीकरण घटक"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Ivica Kolić <ikoli@yahoo.com>, 2018
|
||||
# Elvis M. Lukšić <meluksic@yahoo.com>, 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ć <meluksic@yahoo.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Pojedinosti</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Radnja:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Klikni za uređivanje %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Isporučitelj:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# KAMI KAMI <kami911@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Rezső Páder <rezso@rezso.net>, 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 <rezso@rezso.net>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Részletek</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Művelet:</b></small>"
|
||||
|
||||
#: 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 "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Gyártó:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Siranush <ss.m.95@mail.ru>, 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 <ss.m.95@mail.ru>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Մանրամասն</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Գործողություն:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Սեղմեք խմբագրել %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Վաճառող:</b></small>"
|
||||
|
||||
#: 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 աշխատանքային սեղանի համար"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Andika Triwidada <andika@gmail.com>, 2018
|
||||
# Ibnu Daru Aji, 2018
|
||||
# Willy Sudiarto Raharjo <willysr@slackware-id.org>, 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 <willysr@slackware-id.org>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detail</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Aksi:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Klik untuk menyunting %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Vendor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detallies</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Action:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Fa un clic por modificar %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Venditor:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Sveinn í Felli <sv1@fellsnet.is>, 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 <sv1@fellsnet.is>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Frekari upplýsingar</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Aðgerð:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Ýttu til að breyta %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Framleiðandi:</b></small>"
|
||||
|
||||
#: 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ð"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Marco Bartolucci <nap.84@live.it>, 2018
|
||||
# Giuseppe Pignataro <rogepix@gmail.com>, 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 <rogepix@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Dettagli</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Azione:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Fare clic per modificare %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Fornitore:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>詳細(_D)</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>アクション:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "ここをクリックして %s を編集して下さい"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>ベンダ:</b></small>"
|
||||
|
||||
#: 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 認証エージェント"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Selyan Sliman Ɛmiri <selyan.kab@gmail.com>, 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 <selyan.kab@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Baurzhan Muftakhidinov <baurthefirst@gmail.com>, 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 <baurthefirst@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Ақпараты</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Әрекет:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s түзету үшін шертіңіз"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Шығарушы:</b></small>"
|
||||
|
||||
#: 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 аутентификация агенті"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>ವಿವರಗಳು(_D)</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>ಕ್ರಿಯೆ:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s ಅನ್ನು ಸಂಪಾದಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>ಮಾರಾಟಗಾರ:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Seong-ho Cho <darkcircle.0426@gmail.com>, 2018
|
||||
# Alan Lee <bkrhlim@aol.com>, 2018
|
||||
# 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>, 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) <bagjunggyu@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>자세히(_D)</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>동작:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s을(를) 편집하려면 누르십시오"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>제조자:</b></small>"
|
||||
|
||||
#: 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 "마테 데스크톱용 정책키트 인증 에이전트"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Rasti K5 <rasti.khdhr@gmail.com>, 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 <rasti.khdhr@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Аракет:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Иштетүүчүсү:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Išsamiau</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Veiksmas:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Spustelėkite norėdami taisyti %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Pardavėjas:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Klāvs Priedītis <klavs.pr@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detaļas</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Darbība:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Nospied, lai labotu %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Pārdevējs:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_വിശദവിവരങ്ങള്</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>പ്രവര്ത്തി:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s ചിട്ടപ്പെടുത്തുന്നതിനായി ക്ലിക്ക് ചെയ്യുക"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>വില്പ്പനക്കാരന്:</b></small>"
|
||||
|
||||
#: 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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Vaibhav S Dalvi <vaibhav.dlv@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>तपशील (_D)</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>कृती:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s संपादीत करण्यासाठी क्लिक करा"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>विक्रेता:</b></small>"
|
||||
|
||||
#: 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 ऑथेंटीकेशन एजेंट"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Puretech <terjemah.puretech@gmail.com>, 2018
|
||||
# abuyop <abuyop@gmail.com>, 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 <abuyop@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Perincian</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Tindakan:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Klik untuk sunting %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Pembekal:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Allan Nordhøy <epost@anotheragency.no>, 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 <epost@anotheragency.no>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detaljer</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Handling:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Klikk for å redigere %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Leverandør:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Sven Keeter <sven.keeter@gmail.com>, 2018
|
||||
# chautari <chautari@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s सम्पादन गर्न क्लिक गर्नुहोस्"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Michael Steenbeek <m.o.steenbeek@gmail.com>, 2018
|
||||
# Pjotr <pjotrvertaalt@gmail.com>, 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 <pjotrvertaalt@gmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Details</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Actie:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Klik om %s te bewerken"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Leverancier:</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Øystein Steffensen-Alværvik <internett@protonmail.com>, 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 <internett@protonmail.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
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 ""
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Cfpo Miègjorn-Pirenèus <inactive+cfpomp@transifex.com>, 2018
|
||||
# Cédric Valmary <cvalmary@yahoo.fr>, 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 <cvalmary@yahoo.fr>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>_Detalhs</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>Accion :</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "Clicatz per modificar %s"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>Provesidor :</b></small>"
|
||||
|
||||
#: 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"
|
|
@ -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 <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 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 <stefano@karapetsas.com>, 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 "<small><b>_Details</b></small>"
|
||||
msgstr "<small><b>ବିସ୍ତୃତ ବିବରଣୀ (_D)</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:836
|
||||
msgid "<small><b>Action:</b></small>"
|
||||
msgstr "<small><b>କାର୍ଯ୍ୟ:</b></small>"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:839
|
||||
#, c-format
|
||||
msgid "Click to edit %s"
|
||||
msgstr "%s କୁ ସମ୍ପାଦନ କରିବା ପାଇଁ କ୍ଲିକ କରନ୍ତୁ"
|
||||
|
||||
#: src/polkitmateauthenticationdialog.c:856
|
||||
msgid "<small><b>Vendor:</b></small>"
|
||||
msgstr "<small><b>ବିକ୍ରେତା:</b></small>"
|
||||
|
||||
#: 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 ""
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue