diffstat for polkit-kde-agent-1-5.13.4 polkit-kde-agent-1-5.16.0 AuthDialog.cpp | 27 - AuthDialog.h | 4 AuthDialog.ui | 129 +++-- CMakeLists.txt | 6 authdetails.ui | 50 - debian/changelog | 359 ++++++++++++++ debian/control | 26 - po/ar/polkit-kde-authentication-agent-1.po | 62 +- po/ast/polkit-kde-authentication-agent-1.po | 182 ------- po/bs/polkit-kde-authentication-agent-1.po | 62 +- po/ca/polkit-kde-authentication-agent-1.po | 67 +- po/ca@valencia/polkit-kde-authentication-agent-1.po | 67 +- po/cs/polkit-kde-authentication-agent-1.po | 70 +- po/da/polkit-kde-authentication-agent-1.po | 68 +- po/de/polkit-kde-authentication-agent-1.po | 66 +- po/el/polkit-kde-authentication-agent-1.po | 62 +- po/en_GB/polkit-kde-authentication-agent-1.po | 64 +- po/eo/polkit-kde-authentication-agent-1.po | 62 +- po/es/polkit-kde-authentication-agent-1.po | 64 +- po/et/polkit-kde-authentication-agent-1.po | 62 +- po/eu/polkit-kde-authentication-agent-1.po | 72 +- po/fi/polkit-kde-authentication-agent-1.po | 66 +- po/fr/polkit-kde-authentication-agent-1.po | 68 +- po/ga/polkit-kde-authentication-agent-1.po | 62 +- po/gl/polkit-kde-authentication-agent-1.po | 74 +- po/he/polkit-kde-authentication-agent-1.po | 62 +- po/hr/polkit-kde-authentication-agent-1.po | 62 +- po/hu/polkit-kde-authentication-agent-1.po | 62 +- po/ia/polkit-kde-authentication-agent-1.po | 62 +- po/id/polkit-kde-authentication-agent-1.po | 70 +- po/is/polkit-kde-authentication-agent-1.po | 62 +- po/it/polkit-kde-authentication-agent-1.po | 64 +- po/ja/polkit-kde-authentication-agent-1.po | 58 +- po/kk/polkit-kde-authentication-agent-1.po | 62 +- po/km/polkit-kde-authentication-agent-1.po | 62 +- po/ko/polkit-kde-authentication-agent-1.po | 79 +-- po/lt/polkit-kde-authentication-agent-1.po | 62 +- po/mai/polkit-kde-authentication-agent-1.po | 62 +- po/mr/polkit-kde-authentication-agent-1.po | 62 +- po/ms/polkit-kde-authentication-agent-1.po | 62 +- po/nb/polkit-kde-authentication-agent-1.po | 60 +- po/nds/polkit-kde-authentication-agent-1.po | 62 +- po/nl/polkit-kde-authentication-agent-1.po | 64 +- po/nn/polkit-kde-authentication-agent-1.po | 69 +- po/pa/polkit-kde-authentication-agent-1.po | 62 +- po/pl/polkit-kde-authentication-agent-1.po | 68 +- po/pt/polkit-kde-authentication-agent-1.po | 64 +- po/pt_BR/polkit-kde-authentication-agent-1.po | 64 +- po/ro/polkit-kde-authentication-agent-1.po | 62 +- po/ru/polkit-kde-authentication-agent-1.po | 85 +-- po/sk/polkit-kde-authentication-agent-1.po | 76 +- po/sl/polkit-kde-authentication-agent-1.po | 62 +- po/sr/polkit-kde-authentication-agent-1.po | 60 +- po/sr@ijekavian/polkit-kde-authentication-agent-1.po | 60 +- po/sr@ijekavianlatin/polkit-kde-authentication-agent-1.po | 60 +- po/sr@latin/polkit-kde-authentication-agent-1.po | 60 +- po/sv/polkit-kde-authentication-agent-1.po | 64 +- po/th/polkit-kde-authentication-agent-1.po | 62 +- po/tr/polkit-kde-authentication-agent-1.po | 62 +- po/ug/polkit-kde-authentication-agent-1.po | 62 +- po/uk/polkit-kde-authentication-agent-1.po | 64 +- po/vi/polkit-kde-authentication-agent-1.po | 62 +- po/zh_CN/polkit-kde-authentication-agent-1.po | 66 +- po/zh_TW/polkit-kde-authentication-agent-1.po | 66 +- policykit1-kde.notifyrc | 1 65 files changed, 2235 insertions(+), 2166 deletions(-) diff -Nru polkit-kde-agent-1-5.13.4/AuthDialog.cpp polkit-kde-agent-1-5.16.0/AuthDialog.cpp --- polkit-kde-agent-1-5.13.4/AuthDialog.cpp 2018-07-31 13:00:46.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/AuthDialog.cpp 2019-06-06 13:15:31.000000000 +0000 @@ -66,6 +66,9 @@ setupUi(this); + connect(userCB, QOverload::of(&QComboBox::currentIndexChanged), + this, &AuthDialog::checkSelectedUser); + connect(buttonBox, &QDialogButtonBox::accepted, this, &AuthDialog::okClicked); connect(buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept); connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject); @@ -137,7 +140,7 @@ } } - AuthDetails *detailsDialog = new AuthDetails(details, m_actionDescription, m_appname, this); + AuthDetails *detailsDialog = new AuthDetails(details, m_actionDescription, this); detailsWidgetContainer->layout()->addWidget(detailsDialog); userCB->hide(); @@ -214,6 +217,7 @@ * doing it again.. (this is mainly used when the user entered the * wrong password and the dialog is recycled) */ + if (identities.count() && (userCB->count() - 1) != identities.count()) { // Clears the combobox in the case some user be added userCB->clear(); @@ -278,7 +282,7 @@ return PolkitQt1::Identity::fromString(id); } -void AuthDialog::on_userCB_currentIndexChanged(int /*index*/) +void AuthDialog::checkSelectedUser() { PolkitQt1::Identity identity = adminUserSelected(); // itemData is Null when "Select user" is selected @@ -299,7 +303,7 @@ QString AuthDialog::password() const { - return lePassword->text(); + return lePassword->password(); } void AuthDialog::authenticationFailure() @@ -317,22 +321,11 @@ AuthDetails::AuthDetails(const PolkitQt1::Details &details, const PolkitQt1::ActionDescription &actionDescription, - const QString &appname, QWidget *parent) : QWidget(parent) { setupUi(this); - // better N/A than a blank space - if (appname.isEmpty()) { - QFont nameFont = app_label->font(); - nameFont.setItalic(true); - app_label->setFont(nameFont); - app_label->setText(i18n("Not Applicable")); - } else { - app_label->setText(appname); - } - foreach(const QString &key, details.keys()) { //krazy:exclude=foreach (Details is not a map/hash, but rather a method) int row = gridLayout->rowCount() + 1; @@ -351,13 +344,11 @@ gridLayout->addWidget(valueLabel, row, 1); } - // replace blank description - // neither isEmpty() or isNull() worked (?) - if (actionDescription.description() == "") { + if (actionDescription.description().isEmpty()) { QFont descrFont(action_label->font()); descrFont.setItalic(true); action_label->setFont(descrFont); - action_label->setText(i18n("Not Applicable")); + action_label->setText(i18n("'Description' not provided")); } else { action_label->setText(actionDescription.description()); } diff -Nru polkit-kde-agent-1-5.13.4/AuthDialog.h polkit-kde-agent-1-5.16.0/AuthDialog.h --- polkit-kde-agent-1-5.13.4/AuthDialog.h 2018-07-31 13:00:46.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/AuthDialog.h 2019-06-06 13:15:31.000000000 +0000 @@ -66,10 +66,9 @@ void accept() override; private slots: - void on_userCB_currentIndexChanged(int index); + void checkSelectedUser(); private: - QString m_appname; QString m_message; void createUserCB(const PolkitQt1::Identity::List &identities); @@ -81,7 +80,6 @@ public: AuthDetails(const PolkitQt1::Details &details, const PolkitQt1::ActionDescription &actionDescription, - const QString &appname, QWidget *parent); private slots: diff -Nru polkit-kde-agent-1-5.13.4/AuthDialog.ui polkit-kde-agent-1-5.16.0/AuthDialog.ui --- polkit-kde-agent-1-5.13.4/AuthDialog.ui 2018-07-31 13:00:46.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/AuthDialog.ui 2019-06-06 13:15:31.000000000 +0000 @@ -7,11 +7,11 @@ 0 0 511 - 344 + 260 - + 0 0 @@ -19,41 +19,12 @@ - - - - - - - 0 - 0 - - - - &Lock Icon here - - - false - - - lePassword - - - - - - - Qt::Vertical - - - - 20 - 92 - - - - - + + 6 + + + + @@ -94,11 +65,28 @@ - - + + + + Qt::Vertical + + + + 20 + 13 + + + - + + + + 0 + 0 + + + @@ -110,16 +98,58 @@ - - - - QLineEdit::Password + + + + true - - false + + + 0 + 0 + + + + + 6 + + + + + + 0 + 0 + + + + &Lock Icon here + + + false + + + lePassword + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + @@ -139,9 +169,14 @@ KMessageWidget - QWidget + QFrame
kmessagewidget.h
+ + KPasswordLineEdit + QWidget +
kpasswordlineedit.h
+
userCB diff -Nru polkit-kde-agent-1-5.13.4/CMakeLists.txt polkit-kde-agent-1-5.16.0/CMakeLists.txt --- polkit-kde-agent-1-5.13.4/CMakeLists.txt 2018-07-31 13:01:17.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/CMakeLists.txt 2019-06-06 13:16:28.000000000 +0000 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.0) project(polkit-kde-agent-1) -set(PROJECT_VERSION "5.13.4") +set(PROJECT_VERSION "5.16.0") -set(QT_MIN_VERSION "5.9.0") -set(KF5_MIN_VERSION "5.42.0") +set(QT_MIN_VERSION "5.12.0") +set(KF5_MIN_VERSION "5.58.0") # we need some parts of the ECM CMake helpers find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) diff -Nru polkit-kde-agent-1-5.13.4/authdetails.ui polkit-kde-agent-1-5.16.0/authdetails.ui --- polkit-kde-agent-1-5.13.4/authdetails.ui 2018-07-31 13:00:46.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/authdetails.ui 2019-06-06 13:15:31.000000000 +0000 @@ -17,7 +17,7 @@ - + @@ -33,28 +33,31 @@ - + <null> - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - + Qt::Horizontal - + Vendor: + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + @@ -66,7 +69,7 @@ - + @@ -82,33 +85,7 @@ - - - - - 75 - true - - - - Application: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - Application: - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - - + IBeamCursor @@ -116,12 +93,15 @@ Action ID: + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + Qt::TextSelectableByMouse - + @@ -130,7 +110,7 @@ - Action ID: + ID: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter diff -Nru polkit-kde-agent-1-5.13.4/debian/changelog polkit-kde-agent-1-5.16.0/debian/changelog --- polkit-kde-agent-1-5.13.4/debian/changelog 2018-08-19 21:18:24.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/debian/changelog 2019-06-11 10:37:32.000000000 +0000 @@ -1,3 +1,89 @@ +polkit-kde-agent-1 (4:5.16.0-0ubuntu1) eoan; urgency=medium + + * New upstream release (5.16.0) + + -- Rik Mills Tue, 11 Jun 2019 11:37:32 +0100 + +polkit-kde-agent-1 (4:5.15.90-0ubuntu1) eoan; urgency=medium + + * New upstream (beta) release (5.15.90) + + -- Rik Mills Sat, 18 May 2019 08:50:34 +0100 + +polkit-kde-agent-1 (4:5.15.5-0ubuntu1) eoan; urgency=medium + + * New upstream release (5.15.5) + + -- Rik Mills Fri, 10 May 2019 13:49:27 +0100 + +polkit-kde-agent-1 (4:5.15.4-0ubuntu1) disco; urgency=medium + + * New upstream bugfix release (5.15.4) + + -- Rik Mills Thu, 04 Apr 2019 17:11:11 +0100 + +polkit-kde-agent-1 (4:5.15.3-0ubuntu1) disco; urgency=medium + + * New upstream release (5.15.3) + + -- Rik Mills Wed, 13 Mar 2019 09:10:32 +0000 + +polkit-kde-agent-1 (4:5.15.2-0ubuntu1) disco; urgency=medium + + * New upstream release (5.15.2) + + -- Rik Mills Tue, 26 Feb 2019 19:16:18 +0000 + +polkit-kde-agent-1 (4:5.15.1-0ubuntu1) disco; urgency=medium + + * New upstream release (5.15.1) + + -- Rik Mills Tue, 19 Feb 2019 21:35:04 +0000 + +polkit-kde-agent-1 (4:5.15.0-0ubuntu1) disco; urgency=medium + + * New upstream release (5.15.0) + + -- Rik Mills Tue, 12 Feb 2019 09:54:35 +0000 + +polkit-kde-agent-1 (4:5.14.90-0ubuntu1) disco; urgency=medium + + * New upstream (beta) release (5.14.90) + + -- Rik Mills Sat, 19 Jan 2019 08:26:00 +0000 + +polkit-kde-agent-1 (4:5.14.5-0ubuntu1) disco; urgency=medium + + * New upstream release (5.14.5) + + -- Rik Mills Tue, 08 Jan 2019 23:49:20 +0000 + +polkit-kde-agent-1 (4:5.14.4-0ubuntu1) disco; urgency=medium + + * New upstream release (5.13.90) + * New upstream release (5.14.0) + * New upstream release (5.14.1) + * New upstream release (5.14.2) + * New upstream release (5.14.3) + * New upstream release (5.14.4) + + -- Rik Mills Tue, 27 Nov 2018 23:16:23 +0000 + +polkit-kde-agent-1 (4:5.13.5-0ubuntu1) cosmic; urgency=medium + + * New upstream release (5.13.5) + + -- Rik Mills Fri, 07 Sep 2018 16:36:00 +0100 + +polkit-kde-agent-1 (4:5.13.4-1ubuntu1) cosmic; urgency=medium + + * Merge from Debian unstable. Remaining changes: + - debian/control: Kubuntu packaging Vcs fields. + - debian/control: Bumped Frameworks & Qt build deps. + - debian/control: Don't use Debian group breaks. + + -- Rik Mills Tue, 28 Aug 2018 14:17:54 +0100 + polkit-kde-agent-1 (4:5.13.4-1) unstable; urgency=medium * New upstream release (5.13.4). @@ -5,6 +91,22 @@ -- Maximiliano Curia Sun, 19 Aug 2018 23:18:24 +0200 +polkit-kde-agent-1 (4:5.13.4-0ubuntu1) cosmic; urgency=medium + + * New upstream release (5.13.4) + + -- Rik Mills Fri, 03 Aug 2018 16:43:59 +0100 + +polkit-kde-agent-1 (4:5.13.3-0ubuntu1) cosmic; urgency=medium + + * lintian override for desktop file + * New upstream release (5.13.0) + * New upstream release (5.13.1) + * New upstream release (5.13.2) + * New upstream release (5.13.3) + + -- Rik Mills Sat, 28 Jul 2018 17:27:08 +0100 + polkit-kde-agent-1 (4:5.13.1-1) unstable; urgency=medium * New upstream release (5.13.1). @@ -14,6 +116,12 @@ -- Maximiliano Curia Tue, 26 Jun 2018 13:43:27 +0200 +polkit-kde-agent-1 (4:5.12.6-0ubuntu1) cosmic; urgency=medium + + * New upstream release (5.12.6) + + -- Rik Mills Thu, 28 Jun 2018 15:32:20 +0100 + polkit-kde-agent-1 (4:5.12.5-1) unstable; urgency=medium * New upstream release (5.12.2). @@ -24,6 +132,30 @@ -- Maximiliano Curia Wed, 09 May 2018 13:24:13 +0200 +polkit-kde-agent-1 (4:5.12.5-0ubuntu1) cosmic; urgency=medium + + * New upstream release (5.12.5) + + -- Rik Mills Tue, 08 May 2018 19:25:19 +0100 + +polkit-kde-agent-1 (4:5.12.4-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.12.4) + + -- Rik Mills Tue, 27 Mar 2018 20:56:15 +0100 + +polkit-kde-agent-1 (4:5.12.3-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.12.3) + + -- Rik Mills Fri, 09 Mar 2018 13:50:27 +0000 + +polkit-kde-agent-1 (4:5.12.2-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.12.2) + + -- Rik Mills Tue, 20 Feb 2018 22:44:02 +0000 + polkit-kde-agent-1 (4:5.12.1-1) sid; urgency=medium * Use the salsa canonical urls @@ -32,6 +164,12 @@ -- Maximiliano Curia Tue, 20 Feb 2018 22:09:09 +0100 +polkit-kde-agent-1 (4:5.12.1-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.12.1) + + -- Rik Mills Wed, 14 Feb 2018 12:14:04 +0000 + polkit-kde-agent-1 (4:5.12.0-2) sid; urgency=medium * New revision @@ -53,6 +191,19 @@ -- Maximiliano Curia Thu, 08 Feb 2018 15:21:13 +0100 +polkit-kde-agent-1 (4:5.12.0-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.11.95) + * New upstream release (5.12.0) + + -- Rik Mills Tue, 06 Feb 2018 11:51:31 +0000 + +polkit-kde-agent-1 (4:5.11.5-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.11.5) + + -- Rik Mills Wed, 03 Jan 2018 17:40:16 +0000 + polkit-kde-agent-1 (4:5.11.4-1) experimental; urgency=medium * New revision @@ -64,6 +215,23 @@ -- Maximiliano Curia Wed, 03 Jan 2018 16:49:23 -0300 +polkit-kde-agent-1 (4:5.11.4-0ubuntu1) bionic; urgency=low + + * New upstream release (5.11.4) + + -- Simon Quigley Tue, 28 Nov 2017 21:16:59 -0600 + +polkit-kde-agent-1 (4:5.11.3-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.10.95) + * New upstream release (5.11.0) + * Package priority 'extra' is depreciated in favour of 'optional' + * New upstream release (5.11.1) + * New upstream release (5.11.2) + * New upstream release (5.11.3) + + -- Rik Mills Sat, 25 Nov 2017 17:59:37 +0000 + polkit-kde-agent-1 (4:5.10.5-2) sid; urgency=medium * New revision @@ -87,12 +255,91 @@ -- Maximiliano Curia Mon, 28 Aug 2017 15:28:56 +0200 +polkit-kde-agent-1 (4:5.10.5-0ubuntu1) artful; urgency=low + + * New upstream release (5.10.5) + + -- Simon Quigley Wed, 23 Aug 2017 14:40:54 +0100 + +polkit-kde-agent-1 (4:5.10.4-0ubuntu1) artful; urgency=low + + * New upstream release (5.10.4) + + -- Rik Mills Wed, 19 Jul 2017 14:38:58 +0100 + +polkit-kde-agent-1 (4:5.10.3-0ubuntu1) artful; urgency=low + + * New upstream release (5.10.3) + + -- Rik Mills Sat, 01 Jul 2017 10:17:31 +0100 + +polkit-kde-agent-1 (4:5.10.2-0ubuntu1) artful; urgency=low + + * New upstream release (5.10.2) + + -- Rik Mills Thu, 15 Jun 2017 18:14:02 +0100 + +polkit-kde-agent-1 (4:5.10.1-0ubuntu1) artful; urgency=low + + * New upstream release (5.10.1) + + -- Rik Mills Tue, 06 Jun 2017 19:10:43 +0100 + +polkit-kde-agent-1 (4:5.10.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.9.95) + * New upstream release (5.10.0) + + -- Rik Mills Tue, 30 May 2017 09:51:03 +0100 + +polkit-kde-agent-1 (4:5.9.5-0ubuntu1) artful; urgency=low + + * New upstream release (5.9.5) + + -- José Manuel Santamaría Lema Sun, 30 Apr 2017 11:33:52 +0100 + +polkit-kde-agent-1 (4:5.9.4-0ubuntu1) zesty; urgency=low + + * New upstream bugfix release (5.9.4) + + -- Rik Mills Thu, 23 Mar 2017 20:00:09 +0000 + +polkit-kde-agent-1 (4:5.9.3-0ubuntu1) zesty; urgency=low + + * New upstream bugfix release (5.9.3) + + -- Rik Mills Thu, 02 Mar 2017 09:54:03 +0000 + +polkit-kde-agent-1 (4:5.9.2-0ubuntu1) zesty; urgency=low + + * New upstream bugfix release (5.9.2) + + -- Rik Mills Mon, 20 Feb 2017 11:07:10 +0000 + +polkit-kde-agent-1 (4:5.9.1-0ubuntu1) zesty; urgency=low + + * New upstream release (5.9.1) + + -- Rik Mills Tue, 14 Feb 2017 23:22:06 +0000 + +polkit-kde-agent-1 (4:5.9.0-0ubuntu1) zesty; urgency=low + + * New upstream release (5.9.0) + + -- Rik Mills Sat, 04 Feb 2017 00:56:24 +0000 + polkit-kde-agent-1 (4:5.8.5-1) experimental; urgency=medium * New upstream release (5.8.5). -- Maximiliano Curia Fri, 30 Dec 2016 18:46:23 +0100 +polkit-kde-agent-1 (4:5.8.5-0ubuntu1) zesty; urgency=low + + * New upstream release (5.8.5) + + -- Rik Mills Thu, 29 Dec 2016 16:46:44 +0000 + polkit-kde-agent-1 (4:5.8.4-1) unstable; urgency=medium * Add provides polkit-1-auth-agent. @@ -101,6 +348,21 @@ -- Maximiliano Curia Wed, 23 Nov 2016 18:38:53 +0100 +polkit-kde-agent-1 (4:5.8.4-0ubuntu1) zesty; urgency=medium + + [ José Manuel Santamaría Lema ] + * Update Vcs-Git fields to use https:// instead of git:// + * Merge with debian + * Remove undesired debian Breaks after merge + + [ Simon Quigley ] + * New upstream release (5.8.3) + + [ Rik Mills ] + * New upstream release (5.8.4) + + -- Rik Mills Mon, 05 Dec 2016 19:55:50 +0000 + polkit-kde-agent-1 (4:5.8.2-1) unstable; urgency=medium * New upstream release (5.8.2) @@ -120,6 +382,13 @@ -- Maximiliano Curia Fri, 07 Oct 2016 14:07:13 +0200 +polkit-kde-agent-1 (4:5.7.5-0ubuntu1) yakkety; urgency=medium + + * New upstream release (5.7.4) + * New upstream release (5.7.5) + + -- Rik Mills Tue, 20 Sep 2016 20:31:01 -0500 + polkit-kde-agent-1 (4:5.7.4-1) unstable; urgency=medium * New upstream release (5.7.4) @@ -127,6 +396,13 @@ -- Maximiliano Curia Fri, 26 Aug 2016 15:06:09 +0200 +polkit-kde-agent-1 (4:5.7.2-0ubuntu1) yakkety; urgency=medium + + * New upstream release (5.7.1) + * New upstream release (5.7.2) + + -- Clive Johnston Thu, 28 Jul 2016 12:09:55 +0000 + polkit-kde-agent-1 (4:5.7.0-1) unstable; urgency=medium * New upstream release. @@ -139,12 +415,32 @@ -- Maximiliano Curia Sun, 19 Jun 2016 20:11:47 +0200 +polkit-kde-agent-1 (4:5.6.5-0ubuntu1) yakkety; urgency=medium + + * New upstream release (5.6.5) + + -- Clive Johnston Fri, 15 Jul 2016 21:18:55 +0100 + polkit-kde-agent-1 (4:5.6.4-1) unstable; urgency=medium * Release to unstable. -- Maximiliano Curia Sun, 22 May 2016 08:59:05 +0200 +polkit-kde-agent-1 (4:5.6.4-0ubuntu1) yakkety; urgency=medium + + [ Clive Johnston ] + * New upstream release + + [ Philip Muškovac ] + * Update the Vcs URLs now that the repositories are hosted on + Launchpad + + [ Clive Johnston ] + * New upstream release (5.6.4) + + -- Clive Johnston Wed, 18 May 2016 13:31:05 -0700 + polkit-kde-agent-1 (4:5.6.3-1) experimental; urgency=medium [ Maximiliano Curia ] @@ -156,6 +452,12 @@ -- Maximiliano Curia Tue, 10 May 2016 16:16:53 +0200 +polkit-kde-agent-1 (4:5.5.5-0ubuntu1) xenial; urgency=medium + + * New upstream bugfix release + + -- Philip Muškovac Thu, 14 Apr 2016 14:02:34 -0700 + polkit-kde-agent-1 (4:5.5.4-1) experimental; urgency=medium * New upstream release (5.5.0). @@ -166,36 +468,93 @@ -- Maximiliano Curia Wed, 27 Jan 2016 16:49:02 +0100 +polkit-kde-agent-1 (4:5.5.4-0ubuntu1) xenial; urgency=medium + + [ Scarlett Clark ] + * New upstream release Xenial + + [ Clive Johnston ] + * New upstream release + + [ Philip Muškovac ] + * Merge with debian git master + + [ Clive Johnston ] + * New upstream release + + -- Clive Johnston Mon, 07 Mar 2016 21:30:23 +0100 + polkit-kde-agent-1 (4:5.4.3-1) unstable; urgency=medium * New upstream release (5.4.3). -- Maximiliano Curia Tue, 01 Dec 2015 11:45:53 +0100 +polkit-kde-agent-1 (4:5.4.3-0ubuntu1) xenial; urgency=medium + + [ Scarlett Clark ] + * Vivid backport + * New upstream bugfix release + + [ Philip Muškovac ] + * New upstream bugfix release (LP: #1518598) + + -- Philip Muškovac Sun, 22 Nov 2015 16:49:55 +0100 + polkit-kde-agent-1 (4:5.4.2-1) unstable; urgency=medium * New upstream release (5.4.2). -- Maximiliano Curia Tue, 06 Oct 2015 07:52:11 +0200 +polkit-kde-agent-1 (4:5.4.2-0ubuntu1) wily; urgency=medium + + * New upstream release + + -- Scarlett Clark Fri, 02 Oct 2015 16:03:17 +0100 + polkit-kde-agent-1 (4:5.4.1-1) unstable; urgency=medium * New upstream release (5.4.1). -- Maximiliano Curia Fri, 11 Sep 2015 18:45:19 +0200 +polkit-kde-agent-1 (4:5.4.1-0ubuntu1) wily; urgency=medium + + * new upstream release + + -- Jonathan Riddell Tue, 08 Sep 2015 10:26:39 +0100 + polkit-kde-agent-1 (4:5.4.0-1) unstable; urgency=medium * New upstream release (5.4.0). -- Maximiliano Curia Thu, 03 Sep 2015 18:53:35 +0200 +polkit-kde-agent-1 (4:5.4.0-0ubuntu1) wily; urgency=medium + + * new upstream release + + -- Jonathan Riddell Mon, 31 Aug 2015 15:57:45 +0100 + +polkit-kde-agent-1 (4:5.3.95-0ubuntu1) wily; urgency=medium + + * new upstream beta release + + -- Jonathan Riddell Mon, 10 Aug 2015 23:22:42 +0200 + polkit-kde-agent-1 (4:5.3.2-1) unstable; urgency=medium * New upstream release (5.3.2). -- Maximiliano Curia Tue, 30 Jun 2015 23:34:21 +0200 +polkit-kde-agent-1 (4:5.3.2-0ubuntu1) wily; urgency=medium + + * New upstream release + + -- Jonathan Riddell Thu, 02 Jul 2015 12:38:32 +0000 + polkit-kde-agent-1 (4:5.3.1-0ubuntu1) wily; urgency=medium [ Jonathan Riddell ] diff -Nru polkit-kde-agent-1-5.13.4/debian/control polkit-kde-agent-1-5.16.0/debian/control --- polkit-kde-agent-1-5.13.4/debian/control 2018-08-19 21:18:24.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/debian/control 2019-06-11 10:37:32.000000000 +0000 @@ -5,23 +5,23 @@ Uploaders: Maximiliano Curia Build-Depends: cmake (>= 3.0~), debhelper (>= 11~), - extra-cmake-modules (>= 5.42.0~), - libkf5config-dev, - libkf5coreaddons-dev (>= 5.42.0~), - libkf5crash-dev (>= 5.42.0~), - libkf5dbusaddons-dev (>= 5.42.0~), - libkf5i18n-dev (>= 5.42.0~), - libkf5iconthemes-dev (>= 5.42.0~), - libkf5notifications-dev, - libkf5widgetsaddons-dev (>= 5.42.0~), - libkf5windowsystem-dev (>= 5.42.0~), + extra-cmake-modules (>= 5.58.0~), + libkf5config-dev (>= 5.58.0~), + libkf5coreaddons-dev (>= 5.58.0~), + libkf5crash-dev (>= 5.58.0~), + libkf5dbusaddons-dev (>= 5.58.0~), + libkf5i18n-dev (>= 5.58.0~), + libkf5iconthemes-dev (>= 5.58.0~), + libkf5notifications-dev (>= 5.58.0~), + libkf5widgetsaddons-dev (>= 5.58.0~), + libkf5windowsystem-dev (>= 5.58.0~), libpolkit-qt5-1-dev (>= 0.112.0), pkg-kde-tools (>= 0.15.16), qtbase5-dev (>= 5.9.0~), Standards-Version: 4.1.4 Homepage: https://projects.kde.org/projects/kde/workspace/polkit-kde-agent-1 -Vcs-Browser: https://salsa.debian.org/qt-kde-team/kde/polkit-kde-agent-1 -Vcs-Git: https://salsa.debian.org/qt-kde-team/kde/polkit-kde-agent-1.git +Vcs-Browser: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/polkit-kde-agent-1 +Vcs-Git: https://git.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/polkit-kde-agent-1 Package: polkit-kde-1 Section: oldlibs @@ -33,7 +33,7 @@ Package: polkit-kde-agent-1 Architecture: any Depends: policykit-1, ${misc:Depends}, ${shlibs:Depends} -Breaks: plasma-desktop (<< 4:5.13), polkit-kde-1 (<< 5.1.95~) +Breaks: polkit-kde-1 (<< 5.1.95~) Replaces: polkit-kde-1 (<< 5.1.95~) Provides: polkit-1-auth-agent Description: KDE dialogs for PolicyKit diff -Nru polkit-kde-agent-1-5.13.4/po/ar/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ar/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ar/polkit-kde-authentication-agent-1.po 2018-07-31 13:00:58.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ar/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:43.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2012-01-22 19:22+0300\n" "Last-Translator: Abdalrahim G. Fakhouri \n" "Language-Team: Arabic \n" @@ -43,67 +43,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "البائع:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "التطبيق:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "الإجراء:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "كلمة السر للجذر:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "كلمة السر لـ%1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "كلمة السر:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "كلمة السر أو امسح بالأصبع للجذر:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "كلمة السر أو امسح بالأصبع لـ%1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "كلمة السر أو امسح بالأصبع :" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -112,41 +110,41 @@ "يوجد تطبيق يحاول أن يقوم بإجراء يتطلب صلاحيات. يجب الاستيثاق قبل أن ينفذ ذاك " "الإجراء." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "اختر مستخدم" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "فشل الاستيثاق ، الرجاء المحاولة مجددا." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "انقر لتفتح %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/ast/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ast/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ast/polkit-kde-authentication-agent-1.po 2018-07-31 13:00:58.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ast/polkit-kde-authentication-agent-1.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,182 +0,0 @@ -# Copyright (C) YEAR This_file_is_part_of_KDE -# This file is distributed under the same license as the PACKAGE package. -# -# enolp , 2016. -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2016-12-21 16:36+0100\n" -"Last-Translator: enolp \n" -"Language-Team: Asturian \n" -"Language: ast\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" - -#, kde-format -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Softastur" - -#, kde-format -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "alministradores@softastur.org" - -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: authdetails.ui:29 -#, kde-format -msgid "Action:" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, action_label) -#: authdetails.ui:39 -#, kde-format -msgid "" -msgstr "" - -#. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) -#. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 -#, kde-format -msgid "Vendor:" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 -#, kde-format -msgid "Action ID:" -msgstr "" - -#: AuthDialog.cpp:73 -#, kde-format -msgid "Details" -msgstr "" - -#: AuthDialog.cpp:89 -#, kde-format -msgid "Authentication Required" -msgstr "" - -#: AuthDialog.cpp:179 -#, kde-format -msgid "Password for root:" -msgstr "" - -#: AuthDialog.cpp:181 -#, kde-format -msgid "Password for %1:" -msgstr "" - -#: AuthDialog.cpp:185 -#, kde-format -msgid "Password:" -msgstr "" - -#: AuthDialog.cpp:191 -#, kde-format -msgid "Password or swipe finger for root:" -msgstr "" - -#: AuthDialog.cpp:193 -#, kde-format -msgid "Password or swipe finger for %1:" -msgstr "" - -#: AuthDialog.cpp:197 -#, kde-format -msgid "Password or swipe finger:" -msgstr "" - -#: AuthDialog.cpp:207 -#, kde-format -msgid "" -"An application is attempting to perform an action that requires privileges. " -"Authentication is required to perform this action." -msgstr "" - -#: AuthDialog.cpp:222 -#, kde-format -msgid "Select User" -msgstr "" - -#: AuthDialog.cpp:241 -#, kde-format -msgctxt "%1 is the full user name, %2 is the user login name" -msgid "%1 (%2)" -msgstr "" - -#: AuthDialog.cpp:307 -#, kde-format -msgid "Authentication failure, please try again." -msgstr "" - -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 -#, kde-format -msgctxt "" -"%1 is the name of a detail about the current action provided by polkit" -msgid "%1:" -msgstr "" - -#: AuthDialog.cpp:372 AuthDialog.cpp:376 -#, kde-format -msgid "Click to open %1" -msgstr "" - -#. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 -#, kde-format -msgid "P&assword:" -msgstr "" - -#: main.cpp:64 -#, kde-format -msgid "PolicyKit1 KDE Agent" -msgstr "" - -#: main.cpp:66 -#, kde-format -msgid "(c) 2009 Red Hat, Inc." -msgstr "" - -#: main.cpp:67 -#, kde-format -msgid "Lukáš Tinkl" -msgstr "" - -#: main.cpp:67 -#, kde-format -msgid "Maintainer" -msgstr "" - -#: main.cpp:68 -#, kde-format -msgid "Jaroslav Reznik" -msgstr "" - -#: main.cpp:68 -#, kde-format -msgid "Former maintainer" -msgstr "" - -#: policykitlistener.cpp:74 -#, kde-format -msgid "Another client is already authenticating, please try again later." -msgstr "" \ No newline at end of file diff -Nru polkit-kde-agent-1-5.13.4/po/bs/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/bs/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/bs/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:00.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/bs/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:47.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2014-02-08 23:53+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian \n" @@ -44,67 +44,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Proizvođač:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Program:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Akcija:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Korijena lozinka:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Lozinka za %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Lozinka:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Lozinka ili otisak prsta za root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Lozinka ili otisak prsta za %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Lozinka ili otisak prsta:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -113,41 +111,41 @@ "Program pokušava da izvede radnju koja zahtijeva određena ovlašćenja. Za " "izvođenje te radnje neophodna je autentifikacija." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Izbor korisnika" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Greška u provjeri autentičnosti, pokušajte ponovo" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Kliknite da otvorite %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/ca/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ca/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ca/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:00.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ca/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:47.000000000 +0000 @@ -5,13 +5,14 @@ # Manuel Tortosa Moreno , 2009. # Joan Maspons , 2011. # Josep Ma. Ferrer , 2011, 2015, 2018. +# Antoni Bella Pérez , 2018. msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-25 19:39+0100\n" -"Last-Translator: Josep Ma. Ferrer \n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-26 14:58+0100\n" +"Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -45,66 +46,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Proveïdor:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplicació:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "ID d'acció:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalls" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Es requereix autenticació" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Contrasenya per a l'administrador:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Contrasenya per a %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Contrasenya:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Poseu la contrasenya o llisqueu el dit per a l'administrador:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Poseu la contrasenya o llisqueu el dit per a %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Poseu la contrasenya o llisqueu el dit:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -113,41 +112,41 @@ "Una aplicació està intentant de dur a terme una acció que requereix " "privilegis. Cal autentificar-se per dur a terme aquesta acció." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Selecció d'usuari" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Ha fallat l'autenticació, si us plau, torneu-ho a intentar." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "No aplicable" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "No es proporciona la «descripció»" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Cliqueu per obrir %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "Contr&asenya:" diff -Nru polkit-kde-agent-1-5.13.4/po/ca@valencia/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ca@valencia/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ca@valencia/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:00.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ca@valencia/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:47.000000000 +0000 @@ -5,13 +5,14 @@ # Manuel Tortosa Moreno , 2009. # Joan Maspons , 2011. # Josep Ma. Ferrer , 2011, 2015, 2018. +# Antoni Bella Pérez , 2018. msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-25 19:39+0100\n" -"Last-Translator: Josep Ma. Ferrer \n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-26 14:58+0100\n" +"Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" @@ -45,66 +46,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Proveïdor:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplicació:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "ID d'acció:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalls" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Es requereix autenticació" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Contrasenya per a l'administrador:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Contrasenya per a %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Contrasenya:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Poseu la contrasenya o llisqueu el dit per a l'administrador:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Poseu la contrasenya o llisqueu el dit per a %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Poseu la contrasenya o llisqueu el dit:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -113,41 +112,41 @@ "Una aplicació està intentant de dur a terme una acció que requereix " "privilegis. Cal autentificar-se per dur a terme aquesta acció." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Selecció d'usuari" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Ha fallat l'autenticació, per favor, torneu-ho a intentar." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "No aplicable" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "No es proporciona la «descripció»" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Cliqueu per obrir %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "Contr&asenya:" diff -Nru polkit-kde-agent-1-5.13.4/po/cs/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/cs/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/cs/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:00.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/cs/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:47.000000000 +0000 @@ -1,14 +1,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# Vít Pelčák , 2010, 2012, 2015, 2018. +# Vít Pelčák , 2010, 2012, 2015, 2018, 2019. # Lukáš Tinkl , 2012. # msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-19 15:18+0100\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-01-14 16:53+0100\n" "Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" "Language: cs\n" @@ -16,7 +16,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -38,70 +38,68 @@ #: authdetails.ui:39 #, kde-format msgid "" -msgstr "" +msgstr "" #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Dodavatel:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplikace:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "ID činnosti:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Podrobnosti" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Je vyžadováno ověření totožnosti" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Heslo pro superuživatele:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Heslo pro %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Heslo:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Ověřit heslo nebo otisk prstu uživatele root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Ověřit heslo nebo otisk prstu uživatele: %1" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Heslo nebo přejeďte prstem:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "Aplikace se pokouší provádět činnost vyžadující privilegia. K provedení této " "činnosti je potřeba ověření oprávnění." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Vybrat uživatele" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Selhalo ověření, prosím zkuste znova." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Nepoužitelné" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Popis' chybí" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klikněte pro otevření %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Heslo:" diff -Nru polkit-kde-agent-1-5.13.4/po/da/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/da/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/da/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:01.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/da/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:49.000000000 +0000 @@ -1,15 +1,15 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Martin Schlander , 2009, 2010, 2011, 2015, 2018. +# Martin Schlander , 2009, 2010, 2011, 2015, 2018, 2019. msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-07-12 10:19+0100\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-05-07 13:23+0100\n" "Last-Translator: Martin Schlander \n" -"Language-Team: Danish \n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,66 +41,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Leverandør:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Program:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Handlings-id:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "Id:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detaljer" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Autentificering kræves" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Adgangskode for root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Adgangskode for %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Adgangskode:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Adgangskode eller fingeraftryk for root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Adgangskode eller fingeraftryk for %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Adgangskode eller fingeraftryk:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -109,41 +107,41 @@ "Et program forsøger at udføre en handling der kræver kræver privilegier. " "Godkendelse kræves for at udføre handlingen." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Vælg bruger" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentificering mislykkedes, prøv igen." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Kan ikke anvendes" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "\"Beskrivelse\" ikke angivet" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klik for at åbne %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Adgangskode:" diff -Nru polkit-kde-agent-1-5.13.4/po/de/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/de/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/de/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:01.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/de/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:49.000000000 +0000 @@ -4,9 +4,9 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-06-20 11:07+0100\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-11-16 10:57+0100\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" "Language: de\n" @@ -36,70 +36,68 @@ #: authdetails.ui:39 #, kde-format msgid "" -msgstr "" +msgstr "" #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Hersteller:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Anwendung:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Aktionskennung:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "Kennung:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Details" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Authentifizierung erforderlich" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Passwort des Systemverwalters:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Passwort für %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Passwort:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Passwort oder Fingerabdruck des Systemverwalters:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Passwort oder Fingerabdruck für %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Passwort oder Fingerabdruck:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -108,41 +106,41 @@ "Eine Anwendung versucht, eine Aktion auszuführen, die erweiterte Rechte " "benötigt. Für diese Aktion müssen Sie sich berechtigen." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Benutzer auswählen" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Die Berechtigung ist abgewiesen worden. Bitte versuchen Sie es erneut." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Nicht anwendbar" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "Beschreibung wurde nicht angegeben" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klicken, um „%1“ zu öffnen" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "P&asswort:" diff -Nru polkit-kde-agent-1-5.13.4/po/el/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/el/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/el/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:01.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/el/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:49.000000000 +0000 @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2015-02-10 12:50+0200\n" "Last-Translator: Dimitris Kardarakos \n" "Language-Team: Greek \n" @@ -43,67 +43,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Προμηθευτής:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Εφαρμογή:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Ενέργεια:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Λεπτομέρειες" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Απαιτείται ταυτοποίηση" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Κωδικός πρόσβασης root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Κωδικός πρόσβασης για %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Κωδικός πρόσβασης:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Κωδικός πρόσβασης ή δακτυλικό αποτύπωμα για root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Κωδικός πρόσβασης ή δακτυλικό αποτύπωμα για %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Κωδικός πρόσβασης ή δακτυλικό αποτύπωμα:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -112,41 +110,41 @@ "Μία εφαρμογή αποπειράται να εκτελέσει μία ενέργεια που απαιτεί προνόμια. " "Απαιτείται πιστοποίηση για την εκτέλεση αυτής της ενέργειας." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Επιλογή χρήστη" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Η πιστοποίηση απέτυχε, παρακαλώ προσπαθήστε ξανά." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Κλικ για άνοιγμα του %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "Κω&δικός πρόσβασης:" diff -Nru polkit-kde-agent-1-5.13.4/po/en_GB/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/en_GB/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/en_GB/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:02.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/en_GB/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:52.000000000 +0000 @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-28 12:32+0000\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-27 20:00+0100\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English \n" "Language: en_GB\n" @@ -42,66 +42,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Vendor:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Application:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Action ID:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Details" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Authentication Required" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Password for root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Password for %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Password:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Password or swipe finger for root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Password or swipe finger for %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Password or swipe finger:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Select User" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Authentication failure, please try again." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Not Applicable" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Description' not provided" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Click to open %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/eo/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/eo/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/eo/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:02.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/eo/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:52.000000000 +0000 @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2009-12-29 14:11+0100\n" "Last-Translator: Axel Rousseau \n" "Language-Team: esperanto \n" @@ -40,108 +40,106 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Vendisto:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Programo:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Ago:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Pasvorto:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/es/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/es/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/es/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:02.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/es/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:52.000000000 +0000 @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-05-03 21:37+0100\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-26 12:50+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" @@ -43,66 +43,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Vendedor:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplicación:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "ID de la acción:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalles" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Se necesita autenticación" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Contraseña de usuario «root»:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Contraseña de %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Contraseña:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Introduzca la contraseña o pase el dedo para el usuario root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Introduzca la contraseña o pase el dedo para el usuario %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Introduzca la contraseña o pase el dedo:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "Una aplicación está intentando realizar una acción que necesita privilegios. " "Se necesita autenticación para realizar dicha acción." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Seleccionar usuario" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Fallo de autenticación; por favor, vuelva a intentarlo." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "No aplicable" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "No se ha proporcionado «Description»" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Haga clic para abrir %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "C&ontraseña:" diff -Nru polkit-kde-agent-1-5.13.4/po/et/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/et/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/et/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:02.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/et/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:52.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2016-01-11 21:25+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -41,67 +41,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Tootja:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Rakendus:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Toiming:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Üksikasjad" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Vajalik on autentimine" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Administraatori parool:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Kasutaja %1 parool:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Parool:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Administraatori parool või sõrmejälg:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Kasutaja %1 parool või sõrmejälg:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Parool või sõrmejälg:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "Rakendus püüab sooritada toimingut, mis nõuab privileege. Selleks toiminguks " "on vaja end autentida." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Vali kasutaja" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentimine nurjus, palun proovi uuesti." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klõpsa, et avada %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "P&arool:" diff -Nru polkit-kde-agent-1-5.13.4/po/eu/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/eu/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/eu/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:02.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/eu/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:54.000000000 +0000 @@ -1,18 +1,18 @@ # Translatin of polkit-kde-authentication-agent-1.po to Euskara/Basque (eu). # Copyright (C) 2018, Free Software Foundation. -# This file is distributed under the same license as the kde-workspace package. +# This file is distributed under the same license as the polkit-kde-agent-1 package. # KDE euskaratzeko proiektuaren arduraduna . # # Translators: -# Iñigo Salvador Azurmendi , 2018. +# Iñigo Salvador Azurmendi , 2018, 2019. msgid "" msgstr "" -"Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-05-10 20:50+0100\n" +"Project-Id-Version: polkit-kde-agent-1\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-06-05 22:14+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,66 +44,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Hornitzailea:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplikazioa:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Ekintza ID:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Xehetasunak" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Autentifikatzea beharrezkoa da" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "root-aren pasahitza:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "%1(r)en pasahitza:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Pasahitza:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "root-aren pasahitza edo hatza pasatzea:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "%1(r)en pasahitza edo hatza pasatzea:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Pasahitza edo hatza pasatzea:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -112,41 +110,41 @@ "Aplikazio bat pribilegioak behar dituen ekintza bat gauzatu nahian dabil. " "Autentifikatzea beharrezkoa da ekintza hau gauzatzeko." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Hautatu erabiltzailea" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentifikatze hutsegitea, saiatu berriz." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Ez dagokio" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "«Description» ez da eman" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klik egin %1 irekitzeko" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "P&asahitza:" diff -Nru polkit-kde-agent-1-5.13.4/po/fi/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/fi/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/fi/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:03.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/fi/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:54.000000000 +0000 @@ -1,9 +1,9 @@ # Finnish messages for polkit-kde-authentication-agent-1. # Copyright © 2010 This_file_is_part_of_KDE # This file is distributed under the same license as the extragear package. +# Tommi Nieminen , 2018. # Jorma Karvonen , 2010. # Lasse Liehu , 2013, 2014, 2015. -# Tommi Nieminen , 2018. # # KDE Finnish translation sprint participants: # Author: Artnay @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-07-10 23:05+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-11-22 16:30+0200\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -48,66 +48,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Toimittaja:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Sovellus:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Toiminnon tunniste:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "Tunniste:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Yksityiskohdat" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Tunnistautumista vaaditaan" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Pääkäyttäjän salasana:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Käyttäjän %1 salasana:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Salasana:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Pääkäyttäjän salasana tai sormen pyyhkäisy:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Käyttäjän %1 salasana tai sormen pyyhkäisy:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Salasana tai sormen pyyhkäisy:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -116,41 +114,41 @@ "Sovellus yrittää suorittaa toiminnon, joka vaatii lisäoikeuksia. Sen " "suorittamiseksi tarvitsee tunnistautua." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Valitse käyttäjä" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Tunnistautumisvirhe. Yritä uudelleen." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Ei käytettävissä" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "”Kuvausta” ei ole annettu" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Avaa %1 napsauttamalla" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Salasana:" diff -Nru polkit-kde-agent-1-5.13.4/po/fr/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/fr/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/fr/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:03.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/fr/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:54.000000000 +0000 @@ -3,14 +3,14 @@ # Geoffray Levasseur , 2009, 2010, 2011, 2012. # xavier , 2013. # Vincent Pinon , 2016. -# Simon Depiets , 2018. +# Simon Depiets , 2018, 2019. # msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-06-05 10:10+0800\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-01-24 18:38+0800\n" "Last-Translator: Simon Depiets \n" "Language-Team: French \n" "Language: fr\n" @@ -18,7 +18,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.03.70\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -48,66 +48,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Fournisseur :" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Application :" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Numéro d'action :" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "Identifiant :" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Détails" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Authentification requise" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Mot de passe administrateur :" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Mot de passe de %1 :" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Mot de passe :" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Mot de passe ou empreinte digitale administrateur :" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Mot de passe ou empreinte digitale de %1 :" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Mot de passe ou empreinte digitale :" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -116,41 +114,41 @@ "Une application essaye d'effectuer une action nécessitant des droits " "d'accès. Une authentification est requise pour accomplir cette action." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Sélectionner un utilisateur" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Échec d'authentification. Veuillez réessayer." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Non applicable" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1 :" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "« Description » non fournie" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Cliquez pour ouvrir %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "Mot de p&asse :" diff -Nru polkit-kde-agent-1-5.13.4/po/ga/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ga/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ga/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:03.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ga/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:56.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2009-12-24 06:59-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -41,67 +41,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Díoltóir:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Feidhmchlár:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Gníomh:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Focal faire an fhorúsáideora:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Focal faire %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Focal Faire:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Focal faire an fhorúsáideora nó faidhpeáil méar:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Focal faire %1 nó faidhpeáil méar:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Focal faire nó faidhpeáil méar:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "Tá feidhmchlár ag iarraidh gníomh a dhéanamh agus ceadanna de dhíth air. " "Caithfidh tú údarú a fháil chun an gníomh seo a dhéanamh." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Roghnaigh Úsáideoir" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Theip ar fhíordheimhniú. Bain triail eile as." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Cliceáil chun %1 a oscailt" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/gl/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/gl/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/gl/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:04.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/gl/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:57.000000000 +0000 @@ -3,20 +3,20 @@ # # Marce Villarino , 2009. # Adrián Chaves Fernández , 2012, 2015. -# Adrián Chaves (Gallaecio) , 2017, 2018. +# Adrián Chaves (Gallaecio) , 2017, 2018, 2019. msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-27 16:24+0100\n" -"Last-Translator: Adrian Chaves \n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-02-17 11:15+0100\n" +"Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" @@ -46,66 +46,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Fabricante:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplicativo:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Identificador da acción:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "Identificador:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalles" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Debe autenticarse" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Contrasinal de «root»:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Contrasinal de %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Contrasinal:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Contrasinal ou pegada dixital de «root»:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Contrasinal ou pegada dixital de %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Contrasinal ou pegada dixital:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -114,41 +112,41 @@ "Un aplicativo está a intentar realizar unha acción que require privilexios. " "Debe autenticarse para realizar esta acción." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Escoller un usuario" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Fallo de autenticación, inténteo de novo." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Non aplicábel" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "Non se forneceu unha «Descrición»" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Prema para abrir %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Contrasinal:" @@ -171,7 +169,7 @@ #: main.cpp:67 #, kde-format msgid "Maintainer" -msgstr "Mantenedor" +msgstr "Mantedor" #: main.cpp:68 #, kde-format @@ -186,4 +184,4 @@ #: policykitlistener.cpp:74 #, kde-format msgid "Another client is already authenticating, please try again later." -msgstr "Xa está a autenticar outro aplicativo, inténteo máis tarde." \ No newline at end of file +msgstr "Xa está a autenticar outro cliente, inténteo máis tarde." \ No newline at end of file diff -Nru polkit-kde-agent-1-5.13.4/po/he/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/he/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/he/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:04.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/he/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:59.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2017-05-16 06:57-0400\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Hebrew \n" @@ -42,67 +42,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "ספק:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "יישום:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "פעולה:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "נתונים" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "נדרש אימות" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "סיסמה ל־root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "סיסמה ל־%1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "סיסמה:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "סיסמה או טביעת אצבע ל־root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "סיסמה או טביעת אצבע ל־%1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "סיסמה או טביעת אצבע:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "יישום מנסה לבצע פעולה הדורשת הרשאות.\n" "נדרש אימות כדי לבצע את הפעולה" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "בחר משתמש" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "האימות נכשל, נסה שוב." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "לחץ כדי לתפוח את %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&סיסמה:" diff -Nru polkit-kde-agent-1-5.13.4/po/hr/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/hr/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/hr/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:05.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/hr/polkit-kde-authentication-agent-1.po 2019-06-06 13:15:59.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2011-06-28 15:19+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -45,67 +45,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Izvođač:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplikacija:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Radnja:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Zaporka za root-a:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Zaporka za %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Zaporka:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Zaporka ili prođite prstom za root korisnika:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Zaporka ili prođite prstom za %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Zaporka ili prođite prstom:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -114,41 +112,41 @@ "Aplikacija pokušava izvesti radnju koja zahtijeva ovlasti. Potrebna je " "autentifikacija za izvođenje te radnje." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Odaberite korisnika" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Neuspjela autentifikacija. Pokušajte ponovo." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Kliknite da biste otvorili %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/hu/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/hu/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/hu/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:05.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/hu/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:01.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2015-03-27 14:10+0100\n" "Last-Translator: Kristóf Kiszel \n" "Language-Team: Hungarian \n" @@ -41,67 +41,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Gyártó:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Alkalmazás:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Művelet:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Részletek" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Hitelesítés szükséges" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Adja meg a root jelszavát:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Adja meg %1 jelszavát:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Adja meg a jelszót:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Adja meg a root jelszavát, vagy húzza le az ujját:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Adja meg %1 jelszavát, vagy húzza le az ujját:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Adja meg a jelszót, vagy húzza le az ujját:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "Egy alkalmazás olyan műveletet próbál végrehajtani, ami jogosultságokat " "igényel. Hitelesítés szükséges a művelet végrehajtásához." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Felhasználó kiválasztása" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Hitelesítési hiba, próbálja újra." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Kattintson a(z) %1 megnyitásához" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Jelszó:" diff -Nru polkit-kde-agent-1-5.13.4/po/ia/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ia/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ia/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:06.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ia/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:01.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2017-01-16 23:39+0100\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" @@ -41,108 +41,106 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Venditor:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Application:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Action:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalios" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, fuzzy, kde-format msgid "Password for %1:" msgstr "Contrasigno pro '%1'" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Contrasigno:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "Contr&asigno:" diff -Nru polkit-kde-agent-1-5.13.4/po/id/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/id/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/id/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:06.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/id/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:01.000000000 +0000 @@ -5,16 +5,16 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-06-26 20:50+0700\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-11-01 08:13+0700\n" "Last-Translator: Wantoyo \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 2.0\n" #, kde-format @@ -31,7 +31,7 @@ #: authdetails.ui:29 #, kde-format msgid "Action:" -msgstr "Tindakan:" +msgstr "Aksi:" #. i18n: ectx: property (text), widget (QLabel, action_label) #: authdetails.ui:39 @@ -41,66 +41,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Vendor:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplikasi:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "ID aksi:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Perincian" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Diperlukan Autentikasi" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Sandi untuk root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Sandi untuk %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Sandi:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Sandi atau gesekan jari untuk root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Sandi atau gesekan jari untuk %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Sandi atau gesekan jari:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -109,41 +107,41 @@ "Sebuah aplikasi telah mencoba untuk melakukan tindakan yang membutuhkan hak " "istimewa. Autentikasi diperlukan untuk melakukan aksi ini." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Pilih Pengguna" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Kegagalan autentikasi, silakan coba kembali." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Tidak Dapat Diterapkan" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Deskripsi' tidak disediakan" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klik untuk membuka %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "S&andi:" @@ -176,7 +174,7 @@ #: main.cpp:68 #, kde-format msgid "Former maintainer" -msgstr "Pemelihara yang dahulu" +msgstr "Mantan pemelihara" #: policykitlistener.cpp:74 #, kde-format diff -Nru polkit-kde-agent-1-5.13.4/po/is/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/is/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/is/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:06.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/is/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:01.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2016-04-08 22:57+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -45,67 +45,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Framleiðandi:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Forrit:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Aðgerð:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, fuzzy, kde-format msgid "Password for root:" msgstr "Lykilorð fyrir 'root':" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Lykilorð fyrir %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Lykilorð:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, fuzzy, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -114,41 +112,41 @@ "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ð." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, fuzzy, kde-format msgid "Select User" msgstr "Velja notanda" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Smelltu til að opna %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/it/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/it/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/it/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:06.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/it/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:03.000000000 +0000 @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-07-20 07:49+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-12-22 18:03+0100\n" "Last-Translator: Pino Toscano \n" "Language-Team: Italian \n" "Language: it\n" @@ -43,66 +43,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Fornitore:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Applicazione:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "ID dell'azione:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Dettagli" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Autenticazione richiesta" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Password per root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Password per %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Password:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Password o sfiora dito per root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Password o sfiora dito per %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Password o sfiora dito:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "Un'applicazione sta tentando di effettuare un'azione che richiede privilegi. " "Per compiere l'azione è richiesta l'autenticazione." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Seleziona utente" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autenticazione non riuscita, per favore riprova." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Non applicabile" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Description' non fornita" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Fai clic per aprire %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/ja/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ja/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ja/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:07.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ja/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:03.000000000 +0000 @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2009-11-28 21:01+0900\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" @@ -38,107 +38,105 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 +#. i18n: ectx: property (text), widget (QLabel, action_id_label) +#: authdetails.ui:94 #, kde-format -msgid "Application:" +msgid "Action ID:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, action_id_label) #. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:113 #, kde-format -msgid "Action ID:" +msgid "ID:" msgstr "" -#: AuthDialog.cpp:73 +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "" diff -Nru polkit-kde-agent-1-5.13.4/po/kk/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/kk/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/kk/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:07.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/kk/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:03.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2013-10-07 04:38+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -43,67 +43,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Жабдықтаушы:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Мына қолданбада:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Амалы:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "root-тың паролі:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "%1 дегеннің паролі:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Паролі:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "root-тың паролі не саусақ таңбасы:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "%1 дегеннің паролі не саусақ таңбасы:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Паролі не саусақ таңбасы:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -112,41 +110,41 @@ "Қолданба құқығы жетпейтін әрекетті істемек. Бұны істеу үшін " "аутентификациядан өту керек." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Пайдаланушыны таңдау" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Аутентификация жаңылысы, қайталап көріңіз." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "%1 дегенді ашу үшін түртіңіз" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/km/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/km/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/km/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:07.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/km/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:04.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2012-07-09 11:09+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -42,67 +42,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "ក្រុមហ៊ុនលក់ ៖" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "ការ​អនុវត្ត ៖" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "សកម្មភាព ៖" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "ពាក្យ​សម្ងាត់​សម្រាប់ root ៖" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "ពាក្យ​សម្ងាត់​សម្រាប់ %1 ៖" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "ពាក្យ​សម្ងាត់ ៖" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "ពាក្យ​សម្ងាត់ ឬ​ស្នាម​ម្រាមដៃ​សម្រាប់ root ៖" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "ពាក្យ​សម្ងាត់​ ឬ​ស្នាម​ម្រាមដៃ​សម្រាប់ %1 ៖" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "ពាក្យ​សម្ងាត់ ឬ​ស្នាម​ម្រាមដៃ ៖​" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "កម្មវិធី​កំពុង​ប៉ុនប៉ង​អនុវត្ត​សកម្មភាព ដែល​ត្រូវការ​សិទ្ធិ ។ ត្រូវការ​ការ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ​ ដើម្បី​អនុវត្ត​" "សកម្មភាព​នេះ ។" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "ជ្រើស​អ្នក​ប្រើ" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "កា​រ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ​បរាជ័យ សូម​ព្យាយាម​ម្ដង​ទៀត ។" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1 ៖" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "ចុច​ ដើម្បី​បើក %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/ko/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ko/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ko/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:08.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ko/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:05.000000000 +0000 @@ -1,26 +1,26 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Shinjo Park , 2015. +# Shinjo Park , 2015, 2018, 2019. # msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2015-04-26 16:48+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-04-12 01:00+0100\n" "Last-Translator: Shinjo Park \n" -"Language-Team: Korean \n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Shinjo Park" +msgstr "박신조" #, kde-format msgctxt "EMAIL OF TRANSLATORS" @@ -37,114 +37,111 @@ #: authdetails.ui:39 #, kde-format msgid "" -msgstr "" +msgstr "" #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "제조사:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 +#. i18n: ectx: property (text), widget (QLabel, action_id_label) +#: authdetails.ui:94 #, kde-format -msgid "Application:" -msgstr "프로그램:" +msgid "Action ID:" +msgstr "동작 ID:" -#. i18n: ectx: property (text), widget (QLabel, action_id_label) #. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 -#, fuzzy, kde-format -#| msgid "Action:" -msgid "Action ID:" -msgstr "동작:" +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" -#: AuthDialog.cpp:73 +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "자세히" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "인증 필요함" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "루트 암호:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "%1의 암호:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "암호:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "루트 암호 또는 지문 인식:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "%1의 암호 또는 지문 인식:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "암호 또는 지문 인식:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "" "프로그램이 상위 권한을 필요로 하는 동작을 수행하려고 합니다. 이 동작을 수행하" -"려면 인증이 필요합니다." +"려면 인증해야 합니다." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "사용자 선택" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "인증 실패, 다시 시도하십시오." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Description'이 지정되지 않음" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "%1을(를) 열려면 누르십시오" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "암호(&A):" diff -Nru polkit-kde-agent-1-5.13.4/po/lt/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/lt/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/lt/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:08.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/lt/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:06.000000000 +0000 @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2012-04-21 19:34+0300\n" "Last-Translator: Liudas Ališauskas \n" "Language-Team: Lithuanian \n" @@ -45,67 +45,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Tiekėjas:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Programa:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Veiksmas:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "root slaptažodis:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "%1 slaptažodis:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Slaptažodis:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Slaptažodis arba perbraukimas pirštu root naudotojui:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Slaptažodis arba perbraukimas pirštu naudotojui %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Slaptažodis arba perbraukimas pirštu:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -114,41 +112,41 @@ "Programa mėgina įvykdyti veiksmą, kuris reikalauja leidimų. Tapatybės " "nustatymas yra privalomas įvykdyti šį veiksmą." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Pasirinkite naudotoją" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentifikavimosi klaida, prašome bandyti dar kartą." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Spragtelėkite atidarymui %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/mai/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/mai/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/mai/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:09.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/mai/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:08.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2010-09-08 12:34+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Maithili \n" @@ -42,108 +42,106 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "विक्रेता:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "अनुप्रयोग:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "क्रिया:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "कूटशब्द: " -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "प्रयोक्ताक चुनू" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/mr/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/mr/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/mr/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:09.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/mr/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:08.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2013-03-28 14:37+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -41,108 +41,106 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "विक्रेता :" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "अनुप्रयोग :" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "क्रिया :" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "गुप्तशब्द :" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "वापरकर्ता निवडा" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "अधिप्रमाणन असफल, कृपया पुन्हा प्रयत्न करा." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "उघडण्याकरिता क्लिक करा %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/ms/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ms/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ms/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:09.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ms/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:10.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2010-07-13 22:42+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -42,107 +42,105 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, fuzzy, kde-format msgid "Vendor:" msgstr "Vendor:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, fuzzy, kde-format -msgid "Application:" -msgstr "Aplikasi:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format msgid "Action ID:" msgstr "Tindakan:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Katalaluan untuk root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Katalaluan untuk %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Katalaluan:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Katalaluan atau leret jari untuk root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Katalaluan atau leret jari untuk %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, fuzzy, kde-format msgid "Password or swipe finger:" msgstr "Kata laluan atau leret jari:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, fuzzy, kde-format msgid "Select User" msgstr "Pilih Pengguna" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, fuzzy, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/nb/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/nb/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/nb/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:10.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/nb/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:10.000000000 +0000 @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2015-04-28 14:02+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -43,66 +43,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Produsent:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 +#. i18n: ectx: property (text), widget (QLabel, action_id_label) +#: authdetails.ui:94 #, kde-format -msgid "Application:" -msgstr "Program:" +msgid "Action ID:" +msgstr "" -#. i18n: ectx: property (text), widget (QLabel, action_id_label) #. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:113 #, kde-format -msgid "Action ID:" +msgid "ID:" msgstr "" -#: AuthDialog.cpp:73 +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detaljer" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Autentisering er nødvendig" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Passord for root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Passord for %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Passord:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Passord eller fingertrekk for root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Passord eller fingertrekk for %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Passord eller fingertrekk:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "Et program forsøker å gjøre noe som trenger privilegier. For å gjøre dette " "kreves autentisering." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Velg bruker" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentiseringsfeil, forsøk igjen." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klikk for å åpne %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "P&assord:" diff -Nru polkit-kde-agent-1-5.13.4/po/nds/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/nds/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/nds/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:10.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/nds/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:10.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2012-02-08 22:27+0100\n" "Last-Translator: Manfred Wiese \n" "Language-Team: Low Saxon \n" @@ -42,67 +42,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Leverant:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Programm:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Akschoon:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Systeempleger-Passwoort:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Passwoort för %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Passwoort:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Systeempleger-Passwoort oder -Fingerstreek:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Passwoort oder Fingerstreek för %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Passwoort oder Fingerstreek:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "En Programm will en Akschoon utföhren, de verwiedert Rechten bruukt. För de " "Akschoon deit en Identiteetprööv noot." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Bruker utsöken" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Identiteetprööv fehlslaan. Versöök dat man nochmaal." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klick hier, wenn Du %1 opmaken wullt." #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/nl/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/nl/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/nl/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:10.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/nl/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:12.000000000 +0000 @@ -5,9 +5,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-25 14:03+0100\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-26 11:30+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -41,66 +41,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Fabrikant:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Toepassing:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Actie-id:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Details" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Authenticatie vereist" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Wachtwoord van root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Wachtwoord van %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Wachtwoord:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Wachtwoord of vingerveeg van root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Wachtwoord of vingerveeg van %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Wachtwoord of vingerveeg:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -109,41 +107,41 @@ "Een toepassing probeert een actie uit te voeren die privileges vereist. " "Verificatie is vereist om deze actie te kunnen doen." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Gebruiker selecteren" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Authenticatie is mislukt, probeer opnieuw." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Niet van toepassing" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Beschrijving' niet geleverd" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klik om %1 te openen" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "W&achtwoord:" diff -Nru polkit-kde-agent-1-5.13.4/po/nn/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/nn/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/nn/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:11.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/nn/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:12.000000000 +0000 @@ -1,14 +1,14 @@ # Translation of polkit-kde-authentication-agent-1 to Norwegian Nynorsk # -# Karl Ove Hufthammer , 2015. +# Karl Ove Hufthammer , 2015, 2018. # Øystein Steffensen-Alværvik , 2018. msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-05-04 10:46+0100\n" -"Last-Translator: Øystein Steffensen-Alværvik \n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-27 16:56+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" @@ -44,66 +44,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Produsent:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Program:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Handlings-ID:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detaljar" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Treng autentisering" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Passord for rotbrukar:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Passord for %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Passord:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Passord eller fingertrekk for rotbrukar:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Passord eller fingertrekk for %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Passord eller fingertrekk:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -112,42 +110,41 @@ "Eit program prøver å gjera noko som treng utvida løyve. For at det skal få " "gjera dette, må du autentisera deg." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Vel brukar" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentiseringsfeil. Prøv på nytt." -# Kontekst: https://phabricator.kde.org/D12479 -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Ikkje relevant" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "«Skildring» er ikkje oppgjeven" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Trykk for å opna %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "P&assord:" diff -Nru polkit-kde-agent-1-5.13.4/po/pa/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/pa/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/pa/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:11.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/pa/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:14.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2016-08-08 15:32-0600\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -41,67 +41,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "ਵੇਂਡਰ:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "ਐਪਲੀਕੇਸ਼ਨ:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "ਐਕਸ਼ਨ:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "ਵੇਰਵੇ" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "ਪਰਮਾਣਕਿਤਾ ਦੀ ਲੋੜ ਹੈ" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "ਰੂਟ ਲਈ ਪਾਸਵਰਡ:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "%1 ਲਈ ਪਾਸਵਰਡ:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "ਪਾਸਵਰਡ:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "ਰੂਟ ਲਈ ਪਾਸਵਰਡ ਦਿਓ ਜਾਂ ਉਂਗਲ ਸਵੈਪ ਕਰੋ:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "%1 ਲਈ ਪਾਸਵਰਡ ਦਿਓ ਜਾਂ ਉਂਗਲ ਸਵੈਪ ਕਰੋ:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "ਪਾਸਵਰਡ ਦਿਓ ਜਾਂ ਉਂਗਲ ਸਵੈਪ ਕਰੋ:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "ਐਪਲੀਕੇਸ਼ਨ ਐਕਸ਼ਨ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਰਹੀ ਹੈ, ਜਿਸ ਲਈ ਅਧਿਕਾਰਾਂ ਦੀ ਲੋੜ ਹੈ। ਇਹ ਐਕਸ਼ਨ ਕਰਨ ਲਈ " "ਪਰਮਾਣਕਿਤਾ ਦੀ ਲੋੜ ਹੈ।" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "ਯੂਜ਼ਰ ਚੁਣੋ" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "ਪਰਮਾਣਕਿਤਾ ਫੇਲ੍ਹ ਹੋਈ। ਫੇਰ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "%1 ਖੋਲ੍ਹਣ ਲਈ ਕਲਿੱਕ" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "ਪਾਸਵਰਡ(&a):" diff -Nru polkit-kde-agent-1-5.13.4/po/pl/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/pl/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/pl/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:11.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/pl/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:14.000000000 +0000 @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Łukasz Wojniłowicz , 2015, 2018. +# Łukasz Wojniłowicz , 2015, 2018, 2019. msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-28 07:12+0100\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-01-13 10:31+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" @@ -16,7 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.03.70\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -42,66 +42,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Wytwórca:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Program:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "ID działania:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Szczegóły" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Wymagane uwierzytelnienie" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Hasło dla administratora:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Hasło dla '%1':" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Hasło:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Hasło lub odcisk palca dla administratora:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Hasło lub odcisk palca dla %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Hasło lub odcisk palca:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "Program próbuje wykonać działanie, które wymaga uprawnień. Wymagane jest " "uwierzytelnienie do wykonania tego działania." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Wybierz użytkownika" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Uwierzytelnianie nieudane, proszę spróbować ponownie." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Nie stosuje się" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "Nie podano 'Opisu'" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Naciśnij, aby otworzyć %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "H&asło:" diff -Nru polkit-kde-agent-1-5.13.4/po/pt/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/pt/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/pt/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:11.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/pt/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:14.000000000 +0000 @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-25 13:30+0100\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-26 09:27+0100\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -42,66 +42,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Fornecedor:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplicação:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "ID da Acção:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalhes" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Autenticação Necessária" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Senha do 'root':" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Senha do '%1':" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Senha:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Digite a senha do 'root' ou passe o dedo:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Digite a senha do '%1' ou passe o dedo:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Digite a senha ou passe o dedo:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "Uma aplicação está a tentar efectuar uma acção que precisa de privilégios " "adicionais. É necessária a autenticação para executar esta acção." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Seleccionar o Utilizador" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Ocorreu um erro de autenticação; por favor, tente de novo." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Não Aplicável" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Descrição' não indicada" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Carregue para abrir o %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "Senh&a:" diff -Nru polkit-kde-agent-1-5.13.4/po/pt_BR/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/pt_BR/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/pt_BR/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:11.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/pt_BR/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:15.000000000 +0000 @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-05-02 01:36-0300\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-11-13 18:22-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Portuguese \n" "Language: pt_BR\n" @@ -43,66 +43,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Fabricante:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplicativo:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Action ID:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalhes" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Autenticação necessária" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Senha para o root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Senha para %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Senha:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Senha ou impressão digital para o root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Senha ou impressão digital para %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Senha ou impressão digital:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "Um aplicativo está tentando executar uma ação que necessita de privilégios. " "A autenticação é necessária para executar essa ação." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Selecionar usuário" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Falha na autenticação, tente novamente." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Não aplicável" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Descrição' não fornecida" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Clique para abrir %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "Senh&a:" diff -Nru polkit-kde-agent-1-5.13.4/po/ro/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ro/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ro/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:11.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ro/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:17.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2012-12-26 13:56+0200\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -43,67 +43,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Vânzător:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Aplicație:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Acțiune:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Parola pentru root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Parola pentru %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Parolă:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Parola sau treceți degetul pentru root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Parola sau treceți degetul pentru %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Parola sau treceți degetul:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -112,41 +110,41 @@ "O aplicație încearcă să efectueze o acțiune ce necesită privilegii. Pentru a " "efectua această acțiune este necesară autentificarea." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Alege utilizatorul" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentificare eșuată. Reîncercați." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Apăsați pentru a deschide %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/ru/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ru/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ru/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:12.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ru/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:16.000000000 +0000 @@ -2,14 +2,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Yuri Efremov , 2010, 2011. -# Alexander Potashev , 2010, 2015. +# Alexander Potashev , 2010, 2015, 2018. +# Alexander Yavorsky , 2018, 2019. msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2015-04-22 02:58+0300\n" -"Last-Translator: Alexander Potashev \n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-01-13 21:55+0300\n" +"Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -17,7 +18,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.1\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -25,12 +26,13 @@ #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Александр Мелентьев,Николай Шафоростов,Юрий Ефремов" +msgstr "Александр Мелентьев,Николай Шафоростов,Юрий Ефремов,Ольга Миронова" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "alex239@gmail.com,shaforostoff@kde.ru,yur.arh@gmail.com" +msgstr "" +"alex239@gmail.com,shaforostoff@kde.ru,yur.arh@gmail.com,omiro@basealt.ru" #. i18n: ectx: property (text), widget (QLabel, label_3) #: authdetails.ui:29 @@ -42,71 +44,68 @@ #: authdetails.ui:39 #, kde-format msgid "" -msgstr "" +msgstr "" #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Поставщик:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 +#. i18n: ectx: property (text), widget (QLabel, action_id_label) +#: authdetails.ui:94 #, kde-format -msgid "Application:" -msgstr "Приложение:" +msgid "Action ID:" +msgstr "Идентификатор действия:" -#. i18n: ectx: property (text), widget (QLabel, action_id_label) #. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 -#, fuzzy, kde-format -#| msgid "Action:" -msgid "Action ID:" -msgstr "Действие:" +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "Идентификатор" -#: AuthDialog.cpp:73 +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Подробности" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Требуется аутентификация" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Пароль для root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Пароль для %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Пароль:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" -msgstr "Введите пароль или приложите палец для root:" +msgstr "Введите пароль или приложите палец для получения root-доступа:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Введите пароль или приложите палец для %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Введите пароль или приложите палец:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -115,41 +114,41 @@ "Приложение пытается выполнить действие, которое требует дополнительных " "привилегий. Для этого требуется аутентификация." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Выберите пользователя" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." -msgstr "Сбой при проверке подлинности, попробуйте ещё раз." - -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" +msgstr "Ошибка аутентификации, попробуйте ещё раз." -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "Поле «Описание» не содержит данных" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Нажмите, чтобы открыть %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "П&ароль:" diff -Nru polkit-kde-agent-1-5.13.4/po/sk/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/sk/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/sk/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:12.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/sk/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:19.000000000 +0000 @@ -1,18 +1,19 @@ # translation of polkit-kde-authentication-agent-1.po to Slovak # Roman Paholík , 2015. +# Mthw , 2018. msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2015-01-09 15:36+0100\n" -"Last-Translator: Roman Paholík \n" -"Language-Team: Slovak \n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-11-13 16:03+0100\n" +"Last-Translator: Mthw \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #, kde-format @@ -35,71 +36,68 @@ #: authdetails.ui:39 #, kde-format msgid "" -msgstr "" +msgstr "" #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Predajca:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 +#. i18n: ectx: property (text), widget (QLabel, action_id_label) +#: authdetails.ui:94 #, kde-format -msgid "Application:" -msgstr "Aplikácia:" +msgid "Action ID:" +msgstr "ID Akcie:" -#. i18n: ectx: property (text), widget (QLabel, action_id_label) #. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 -#, fuzzy, kde-format -#| msgid "Action:" -msgid "Action ID:" -msgstr "Akcia:" +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" -#: AuthDialog.cpp:73 +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detaily" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Vyžaduje sa overenie totožnosti" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Heslo pre roota:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Heslo pre %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Heslo:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Heslo alebo odtlačok prsta pre roota:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Heslo alebo odtlačok prsta pre %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Heslo alebo odtlačok prsta:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -108,41 +106,41 @@ "Aplikácia sa pokúša vykonať činnosť, ktorá vyžaduje práva. Na vykonanie " "tejto činnosti je potrebné overenie práv." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Vybrať používateľa" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Overenie zlyhalo, prosím, skúste to znovu." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Popis' nebol poskytnutý" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Kliknite na otvorenie %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "H&eslo:" diff -Nru polkit-kde-agent-1-5.13.4/po/sl/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/sl/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/sl/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:13.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/sl/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:19.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2015-01-18 11:59+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -42,67 +42,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Proizvajalec:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Program:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Dejanje:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Podrobnosti" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Zahtevana je overitev" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Geslo skrbnika:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Geslo uporabnika %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Geslo:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Vnesite geslo ali povlecite prst, da se prijavite kot skrbnik:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Vnesite geslo ali povlecite prst, da se prijavite kot uporabnik %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Geslo ali povlecite prst:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "Program poskuša izvesti dejanje za katerega potrebuje dovoljenja. Za " "izvršitev dejanja je zahtevana overitev." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Izberi uporabnika" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Overitev ni uspela. Poskusite znova." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Kliknite za odpiranje %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Geslo:" diff -Nru polkit-kde-agent-1-5.13.4/po/sr/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/sr/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/sr/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:13.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/sr/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:19.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"POT-Creation-Date: 2018-11-30 03:35+0100\n" "PO-Revision-Date: 2015-01-17 13:25+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -43,69 +43,67 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Издавач:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Програм:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Радња:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Детаљи" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Неопходна аутентификација" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Лозинка корена:" # rewrite-msgid: /for/for account/ -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Лозинка налога %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Лозинка:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Лозинка или отисак прста корена:" # rewrite-msgid: /for/for account/ -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Лозинка или отисак прста налога %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Лозинка или отисак прста:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -114,41 +112,41 @@ "Програм покушава да изведе радњу која захтева овлашћења. Зато је неопходна " "аутентификација." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Избор корисника" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Аутентификација није успела, покушајте поново." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Кликните да отворите %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Лозинка:" diff -Nru polkit-kde-agent-1-5.13.4/po/sr@ijekavian/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/sr@ijekavian/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/sr@ijekavian/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:13.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/sr@ijekavian/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:19.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"POT-Creation-Date: 2018-11-30 03:35+0100\n" "PO-Revision-Date: 2015-01-17 13:25+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -43,69 +43,67 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Издавач:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Програм:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Радња:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Детаљи" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Неопходна аутентификација" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Лозинка корјена:" # rewrite-msgid: /for/for account/ -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Лозинка налога %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Лозинка:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Лозинка или отисак прста корјена:" # rewrite-msgid: /for/for account/ -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Лозинка или отисак прста налога %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Лозинка или отисак прста:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -114,41 +112,41 @@ "Програм покушава да изведе радњу која захтијева овлашћења. Зато је неопходна " "аутентификација." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Избор корисника" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Аутентификација није успјела, покушајте поново." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Кликните да отворите %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Лозинка:" diff -Nru polkit-kde-agent-1-5.13.4/po/sr@ijekavianlatin/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/sr@ijekavianlatin/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/sr@ijekavianlatin/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:13.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/sr@ijekavianlatin/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:21.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"POT-Creation-Date: 2018-11-30 03:35+0100\n" "PO-Revision-Date: 2015-01-17 13:25+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -43,69 +43,67 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Izdavač:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Program:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Radnja:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalji" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Neophodna autentifikacija" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Lozinka korjena:" # rewrite-msgid: /for/for account/ -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Lozinka naloga %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Lozinka:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Lozinka ili otisak prsta korjena:" # rewrite-msgid: /for/for account/ -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Lozinka ili otisak prsta naloga %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Lozinka ili otisak prsta:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -114,41 +112,41 @@ "Program pokušava da izvede radnju koja zahtijeva ovlašćenja. Zato je " "neophodna autentifikacija." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Izbor korisnika" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentifikacija nije uspjela, pokušajte ponovo." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Kliknite da otvorite %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Lozinka:" diff -Nru polkit-kde-agent-1-5.13.4/po/sr@latin/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/sr@latin/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/sr@latin/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:14.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/sr@latin/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:21.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"POT-Creation-Date: 2018-11-30 03:35+0100\n" "PO-Revision-Date: 2015-01-17 13:25+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -43,69 +43,67 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Izdavač:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Program:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Radnja:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detalji" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Neophodna autentifikacija" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Lozinka korena:" # rewrite-msgid: /for/for account/ -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Lozinka naloga %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Lozinka:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Lozinka ili otisak prsta korena:" # rewrite-msgid: /for/for account/ -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Lozinka ili otisak prsta naloga %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Lozinka ili otisak prsta:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -114,41 +112,41 @@ "Program pokušava da izvede radnju koja zahteva ovlašćenja. Zato je neophodna " "autentifikacija." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Izbor korisnika" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Autentifikacija nije uspela, pokušajte ponovo." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Kliknite da otvorite %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Lozinka:" diff -Nru polkit-kde-agent-1-5.13.4/po/sv/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/sv/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/sv/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:14.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/sv/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:21.000000000 +0000 @@ -5,9 +5,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-29 11:42+0100\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-26 20:15+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -41,66 +41,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Tillverkare:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Program:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Åtgärdsidentifierare:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "Identifierare:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Detaljinformation" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Behörighetskontroll krävs" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Lösenord för systemadministratör:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Lösenord för %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Lösenord:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Lösenord eller dra finger för systemadministratör:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Lösenord eller dra finger för %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Lösenord eller dra finger:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -109,41 +107,41 @@ "Ett program försöker utföra en åtgärd som kräver rättigheter. " "Behörighetskontroll krävs för att utföra åtgärden." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Välj användare" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Behörighetskontroll misslyckades Försök igen." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Inte tillgänglig" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "'Beskrivning' ej angiven" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Klicka för att öppna %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Lösenord:" diff -Nru polkit-kde-agent-1-5.13.4/po/th/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/th/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/th/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:15.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/th/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:23.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2010-12-11 16:14+0700\n" "Last-Translator: Phuwanat Sakornsakolpat \n" "Language-Team: Thai \n" @@ -42,67 +42,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "ผู้ผลิต:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "โปรแกรม:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "การกระทำ:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "รหัสผ่านของ root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "รหัสผ่านของ %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "รหัสผ่าน:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "รหัสผ่านหรืออ่านลายนิ้วมือของ root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "รหัสผ่านหรืออ่านลายนิ้วมือของ %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "รหัสผ่านหรืออ่านลายนิ้วมือ:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -111,41 +109,41 @@ "โปรแกรมได้พยายามจะทำการกระทำที่ต้องการสิทธิ์ในการทำงานเพิ่มเติม " "จึงจะต้องทำการตรวจสอบสิทธิ์เพื่อใช้ในการทำการกระทำนี้" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "เลือกผู้ใช้" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "การตรวจสอบสิทธิ์ล้มเหลว โปรดลองใหม่อีกครั้ง" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "คลิกเพื่อเปิด %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/tr/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/tr/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/tr/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:15.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/tr/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:23.000000000 +0000 @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: extragear-base-kde4\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2015-02-15 13:29+0000\n" "Last-Translator: Necdet \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/extragear-base-k-" @@ -43,67 +43,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Sağlayıcı:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Uygulama:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Eylem:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Ayrıntılar" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Kimlik Doğrulama Gereklidir" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Yönetici parolası:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "%1 kullanıcısının parolası:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Parola:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Yönetici parolası veya parmak izi:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "%1 için parola veya parmak izi:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Parola veya parmak izi:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -112,41 +110,41 @@ "Bir uygulamanın yapmak istediği bir eylem ayrıcalıklar gerektiriyor. Bu " "eylemi yapabilmek için yetkilendirilmeniz gerekiyor." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Kullanıcı Seçin" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Kimlik doğrulama başarısız oldu, lütfen yeniden deneyin." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "%1 ögesini açmak için tıklayın" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "P&arola:" diff -Nru polkit-kde-agent-1-5.13.4/po/ug/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/ug/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/ug/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:15.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/ug/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:25.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2013-09-08 07:04+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -41,67 +41,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "زاۋۇت:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "پروگرامما:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "ھەرىكەت:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "ئالىي ئىشلەتكۈچىنىڭ ئىمى:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "ئىشلەتكۈچى %1 نىڭ ئىمى:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "ئىم:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "پروگرامما ئېلىپ بارماقچى بولغان مەشغۇلاتقا ھوقۇق زۆرۈر بولىدۇ. بۇ مەشغۇلاتنى " "ئېلىپ بېرىش ئۈچۈن كىملىك دەلىللەش زۆرۈر." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "ئىشلەتكۈچى تاللاش" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "چېكىپ %1 نى ئېچىش" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/uk/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/uk/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/uk/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:15.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/uk/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:25.000000000 +0000 @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: polkit-kde-authentication-agent-1\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-25 09:25+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-26 08:51+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -44,66 +44,64 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Джерело запиту:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Програма:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "Ідентифікатор дії:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "Ід.:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "Подробиці" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "Слід пройти розпізнавання" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Пароль root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Пароль %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Пароль:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Пароль або відбиток пальця root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Пароль або відбиток пальця %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Пароль або відбиток пальця:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -112,41 +110,41 @@ "Програма намагається виконати дію, яка потребує певних привілеїв. Щоб " "виконати цю дію, слід зареєструватися." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Вибір користувача" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Помилка розпізнавання. Спробуйте ще раз." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "Не застосовується" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "«Опис» не надано" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Натисніть, щоб відкрити %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "&Пароль:" diff -Nru polkit-kde-agent-1-5.13.4/po/vi/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/vi/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/vi/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:16.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/vi/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:26.000000000 +0000 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" "PO-Revision-Date: 2012-07-24 14:00+0800\n" "Last-Translator: Lê Hoàng Phương \n" "Language-Team: Vietnamese \n" @@ -41,67 +41,65 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "Nhà cung cấp:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "Ứng dụng:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, fuzzy, kde-format #| msgid "Action:" msgid "Action ID:" msgstr "Hành động:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "Mật khẩu root:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "Mật khẩu cho %1:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "Mật khẩu:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "Mật khẩu hay vuốt ngón tay cho root:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "Mật khẩu hay vuốt ngón tay cho %1:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "Mật khẩu hay vuốt ngón tay:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " @@ -110,41 +108,41 @@ "Một ứng dụng đang cố gắng thực hiện hành động có yêu cầu cấp quyền. Cần xác " "thực để thực hiện hành động này." -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "Chọn người dùng" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "Xác thực thất bại, hãy thử lại." -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "Nhấn để mở %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, fuzzy, kde-format #| msgid "Password:" msgid "P&assword:" diff -Nru polkit-kde-agent-1-5.13.4/po/zh_CN/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/zh_CN/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/zh_CN/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:17.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/zh_CN/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:28.000000000 +0000 @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-07-24 08:45\n" -"Last-Translator: guoyunhebrave \n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2019-06-02 13:14\n" +"Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -46,107 +46,105 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "发行商:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "应用程序:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "行为ID:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "细节" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "需要认证" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "root 密码:" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "%1 的密码:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "密码:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "root 的密码或指纹验证:" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr " %1 的密码或指纹验证:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "密码或指纹验证:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "一个程序正请求进行需要更高权限的操作。需要验证才能继续操作。" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "选择用户" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "验证失败,请重试。" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "不适用" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "未提供“说明”" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "点击打开 %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "密码(&A):" diff -Nru polkit-kde-agent-1-5.13.4/po/zh_TW/polkit-kde-authentication-agent-1.po polkit-kde-agent-1-5.16.0/po/zh_TW/polkit-kde-authentication-agent-1.po --- polkit-kde-agent-1-5.13.4/po/zh_TW/polkit-kde-authentication-agent-1.po 2018-07-31 13:01:17.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/po/zh_TW/polkit-kde-authentication-agent-1.po 2019-06-06 13:16:28.000000000 +0000 @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-25 03:47+0200\n" -"PO-Revision-Date: 2018-04-29 13:24+0800\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 07:46+0200\n" +"PO-Revision-Date: 2018-10-31 00:55+0800\n" "Last-Translator: pan93412 \n" -"Language-Team: Chinese \n" +"Language-Team: Chinese \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,107 +43,105 @@ #. i18n: ectx: property (text), widget (KUrlLabel, vendorUL) #. i18n: ectx: property (text), widget (QLabel, vendorL) -#: authdetails.ui:56 authdetails.ui:78 +#: authdetails.ui:56 authdetails.ui:81 #, kde-format msgid "Vendor:" msgstr "廠商:" -#. i18n: ectx: property (text), widget (QLabel, label) -#. i18n: ectx: property (text), widget (QLabel, app_label) -#: authdetails.ui:94 authdetails.ui:104 -#, kde-format -msgid "Application:" -msgstr "應用程式:" - #. i18n: ectx: property (text), widget (QLabel, action_id_label) -#. i18n: ectx: property (text), widget (QLabel, label_2) -#: authdetails.ui:117 authdetails.ui:133 +#: authdetails.ui:94 #, kde-format msgid "Action ID:" msgstr "動作編號:" -#: AuthDialog.cpp:73 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: authdetails.ui:113 +#, kde-format +msgid "ID:" +msgstr "ID:" + +#: AuthDialog.cpp:76 #, kde-format msgid "Details" msgstr "詳細資料" -#: AuthDialog.cpp:89 +#: AuthDialog.cpp:92 #, kde-format msgid "Authentication Required" msgstr "需要認證" -#: AuthDialog.cpp:179 +#: AuthDialog.cpp:182 #, kde-format msgid "Password for root:" msgstr "root 的密碼" -#: AuthDialog.cpp:181 +#: AuthDialog.cpp:184 #, kde-format msgid "Password for %1:" msgstr "%1 的密碼:" -#: AuthDialog.cpp:185 +#: AuthDialog.cpp:188 #, kde-format msgid "Password:" msgstr "密碼:" -#: AuthDialog.cpp:191 +#: AuthDialog.cpp:194 #, kde-format msgid "Password or swipe finger for root:" msgstr "root 的密碼或指紋" -#: AuthDialog.cpp:193 +#: AuthDialog.cpp:196 #, kde-format msgid "Password or swipe finger for %1:" msgstr "%1 的密碼或指紋:" -#: AuthDialog.cpp:197 +#: AuthDialog.cpp:200 #, kde-format msgid "Password or swipe finger:" msgstr "密碼或指紋:" -#: AuthDialog.cpp:207 +#: AuthDialog.cpp:210 #, kde-format msgid "" "An application is attempting to perform an action that requires privileges. " "Authentication is required to perform this action." msgstr "有一個應用程式試圖執行需要權限的動作。要執行此動作需要認證。" -#: AuthDialog.cpp:222 +#: AuthDialog.cpp:226 #, kde-format msgid "Select User" msgstr "選擇使用者" -#: AuthDialog.cpp:241 +#: AuthDialog.cpp:245 #, kde-format msgctxt "%1 is the full user name, %2 is the user login name" msgid "%1 (%2)" msgstr "%1 (%2)" -#: AuthDialog.cpp:307 +#: AuthDialog.cpp:311 #, kde-format msgid "Authentication failure, please try again." msgstr "認證失敗。請再試一次。" -#: AuthDialog.cpp:331 AuthDialog.cpp:360 -#, kde-format -msgid "Not Applicable" -msgstr "不適用的" - -#: AuthDialog.cpp:341 +#: AuthDialog.cpp:334 #, kde-format msgctxt "" "%1 is the name of a detail about the current action provided by polkit" msgid "%1:" msgstr "%1:" -#: AuthDialog.cpp:372 AuthDialog.cpp:376 +#: AuthDialog.cpp:351 +#, kde-format +msgid "'Description' not provided" +msgstr "未提供「描述」" + +#: AuthDialog.cpp:363 AuthDialog.cpp:367 #, kde-format msgid "Click to open %1" msgstr "點擊以開啟 %1" #. i18n: ectx: property (text), widget (QLabel, lblPassword) -#: AuthDialog.ui:106 +#: AuthDialog.ui:94 #, kde-format msgid "P&assword:" msgstr "密碼(&A):" diff -Nru polkit-kde-agent-1-5.13.4/policykit1-kde.notifyrc polkit-kde-agent-1-5.16.0/policykit1-kde.notifyrc --- polkit-kde-agent-1-5.13.4/policykit1-kde.notifyrc 2018-07-31 13:00:46.000000000 +0000 +++ polkit-kde-agent-1-5.16.0/policykit1-kde.notifyrc 2019-06-06 13:15:31.000000000 +0000 @@ -43,7 +43,6 @@ Comment[zh_CN]=PolicyKit 认证对话框 Comment[zh_TW]=PolicyKit 認證對話框 Name=policykit1-kde -Name[ast]=policykit1-kde Name[bs]=policykit1-kde Name[ca]=policykit1-kde Name[ca@valencia]=policykit1-kde