diff -Nru print-manager-17.12.3/add-printer/AddPrinterAssistant.cpp print-manager-18.04.3/add-printer/AddPrinterAssistant.cpp --- print-manager-17.12.3/add-printer/AddPrinterAssistant.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/AddPrinterAssistant.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -36,20 +36,15 @@ #include #include -AddPrinterAssistant::AddPrinterAssistant() : - KAssistantDialog(), - m_devicesPage(0), - m_chooseClassPage(0), - m_choosePPDPage(0), - m_addPrinterPage(0) +AddPrinterAssistant::AddPrinterAssistant() { setWindowTitle(i18nc("@title:window", "Add a New Printer")); - setWindowIcon(QIcon::fromTheme("printer")); + setWindowIcon(QIcon::fromTheme(QLatin1String("printer"))); buttonBox()->removeButton(buttonBox()->button(QDialogButtonBox::Cancel)); // Needed so we have our dialog size saved setAttribute(Qt::WA_DeleteOnClose); - QPushButton * helpButton = buttonBox()->addButton(QDialogButtonBox::Help); + QPushButton *helpButton = buttonBox()->addButton(QDialogButtonBox::Help); // Configure the help button to be flat, disabled and empty helpButton->setFlat(true); helpButton->setEnabled(false); @@ -58,21 +53,20 @@ // Setup the busy cursor m_busySeq = new KPixmapSequenceOverlayPainter(this); - m_busySeq->setSequence(KIconLoader::global()->loadPixmapSequence("process-working", KIconLoader::SizeSmallMedium)); + m_busySeq->setSequence(KIconLoader::global()->loadPixmapSequence(QLatin1String("process-working"), KIconLoader::SizeSmallMedium)); m_busySeq->setAlignment(Qt::AlignHCenter | Qt::AlignBottom); m_busySeq->setWidget(helpButton); - connect(finishButton(), SIGNAL(clicked()), - this, SLOT(slotFinishButtonClicked())); + connect(finishButton(), &QPushButton::clicked, this, &AddPrinterAssistant::slotFinishButtonClicked); // Restore the dialog size - KConfigGroup configGroup(KSharedConfig::openConfig("print-manager"), "AddPrinterAssistant"); + KConfigGroup configGroup(KSharedConfig::openConfig(QLatin1String("print-manager")), "AddPrinterAssistant"); KWindowConfig::restoreWindowSize(windowHandle(), configGroup); } AddPrinterAssistant::~AddPrinterAssistant() { - KConfigGroup configGroup(KSharedConfig::openConfig("print-manager"), "AddPrinterAssistant"); + KConfigGroup configGroup(KSharedConfig::openConfig(QLatin1String("print-manager")), "AddPrinterAssistant"); KWindowConfig::saveWindowSize(windowHandle(), configGroup); } @@ -80,8 +74,9 @@ { // setup our hash args with the information if we are // adding a new printer or a class - QVariantHash args; - args[ADDING_PRINTER] = true; + QVariantHash args({ + {ADDING_PRINTER, true} + }); KPageWidgetItem *currentPage; if (deviceId.isEmpty()) { @@ -112,9 +107,10 @@ { // setup our hash args with the information if we are // adding a new printer or a class - QVariantHash args; - args[ADDING_PRINTER] = false; - args[KCUPS_DEVICE_LOCATION] = QHostInfo::localHostName(); + const QVariantHash args({ + {ADDING_PRINTER, false}, + {KCUPS_DEVICE_LOCATION, QHostInfo::localHostName()} + }); KPageWidgetItem *currentPage; m_chooseClassPage = new KPageWidgetItem(new PageChoosePrinters(args), i18nc("@title:window", "Configure your connection")); @@ -132,11 +128,12 @@ { // setup our hash args with the information if we are // adding a new printer or a class - QVariantHash args; - args[ADDING_PRINTER] = true; - args[KCUPS_DEVICE_URI] = deviceUri; - args[KCUPS_PRINTER_NAME] = printer; - args[KCUPS_PRINTER_MAKE_AND_MODEL] = makeAndModel; + const QVariantHash args({ + {ADDING_PRINTER, true}, + {KCUPS_DEVICE_URI, deviceUri}, + {KCUPS_PRINTER_NAME, printer}, + {KCUPS_PRINTER_MAKE_AND_MODEL, makeAndModel} + }); m_choosePPDPage = new KPageWidgetItem(new PageChoosePPD(args), i18nc("@title:window", "Pick a Driver")); addPage(m_choosePPDPage); @@ -146,8 +143,7 @@ void AddPrinterAssistant::back() { KAssistantDialog::back(); - GenericPage *currPage; - currPage = qobject_cast(currentPage()->widget()); + auto currPage = qobject_cast(currentPage()->widget()); enableNextButton(currPage->canProceed()); if (!qobject_cast(currentPage()->widget())->isValid()) { back(); @@ -166,7 +162,7 @@ // we don't set (or even unset values), // and we only call setValues on the next page if // the currentPage() has changes. - QVariantHash args = qobject_cast(currentPage->widget())->values(); + const QVariantHash args = qobject_cast(currentPage->widget())->values(); if (currentPage == m_devicesPage) { qobject_cast(m_choosePPDPage->widget())->setValues(args); setCurrentPage(m_choosePPDPage); @@ -182,19 +178,19 @@ // it up, if not call next with it so we can find the next page if (qobject_cast(page->widget())->isValid()) { KAssistantDialog::setCurrentPage(page); - GenericPage *currPage = qobject_cast(currentPage()->widget()); - GenericPage *nextPage = qobject_cast(page->widget()); + auto currPage = qobject_cast(currentPage()->widget()); + auto nextPage = qobject_cast(page->widget()); // Disconnect the current page slots - disconnect(currPage, SIGNAL(allowProceed(bool)), this, SLOT(enableNextButton(bool))); - disconnect(currPage, SIGNAL(allowProceed(bool)), this, SLOT(enableFinishButton(bool))); - disconnect(currPage, SIGNAL(startWorking()), m_busySeq, SLOT(start())); - disconnect(currPage, SIGNAL(stopWorking()), m_busySeq, SLOT(stop())); - disconnect(currPage, SIGNAL(proceed()), this, SLOT(next())); + disconnect(currPage, &GenericPage::allowProceed, this, &AddPrinterAssistant::enableNextButton); + disconnect(currPage, &GenericPage::allowProceed, this, &AddPrinterAssistant::enableFinishButton); + disconnect(currPage, &GenericPage::proceed, this, static_cast(&AddPrinterAssistant::next)); + disconnect(currPage, &GenericPage::startWorking, m_busySeq, &KPixmapSequenceOverlayPainter::start); + disconnect(currPage, &GenericPage::stopWorking, m_busySeq, &KPixmapSequenceOverlayPainter::stop); // Connect next page signals - connect(currPage, SIGNAL(startWorking()), m_busySeq, SLOT(start())); - connect(currPage, SIGNAL(stopWorking()), m_busySeq, SLOT(stop())); - connect(nextPage, SIGNAL(proceed()), this, SLOT(next())); + connect(nextPage, &GenericPage::startWorking, m_busySeq, &KPixmapSequenceOverlayPainter::start); + connect(nextPage, &GenericPage::stopWorking, m_busySeq, &KPixmapSequenceOverlayPainter::stop); + connect(nextPage, &GenericPage::proceed, this, static_cast(&AddPrinterAssistant::next)); // check the working property if (nextPage->isWorking()) { @@ -205,11 +201,11 @@ // When ChangePPD() is called addPrinterPage is zero if (page == m_addPrinterPage || m_addPrinterPage == 0) { - connect(nextPage, SIGNAL(allowProceed(bool)), this, SLOT(enableFinishButton(bool))); + connect(nextPage, &GenericPage::allowProceed, this, &AddPrinterAssistant::enableFinishButton); enableNextButton(false); enableFinishButton(nextPage->canProceed()); } else { - connect(nextPage, SIGNAL(allowProceed(bool)), this, SLOT(enableNextButton(bool))); + connect(nextPage, &GenericPage::allowProceed, this, &AddPrinterAssistant::enableNextButton); enableNextButton(nextPage->canProceed()); } } else { @@ -227,7 +223,7 @@ void AddPrinterAssistant::slotFinishButtonClicked() { - GenericPage *page = qobject_cast(currentPage()->widget()); + auto page = qobject_cast(currentPage()->widget()); enableFinishButton(false); if (page->finishClicked()) { //KAssistantDialog::slotButtonClicked(button); // FIXME next() really? @@ -246,3 +242,5 @@ { finishButton()->setEnabled(enable); } + +#include "moc_AddPrinterAssistant.cpp" diff -Nru print-manager-17.12.3/add-printer/AddPrinterAssistant.h print-manager-18.04.3/add-printer/AddPrinterAssistant.h --- print-manager-17.12.3/add-printer/AddPrinterAssistant.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/AddPrinterAssistant.h 2018-03-17 21:16:53.000000000 +0000 @@ -48,10 +48,10 @@ void setCurrentPage(KPageWidgetItem *page); void showEvent(QShowEvent * event) Q_DECL_OVERRIDE; - KPageWidgetItem *m_devicesPage; - KPageWidgetItem *m_chooseClassPage; - KPageWidgetItem *m_choosePPDPage; - KPageWidgetItem *m_addPrinterPage; + KPageWidgetItem *m_devicesPage = nullptr; + KPageWidgetItem *m_chooseClassPage = nullptr; + KPageWidgetItem *m_choosePPDPage = nullptr; + KPageWidgetItem *m_addPrinterPage = nullptr; KPixmapSequenceOverlayPainter *m_busySeq; }; diff -Nru print-manager-17.12.3/add-printer/AddPrinter.cpp print-manager-18.04.3/add-printer/AddPrinter.cpp --- print-manager-17.12.3/add-printer/AddPrinter.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/AddPrinter.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -23,11 +23,13 @@ #include "AddPrinterAssistant.h" #include +#include #include -#include -#include +#include + +Q_DECLARE_LOGGING_CATEGORY(PM_ADD_PRINTER) AddPrinter::AddPrinter(int &argc, char **argv) : QApplication(argc, argv) @@ -41,14 +43,14 @@ void AddPrinter::addPrinter(qulonglong wid) { - AddPrinterAssistant *wizard = new AddPrinterAssistant(); + auto wizard = new AddPrinterAssistant(); wizard->initAddPrinter(); show(wizard, wid); } void AddPrinter::addClass(qulonglong wid) { - AddPrinterAssistant *wizard = new AddPrinterAssistant(); + auto wizard = new AddPrinterAssistant(); wizard->initAddClass(); show(wizard, wid); } @@ -57,19 +59,20 @@ { // Fist we need to get the printer attributes QPointer request = new KCupsRequest; - QStringList attr; - attr << KCUPS_PRINTER_TYPE; // needed to know if it's a remote printer - attr << KCUPS_PRINTER_MAKE_AND_MODEL; - attr << KCUPS_DEVICE_URI; + const QStringList attr({ + KCUPS_PRINTER_TYPE, // needed to know if it's a remote printer + KCUPS_PRINTER_MAKE_AND_MODEL, + KCUPS_DEVICE_URI + }); request->getPrinterAttributes(name, false, attr); request->waitTillFinished(); if (request) { if (!request->hasError() && request->printers().size() == 1) { - KCupsPrinter printer = request->printers().first(); + const KCupsPrinter printer = request->printers().first(); if (printer.type() & CUPS_PRINTER_REMOTE) { - qWarning() << "Ignoring request, can not change PPD of remote printer" << name; + qCWarning(PM_ADD_PRINTER) << "Ignoring request, can not change PPD of remote printer" << name; } else { - AddPrinterAssistant *wizard = new AddPrinterAssistant(); + auto wizard = new AddPrinterAssistant(); wizard->initChangePPD(name, printer.deviceUri(), printer.makeAndModel()); show(wizard, wid); } @@ -99,7 +102,7 @@ // printer = "HP PSC 1400 series"; // deviceId = "MFG:HP;MDL:PSC 1400 series;DES:;CMD:LDL,MLC,PML,DYN;"; - AddPrinterAssistant *wizard = new AddPrinterAssistant(); + auto wizard = new AddPrinterAssistant(); wizard->initAddPrinter(name, device_id); show(wizard, wid); } @@ -110,3 +113,5 @@ KWindowSystem::forceActiveWindow(widget->winId()); KWindowSystem::setMainWindow(widget, wid); } + +#include "moc_AddPrinter.cpp" diff -Nru print-manager-17.12.3/add-printer/ChooseLpd.cpp print-manager-18.04.3/add-printer/ChooseLpd.cpp --- print-manager-17.12.3/add-printer/ChooseLpd.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/ChooseLpd.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -24,8 +24,6 @@ #include #include -#include -#include #include @@ -47,14 +45,14 @@ void ChooseLpd::on_addressLE_textChanged(const QString &text) { - qDebug() << text; + Q_UNUSED(text); +// qDebug() << text; } void ChooseLpd::setValues(const QVariantHash &args) { m_args = args; const QString deviceUri = args[KCUPS_DEVICE_URI].toString(); - qDebug() << deviceUri; if (deviceUri.contains(QLatin1Char('/'))) { m_isValid = false; return; @@ -68,7 +66,7 @@ QVariantHash ChooseLpd::values() const { QVariantHash ret = m_args; - ret[KCUPS_DEVICE_URI] = static_cast(QLatin1String("lpd://") % ui->addressLE->text()); + ret[KCUPS_DEVICE_URI] = static_cast(QLatin1String("lpd://") + ui->addressLE->text()); return ret; } @@ -76,7 +74,7 @@ { bool allow = false; if (!ui->addressLE->text().isEmpty()) { - QUrl url = QUrl(QStringLiteral("lpd://") % ui->addressLE->text()); + const QUrl url = QUrl(QLatin1String("lpd://") + ui->addressLE->text()); allow = url.isValid(); } return allow; @@ -91,3 +89,5 @@ { // emit allowProceed(!devicesLV->selectionModel()->selection().isEmpty()); } + +#include "moc_ChooseLpd.cpp" diff -Nru print-manager-17.12.3/add-printer/ChooseSamba.cpp print-manager-18.04.3/add-printer/ChooseSamba.cpp --- print-manager-17.12.3/add-printer/ChooseSamba.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/ChooseSamba.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -24,7 +24,6 @@ #include #include -#include #include #include @@ -57,14 +56,14 @@ { QVariantHash ret = m_args; - QString address = ui->addressLE->text().trimmed(); + const QString address = ui->addressLE->text().trimmed(); QUrl url; if (address.startsWith(QLatin1String("//"))) { - url = QUrl(QLatin1String("smb:") % address); + url = QUrl(QLatin1String("smb:") + address); } else if (address.startsWith(QLatin1String("/"))) { - url = QUrl(QLatin1String("smb:/") % address); + url = QUrl(QLatin1String("smb:/") + address); } else if (address.startsWith(QLatin1String("://"))) { - url = QUrl(QLatin1String("smb") % address); + url = QUrl(QLatin1String("smb") + address); } else if (address.startsWith(QLatin1String("smb://"))) { url = QUrl(address); } else if (!QUrl::fromUserInput(address).scheme().isEmpty() && @@ -72,7 +71,7 @@ url = QUrl::fromUserInput(address); url.setScheme(QStringLiteral("smb")); } else { - url = QUrl(QStringLiteral("smb://") % address); + url = QUrl(QStringLiteral("smb://") + address); } qDebug() << 1 << url; @@ -105,8 +104,8 @@ bool ChooseSamba::isValid() const { - QVariantHash args = values(); - QUrl url(args[KCUPS_DEVICE_URI].toString()); + const QVariantHash args = values(); + const QUrl url(args[KCUPS_DEVICE_URI].toString()); return url.isValid() && !url.isEmpty() && @@ -130,3 +129,5 @@ { emit allowProceed(isValid()); } + +#include "moc_ChooseSamba.cpp" diff -Nru print-manager-17.12.3/add-printer/ChooseSerial.cpp print-manager-18.04.3/add-printer/ChooseSerial.cpp --- print-manager-17.12.3/add-printer/ChooseSerial.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/ChooseSerial.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -28,22 +28,21 @@ ChooseSerial::ChooseSerial(QWidget *parent) : GenericPage(parent), ui(new Ui::ChooseSerial), - m_rx("\\?baud=(\\d+)"), - m_isValid(false) + m_rx(QLatin1String("\\?baud=(\\d+)")) { ui->setupUi(this); // setup default options setWindowTitle(i18nc("@title:window", "Select a Printer to Add")); - ui->parityCB->addItem(i18nc("@label:listbox", "None"), "none"); - ui->parityCB->addItem(i18nc("@label:listbox", "Even"), "even"); - ui->parityCB->addItem(i18nc("@label:listbox", "Odd"), "odd"); - - ui->flowCB->addItem(i18nc("@label:listbox", "None"), "none"); - ui->flowCB->addItem(i18nc("@label:listbox", "XON/XOFF (Software)"), "soft"); - ui->flowCB->addItem(i18nc("@label:listbox", "RTS/CTS (Hardware)"), "hard"); - ui->flowCB->addItem(i18nc("@label:listbox", "DTR/DSR (Hardware)"), "dtrdsr"); + ui->parityCB->addItem(i18nc("@label:listbox", "None"), QLatin1String("none")); + ui->parityCB->addItem(i18nc("@label:listbox", "Even"), QLatin1String("even")); + ui->parityCB->addItem(i18nc("@label:listbox", "Odd"), QLatin1String("odd")); + + ui->flowCB->addItem(i18nc("@label:listbox", "None"), QLatin1String("none")); + ui->flowCB->addItem(i18nc("@label:listbox", "XON/XOFF (Software)"), QLatin1String("soft")); + ui->flowCB->addItem(i18nc("@label:listbox", "RTS/CTS (Hardware)"), QLatin1String("hard")); + ui->flowCB->addItem(i18nc("@label:listbox", "DTR/DSR (Hardware)"), QLatin1String("dtrdsr")); } ChooseSerial::~ChooseSerial() @@ -108,13 +107,16 @@ { QVariantHash ret = m_args; QString deviceUri = m_args[KCUPS_DEVICE_URI].toString(); - int pos = deviceUri.indexOf(QLatin1Char('?')); - QString baudRate = ui->baudRateCB->currentText(); - QString bits = ui->bitsCB->currentText(); - QString parity = ui->baudRateCB->itemData(ui->baudRateCB->currentIndex()).toString(); - QString flow = ui->flowCB->itemData(ui->flowCB->currentIndex()).toString(); - QString replace = QString("?baud=%1+bits=%2+parity=%3+flow=%4").arg(baudRate, bits, parity, flow); + const int pos = deviceUri.indexOf(QLatin1Char('?')); + const QString baudRate = ui->baudRateCB->currentText(); + const QString bits = ui->bitsCB->currentText(); + const QString parity = ui->baudRateCB->itemData(ui->baudRateCB->currentIndex()).toString(); + const QString flow = ui->flowCB->itemData(ui->flowCB->currentIndex()).toString(); + const QString replace = QString::fromLatin1("?baud=%1+bits=%2+parity=%3+flow=%4") + .arg(baudRate, bits, parity, flow); deviceUri.replace(pos, deviceUri.size() - pos, replace); ret[KCUPS_DEVICE_URI] = deviceUri; return ret; } + +#include "moc_ChooseSerial.cpp" diff -Nru print-manager-17.12.3/add-printer/ChooseSerial.h print-manager-18.04.3/add-printer/ChooseSerial.h --- print-manager-17.12.3/add-printer/ChooseSerial.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/ChooseSerial.h 2018-03-17 21:16:53.000000000 +0000 @@ -46,7 +46,7 @@ private: Ui::ChooseSerial *ui; QRegExp m_rx; - bool m_isValid; + bool m_isValid = false; }; #endif diff -Nru print-manager-17.12.3/add-printer/ChooseSocket.cpp print-manager-18.04.3/add-printer/ChooseSocket.cpp --- print-manager-17.12.3/add-printer/ChooseSocket.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/ChooseSocket.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -23,14 +23,12 @@ #include -#include #include #include ChooseSocket::ChooseSocket(QWidget *parent) : GenericPage(parent), - ui(new Ui::ChooseSocket), - m_isValid(false) + ui(new Ui::ChooseSocket) { ui->setupUi(this); @@ -52,9 +50,9 @@ m_args = args; ui->addressLE->clear(); ui->portISB->setValue(9100); - QString deviceUri = args[KCUPS_DEVICE_URI].toString(); + const QString deviceUri = args[KCUPS_DEVICE_URI].toString(); QUrl url(deviceUri); - if (url.scheme() == QStringLiteral("socket")) { + if (url.scheme() == QLatin1String("socket")) { ui->addressLE->setText(url.host()); ui->portISB->setValue(url.port(9100)); } @@ -66,7 +64,7 @@ QVariantHash ChooseSocket::values() const { QVariantHash ret = m_args; - QUrl url = QUrl(QStringLiteral("socket://") % ui->addressLE->text()); + QUrl url = QUrl(QLatin1String("socket://") + ui->addressLE->text()); url.setPort(ui->portISB->value()); ret[KCUPS_DEVICE_URI] = url.toDisplayString(); return ret; @@ -87,3 +85,5 @@ Q_UNUSED(text) emit allowProceed(canProceed()); } + +#include "moc_ChooseSocket.cpp" diff -Nru print-manager-17.12.3/add-printer/ChooseSocket.h print-manager-18.04.3/add-printer/ChooseSocket.h --- print-manager-17.12.3/add-printer/ChooseSocket.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/ChooseSocket.h 2018-03-17 21:16:53.000000000 +0000 @@ -43,7 +43,7 @@ private: Ui::ChooseSocket *ui; - bool m_isValid; + bool m_isValid = false; }; #endif diff -Nru print-manager-17.12.3/add-printer/ChooseUri.cpp print-manager-18.04.3/add-printer/ChooseUri.cpp --- print-manager-17.12.3/add-printer/ChooseUri.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/ChooseUri.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -23,8 +23,9 @@ #include -#include -#include +#include + +Q_DECLARE_LOGGING_CATEGORY(PM_ADD_PRINTER) ChooseUri::ChooseUri(QWidget *parent) : GenericPage(parent), @@ -32,7 +33,7 @@ { ui->setupUi(this); - ui->searchTB->setIcon(QIcon::fromTheme("edit-find")); + ui->searchTB->setIcon(QIcon::fromTheme(QLatin1String("edit-find"))); // setup default options setWindowTitle(i18nc("@title:window", "Select a Printer to Add")); @@ -51,12 +52,12 @@ { m_args = args; bool visible = false; - QUrl url(args[KCUPS_DEVICE_URI].toString()); + const QUrl url(args[KCUPS_DEVICE_URI].toString()); if (url.url() == QLatin1String("other")) { ui->addressLE->clear(); visible = true; } else if (url.scheme().isEmpty() && url.authority().isEmpty()) { - ui->addressLE->setText(url.url() % QLatin1String("://")); + ui->addressLE->setText(url.url() + QLatin1String("://")); } else { ui->addressLE->setText(url.url()); } @@ -68,17 +69,20 @@ { QVariantHash ret = m_args; - ret[KCUPS_DEVICE_URI] = parsedURL(ui->addressLE->text()).url(); + ret[KCUPS_DEVICE_URI] = parsedURL(ui->addressLE->text()).toString(); return ret; } bool ChooseUri::isValid() const { - QVariantHash args = values(); - QUrl url(args[KCUPS_DEVICE_URI].toString()); - //qDebug() << url << url.isValid() << url.isEmpty() << url.scheme().isEmpty() << url.host(); - return url.isValid() && !url.isEmpty() && !url.scheme().isEmpty() && !url.host().isEmpty(); + const QString urlDefault = m_args[KCUPS_DEVICE_URI].toString(); + const QVariantHash args = values(); + const QString deviceUri = args[KCUPS_DEVICE_URI].toString(); + QUrl url(deviceUri); +// qCDebug(PM_ADD_PRINTER) << url << url.isValid() << url.isEmpty() << url.scheme().isEmpty() << url.host() << url.toString(); + return (url.isValid() && !url.isEmpty() && !url.scheme().isEmpty() && !url.host().isEmpty()) + || urlDefault == deviceUri; } bool ChooseUri::canProceed() const @@ -101,9 +105,9 @@ if (url.isValid() && (url.scheme().isEmpty() || - url.scheme() == QStringLiteral("http") || - url.scheme() == QStringLiteral("https") || - url.scheme() == QStringLiteral("ipp"))) { + url.scheme() == QLatin1String("http") || + url.scheme() == QLatin1String("https") || + url.scheme() == QLatin1String("ipp"))) { // TODO maybe cups library can connect to more protocols ui->searchTB->setEnabled(true); } else { @@ -113,30 +117,29 @@ void ChooseUri::findPrinters() { - QUrl url = parsedURL(ui->addressLE->text()); + const QUrl url = parsedURL(ui->addressLE->text()); - KCupsConnection *conn = new KCupsConnection(url, this); - KCupsRequest *request = new KCupsRequest(conn); + auto conn = new KCupsConnection(url, this); + auto request = new KCupsRequest(conn); connect(request, &KCupsRequest::finished, this, &ChooseUri::getPrintersFinished); - QStringList attr; - attr << KCUPS_PRINTER_NAME; - attr << KCUPS_PRINTER_STATE; - attr << KCUPS_PRINTER_IS_SHARED; - attr << KCUPS_PRINTER_IS_ACCEPTING_JOBS; - attr << KCUPS_PRINTER_TYPE; - attr << KCUPS_PRINTER_LOCATION; - attr << KCUPS_PRINTER_INFO; - attr << KCUPS_PRINTER_MAKE_AND_MODEL; request->setProperty("URI", url); emit startWorking(); - request->getPrinters(attr); + request->getPrinters({ + KCUPS_PRINTER_NAME, + KCUPS_PRINTER_STATE, + KCUPS_PRINTER_IS_SHARED, + KCUPS_PRINTER_IS_ACCEPTING_JOBS, + KCUPS_PRINTER_TYPE, + KCUPS_PRINTER_LOCATION, + KCUPS_PRINTER_INFO, + KCUPS_PRINTER_MAKE_AND_MODEL + }); } -void ChooseUri::getPrintersFinished() +void ChooseUri::getPrintersFinished(KCupsRequest *request) { - KCupsRequest *request = qobject_cast(sender()); QUrl uri = request->property("URI").value(); QUrl url; url.setScheme(QStringLiteral("ipp")); @@ -146,7 +149,7 @@ if (request->hasError()) { emit errorMessage(request->errorMsg()); } else { - emit insertDevice("network", + emit insertDevice(QLatin1String("network"), url.authority(), url.authority(), QString(), @@ -162,8 +165,9 @@ QUrl ChooseUri::parsedURL(const QString &text) const { + const QString urlDefault = m_args[KCUPS_DEVICE_URI].toString(); QUrl url(QUrl::fromUserInput(text)); - if (url.host().isEmpty() && !text.contains(QLatin1String("://"))) { + if (url.host().isEmpty() && !text.contains(QLatin1String("://")) && urlDefault != text) { url = QUrl(); // URI might be scsi, network on anything that didn't match before if (m_args[KCUPS_DEVICE_URI].toString() != QLatin1String("other")) { @@ -173,3 +177,5 @@ } return url; } + +#include "moc_ChooseUri.cpp" diff -Nru print-manager-17.12.3/add-printer/ChooseUri.h print-manager-18.04.3/add-printer/ChooseUri.h --- print-manager-17.12.3/add-printer/ChooseUri.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/ChooseUri.h 2018-03-17 21:16:53.000000000 +0000 @@ -30,6 +30,7 @@ namespace Ui { class ChooseUri; } +class KCupsRequest; class ChooseUri : public GenericPage { Q_OBJECT @@ -59,7 +60,7 @@ void checkSelected(); void on_addressLE_textChanged(const QString &text); void findPrinters(); - void getPrintersFinished(); + void getPrintersFinished(KCupsRequest *request); private: QUrl parsedURL(const QString &text) const; diff -Nru print-manager-17.12.3/add-printer/CMakeLists.txt print-manager-18.04.3/add-printer/CMakeLists.txt --- print-manager-17.12.3/add-printer/CMakeLists.txt 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/CMakeLists.txt 2018-03-17 21:16:53.000000000 +0000 @@ -46,4 +46,4 @@ ) install(TARGETS kde-add-printer DESTINATION ${BIN_INSTALL_DIR}) -install(PROGRAMS org.kde.AddPrinter.desktop DESTINATION ${XDG_APPS_INSTALL_DIR}) +install(PROGRAMS org.kde.kde-add-printer.desktop DESTINATION ${XDG_APPS_INSTALL_DIR}) diff -Nru print-manager-17.12.3/add-printer/DevicesModel.cpp print-manager-18.04.3/add-printer/DevicesModel.cpp --- print-manager-17.12.3/add-printer/DevicesModel.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/DevicesModel.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -26,34 +26,33 @@ #include #include -#include #include #include #include -DevicesModel::DevicesModel(QObject *parent) - : QStandardItemModel(parent), - m_request(0), - m_rx("[a-z]+://.*") +DevicesModel::DevicesModel(QObject *parent) : QStandardItemModel(parent) + , m_request(0) + , m_rx(QLatin1String("[a-z]+://.*")) + , m_blacklistedURIs({ + QLatin1String("hp"), + QLatin1String("hpfax"), + QLatin1String("hal"), + QLatin1String("beh"), + QLatin1String("scsi"), + QLatin1String("http"), + QLatin1String("delete") + }) { qDBusRegisterMetaType(); qDBusRegisterMetaType(); - m_blacklistedURIs << QLatin1String("hp"); - m_blacklistedURIs << QLatin1String("hpfax"); - m_blacklistedURIs << QLatin1String("hal"); - m_blacklistedURIs << QLatin1String("beh"); - m_blacklistedURIs << QLatin1String("scsi"); - m_blacklistedURIs << QLatin1String("http"); - m_blacklistedURIs << QLatin1String("delete"); - // Adds the other device which is meant for manual URI input - insertDevice("other", + insertDevice(QLatin1String("other"), QString(), i18nc("@item", "Manual URI"), QString(), - "other", + QLatin1String("other"), QString()); } @@ -112,12 +111,13 @@ device_location); } else { // Map the devices so later we try to group them - MapSS mapSS; - mapSS[KCUPS_DEVICE_CLASS] = device_class; - mapSS[KCUPS_DEVICE_ID] = device_id; - mapSS[KCUPS_DEVICE_INFO] = device_info; - mapSS[KCUPS_DEVICE_MAKE_AND_MODEL] = device_make_and_model; - mapSS[KCUPS_DEVICE_LOCATION] = device_location; + const MapSS mapSS({ + {KCUPS_DEVICE_CLASS, device_class}, + {KCUPS_DEVICE_ID, device_id}, + {KCUPS_DEVICE_INFO, device_info}, + {KCUPS_DEVICE_MAKE_AND_MODEL, device_make_and_model}, + {KCUPS_DEVICE_LOCATION, device_location} + }); m_mappedDevices[device_uri] = mapSS; } } @@ -141,7 +141,7 @@ QLatin1String("/org/fedoraproject/Config/Printing"), QLatin1String("org.fedoraproject.Config.Printing"), QLatin1String("GroupPhysicalDevices")); - message << qVariantFromValue(m_mappedDevices); + message << QVariant::fromValue(m_mappedDevices); QDBusConnection::sessionBus().callWithCallback(message, this, SLOT(getGroupedDevicesSuccess(QDBusMessage)), @@ -240,7 +240,7 @@ if (!device_make_and_model.isEmpty() && !grouped && device_make_and_model.compare(QLatin1String("unknown"), Qt::CaseInsensitive)) { - text = device_info % QLatin1String(" (") % device_make_and_model % QLatin1Char(')'); + text = device_info + QLatin1String(" (") + device_make_and_model + QLatin1Char(')'); } else { text = device_info; } @@ -275,7 +275,7 @@ } } - QStandardItem *stdItem = new QStandardItem; + auto stdItem = new QStandardItem; stdItem->setText(text); stdItem->setToolTip(toolTip); stdItem->setData(device_class, DeviceClass); @@ -289,18 +289,19 @@ QStandardItem *catItem; switch (kind) { case Networked: - catItem = findCreateCategory(i18nc("@item", "Discovered Network Printers")); + catItem = findCreateCategory(i18nc("@item", "Discovered Network Printers"), kind); catItem->appendRow(stdItem); break; case OtherNetworked: - catItem = findCreateCategory(i18nc("@item", "Other Network Printers")); + catItem = findCreateCategory(i18nc("@item", "Other Network Printers"), kind); catItem->appendRow(stdItem); break; case Local: - catItem = findCreateCategory(i18nc("@item", "Local Printers")); + catItem = findCreateCategory(i18nc("@item", "Local Printers"), kind); catItem->appendRow(stdItem); break; default: + stdItem->setData(kind, Qt::UserRole); appendRow(stdItem); } @@ -310,17 +311,15 @@ void DevicesModel::getGroupedDevicesSuccess(const QDBusMessage &message) { if (message.type() == QDBusMessage::ReplyMessage && message.arguments().size() == 1) { - QDBusArgument argument; - argument = message.arguments().first().value(); - QList groupeDevices; - groupeDevices = qdbus_cast >(argument); - foreach (const QStringList &list, groupeDevices) { + const auto argument = message.arguments().first().value(); + const auto groupeDevices = qdbus_cast >(argument); + for (const QStringList &list : groupeDevices) { if (list.isEmpty()) { continue; } - QString uri = list.first(); - MapSS device = m_mappedDevices[uri]; + const QString uri = list.first(); + const MapSS device = m_mappedDevices[uri]; insertDevice(device[KCUPS_DEVICE_CLASS], device[KCUPS_DEVICE_ID], device[KCUPS_DEVICE_INFO], @@ -348,7 +347,7 @@ { MapSMapSS::const_iterator i = m_mappedDevices.constBegin(); while (i != m_mappedDevices.constEnd()) { - MapSS device = i.value(); + const MapSS device = i.value(); insertDevice(device[KCUPS_DEVICE_CLASS], device[KCUPS_DEVICE_ID], device[KCUPS_DEVICE_INFO], @@ -359,24 +358,36 @@ } } -QStandardItem* DevicesModel::findCreateCategory(const QString &category) +QStandardItem* DevicesModel::findCreateCategory(const QString &category, Kind kind) { for (int i = 0; i < rowCount(); ++i) { QStandardItem *catItem = item(i); - if (catItem->text() == category) { + if (catItem->data(Qt::UserRole).toInt() == kind) { return catItem; } } - QStandardItem *catItem = new QStandardItem(category); + int pos = 0; + for (int i = 0; i < rowCount(); ++i, ++pos) { + QStandardItem *catItem = item(i); + if (catItem->data(Qt::UserRole).toInt() > kind) { + pos = i; + break; + } + } + + auto catItem = new QStandardItem(category); QFont font = catItem->font(); font.setBold(true); catItem->setFont(font); + catItem->setData(kind, Qt::UserRole); catItem->setFlags(Qt::ItemIsEnabled); - appendRow(catItem); + insertRow(pos, catItem); // Emit the parent so the view expand the item emit parentAdded(indexFromItem(catItem)); return catItem; } + +#include "moc_DevicesModel.cpp" diff -Nru print-manager-17.12.3/add-printer/DevicesModel.h print-manager-18.04.3/add-printer/DevicesModel.h --- print-manager-17.12.3/add-printer/DevicesModel.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/DevicesModel.h 2018-03-17 21:16:53.000000000 +0000 @@ -33,7 +33,6 @@ class DevicesModel : public QStandardItemModel { Q_OBJECT - Q_ENUMS(Role) public: enum Role { DeviceClass = Qt::UserRole + 2, @@ -44,13 +43,15 @@ DeviceUris, DeviceLocation }; + Q_ENUM(Role) enum Kind { + Other, Local, Networked, - OtherNetworked, - Other + OtherNetworked }; + Q_ENUM(Kind) explicit DevicesModel(QObject *parent = 0); @@ -96,7 +97,7 @@ void groupedDevicesFallback(); private: - QStandardItem *findCreateCategory(const QString &category); + QStandardItem *findCreateCategory(const QString &category, Kind kind); KCupsRequest *m_request; MapSMapSS m_mappedDevices; diff -Nru print-manager-17.12.3/add-printer/GenericPage.cpp print-manager-18.04.3/add-printer/GenericPage.cpp --- print-manager-17.12.3/add-printer/GenericPage.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/GenericPage.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -49,3 +49,5 @@ { m_args = args; } + +#include "moc_GenericPage.cpp" diff -Nru print-manager-17.12.3/add-printer/GenericPage.h print-manager-18.04.3/add-printer/GenericPage.h --- print-manager-17.12.3/add-printer/GenericPage.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/GenericPage.h 2018-03-17 21:16:53.000000000 +0000 @@ -25,9 +25,9 @@ #include #include -#define ADDING_PRINTER "add-new-printer" -#define PPD_NAME "ppd-name" -#define FILENAME "filename" +#define ADDING_PRINTER QLatin1String("add-new-printer") +#define PPD_NAME QLatin1String("ppd-name") +#define FILENAME QLatin1String("filename") class GenericPage : public QWidget { diff -Nru print-manager-17.12.3/add-printer/main.cpp print-manager-18.04.3/add-printer/main.cpp --- print-manager-17.12.3/add-printer/main.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/main.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -24,24 +24,27 @@ #include #include -#include + +#include #include #include +Q_LOGGING_CATEGORY(PM_ADD_PRINTER, "pm.add.printer") + int main(int argc, char **argv) { AddPrinter app(argc, argv); - app.setOrganizationDomain("org.kde"); + app.setOrganizationDomain(QLatin1String("org.kde")); - KAboutData about("kde-add-printer", + KAboutData about(QLatin1String("kde-add-printer"), i18n("Add Printer"), - PM_VERSION, + QLatin1String(PM_VERSION), i18n("Tool for adding new printers"), KAboutLicense::GPL, - i18n("(C) 2010-2013 Daniel Nicoletti")); + i18n("(C) 2010-2018 Daniel Nicoletti")); - about.addAuthor(i18n("Daniel Nicoletti"), QString(), "dantti12@gmail.com"); + about.addAuthor(QLatin1String("Daniel Nicoletti"), QString(), QLatin1String("dantti12@gmail.com")); about.addAuthor(QStringLiteral("Lukáš Tinkl"), i18n("Port to Qt 5 / Plasma 5"), QStringLiteral("ltinkl@redhat.com")); KAboutData::setApplicationData(about); @@ -49,29 +52,39 @@ about.setupCommandLine(&parser); parser.addVersionOption(); parser.addHelpOption(); - parser.addOption(QCommandLineOption({"w", "parent-window"}, i18n("Parent Window ID"), "wid")); - parser.addOption(QCommandLineOption("add-printer", i18n("Add a new printer"))); - parser.addOption(QCommandLineOption("add-class", i18n("Add a new printer class"))); - parser.addOption(QCommandLineOption("change-ppd", i18n("Changes the PPD of a given printer"), "printer-name")); - parser.addOption(QCommandLineOption("new-printer-from-device", i18n("Changes the PPD of a given printer/deviceid"), - "printername/deviceid")); + + QCommandLineOption parentWindowOpt({QLatin1String("w"), QLatin1String("parent-window")}, i18n("Parent Window ID"), QLatin1String("wid")); + parser.addOption(parentWindowOpt); + + QCommandLineOption addPrinterOpt(QLatin1String("add-printer"), i18n("Add a new printer")); + parser.addOption(addPrinterOpt); + + QCommandLineOption addClassOpt(QLatin1String("add-class"), i18n("Add a new printer class")); + parser.addOption(addClassOpt); + + QCommandLineOption changePpdOpt(QLatin1String("change-ppd"), i18n("Changes the PPD of a given printer"), QLatin1String("printer-name")); + parser.addOption(changePpdOpt); + + QCommandLineOption newPrinterDevOpt(QLatin1String("new-printer-from-device"), i18n("Changes the PPD of a given printer/deviceid"), + QLatin1String("printername/deviceid")); + parser.addOption(newPrinterDevOpt); parser.process(app); about.processCommandLine(&parser); qulonglong wid = 0; - if (parser.isSet("w")) { - wid = parser.value("parent-window").toULongLong(); + if (parser.isSet(parentWindowOpt)) { + wid = parser.value(parentWindowOpt).toULongLong(); } - if (parser.isSet("add-printer")) { + if (parser.isSet(addPrinterOpt)) { app.addPrinter(wid); - } else if (parser.isSet("add-class")) { + } else if (parser.isSet(addClassOpt)) { app.addClass(wid); - } else if (parser.isSet("change-ppd")) { - app.changePPD(wid, parser.value("change-ppd")); - } else if (parser.isSet("new-printer-from-device")) { - const QString value = parser.value("new-printer-from-device"); + } else if (parser.isSet(changePpdOpt)) { + app.changePPD(wid, parser.value(changePpdOpt)); + } else if (parser.isSet(newPrinterDevOpt)) { + const QString value = parser.value(newPrinterDevOpt); const QStringList values = value.split(QLatin1String("/")); if (values.size() == 2) { app.newPrinterFromDevice(wid, values.first(), values.last()); diff -Nru print-manager-17.12.3/add-printer/org.kde.AddPrinter.desktop print-manager-18.04.3/add-printer/org.kde.AddPrinter.desktop --- print-manager-17.12.3/add-printer/org.kde.AddPrinter.desktop 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/org.kde.AddPrinter.desktop 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ -[Desktop Entry] -Name=Add Printer -Name[ar]=أضف طابعة -Name[ca]=Afegeix una impressora -Name[ca@valencia]=Afig una impressora -Name[cs]=Přidat tiskárnu -Name[da]=Tilføj printer -Name[de]=Drucker hinzufügen -Name[el]=Προσθήκη εκτυπωτή -Name[en_GB]=Add Printer -Name[es]=Añadir Impresora -Name[et]=Printeri lisamine -Name[eu]=Gehitu inprimagailua -Name[fi]=Lisää tulostin -Name[fr]=Ajouter une imprimante -Name[gl]=Engadir unha impresora -Name[hu]=Nyomtató hozzáadása -Name[ia]=Adde imprimitor -Name[it]=Aggiungi stampante -Name[ko]=프린터 추가 -Name[nl]=Printer toevoegen -Name[nn]=Legg til skrivar -Name[pl]=Dodaj drukarkę -Name[pt]=Adicionar uma Impressora -Name[pt_BR]=Adicionar impressora -Name[ru]=Добавление принтера -Name[sk]=Pridať tlačiareň -Name[sl]=Dodaj tiskalnik -Name[sr]=Додавање штампача -Name[sr@ijekavian]=Додавање штампача -Name[sr@ijekavianlatin]=Dodavanje štampača -Name[sr@latin]=Dodavanje štampača -Name[sv]=Lägg till skrivare -Name[tr]=Yazıcı Ekle -Name[uk]=Додати принтер -Name[x-test]=xxAdd Printerxx -Name[zh_CN]=添加打印机 -Name[zh_TW]=新增印表機 -Comment=Tool for adding new printers -Comment[ar]=أداة لإضافة طابعات جديدة -Comment[ca]=Eina per afegir impressores noves -Comment[ca@valencia]=Eina per afegir impressores noves -Comment[cs]=Nástroj pro přidávání nových tiskáren -Comment[da]=Værktøj til at tilføje nye printere -Comment[de]=Hilfsprogramm für das Hinzufügen von neuen Druckern -Comment[el]=Εργαλείο για την προσθήκη νέων εκτυπωτών -Comment[en_GB]=Tool for adding new printers -Comment[es]=Herramienta para añadir nuevas impresoras -Comment[et]=Uute printerite lisamine tööriist -Comment[eu]=Inprimagailu berriak gehitzeko tresna -Comment[fi]=Työkalu uusien tulostinten lisäämiseen -Comment[fr]=Outil pour ajouter de nouvelles imprimantes -Comment[gl]=Ferramenta para engadir novas impresoras. -Comment[hu]=Segédprogram új nyomtatók hozzáadáshoz -Comment[ia]=Instrumento pro adder nome imprimitores -Comment[it]=Strumento per aggiungere nuove stampanti -Comment[ko]=새 프린터 추가 도구 -Comment[nl]=Hulpmiddel voor het toevoegen van nieuwe printers -Comment[nn]=Verktøy for å leggja til nye skrivarar -Comment[pl]=Narzędzie do dodawania nowych drukarek -Comment[pt]=Ferramenta para adicionar novas impressoras -Comment[pt_BR]=Ferramenta para adicionar novas impressoras -Comment[ru]=Инструмент для добавления новых принтеров -Comment[sk]=Nástroj na pridanie nových tlačiarní -Comment[sl]=Orodje za dodajanje novih tiskalnikov -Comment[sr]=Алатка за додавање нових штампача -Comment[sr@ijekavian]=Алатка за додавање нових штампача -Comment[sr@ijekavianlatin]=Alatka za dodavanje novih štampača -Comment[sr@latin]=Alatka za dodavanje novih štampača -Comment[sv]=Verktyg för att lägga till nya skrivare -Comment[tr]=Yeni yazıcıları eklemek için bir araç -Comment[uk]=Інструмент для додавання нових записів принтерів -Comment[x-test]=xxTool for adding new printersxx -Comment[zh_CN]=添加新打印机的工具 -Comment[zh_TW]=新增印表機工具 -Exec=kde-add-printer -Icon=printer -Type=Application -Terminal=false -NoDisplay=true -Categories=Qt;KDE;Printing;Utility; diff -Nru print-manager-17.12.3/add-printer/org.kde.kde-add-printer.desktop print-manager-18.04.3/add-printer/org.kde.kde-add-printer.desktop --- print-manager-17.12.3/add-printer/org.kde.kde-add-printer.desktop 1970-01-01 00:00:00.000000000 +0000 +++ print-manager-18.04.3/add-printer/org.kde.kde-add-printer.desktop 2018-03-17 21:16:53.000000000 +0000 @@ -0,0 +1,81 @@ +[Desktop Entry] +Name=Add Printer +Name[ar]=أضف طابعة +Name[ca]=Afegeix una impressora +Name[ca@valencia]=Afig una impressora +Name[cs]=Přidat tiskárnu +Name[da]=Tilføj printer +Name[de]=Drucker hinzufügen +Name[el]=Προσθήκη εκτυπωτή +Name[en_GB]=Add Printer +Name[es]=Añadir Impresora +Name[et]=Printeri lisamine +Name[eu]=Gehitu inprimagailua +Name[fi]=Lisää tulostin +Name[fr]=Ajouter une imprimante +Name[gl]=Engadir unha impresora +Name[hu]=Nyomtató hozzáadása +Name[ia]=Adde imprimitor +Name[it]=Aggiungi stampante +Name[ko]=프린터 추가 +Name[nl]=Printer toevoegen +Name[nn]=Legg til skrivar +Name[pl]=Dodaj drukarkę +Name[pt]=Adicionar uma Impressora +Name[pt_BR]=Adicionar impressora +Name[ru]=Добавление принтера +Name[sk]=Pridať tlačiareň +Name[sl]=Dodaj tiskalnik +Name[sr]=Додавање штампача +Name[sr@ijekavian]=Додавање штампача +Name[sr@ijekavianlatin]=Dodavanje štampača +Name[sr@latin]=Dodavanje štampača +Name[sv]=Lägg till skrivare +Name[tr]=Yazıcı Ekle +Name[uk]=Додати принтер +Name[x-test]=xxAdd Printerxx +Name[zh_CN]=添加打印机 +Name[zh_TW]=新增印表機 +Comment=Tool for adding new printers +Comment[ar]=أداة لإضافة طابعات جديدة +Comment[ca]=Eina per afegir impressores noves +Comment[ca@valencia]=Eina per afegir impressores noves +Comment[cs]=Nástroj pro přidávání nových tiskáren +Comment[da]=Værktøj til at tilføje nye printere +Comment[de]=Hilfsprogramm für das Hinzufügen von neuen Druckern +Comment[el]=Εργαλείο για την προσθήκη νέων εκτυπωτών +Comment[en_GB]=Tool for adding new printers +Comment[es]=Herramienta para añadir nuevas impresoras +Comment[et]=Uute printerite lisamine tööriist +Comment[eu]=Inprimagailu berriak gehitzeko tresna +Comment[fi]=Työkalu uusien tulostinten lisäämiseen +Comment[fr]=Outil pour ajouter de nouvelles imprimantes +Comment[gl]=Ferramenta para engadir novas impresoras. +Comment[hu]=Segédprogram új nyomtatók hozzáadáshoz +Comment[ia]=Instrumento pro adder nome imprimitores +Comment[it]=Strumento per aggiungere nuove stampanti +Comment[ko]=새 프린터 추가 도구 +Comment[nl]=Hulpmiddel voor het toevoegen van nieuwe printers +Comment[nn]=Verktøy for å leggja til nye skrivarar +Comment[pl]=Narzędzie do dodawania nowych drukarek +Comment[pt]=Ferramenta para adicionar novas impressoras +Comment[pt_BR]=Ferramenta para adicionar novas impressoras +Comment[ru]=Инструмент для добавления новых принтеров +Comment[sk]=Nástroj na pridanie nových tlačiarní +Comment[sl]=Orodje za dodajanje novih tiskalnikov +Comment[sr]=Алатка за додавање нових штампача +Comment[sr@ijekavian]=Алатка за додавање нових штампача +Comment[sr@ijekavianlatin]=Alatka za dodavanje novih štampača +Comment[sr@latin]=Alatka za dodavanje novih štampača +Comment[sv]=Verktyg för att lägga till nya skrivare +Comment[tr]=Yeni yazıcıları eklemek için bir araç +Comment[uk]=Інструмент для додавання нових записів принтерів +Comment[x-test]=xxTool for adding new printersxx +Comment[zh_CN]=添加新打印机的工具 +Comment[zh_TW]=新增印表機工具 +Exec=kde-add-printer +Icon=printer +Type=Application +Terminal=false +NoDisplay=true +Categories=Qt;KDE;Printing;Utility; diff -Nru print-manager-17.12.3/add-printer/PageAddPrinter.cpp print-manager-18.04.3/add-printer/PageAddPrinter.cpp --- print-manager-17.12.3/add-printer/PageAddPrinter.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/PageAddPrinter.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -25,6 +25,7 @@ #include #include +#include #include #include @@ -40,14 +41,14 @@ setWindowTitle(i18nc("@title:window", "Select a Printer to Add")); // loads the standard key icon QPixmap pixmap; - pixmap = KIconLoader::global()->loadIcon("printer", + pixmap = KIconLoader::global()->loadIcon(QLatin1String("printer"), KIconLoader::NoGroup, KIconLoader::SizeEnormous, // a not so huge icon KIconLoader::DefaultState); QPixmap icon(pixmap); QPainter painter(&icon); - pixmap = KIconLoader::global()->loadIcon("dialog-information", + pixmap = KIconLoader::global()->loadIcon(QLatin1String("dialog-information"), KIconLoader::NoGroup, KIconLoader::SizeLarge, // a not so huge icon KIconLoader::DefaultState); @@ -61,11 +62,12 @@ ui->printerL->setPixmap(icon); // May contain any printable characters except "/", "#", and space - QRegExp rx("[^/#\\ ]*"); - QValidator *validator = new QRegExpValidator(rx, this); + QRegExp rx(QLatin1String("[^/#\\ ]*")); + auto validator = new QRegExpValidator(rx, this); ui->nameLE->setValidator(validator); // Hide the message widget + ui->messageWidget->setWordWrap(true); ui->messageWidget->setMessageType(KMessageWidget::Error); ui->messageWidget->hide(); } @@ -174,3 +176,5 @@ { // emit allowProceed(!devicesLV->selectionModel()->selection().isEmpty()); } + +#include "moc_PageAddPrinter.cpp" diff -Nru print-manager-17.12.3/add-printer/PageChoosePPD.cpp print-manager-18.04.3/add-printer/PageChoosePPD.cpp --- print-manager-17.12.3/add-printer/PageChoosePPD.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/PageChoosePPD.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -28,15 +28,13 @@ #include #include -#include #include #include #include PageChoosePPD::PageChoosePPD(const QVariantHash &args, QWidget *parent) : GenericPage(parent), - ui(new Ui::PageChoosePPD), - m_isValid(false) + ui(new Ui::PageChoosePPD) { ui->setupUi(this); setAttribute(Qt::WA_DeleteOnClose); @@ -82,12 +80,12 @@ QString deviceURI = args[KCUPS_DEVICE_URI].toString(); // If - QUrl url(deviceURI % QStringLiteral(".ppd")); - if (url.scheme() == QStringLiteral("ipp")) { - QTemporaryFile *tempFile = new QTemporaryFile; - tempFile->setFileTemplate(QStringLiteral("print-manager-XXXXXX.ppd")); + QUrl url(deviceURI + QLatin1String(".ppd")); + if (url.scheme() == QLatin1String("ipp")) { + auto tempFile = new QTemporaryFile; + tempFile->setFileTemplate(QLatin1String("print-manager-XXXXXX.ppd")); tempFile->open(); - url.setScheme(QStringLiteral("http")); + url.setScheme(QLatin1String("http")); if (url.port() < 0) { url.setPort(631); } @@ -101,8 +99,8 @@ } // Get the make from the device id - foreach (const QString &pair, deviceId.split(QLatin1Char(';'))) { - if (pair.startsWith(QStringLiteral("MFG:"))) { + for (const QString &pair : deviceId.split(QLatin1Char(';'))) { + if (pair.startsWith(QLatin1String("MFG:"))) { make = pair.section(QLatin1Char(':'), 1); break; } @@ -110,13 +108,13 @@ if (makeAndModel.isEmpty()) { // Get the model from the device id - foreach (const QString &pair, deviceId.split(QLatin1Char(';'))) { - if (pair.startsWith(QStringLiteral("MDL:"))) { + for (const QString &pair : deviceId.split(QLatin1Char(';'))) { + if (pair.startsWith(QLatin1String("MDL:"))) { // Build the make and model string if (make.isNull()) { makeAndModel = pair.section(QLatin1Char(':'), 1); } else { - makeAndModel = make % QLatin1Char(' ') % pair.section(QLatin1Char(':'), 1); + makeAndModel = make + QLatin1Char(' ') + pair.section(QLatin1Char(':'), 1); } break; } @@ -189,7 +187,7 @@ void PageChoosePPD::resultJob(KJob *job) { if (!job->error() && job->property("URI").toString() == m_args[KCUPS_DEVICE_URI].toString()) { - KIO::FileCopyJob *fileCopyJob = qobject_cast(job); + auto fileCopyJob = qobject_cast(job); // Make sure this job is for the current device m_ppdFile = fileCopyJob->destUrl().toLocalFile(); @@ -205,3 +203,5 @@ m_ppdFile.clear(); } } + +#include "moc_PageChoosePPD.cpp" diff -Nru print-manager-17.12.3/add-printer/PageChoosePPD.h print-manager-18.04.3/add-printer/PageChoosePPD.h --- print-manager-17.12.3/add-printer/PageChoosePPD.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/PageChoosePPD.h 2018-03-17 21:16:53.000000000 +0000 @@ -53,7 +53,7 @@ void removeTempPPD(); Ui::PageChoosePPD *ui; - bool m_isValid; + bool m_isValid = false; SelectMakeModel *m_selectMM; QStackedLayout *m_layout; QString m_ppdFile; diff -Nru print-manager-17.12.3/add-printer/PageChoosePrinters.cpp print-manager-18.04.3/add-printer/PageChoosePrinters.cpp --- print-manager-17.12.3/add-printer/PageChoosePrinters.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/PageChoosePrinters.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -39,14 +39,14 @@ setWindowTitle(i18nc("@title:window", "Select a Printer to Add")); // loads the standard key icon QPixmap pixmap; - pixmap = KIconLoader::global()->loadIcon("printer", + pixmap = KIconLoader::global()->loadIcon(QLatin1String("printer"), KIconLoader::NoGroup, KIconLoader::SizeEnormous, // a not so huge icon KIconLoader::DefaultState); QPixmap icon(pixmap); QPainter painter(&icon); - pixmap = KIconLoader::global()->loadIcon("preferences-other", + pixmap = KIconLoader::global()->loadIcon(QLatin1String("preferences-other"), KIconLoader::NoGroup, KIconLoader::SizeLarge, // a not so huge icon KIconLoader::DefaultState); @@ -59,8 +59,8 @@ painter.drawPixmap(startPoint, pixmap); ui->printerL->setPixmap(icon); - connect(ui->membersLV, SIGNAL(changed(bool)), - this, SIGNAL(allowProceed(bool))); + connect(ui->membersLV, static_cast(&ClassListWidget::changed), + this, &PageChoosePrinters::allowProceed); if (!args.isEmpty()) { setValues(args); @@ -90,3 +90,5 @@ { return ui->membersLV->selectedPrinters().count() > 0; } + +#include "moc_PageChoosePrinters.cpp" diff -Nru print-manager-17.12.3/add-printer/PageDestinations.cpp print-manager-18.04.3/add-printer/PageDestinations.cpp --- print-manager-17.12.3/add-printer/PageDestinations.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/add-printer/PageDestinations.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -33,7 +33,6 @@ #include #include -#include #include // system-config-printer --setup-printer='file:/tmp/printout' --devid='MFG:Ricoh;MDL:Aficio SP C820DN' @@ -82,6 +81,7 @@ ui->stackedWidget->addWidget(m_chooseLabel); // Hide the message widget + ui->messageWidget->setWordWrap(true); ui->messageWidget->setMessageType(KMessageWidget::Error); ui->messageWidget->hide(); @@ -90,8 +90,7 @@ m_model = new DevicesModel(this); ui->devicesTV->setModel(m_model); ui->devicesTV->setItemDelegate(new NoSelectionRectDelegate(this)); - connect(ui->devicesTV->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), - this, SLOT(deviceChanged())); + connect(ui->devicesTV->selectionModel(), &QItemSelectionModel::selectionChanged, this, &PageDestinations::deviceChanged); connect(m_model, &DevicesModel::errorMessage, ui->messageWidget, &KMessageWidget::setText); connect(m_model, &DevicesModel::errorMessage, ui->messageWidget, &KMessageWidget::animatedShow); @@ -137,7 +136,7 @@ QVariantHash PageDestinations::values() const { QVariantHash ret = m_args; - GenericPage *page = qobject_cast(ui->stackedWidget->currentWidget()); + auto page = qobject_cast(ui->stackedWidget->currentWidget()); if (page) { ret = page->values(); } else if (canProceed()) { @@ -150,7 +149,7 @@ { bool ret = ui->stackedWidget->currentIndex() != 0; - GenericPage *page = qobject_cast(ui->stackedWidget->currentWidget()); + auto page = qobject_cast(ui->stackedWidget->currentWidget()); if (page) { ret = page->canProceed(); } @@ -169,13 +168,14 @@ ui->connectionsGB->setVisible(false); } else if (uris.type() == QVariant::StringList) { ui->connectionsCB->clear(); - foreach (const QString &uri, uris.toStringList()) { + for (const QString &uri : uris.toStringList()) { ui->connectionsCB->addItem(uriText(uri), uri); } ui->connectionsGB->setVisible(true); } else { ui->connectionsCB->clear(); - foreach (const KCupsPrinter &printer, uris.value()) { + const auto printers = uris.value(); + for (const KCupsPrinter &printer : printers) { ui->connectionsCB->addItem(printer.name(), qVariantFromValue(printer)); } ui->connectionsGB->setVisible(true); @@ -302,7 +302,7 @@ QVariant aux = ui->connectionsCB->itemData(ui->connectionsCB->currentIndex()); KCupsPrinter printer = aux.value(); QUrl url(uri.toString()); - url.setPath(QLatin1String("printers/") % printer.name()); + url.setPath(QLatin1String("printers/") + printer.name()); ret[KCUPS_DEVICE_URI] = url.url(); ret[KCUPS_DEVICE_ID] = index.data(DevicesModel::DeviceId); ret[KCUPS_PRINTER_INFO] = printer.info(); @@ -317,7 +317,7 @@ void PageDestinations::setCurrentPage(QWidget *widget, const QVariantHash &args) { - GenericPage *page = qobject_cast(widget); + auto page = qobject_cast(widget); if (page) { page->setValues(args); if (ui->stackedWidget->currentWidget() != page) {; @@ -359,7 +359,7 @@ ret = i18n("AppSocket/HP JetDirect"); } else if (uri.startsWith(QLatin1String("lpd"))) { // Check if the queue name is defined - QString queue = uri.section(QLatin1Char('/'), -1, -1); + const QString queue = uri.section(QLatin1Char('/'), -1, -1); if (queue.isEmpty()) { ret = i18n("LPD/LPR queue"); } else { @@ -369,7 +369,7 @@ ret = i18n("Windows Printer via SAMBA"); } else if (uri.startsWith(QLatin1String("ipp"))) { // Check if the queue name (fileName) is defined - QString queue = uri.section(QLatin1Char('/'), -1, -1); + const QString queue = uri.section(QLatin1Char('/'), -1, -1); if (queue.isEmpty()) { ret = i18n("IPP"); } else { @@ -399,3 +399,5 @@ } return ret; } + +#include "moc_PageDestinations.cpp" diff -Nru print-manager-17.12.3/CMakeLists.txt print-manager-18.04.3/CMakeLists.txt --- print-manager-17.12.3/CMakeLists.txt 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/CMakeLists.txt 2018-07-10 00:08:11.000000000 +0000 @@ -1,11 +1,11 @@ -project(print-manager) +cmake_minimum_required(VERSION 3.1) +cmake_policy(SET CMP0048 NEW) + +project(print-manager VERSION 0.5.0) cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR) set(QT_MIN_VERSION "5.3.0") -# Print-Manager version -set(PM_VERSION "0.3.0" CACHE STRING "Print Manager version") - ################# set KDE specific information ################# find_package(ECM 1.3.0 REQUIRED NO_MODULE) @@ -33,11 +33,16 @@ find_package(KF5 REQUIRED Config ConfigWidgets CoreAddons DBusAddons IconThemes I18n KCMUtils KIO Notifications Plasma WidgetsAddons WindowSystem) -add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0) -add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS) -add_definitions(-DQT_NO_URL_CAST_FROM_STRING) +add_definitions( + -DQT_DISABLE_DEPRECATED_BEFORE=0x050900 + -DQT_USE_FAST_CONCATENATION + -DQT_USE_FAST_OPERATOR_PLUS + -DQT_NO_URL_CAST_FROM_STRING + -DQT_NO_CAST_FROM_BYTEARRAY + -DQT_NO_CAST_FROM_ASCII +) -remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_FROM_BYTEARRAY -DQT_NO_KEYWORDS) +remove_definitions(-DQT_NO_KEYWORDS) # Generate config.h configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake diff -Nru print-manager-17.12.3/config.h.cmake print-manager-18.04.3/config.h.cmake --- print-manager-17.12.3/config.h.cmake 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/config.h.cmake 2018-03-17 21:16:53.000000000 +0000 @@ -2,6 +2,7 @@ #define CONFIG_H // Define the app-install database path. -#cmakedefine PM_VERSION "@PM_VERSION@" +#define PM_VERSION "@PROJECT_VERSION@" + #endif //CONFIG_H diff -Nru print-manager-17.12.3/configure-printer/ConfigureDialog.cpp print-manager-18.04.3/configure-printer/ConfigureDialog.cpp --- print-manager-17.12.3/configure-printer/ConfigureDialog.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/ConfigureDialog.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -47,7 +47,7 @@ setModal(false); setStandardButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel | QDialogButtonBox::Apply); setWindowTitle(destName); - setWindowIcon(QIcon::fromTheme("configure")); + setWindowIcon(QIcon::fromTheme(QLatin1String("configure"))); enableButtonApply(false); // Needed so we have our dialog size saved setAttribute(Qt::WA_DeleteOnClose); @@ -56,7 +56,7 @@ KPageWidgetItem *page; modifyPrinter = new ModifyPrinter(destName, isClass, this); - PrinterBehavior *printerBehavior = new PrinterBehavior(destName, isClass, this); + auto printerBehavior = new PrinterBehavior(destName, isClass, this); attr << modifyPrinter->neededValues(); attr << printerBehavior->neededValues(); attr << KCUPS_PRINTER_TYPE; // needed to know if it's a remote printer @@ -101,9 +101,9 @@ modifyPrinter->setValues(printer); page = new KPageWidgetItem(modifyPrinter, i18n("Modify Printer")); page->setHeader(i18n("Configure")); - page->setIcon(QIcon::fromTheme("dialog-information")); + page->setIcon(QIcon::fromTheme(QLatin1String("dialog-information"))); // CONNECT this signal ONLY to the first Page - connect(modifyPrinter, SIGNAL(changed(bool)), this, SLOT(enableButtonApply(bool))); + connect(modifyPrinter, &ModifyPrinter::changed, this, &ConfigureDialog::enableButtonApply); addPage(page); if (!isClass) { @@ -112,9 +112,9 @@ printerOptions = new PrinterOptions(destName, isClass, isRemote, this); page = new KPageWidgetItem(printerOptions, i18n("Printer Options")); page->setHeader(i18n("Set the Default Printer Options")); - page->setIcon(QIcon::fromTheme("view-pim-tasks")); + page->setIcon(QIcon::fromTheme(QLatin1String("view-pim-tasks"))); addPage(page); - connect(modifyPrinter, SIGNAL(ppdChanged()), this, SLOT(ppdChanged())); + connect(modifyPrinter, &ModifyPrinter::ppdChanged, this, &ConfigureDialog::ppdChanged); modifyPrinter->setCurrentMake(printerOptions->currentMake()); modifyPrinter->setCurrentMakeAndModel(printerOptions->currentMakeAndModel()); } @@ -123,17 +123,16 @@ printerBehavior->setValues(printer); page = new KPageWidgetItem(printerBehavior, i18n("Banners, Policies and Allowed Users")); page->setHeader(i18n("Banners, Policies and Allowed Users")); - page->setIcon(QIcon::fromTheme("feed-subscribe")); + page->setIcon(QIcon::fromTheme(QLatin1String("feed-subscribe"))); addPage(page); // connect this after ALL pages were added, otherwise the slot will be called - connect(this, SIGNAL(currentPageChanged(KPageWidgetItem*,KPageWidgetItem*)), - SLOT(currentPageChanged(KPageWidgetItem*,KPageWidgetItem*))); + connect(this, &ConfigureDialog::currentPageChanged, this, &ConfigureDialog::currentPageChangedSlot); - KConfigGroup group(KSharedConfig::openConfig("print-manager"), "ConfigureDialog"); + KConfigGroup group(KSharedConfig::openConfig(QLatin1String("print-manager")), "ConfigureDialog"); KWindowConfig::restoreWindowSize(windowHandle(), group); - connect(buttonBox(), SIGNAL(clicked(QAbstractButton*)), this, SLOT(slotButtonClicked(QAbstractButton*))); + connect(buttonBox(), &QDialogButtonBox::clicked, this, &ConfigureDialog::slotButtonClicked); } void ConfigureDialog::ppdChanged() @@ -145,34 +144,36 @@ ConfigureDialog::~ConfigureDialog() { - KConfigGroup group(KSharedConfig::openConfig("print-manager"), "ConfigureDialog"); + KConfigGroup group(KSharedConfig::openConfig(QLatin1String("print-manager")), "ConfigureDialog"); KWindowConfig::saveWindowSize(windowHandle(), group); } -void ConfigureDialog::currentPageChanged(KPageWidgetItem *current, KPageWidgetItem *before) +void ConfigureDialog::currentPageChangedSlot(KPageWidgetItem *current, KPageWidgetItem *before) { - PrinterPage *currentPage = qobject_cast(current->widget()); - PrinterPage *beforePage = qobject_cast(before->widget()); + auto currentPage = qobject_cast(current->widget()); + auto beforePage = qobject_cast(before->widget()); + qCDebug(PM_CONFIGURE_PRINTER) << "currentPageChanged" << beforePage << currentPage; // Check if the before page has changes savePage(beforePage); if (beforePage) { - disconnect(beforePage, SIGNAL(changed(bool)), this, SLOT(enableButtonApply(bool))); + disconnect(beforePage, &PrinterPage::changed, this, &ConfigureDialog::enableButtonApply); } // connect the changed signal to the new page and check if it has changes - connect(currentPage, SIGNAL(changed(bool)), this, SLOT(enableButtonApply(bool))); + connect(currentPage, &PrinterPage::changed, this, &ConfigureDialog::enableButtonApply); enableButtonApply(currentPage->hasChanges()); } void ConfigureDialog::enableButtonApply(bool enable) { + qDebug() << Q_FUNC_INFO << enable << sender(); button(QDialogButtonBox::QDialogButtonBox::Apply)->setEnabled(enable); } void ConfigureDialog::slotButtonClicked(QAbstractButton * pressedButton) { - PrinterPage *page = qobject_cast(currentPage()->widget()); + auto page = qobject_cast(currentPage()->widget()); if (pressedButton == button(QDialogButtonBox::Ok) || pressedButton == button(QDialogButtonBox::Apply)) { page->save(); @@ -181,7 +182,7 @@ void ConfigureDialog::closeEvent(QCloseEvent *event) { - PrinterPage *page = qobject_cast(currentPage()->widget()); + auto page = qobject_cast(currentPage()->widget()); if (savePage(page)) { event->accept(); } else { @@ -204,3 +205,5 @@ } return true; } + +#include "moc_ConfigureDialog.cpp" diff -Nru print-manager-17.12.3/configure-printer/ConfigureDialog.h print-manager-18.04.3/configure-printer/ConfigureDialog.h --- print-manager-17.12.3/configure-printer/ConfigureDialog.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/ConfigureDialog.h 2018-03-17 21:16:53.000000000 +0000 @@ -36,13 +36,12 @@ explicit ConfigureDialog(const QString &destName, bool isClass, QWidget *parent = 0); ~ConfigureDialog(); -private slots: - void currentPageChanged(KPageWidgetItem *current, KPageWidgetItem *before); +private: + void currentPageChangedSlot(KPageWidgetItem *current, KPageWidgetItem *before); void enableButtonApply(bool enable); void slotButtonClicked(QAbstractButton * pressedButton); void ppdChanged(); -private: ModifyPrinter *modifyPrinter; PrinterOptions *printerOptions; void closeEvent(QCloseEvent *event) Q_DECL_OVERRIDE; diff -Nru print-manager-17.12.3/configure-printer/ConfigurePrinter.cpp print-manager-18.04.3/configure-printer/ConfigurePrinter.cpp --- print-manager-17.12.3/configure-printer/ConfigurePrinter.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/ConfigurePrinter.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -33,16 +33,18 @@ void ConfigurePrinter::configurePrinter(const QString& printer) { m_cpInterface = new ConfigurePrinterInterface(this); - connect(m_cpInterface, SIGNAL(quit()), this, SLOT(quit())); + connect(m_cpInterface, &ConfigurePrinterInterface::quit, this, &ConfigurePrinter::quit); if (!printer.isEmpty()) { m_cpInterface->ConfigurePrinter(printer); } else { // If DBus called the ui list won't be empty - QTimer::singleShot(500, m_cpInterface, SLOT(RemovePrinter())); + QTimer::singleShot(500, m_cpInterface, &ConfigurePrinterInterface::RemovePrinter); } } ConfigurePrinter::~ConfigurePrinter() { } + +#include "moc_ConfigurePrinter.cpp" diff -Nru print-manager-17.12.3/configure-printer/ConfigurePrinterInterface.cpp print-manager-18.04.3/configure-printer/ConfigurePrinterInterface.cpp --- print-manager-17.12.3/configure-printer/ConfigurePrinterInterface.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/ConfigurePrinterInterface.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 Daniel Nicoletti * + * Copyright (C) 2010-2018 Daniel Nicoletti * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -36,12 +36,12 @@ { qCDebug(PM_CONFIGURE_PRINTER) << "Creating Helper"; (void) new ConfigurePrinterAdaptor(this); - if (!QDBusConnection::sessionBus().registerService("org.kde.ConfigurePrinter")) { + if (!QDBusConnection::sessionBus().registerService(QLatin1String("org.kde.ConfigurePrinter"))) { qCDebug(PM_CONFIGURE_PRINTER) << "another helper is already running"; return; } - if (!QDBusConnection::sessionBus().registerObject("/", this)) { + if (!QDBusConnection::sessionBus().registerObject(QLatin1String("/"), this)) { qCDebug(PM_CONFIGURE_PRINTER) << "unable to register service interface to dbus"; return; } @@ -62,12 +62,9 @@ // Reserve this since the CUPS call might take a long time m_uis[destName] = 0; - QStringList att; - att << KCUPS_PRINTER_NAME; - att << KCUPS_PRINTER_TYPE; // Get destinations with these attributes QPointer request = new KCupsRequest; - request->getPrinters(att); + request->getPrinters({ KCUPS_PRINTER_NAME, KCUPS_PRINTER_TYPE }); request->waitTillFinished(); if (!request) { return; @@ -75,10 +72,10 @@ bool found = false; KCupsPrinter printer; - KCupsPrinters printers = request->printers(); - for (int i = 0; i < printers.size(); i++) { - if (printers.at(i).name() == destName) { - printer = printers.at(i); + const KCupsPrinters printers = request->printers(); + for (const KCupsPrinter &p : printers) { + if (p.name() == destName) { + printer = p; found = true; break; } @@ -86,11 +83,9 @@ request->deleteLater(); if (found) { - ConfigureDialog *ui = new ConfigureDialog(printer.name(), printer.isClass()); - connect(m_updateUi, SIGNAL(timeout()), - ui, SLOT(update())); - connect(ui, SIGNAL(finished(int)), - this, SLOT(RemovePrinter())); + auto ui = new ConfigureDialog(printer.name(), printer.isClass()); + connect(m_updateUi, &QTimer::timeout, ui, static_cast(&ConfigureDialog::update)); + connect(ui, &ConfigureDialog::finished, this, &ConfigurePrinterInterface::RemovePrinter); ui->show(); m_uis[printer.name()] = ui; } else { @@ -114,7 +109,7 @@ void ConfigurePrinterInterface::RemovePrinter() { - QWidget *ui = qobject_cast(sender()); + auto ui = qobject_cast(sender()); if (ui) { m_uis.remove(m_uis.key(ui)); } @@ -125,3 +120,5 @@ emit quit(); } } + +#include "moc_ConfigurePrinterInterface.cpp" diff -Nru print-manager-17.12.3/configure-printer/main.cpp print-manager-18.04.3/configure-printer/main.cpp --- print-manager-17.12.3/configure-printer/main.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/main.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -28,20 +28,20 @@ #include #include -#include +#include "Debug.h" int main(int argc, char **argv) { ConfigurePrinter app(argc, argv); - app.setOrganizationDomain("org.kde"); + app.setOrganizationDomain(QLatin1String("org.kde")); - KAboutData aboutData("ConfigurePrinter", + KAboutData aboutData(QLatin1String("ConfigurePrinter"), i18n("Configure Printer"), - PM_VERSION, + QLatin1String(PM_VERSION), i18n("ConfigurePrinter"), KAboutLicense::GPL, - i18n("(C) 2010-2013 Daniel Nicoletti")); - aboutData.addAuthor(QStringLiteral("Daniel Nicoletti"), QString(), "dantti12@gmail.com"); + i18n("(C) 2010-2018 Daniel Nicoletti")); + aboutData.addAuthor(QStringLiteral("Daniel Nicoletti"), QString(), QLatin1String("dantti12@gmail.com")); aboutData.addAuthor(QStringLiteral("Jan Grulich"), i18n("Port to Qt 5 / Plasma 5"), QStringLiteral("jgrulich@redhat.com")); KAboutData::setApplicationData(aboutData); @@ -51,7 +51,7 @@ aboutData.setupCommandLine(&parser); parser.addVersionOption(); parser.addHelpOption(); - parser.addPositionalArgument("printer", i18n("Printer to be configured")); + parser.addPositionalArgument(QLatin1String("printer"), i18n("Printer to be configured")); parser.process(app); aboutData.processCommandLine(&parser); @@ -60,8 +60,8 @@ QString printerName = args.at(0); app.configurePrinter(printerName); } else { - qWarning() << "No printer was specified"; - return 1; + qCWarning(PM_CONFIGURE_PRINTER) << "No printer was specified"; + parser.showHelp(1); } return app.exec(); diff -Nru print-manager-17.12.3/configure-printer/ModifyPrinter.cpp print-manager-18.04.3/configure-printer/ModifyPrinter.cpp --- print-manager-17.12.3/configure-printer/ModifyPrinter.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/ModifyPrinter.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -37,8 +37,7 @@ PrinterPage(parent), ui(new Ui::ModifyPrinter), m_destName(destName), - m_isClass(isClass), - m_changes(0) + m_isClass(isClass) { ui->setupUi(this); @@ -54,14 +53,11 @@ ui->membersLV->setPrinter(destName); } - connect(ui->descriptionLE, SIGNAL(textChanged(QString)), - this, SLOT(textChanged(QString))); - connect(ui->locationLE, SIGNAL(textChanged(QString)), - this, SLOT(textChanged(QString))); - connect(ui->connectionLE, SIGNAL(textChanged(QString)), - this, SLOT(textChanged(QString))); - connect(ui->membersLV, SIGNAL(changed(bool)), - this, SLOT(modelChanged())); + connect(ui->descriptionLE, &QLineEdit::textChanged, this, &ModifyPrinter::textChanged); + connect(ui->locationLE, &QLineEdit::textChanged, this, &ModifyPrinter::textChanged); + connect(ui->connectionLE, &QLineEdit::textChanged, this, &ModifyPrinter::textChanged); + connect(ui->membersLV, static_cast(&ClassListWidget::changed), + this, &ModifyPrinter::modelChanged); } ModifyPrinter::~ModifyPrinter() @@ -73,19 +69,19 @@ { bool isDifferent = true; if (ui->makeCB->itemData(index).toUInt() == PPDList) { - SelectMakeModelDialog * dialog = new SelectMakeModelDialog(m_make, m_makeAndModel, this); + auto dialog = new SelectMakeModelDialog(m_make, m_makeAndModel, this); connect(dialog, &SelectMakeModelDialog::accepted, this, &ModifyPrinter::ppdSelectionAccepted); connect(dialog, &SelectMakeModelDialog::rejected, this, &ModifyPrinter::ppdSelectionRejected); dialog->show(); return; } else if (ui->makeCB->itemData(index).toUInt() == PPDFile) { // set the QVariant type to bool makes it possible to know a file was selected - m_changedValues["ppd-name"] = true; + m_changedValues[QLatin1String("ppd-name")] = true; } else if (ui->makeCB->itemData(index).toUInt() == PPDDefault) { isDifferent = false; - m_changedValues.remove("ppd-name"); + m_changedValues.remove(QLatin1String("ppd-name")); } else if (ui->makeCB->itemData(index).toUInt() == PPDCustom) { - m_changedValues["ppd-name"] = ui->makeCB->itemData(index, PPDName).toString(); + m_changedValues[QLatin1String("ppd-name")] = ui->makeCB->itemData(index, PPDName).toString(); } else { qCWarning(PM_CONFIGURE_PRINTER) << "This should not happen"; return; @@ -103,8 +99,8 @@ void ModifyPrinter::ppdSelectionAccepted() { - SelectMakeModelDialog *dialog = qobject_cast(sender()); - SelectMakeModel *widget = qobject_cast(dialog->mainWidget()); + auto dialog = qobject_cast(sender()); + auto widget = qobject_cast(dialog->mainWidget()); if (widget->isFileSelected()) { QString fileName = widget->selectedPPDFileName(); @@ -127,7 +123,7 @@ void ModifyPrinter::ppdSelectionRejected() { - SelectMakeModelDialog *dialog = qobject_cast(sender()); + auto dialog = qobject_cast(sender()); ui->makeCB->setCurrentIndex(ui->makeCB->property("lastIndex").toInt()); dialog->deleteLater(); } @@ -189,7 +185,7 @@ void ModifyPrinter::textChanged(const QString &text) { - QLineEdit *le = qobject_cast(sender()); + auto le = qobject_cast(sender()); bool isDifferent = le->property("orig_text") != text; if (isDifferent != le->property("different").toBool()) { @@ -215,11 +211,11 @@ QVariantHash args = m_changedValues; QString fileName; qCDebug(PM_CONFIGURE_PRINTER) << args; - if (args.contains("ppd-name") && - args["ppd-name"].type() == QVariant::Bool) { + if (args.contains(QLatin1String("ppd-name")) && + args[QLatin1String("ppd-name")].type() == QVariant::Bool) { fileName = ui->makeCB->itemData(ui->makeCB->currentIndex(), PPDFile).toString(); - args.remove("ppd-name"); + args.remove(QLatin1String("ppd-name")); } qCDebug(PM_CONFIGURE_PRINTER) << fileName; @@ -232,7 +228,7 @@ request->waitTillFinished(); if (request) { if (!request->hasError()) { - if (m_changedValues.contains("ppd-name")) { + if (m_changedValues.contains(QLatin1String("ppd-name"))) { emit ppdChanged(); } request->getPrinterAttributes(m_destName, m_isClass, neededValues()); @@ -284,9 +280,10 @@ QStringList ModifyPrinter::neededValues() const { - QStringList ret; - ret << KCUPS_PRINTER_INFO; - ret << KCUPS_PRINTER_LOCATION; + QStringList ret({ + KCUPS_PRINTER_INFO, + KCUPS_PRINTER_LOCATION + }); if (m_isClass) { ret << KCUPS_MEMBER_NAMES; @@ -296,3 +293,5 @@ } return ret; } + +#include "moc_ModifyPrinter.cpp" diff -Nru print-manager-17.12.3/configure-printer/ModifyPrinter.h print-manager-18.04.3/configure-printer/ModifyPrinter.h --- print-manager-17.12.3/configure-printer/ModifyPrinter.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/ModifyPrinter.h 2018-03-17 21:16:53.000000000 +0000 @@ -72,7 +72,7 @@ QString m_destName, m_make, m_makeAndModel; bool m_isClass; QVariantHash m_changedValues; - int m_changes; + int m_changes = 0; }; #endif diff -Nru print-manager-17.12.3/configure-printer/PrinterBehavior.cpp print-manager-18.04.3/configure-printer/PrinterBehavior.cpp --- print-manager-17.12.3/configure-printer/PrinterBehavior.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/PrinterBehavior.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -29,25 +29,22 @@ PrinterPage(parent), ui(new Ui::PrinterBehavior), m_destName(destName), - m_isClass(isClass), - m_changes(0) + m_isClass(isClass) { ui->setupUi(this); - connect(ui->errorPolicyCB, SIGNAL(currentIndexChanged(int)), - this, SLOT(currentIndexChangedCB(int))); - connect(ui->operationPolicyCB, SIGNAL(currentIndexChanged(int)), - this, SLOT(currentIndexChangedCB(int))); - - connect(ui->startingBannerCB, SIGNAL(currentIndexChanged(int)), - this, SLOT(currentIndexChangedCB(int))); - connect(ui->endingBannerCB, SIGNAL(currentIndexChanged(int)), - this, SLOT(currentIndexChangedCB(int))); - - connect(ui->usersELB, SIGNAL(changed()), - this, SLOT(userListChanged())); - connect(ui->allowRB, SIGNAL(toggled(bool)), - this, SLOT(userListChanged())); + connect(ui->errorPolicyCB, static_cast(&QComboBox::currentIndexChanged), + this, &PrinterBehavior::currentIndexChangedCB); + connect(ui->operationPolicyCB, static_cast(&QComboBox::currentIndexChanged), + this, &PrinterBehavior::currentIndexChangedCB); + + connect(ui->startingBannerCB, static_cast(&QComboBox::currentIndexChanged), + this, &PrinterBehavior::currentIndexChangedCB); + connect(ui->endingBannerCB, static_cast(&QComboBox::currentIndexChanged), + this, &PrinterBehavior::currentIndexChangedCB); + + connect(ui->usersELB, &KEditListWidget::changed, this, &PrinterBehavior::userListChanged); + connect(ui->allowRB, &QRadioButton::toggled, this, &PrinterBehavior::userListChanged); } PrinterBehavior::~PrinterBehavior() @@ -59,10 +56,11 @@ { int defaultChoice; ui->errorPolicyCB->clear(); - foreach (const QString &value, printer.errorPolicySupported()) { + const QStringList errorPolicySupported = printer.errorPolicySupported(); + for (const QString &value : errorPolicySupported) { ui->errorPolicyCB->addItem(errorPolicyString(value), value); } - QStringList errorPolicy = printer.errorPolicy(); + const QStringList errorPolicy = printer.errorPolicy(); if (!errorPolicy.isEmpty()) { defaultChoice = ui->errorPolicyCB->findData(errorPolicy.first()); ui->errorPolicyCB->setCurrentIndex(defaultChoice); @@ -70,10 +68,11 @@ } ui->operationPolicyCB->clear(); - foreach (const QString &value, printer.opPolicySupported()) { + const QStringList opPolicySupported = printer.opPolicySupported(); + for (const QString &value : opPolicySupported) { ui->operationPolicyCB->addItem(operationPolicyString(value), value); } - QStringList operationPolicy = printer.opPolicy(); + const QStringList operationPolicy = printer.opPolicy(); if (!errorPolicy.isEmpty()) { defaultChoice = ui->operationPolicyCB->findData(operationPolicy.first()); ui->operationPolicyCB->setCurrentIndex(defaultChoice); @@ -82,11 +81,12 @@ ui->startingBannerCB->clear(); ui->endingBannerCB->clear(); - foreach (const QString &value, printer.jobSheetsSupported()) { + const QStringList jobSheetsSupported = printer.jobSheetsSupported(); + for (const QString &value : jobSheetsSupported) { ui->startingBannerCB->addItem(jobSheetsString(value), value); ui->endingBannerCB->addItem(jobSheetsString(value), value); } - QStringList bannerPolicy = printer.jobSheetsDefault(); + const QStringList bannerPolicy = printer.jobSheetsDefault(); if (bannerPolicy.size() == 2) { defaultChoice = ui->startingBannerCB->findData(bannerPolicy.at(0)); ui->startingBannerCB->setCurrentIndex(defaultChoice); @@ -147,11 +147,10 @@ ui-> usersELB->setEnabled(true); } - QStringList currentList, defaultList; - currentList = ui->usersELB->items(); + QStringList currentList = ui->usersELB->items(); // sort the list so we can be sure it's different currentList.sort(); - defaultList = ui->usersELB->property("defaultList").value(); + const QStringList defaultList = ui->usersELB->property("defaultList").toStringList(); bool isDifferent = currentList != defaultList; if (isDifferent == false && currentList.isEmpty() == false) { @@ -173,25 +172,28 @@ void PrinterBehavior::currentIndexChangedCB(int index) { - QComboBox *comboBox = qobject_cast(sender()); + auto comboBox = qobject_cast(sender()); bool isDifferent = comboBox->property("defaultChoice").toInt() != index; + qCDebug(PM_CONFIGURE_PRINTER) << Q_FUNC_INFO << "isDifferent" << isDifferent << this; if (isDifferent != comboBox->property("different").toBool()) { // it's different from the last time so add or remove changes isDifferent ? m_changes++ : m_changes--; comboBox->setProperty("different", isDifferent); + qCDebug(PM_CONFIGURE_PRINTER) << Q_FUNC_INFO << m_changes << this; + emit changed(m_changes); } - QString attribute = comboBox->property("AttributeName").toString(); + const QString attribute = comboBox->property("AttributeName").toString(); QVariant value; // job-sheets-default has always two values - if (attribute == "job-sheets-default") { - QStringList values; - values << ui->startingBannerCB->itemData(ui->startingBannerCB->currentIndex()).toString(); - values << ui->endingBannerCB->itemData(ui->endingBannerCB->currentIndex()).toString(); - value = values; + if (attribute == QLatin1String("job-sheets-default")) { + value = QStringList({ + ui->startingBannerCB->itemData(ui->startingBannerCB->currentIndex()).toString(), + ui->endingBannerCB->itemData(ui->endingBannerCB->currentIndex()).toString() + }); } else { value = comboBox->itemData(index).toString(); } @@ -207,13 +209,13 @@ QString PrinterBehavior::errorPolicyString(const QString &policy) const { // TODO search for others policies of printer-error-policy-supported - if (policy == "abort-job") { + if (policy == QLatin1String("abort-job")) { return i18n("Abort job"); - } else if (policy == "retry-current-job") { + } else if (policy == QLatin1String("retry-current-job")) { return i18n("Retry current job"); - } else if (policy == "retry-job") { + } else if (policy == QLatin1String("retry-job")) { return i18n("Retry job"); - } else if (policy == "stop-printer") { + } else if (policy == QLatin1String("stop-printer")) { return i18n("Stop printer"); } return policy; @@ -222,9 +224,9 @@ QString PrinterBehavior::operationPolicyString(const QString &policy) const { // TODO search for others policies of printer-error-policy-supported - if (policy == "authenticated") { + if (policy == QLatin1String("authenticated")) { return i18n("Authenticated"); - } else if (policy == "default") { + } else if (policy == QLatin1String("default")) { return i18n("Default"); } return policy; @@ -233,19 +235,19 @@ QString PrinterBehavior::jobSheetsString(const QString &policy) const { // TODO search for others policies of printer-error-policy-supported - if (policy == "none") { + if (policy == QLatin1String("none")) { return i18n("None"); - } else if (policy == "classified") { + } else if (policy == QLatin1String("classified")) { return i18n("Classified"); - } else if (policy == "confidential") { + } else if (policy == QLatin1String("confidential")) { return i18n("Confidential"); - } else if (policy == "secret") { + } else if (policy == QLatin1String("secret")) { return i18n("Secret"); - } else if (policy == "standard") { + } else if (policy == QLatin1String("standard")) { return i18n("Standard"); - } else if (policy == "topsecret") { + } else if (policy == QLatin1String("topsecret")) { return i18n("Topsecret"); - } else if (policy == "unclassified") { + } else if (policy == QLatin1String("unclassified")) { return i18n("Unclassified"); } return policy; @@ -260,7 +262,7 @@ if (ui->usersELB->property("different").toBool()) { QStringList list = ui->usersELB->items(); if (list.isEmpty()) { - list << "all"; + list << QLatin1String("all"); changedValues[KCUPS_REQUESTING_USER_NAME_ALLOWED] = list; } else { if (ui->allowRB->isChecked()) { @@ -309,18 +311,19 @@ QStringList PrinterBehavior::neededValues() const { - QStringList ret; - ret << KCUPS_JOB_SHEETS_DEFAULT; - ret << KCUPS_JOB_SHEETS_SUPPORTED; + return QStringList({ + KCUPS_JOB_SHEETS_DEFAULT, + KCUPS_JOB_SHEETS_SUPPORTED, - ret << KCUPS_PRINTER_ERROR_POLICY; - ret << KCUPS_PRINTER_ERROR_POLICY_SUPPORTED; + KCUPS_PRINTER_ERROR_POLICY, + KCUPS_PRINTER_ERROR_POLICY_SUPPORTED, - ret << KCUPS_PRINTER_OP_POLICY; - ret << KCUPS_PRINTER_OP_POLICY_SUPPORTED; + KCUPS_PRINTER_OP_POLICY, + KCUPS_PRINTER_OP_POLICY_SUPPORTED, - ret << KCUPS_REQUESTING_USER_NAME_ALLOWED; - ret << KCUPS_REQUESTING_USER_NAME_DENIED; - - return ret; + KCUPS_REQUESTING_USER_NAME_ALLOWED, + KCUPS_REQUESTING_USER_NAME_DENIED + }); } + +#include "moc_PrinterBehavior.cpp" diff -Nru print-manager-17.12.3/configure-printer/PrinterBehavior.h print-manager-18.04.3/configure-printer/PrinterBehavior.h --- print-manager-17.12.3/configure-printer/PrinterBehavior.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/PrinterBehavior.h 2018-03-17 21:16:53.000000000 +0000 @@ -57,7 +57,7 @@ QString m_destName; bool m_isClass; QVariantHash m_changedValues; - int m_changes; + int m_changes = 0; }; #endif diff -Nru print-manager-17.12.3/configure-printer/PrinterOptions.cpp print-manager-18.04.3/configure-printer/PrinterOptions.cpp --- print-manager-17.12.3/configure-printer/PrinterOptions.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/PrinterOptions.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -56,9 +56,7 @@ ui(new Ui::PrinterOptions), m_destName(destName), m_isClass(isClass), - m_isRemote(isRemote), - m_ppd(NULL), - m_changes(0) + m_isRemote(isRemote) { ui->setupUi(this); @@ -68,7 +66,7 @@ void PrinterOptions::on_autoConfigurePB_clicked() { QPointer request = new KCupsRequest; - request->printCommand(m_destName, "AutoConfigure", i18n("Set Default Options")); + request->printCommand(m_destName, QLatin1String("AutoConfigure"), i18n("Set Default Options")); request->waitTillFinished(); if (request) { request->deleteLater(); @@ -79,7 +77,7 @@ { // The caller "owns" the file that is created and must unlink the returned filename. if (!m_filename.isEmpty()) { - unlink(m_filename.toUtf8()); + unlink(qUtf8Printable(m_filename)); } // remove all the options @@ -109,7 +107,7 @@ return; } m_filename = request->printerPPD(); - m_ppd = ppdOpenFile(m_filename.toUtf8()); + m_ppd = ppdOpenFile(qUtf8Printable(m_filename)); request->deleteLater(); if (m_ppd == NULL) { qCWarning(PM_CONFIGURE_PRINTER) << "Could not open ppd file:" << m_filename << request->errorMsg(); @@ -185,10 +183,10 @@ QString text = m_codec->toUnicode(group->text); // The group box were the options will be laid out - QGroupBox *groupBox = new QGroupBox(text, ui->scrollArea); + auto groupBox = new QGroupBox(text, ui->scrollArea); // Create the form layout to put options in - QFormLayout *gFormLayout = new QFormLayout(groupBox); + auto gFormLayout = new QFormLayout(groupBox); gFormLayout->setFormAlignment(Qt::AlignCenter); groupBox->setLayout(gFormLayout); ui->verticalLayout->addWidget(groupBox); @@ -205,7 +203,7 @@ // The python system-config-printer skips this one // which has the same data as "PageSize", let's hope // they did the right thing - if (oKeyword == "PageRegion") { + if (oKeyword == QLatin1String("PageRegion")) { continue; } @@ -239,9 +237,9 @@ QWidget* PrinterOptions::pickBoolean(ppd_option_t *option, const QString &keyword, QWidget *parent) const { Q_UNUSED(keyword) - QWidget *widget = new QWidget(parent); - QHBoxLayout *layout = new QHBoxLayout(widget); - QButtonGroup *radioGroup = new QButtonGroup(widget); + auto widget = new QWidget(parent); + auto layout = new QHBoxLayout(widget); + auto radioGroup = new QButtonGroup(widget); widget->setLayout(layout); int i; @@ -251,10 +249,10 @@ for (i = 0, choice = option->choices; i < option->num_choices; ++i, ++choice) { - QString choiceName = m_codec->toUnicode(choice->choice); - QString cText = m_codec->toUnicode(choice->text); + const QString choiceName = m_codec->toUnicode(choice->choice); + const QString cText = m_codec->toUnicode(choice->text); - QRadioButton *button = new QRadioButton(cText, widget); + auto button = new QRadioButton(cText, widget); button->setChecked(defChoice == choiceName); button->setProperty("choice", choiceName); // if we are in looking at a remote printer we can't save it @@ -266,8 +264,7 @@ // store the default choice radioGroup->setProperty(DEFAULT_CHOICE, defChoice); radioGroup->setProperty("Keyword", keyword); - connect(radioGroup, SIGNAL(buttonClicked(QAbstractButton*)), - this, SLOT(radioBtClicked(QAbstractButton*))); + connect(radioGroup, static_cast(&QButtonGroup::buttonClicked), this, &PrinterOptions::radioBtClicked); return widget; } @@ -303,22 +300,22 @@ QWidget* PrinterOptions::pickMany(ppd_option_t *option, const QString &keyword, QWidget *parent) const { Q_UNUSED(keyword) - QListView *listView = new QListView(parent); - QStandardItemModel *model = new QStandardItemModel(listView); + auto listView = new QListView(parent); + auto model = new QStandardItemModel(listView); listView->setModel(model); listView->setItemDelegate(new NoSelectionRectDelegate(listView)); int i; ppd_choice_t *choice; - QString oDefChoice = m_codec->toUnicode(option->defchoice); + const QString oDefChoice = m_codec->toUnicode(option->defchoice); // Iterate over the choices in the option for (i = 0, choice = option->choices; i < option->num_choices; ++i, ++choice) { - QString cName = m_codec->toUnicode(choice->choice); - QString cText = m_codec->toUnicode(choice->text); + const QString cName = m_codec->toUnicode(choice->choice); + const QString cText = m_codec->toUnicode(choice->text); - QStandardItem *item = new QStandardItem(cText); + auto item = new QStandardItem(cText); item->setData(cName); item->setCheckable(true); item->setEditable(false); @@ -336,14 +333,14 @@ { int i; ppd_choice_t *choice; - QString defChoice = m_codec->toUnicode(option->defchoice); - QComboBox *comboBox = new QComboBox(parent); + const QString defChoice = m_codec->toUnicode(option->defchoice); + auto comboBox = new QComboBox(parent); // Iterate over the choices in the option for (i = 0, choice = option->choices; i < option->num_choices; ++i, ++choice) { - QString cName = m_codec->toUnicode(choice->choice); - QString cText = m_codec->toUnicode(choice->text); + const QString cName = m_codec->toUnicode(choice->choice); + const QString cText = m_codec->toUnicode(choice->text); comboBox->addItem(cText, cName); } @@ -352,8 +349,7 @@ comboBox->setProperty("Keyword", keyword); comboBox->setCurrentIndex(comboBox->findData(defChoice)); // connect the signal AFTER setCurrentIndex is called - connect(comboBox, SIGNAL(currentIndexChanged(int)), - this, SLOT(currentIndexChangedCB(int))); + connect(comboBox, static_cast(&QComboBox::currentIndexChanged), this, &PrinterOptions::currentIndexChangedCB); // if we are in looking at a remote printer we can't save it comboBox->setEnabled(!m_isRemote); return qobject_cast(comboBox); @@ -361,7 +357,7 @@ void PrinterOptions::currentIndexChangedCB(int index) { - QComboBox *comboBox = qobject_cast(sender()); + auto comboBox = qobject_cast(sender()); bool isDifferent = comboBox->property(DEFAULT_CHOICE).toString() != comboBox->itemData(index); if (isDifferent != comboBox->property("different").toBool()) { @@ -395,7 +391,7 @@ } if (!m_filename.isEmpty()) { - unlink(m_filename.toUtf8()); + unlink(qUtf8Printable(m_filename)); } delete ui; @@ -404,10 +400,11 @@ const char * /* O - Value of variable */ PrinterOptions::getVariable(const char *name) const /* I - Name of variable */ { - QString keyword = m_codec->toUnicode(name); - if (m_customValues.contains(keyword)) { - QString value = m_customValues[keyword]->property("currentChoice").toString(); - return m_codec->fromUnicode(value); + const QString keyword = m_codec->toUnicode(name); + auto it = m_customValues.constFind(keyword); + if (it != m_customValues.constEnd()) { + const QString value = it.value()->property("currentChoice").toString(); + return m_codec->fromUnicode(value).constData(); } else { return NULL; } @@ -709,7 +706,7 @@ // copy cups-1.4.2/cgi-bin line 3779 if (!m_filename.isEmpty()) { out = cupsTempFile2(tempfile, sizeof(tempfile)); - in = cupsFileOpen(m_filename.toUtf8(), "r"); + in = cupsFileOpen(qUtf8Printable(m_filename), "r"); if (!in || !out) { @@ -777,7 +774,7 @@ if (m_isClass) { request->addOrModifyClass(m_destName, values); } else { - request->addOrModifyPrinter(m_destName, values, tempfile); + request->addOrModifyPrinter(m_destName, values, QString::fromUtf8(tempfile)); } // Disable the widget till the request is processed @@ -795,14 +792,14 @@ if (!request->hasError()) { // if we succefully save the new ppd we need now to // clear our changes - QHash::const_iterator i = m_customValues.constBegin(); + auto i = m_customValues.constBegin(); while (i != m_customValues.constEnd()) { - QString currentChoice; - currentChoice = i.value()->property("currentChoice").toString(); + QObject *obj = i.value(); + const QString currentChoice = obj->property("currentChoice").toString(); // Store the current choice as the default one - i.value()->setProperty(DEFAULT_CHOICE, currentChoice); - i.value()->setProperty("currentChoice", QVariant()); - i.value()->setProperty("different", false); + obj->setProperty(DEFAULT_CHOICE, currentChoice); + obj->setProperty("currentChoice", QVariant()); + obj->setProperty("different", false); ++i; } m_changes = 0; @@ -827,3 +824,5 @@ { return m_makeAndModel; } + +#include "moc_PrinterOptions.cpp" diff -Nru print-manager-17.12.3/configure-printer/PrinterOptions.h print-manager-18.04.3/configure-printer/PrinterOptions.h --- print-manager-17.12.3/configure-printer/PrinterOptions.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/PrinterOptions.h 2018-03-17 21:16:53.000000000 +0000 @@ -67,8 +67,8 @@ bool m_isClass; bool m_isRemote; QString m_filename; - ppd_file_t *m_ppd; - int m_changes; + ppd_file_t *m_ppd = nullptr; + int m_changes = 0; QTextCodec *m_codec; QHash m_customValues; QString m_make, m_makeAndModel; diff -Nru print-manager-17.12.3/configure-printer/PrinterPage.cpp print-manager-18.04.3/configure-printer/PrinterPage.cpp --- print-manager-17.12.3/configure-printer/PrinterPage.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/PrinterPage.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -36,3 +36,5 @@ void PrinterPage::setRemote(bool) { } + +#include "moc_PrinterPage.cpp" diff -Nru print-manager-17.12.3/configure-printer/SelectMakeModelDialog.cpp print-manager-18.04.3/configure-printer/SelectMakeModelDialog.cpp --- print-manager-17.12.3/configure-printer/SelectMakeModelDialog.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/configure-printer/SelectMakeModelDialog.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,6 @@ /*************************************************************************** * Copyright (C) 2014 Lukáš Tinkl * + * Copyright (C) 2018 by Daniel Nicoletti * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -35,7 +36,7 @@ { setWindowTitle(i18n("Select a Driver")); - QVBoxLayout * layout = new QVBoxLayout(this); + auto layout = new QVBoxLayout(this); m_widget = new SelectMakeModel(this); layout->addWidget(m_widget); @@ -50,15 +51,15 @@ m_bbox->button(QDialogButtonBox::Ok)->setEnabled(false); // Configure the help button to be flat, disabled and empty - QPushButton *button = m_bbox->button(QDialogButtonBox::Help); + auto button = m_bbox->button(QDialogButtonBox::Help); button->setFlat(true); button->setEnabled(false); button->setIcon(QIcon()); button->setText(QString()); // Setup the busy cursor - KPixmapSequenceOverlayPainter *busySeq = new KPixmapSequenceOverlayPainter(this); - busySeq->setSequence(KIconLoader::global()->loadPixmapSequence("process-working", KIconLoader::SizeSmallMedium)); + auto busySeq = new KPixmapSequenceOverlayPainter(this); + busySeq->setSequence(KIconLoader::global()->loadPixmapSequence(QLatin1String("process-working"), KIconLoader::SizeSmallMedium)); busySeq->setAlignment(Qt::AlignHCenter | Qt::AlignBottom); busySeq->setWidget(button); busySeq->start(); @@ -66,7 +67,7 @@ qCDebug(PM_CONFIGURE_PRINTER) << make << makeModel; // restore dlg size - KConfigGroup group(KSharedConfig::openConfig("print-manager"), "PPDDialog"); + KConfigGroup group(KSharedConfig::openConfig(QLatin1String("print-manager")), "PPDDialog"); KWindowConfig::restoreWindowSize(windowHandle(), group); // set data @@ -76,7 +77,7 @@ SelectMakeModelDialog::~SelectMakeModelDialog() { // save dlg size - KConfigGroup configGroup(KSharedConfig::openConfig("print-manager"), "PPDDialog"); + KConfigGroup configGroup(KSharedConfig::openConfig(QLatin1String("print-manager")), "PPDDialog"); KWindowConfig::saveWindowSize(windowHandle(), configGroup); } @@ -84,3 +85,5 @@ { return m_widget; } + +#include "moc_SelectMakeModelDialog.cpp" diff -Nru print-manager-17.12.3/debian/changelog print-manager-18.04.3/debian/changelog --- print-manager-17.12.3/debian/changelog 2018-03-16 13:34:34.000000000 +0000 +++ print-manager-18.04.3/debian/changelog 2018-08-10 08:24:23.000000000 +0000 @@ -1,3 +1,12 @@ +print-manager (4:18.04.3-0ubuntu1) cosmic; urgency=medium + + * New upstream release (18.03.80) + * New upstream release (18.04.0) + * New upstream release (18.04.1) + * New upstream release (18.04.3) + + -- Rik Mills Fri, 10 Aug 2018 09:24:23 +0100 + print-manager (4:17.12.3-0ubuntu1) bionic; urgency=medium * New upstream release (17.12.3) diff -Nru print-manager-17.12.3/debian/control print-manager-18.04.3/debian/control --- print-manager-17.12.3/debian/control 2018-03-16 13:34:34.000000000 +0000 +++ print-manager-18.04.3/debian/control 2018-08-10 08:24:23.000000000 +0000 @@ -24,7 +24,7 @@ pkg-kde-tools (>> 0.15.15), qtbase5-dev (>= 5.6.1~), qtdeclarative5-dev (>= 5.6.1~), - qttools5-dev (>= 5.6.1~) + qttools5-dev (>= 5.6.1~), Standards-Version: 3.9.6 Homepage: http://www.kde.org/ Vcs-Browser: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/print-manager diff -Nru print-manager-17.12.3/declarative-plugins/qmlplugins.cpp print-manager-18.04.3/declarative-plugins/qmlplugins.cpp --- print-manager-17.12.3/declarative-plugins/qmlplugins.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/declarative-plugins/qmlplugins.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -29,10 +29,12 @@ void QmlPlugins::registerTypes(const char* uri) { - Q_ASSERT(uri == QLatin1String("org.kde.plasma.printmanager")); + Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.plasma.printmanager")); qmlRegisterType(uri, 0, 2, "PrinterModel"); qmlRegisterType(uri, 0, 2, "PrinterSortFilterModel"); qmlRegisterType(uri, 0, 2, "JobModel"); qmlRegisterType(uri, 0, 2, "JobSortFilterModel"); qmlRegisterType(uri, 0, 2, "ProcessRunner"); } + +#include "moc_qmlplugins.cpp" diff -Nru print-manager-17.12.3/libkcups/ClassListWidget.cpp print-manager-18.04.3/libkcups/ClassListWidget.cpp --- print-manager-17.12.3/libkcups/ClassListWidget.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/ClassListWidget.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,6 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * - * dantti12@gmail.com * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -32,12 +31,9 @@ #include #include -ClassListWidget::ClassListWidget(QWidget *parent) : - QListView(parent), - m_request(0), - m_showClasses(false) +ClassListWidget::ClassListWidget(QWidget *parent) : QListView(parent) { - KConfigDialogManager::changedMap()->insert("ClassListWidget", SIGNAL(changed(QString))); + KConfigDialogManager::changedMap()->insert(QLatin1String("ClassListWidget"), SIGNAL(changed(QString))); m_model = new QStandardItemModel(this); setModel(m_model); @@ -45,7 +41,7 @@ // Setup the busy cursor m_busySeq = new KPixmapSequenceOverlayPainter(this); - m_busySeq->setSequence(KPixmapSequence("process-working", KIconLoader::SizeSmallMedium)); + m_busySeq->setSequence(KPixmapSequence(QLatin1String("process-working"), KIconLoader::SizeSmallMedium)); m_busySeq->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter); m_busySeq->setWidget(viewport()); @@ -80,24 +76,24 @@ } } -void ClassListWidget::loadFinished() +void ClassListWidget::loadFinished(KCupsRequest *request) { // If we have an old request running discard it's result and get a new one - if (m_request != sender()) { - sender()->deleteLater(); + if (m_request != request) { + request->deleteLater(); return; } m_busySeq->stop(); // Stop spining - KCupsPrinters printers = m_request->printers(); - m_request->deleteLater(); + const KCupsPrinters printers = request->printers(); + request->deleteLater(); m_request = 0; - foreach (const KCupsPrinter &printer, printers) { + for (const KCupsPrinter &printer : printers) { QString destName = printer.name(); if (destName != m_printerName) { - QStandardItem *item = new QStandardItem; + auto item = new QStandardItem; item->setText(destName); item->setCheckable(true); item->setEditable(false); @@ -184,3 +180,5 @@ m_delayedInit.start(); } } + +#include "moc_ClassListWidget.cpp" diff -Nru print-manager-17.12.3/libkcups/ClassListWidget.h print-manager-18.04.3/libkcups/ClassListWidget.h --- print-manager-17.12.3/libkcups/ClassListWidget.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/ClassListWidget.h 2018-03-17 21:16:53.000000000 +0000 @@ -51,7 +51,7 @@ private slots: void init(); - void loadFinished(); + void loadFinished(KCupsRequest *request); void modelChanged(); private: @@ -60,9 +60,9 @@ QString m_printerName; QStringList m_selectedPrinters; KPixmapSequenceOverlayPainter *m_busySeq; - KCupsRequest *m_request; + KCupsRequest *m_request = nullptr; bool m_changed; - bool m_showClasses; + bool m_showClasses = false; QStandardItemModel *m_model; QTimer m_delayedInit; }; diff -Nru print-manager-17.12.3/libkcups/JobModel.cpp print-manager-18.04.3/libkcups/JobModel.cpp --- print-manager-17.12.3/libkcups/JobModel.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/JobModel.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,6 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * - * dantti12@gmail.com * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -34,13 +33,7 @@ #include #include -#include - -JobModel::JobModel(QObject *parent) : - QStandardItemModel(parent), - m_jobRequest(0), - m_whichjobs(CUPS_WHICHJOBS_ACTIVE), - m_parentId(0) +JobModel::JobModel(QObject *parent) : QStandardItemModel(parent) { setHorizontalHeaderItem(ColStatus, new QStandardItem(i18n("Status"))); setHorizontalHeaderItem(ColName, new QStandardItem(i18n("Name"))); @@ -54,85 +47,44 @@ setHorizontalHeaderItem(ColPrinter, new QStandardItem(i18n("Printer"))); setHorizontalHeaderItem(ColFromHost, new QStandardItem(i18n("From Hostname"))); - // Setup the attributes we want from jobs - m_jobAttributes << KCUPS_JOB_ID; - m_jobAttributes << KCUPS_JOB_NAME; - m_jobAttributes << KCUPS_JOB_K_OCTETS; - m_jobAttributes << KCUPS_JOB_K_OCTETS_PROCESSED; - m_jobAttributes << KCUPS_JOB_STATE; - m_jobAttributes << KCUPS_TIME_AT_COMPLETED; - m_jobAttributes << KCUPS_TIME_AT_CREATION; - m_jobAttributes << KCUPS_TIME_AT_PROCESSING; - m_jobAttributes << KCUPS_JOB_PRINTER_URI; - m_jobAttributes << KCUPS_JOB_ORIGINATING_USER_NAME; - m_jobAttributes << KCUPS_JOB_ORIGINATING_HOST_NAME; - m_jobAttributes << KCUPS_JOB_MEDIA_PROGRESS; - m_jobAttributes << KCUPS_JOB_MEDIA_SHEETS; - m_jobAttributes << KCUPS_JOB_MEDIA_SHEETS_COMPLETED; - m_jobAttributes << KCUPS_JOB_PRINTER_STATE_MESSAGE; - m_jobAttributes << KCUPS_JOB_PRESERVED; - - QHash roles = roleNames(); - roles[RoleJobId] = "jobId"; - roles[RoleJobState] = "jobState"; - roles[RoleJobName] = "jobName"; - roles[RoleJobPages] = "jobPages"; - roles[RoleJobSize] = "jobSize"; - roles[RoleJobOwner] = "jobOwner"; - roles[RoleJobCreatedAt] = "jobCreatedAt"; - roles[RoleJobIconName] = "jobIconName"; - roles[RoleJobCancelEnabled] = "jobCancelEnabled"; - roles[RoleJobHoldEnabled] = "jobHoldEnabled"; - roles[RoleJobReleaseEnabled] = "jobReleaseEnabled"; - roles[RoleJobRestartEnabled] = "jobRestartEnabled"; - roles[RoleJobPrinter] = "jobPrinter"; - roles[RoleJobOriginatingHostName] = "jobFrom"; - setRoleNames(roles); + m_roles = QStandardItemModel::roleNames(); + m_roles[RoleJobId] = "jobId"; + m_roles[RoleJobState] = "jobState"; + m_roles[RoleJobName] = "jobName"; + m_roles[RoleJobPages] = "jobPages"; + m_roles[RoleJobSize] = "jobSize"; + m_roles[RoleJobOwner] = "jobOwner"; + m_roles[RoleJobCreatedAt] = "jobCreatedAt"; + m_roles[RoleJobIconName] = "jobIconName"; + m_roles[RoleJobCancelEnabled] = "jobCancelEnabled"; + m_roles[RoleJobHoldEnabled] = "jobHoldEnabled"; + m_roles[RoleJobReleaseEnabled] = "jobReleaseEnabled"; + m_roles[RoleJobRestartEnabled] = "jobRestartEnabled"; + m_roles[RoleJobPrinter] = "jobPrinter"; + m_roles[RoleJobOriginatingHostName] = "jobFrom"; // This is emitted when a job change it's state - connect(KCupsConnection::global(), - SIGNAL(jobState(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint)), - this, - SLOT(insertUpdateJob(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint))); + connect(KCupsConnection::global(), &KCupsConnection::jobState, this, &JobModel::insertUpdateJob); // This is emitted when a job is created - connect(KCupsConnection::global(), - SIGNAL(jobCreated(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint)), - this, - SLOT(insertUpdateJob(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint))); + connect(KCupsConnection::global(), &KCupsConnection::jobCreated, this, &JobModel::insertUpdateJob); // This is emitted when a job is stopped - connect(KCupsConnection::global(), - SIGNAL(jobStopped(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint)), - this, - SLOT(insertUpdateJob(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint))); + connect(KCupsConnection::global(), &KCupsConnection::jobStopped, this, &JobModel::insertUpdateJob); // This is emitted when a job has it's config changed - connect(KCupsConnection::global(), - SIGNAL(jobConfigChanged(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint)), - this, - SLOT(insertUpdateJob(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint))); + connect(KCupsConnection::global(), &KCupsConnection::jobConfigChanged, this, &JobModel::insertUpdateJob); // This is emitted when a job change it's progress - connect(KCupsConnection::global(), - SIGNAL(jobProgress(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint)), - this, - SLOT(insertUpdateJob(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint))); + connect(KCupsConnection::global(), &KCupsConnection::jobProgress, this, &JobModel::insertUpdateJob); // This is emitted when a printer is removed - connect(KCupsConnection::global(), - SIGNAL(jobCompleted(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint)), - this, - SLOT(jobCompleted(QString,QString,QString,uint,QString,bool,uint,uint,QString,QString,uint))); - - connect(KCupsConnection::global(), SIGNAL(serverAudit(QString)), - SLOT(getJobs())); - connect(KCupsConnection::global(), SIGNAL(serverStarted(QString)), - SLOT(getJobs())); - connect(KCupsConnection::global(), SIGNAL(serverStopped(QString)), - SLOT(getJobs())); - connect(KCupsConnection::global(), SIGNAL(serverRestarted(QString)), - SLOT(getJobs())); + connect(KCupsConnection::global(), &KCupsConnection::jobCompleted, this, &JobModel::jobCompleted); + + connect(KCupsConnection::global(), &KCupsConnection::serverAudit, this, &JobModel::getJobs); + connect(KCupsConnection::global(), &KCupsConnection::serverStarted, this, &JobModel::getJobs); + connect(KCupsConnection::global(), &KCupsConnection::serverStopped, this, &JobModel::getJobs); + connect(KCupsConnection::global(), &KCupsConnection::serverRestarted, this, &JobModel::getJobs); } void JobModel::setParentWId(WId parentId) @@ -195,22 +147,39 @@ } m_jobRequest = new KCupsRequest; - connect(m_jobRequest, SIGNAL(finished()), this, SLOT(getJobFinished())); + connect(m_jobRequest, &KCupsRequest::finished, this, &JobModel::getJobFinished); - m_jobRequest->getJobs(m_destName, false, m_whichjobs, m_jobAttributes); + const static QStringList attrs({ + KCUPS_JOB_ID, + KCUPS_JOB_NAME, + KCUPS_JOB_K_OCTETS, + KCUPS_JOB_K_OCTETS_PROCESSED, + KCUPS_JOB_STATE, + KCUPS_TIME_AT_COMPLETED, + KCUPS_TIME_AT_CREATION, + KCUPS_TIME_AT_PROCESSING, + KCUPS_JOB_PRINTER_URI, + KCUPS_JOB_ORIGINATING_USER_NAME, + KCUPS_JOB_ORIGINATING_HOST_NAME, + KCUPS_JOB_MEDIA_PROGRESS, + KCUPS_JOB_MEDIA_SHEETS, + KCUPS_JOB_MEDIA_SHEETS_COMPLETED, + KCUPS_JOB_PRINTER_STATE_MESSAGE, + KCUPS_JOB_PRESERVED + }); + m_jobRequest->getJobs(m_destName, false, m_whichjobs, attrs); m_processingJob.clear(); } -void JobModel::getJobFinished() +void JobModel::getJobFinished(KCupsRequest *request) { - KCupsRequest *request = static_cast(sender()); if (request) { if (request->hasError()) { // clear the model after so that the proper widget can be shown clear(); } else { - KCupsJobs jobs = request->jobs(); + const KCupsJobs jobs = request->jobs(); qCDebug(LIBKCUPS) << jobs.size(); for (int i = 0; i < jobs.size(); ++i) { if (jobs.at(i).state() == IPP_JOB_PROCESSING) { @@ -313,7 +282,7 @@ // insert the first column which has the job state and id QList row; ipp_jstate_e jobState = job.state(); - QStandardItem *statusItem = new QStandardItem(jobStatus(jobState)); + auto statusItem = new QStandardItem(jobStatus(jobState)); statusItem->setData(jobState, RoleJobState); statusItem->setData(job.id(), RoleJobId); statusItem->setData(job.name(), RoleJobName); @@ -333,7 +302,7 @@ QString pages = QString::number(job.pages()); if (job.processedPages()) { - pages = QString::number(job.processedPages()) % QLatin1Char('/') % QString::number(job.processedPages()); + pages = QString::number(job.processedPages()) + QLatin1Char('/') + QString::number(job.processedPages()); } if (statusItem->data(RoleJobPages) != pages) { statusItem->setData(pages, RoleJobPages); @@ -369,7 +338,7 @@ QString pages = QString::number(job.pages()); if (job.processedPages()) { - pages = QString::number(job.processedPages()) % QLatin1Char('/') % QString::number(job.processedPages()); + pages = QString::number(job.processedPages()) + QLatin1Char('/') + QString::number(job.processedPages()); } if (item(pos, ColStatus)->data(RoleJobPages) != pages) { item(pos, ColStatus)->setData(pages, RoleJobPages); @@ -460,7 +429,7 @@ QStringList JobModel::mimeTypes() const { - return QStringList("application/x-cupsjobs"); + return { QStringLiteral("application/x-cupsjobs") }; } Qt::DropActions JobModel::supportedDropActions() const @@ -470,12 +439,12 @@ QMimeData* JobModel::mimeData(const QModelIndexList &indexes) const { - QMimeData *mimeData = new QMimeData(); + auto mimeData = new QMimeData(); QByteArray encodedData; QDataStream stream(&encodedData, QIODevice::WriteOnly); - foreach (const QModelIndex &index, indexes) { + for (const QModelIndex &index : indexes) { if (index.isValid() && index.column() == 0) { // serialize the jobId and fromDestName stream << data(index, RoleJobId).toInt() @@ -484,7 +453,7 @@ } } - mimeData->setData("application/x-cupsjobs", encodedData); + mimeData->setData(QLatin1String("application/x-cupsjobs"), encodedData); return mimeData; } @@ -501,11 +470,11 @@ return true; } - if (!data->hasFormat("application/x-cupsjobs")) { + if (!data->hasFormat(QLatin1String("application/x-cupsjobs"))) { return false; } - QByteArray encodedData = data->data("application/x-cupsjobs"); + QByteArray encodedData = data->data(QLatin1String("application/x-cupsjobs")); QDataStream stream(&encodedData, QIODevice::ReadOnly); bool ret = false; @@ -538,6 +507,11 @@ return ret; } +QHash JobModel::roleNames() const +{ + return m_roles; +} + KCupsRequest* JobModel::modifyJob(int row, JobAction action, const QString &newDestName, const QModelIndex &parent) { Q_UNUSED(parent) @@ -559,7 +533,7 @@ return 0; } - KCupsRequest *request = new KCupsRequest; + auto request = new KCupsRequest; switch (action) { case Cancel: request->cancelJob(destName, jobId); @@ -603,13 +577,13 @@ { case IPP_JOB_PENDING : return i18n("Pending"); case IPP_JOB_HELD : return i18n("On hold"); - case IPP_JOB_PROCESSING : return "-"; + case IPP_JOB_PROCESSING : return QLatin1String("-"); case IPP_JOB_STOPPED : return i18n("Stopped"); case IPP_JOB_CANCELED : return i18n("Canceled"); case IPP_JOB_ABORTED : return i18n("Aborted"); case IPP_JOB_COMPLETED : return i18n("Completed"); } - return "-"; + return QLatin1String("-"); } void JobModel::clear() @@ -650,3 +624,5 @@ { return m_processingJob; } + +#include "moc_JobModel.cpp" diff -Nru print-manager-17.12.3/libkcups/JobModel.h print-manager-18.04.3/libkcups/JobModel.h --- print-manager-17.12.3/libkcups/JobModel.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/JobModel.h 2018-03-17 21:16:53.000000000 +0000 @@ -100,13 +100,14 @@ int row, int column, const QModelIndex &parent) Q_DECL_OVERRIDE; + virtual QHash roleNames() const override; Q_INVOKABLE void setWhichJobs(WhichJobs whichjobs); KCupsRequest* modifyJob(int row, JobAction action, const QString &newDestName = QString(), const QModelIndex &parent = QModelIndex()); private slots: void getJobs(); - void getJobFinished(); + void getJobFinished(KCupsRequest *request); void jobCompleted(const QString &text, const QString &printerUri, @@ -138,12 +139,12 @@ QString jobStatus(ipp_jstate_e job_state); void clear(); - KCupsRequest *m_jobRequest; + KCupsRequest *m_jobRequest = nullptr; QString m_destName; QString m_processingJob; - int m_whichjobs; - WId m_parentId; - QStringList m_jobAttributes; + QHash m_roles; + int m_whichjobs = CUPS_WHICHJOBS_ACTIVE; + WId m_parentId = 0; }; #endif // JOB_MODEL_H diff -Nru print-manager-17.12.3/libkcups/JobSortFilterModel.cpp print-manager-18.04.3/libkcups/JobSortFilterModel.cpp --- print-manager-17.12.3/libkcups/JobSortFilterModel.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/JobSortFilterModel.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -134,3 +134,5 @@ break; } } + +#include "moc_JobSortFilterModel.cpp" diff -Nru print-manager-17.12.3/libkcups/KCupsConnection.cpp print-manager-18.04.3/libkcups/KCupsConnection.cpp --- print-manager-17.12.3/libkcups/KCupsConnection.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KCupsConnection.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * Copyright (C) 2012 Harald Sitter * * * @@ -28,7 +28,6 @@ #include #include -#include #include #include #include @@ -117,8 +116,6 @@ { // Creating the dialog before start() will make it run on the gui thread m_passwordDialog = new KCupsPasswordDialog; - m_subscriptionId = -1; - m_inited = false; // setup the DBus subscriptions @@ -268,14 +265,16 @@ m_renewTimer = new QTimer; m_renewTimer->setInterval(RENEW_INTERVAL*1000); m_renewTimer->moveToThread(this); - connect(m_renewTimer, SIGNAL(timeout()), this, SLOT(renewDBusSubscription()), Qt::DirectConnection); + connect(m_renewTimer, &QTimer::timeout, + this, static_cast(&KCupsConnection::renewDBusSubscription), Qt::DirectConnection); + // Creates the timer to merge updates on the DBus subscription m_subscriptionTimer = new QTimer; m_subscriptionTimer->setInterval(0); m_subscriptionTimer->setSingleShot(true); m_subscriptionTimer->moveToThread(this); - connect(m_subscriptionTimer, SIGNAL(timeout()), this, SLOT(updateSubscription()), Qt::DirectConnection); + connect(m_subscriptionTimer, &QTimer::timeout, this, &KCupsConnection::updateSubscription, Qt::DirectConnection); // Starts this thread start(); @@ -292,7 +291,7 @@ m_serverUrl.setPort(631); } - cupsSetServer(m_serverUrl.authority().toUtf8()); + cupsSetServer(qUtf8Printable(m_serverUrl.authority())); } // This is dead cool, cups will call the thread_password_cb() @@ -331,7 +330,7 @@ response = NULL; response = request.sendIppRequest(); - } while (retry(request.resource().toUtf8(), request.operation())); + } while (retry(qUtf8Printable(request.resource()), request.operation())); if (response && groupTag != IPP_TAG_ZERO) { ret = parseIPPVars(response, groupTag); @@ -355,20 +354,20 @@ operation = IPP_CREATE_PRINTER_SUBSCRIPTION; } - KIppRequest request(operation, "/"); + KIppRequest request(operation, QLatin1String("/")); request.addString(IPP_TAG_OPERATION, IPP_TAG_URI, - KCUPS_PRINTER_URI, QLatin1String("/")); + KCUPS_PRINTER_URI, QLatin1String("/")); request.addInteger(IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER, - KCUPS_NOTIFY_LEASE_DURATION, leaseDuration); + KCUPS_NOTIFY_LEASE_DURATION, leaseDuration); if (operation == IPP_CREATE_PRINTER_SUBSCRIPTION) { // Add the "notify-events" values to the request request.addStringList(IPP_TAG_SUBSCRIPTION, IPP_TAG_KEYWORD, KCUPS_NOTIFY_EVENTS, events); request.addString(IPP_TAG_SUBSCRIPTION, IPP_TAG_KEYWORD, - KCUPS_NOTIFY_PULL_METHOD, "ippget"); + KCUPS_NOTIFY_PULL_METHOD, QLatin1String("ippget")); request.addString(IPP_TAG_SUBSCRIPTION, IPP_TAG_URI, - KCUPS_NOTIFY_RECIPIENT_URI, "dbus://"); + KCUPS_NOTIFY_RECIPIENT_URI, QLatin1String("dbus://")); } else { request.addInteger(IPP_TAG_OPERATION, IPP_TAG_INTEGER, KCUPS_NOTIFY_SUBSCRIPTION_ID, subscriptionId); @@ -425,8 +424,8 @@ { QDBusConnection systemBus = QDBusConnection::systemBus(); systemBus.connect(QString(), - QLatin1String("/org/cups/cupsd/Notifier"), - QLatin1String("org.cups.cupsd.Notifier"), + QStringLiteral("/org/cups/cupsd/Notifier"), + QStringLiteral("org.cups.cupsd.Notifier"), signal, receiver, slot); @@ -460,65 +459,65 @@ { // Server signals if (signal == QMetaMethod::fromSignal(&KCupsConnection::serverAudit)) { - return DBUS_SERVER_AUDIT; + return QStringLiteral(DBUS_SERVER_AUDIT); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::serverStarted)) { - return DBUS_SERVER_STARTED; + return QStringLiteral(DBUS_SERVER_STARTED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::serverStopped)) { - return DBUS_SERVER_STOPPED; + return QStringLiteral(DBUS_SERVER_STOPPED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::serverRestarted)) { - return DBUS_SERVER_RESTARTED; + return QStringLiteral(DBUS_SERVER_RESTARTED); } // Printer signals if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerAdded)) { - return DBUS_PRINTER_ADDED; + return QStringLiteral(DBUS_PRINTER_ADDED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerDeleted)) { - return DBUS_PRINTER_DELETED; + return QStringLiteral(DBUS_PRINTER_DELETED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerFinishingsChanged)) { - return DBUS_PRINTER_FINISHINGS_CHANGED; + return QStringLiteral(DBUS_PRINTER_FINISHINGS_CHANGED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerMediaChanged)) { - return DBUS_PRINTER_MEDIA_CHANGED; + return QStringLiteral(DBUS_PRINTER_MEDIA_CHANGED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerModified)) { - return DBUS_PRINTER_MODIFIED; + return QStringLiteral(DBUS_PRINTER_MODIFIED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerRestarted)) { - return DBUS_PRINTER_RESTARTED; + return QStringLiteral(DBUS_PRINTER_RESTARTED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerShutdown)) { - return DBUS_PRINTER_SHUTDOWN; + return QStringLiteral(DBUS_PRINTER_SHUTDOWN); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerStateChanged)) { - return DBUS_PRINTER_STATE_CHANGED; + return QStringLiteral(DBUS_PRINTER_STATE_CHANGED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::printerStopped)) { - return DBUS_PRINTER_STOPPED; + return QStringLiteral(DBUS_PRINTER_STOPPED); } // job signals if (signal == QMetaMethod::fromSignal(&KCupsConnection::jobCompleted)) { - return DBUS_JOB_COMPLETED; + return QStringLiteral(DBUS_JOB_COMPLETED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::jobConfigChanged)) { - return DBUS_JOB_CONFIG_CHANGED; + return QStringLiteral(DBUS_JOB_CONFIG_CHANGED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::jobCreated)) { - return DBUS_JOB_CREATED; + return QStringLiteral(DBUS_JOB_CREATED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::jobProgress)) { - return DBUS_JOB_PROGRESS; + return QStringLiteral(DBUS_JOB_PROGRESS); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::jobState)) { - return DBUS_JOB_STATE_CHANGED; + return QStringLiteral(DBUS_JOB_STATE_CHANGED); } if (signal == QMetaMethod::fromSignal(&KCupsConnection::jobStopped)) { - return DBUS_JOB_STOPPED; + return QStringLiteral(DBUS_JOB_STOPPED); } // No registered event signal matched @@ -568,16 +567,16 @@ void KCupsConnection::cancelDBusSubscription() { - KIppRequest request(IPP_CANCEL_SUBSCRIPTION, "/"); + KIppRequest request(IPP_CANCEL_SUBSCRIPTION, QLatin1String("/")); request.addString(IPP_TAG_OPERATION, IPP_TAG_URI, - KCUPS_PRINTER_URI, "/"); + KCUPS_PRINTER_URI, QLatin1String("/")); request.addInteger(IPP_TAG_OPERATION, IPP_TAG_INTEGER, KCUPS_NOTIFY_SUBSCRIPTION_ID, m_subscriptionId); do { // Do the request ippDelete(request.sendIppRequest()); - } while (retry(request.resource().toUtf8(), request.operation())); + } while (retry(qUtf8Printable(request.resource()), request.operation())); // Reset the subscription id m_subscriptionId = -1; @@ -870,7 +869,7 @@ return NULL; } - KCupsPasswordDialog *passwordDialog = static_cast(user_data); + auto passwordDialog = static_cast(user_data); bool wrongPassword = password_retries > 1; // This will block this thread until exec is not finished @@ -885,8 +884,8 @@ // The password dialog has just returned check the result // method that returns QDialog enums if (passwordDialog->accepted()) { - cupsSetUser(passwordDialog->username().toUtf8()); - return passwordDialog->password().toUtf8(); + cupsSetUser(qUtf8Printable(passwordDialog->username())); + return qUtf8Printable(passwordDialog->password()); } else { // the dialog was canceled password_retries = -1; @@ -894,3 +893,5 @@ return NULL; } } + +#include "moc_KCupsConnection.cpp" diff -Nru print-manager-17.12.3/libkcups/KCupsConnection.h print-manager-18.04.3/libkcups/KCupsConnection.h --- print-manager-17.12.3/libkcups/KCupsConnection.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KCupsConnection.h 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -33,81 +33,81 @@ #include -#define KCUPS_DEVICE_CLASS "device-class" -#define KCUPS_DEVICE_ID "device-id" -#define KCUPS_DEVICE_INFO "device-info" -#define KCUPS_DEVICE_MAKE_AND_MODEL "device-make-and-model" -#define KCUPS_DEVICE_LOCATION "device-location" -#define KCUPS_DEVICE_URI "device-uri" - -#define KCUPS_PRINTER_NAME "printer-name" -#define KCUPS_PRINTER_LOCATION "printer-location" -#define KCUPS_PRINTER_INFO "printer-info" -#define KCUPS_PRINTER_URI "printer-uri" -#define KCUPS_PRINTER_MAKE_AND_MODEL "printer-make-and-model" -#define KCUPS_PRINTER_STATE "printer-state" -#define KCUPS_PRINTER_STATE_MESSAGE "printer-state-message" -#define KCUPS_PRINTER_IS_SHARED "printer-is-shared" -#define KCUPS_PRINTER_IS_ACCEPTING_JOBS "printer-is-accepting-jobs" -#define KCUPS_PRINTER_TYPE "printer-type" -#define KCUPS_PRINTER_TYPE_MASK "printer-type-mask" -#define KCUPS_PRINTER_COMMANDS "printer-commands" -#define KCUPS_PRINTER_URI_SUPPORTED "printer-uri-supported" -#define KCUPS_PRINTER_ERROR_POLICY "printer-error-policy" -#define KCUPS_PRINTER_ERROR_POLICY_SUPPORTED "printer-error-policy-supported" -#define KCUPS_PRINTER_OP_POLICY "printer-op-policy" -#define KCUPS_PRINTER_OP_POLICY_SUPPORTED "printer-op-policy-supported" - -#define KCUPS_MEMBER_URIS "member-uris" -#define KCUPS_MEMBER_NAMES "member-names" - -#define KCUPS_MARKER_CHANGE_TIME "marker-change-time" -#define KCUPS_MARKER_COLORS "marker-colors" -#define KCUPS_MARKER_LEVELS "marker-levels" +#define KCUPS_DEVICE_CLASS QLatin1String("device-class") +#define KCUPS_DEVICE_ID QLatin1String("device-id") +#define KCUPS_DEVICE_INFO QLatin1String("device-info") +#define KCUPS_DEVICE_MAKE_AND_MODEL QLatin1String("device-make-and-model") +#define KCUPS_DEVICE_LOCATION QLatin1String("device-location") +#define KCUPS_DEVICE_URI QLatin1String("device-uri") + +#define KCUPS_PRINTER_NAME QLatin1String("printer-name") +#define KCUPS_PRINTER_LOCATION QLatin1String("printer-location") +#define KCUPS_PRINTER_INFO QLatin1String("printer-info") +#define KCUPS_PRINTER_URI QLatin1String("printer-uri") +#define KCUPS_PRINTER_MAKE_AND_MODEL QLatin1String("printer-make-and-model") +#define KCUPS_PRINTER_STATE QLatin1String("printer-state") +#define KCUPS_PRINTER_STATE_MESSAGE QLatin1String("printer-state-message") +#define KCUPS_PRINTER_IS_SHARED QLatin1String("printer-is-shared") +#define KCUPS_PRINTER_IS_ACCEPTING_JOBS QLatin1String("printer-is-accepting-jobs") +#define KCUPS_PRINTER_TYPE QLatin1String("printer-type") +#define KCUPS_PRINTER_TYPE_MASK QLatin1String("printer-type-mask") +#define KCUPS_PRINTER_COMMANDS QLatin1String("printer-commands") +#define KCUPS_PRINTER_URI_SUPPORTED QLatin1String("printer-uri-supported") +#define KCUPS_PRINTER_ERROR_POLICY QLatin1String("printer-error-policy") +#define KCUPS_PRINTER_ERROR_POLICY_SUPPORTED QLatin1String("printer-error-policy-supported") +#define KCUPS_PRINTER_OP_POLICY QLatin1String("printer-op-policy") +#define KCUPS_PRINTER_OP_POLICY_SUPPORTED QLatin1String("printer-op-policy-supported") + +#define KCUPS_MEMBER_URIS QLatin1String("member-uris") +#define KCUPS_MEMBER_NAMES QLatin1String("member-names") + +#define KCUPS_MARKER_CHANGE_TIME QLatin1String("marker-change-time") +#define KCUPS_MARKER_COLORS QLatin1String("marker-colors") +#define KCUPS_MARKER_LEVELS QLatin1String("marker-levels") #define KCUPS_MARKER_HIGH_LEVELS "marker-high-levels" #define KCUPS_MARKER_LOW_LEVELS "marker-low-levels" -#define KCUPS_MARKER_NAMES "marker-names" -#define KCUPS_MARKER_TYPES "marker-types" +#define KCUPS_MARKER_NAMES QLatin1String("marker-names") +#define KCUPS_MARKER_TYPES QLatin1String("marker-types") #define KCUPS_MARKER_MESSAGE "marker-message" -#define KCUPS_JOB_ID "job-id" -#define KCUPS_JOB_NAME "job-name" -#define KCUPS_JOB_K_OCTETS "job-k-octets" -#define KCUPS_JOB_K_OCTETS_PROCESSED "job-k-octets-processed" -#define KCUPS_JOB_PRINTER_URI "job-printer-uri" -#define KCUPS_JOB_PRINTER_STATE_MESSAGE "job-printer-state-message" -#define KCUPS_JOB_ORIGINATING_USER_NAME "job-originating-user-name" -#define KCUPS_JOB_ORIGINATING_HOST_NAME "job-originating-host-name" -#define KCUPS_JOB_MEDIA_PROGRESS "job-media-progress" -#define KCUPS_JOB_MEDIA_SHEETS "job-media-sheets" -#define KCUPS_JOB_MEDIA_SHEETS_COMPLETED "job-media-sheets-completed" -#define KCUPS_JOB_PRESERVED "job-preserved" -#define KCUPS_JOB_STATE "job-state" -#define KCUPS_JOB_SHEETS_DEFAULT "job-sheets-default" -#define KCUPS_JOB_SHEETS_SUPPORTED "job-sheets-supported" -#define KCUPS_JOB_SHEETS_DEFAULT "job-sheets-default" -#define KCUPS_JOB_SHEETS_SUPPORTED "job-sheets-supported" - -#define KCUPS_MY_JOBS "my-jobs" -#define KCUPS_WHICH_JOBS "which-jobs" - -#define KCUPS_TIME_AT_COMPLETED "time-at-completed" -#define KCUPS_TIME_AT_CREATION "time-at-creation" -#define KCUPS_TIME_AT_PROCESSING "time-at-processing" - -#define KCUPS_REQUESTED_ATTRIBUTES "requested-attributes" - -#define KCUPS_REQUESTING_USER_NAME "requesting-user-name" -#define KCUPS_REQUESTING_USER_NAME_ALLOWED "requesting-user-name-allowed" -#define KCUPS_REQUESTING_USER_NAME_DENIED "requesting-user-name-denied" - -#define KCUPS_PPD_MAKE_AND_MODEL "ppd-make-and-model" - -#define KCUPS_NOTIFY_EVENTS "notify-events" -#define KCUPS_NOTIFY_PULL_METHOD "notify-pull-method" -#define KCUPS_NOTIFY_RECIPIENT_URI "notify-recipient-uri" -#define KCUPS_NOTIFY_LEASE_DURATION "notify-lease-duration" -#define KCUPS_NOTIFY_SUBSCRIPTION_ID "notify-subscription-id" +#define KCUPS_JOB_ID QLatin1String("job-id") +#define KCUPS_JOB_NAME QLatin1String("job-name") +#define KCUPS_JOB_K_OCTETS QLatin1String("job-k-octets") +#define KCUPS_JOB_K_OCTETS_PROCESSED QLatin1String("job-k-octets-processed") +#define KCUPS_JOB_PRINTER_URI QLatin1String("job-printer-uri") +#define KCUPS_JOB_PRINTER_STATE_MESSAGE QLatin1String("job-printer-state-message") +#define KCUPS_JOB_ORIGINATING_USER_NAME QLatin1String("job-originating-user-name") +#define KCUPS_JOB_ORIGINATING_HOST_NAME QLatin1String("job-originating-host-name") +#define KCUPS_JOB_MEDIA_PROGRESS QLatin1String("job-media-progress") +#define KCUPS_JOB_MEDIA_SHEETS QLatin1String("job-media-sheets") +#define KCUPS_JOB_MEDIA_SHEETS_COMPLETED QLatin1String("job-media-sheets-completed") +#define KCUPS_JOB_PRESERVED QLatin1String("job-preserved") +#define KCUPS_JOB_STATE QLatin1String("job-state") +#define KCUPS_JOB_SHEETS_DEFAULT QLatin1String("job-sheets-default") +#define KCUPS_JOB_SHEETS_SUPPORTED QLatin1String("job-sheets-supported") +#define KCUPS_JOB_SHEETS_DEFAULT QLatin1String("job-sheets-default") +#define KCUPS_JOB_SHEETS_SUPPORTED QLatin1String("job-sheets-supported") + +#define KCUPS_MY_JOBS QLatin1String("my-jobs") +#define KCUPS_WHICH_JOBS QLatin1String("which-jobs") + +#define KCUPS_TIME_AT_COMPLETED QLatin1String("time-at-completed") +#define KCUPS_TIME_AT_CREATION QLatin1String("time-at-creation") +#define KCUPS_TIME_AT_PROCESSING QLatin1String("time-at-processing") + +#define KCUPS_REQUESTED_ATTRIBUTES QLatin1String("requested-attributes") + +#define KCUPS_REQUESTING_USER_NAME QLatin1String("requesting-user-name") +#define KCUPS_REQUESTING_USER_NAME_ALLOWED QLatin1String("requesting-user-name-allowed") +#define KCUPS_REQUESTING_USER_NAME_DENIED QLatin1String("requesting-user-name-denied") + +#define KCUPS_PPD_MAKE_AND_MODEL QLatin1String("ppd-make-and-model") + +#define KCUPS_NOTIFY_EVENTS QLatin1String("notify-events") +#define KCUPS_NOTIFY_PULL_METHOD QLatin1String("notify-pull-method") +#define KCUPS_NOTIFY_RECIPIENT_URI QLatin1String("notify-recipient-uri") +#define KCUPS_NOTIFY_LEASE_DURATION QLatin1String("notify-lease-duration") +#define KCUPS_NOTIFY_SUBSCRIPTION_ID QLatin1String("notify-subscription-id") typedef QList ReturnArguments; @@ -390,7 +390,7 @@ static KCupsConnection* m_instance; - bool m_inited; + bool m_inited = false; KCupsPasswordDialog *m_passwordDialog; QUrl m_serverUrl; @@ -398,7 +398,7 @@ QTimer *m_renewTimer; QStringList m_connectedEvents; //note this updated in another thread. Always guard with m_mutex QStringList m_requestedDBusEvents; - int m_subscriptionId; + int m_subscriptionId = -1; QMutex m_mutex; }; diff -Nru print-manager-17.12.3/libkcups/KCupsJob.cpp print-manager-18.04.3/libkcups/KCupsJob.cpp --- print-manager-17.12.3/libkcups/KCupsJob.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KCupsJob.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -38,7 +38,7 @@ m_arguments(arguments) { m_jobId = arguments[KCUPS_JOB_ID].toInt(); - m_printer = arguments[KCUPS_JOB_PRINTER_URI].toString().section('/', -1); + m_printer = arguments[KCUPS_JOB_PRINTER_URI].toString().section(QLatin1Char('/'), -1); } int KCupsJob::id() const @@ -74,8 +74,9 @@ QDateTime KCupsJob::createdAt() const { QDateTime ret; - if (m_arguments.contains(KCUPS_TIME_AT_CREATION)) { - ret.setTime_t(m_arguments[KCUPS_TIME_AT_CREATION].toInt()); + const auto it = m_arguments.constFind(KCUPS_TIME_AT_CREATION); + if (it != m_arguments.constEnd()) { + ret.fromMSecsSinceEpoch(it.value().toInt() * 1000); } return ret; } @@ -83,8 +84,9 @@ QDateTime KCupsJob::completedAt() const { QDateTime ret; - if (m_arguments.contains(KCUPS_TIME_AT_COMPLETED)) { - ret.setTime_t(m_arguments[KCUPS_TIME_AT_COMPLETED].toInt()); + const auto it = m_arguments.constFind(KCUPS_TIME_AT_COMPLETED); + if (it != m_arguments.constEnd()) { + ret.fromMSecsSinceEpoch(it.value().toInt() * 1000); } return ret; } @@ -92,8 +94,9 @@ QDateTime KCupsJob::processedAt() const { QDateTime ret; - if (m_arguments.contains(KCUPS_TIME_AT_PROCESSING)) { - ret.setTime_t(m_arguments[KCUPS_TIME_AT_PROCESSING].toInt()); + const auto it = m_arguments.constFind(KCUPS_TIME_AT_PROCESSING); + if (it != m_arguments.constEnd()) { + ret.fromMSecsSinceEpoch(it.value().toInt() * 1000); } return ret; } diff -Nru print-manager-17.12.3/libkcups/KCupsPasswordDialog.cpp print-manager-18.04.3/libkcups/KCupsPasswordDialog.cpp --- print-manager-17.12.3/libkcups/KCupsPasswordDialog.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KCupsPasswordDialog.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -82,3 +82,5 @@ { return m_password; } + +#include "moc_KCupsPasswordDialog.cpp" diff -Nru print-manager-17.12.3/libkcups/KCupsPrinter.cpp print-manager-18.04.3/libkcups/KCupsPrinter.cpp --- print-manager-17.12.3/libkcups/KCupsPrinter.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KCupsPrinter.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -34,8 +34,8 @@ KCupsPrinter::KCupsPrinter(const QVariantHash &arguments) : m_arguments(arguments) { - m_printer = arguments[KCUPS_PRINTER_NAME].toString(); - m_isClass = arguments[KCUPS_PRINTER_TYPE].toInt() & CUPS_PRINTER_CLASS; + m_printer = arguments[QLatin1String(KCUPS_PRINTER_NAME)].toString(); + m_isClass = arguments[QLatin1String(KCUPS_PRINTER_TYPE)].toInt() & CUPS_PRINTER_CLASS; } QString KCupsPrinter::name() const @@ -50,115 +50,116 @@ bool KCupsPrinter::isDefault() const { - return m_arguments[KCUPS_PRINTER_TYPE].toUInt() & CUPS_PRINTER_DEFAULT; + return m_arguments[QLatin1String(KCUPS_PRINTER_TYPE)].toUInt() & CUPS_PRINTER_DEFAULT; } bool KCupsPrinter::isShared() const { - return m_arguments[KCUPS_PRINTER_IS_SHARED].toBool(); + return m_arguments[QLatin1String(KCUPS_PRINTER_IS_SHARED)].toBool(); } bool KCupsPrinter::isAcceptingJobs() const { - return m_arguments[KCUPS_PRINTER_IS_ACCEPTING_JOBS].toBool(); + return m_arguments[QLatin1String(KCUPS_PRINTER_IS_ACCEPTING_JOBS)].toBool(); } cups_ptype_e KCupsPrinter::type() const { - return static_cast(m_arguments[KCUPS_PRINTER_TYPE].toUInt()); + return static_cast(m_arguments[QLatin1String(KCUPS_PRINTER_TYPE)].toUInt()); } QString KCupsPrinter::location() const { - return m_arguments[KCUPS_PRINTER_LOCATION].toString(); + return m_arguments[QLatin1String(KCUPS_PRINTER_LOCATION)].toString(); } QString KCupsPrinter::info() const { - if (m_arguments[KCUPS_PRINTER_INFO].toString().isEmpty()) { + const QString printerInfo = m_arguments[QLatin1String(KCUPS_PRINTER_INFO)].toString(); + if (printerInfo.isEmpty()) { return name(); } - return m_arguments[KCUPS_PRINTER_INFO].toString(); + return printerInfo; } QString KCupsPrinter::makeAndModel() const { - return m_arguments[KCUPS_PRINTER_MAKE_AND_MODEL].toString(); + return m_arguments[QLatin1String(KCUPS_PRINTER_MAKE_AND_MODEL)].toString(); } QStringList KCupsPrinter::commands() const { - return m_arguments[KCUPS_PRINTER_COMMANDS].toStringList(); + return m_arguments[QLatin1String(KCUPS_PRINTER_COMMANDS)].toStringList(); } QStringList KCupsPrinter::memberNames() const { - return m_arguments[KCUPS_MEMBER_NAMES].toStringList(); + return m_arguments[QLatin1String(KCUPS_MEMBER_NAMES)].toStringList(); } QString KCupsPrinter::deviceUri() const { - return m_arguments[KCUPS_DEVICE_URI].toString(); + return m_arguments[QLatin1String(KCUPS_DEVICE_URI)].toString(); } QStringList KCupsPrinter::errorPolicy() const { - return m_arguments[KCUPS_PRINTER_ERROR_POLICY].toStringList(); + return m_arguments[QLatin1String(KCUPS_PRINTER_ERROR_POLICY)].toStringList(); } QStringList KCupsPrinter::errorPolicySupported() const { - return m_arguments[KCUPS_PRINTER_ERROR_POLICY_SUPPORTED].toStringList(); + return m_arguments[QLatin1String(KCUPS_PRINTER_ERROR_POLICY_SUPPORTED)].toStringList(); } QStringList KCupsPrinter::opPolicy() const { - return m_arguments[KCUPS_PRINTER_OP_POLICY].toStringList(); + return m_arguments[QLatin1String(KCUPS_PRINTER_OP_POLICY)].toStringList(); } QStringList KCupsPrinter::opPolicySupported() const { - return m_arguments[KCUPS_PRINTER_OP_POLICY_SUPPORTED].toStringList(); + return m_arguments[QLatin1String(KCUPS_PRINTER_OP_POLICY_SUPPORTED)].toStringList(); } QStringList KCupsPrinter::jobSheetsDefault() const { - return m_arguments[KCUPS_JOB_SHEETS_DEFAULT].toStringList(); + return m_arguments[QLatin1String(KCUPS_JOB_SHEETS_DEFAULT)].toStringList(); } QStringList KCupsPrinter::jobSheetsSupported() const { - return m_arguments[KCUPS_JOB_SHEETS_SUPPORTED].toStringList(); + return m_arguments[QLatin1String(KCUPS_JOB_SHEETS_SUPPORTED)].toStringList(); } QStringList KCupsPrinter::requestingUserNameAllowed() const { - return m_arguments[KCUPS_REQUESTING_USER_NAME_ALLOWED].toStringList(); + return m_arguments[QLatin1String(KCUPS_REQUESTING_USER_NAME_ALLOWED)].toStringList(); } QStringList KCupsPrinter::requestingUserNameDenied() const { - return m_arguments[KCUPS_REQUESTING_USER_NAME_DENIED].toStringList(); + return m_arguments[QLatin1String(KCUPS_REQUESTING_USER_NAME_DENIED)].toStringList(); } QString KCupsPrinter::uriSupported() const { - return m_arguments[KCUPS_PRINTER_URI_SUPPORTED].toString(); + return m_arguments[QLatin1String(KCUPS_PRINTER_URI_SUPPORTED)].toString(); } KCupsPrinter::Status KCupsPrinter::state() const { - return static_cast(m_arguments[KCUPS_PRINTER_STATE].toUInt()); + return static_cast(m_arguments[QLatin1String(KCUPS_PRINTER_STATE)].toUInt()); } QString KCupsPrinter::stateMsg() const { - return m_arguments[KCUPS_PRINTER_STATE_MESSAGE].toString(); + return m_arguments[QLatin1String(KCUPS_PRINTER_STATE_MESSAGE)].toString(); } int KCupsPrinter::markerChangeTime() const { - return m_arguments[KCUPS_MARKER_CHANGE_TIME].toInt(); + return m_arguments[QLatin1String(KCUPS_MARKER_CHANGE_TIME)].toInt(); } QVariant KCupsPrinter::argument(const QString &name) const @@ -186,10 +187,10 @@ // TODO get the ppd or something to get the real printer icon if (!(type & CUPS_PRINTER_COLOR)) { // If the printer is not color it is probably a laser one - return "printer-laser"; + return QStringLiteral("printer-laser"); } else if (type & CUPS_PRINTER_SCANNER) { - return "scanner"; + return QStringLiteral("scanner"); } else { - return "printer"; + return QStringLiteral("printer"); } } diff -Nru print-manager-17.12.3/libkcups/KCupsRequest.cpp print-manager-18.04.3/libkcups/KCupsRequest.cpp --- print-manager-17.12.3/libkcups/KCupsRequest.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KCupsRequest.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -26,17 +26,14 @@ #include "KCupsPrinter.h" #include -#include #include #include -#define CUPS_DATADIR "/usr/share/cups" +#define CUPS_DATADIR QLatin1String("/usr/share/cups") KCupsRequest::KCupsRequest(KCupsConnection *connection) : - m_connection(connection), - m_finished(true), - m_error(IPP_OK) + m_connection(connection) { // If no connection was specified use default one if (m_connection == 0) { @@ -61,7 +58,7 @@ void KCupsRequest::getPPDS(const QString &make) { if (m_connection->readyToStart()) { - KIppRequest request(CUPS_GET_PPDS, "/"); + KIppRequest request(CUPS_GET_PPDS, QLatin1String("/")); if (!make.isEmpty()) { request.addString(IPP_TAG_PRINTER, IPP_TAG_TEXT, KCUPS_PPD_MAKE_AND_MODEL, make); } @@ -86,7 +83,7 @@ /* * Add the device to the array... */ - KCupsRequest *request = static_cast(user_data); + auto request = static_cast(user_data); QMetaObject::invokeMethod(request, "device", Qt::QueuedConnection, @@ -111,14 +108,14 @@ if (includeSchemes.isEmpty()) { include = CUPS_INCLUDE_ALL; } else { - include = includeSchemes.join(QLatin1String(",")).toUtf8(); + include = qUtf8Printable(includeSchemes.join(QLatin1String(","))); } const char *exclude; if (excludeSchemes.isEmpty()) { exclude = CUPS_EXCLUDE_NONE; } else { - exclude = excludeSchemes.join(QLatin1String(",")).toUtf8(); + exclude = qUtf8Printable(excludeSchemes.join(QLatin1String(","))); } // Scan for devices for "timeout" seconds @@ -143,7 +140,7 @@ void KCupsRequest::getPrinters(QStringList attributes, int mask) { if (m_connection->readyToStart()) { - KIppRequest request(CUPS_GET_PRINTERS, "/"); + KIppRequest request(CUPS_GET_PRINTERS, QLatin1String("/")); request.addInteger(IPP_TAG_OPERATION, IPP_TAG_ENUM, KCUPS_PRINTER_TYPE, CUPS_PRINTER_LOCAL); if (!attributes.isEmpty()) { request.addStringList(IPP_TAG_OPERATION, IPP_TAG_KEYWORD, KCUPS_REQUESTED_ATTRIBUTES, attributes); @@ -152,10 +149,9 @@ request.addInteger(IPP_TAG_OPERATION, IPP_TAG_ENUM, KCUPS_PRINTER_TYPE_MASK, mask); } - ReturnArguments ret; - ret = m_connection->request(request, IPP_TAG_PRINTER); + const ReturnArguments ret = m_connection->request(request, IPP_TAG_PRINTER); - foreach (const QVariantHash &arguments, ret) { + for (const QVariantHash &arguments : ret) { m_printers << KCupsPrinter(arguments); } @@ -169,16 +165,15 @@ void KCupsRequest::getPrinterAttributes(const QString &printerName, bool isClass, QStringList attributes) { if (m_connection->readyToStart()) { - KIppRequest request(IPP_GET_PRINTER_ATTRIBUTES, "/"); + KIppRequest request(IPP_GET_PRINTER_ATTRIBUTES, QLatin1String("/")); request.addPrinterUri(printerName, isClass); - request.addInteger(IPP_TAG_OPERATION, IPP_TAG_ENUM, KCUPS_PRINTER_TYPE, CUPS_PRINTER_LOCAL); - request.addStringList(IPP_TAG_OPERATION, IPP_TAG_KEYWORD, KCUPS_REQUESTED_ATTRIBUTES, attributes); + request.addInteger(IPP_TAG_OPERATION, IPP_TAG_ENUM, QLatin1String(KCUPS_PRINTER_TYPE), CUPS_PRINTER_LOCAL); + request.addStringList(IPP_TAG_OPERATION, IPP_TAG_KEYWORD, QLatin1String(KCUPS_REQUESTED_ATTRIBUTES), attributes); - ReturnArguments ret; - ret = m_connection->request(request, IPP_TAG_PRINTER); + const ReturnArguments ret = m_connection->request(request, IPP_TAG_PRINTER); - foreach (const QVariantHash &arguments, ret) { + for (const QVariantHash &arguments : ret) { // Inject the printer name back to the arguments hash QVariantHash args = arguments; args[KCUPS_PRINTER_NAME] = printerName; @@ -195,7 +190,7 @@ void KCupsRequest::getJobs(const QString &printerName, bool myJobs, int whichJobs, QStringList attributes) { if (m_connection->readyToStart()) { - KIppRequest request(IPP_GET_JOBS, "/"); + KIppRequest request(IPP_GET_JOBS, QLatin1String("/")); // printer-uri makes the Name of the Job and owner came blank lol request.addPrinterUri(printerName, false); @@ -205,15 +200,14 @@ request.addInteger(IPP_TAG_OPERATION, IPP_TAG_ENUM, KCUPS_MY_JOBS, myJobs); if (whichJobs == CUPS_WHICHJOBS_COMPLETED) { - request.addString(IPP_TAG_OPERATION, IPP_TAG_KEYWORD, KCUPS_WHICH_JOBS, "completed"); + request.addString(IPP_TAG_OPERATION, IPP_TAG_KEYWORD, KCUPS_WHICH_JOBS, QLatin1String("completed")); } else if (whichJobs == CUPS_WHICHJOBS_ALL) { - request.addString(IPP_TAG_OPERATION, IPP_TAG_KEYWORD, KCUPS_WHICH_JOBS, "all"); + request.addString(IPP_TAG_OPERATION, IPP_TAG_KEYWORD, KCUPS_WHICH_JOBS, QLatin1String("all")); } - ReturnArguments ret; - ret = m_connection->request(request, IPP_TAG_JOB); + const ReturnArguments ret = m_connection->request(request, IPP_TAG_JOB); - foreach (const QVariantHash &arguments, ret) { + for (const QVariantHash &arguments : ret) { m_jobs << KCupsJob(arguments); } @@ -227,7 +221,7 @@ void KCupsRequest::getJobAttributes(int jobId, const QString &printerUri, QStringList attributes) { if (m_connection->readyToStart()) { - KIppRequest request(IPP_GET_JOB_ATTRIBUTES, "/"); + KIppRequest request(IPP_GET_JOB_ATTRIBUTES, QLatin1String("/")); request.addString(IPP_TAG_OPERATION, IPP_TAG_URI, KCUPS_PRINTER_URI, printerUri); request.addInteger(IPP_TAG_OPERATION, IPP_TAG_ENUM, KCUPS_PRINTER_TYPE, CUPS_PRINTER_LOCAL); @@ -235,10 +229,9 @@ request.addInteger(IPP_TAG_OPERATION, IPP_TAG_INTEGER, KCUPS_JOB_ID, jobId); - ReturnArguments ret; - ret = m_connection->request(request, IPP_TAG_PRINTER); + const ReturnArguments ret = m_connection->request(request, IPP_TAG_PRINTER); - foreach (const QVariantHash &arguments, ret) { + for (const QVariantHash &arguments : ret) { m_jobs << KCupsJob(arguments); } @@ -282,9 +275,9 @@ if (m_connection->readyToStart()) { do { const char *filename; - filename = cupsGetPPD2(CUPS_HTTP_DEFAULT, printerName.toUtf8()); + filename = cupsGetPPD2(CUPS_HTTP_DEFAULT, qUtf8Printable(printerName)); qCDebug(LIBKCUPS) << filename; - m_ppdFile = filename; + m_ppdFile = QString::fromUtf8(filename); qCDebug(LIBKCUPS) << m_ppdFile; } while (m_connection->retry("/", CUPS_GET_PPD)); setError(httpGetStatus(CUPS_HTTP_DEFAULT), cupsLastError(), QString::fromUtf8(cupsLastErrorString())); @@ -304,8 +297,8 @@ QVariantHash::const_iterator i = args.constBegin(); while (i != args.constEnd()) { - num_settings = cupsAddOption(i.key().toUtf8(), - i.value().toString().toUtf8(), + num_settings = cupsAddOption(qUtf8Printable(i.key()), + qUtf8Printable(i.value().toString()), num_settings, &settings); ++i; @@ -323,7 +316,7 @@ void KCupsRequest::addOrModifyPrinter(const QString &printerName, const QVariantHash &attributes, const QString &filename) { - KIppRequest request(CUPS_ADD_MODIFY_PRINTER, "/admin/", filename); + KIppRequest request(CUPS_ADD_MODIFY_PRINTER, QLatin1String("/admin/"), filename); request.addPrinterUri(printerName); request.addVariantValues(attributes); @@ -332,7 +325,7 @@ void KCupsRequest::addOrModifyClass(const QString &printerName, const QVariantHash &attributes) { - KIppRequest request(CUPS_ADD_MODIFY_CLASS, "/admin/"); + KIppRequest request(CUPS_ADD_MODIFY_CLASS, QLatin1String("/admin/")); request.addPrinterUri(printerName, true); request.addVariantValues(attributes); @@ -341,7 +334,7 @@ void KCupsRequest::setShared(const QString &printerName, bool isClass, bool shared) { - KIppRequest request(isClass ? CUPS_ADD_MODIFY_CLASS : CUPS_ADD_MODIFY_PRINTER, "/admin/"); + KIppRequest request(isClass ? CUPS_ADD_MODIFY_CLASS : CUPS_ADD_MODIFY_PRINTER, QLatin1String("/admin/")); request.addPrinterUri(printerName, isClass); request.addBoolean(IPP_TAG_OPERATION, KCUPS_PRINTER_IS_SHARED, shared); @@ -350,7 +343,7 @@ void KCupsRequest::pausePrinter(const QString &printerName) { - KIppRequest request(IPP_PAUSE_PRINTER, "/admin/"); + KIppRequest request(IPP_PAUSE_PRINTER, QLatin1String("/admin/")); request.addPrinterUri(printerName); process(request); @@ -358,7 +351,7 @@ void KCupsRequest::resumePrinter(const QString &printerName) { - KIppRequest request(IPP_RESUME_PRINTER, "/admin/"); + KIppRequest request(IPP_RESUME_PRINTER, QLatin1String("/admin/")); request.addPrinterUri(printerName); process(request); @@ -366,7 +359,7 @@ void KCupsRequest::rejectJobs(const QString &printerName) { - KIppRequest request(CUPS_REJECT_JOBS, "/admin/"); + KIppRequest request(CUPS_REJECT_JOBS, QLatin1String("/admin/")); request.addPrinterUri(printerName); process(request); @@ -374,7 +367,7 @@ void KCupsRequest::acceptJobs(const QString &printerName) { - KIppRequest request(CUPS_ACCEPT_JOBS, "/admin/"); + KIppRequest request(CUPS_ACCEPT_JOBS, QLatin1String("/admin/")); request.addPrinterUri(printerName); process(request); @@ -382,7 +375,7 @@ void KCupsRequest::setDefaultPrinter(const QString &printerName) { - KIppRequest request(CUPS_SET_DEFAULT, "/admin/"); + KIppRequest request(CUPS_SET_DEFAULT, QLatin1String("/admin/")); request.addPrinterUri(printerName); process(request); @@ -390,7 +383,7 @@ void KCupsRequest::deletePrinter(const QString &printerName) { - KIppRequest request(CUPS_DELETE_PRINTER, "/admin/"); + KIppRequest request(CUPS_DELETE_PRINTER, QLatin1String("/admin/")); request.addPrinterUri(printerName); process(request); @@ -405,7 +398,7 @@ /* * Locate the test page file... */ - datadir = qgetenv("CUPS_DATADIR"); + datadir = QString::fromUtf8(qgetenv("CUPS_DATADIR")); if (datadir.isEmpty()) { datadir = CUPS_DATADIR; } @@ -415,12 +408,12 @@ * Point to the printer/class... */ if (isClass) { - resource = QLatin1String("/classes/") % printerName; + resource = QLatin1String("/classes/") + printerName; } else { - resource = QLatin1String("/printers/") % printerName; + resource = QLatin1String("/printers/") + printerName; } - KIppRequest request(IPP_PRINT_JOB, resource.toUtf8(), filename); + KIppRequest request(IPP_PRINT_JOB, resource, filename); request.addPrinterUri(printerName); request.addString(IPP_TAG_OPERATION, IPP_TAG_NAME, KCUPS_JOB_NAME, i18n("Test Page")); @@ -439,7 +432,7 @@ /* * Create the CUPS command file... */ - snprintf(command_file, sizeof(command_file), "#CUPS-COMMAND\n%s\n", command.toUtf8().data()); + snprintf(command_file, sizeof(command_file), "#CUPS-COMMAND\n%s\n", command.toUtf8().constData()); /* * Send the command file job... @@ -448,8 +441,8 @@ hold_option.value = const_cast("no-hold"); if ((job_id = cupsCreateJob(CUPS_HTTP_DEFAULT, - printerName.toUtf8(), - title.toUtf8(), + qUtf8Printable(printerName), + qUtf8Printable(title), 1, &hold_option)) < 1) { qWarning() << "Unable to send command to printer driver!"; @@ -460,7 +453,7 @@ } status = cupsStartDocument(CUPS_HTTP_DEFAULT, - printerName.toUtf8(), + qUtf8Printable(printerName), job_id, NULL, CUPS_FORMAT_COMMAND, @@ -471,14 +464,14 @@ } if (status == HTTP_CONTINUE) { - cupsFinishDocument(CUPS_HTTP_DEFAULT, printerName.toUtf8()); + cupsFinishDocument(CUPS_HTTP_DEFAULT, qUtf8Printable(printerName)); } setError(httpGetStatus(CUPS_HTTP_DEFAULT), cupsLastError(), QString::fromUtf8(cupsLastErrorString())); if (httpGetStatus(CUPS_HTTP_DEFAULT), cupsLastError() >= IPP_REDIRECTION_OTHER_SITE) { qWarning() << "Unable to send command to printer driver!"; - cupsCancelJob(printerName.toUtf8(), job_id); + cupsCancelJob(qUtf8Printable(printerName), job_id); setFinished(); return; // Return to avoid a new try } @@ -492,7 +485,7 @@ void KCupsRequest::cancelJob(const QString &printerName, int jobId) { - KIppRequest request(IPP_CANCEL_JOB, "/jobs/"); + KIppRequest request(IPP_CANCEL_JOB, QLatin1String("/jobs/")); request.addPrinterUri(printerName); request.addInteger(IPP_TAG_OPERATION, IPP_TAG_INTEGER, KCUPS_JOB_ID, jobId); @@ -501,7 +494,7 @@ void KCupsRequest::holdJob(const QString &printerName, int jobId) { - KIppRequest request(IPP_HOLD_JOB, "/jobs/"); + KIppRequest request(IPP_HOLD_JOB, QLatin1String("/jobs/")); request.addPrinterUri(printerName); request.addInteger(IPP_TAG_OPERATION, IPP_TAG_INTEGER, KCUPS_JOB_ID, jobId); @@ -510,7 +503,7 @@ void KCupsRequest::releaseJob(const QString &printerName, int jobId) { - KIppRequest request(IPP_RELEASE_JOB, "/jobs/"); + KIppRequest request(IPP_RELEASE_JOB, QLatin1String("/jobs/")); request.addPrinterUri(printerName); request.addInteger(IPP_TAG_OPERATION, IPP_TAG_INTEGER, KCUPS_JOB_ID, jobId); @@ -519,7 +512,7 @@ void KCupsRequest::restartJob(const QString &printerName, int jobId) { - KIppRequest request(IPP_RESTART_JOB, "/jobs/"); + KIppRequest request(IPP_RESTART_JOB, QLatin1String("/jobs/")); request.addPrinterUri(printerName); request.addInteger(IPP_TAG_OPERATION, IPP_TAG_INTEGER, KCUPS_JOB_ID, jobId); @@ -534,7 +527,7 @@ return; } - KIppRequest request(CUPS_MOVE_JOB, "/jobs/"); + KIppRequest request(CUPS_MOVE_JOB, QLatin1String("/jobs/")); request.addPrinterUri(fromPrinterName); request.addInteger(IPP_TAG_OPERATION, IPP_TAG_INTEGER, KCUPS_JOB_ID, jobId); @@ -578,7 +571,7 @@ QGenericArgument(arg7.typeName(), arg7.data()), QGenericArgument(arg8.typeName(), arg8.data())); if (m_finished) { - setError(HTTP_ERROR, IPP_BAD_REQUEST, i18n("Failed to invoke method: %1", method)); + setError(HTTP_ERROR, IPP_BAD_REQUEST, i18n("Failed to invoke method: %1", QLatin1String(method))); setFinished(); } } @@ -665,8 +658,12 @@ { m_finished = true; if (delayed) { - QTimer::singleShot(0, this, SIGNAL(finished())); + QTimer::singleShot(0, this, [this] () { + emit finished(this); + }); } else { - emit finished(); + emit finished(this); } } + +#include "moc_KCupsRequest.cpp" diff -Nru print-manager-17.12.3/libkcups/KCupsRequest.h print-manager-18.04.3/libkcups/KCupsRequest.h --- print-manager-17.12.3/libkcups/KCupsRequest.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KCupsRequest.h 2018-03-17 21:16:53.000000000 +0000 @@ -291,7 +291,7 @@ const QString &device_uri, const QString &device_location); - void finished(); + void finished(KCupsRequest *); private: void invokeMethod(const char *method, @@ -309,8 +309,8 @@ KCupsConnection *m_connection; QEventLoop m_loop; - bool m_finished; - ipp_status_t m_error; + bool m_finished = true; + ipp_status_t m_error = IPP_OK; http_status_t m_httpStatus; QString m_errorMsg; ReturnArguments m_ppds; diff -Nru print-manager-17.12.3/libkcups/KCupsServer.cpp print-manager-18.04.3/libkcups/KCupsServer.cpp --- print-manager-17.12.3/libkcups/KCupsServer.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KCupsServer.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -36,22 +36,22 @@ bool KCupsServer::allowRemoteAdmin() const { - return m_arguments.value(CUPS_SERVER_REMOTE_ADMIN).toBool(); + return m_arguments[QLatin1String(CUPS_SERVER_REMOTE_ADMIN)].toBool(); } void KCupsServer::setAllowRemoteAdmin(bool allow) { - m_arguments[CUPS_SERVER_REMOTE_ADMIN] = allow ? QLatin1String("1") : QLatin1String("0"); + m_arguments[QLatin1String(CUPS_SERVER_REMOTE_ADMIN)] = allow ? QLatin1String("1") : QLatin1String("0"); } bool KCupsServer::allowUserCancelAnyJobs() const { - return m_arguments.value(CUPS_SERVER_USER_CANCEL_ANY).toBool(); + return m_arguments[QLatin1String(CUPS_SERVER_USER_CANCEL_ANY)].toBool(); } void KCupsServer::setAllowUserCancelAnyJobs(bool allow) { - m_arguments[CUPS_SERVER_USER_CANCEL_ANY] = allow ? QLatin1String("1") : QLatin1String("0"); + m_arguments[QLatin1String(CUPS_SERVER_USER_CANCEL_ANY)] = allow ? QLatin1String("1") : QLatin1String("0"); } bool KCupsServer::showSharedPrinters() const @@ -74,22 +74,22 @@ bool KCupsServer::sharePrinters() const { - return m_arguments.value(CUPS_SERVER_SHARE_PRINTERS).toBool(); + return m_arguments[QLatin1String(CUPS_SERVER_SHARE_PRINTERS)].toBool(); } void KCupsServer::setSharePrinters(bool share) { - m_arguments[CUPS_SERVER_SHARE_PRINTERS] = share ? QLatin1String("1") : QLatin1String("0"); + m_arguments[QLatin1String(CUPS_SERVER_SHARE_PRINTERS)] = share ? QLatin1String("1") : QLatin1String("0"); } bool KCupsServer::allowPrintingFromInternet() const { - return m_arguments.value(CUPS_SERVER_REMOTE_ANY).toBool(); + return m_arguments[QLatin1String(CUPS_SERVER_REMOTE_ANY)].toBool(); } void KCupsServer::setAllowPrintingFromInternet(bool allow) { - m_arguments[CUPS_SERVER_REMOTE_ANY] = allow ? QLatin1String("1") : QLatin1String("0"); + m_arguments[QLatin1String(CUPS_SERVER_REMOTE_ANY)] = allow ? QLatin1String("1") : QLatin1String("0"); } QVariantHash KCupsServer::arguments() const diff -Nru print-manager-17.12.3/libkcups/KIppRequest.cpp print-manager-18.04.3/libkcups/KIppRequest.cpp --- print-manager-17.12.3/libkcups/KIppRequest.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KIppRequest.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2013 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -23,8 +23,6 @@ #include "Debug.h" -#include - KIppRequest::KIppRequest() : d_ptr(new KIppRequestPrivate) { @@ -36,7 +34,7 @@ *this = other; } -KIppRequest::KIppRequest(ipp_op_t operation, const char *resource, const QString &filename) : +KIppRequest::KIppRequest(ipp_op_t operation, const QString &resource, const QString &filename) : d_ptr(new KIppRequestPrivate) { Q_D(KIppRequest); @@ -46,13 +44,12 @@ d->filename = filename; // send our user name on the request too - addString(IPP_TAG_OPERATION, IPP_TAG_NAME, KCUPS_REQUESTING_USER_NAME, cupsUser()); + addString(IPP_TAG_OPERATION, IPP_TAG_NAME, QLatin1String(KCUPS_REQUESTING_USER_NAME), QString::fromUtf8(cupsUser())); } KIppRequest::~KIppRequest() { - Q_D(KIppRequest); - delete d; + delete d_ptr; } ipp_op_t KIppRequest::operation() const @@ -82,9 +79,9 @@ d->addRawRequestsToIpp(request); if (d->filename.isNull()) { - return cupsDoRequest(CUPS_HTTP_DEFAULT, request, d->resource.toUtf8()); + return cupsDoRequest(CUPS_HTTP_DEFAULT, request, qUtf8Printable(d->resource)); } else { - return cupsDoFileRequest(CUPS_HTTP_DEFAULT, request, d->resource.toUtf8(), d->filename.toUtf8()); + return cupsDoFileRequest(CUPS_HTTP_DEFAULT, request, qUtf8Printable(d->resource), qUtf8Printable(d->filename)); } } @@ -92,36 +89,36 @@ { Q_D(KIppRequest); - d->addRequest(group, valueTag, name.toUtf8(), value); + d->addRequest(group, valueTag, name, value); } void KIppRequest::addStringList(ipp_tag_t group, ipp_tag_t valueTag, const QString &name, const QStringList &value) { Q_D(KIppRequest); - d->addRequest(group, valueTag, name.toUtf8(), value); + d->addRequest(group, valueTag, name, value); } void KIppRequest::addInteger(ipp_tag_t group, ipp_tag_t valueTag, const QString &name, int value) { Q_D(KIppRequest); - d->addRequest(group, valueTag, name.toUtf8(), value); + d->addRequest(group, valueTag, name, value); } void KIppRequest::addBoolean(ipp_tag_t group, const QString &name, bool value) { Q_D(KIppRequest); - d->addRequest(group, IPP_TAG_ZERO, name.toUtf8(), value); + d->addRequest(group, IPP_TAG_ZERO, name, value); } void KIppRequest::addVariantValues(const QVariantHash &values) { - QVariantHash::ConstIterator i = values.constBegin(); + auto i = values.constBegin(); while (i != values.constEnd()) { - QString key = i.key(); - QVariant value = i.value(); + const QString &key = i.key(); + const QVariant &value = i.value(); switch (value.type()) { case QVariant::Bool: // Still in use at add-printer/PageAddPrinter.cpp @@ -177,7 +174,7 @@ void KIppRequest::addPrinterUri(const QString &printerName, bool isClass) { QString uri = assembleUrif(printerName, isClass); - addString(IPP_TAG_OPERATION, IPP_TAG_URI, KCUPS_PRINTER_URI, uri); + addString(IPP_TAG_OPERATION, IPP_TAG_URI, QLatin1String(KCUPS_PRINTER_URI), uri); } QString KIppRequest::assembleUrif(const QString &name, bool isClass) @@ -186,14 +183,14 @@ QString destination; if (isClass) { - destination = QLatin1String("/classes/") % name; + destination = QLatin1String("/classes/") + name; } else { - destination = QLatin1String("/printers/") % name; + destination = QLatin1String("/printers/") + name; } httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", cupsUser(), "localhost", - ippPort(), destination.toUtf8()); - return uri; + ippPort(), destination.toUtf8().constData()); + return QString::fromLatin1(uri); } KIppRequest &KIppRequest::operator =(const KIppRequest &other) @@ -221,14 +218,17 @@ void KIppRequestPrivate::addRawRequestsToIpp(ipp_t *ipp) const { // sort the values as CUPS requires it - qSort(rawRequests.begin(), rawRequests.end(), rawRequestGroupLessThan); + std::sort(rawRequests.begin(), rawRequests.end(), [] (const KCupsRawRequest &a, const KCupsRawRequest &b) { + return a.group < b.group; + }); - foreach (const KCupsRawRequest &request, rawRequests) { + const QList &requests = rawRequests; + for (const KCupsRawRequest &request :requests) { switch (request.value.type()) { case QVariant::Bool: ippAddBoolean(ipp, request.group, - request.name.toUtf8(), + request.name.toUtf8().constData(), request.value.toBool()); break; case QVariant::Int: @@ -236,16 +236,16 @@ ippAddInteger(ipp, request.group, request.valueTag, - request.name.toUtf8(), + request.name.toUtf8().constData(), request.value.toInt()); break; case QVariant::String: ippAddString(ipp, request.group, request.valueTag, - request.name.toUtf8(), + request.name.toUtf8().constData(), "utf-8", - request.value.toString().toUtf8()); + request.value.toString().toUtf8().constData()); break; case QVariant::StringList: { @@ -256,7 +256,7 @@ ippAddStrings(ipp, request.group, request.valueTag, - request.name.toUtf8(), + request.name.toUtf8().constData(), list.size(), "utf-8", values); diff -Nru print-manager-17.12.3/libkcups/KIppRequest.h print-manager-18.04.3/libkcups/KIppRequest.h --- print-manager-17.12.3/libkcups/KIppRequest.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KIppRequest.h 2018-03-17 21:16:53.000000000 +0000 @@ -30,7 +30,7 @@ public: KIppRequest(); KIppRequest(const KIppRequest &other); - KIppRequest(ipp_op_t operation, const char *resource, const QString &filename = QString()); + KIppRequest(ipp_op_t operation, const QString &resource, const QString &filename = QString()); ~KIppRequest(); ipp_op_t operation() const; diff -Nru print-manager-17.12.3/libkcups/KIppRequest_p.h print-manager-18.04.3/libkcups/KIppRequest_p.h --- print-manager-17.12.3/libkcups/KIppRequest_p.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/KIppRequest_p.h 2018-03-17 21:16:53.000000000 +0000 @@ -58,9 +58,4 @@ return ptr; } -bool rawRequestGroupLessThan(const KCupsRawRequest &a, const KCupsRawRequest &b) -{ - return a.group < b.group; -} - #endif // KIPPREQUEST_P_H diff -Nru print-manager-17.12.3/libkcups/NoSelectionRectDelegate.cpp print-manager-18.04.3/libkcups/NoSelectionRectDelegate.cpp --- print-manager-17.12.3/libkcups/NoSelectionRectDelegate.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/NoSelectionRectDelegate.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -36,3 +36,5 @@ } QStyledItemDelegate::paint(painter, opt, index); } + +#include "moc_NoSelectionRectDelegate.cpp" diff -Nru print-manager-17.12.3/libkcups/PPDModel.cpp print-manager-18.04.3/libkcups/PPDModel.cpp --- print-manager-17.12.3/libkcups/PPDModel.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/PPDModel.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,6 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * - * dantti12@gmail.com * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -22,8 +21,6 @@ #include "Debug.h" -#include - #include PPDModel::PPDModel(QObject *parent) : @@ -36,10 +33,10 @@ clear(); QStandardItem *recommended = 0; - foreach (const DriverMatch &driver, driverMatch) { + for (const DriverMatch &driver : driverMatch) { // Find the matched PPD on the PPDs list - foreach (const QVariantHash &ppd, ppds) { - if (ppd["ppd-name"].toString() == driver.ppd) { + for (const QVariantHash &ppd : ppds) { + if (ppd[QLatin1String("ppd-name")].toString() == driver.ppd) { // Create the PPD QStandardItem *ppdItem = createPPDItem(ppd, true); @@ -55,9 +52,9 @@ } } - foreach (const QVariantHash &ppd, ppds) { + for (const QVariantHash &ppd : ppds) { // Find or create the PPD parent (printer Make) - QStandardItem *makeItem = findCreateMake(ppd["ppd-make"].toString()); + QStandardItem *makeItem = findCreateMake(ppd[QLatin1String("ppd-make")].toString()); // Create the PPD QStandardItem *ppdItem = createPPDItem(ppd, false); @@ -74,7 +71,7 @@ } } - QStandardItem *makeItem = new QStandardItem(make); + auto makeItem = new QStandardItem(make); appendRow(makeItem); return makeItem; } @@ -93,12 +90,12 @@ QStandardItem *PPDModel::createPPDItem(const QVariantHash &ppd, bool recommended) { - QStandardItem *ret = new QStandardItem; + auto ret = new QStandardItem; - QString make = ppd["ppd-make"].toString(); - QString makeAndModel = ppd["ppd-make-and-model"].toString(); - QString naturalLanguage = ppd["ppd-natural-language"].toString(); - QString ppdName = ppd["ppd-name"].toString(); + QString make = ppd[QLatin1String("ppd-make")].toString(); + QString makeAndModel = ppd[QLatin1String("ppd-make-and-model")].toString(); + QString naturalLanguage = ppd[QLatin1String("ppd-natural-language")].toString(); + QString ppdName = ppd[QLatin1String("ppd-name")].toString(); // Set this data before we change the makeAndModel ret->setData(ppdName, PPDName); @@ -127,3 +124,5 @@ return ret; } + +#include "moc_PPDModel.cpp" diff -Nru print-manager-17.12.3/libkcups/PrinterModel.cpp print-manager-18.04.3/libkcups/PrinterModel.cpp --- print-manager-17.12.3/libkcups/PrinterModel.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/PrinterModel.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -36,92 +36,76 @@ #include +const static QStringList attrs(QStringList{ + KCUPS_PRINTER_NAME, + KCUPS_PRINTER_STATE, + KCUPS_PRINTER_STATE_MESSAGE, + KCUPS_PRINTER_IS_SHARED, + KCUPS_PRINTER_IS_ACCEPTING_JOBS, + KCUPS_PRINTER_TYPE, + KCUPS_PRINTER_LOCATION, + KCUPS_PRINTER_INFO, + KCUPS_PRINTER_MAKE_AND_MODEL, + KCUPS_PRINTER_COMMANDS, + KCUPS_MARKER_CHANGE_TIME, + KCUPS_MARKER_COLORS, + KCUPS_MARKER_LEVELS, + KCUPS_MARKER_NAMES, + KCUPS_MARKER_TYPES + }); + PrinterModel::PrinterModel(QObject *parent) : - QStandardItemModel(parent), - m_unavailable(true) + QStandardItemModel(parent) { - m_attributes << KCUPS_PRINTER_NAME; - m_attributes << KCUPS_PRINTER_STATE; - m_attributes << KCUPS_PRINTER_STATE_MESSAGE; - m_attributes << KCUPS_PRINTER_IS_SHARED; - m_attributes << KCUPS_PRINTER_IS_ACCEPTING_JOBS; - m_attributes << KCUPS_PRINTER_TYPE; - m_attributes << KCUPS_PRINTER_LOCATION; - m_attributes << KCUPS_PRINTER_INFO; - m_attributes << KCUPS_PRINTER_MAKE_AND_MODEL; - m_attributes << KCUPS_PRINTER_COMMANDS; - m_attributes << KCUPS_MARKER_CHANGE_TIME; - m_attributes << KCUPS_MARKER_COLORS; - m_attributes << KCUPS_MARKER_LEVELS; - m_attributes << KCUPS_MARKER_NAMES; - m_attributes << KCUPS_MARKER_TYPES; - - QHash roles = roleNames(); - roles[DestStatus] = "stateMessage"; - roles[DestName] = "printerName"; - roles[DestState] = "printerState"; - roles[DestIsDefault] = "isDefault"; - roles[DestIsShared] = "isShared"; - roles[DestIsAcceptingJobs] = "isAcceptingJobs"; - roles[DestIsPaused] = "isPaused"; - roles[DestIsClass] = "isClass"; - roles[DestLocation] = "location"; - roles[DestDescription] = "info"; - roles[DestKind] = "kind"; - roles[DestType] = "type"; - roles[DestCommands] = "commands"; - roles[DestMarkerChangeTime] = "markerChangeTime"; - roles[DestMarkers] = "markers"; - roles[DestIconName] = "iconName"; - roles[DestRemote] = "remote"; - setRoleNames(roles); + m_roles = QStandardItemModel::roleNames(); + m_roles[DestStatus] = "stateMessage"; + m_roles[DestName] = "printerName"; + m_roles[DestState] = "printerState"; + m_roles[DestIsDefault] = "isDefault"; + m_roles[DestIsShared] = "isShared"; + m_roles[DestIsAcceptingJobs] = "isAcceptingJobs"; + m_roles[DestIsPaused] = "isPaused"; + m_roles[DestIsClass] = "isClass"; + m_roles[DestLocation] = "location"; + m_roles[DestDescription] = "info"; + m_roles[DestKind] = "kind"; + m_roles[DestType] = "type"; + m_roles[DestCommands] = "commands"; + m_roles[DestMarkerChangeTime] = "markerChangeTime"; + m_roles[DestMarkers] = "markers"; + m_roles[DestIconName] = "iconName"; + m_roles[DestRemote] = "remote"; // This is emitted when a printer is added - connect(KCupsConnection::global(), SIGNAL(printerAdded(QString,QString,QString,uint,QString,bool)), this, - SLOT(insertUpdatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerAdded, this, &PrinterModel::insertUpdatePrinter); // This is emitted when a printer is modified - connect(KCupsConnection::global(), SIGNAL(printerModified(QString,QString,QString,uint,QString,bool)), this, - SLOT(insertUpdatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerModified, this, &PrinterModel::insertUpdatePrinter); // This is emitted when a printer has it's state changed - connect(KCupsConnection::global(), SIGNAL(printerStateChanged(QString,QString,QString,uint,QString,bool)), this, - SLOT(insertUpdatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerStateChanged, this, &PrinterModel::insertUpdatePrinter); // This is emitted when a printer is stopped - connect(KCupsConnection::global(), SIGNAL(printerStopped(QString,QString,QString,uint,QString,bool)), this, - SLOT(insertUpdatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerStopped, this, &PrinterModel::insertUpdatePrinter); // This is emitted when a printer is restarted - connect(KCupsConnection::global(), SIGNAL(printerRestarted(QString,QString,QString,uint,QString,bool)), this, - SLOT(insertUpdatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerRestarted, this, &PrinterModel::insertUpdatePrinter); // This is emitted when a printer is shutdown - connect(KCupsConnection::global(), SIGNAL(printerShutdown(QString,QString,QString,uint,QString,bool)), this, - SLOT(insertUpdatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerShutdown, this, &PrinterModel::insertUpdatePrinter); // This is emitted when a printer is removed - connect(KCupsConnection::global(), SIGNAL(printerDeleted(QString,QString,QString,uint,QString,bool)), this, - SLOT(printerRemoved(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerDeleted, this, &PrinterModel::printerRemoved); - connect(KCupsConnection::global(), SIGNAL(serverAudit(QString)), - SLOT(serverChanged(QString))); - connect(KCupsConnection::global(), SIGNAL(serverStarted(QString)), - SLOT(serverChanged(QString))); - connect(KCupsConnection::global(), SIGNAL(serverStopped(QString)), - SLOT(serverChanged(QString))); - connect(KCupsConnection::global(), SIGNAL(serverRestarted(QString)), - SLOT(serverChanged(QString))); + connect(KCupsConnection::global(), &KCupsConnection::serverAudit, this, &PrinterModel::serverChanged); + connect(KCupsConnection::global(), &KCupsConnection::serverStarted, this, &PrinterModel::serverChanged); + connect(KCupsConnection::global(), &KCupsConnection::serverStopped, this, &PrinterModel::serverChanged); + connect(KCupsConnection::global(), &KCupsConnection::serverRestarted, this, &PrinterModel::serverChanged); // Deprecated stuff that works better than the above - connect(KCupsConnection::global(), SIGNAL(rhPrinterAdded(QString)), - this, SLOT(insertUpdatePrinter(QString))); - - connect(KCupsConnection::global(), SIGNAL(rhPrinterRemoved(QString)), - this, SLOT(printerRemoved(QString))); - - connect(KCupsConnection::global(), SIGNAL(rhQueueChanged(QString)), - this, SLOT(insertUpdatePrinter(QString))); + connect(KCupsConnection::global(), &KCupsConnection::rhPrinterAdded, this, &PrinterModel::insertUpdatePrinterName); + connect(KCupsConnection::global(), &KCupsConnection::rhPrinterRemoved, this, &PrinterModel::printerRemovedName); + connect(KCupsConnection::global(), &KCupsConnection::rhQueueChanged, this, &PrinterModel::insertUpdatePrinterName); connect(this, &PrinterModel::rowsInserted, this, &PrinterModel::slotCountChanged); connect(this, &PrinterModel::rowsRemoved, this, &PrinterModel::slotCountChanged); @@ -130,9 +114,8 @@ update(); } -void PrinterModel::getDestsFinished() +void PrinterModel::getDestsFinished(KCupsRequest *request) { - KCupsRequest *request = qobject_cast(sender()); // When there is no printer IPP_NOT_FOUND is returned if (request->hasError() && request->error() != IPP_NOT_FOUND) { // clear the model after so that the proper widget can be shown @@ -149,7 +132,7 @@ emit serverUnavailableChanged(m_unavailable); } - KCupsPrinters printers = request->printers(); + const KCupsPrinters printers = request->printers(); for (int i = 0; i < printers.size(); ++i) { // If there is a printer and it's not the current one add it // as a new destination @@ -206,6 +189,11 @@ return m_unavailable; } +QHash PrinterModel::roleNames() const +{ + return m_roles; +} + void PrinterModel::pausePrinter(const QString &printerName) { QPointer request = new KCupsRequest; @@ -250,15 +238,15 @@ { // kcmshell(6331) PrinterModel::update: (QHash(("printer-type", QVariant(int, 75534348) ) ( "marker-names" , QVariant(QStringList, ("Cyan", "Yellow", "Magenta", "Black") ) ) ( "printer-name" , QVariant(QString, "EPSON_Stylus_TX105") ) ( "marker-colors" , QVariant(QStringList, ("#00ffff", "#ffff00", "#ff00ff", "#000000") ) ) ( "printer-location" , QVariant(QString, "Luiz Vitor’s MacBook Pro") ) ( "marker-levels" , QVariant(QList, ) ) ( "marker-types" , QVariant(QStringList, ("inkCartridge", "inkCartridge", "inkCartridge", "inkCartridge") ) ) ( "printer-is-shared" , QVariant(bool, true) ) ( "printer-state-message" , QVariant(QString, "") ) ( "printer-commands" , QVariant(QStringList, ("Clean", "PrintSelfTestPage", "ReportLevels") ) ) ( "marker-change-time" , QVariant(int, 1267903160) ) ( "printer-state" , QVariant(int, 3) ) ( "printer-info" , QVariant(QString, "EPSON Stylus TX105") ) ( "printer-make-and-model" , QVariant(QString, "EPSON TX105 Series") ) ) ) // Get destinations with these attributes - KCupsRequest *request = new KCupsRequest; + auto request = new KCupsRequest; connect(request, &KCupsRequest::finished, this, &PrinterModel::getDestsFinished); - request->getPrinters(m_attributes); + request->getPrinters(attrs); } void PrinterModel::insertDest(int pos, const KCupsPrinter &printer) { // Create the printer item - QStandardItem *stdItem = new QStandardItem(printer.name()); + auto stdItem = new QStandardItem(printer.name()); stdItem->setData(printer.name(), DestName); stdItem->setIcon(printer.icon()); // update the item @@ -360,12 +348,13 @@ int markerChangeTime = printer.markerChangeTime(); if (markerChangeTime != destItem->data(DestMarkerChangeTime)) { destItem->setData(printer.markerChangeTime(), DestMarkerChangeTime); - QVariantHash markers; - markers["marker-change-time"] = printer.markerChangeTime(); - markers["marker-colors"] = printer.argument("marker-colors"); - markers["marker-levels"] = printer.argument("marker-levels"); - markers["marker-names"] = printer.argument("marker-names"); - markers["marker-types"] = printer.argument("marker-types"); + const QVariantHash markers{ + {KCUPS_MARKER_CHANGE_TIME, printer.markerChangeTime()}, + {KCUPS_MARKER_COLORS, printer.argument(KCUPS_MARKER_COLORS)}, + {KCUPS_MARKER_LEVELS, printer.argument(KCUPS_MARKER_LEVELS)}, + {KCUPS_MARKER_NAMES, printer.argument(KCUPS_MARKER_NAMES)}, + {KCUPS_MARKER_TYPES, printer.argument(KCUPS_MARKER_TYPES)} + }; destItem->setData(markers, DestMarkers); } } @@ -425,13 +414,13 @@ } -void PrinterModel::insertUpdatePrinter(const QString &printerName) +void PrinterModel::insertUpdatePrinterName(const QString &printerName) { - KCupsRequest *request = new KCupsRequest; + auto request = new KCupsRequest; connect(request, &KCupsRequest::finished, this, &PrinterModel::insertUpdatePrinterFinished); // TODO how do we know if it's a class if this DBus signal // does not tell us - request->getPrinterAttributes(printerName, false, m_attributes); + request->getPrinterAttributes(printerName, false, attrs); } void PrinterModel::insertUpdatePrinter(const QString &text, @@ -448,14 +437,14 @@ Q_UNUSED(printerIsAcceptingJobs) qCDebug(LIBKCUPS) << text << printerUri << printerName << printerState << printerStateReasons << printerIsAcceptingJobs; - insertUpdatePrinter(printerName); + insertUpdatePrinterName(printerName); } -void PrinterModel::insertUpdatePrinterFinished() +void PrinterModel::insertUpdatePrinterFinished(KCupsRequest *request) { - KCupsRequest *request = qobject_cast(sender()); if (!request->hasError()) { - foreach (const KCupsPrinter &printer, request->printers()) { + const KCupsPrinters printers = request->printers(); + for (const KCupsPrinter &printer : printers) { // If there is a printer and it's not the current one add it // as a new destination int dest_row = destRow(printer.name()); @@ -471,7 +460,7 @@ request->deleteLater(); } -void PrinterModel::printerRemoved(const QString &printerName) +void PrinterModel::printerRemovedName(const QString &printerName) { qCDebug(LIBKCUPS) << printerName; @@ -533,3 +522,5 @@ qCDebug(LIBKCUPS) << text; update(); } + +#include "moc_PrinterModel.cpp" diff -Nru print-manager-17.12.3/libkcups/PrinterModel.h print-manager-18.04.3/libkcups/PrinterModel.h --- print-manager-17.12.3/libkcups/PrinterModel.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/PrinterModel.h 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -26,6 +26,7 @@ #include +class KCupsRequest; class Q_DECL_EXPORT PrinterModel : public QStandardItemModel { Q_OBJECT @@ -68,6 +69,8 @@ int count() const; bool serverUnavailable() const; + virtual QHash roleNames() const override; + Q_INVOKABLE void pausePrinter(const QString &printerName); Q_INVOKABLE void resumePrinter(const QString &printerName); Q_INVOKABLE void rejectJobs(const QString &printerName); @@ -75,7 +78,7 @@ public slots: void update(); - void getDestsFinished(); + void getDestsFinished(KCupsRequest *request); void slotCountChanged(); signals: @@ -84,15 +87,15 @@ void error(int lastError, const QString &errorTitle, const QString &errorMsg); private slots: - void insertUpdatePrinter(const QString &printerName); + void insertUpdatePrinterName(const QString &printerName); void insertUpdatePrinter(const QString &text, const QString &printerUri, const QString &printerName, uint printerState, const QString &printerStateReasons, bool printerIsAcceptingJobs); - void insertUpdatePrinterFinished(); - void printerRemoved(const QString &printerName); + void insertUpdatePrinterFinished(KCupsRequest *request); + void printerRemovedName(const QString &printerName); void printerRemoved(const QString &text, const QString &printerUri, const QString &printerName, uint printerState, const QString &printerStateReasons, bool printerIsAcceptingJobs); void printerStateChanged(const QString &text, const QString &printerUri, const QString &printerName, uint printerState, const QString &printerStateReasons, bool printerIsAcceptingJobs); void printerStopped(const QString &text, const QString &printerUri, const QString &printerName, uint printerState, const QString &printerStateReasons, bool printerIsAcceptingJobs); @@ -103,8 +106,8 @@ private: WId m_parentId; - QStringList m_attributes; - bool m_unavailable; + QHash m_roles; + bool m_unavailable = true; int destRow(const QString &destName); void insertDest(int pos, const KCupsPrinter &printer); diff -Nru print-manager-17.12.3/libkcups/PrinterSortFilterModel.cpp print-manager-18.04.3/libkcups/PrinterSortFilterModel.cpp --- print-manager-17.12.3/libkcups/PrinterSortFilterModel.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/PrinterSortFilterModel.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -78,21 +78,23 @@ return QSortFilterProxyModel::filterAcceptsRow(source_row, source_parent); } -bool PrinterSortFilterModel::lessThan(const QModelIndex &left, const QModelIndex &right) const -{ - bool leftIsRemote = sourceModel()->data(left, PrinterModel::DestRemote).toBool(); - bool rightIsRemote = sourceModel()->data(right, PrinterModel::DestRemote).toBool(); - bool leftDefault = sourceModel()->data(left, PrinterModel::DestIsDefault).toBool(); - bool rightDefault = sourceModel()->data(right, PrinterModel::DestIsDefault).toBool(); +//bool PrinterSortFilterModel::lessThan(const QModelIndex &left, const QModelIndex &right) const +//{ +// bool leftIsRemote = sourceModel()->data(left, PrinterModel::DestRemote).toBool(); +// bool rightIsRemote = sourceModel()->data(right, PrinterModel::DestRemote).toBool(); +// bool leftDefault = sourceModel()->data(left, PrinterModel::DestIsDefault).toBool(); +// bool rightDefault = sourceModel()->data(right, PrinterModel::DestIsDefault).toBool(); - if (leftDefault != rightDefault) { - return leftDefault; - } +// if (leftDefault != rightDefault) { +// return leftDefault; +// } - if (leftIsRemote != rightIsRemote) { - // If the right item is a remote the left should move right - return rightIsRemote; - } +// if (leftIsRemote != rightIsRemote) { +// // If the right item is a remote the left should move right +// return rightIsRemote; +// } - return QSortFilterProxyModel::lessThan(left, right); -} +// return QSortFilterProxyModel::lessThan(left, right); +//} + +#include "moc_PrinterSortFilterModel.cpp" diff -Nru print-manager-17.12.3/libkcups/PrinterSortFilterModel.h print-manager-18.04.3/libkcups/PrinterSortFilterModel.h --- print-manager-17.12.3/libkcups/PrinterSortFilterModel.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/PrinterSortFilterModel.h 2018-03-17 21:16:53.000000000 +0000 @@ -43,7 +43,7 @@ private: bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const Q_DECL_OVERRIDE; - bool lessThan(const QModelIndex &left, const QModelIndex &right) const Q_DECL_OVERRIDE; +// bool lessThan(const QModelIndex &left, const QModelIndex &right) const Q_DECL_OVERRIDE; QStringList m_filteredPrinters; }; diff -Nru print-manager-17.12.3/libkcups/ProcessRunner.cpp print-manager-18.04.3/libkcups/ProcessRunner.cpp --- print-manager-17.12.3/libkcups/ProcessRunner.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/ProcessRunner.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -29,15 +29,17 @@ void ProcessRunner::configurePrinter(const QString& printerName) { - QProcess::startDetached("configure-printer", {printerName}); + QProcess::startDetached(QLatin1String("configure-printer"), {printerName}); } void ProcessRunner::openPrintQueue(const QString& printerName) { - QProcess::startDetached("kde-print-queue", {printerName}); + QProcess::startDetached(QLatin1String("kde-print-queue"), {printerName}); } void ProcessRunner::openPrintKCM() { - QProcess::startDetached("kcmshell5", {"kcm_printer_manager"}); + QProcess::startDetached(QLatin1String("kcmshell5"), {QLatin1String("kcm_printer_manager")}); } + +#include "moc_ProcessRunner.cpp" diff -Nru print-manager-17.12.3/libkcups/SelectMakeModel.cpp print-manager-18.04.3/libkcups/SelectMakeModel.cpp --- print-manager-17.12.3/libkcups/SelectMakeModel.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/SelectMakeModel.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -29,7 +29,6 @@ #include #include #include -#include #include #include @@ -57,10 +56,7 @@ SelectMakeModel::SelectMakeModel(QWidget *parent) : QWidget(parent), - ui(new Ui::SelectMakeModel), - m_ppdRequest(0), - m_gotBestDrivers(false), - m_hasRecommended(false) + ui(new Ui::SelectMakeModel) { ui->setupUi(this); @@ -73,20 +69,19 @@ ui->makeView->setModel(m_sourceModel); ui->makeView->setItemDelegate(new NoSelectionRectDelegate(this)); // Updates the PPD view to the selected Make - connect(ui->makeView->selectionModel(), SIGNAL(currentChanged(QModelIndex,QModelIndex)), - ui->ppdsLV, SLOT(setRootIndex(QModelIndex))); + connect(ui->makeView->selectionModel(), &QItemSelectionModel::currentChanged, ui->ppdsLV, &QListView::setRootIndex); ui->ppdsLV->setModel(m_sourceModel); ui->ppdsLV->setItemDelegate(new NoSelectionRectDelegate(this)); connect(m_sourceModel, &PPDModel::dataChanged, this, &SelectMakeModel::checkChanged); // Clear the PPD view selection, so the Next/Finish button gets disabled - connect(ui->makeView->selectionModel(), SIGNAL(currentChanged(QModelIndex,QModelIndex)), - ui->ppdsLV->selectionModel(), SLOT(clearSelection())); + connect(ui->makeView->selectionModel(), &QItemSelectionModel::currentChanged, + ui->ppdsLV->selectionModel(), &QItemSelectionModel::clearSelection); // Make sure we update the Next/Finish button if a PPD is selected - connect(ui->ppdsLV->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), - this, SLOT(checkChanged())); + connect(ui->ppdsLV->selectionModel(), &QItemSelectionModel::selectionChanged, + this, &SelectMakeModel::checkChanged); // When the radio button changes the signal must be emitted connect(ui->ppdFileRB, &QRadioButton::toggled, this, &SelectMakeModel::checkChanged); @@ -150,24 +145,24 @@ } } -void SelectMakeModel::ppdsLoaded() +void SelectMakeModel::ppdsLoaded(KCupsRequest *request) { - if (m_ppdRequest->hasError()) { - qCWarning(LIBKCUPS) << "Failed to get PPDs" << m_ppdRequest->errorMsg(); - ui->messageWidget->setText(i18n("Failed to get a list of drivers: '%1'", m_ppdRequest->errorMsg())); + if (request->hasError()) { + qCWarning(LIBKCUPS) << "Failed to get PPDs" << request->errorMsg(); + ui->messageWidget->setText(i18n("Failed to get a list of drivers: '%1'", request->errorMsg())); ui->messageWidget->animatedShow(); // Force the changed signal to be sent checkChanged(); - m_ppdRequest = 0; } else { - m_ppds = m_ppdRequest->ppds(); + m_ppds = request->ppds(); // Try to show the PPDs setModelData(); } - sender()->deleteLater(); + m_ppdRequest = nullptr; + request->deleteLater(); } void SelectMakeModel::checkChanged() @@ -225,9 +220,10 @@ { if (message.type() == QDBusMessage::ReplyMessage && message.arguments().size() == 1) { QDBusArgument argument = message.arguments().first().value(); - m_driverMatchList = qdbus_cast(argument); + const DriverMatchList driverMatchList = qdbus_cast(argument); + m_driverMatchList = driverMatchList; m_hasRecommended = !m_driverMatchList.isEmpty(); - foreach (const DriverMatch &driverMatch, m_driverMatchList) { + for (const DriverMatch &driverMatch : driverMatchList) { qCDebug(LIBKCUPS) << driverMatch.ppd << driverMatch.match; } } else { @@ -278,8 +274,8 @@ void SelectMakeModel::selectMakeModelPPD() { - QList makes = m_sourceModel->findItems(m_make); - foreach (QStandardItem *make, makes) { + const QList makes = m_sourceModel->findItems(m_make); + for (QStandardItem *make : makes) { // Check if the item is in this make for (int i = 0; i < make->rowCount(); i++) { if (make->child(i)->data(PPDModel::PPDMakeAndModel).toString() == m_makeAndModel) { @@ -314,3 +310,5 @@ } } } + +#include "moc_SelectMakeModel.cpp" diff -Nru print-manager-17.12.3/libkcups/SelectMakeModel.h print-manager-18.04.3/libkcups/SelectMakeModel.h --- print-manager-17.12.3/libkcups/SelectMakeModel.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/libkcups/SelectMakeModel.h 2018-03-17 21:16:53.000000000 +0000 @@ -48,7 +48,7 @@ public slots: void checkChanged(); - void ppdsLoaded(); + void ppdsLoaded(KCupsRequest *request); signals: void changed(bool); @@ -63,15 +63,15 @@ void selectMakeModelPPD(); void selectRecommendedPPD(); - Ui::SelectMakeModel *ui; - PPDModel *m_sourceModel; - KCupsRequest *m_ppdRequest; ReturnArguments m_ppds; DriverMatchList m_driverMatchList; - bool m_gotBestDrivers; - bool m_hasRecommended; QString m_make; QString m_makeAndModel; + Ui::SelectMakeModel *ui; + PPDModel *m_sourceModel; + KCupsRequest *m_ppdRequest = nullptr; + bool m_gotBestDrivers = false; + bool m_hasRecommended = false; }; #endif diff -Nru print-manager-17.12.3/plasmoid/package/contents/ui/CompactRepresentation.qml print-manager-18.04.3/plasmoid/package/contents/ui/CompactRepresentation.qml --- print-manager-17.12.3/plasmoid/package/contents/ui/CompactRepresentation.qml 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/plasmoid/package/contents/ui/CompactRepresentation.qml 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -/* - * Copyright 2012-2013 Daniel Nicoletti - * Copyright 2014 Jan Grulich - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Library General Public License as - * published by the Free Software Foundation; either version 2 or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details - * - * You should have received a copy of the GNU Library General Public - * License along with this program; if not, write to the - * Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -import QtQuick 2.2 -import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddons -import org.kde.plasma.core 2.0 as PlasmaCore -import org.kde.plasma.components 2.0 as PlasmaComponents - -MouseArea { - id: panelIconWidget - - anchors.fill: parent - onClicked: plasmoid.expanded = !plasmoid.expanded - - PlasmaCore.IconItem { - id: connectionIcon - anchors.fill: parent - source: "printer" - } -} diff -Nru print-manager-17.12.3/plasmoid/package/contents/ui/printmanager.qml print-manager-18.04.3/plasmoid/package/contents/ui/printmanager.qml --- print-manager-17.12.3/plasmoid/package/contents/ui/printmanager.qml 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/plasmoid/package/contents/ui/printmanager.qml 2018-03-17 21:16:53.000000000 +0000 @@ -31,7 +31,6 @@ Plasmoid.toolTipMainText: i18n("Printers") Plasmoid.icon: "printer" - Plasmoid.compactRepresentation: CompactRepresentation { } Plasmoid.fullRepresentation: PopupDialog { id: dialogItem diff -Nru print-manager-17.12.3/po/ar/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ar/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ar/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ar/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-04-19 18:30+0300\n" "Last-Translator: Safa Alfulaij \n" "Language-Team: Arabic \n" @@ -83,15 +83,15 @@ msgid "Printers" msgstr "الطّابعات" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "ا&ضبط الطّابعات..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "طابور الطّباعة فارغ" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "ليس هناك مهامّ طباعة في الطّابور" diff -Nru print-manager-17.12.3/po/ar/print-manager.po print-manager-18.04.3/po/ar/print-manager.po --- print-manager-17.12.3/po/ar/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ar/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: ٢٠١٦-٠٢-١٠ ١٢:٤٤+0300\n" "Last-Translator: Safa Alfulaij \n" "Language-Team: Arabic \n" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "safa1996alfulaij@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "أضف طابعة جديدة" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "اختر طابعة لإضافتها" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "انتق طابعة" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "فضلًا صِف طابعتك" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "كلمة المرور" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "بلا" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -241,7 +241,7 @@ "" msgstr "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -316,71 +316,66 @@ msgid "Local Printers" msgstr "" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "أضف طابعة" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "أداة لإضافة طابعات جديدة" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "النّقل إلى كيوت 5 / بلازما 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "معرّف النّافذة الأمّ" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "أضف طابعة جديدة" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "أضف صنف طابعة جديد" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "يغيّر PPD للطّابعة المُعطاة" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "يغيّر PPD للطّابعة/معرّف الجهاز المُعطى" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "فشلت إضافة الصّنف: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -583,8 +578,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -606,7 +601,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -630,29 +625,29 @@ msgid "Printer to be configured" msgstr "الطّابعة لضبطها" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "الحاليّ - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "اختر مشغّلًا مخصّصًا" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "فشل ضبط الصّنف" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "فشل ضبط الطّابعة" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -751,67 +746,67 @@ msgid "Driver:" msgstr "المشغّل:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "أجهض المهمّة" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "أعد طباعة المهمّة الحاليّة" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "أعد طباعة المهمّة" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "أوقف الطّابعة" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "" @@ -870,7 +865,7 @@ msgid "A&llow these users to print" msgstr "ا&سمح لهؤلاء المستخدمين بالطّباعة" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "عيّن الخيارات الافتراضيّة" @@ -882,98 +877,98 @@ msgstr "استعلم الطّابعة عن الخيارات الافتراضيّة" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "اختر مشغّلًا" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "الحالة" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "الاسم" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "المستخدم" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "أُنشئت في" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "اكتملت في" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "الصّفحات" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "الحجم" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "رسالة الحالة" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "الطّابعة" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "من اسم المضيف" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "فشل نقل '%1' إلى '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "فشلت" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "منتظرة" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "متوقّفة" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "مُلغاة" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "مُجهضة" @@ -988,107 +983,107 @@ msgid "Wrong username or password" msgstr "اسم المستخدم أو كلمة المرور خاطئة" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "خدمة الطّباعة غير متوفّرة" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "لم يُعثر عليه" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "تعذّر إرسال الأمر إلى مشغّل الطّابعة!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, fuzzy, kde-format msgid "Recommended Drivers" msgstr "المشغّلات المستحسنة" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "الطّابعات" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "خاملة" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "خاملة، ترفض المهمّات" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "خاملة - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "خاملة، ترفض المهمّات - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "مستخدمة" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "مستخدمة - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "مُلبثة" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "مُلبثة - ترفض المهمّات" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "مُلبثة - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "مُلبثة - ترفض المهمّات - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "مجهولة" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "مجهولة - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "فشل جلب قائمة المشغّلات: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "فشل البحث عن مشغّل مستحسن: '%1'" @@ -1111,102 +1106,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "وفّر ملفّ PPD ي&دويًّا:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "اكتُشفت طابعة جديدة" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "اضبط الطّابعة الجديدة..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "أُضيفت طابعة جديدة" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "ينقص الطّابعة الجديدة مشغّلات" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "ينقص الطّابعة مشغّل" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "لا مشغّل طابعة ل‍ %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "لا مشغّل طابعة ل‍ %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "لا مشغّل لهذه الطّابعة." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "أُضيفت طابعة جديدة" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "ينقص الطّابعة الجديدة مشغّلات" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' جاهزة للطّباعة." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "اطبع صفحة اختبار" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "أُضيفت '%1'، فضلًا تحقّق من مشغّلها." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "أُضيفت '%1'، وهي تستخدم المشغّل '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "اطبع صفحة اختبار" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "اعثر على مشغّل" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' جاهزة للطّباعة." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "شارك هذا الصّنف" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "شارك هذه الطّابعة" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "نظّف رؤوس الطّباعة" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, fuzzy, kde-format msgid "Print Self-Test Page" msgstr "اطبع صفحة اختبار" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "فشل تنفيذ الطّلب: %1" @@ -1277,95 +1272,95 @@ msgid "Print Self Test Page" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "اطبع الإعدادات" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "أضف صنف طابعة" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "أزل الطّابعة" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "أظهر الطّابعات المشتركة بين الأنظمة الأخرى" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "أظهر الطّابعات المتّصل بهذا النّظام" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "اسمح بالطّباعة من الشّابكة" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "اسمح بالإدارة البعيدة" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "اسمح للمستخدمين بإلغاء أيّ مهمّة (وليس فقط مهامّهم)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "اضبط التّفضيلات العموميّة" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "لم تُضبط أو تُكتشف طابعات" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "أزل الصّنف" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "أتريد حقًّا إزالة الصّنف '%1'؟" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "أزل الطّابعة" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "أتريد حقًّا إزالة الطّابعة '%1'؟" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "فشل جلب إعدادات الخادوم" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1405,49 +1400,49 @@ msgid "Show printer queue(s)" msgstr "أظهر صفّ الطّابعة" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "الطّابعة جاهزة" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "ألبث الطّباعة" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "تطبع..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "تطبع '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "أُلبثت الطّباعة" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "استكمل الطّباعة" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "حالة الطّباعة مجهولة" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "انقل إلى" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1458,7 +1453,7 @@ msgstr[4] "كلّ الطّابعات (%1 مهمّة)" msgstr[5] "كلّ الطّابعات (%1 مهمّة)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1469,27 +1464,27 @@ msgstr[4] "%2 (%1 مهمّة)" msgstr[5] "%2 (%1 مهمّة)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "كلّ الطّابعات" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "فشل إلغاء '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "فشل إطلاق '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "فشلت إعادة طباعة '%1'" diff -Nru print-manager-17.12.3/po/ast/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ast/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ast/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ast/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2017-04-29 15:51+0100\n" "Last-Translator: enolp \n" "Language-Team: Asturian \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Imprentadores" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configurar imprentadores..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "" diff -Nru print-manager-17.12.3/po/ast/print-manager.po print-manager-18.04.3/po/ast/print-manager.po --- print-manager-17.12.3/po/ast/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ast/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2016-12-21 16:43+0100\n" "Last-Translator: enolp \n" "Language-Team: Asturian \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "alministradores@softastur.org" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -240,7 +240,7 @@ "" msgstr "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -315,71 +315,66 @@ msgid "Local Printers" msgstr "" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -582,8 +577,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -605,7 +600,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -627,29 +622,29 @@ msgid "Printer to be configured" msgstr "" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -748,67 +743,67 @@ msgid "Driver:" msgstr "" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "" @@ -867,7 +862,7 @@ msgid "A&llow these users to print" msgstr "" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "" @@ -879,98 +874,98 @@ msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "" @@ -985,107 +980,107 @@ msgid "Wrong username or password" msgstr "" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "" @@ -1108,102 +1103,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 #, kde-format -msgid "Missing printer driver" +msgid "The New Printer was Added" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:116 #, kde-format -msgid "No printer driver for %1 %2." +msgid "The New Printer is Missing Drivers" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format -msgid "No printer driver for %1." +msgid "Missing printer driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format -msgid "No driver for this printer." +msgid "No printer driver for %1 %2." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format -msgid "Search" +msgid "No printer driver for %1." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:126 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format -msgid "The New Printer was Added" +msgid "No driver for this printer." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format -msgid "The New Printer is Missing Drivers" +msgid "Search" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:167 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format -msgid "'%1' is ready for printing." +msgid "'%1' has been added, please check its driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format -msgid "Print test page" +msgid "'%1' has been added, using the '%2' driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 #, kde-format -msgid "'%1' has been added, please check its driver." +msgid "Print test page" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format -msgid "'%1' has been added, using the '%2' driver." +msgid "Find driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:270 #, kde-format -msgid "Find driver" +msgid "'%1' is ready for printing." msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "" @@ -1274,95 +1269,95 @@ msgid "Print Self Test Page" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1402,83 +1397,83 @@ msgid "Show printer queue(s)" msgstr "" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "" msgstr[1] "" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "" msgstr[1] "" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "" diff -Nru print-manager-17.12.3/po/bg/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/bg/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/bg/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/bg/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2014-05-18 23:43+0200\n" "Last-Translator: Svetoslav Stefanov \n" "Language-Team: BULGARIAN \n" @@ -80,15 +80,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Опашката за печат е празна" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Има една задача в опашката за печат" diff -Nru print-manager-17.12.3/po/bg/print-manager.po print-manager-18.04.3/po/bg/print-manager.po --- print-manager-17.12.3/po/bg/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/bg/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2014-05-18 23:39+0200\n" "Last-Translator: Svetoslav Stefanov \n" "Language-Team: BULGARIAN \n" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "svetlisashkov@yahoo.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Добавяне на нов принтер" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Изберете принтер за добавяне" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Изберете драйвер" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Моля опишете принтера си" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "Парола" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Без" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Четен" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Нечетен" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Софтуерен)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Хардуерен)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -241,7 +241,7 @@ "" msgstr "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -320,71 +320,67 @@ msgid "Local Printers" msgstr "Локални принтери" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Неуспешно групиране на устройства: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Добавяне на принтер" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Инструмент за добавяне на нови принтери" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ИД на главния прозорец" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Добавяне на нов принтер" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Добавяне на нов клас принтери" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Променя PPD на даден принтер" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Променя PPD на идентификатора даден принтер/устройство" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Неуспешно добавяне на клас: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -591,8 +587,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -614,7 +610,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Банери, политики и права на достъп" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -641,29 +637,29 @@ msgid "Printer to be configured" msgstr "Неуспешно настройване на клас" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Текущ - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Изберете потребителски драйвер" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Неуспешно настройване на клас" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Неуспешно настройване на принтер" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -762,67 +758,67 @@ msgid "Driver:" msgstr "Драйвер:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Прекъсване на задачата" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Повторно опитване на текущата задача" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Повторен опит" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Спиране на принтера" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Удостоверен" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "По подразбиране" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Без" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Класифицирано" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Поверително" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Секретно" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Стандартно" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Свръхсекретно" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Публично" @@ -883,7 +879,7 @@ msgid "A&llow these users to print" msgstr "Разрешаване на тези потребители да печатат" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Задаване на стандартните настройки" @@ -895,98 +891,98 @@ msgstr "Получаване на стандартните настройки от принтера" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Изберете драйвер" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Състояние" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Име" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Потребител" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Създаден" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Завършен" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Страници" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Обработен" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Големина" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Съобщение за състоянието" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Принтер" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "От името на хоста" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Неуспешно преместване на '%1' в '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Неуспех" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "На опашката" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Задържане" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Спряна" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Отказана" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Прекъсната" @@ -1001,107 +997,107 @@ msgid "Wrong username or password" msgstr "Неправилно име или парола" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Услугата за печат не е налична" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Не е открито" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Тестова страница" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Не може да се изпрати команда към драйвера на принтера!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Неуспешно извикване на метод: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Препоръчителни драйвери" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Принтери" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "В покой" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "В покой, отхвърля задачите" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "В покой - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "В покой, отхвърля задачите - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Използва се" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Използва се - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "На пауза" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "На пауза, отхвърля задачите" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "На пауза - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "На пауза, отхвърля задачите - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Неизвестно" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Неизвестно - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Неуспешно получаване на списък с драйвери: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Неуспешно търсене за препоръчителен драйвер: '%1'" @@ -1126,102 +1122,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Ръчно изберете PPD файл:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Засечен е нов принтер" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Настройване на новият принтер..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Новият принтер беше добавен" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Липсват драйвери за новия принтер" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Липсва драйвер за принтера" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Няма драйвер за принтера %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Няма драйвер за принтера %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Липсва драйвер за този принтер." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Търсене" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Новият принтер беше добавен" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Липсват драйвери за новия принтер" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' е готов за печат" - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Отпечатване на тестова страница" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' беше добавен, моля проверете драйвера му." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1' беше добавен. Използва бе драйвера '%2' driver." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Отпечатване на тестова страница" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Търсене на драйвер" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' е готов за печат" + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Споделяне на класа" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Споделяне на принтера" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Почистване на главите" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Печат на само-тестова страница" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Неуспешно използване на заявкатаt: %1" @@ -1292,95 +1288,95 @@ msgid "Print Self Test Page" msgstr "Печат на само-тестова страница" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Настройки за печат" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Добавяне на нов клас принтери" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Добавяне на нов принтер или клас принтери" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Премахване на принтер" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Показване на споделените принтери от други системи" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Споделяне на принтерите, свързани към тази система" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Разрешаване печат от Интернет" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Разрешаване на отдалечена администрация" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Разрешаване на потребителите да спират задачи (не само своите)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Настройване на глобалните настройки" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Не бяха настроени или открити принтери" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Премахване на клас" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Сигурни ли сте, че желаете да премахнете класа '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Премахване на принтер" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Сигурни ли сте, че желаете да премахнете принтера '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Неуспешно получаване на настройките на сървъра" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1422,83 +1418,83 @@ msgid "Show printer queue(s)" msgstr "Показване на опашката за отпечатване" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Принтерът е готов" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Пауза на принтера" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Печат..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Печат на '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Принтерът е на пауза" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Продължаване на печата" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Неизвестно състояние на принтера" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Преместване в" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Всички принтери (%1 задача)" msgstr[1] "Всички принтери (%1 задачи)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 задача)" msgstr[1] "%2 (%1 задачи)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Всички принтери" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Неуспешно отказване на '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Неуспешно задържане на '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Неуспешно освобождаване на '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Неуспешно повторно отпечатане на '%1'" @@ -1557,6 +1553,9 @@ msgid "All Jobs" msgstr "Всички задачи" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Добавяне на принтер" diff -Nru print-manager-17.12.3/po/bs/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/bs/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/bs/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/bs/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kde 49i410\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2013-10-18 22:34+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian\n" @@ -84,15 +84,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Red čekanja štampača je prazan" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Ima %1 posao štampanja u redu čekanja" diff -Nru print-manager-17.12.3/po/bs/print-manager.po print-manager-18.04.3/po/bs/print-manager.po --- print-manager-17.12.3/po/bs/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/bs/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kde 49i410\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2014-10-20 19:25+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian\n" @@ -30,38 +30,38 @@ msgid "Your emails" msgstr "Samir.ribic@etf.unsa.ba,vljubovic@smartnet.ba,ena.tomic@hotmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Dodaj novi štampač" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Odaberi štampač za dodati" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Odaberi drajver" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Molimo odaberi svoj štampač" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -129,37 +129,37 @@ msgid "Password" msgstr "Lozinka" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Nijedan" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Parno" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Neparno" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (softverska)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (hardverska)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -265,7 +265,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -344,71 +344,67 @@ msgid "Local Printers" msgstr "Lokalni štampači" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Neuspjelo grupiranje uređaja: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Dodaj štampač" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Alat za dodavanje novih štampača" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID roditeljskog prozora" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Dodaj novi štampač" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Dodaj klasu štampača" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Mijenja PPD datog štampača" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Mijenja PPD datog štampača/deviceid" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Neuspjelo dodavanje klase: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -615,8 +611,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -638,7 +634,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Transparenti, Pravila i dopušteni korisnici" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -662,29 +658,29 @@ msgid "Printer to be configured" msgstr "Neuspjelo konfigurisanje klase" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Tekuće - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Odaberi vlastiti drajver" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Neuspjelo konfigurisanje klase" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Neuspjelo konfigurisanje štampača" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -820,68 +816,68 @@ msgid "Driver:" msgstr "Drajver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Obustavi posao" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Ponovi tekući posao" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Ponovi posao" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Zaustavi štampač" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autentifikovan" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Podrazumijevano" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Nijedan" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Povjerljivo" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Povjerljivo" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Tajno" # >> @item -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standardni" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Najveća tajna" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Nesvrstani" @@ -940,7 +936,7 @@ msgid "A&llow these users to print" msgstr "Dopusti ovim korisnicima štampanje" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Postavi zadane opcije" @@ -952,99 +948,99 @@ msgstr "Ispitaj štampač za zadane opcije" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Odaberi upravljački program" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Status" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Ime" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Korisnik" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Napravljeno" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Završeno" # >> @title:window -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Stranice" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Obrađeno" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Veličina" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Statusna poruka" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Štampač" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Od imena hosta" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Neuspjelo premještanje '%1' u '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Nije uspjelo" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Čekajuće" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Na čekanju" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Zaustavljen" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Otkazano" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Prekinuto" @@ -1059,107 +1055,107 @@ msgid "Wrong username or password" msgstr "Pogrešno korisničko ime ili lozinka" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Usluga štampača je nedostupna" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nije nađeno" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testna stranica" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Nemoguće poslati naredbu drajveru štampača" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Neuspjelo prizivanje metode: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Preporučeni drajveri" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Štampači" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Miruje" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Neaktivnim, Odbaci poslove" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Miruje - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Neaktivan, odbijam poslove - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "U upotrebi" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "U upotrebi - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Pauzirano" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Pauzirano, Odbaci poslove" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Zaustavljeno - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Zaustavljeno, odbijam poslove - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Nepoznat" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Nepoznato - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Neuspjelo dobivanje liste drajvera: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Neuspjelo traženje preporučenih drajvera: '%1'" @@ -1182,102 +1178,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Ručno obezbijedi PPD datoteku:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Novi printer je prepoznat" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Konfigurisanje novog printera..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Novi štampač je dodan" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Novom štampaču nedostaju drajveri" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Nedostaje upravljački program štampača" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Nema upravljačkog programa štampača za %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Nema upravljačkog programa štampača za %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Nema upravljačkog programa za ovaj štampač." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Traži" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Novi štampač je dodan" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Novom štampaču nedostaju drajveri" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1 je spremno za štampanje." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Odštampaj probnu stranicu" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' je dodan, molimo provjeri njegov drajver." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1 ' je dodan, koristeći '%2' drajver." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Odštampaj probnu stranicu" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Nađi upravljački program" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1 je spremno za štampanje." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Podijeli ovu klasu" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Podijeli ovaj printer" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Očisti glave štampača" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Odštampaj probnu stranicu" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Neuspjelo dobavljanje zahtjeva: '%1'" @@ -1348,95 +1344,95 @@ msgid "Print Self Test Page" msgstr "Štampaj testnu stranicu" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Postavke ispisa" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Dodaj klasu štampača" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Dodaj novi štampač ili klasu štampača" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Ukloni štampač" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Prikaži štampače dijeljene s drugih sistema" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Dijeli štampače povezane na ovaj sistem" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Dozvoli štampanje preko Interneta" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Dopusti udaljeno administriranje" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Dopusti korisnicima da prekinu bilo koji zadatak (ne samo svoj)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Konfiguriši globalne postavke" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nema konfigurisanih ili otkrivenih štampača" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Premjesti klasu" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Jesi li siguran da želiš premjestiti klasu '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Premjesti štampač" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Jesi li siguran da želiš premjestiti štampač '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Neuspjelo dobivanje postavki servera" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1476,49 +1472,49 @@ msgid "Show printer queue(s)" msgstr "Prikaži red štampanja" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Štampač spreman" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pauziraj štampač" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Štampam..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Štampanje '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Štampač zaustavljen" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Ponovno pokreni štampač" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Stanje štampača nepoznato" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Premjesti u" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1526,7 +1522,7 @@ msgstr[1] "Svi štampači (%1 zadatka)" msgstr[2] "Svi štampači (%1 zadataka)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1534,27 +1530,27 @@ msgstr[1] "%2 (%1 zadatka)" msgstr[2] "%2 (%1 zadataka)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Svi štampači" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Neuspjelo otkazivanje '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Neuspjelo zadržati '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Neuspjelo osloboditi '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Neuspjelo ponovno štampanje: '%1'" @@ -1613,6 +1609,9 @@ msgid "All Jobs" msgstr "Svi poslovi" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Dodaj štampač" diff -Nru print-manager-17.12.3/po/ca/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ca/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ca/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ca/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.plasma.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 19:55+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -76,16 +76,51 @@ msgid "Printers" msgstr "Impressores" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configura les impressores..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "La cua d'impressió és buida" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Hi ha un treball d'impressió en la cua" msgstr[1] "Hi ha %1 treballs d'impressió en la cua" + +#, fuzzy +#~| msgid "Active jobs only" +#~ msgid "%1 active jobs" +#~ msgstr "Només els treballs actius" + +#~ msgid "Only show jobs from the following printers:" +#~ msgstr "Mostra només els treballs de les impressores següents:" + +#~ msgid "Cancel" +#~ msgstr "Cancel·la" + +#~ msgid "Reprint" +#~ msgstr "Torna a imprimir" + +#~ msgid "Hold" +#~ msgstr "Retén" + +#~ msgid "Release" +#~ msgstr "Allibera" + +#~ msgid "Owner:" +#~ msgstr "Propietari:" + +#~ msgid "Size:" +#~ msgstr "Mida:" + +#~ msgid "Created:" +#~ msgstr "Creat:" + +#~ msgid "" +#~ "There is currently no available printer matching the selected filters" +#~ msgstr "" +#~ "Actualment no hi ha cap impressora disponible que coincideixi amb els " +#~ "filtres seleccionats" diff -Nru print-manager-17.12.3/po/ca/print-manager.po print-manager-18.04.3/po/ca/print-manager.po --- print-manager-17.12.3/po/ca/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ca/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -1,16 +1,16 @@ # Translation of print-manager.po to Catalan -# Copyright (C) 2012-2015 This_file_is_part_of_KDE +# Copyright (C) 2012-2018 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # # Josep Ma. Ferrer , 2012, 2013, 2015. -# Antoni Bella Pérez , 2015. +# Antoni Bella Pérez , 2015, 2018. msgid "" msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-11-11 23:18+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-25 10:02+0100\n" "Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -31,38 +31,38 @@ msgid "Your emails" msgstr "txemaq@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Afegeix una impressora nova" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Selecció de la impressora a afegir" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Selecció d'un controlador" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Descripció de la impressora" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -130,37 +130,37 @@ msgid "Password" msgstr "Contrasenya" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Cap" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Parells" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Senars" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Programari)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Maquinari)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -266,7 +266,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -345,71 +345,66 @@ msgid "Local Printers" msgstr "Impressores locals" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Ha fallat en agrupar dispositius: «%1»" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Afegeix una impressora" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Eina per afegir impressores noves" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Adaptació a les Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID de la finestra pare" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Afegeix una impressora nova" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Afegeix una classe nova d'impressora" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Canvia el PPD d'una impressora indicada" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Canvia el PPD d'una impressora indicada/ID de dispositiu" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Ha fallat en afegir una classe: «%1»" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -616,8 +611,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -639,7 +634,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Bàners, polítiques i usuaris permesos" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -663,29 +658,29 @@ msgid "Printer to be configured" msgstr "Impressora a configurar" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Actual - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Selecciona un controlador personalitzat" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Ha fallat en configurar la classe" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Ha fallat en configurar la impressora" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -822,67 +817,67 @@ msgid "Driver:" msgstr "Controlador:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Interromp el treball" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Reintenta el treball actual" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Reintenta el treball" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Atura la impressora" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autenticat" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Per defecte" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Cap" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Classificat" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidencial" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secret" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Estàndard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Molt secret" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Sense classificar" @@ -941,7 +936,7 @@ msgid "A&llow these users to print" msgstr "Per&met que aquests usuaris imprimeixin" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Defineix les opcions per defecte" @@ -953,98 +948,98 @@ msgstr "Consulta a la impressora per les opcions per defecte" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Selecciona un controlador" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Estat" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nom" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Usuari" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Creat" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Completat" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Pàgines" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Processat" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Mida" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Missatge d'estat" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Impressora" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Des del nom d'ordinador" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Ha fallat en moure «%1» a «%2»" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Ha fallat" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Pendent" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Retingut" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Aturat" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cancel·lat" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Interromput" @@ -1059,107 +1054,107 @@ msgid "Wrong username or password" msgstr "Nom d'usuari o contrasenya no vàlids" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "El servei de la impressió no està disponible" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "No s'ha trobat" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Pàgina de prova" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "No s'ha pogut enviar l'ordre al controlador de la impressora!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Ha fallat en invocar un mètode: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Controladors recomanats" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Impressores" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "En espera" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "En espera, rebutja els treballs" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "En espera - «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "En espera, rebutja els treballs - «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "En ús" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "En ús - «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "En pausa" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "En pausa, rebutja els treballs" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "En pausa - «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "En pausa, rebutja els treballs - «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Desconegut" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Desconegut - «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Ha fallat en obtenir una llista dels controladors: «%1»" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Ha fallat en cercar un controlador recomanat: «%1»" @@ -1182,102 +1177,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Proporciona ma&nualment un fitxer PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "S'ha detectat una impressora nova" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "S'està configurant la impressora nova..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "S'ha afegit la impressora nova" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Manquen els controladors per a la impressora nova" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Falta el controlador de la impressora" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "No hi ha cap controlador d'impressora per %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "No hi ha cap controlador d'impressora per %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "No hi ha cap controlador per aquesta impressora." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Cerca" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "S'ha afegit la impressora nova" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Manquen els controladors per a la impressora nova" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "«%1» està preparada per imprimir." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Imprimeix una pàgina de prova" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "S'ha afegit «%1», verifiqueu el seu controlador." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "S'ha afegit «%1» usant el controlador «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Imprimeix una pàgina de prova" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Cerca un controlador" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "«%1» està preparada per imprimir." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Comparteix aquesta classe" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Comparteix aquesta impressora" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Neteja els capçals de la impressió" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Imprimeix la pàgina d'autocomprovació" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Ha fallat en portar a terme la sol·licitud: %1" @@ -1348,96 +1343,96 @@ msgid "Print Self Test Page" msgstr "Imprimeix la pàgina d'autocomprovació" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Configuració de la impressió" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Afegeix una classe d'impressora" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Afegeix una impressora nova o una classe d'impressora" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Elimina la impressora" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Mostra les impressores compartides per altres sistemes" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Comparteix les impressores connectades a aquest sistema" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permet la impressió des d'Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permet l'administració remota" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" "Permet que els usuaris cancel·lin qualsevol treball (no només els seus)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configura les preferències globals" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "No s'ha descobert o configurat cap impressora" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Elimina la classe" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Esteu segur que voleu eliminar la classe «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Elimina la impressora" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Esteu segur que voleu eliminar la impressora «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Ha fallat en obtenir els paràmetres del servidor" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1477,83 +1472,83 @@ msgid "Show printer queue(s)" msgstr "Mostra la cua de la impressió" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Impressora preparada" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pausa la impressora" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "S'està imprimint..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "S'està imprimint «%1»" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Impressora en pausa" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Reprèn la impressora" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Estat desconegut de la impressora" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Mou a" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Totes les impressores (%1 treball)" msgstr[1] "Totes les impressores (%1 treballs)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 treball)" msgstr[1] "%2 (%1 treballs)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Totes les impressores" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Ha fallat en cancel·lar «%1»" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Ha fallat en retenir «%1»" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Ha fallat en alliberar «%1»" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Ha fallat en tornar a imprimir: «%1»" @@ -1611,3 +1606,58 @@ #, kde-format msgid "All Jobs" msgstr "Tots els treballs" + +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + +#~ msgid "AddPrinter" +#~ msgstr "Afegir impressora" + +#~ msgid "Configure printer" +#~ msgstr "Configuració d'impressora" + +#, fuzzy +#~| msgid "Only Jobs from Printer:" +#~ msgid "Only show jobs from the following printers:" +#~ msgstr "Només treballs de la impressora:" + +#, fuzzy +#~| msgid "All Jobs" +#~ msgid "All jobs" +#~ msgstr "Tots els treballs" + +#, fuzzy +#~| msgid "Completed Jobs" +#~ msgid "Completed jobs only" +#~ msgstr "Treballs completats" + +#, fuzzy +#~| msgid "Active Jobs" +#~ msgid "Active jobs only" +#~ msgstr "Treballs actius" + +#~ msgid "A short binary option" +#~ msgstr "Una opció binària curta" + +#, fuzzy +#~| msgid "Completed Jobs" +#~ msgid "Show all jobs" +#~ msgstr "Treballs completats" + +#, fuzzy +#~| msgid "Completed Jobs" +#~ msgid "Show only active jobs" +#~ msgstr "Treballs completats" + +#, fuzzy +#~| msgid "Completed Jobs" +#~ msgid "Show only completed jobs" +#~ msgstr "Treballs completats" + +#, fuzzy +#~| msgid "PrintQueue" +#~ msgid "Print queue is empty" +#~ msgstr "CuaImpressió" + +#~ msgid "All printers" +#~ msgstr "Totes les impressores" diff -Nru print-manager-17.12.3/po/ca@valencia/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ca@valencia/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ca@valencia/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ca@valencia/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.plasma.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 19:55+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -38,7 +38,7 @@ #: plasmoid/package/contents/ui/PopupDialog.qml:48 msgid "Search for a printer..." -msgstr "Busca impressores..." +msgstr "Cerca impressores..." #: plasmoid/package/contents/ui/PopupDialog.qml:98 msgid "No printers have been configured or discovered" @@ -76,16 +76,51 @@ msgid "Printers" msgstr "Impressores" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configura les impressores..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "La cua d'impressió és buida" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Hi ha un treball d'impressió en la cua" msgstr[1] "Hi ha %1 treballs d'impressió en la cua" + +#, fuzzy +#~| msgid "Active jobs only" +#~ msgid "%1 active jobs" +#~ msgstr "Només els treballs actius" + +#~ msgid "Only show jobs from the following printers:" +#~ msgstr "Mostra només els treballs de les impressores següents:" + +#~ msgid "Cancel" +#~ msgstr "Cancel·la" + +#~ msgid "Reprint" +#~ msgstr "Torna a imprimir" + +#~ msgid "Hold" +#~ msgstr "Retén" + +#~ msgid "Release" +#~ msgstr "Allibera" + +#~ msgid "Owner:" +#~ msgstr "Propietari:" + +#~ msgid "Size:" +#~ msgstr "Mida:" + +#~ msgid "Created:" +#~ msgstr "Creat:" + +#~ msgid "" +#~ "There is currently no available printer matching the selected filters" +#~ msgstr "" +#~ "Actualment no hi ha cap impressora disponible que coincideixi amb els " +#~ "filtres seleccionats" diff -Nru print-manager-17.12.3/po/ca@valencia/print-manager.po print-manager-18.04.3/po/ca@valencia/print-manager.po --- print-manager-17.12.3/po/ca@valencia/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ca@valencia/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -1,16 +1,16 @@ # Translation of print-manager.po to Catalan (Valencian) -# Copyright (C) 2012-2015 This_file_is_part_of_KDE +# Copyright (C) 2012-2018 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # # Josep Ma. Ferrer , 2012, 2013, 2015. -# Antoni Bella Pérez , 2015. +# Antoni Bella Pérez , 2015, 2018. msgid "" msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-11-11 23:18+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-25 10:02+0100\n" "Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" @@ -31,38 +31,38 @@ msgid "Your emails" msgstr "txemaq@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Afig una impressora nova" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Selecció de la impressora a afegir" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Selecció d'un controlador" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Descripció de la impressora" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -130,37 +130,37 @@ msgid "Password" msgstr "Contrasenya" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Cap" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Parells" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Senars" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Programari)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Maquinari)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -266,7 +266,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -345,71 +345,66 @@ msgid "Local Printers" msgstr "Impressores locals" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Ha fallat en agrupar dispositius: «%1»" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Afig una impressora" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Eina per afegir impressores noves" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Adaptació a les Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID de la finestra pare" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Afig una impressora nova" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Afig una classe nova d'impressora" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Canvia el PPD d'una impressora indicada" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Canvia el PPD d'una impressora indicada/ID de dispositiu" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Ha fallat en afegir una classe: «%1»" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -449,7 +444,7 @@ #, kde-format msgctxt "@option:check" msgid "Share this printer" -msgstr "Comparteix esta impressora" +msgstr "Comparteix aquesta impressora" #. i18n: ectx: property (text), widget (QLabel, label) #: add-printer/PageChoosePrinters.ui:96 @@ -616,8 +611,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -639,7 +634,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Bàners, polítiques i usuaris permesos" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -663,29 +658,29 @@ msgid "Printer to be configured" msgstr "Impressora a configurar" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Actual - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Selecciona un controlador personalitzat" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Ha fallat en configurar la classe" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Ha fallat en configurar la impressora" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -822,67 +817,67 @@ msgid "Driver:" msgstr "Controlador:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Interromp el treball" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Reintenta el treball actual" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Reintenta el treball" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Atura la impressora" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autenticat" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Per defecte" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Cap" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Classificat" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidencial" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secret" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Estàndard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Molt secret" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Sense classificar" @@ -933,15 +928,15 @@ #: configure-printer/PrinterBehavior.ui:139 #, kde-format msgid "Pre&vent these users from printing " -msgstr "Impedei&x que estos usuaris imprimisquen " +msgstr "Impedei&x que aquests usuaris imprimisquen " #. i18n: ectx: property (text), widget (QRadioButton, allowRB) #: configure-printer/PrinterBehavior.ui:146 #, kde-format msgid "A&llow these users to print" -msgstr "Per&met que estos usuaris imprimisquen" +msgstr "Per&met que aquests usuaris imprimisquen" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Defineix les opcions per defecte" @@ -953,98 +948,98 @@ msgstr "Consulta a la impressora per les opcions per defecte" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Selecciona un controlador" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Estat" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nom" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Usuari" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Creat" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Completat" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Pàgines" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Processat" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Mida" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Missatge d'estat" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Impressora" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Des del nom d'ordinador" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Ha fallat en moure «%1» a «%2»" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Ha fallat" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Pendent" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Retingut" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Aturat" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cancel·lat" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Interromput" @@ -1059,110 +1054,110 @@ msgid "Wrong username or password" msgstr "Nom d'usuari o contrasenya no vàlids" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "El servei de la impressió no està disponible" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "No s'ha trobat" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Pàgina de prova" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" -msgstr "No s'ha pogut enviar l'orde al controlador de la impressora!" +msgstr "No s'ha pogut enviar l'ordre al controlador de la impressora!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Ha fallat en invocar un mètode: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Controladors recomanats" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Impressores" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "En espera" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "En espera, rebutja els treballs" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "En espera - «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "En espera, rebutja els treballs - «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "En ús" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "En ús - «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "En pausa" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "En pausa, rebutja els treballs" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "En pausa - «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "En pausa, rebutja els treballs - «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Desconegut" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Desconegut - «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Ha fallat en obtindre una llista dels controladors: «%1»" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" -msgstr "Ha fallat en buscar un controlador recomanat: «%1»" +msgstr "Ha fallat en cercar un controlador recomanat: «%1»" #. i18n: ectx: property (filter), widget (KUrlRequester, ppdFilePathUrl) #: libkcups/SelectMakeModel.ui:44 @@ -1182,102 +1177,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Proporciona ma&nualment un fitxer PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "S'ha detectat una impressora nova" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "S'està configurant la impressora nova..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "S'ha afegit la impressora nova" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Manquen els controladors per a la impressora nova" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Falta el controlador de la impressora" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "No hi ha cap controlador d'impressora per %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "No hi ha cap controlador d'impressora per %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." -msgstr "No hi ha cap controlador per esta impressora." +msgstr "No hi ha cap controlador per aquesta impressora." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" -msgstr "Busca" - -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "S'ha afegit la impressora nova" +msgstr "Cerca" -#: print-manager-kded/NewPrinterNotification.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Manquen els controladors per a la impressora nova" +msgid "'%1' has been added, please check its driver." +msgstr "S'ha afegit «%1», verifiqueu el seu controlador." -#: print-manager-kded/NewPrinterNotification.cpp:167 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format -msgid "'%1' is ready for printing." -msgstr "«%1» està preparada per imprimir." +msgid "'%1' has been added, using the '%2' driver." +msgstr "S'ha afegit «%1» usant el controlador «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 #, kde-format msgid "Print test page" msgstr "Imprimeix una pàgina de prova" -#: print-manager-kded/NewPrinterNotification.cpp:177 -#, kde-format -msgid "'%1' has been added, please check its driver." -msgstr "S'ha afegit «%1», verifiqueu el seu controlador." - -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format -msgid "'%1' has been added, using the '%2' driver." -msgstr "S'ha afegit «%1» usant el controlador «%2»." +msgid "Find driver" +msgstr "Cerca un controlador" -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:270 #, kde-format -msgid "Find driver" -msgstr "Busca un controlador" +msgid "'%1' is ready for printing." +msgstr "«%1» està preparada per imprimir." -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" -msgstr "Comparteix esta classe" +msgstr "Comparteix aquesta classe" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" -msgstr "Comparteix esta impressora" +msgstr "Comparteix aquesta impressora" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Neteja els capçals de la impressió" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Imprimeix la pàgina d'autocomprovació" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Ha fallat en portar a terme la sol·licitud: %1" @@ -1348,96 +1343,96 @@ msgid "Print Self Test Page" msgstr "Imprimeix la pàgina d'autocomprovació" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Configuració de la impressió" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Afig una classe d'impressora" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Afig una impressora nova o una classe d'impressora" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Elimina la impressora" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Mostra les impressores compartides per altres sistemes" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" -msgstr "Comparteix les impressores connectades a este sistema" +msgstr "Comparteix les impressores connectades a aquest sistema" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permet la impressió des d'Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permet l'administració remota" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" "Permet que els usuaris cancel·lin qualsevol treball (no només els seus)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configura les preferències globals" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "No s'ha descobert o configurat cap impressora" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Elimina la classe" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Esteu segur que voleu eliminar la classe «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Elimina la impressora" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Esteu segur que voleu eliminar la impressora «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Ha fallat en obtindre els paràmetres del servidor" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1477,83 +1472,83 @@ msgid "Show printer queue(s)" msgstr "Mostra la cua de la impressió" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Impressora preparada" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pausa la impressora" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "S'està imprimint..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "S'està imprimint «%1»" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Impressora en pausa" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Reprén la impressora" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Estat desconegut de la impressora" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Mou a" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Totes les impressores (%1 treball)" msgstr[1] "Totes les impressores (%1 treballs)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 treball)" msgstr[1] "%2 (%1 treballs)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Totes les impressores" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Ha fallat en cancel·lar «%1»" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Ha fallat en retindre «%1»" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Ha fallat en alliberar «%1»" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Ha fallat en tornar a imprimir: «%1»" @@ -1611,3 +1606,58 @@ #, kde-format msgid "All Jobs" msgstr "Tots els treballs" + +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + +#~ msgid "AddPrinter" +#~ msgstr "Afegir impressora" + +#~ msgid "Configure printer" +#~ msgstr "Configuració d'impressora" + +#, fuzzy +#~| msgid "Only Jobs from Printer:" +#~ msgid "Only show jobs from the following printers:" +#~ msgstr "Només treballs de la impressora:" + +#, fuzzy +#~| msgid "All Jobs" +#~ msgid "All jobs" +#~ msgstr "Tots els treballs" + +#, fuzzy +#~| msgid "Completed Jobs" +#~ msgid "Completed jobs only" +#~ msgstr "Treballs completats" + +#, fuzzy +#~| msgid "Active Jobs" +#~ msgid "Active jobs only" +#~ msgstr "Treballs actius" + +#~ msgid "A short binary option" +#~ msgstr "Una opció binària curta" + +#, fuzzy +#~| msgid "Completed Jobs" +#~ msgid "Show all jobs" +#~ msgstr "Treballs completats" + +#, fuzzy +#~| msgid "Completed Jobs" +#~ msgid "Show only active jobs" +#~ msgstr "Treballs completats" + +#, fuzzy +#~| msgid "Completed Jobs" +#~ msgid "Show only completed jobs" +#~ msgstr "Treballs completats" + +#, fuzzy +#~| msgid "PrintQueue" +#~ msgid "Print queue is empty" +#~ msgstr "CuaImpressió" + +#~ msgid "All printers" +#~ msgstr "Totes les impressores" diff -Nru print-manager-17.12.3/po/cs/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/cs/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/cs/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/cs/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2016-01-21 13:14+0100\n" "Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" @@ -75,15 +75,15 @@ msgid "Printers" msgstr "Tiskárny" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "Nastavit tis&kárny..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Fronta tisku je prázdná" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Ve frontě tisku je jedna úloha" diff -Nru print-manager-17.12.3/po/cs/print-manager.po print-manager-18.04.3/po/cs/print-manager.po --- print-manager-17.12.3/po/cs/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/cs/print-manager.po 2018-07-10 00:08:10.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. # Tomáš Chvátal , 2012, 2013. -# Vit Pelcak , 2012, 2013, 2014, 2015, 2017. +# Vit Pelcak , 2012, 2013, 2014, 2015, 2017, 2018. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2017-02-21 11:42+0100\n" -"Last-Translator: Vít Pelčák \n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-04-03 17:03+0100\n" +"Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -30,38 +30,38 @@ msgid "Your emails" msgstr "vit@pelcak.org, tomas.chvatal@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Přidat novou tiskárnu" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Vybrat tiskárnu k přidání" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Vybrat ovladač" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Prosím, popište svou tiskárnu" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -129,37 +129,37 @@ msgid "Password" msgstr "Heslo" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Žádné" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Sudé" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Liché" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -265,7 +265,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -343,71 +343,66 @@ msgid "Local Printers" msgstr "Místní tiskárny" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Seskupení zařízení selhalo: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Přidat tiskárnu" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Nástroj pro přidávání nových tiskáren" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Port na Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID nadřazeného okna" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Přidat novou tiskárnu" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Přidat novou třídu tiskáren" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Změní PPD dané tiskárny" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Změní PPD dané tiskárny/ID zařízení" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Přidání třídy selhalo: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -613,8 +608,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -636,7 +631,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Nadpisy, chování a povolení uživatelé" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -658,29 +653,29 @@ msgid "Printer to be configured" msgstr "Tiskárna k nastavení" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Současná - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Vybrat vlastní ovladač" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Nastavení třídy selhalo" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Nastavení tiskárny selhalo" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -817,67 +812,67 @@ msgid "Driver:" msgstr "Ovladač:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Zrušit úlohu" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Znovu zkusit aktuální úlohu" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Znovu zkusit úlohu" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Zastavit tiskárnu" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Totožnost ověřena" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Výchozí" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Žádný" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Utajovaný" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Důvěrný" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Tajný" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standardní" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Přísně tajné" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Neutajovaný" @@ -936,7 +931,7 @@ msgid "A&llow these users to print" msgstr "Povo&lit těmto uživatelům tisk" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Nastavit výchozí volby" @@ -948,98 +943,98 @@ msgstr "Dotázat se tiskárny na výchozí volby" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Vyberte ovladač" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Stav" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Název" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Uživatel" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Vytvořeno" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Dokončeno" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Strany" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Zpracováno" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Velikost" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Stavová zpráva" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Tiskárna" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Ze jména hostitele" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Selhalo přesunutí '%1' do '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Selhalo" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Čekající" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Pozastaveno" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Zastaveno" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Zrušeno" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Přerušeno" @@ -1054,107 +1049,107 @@ msgid "Wrong username or password" msgstr "Špatné uživatelské jméno nebo heslo" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Služba tisku je nedostupná" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nenalezeno" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testovací stránka" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Nelze poslat příkaz ovladači tiskárny." -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Nelze spustit metodu: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Doporučované ovladače" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Tiskárny" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Nečinná" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Nečinná, odmítá úlohy" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Nečinná - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Nečinná, odmítá úlohy - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Používá se" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Používá se - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Pozastavena" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Pozastavena, odmítá úlohy" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Pozastavena - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Pozastavena, odmítá úlohy - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Neznámá" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Neznámá - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Získání seznamu ovladačů selhalo: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Vyhledání doporučovaného ovladače selhalo: '%1'" @@ -1177,102 +1172,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Ruč&ně zadat PPD soubor:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Byla zjištěna nová tiskárna" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Probíhá nastavení nové tiskárny..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Nová tiskárna byla přidána" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Nové tiskárně chybí ovladače" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Chybí ovladač tiskárny" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Chybí ovladač tiskárny %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Chybí ovladač tiskárny %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Pro tuto tiskárnu není ovladač." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Hledat" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Nová tiskárna byla přidána" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Nové tiskárně chybí ovladače" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "Tiskárna '%1' připravena k tisku." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Vytisknout testovací stránku" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' byla přidána, prosím zkontrolujte její ovladač" -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "Byla přidána tiskárna '%1' s ovladačem '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Vytisknout testovací stránku" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Najít ovladač" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "Tiskárna '%1' připravena k tisku." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Sdílet tuto třídu" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Sdílet tuto tiskárnu" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Vyčistit tiskové hlavy" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Vytisknout testovací stránku" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Vykonání požadavku selhalo: %1" @@ -1343,95 +1338,95 @@ msgid "Print Self Test Page" msgstr "Vytisknout testovací stránku" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Nastavení tisku" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Přidat třídu tiskáren" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Přidat novou tiskárnu nebo třídu tiskáren" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Odstranit tiskárnu" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Zobrazit tiskárny sdílené ostatními systémy" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Sdílené tiskárny připojené k tomuto systému" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Povolit tisk z internetu" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Povolit vzdálenou správu" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Povolit uživatelům zrušit jakoukoliv úlohu (ne jen ty, které vlastní)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Nastavit globální předvolby" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nebyly nalezeny či nastaveny žádné tiskárny" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Odebrat třídu" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Určitě si přejete odstranit třídu '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Odstranit tiskárnu" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Určitě si přejete odstranit tiskárnu '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Selhalo získání nastavení serveru" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1471,49 +1466,49 @@ msgid "Show printer queue(s)" msgstr "Zobrazit frontu(y) tiskárny" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Tiskárna připravena" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pozastavit tiskárnu" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Probíhá tisk..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Tiskne se '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Tiskárna pozastavena" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Obnovit tiskárnu" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Stav tiskárny neznámý" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Přesunout do" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1521,7 +1516,7 @@ msgstr[1] "Všechny tiskárny (%1 úlohy)" msgstr[2] "Všechny tiskárny (%1 úloh)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1529,27 +1524,27 @@ msgstr[1] "%2 (%1 úlohy)" msgstr[2] "%2 (%1 úloh)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Všechny tiskárny" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Zrušení '%1' selhalo" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Pozastavení '%1' selhalo" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Uvolnění '%1' selhalo" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Nelze opakovaně vytisknout '%1'" diff -Nru print-manager-17.12.3/po/da/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/da/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/da/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/da/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-05-26 22:21+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Printere" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Konfigurér printere..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Udskriftskøen er tom" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Der er et udskriftsjob i køen" diff -Nru print-manager-17.12.3/po/da/print-manager.po print-manager-18.04.3/po/da/print-manager.po --- print-manager-17.12.3/po/da/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/da/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2015-05-26 22:20+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "mschlander@opensuse.org" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Tilføj en ny printer" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Vælg en printer der skal tilføjes" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Vælg en driver" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Beskriv din printer" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "Adgangskode" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Ingen" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Lige" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Ulige" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -262,7 +262,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,67 @@ msgid "Local Printers" msgstr "Lokale printere" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Kunne ikke gruppere enheder: \"%1\"" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Tilføj printer" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Værktøj til at tilføje nye printere" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Portering til Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Forældervindue-id" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Tilføj en ny printer" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Tilføj en ny printerklasse" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Ændrer PPD for en given printer" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Ændrer PPD for en given printer/enheds-id" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "kunne ikke tilføje klasse: \"%1\"" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -612,8 +608,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -635,7 +631,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Bannere, politikker og tilladte brugere" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -659,29 +655,29 @@ msgid "Printer to be configured" msgstr "Printeren der skal konfigureres" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Nuværende - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Angiv en selvvalgt driver" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Kunne ikke konfigurere klasse" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Kunne ikke konfigurere printer" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -817,67 +813,67 @@ msgid "Driver:" msgstr "Driver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Afbryd job" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Prøv det aktuelle job igen" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Prøv job igen" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Stop printer" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autentificeret" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Ingen" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Klassificeret" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Fortrolig" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Hemmelig" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Tophemmelig" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Ikke klassificeret" @@ -936,7 +932,7 @@ msgid "A&llow these users to print" msgstr "Ti&llad disse brugere at udskrive" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Angiv standardindstillinger" @@ -948,98 +944,98 @@ msgstr "Forespørg printer om standardindstillinger" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Vælg en driver" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Status" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Navn" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Bruger" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Oprettet" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Gennemført" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Sider" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Behandlet" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Størrelse" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Statusbesked" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Printer" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Fra værtsnavn" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Kunne ikke flytte \"%1\" til \"%2\"" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Mislykkedes" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Udestående" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "I venteposition" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Stoppet" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Annulleret" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Afbrudt" @@ -1054,107 +1050,107 @@ msgid "Wrong username or password" msgstr "Forkert brugernavn eller adgangskode" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Udskriftstjenesten er utilgængelig" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Ikke fundet" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testside" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Kan ikke sende kommando til printerdriveren!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Kunne ikke kalde metode: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Anbefalede drivere" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Printere" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inaktiv" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Inaktiv, afviser udskriftjob" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Inaktiv - \"%1\"" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Inaktiv, afviser job - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "I brug" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "I brug - \"%1\"" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Pause" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "På pause, afviser job" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "På pause - \"%1\"" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "På pause, afviser job - \"%1\"" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Ukendt" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Ukendt - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Kunne ikke hente liste over drivere: \"%1\"" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Kunne ikke søge efter en anbefalet driver: \"%1\"" @@ -1177,102 +1173,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "A&ngiv en PPD-fil manuelt:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "En ny printer er blevet fundet" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Konfigurerer ny printer..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Den ny printer er blevet tilføjet" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Den ny printer mangler drivere" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Manglende printerdriver" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Ingen printerdriver til %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Ingen printerdriver til %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Ingen driver til denne printer." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Søg" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Den ny printer er blevet tilføjet" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Den ny printer mangler drivere" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "\"%1\" er klar til udskrift." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Udskriv testside" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "\"%1\" er blevet tilføjet. Tjek dens driver." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "\"%1\" er blevet tilføjet med driveren \"%2\"." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Udskriv testside" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Find driver" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "\"%1\" er klar til udskrift." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Del denne klasse" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Del denne printer" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Rens printerhoveder" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Udskriv selvtestside" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Kunne ikke udføre anmodning: %1" @@ -1343,95 +1339,95 @@ msgid "Print Self Test Page" msgstr "Udskriv selvtestside" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Udskriftsindstillinger" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Tilføj printerklasse" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Tilføj ny printer eller printerklasse" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Fjern printer" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Vis printere som deles af andre systemer" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Del printere der er tilsluttet dette system" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Tillad udskrift fra internettet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Tillad ekstern administration" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Tillad brugere at annullere alle job (ikke kun deres egne)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Konfigurér de globale indstillinger" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Ingen printere er blevet konfigureret eller opdaget" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Fjern klasse" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Vil du virkelig fjerne klassen \"%1\"?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Fjern printer" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Vil du virkelig fjerne printeren \"%1\"?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Kunne ikke hente serverindstillinger" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1471,83 +1467,83 @@ msgid "Show printer queue(s)" msgstr "Vis printerkøer" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Printer klar" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Sæt printer på pause" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Udskriver..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Udskriver \"%1\"" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Printer på pause" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Genoptag udskrift" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Printertilstand ukendt" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Flyt til" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Alle printere (%1 job)" msgstr[1] "Alle printere (%1 job)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 job)" msgstr[1] "%2 (%1 job)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Alle printere" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Kunne ikke annullere \"%1\"" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Kunne ikke sætte \"%1\" i venteposition" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Kunne ikke frigive \"%1\"" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Kunne ikke genudskrive \"%1\"" @@ -1606,6 +1602,9 @@ msgid "All Jobs" msgstr "Alle job" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Tilføj printer" diff -Nru print-manager-17.12.3/po/de/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/de/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/de/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/de/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-03-09 20:28+0100\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" @@ -71,15 +71,15 @@ msgid "Printers" msgstr "Drucker" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Drucker einrichten ..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Die Druckerwarteschlange ist leer" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Es befindet sich ein Druckauftrag in der Warteschlange" diff -Nru print-manager-17.12.3/po/de/print-manager.po print-manager-18.04.3/po/de/print-manager.po --- print-manager-17.12.3/po/de/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/de/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -1,18 +1,18 @@ -# Frederik Schwarzer , 2012, 2013. +# Frederik Schwarzer , 2012, 2013, 2018. # Burkhard Lück , 2012, 2013, 2015. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-03-09 20:30+0100\n" -"Last-Translator: Burkhard Lück \n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-02-11 21:53+0100\n" +"Last-Translator: Frederik Schwarzer \n" "Language-Team: German \n" "Language: de\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=2; plural=n != 1;\n" #, kde-format @@ -25,38 +25,38 @@ msgid "Your emails" msgstr "schwarzer@kde.org" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Einen neuen Drucker hinzufügen" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Wählen Sie einen Drucker, den Sie hinzufügen möchten" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Wählen Sie einen Treiber" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Bitte beschreiben Sie Ihren Drucker" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -124,37 +124,37 @@ msgid "Password" msgstr "Passwort" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Keinen" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Gerade" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Ungerade" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -260,7 +260,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -340,73 +340,68 @@ msgid "Local Printers" msgstr "Lokale Drucker" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Fehler beim Gruppieren der Geräte: „%1“" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Drucker hinzufügen" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Hilfsprogramm für das Hinzufügen von neuen Druckern" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "© 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "Copyright © 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Portierung auf Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Kennung des übergeordneten Fensters" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Einen neuen Drucker hinzufügen" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Eine neue Druckerklasse hinzufügen" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Ändert die PPD eines angegebenen Druckers" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" "Ändert die PPD eines angegebenen Druckers bzw. einer angegebenen " "Gerätekennung" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Klasse „%1“kann nicht hinzugefügt werden" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -616,8 +611,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -639,7 +634,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Trennseiten, Regelungen und zugelassene Benutzer" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -663,29 +658,29 @@ msgid "Printer to be configured" msgstr "Einzurichtender Drucker" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Aktuell - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Wählen Sie einen benutzerdefinierten Treiber" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Klasse kann nicht eingerichtet werden" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Drucker kann nicht eingerichtet werden" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -821,67 +816,67 @@ msgid "Driver:" msgstr "Treiber:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Auftrag abbrechen" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Aktuellen Auftrag erneut drucken" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Auftrag erneut drucken" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Drucker anhalten" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Authentifiziert" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Kein" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Verschlusssache" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Vertraulich" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Geheim" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Streng geheim" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Keine Verschlusssache" @@ -940,7 +935,7 @@ msgid "A&llow these users to print" msgstr "Drucken zu&lassen für diese Benutzer" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Standardeinstellungen festlegen" @@ -952,98 +947,98 @@ msgstr "Standardeinstellungen des Druckers abfragen" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Wählen Sie einen Treiber" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Status" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Name" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Benutzer" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Erstellt" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Abgeschlossen" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Seiten" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Bearbeitet" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Größe" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Statusmeldung" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Drucker" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Von Hostname" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "„%1“ kann nicht zu „%2“ verschoben werden" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Fehlgeschlagen" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Ausstehend" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Wird gehalten" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Angehalten" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Abgebrochen" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Abgebrochen" @@ -1060,107 +1055,107 @@ msgid "Wrong username or password" msgstr "Benutzername oder Passwort falsch" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Druckdienst ist nicht verfügbar" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nicht gefunden" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testseite" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Der Befehl kann nicht an den Druckertreiber gesendet werden" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Fehler beim Aufruf der Methode: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Empfohlene Treiber" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Drucker" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Leerlauf" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Inaktiv, Aufträge werden abgewiesen" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Leerlauf - „%1“" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Inaktiv, Aufträge werden abgewiesen - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "In Benutzung" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "In Benutzung - „%1“" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Angehalten" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Angehalten, Aufträge werden abgewiesen" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Angehalten - „%1“" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Angehalten, Aufträge werden abgewiesen - „%1“" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Unbekannt" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Unbekannt - „%1“" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Das Laden der Treiberliste ist fehlgeschlagen: „%1“" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "" @@ -1185,102 +1180,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "PPD-Datei &manuell bereitstellen:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Ein neuer Drucker wurde erkannt" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Neuer Drucker wird eingerichtet ..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Der neue Drucker wurde hinzugefügt" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Für den neuen Drucker gibt es keine Treiber" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Fehlender Druckertreiber" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Kein Druckertreiber für %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Kein Druckertreiber für %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Kein Treiber für diesen Drucker." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Suchen" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Der neue Drucker wurde hinzugefügt" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Für den neuen Drucker gibt es keine Treiber" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "„%1“ ist druckbereit." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Testseite drucken" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "„%1“ wurde hinzugefügt, bitten überprüfen Sie seinen Treiber." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "„%1“ wurde hinzugefügt und verwendet den Treiber „%2“." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Testseite drucken" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Treiber suchen" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "„%1“ ist druckbereit." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Diese Klasse freigeben" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Diesen Drucker freigeben" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Druckköpfe reinigen" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Selbsttestseite drucken" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Auftrag kann nicht ausgeführt werden: %1" @@ -1351,95 +1346,95 @@ msgid "Print Self Test Page" msgstr "Selbsttestseite drucken" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Druckeinstellungen" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Eine Druckerklasse hinzufügen" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Einen neuen Drucker oder eine neue Druckerklasse hinzufügen" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Drucker entfernen " -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Freigegebene Drucker auf anderen Rechnern anzeigen" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Drucker freigeben, die mit diesem Rechner verbunden sind" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Drucken aus dem Internet zulassen" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Einrichtung über das Netzwerk zulassen" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Benutzer dürfen alle Druckaufträge abbrechen (nicht nur die eigenen)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Globale Einstellungen festlegen" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Es wurden keine Drucker eingerichtet oder erkannt" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Klasse entfernen" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Sind Sie sicher, dass Sie die Klasse „%1“ löschen möchten?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Drucker entfernen " -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Sind Sie sicher, dass Sie den Drucker „%1“ entfernen möchten?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Das Laden der Server-Einstellungen ist fehlgeschlagen" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1479,83 +1474,83 @@ msgid "Show printer queue(s)" msgstr "Druckerwarteschlange(n) anzeigen" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Drucker bereit" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Drucker anhalten" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Es wird gedruckt ..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "„%1“ wird gedruckt" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Drucker angehalten" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Drucken wieder fortsetzen" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Unbekannter Druckerstatus" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Verschieben nach" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Alle Drucker (%1 Auftrag)" msgstr[1] "Alle Drucker (%1 Aufträge)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 Auftrag)" msgstr[1] "%2 (%1 Aufträge)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Alle Drucker" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "„%1“ kann nicht abgebrochen werden" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "„%1“ kann nicht angehalten werden" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "„%1“ kann nicht freigegeben werden" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Das erneute Drucken von „%1“ ist fehlgeschlagen" @@ -1614,6 +1609,9 @@ msgid "All Jobs" msgstr "Alle Aufträge" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Drucker hinzufügen" diff -Nru print-manager-17.12.3/po/el/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/el/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/el/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/el/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-03-03 16:47+0200\n" "Last-Translator: Dimitris Kardarakos \n" "Language-Team: Greek \n" @@ -75,15 +75,15 @@ msgid "Printers" msgstr "Εκτυπωτές" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Διαμόρφωση εκτυπωτών..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Η λίστα αναμονής είναι κενή" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Μια εργασία βρίσκεται στη λίστα αναμονής" diff -Nru print-manager-17.12.3/po/el/print-manager.po print-manager-18.04.3/po/el/print-manager.po --- print-manager-17.12.3/po/el/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/el/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2015-03-03 16:28+0200\n" "Last-Translator: Dimitris Kardarakos \n" "Language-Team: Greek \n" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "capoiosct@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Προσθήκη νέου εκτυπωτή" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Επιλέξτε έναν εκτυπωτή για να προστεθεί" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Επιλέξτε έναν οδηγό" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Παρακαλώ περιγράψτε τον εκτυπωτή σας" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "Κωδικός πρόσβασης" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Κανένας" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Άρτιος" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Περιττός" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Λογισμικό)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Υλικό)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -263,7 +263,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -340,71 +340,67 @@ msgid "Local Printers" msgstr "Τοπικοί εκτυπωτές" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Απέτυχε η ομαδοποίηση συσκευών: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Προσθήκη εκτυπωτή" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Εργαλείο για την προσθήκη νέων εκτυπωτών" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Μεταφορά σε Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID γονικού παραθύρου" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Προσθήκη νέου εκτυπωτή" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Προσθήκη νέας κλάσης εκτυπωτή" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Αλλάζει το PPD του δοσμένου εκτυπωτή" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Αλλάζει το PPD του δοσμένου εκτυπωτή/deviceid" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Απέτυχε η προσθήκη κλάσης: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -612,8 +608,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -635,7 +631,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Λογότυπα, πολιτικές και επιτρεπόμενοι χρήστες" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -659,29 +655,29 @@ msgid "Printer to be configured" msgstr "Εκτυπωτής προς διαμόρφωση" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Τρέχων - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Επιλογή προσαρμοσμένου οδηγού" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Απέτυχε η διαμόρφωση κλάσης" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Απέτυχε η διαμόρφωση εκτυπωτή" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -817,67 +813,67 @@ msgid "Driver:" msgstr "Οδηγός:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Εγκατάλειψη εργασίας" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Νέα προσπάθεια τρέχουσας εργασίας" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Νέα προσπάθεια εργασίας" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Διακοπή εκτυπωτή" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Πιστοποιημένο" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Προκαθορισμένος" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Κανένα" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Διαβαθμισμένο" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Εμπιστευτικό" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Απόρρητο" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Τυπικό" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Άκρως απόρρητο" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Μη κατηγοροποιημένο" @@ -936,7 +932,7 @@ msgid "A&llow these users to print" msgstr "Να &επιτρέπεται στους χρήστες αυτούς να εκτυπώνουν" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Ορισμός προκαθορισμένων επιλογών" @@ -948,98 +944,98 @@ msgstr "Ερώτηση εκτυπωτή για προκαθορισμένες επιλογές" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Επιλογή οδηγού" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Κατάσταση" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Όνομα" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Χρήστης" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Δημιουργήθηκε" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Ολοκληρώθηκε" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Σελίδες" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Επεξεργάστηκε" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Μέγεθος" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Μήνυμα κατάστασης" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Εκτυπωτής" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Από όνομα υπολογιστή" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Απέτυχε η μετακίνηση της εργασίας '%1' στο '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Απέτυχε" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Σε εκκρεμότητα" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Σε αναμονή" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Σταμάτησε" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Ακυρώθηκε" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Εγκαταλείφθηκε" @@ -1054,107 +1050,107 @@ msgid "Wrong username or password" msgstr "Εσφαλμένο όνομα ή κωδικός" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Η υπηρεσία εκτύπωσης δεν είναι διαθέσιμη" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Δε βρέθηκε" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Δοκιμαστική σελίδα" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Δεν είναι δυνατή η αποστολή εντολής στον οδηγό εκτυπωτή!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Απέτυχε η κλήση της μεθόδου: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Προτεινόμενοι οδηγοί" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Εκτυπωτές" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Αδρανής" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Αδρανής, απορρίπτει εργασίες" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Αδρανής - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Αδρανής, απορρίπτει εργασίες - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Σε χρήση" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Σε χρήση - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Σε παύση" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Σε παύση, απορρίπτει εργασίες" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Σε παύση - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Σε παύση, απορρίπτει εργασίες - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Άγνωστη" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Άγνωστη - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Απέτυχε η λήψη της λίστας οδηγών: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Απέτυχε η αναζήτηση για έναν προτεινόμενο οδηγό: '%1'" @@ -1177,102 +1173,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Παροχή &αρχείου PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Ένας νέος εκτυπωτής ανιχνεύτηκε" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Διαμόρφωση νέου εκτυπωτή..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Ο νέος εκτυπωτής προστέθηκε" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Λείπουν οδηγοί για τον νέο εκτυπωτή" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Λείπει οδηγός εκτυπωτή" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Δεν υπάρχει οδηγός για τον εκτυπωτή %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Δεν υπάρχει οδηγός για τον εκτυπωτή %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Δεν υπάρχει οδηγός για αυτόν τον εκτυπωτή." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Αναζήτηση" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Ο νέος εκτυπωτής προστέθηκε" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Λείπουν οδηγοί για τον νέο εκτυπωτή" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "Ο εκτυπωτής '%1' είναι έτοιμος για εκτύπωση." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Εκτύπωση δοκιμαστικής σελίδας" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "Ο εκτυπωτής '%1' προστέθηκε, παρακαλώ ελέγξτε τον οδηγό του." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "Ο εκτυπωτής '%1' προστέθηκε, γίνεται χρήση του οδηγού '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Εκτύπωση δοκιμαστικής σελίδας" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Εύρεση οδηγού" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "Ο εκτυπωτής '%1' είναι έτοιμος για εκτύπωση." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Κοινή χρήση της κλάσης" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Κοινή χρήση του εκτυπωτή" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Καθαρισμός κεφαλών εκτύπωσης" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Εκτύπωση δοκιμαστικής σελίδας" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Απέτυχε η εκτέλεση της αίτησης: %1" @@ -1343,53 +1339,53 @@ msgid "Print Self Test Page" msgstr "Εκτύπωση δοκιμαστικής σελίδας" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Ρυθμίσεις εκτύπωσης" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Προσθήκη κλάσης εκτυπωτή" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Προσθήκη νέου εκτυπωτή ή κλάσης" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Αφαίρεση εκτυπωτή" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Εμφάνιση εκτυπωτών κοινόχρηστων από άλλα συστήματα" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Κοινή χρήση εκτυπωτών που είναι συνδεδεμένοι στο σύστημα" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Να επιτρέπονται οι εκτυπώσεις από το διαδίκτυο" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Να επιτρέπεται η απομακρυσμένη διαχείριση" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" @@ -1397,43 +1393,43 @@ "Να επιτρέπεται στους χρήστες να ακυρώνουν οποιαδήποτε εργασία (όχι μόνο τις " "δικές τους)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Διαμόρφωση των καθολικών προτιμήσεων" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Δεν έχουν διαμορφωθεί εκτυπωτές ή δεν εντοπίστηκαν" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Αφαίρεση κλάσης" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Είστε σίγουροι ότι θέλετε να διαγραφεί η κλάση '%1';" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Αφαίρεση εκτυπωτή" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Είστε σίγουροι ότι θέλετε να διαγραφεί ο εκτυπωτής '%1';" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Απέτυχε η λήψη ρυθμίσεων εξυπηρετητή" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1473,83 +1469,83 @@ msgid "Show printer queue(s)" msgstr "Εμφάνιση λίστας (λιστών) αναμονής εκτυπωτή" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Εκτυπωτής έτοιμος" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Παύση εκτυπωτή" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Εκτύπωση..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Εκτύπωση της εργασίας '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Εκτυπωτής σε παύση" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Συνέχεια εκτυπωτή" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Άγνωστη κατάσταση εκτυπωτή" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Μετακίνηση στο" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Όλοι οι εκτυπωτές (%1 εργασία)" msgstr[1] "Όλοι οι εκτυπωτες (%1 εργασίες)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 εργασία)" msgstr[1] "%2 (%1 εργασίες)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Όλοι οι εκτυπωτές" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Απέτυχε η ακύρωση της εργασίας '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Απέτυχε η αναμονή της εργασίας '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Απέτυχε η απελευθέρωση της εργασίας '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Απέτυχε η επανεκτύπωση της εργασίας '%1'" @@ -1608,6 +1604,9 @@ msgid "All Jobs" msgstr "Όλες οι εργασίες" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Προσθήκη εκτυπωτή" diff -Nru print-manager-17.12.3/po/en_GB/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/en_GB/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/en_GB/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/en_GB/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-22 13:16+0000\n" "Last-Translator: \n" "Language-Team: British English \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Printers" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configure Printers..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Print queue is empty" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "There is one print job in the queue" diff -Nru print-manager-17.12.3/po/en_GB/print-manager.po print-manager-18.04.3/po/en_GB/print-manager.po --- print-manager-17.12.3/po/en_GB/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/en_GB/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -1,21 +1,21 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Steve Allewell , 2014, 2015. +# Steve Allewell , 2014, 2015, 2018. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-22 13:17+0000\n" -"Last-Translator: \n" -"Language-Team: British English \n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-02-18 17:13+0000\n" +"Last-Translator: Steve Allewell \n" +"Language-Team: British English \n" "Language: en_GB\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 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "steve.allewell@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Add a New Printer" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Select a Printer to Add" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Pick a Driver" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Please describe you printer" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "Password" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "None" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Even" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Odd" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -262,7 +262,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,66 @@ msgid "Local Printers" msgstr "Local Printers" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Failed to group devices: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Add Printer" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Tool for adding new printers" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Port to Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Parent Window ID" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Add a new printer" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Add a new printer class" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Changes the PPD of a given printer" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Changes the PPD of a given printer/deviceid" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Failed to add class: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -612,8 +607,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -635,7 +630,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Banners, Policies and Allowed Users" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -659,29 +654,29 @@ msgid "Printer to be configured" msgstr "Printer to be configured" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Current - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Select a custom driver" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Failed to configure class" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Failed to configure printer" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -817,67 +812,67 @@ msgid "Driver:" msgstr "Driver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Abort job" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Retry current job" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Retry job" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Stop printer" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Authenticated" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Default" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "None" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Classified" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidential" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secret" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Top Secret" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Unclassified" @@ -936,7 +931,7 @@ msgid "A&llow these users to print" msgstr "A&llow these users to print" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Set Default Options" @@ -948,98 +943,98 @@ msgstr "Query Printer for Default Options" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Select a Driver" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Status" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Name" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "User" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Created" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Completed" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Pages" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Processed" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Size" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Status Message" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Printer" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "From Hostname" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Failed to move '%1' to '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Failed" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Pending" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "On hold" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Stopped" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cancelled" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Aborted" @@ -1054,107 +1049,107 @@ msgid "Wrong username or password" msgstr "Wrong username or password" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Print service is unavailable" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Not found" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Test Page" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Unable to send command to printer driver!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Failed to invoke method: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Recommended Drivers" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Printers" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Idle" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Idle, rejecting jobs" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Idle - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Idle, rejecting jobs - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "In use" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "In use - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Paused" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Paused, rejecting jobs" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Paused - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Paused, rejecting jobs - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Unknown" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Unknown - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Failed to get a list of drivers: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Failed to search for a recommended driver: '%1'" @@ -1177,102 +1172,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Ma&nually Provide a PPD File:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "A New Printer was detected" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Configuring new printer..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "The New Printer was Added" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "The New Printer is Missing Drivers" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Missing printer driver" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "No printer driver for %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "No printer driver for %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "No driver for this printer." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Search" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "The New Printer was Added" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "The New Printer is Missing Drivers" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' is ready for printing." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Print test page" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' has been added, please check its driver." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1' has been added, using the '%2' driver." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Print test page" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Find driver" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' is ready for printing." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Share this class" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Share this printer" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Clean Print Heads" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Print Self-Test Page" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Failed to perform request: %1" @@ -1343,95 +1338,95 @@ msgid "Print Self Test Page" msgstr "Print Self Test Page" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Print settings" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Add a Printer Class" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Add a new printer or a printer class" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Remove Printer" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Show printers shared by other systems" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Share printers connected to this system" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Allow printing from the Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Allow remote administration" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Allow users to cancel any job (not just their own)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configure the global preferences" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "No printers have been configured or discovered" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Remove class" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Are you sure you want to remove the class '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Remove printer" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Are you sure you want to remove the printer '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Failed to get server settings" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1471,83 +1466,83 @@ msgid "Show printer queue(s)" msgstr "Show printer queue(s)" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Printer ready" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pause Printer" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Printing..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Printing '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Printer paused" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Resume Printer" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Printer state unknown" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Move to" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "All Printers (%1 Job)" msgstr[1] "All Printers (%1 Jobs)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 Job)" msgstr[1] "%2 (%1 Jobs)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "All Printers" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Failed to cancel '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Failed to hold '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Failed to release '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Failed to reprint '%1'" @@ -1606,6 +1601,9 @@ msgid "All Jobs" msgstr "All Jobs" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "AddPrinter" diff -Nru print-manager-17.12.3/po/es/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/es/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/es/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/es/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-22 19:30+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Impresoras" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configurar impresoras..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "La cola de impresión está vacía" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Hay 1 trabajo de impresión en la cola" diff -Nru print-manager-17.12.3/po/es/print-manager.po print-manager-18.04.3/po/es/print-manager.po --- print-manager-17.12.3/po/es/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/es/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -1,14 +1,14 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Eloy Cuadra , 2012, 2013, 2015. +# Eloy Cuadra , 2012, 2013, 2015, 2018. # Javier Viñal , 2013. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-22 19:33+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-26 20:34+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" @@ -16,7 +16,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 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "ecuadra@eloihr.net" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Añadir nueva impresora" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Seleccionar una impresora a añadir" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Escoger un controlador" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Por favor, describa su impresora" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "Contraseña" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Ninguna" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Par" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Impar" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -263,7 +263,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -342,71 +342,66 @@ msgid "Local Printers" msgstr "Impresoras locales" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Ha fallado la agrupación de dispositivos: «%1»" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Añadir impresora" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Herramienta para añadir nuevas impresoras" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "© 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "© 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Adaptación a Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID de la ventana padre" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Añadir nueva impresora" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Añadir una clase de impresora" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Cambia el PPD de una determinada impresora" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Cambia el PPD de una determinada impresora o ID de dispositivo" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Ha ocurrido un error al añadir la clase: «%1»" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -615,8 +610,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -638,7 +633,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Portadas, políticas y usuarios permitidos" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -662,29 +657,29 @@ msgid "Printer to be configured" msgstr "Impresora a configurar" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Actual - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Seleccionar un controlador personalizado" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Ha ocurrido un error al configurar la clase" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Ha ocurrido un error al configurar la impresora" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -820,67 +815,67 @@ msgid "Driver:" msgstr "Controlador:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Interrumpir el trabajo" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Reintentar el trabajo actual" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Reintentar el trabajo" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Detener la impresora" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autenticado" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Por omisión" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Ninguno" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Clasificado" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidencial" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secreto" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Estándar" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Alto secreto" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Desclasificado" @@ -939,7 +934,7 @@ msgid "A&llow these users to print" msgstr "P&ermitir que estos usuarios puedan imprimir" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Establecer las opciones por omisión" @@ -951,98 +946,98 @@ msgstr "Consultar a la impresora las opciones por omisión" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Seleccionar un controlador" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Estado" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nombre" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Usuario" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Creado" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Completado" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Páginas" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Procesado" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Tamaño" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Mensaje de estado" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Impresora" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Del servidor" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Ha ocurrido un error al mover «%1» a «%2»" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Error" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Pendiente" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Retenida" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Detenido" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cancelado" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Interrumpido" @@ -1058,107 +1053,107 @@ msgid "Wrong username or password" msgstr "Nombre de usuario o contraseña incorrectos" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "El servicio de impresión no está disponible" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "No encontrado" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Página de prueba" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "No ha sido posible enviar una orden al controlador de la impresora." -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Ha ocurrido un error al invocar el método: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Controladores recomendados" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Impresoras" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inactiva" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Inactiva, rechazando trabajos" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Inactiva - «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Inactiva, rechazando trabajos - «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "En uso" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "En uso - «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "En pausa" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "En pausa, rechazando trabajos" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "En pausa - «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "En pausa, rechazando trabajos - «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Desconocido" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Desconocido - «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Ha ocurrido un error al obtener la lista de controladores: «%1»" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Ha ocurrido un error al buscar el controlador recomendado: «%1»" @@ -1181,102 +1176,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Proporcio&nar un archivo PPD manualmente:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Se ha detectado una nueva impresora" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Configurando la nueva impresora..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Se ha añadido la nueva impresora" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "La nueva impresora carece de controladores" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Falta el controlador de la impresora" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "No hay controlador de impresora para %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "No hay controlador de impresora para %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "No hay controlador para esta impresora." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Buscar" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Se ha añadido la nueva impresora" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "La nueva impresora carece de controladores" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "«%1» está preparada para imprimir." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Imprimir página de prueba" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "Se ha añadido «%1»; compruebe su controlador." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "Se ha añadido «%1»; usando el controlador «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Imprimir página de prueba" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Buscar controlador" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "«%1» está preparada para imprimir." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Compartir esta clase" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Compartir esta impresora" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Limpiar el cabezal de impresión" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Imprimir página de autoprueba" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Ha ocurrido un fallo al realizar la petición: %1" @@ -1347,96 +1342,96 @@ msgid "Print Self Test Page" msgstr "Imprimir página de autoprueba" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Preferencias de la impresión" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Añadir una clase de impresora" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Añadir una nueva impresora o clase de impresora" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Eliminar impresora" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Mostrar las impresoras compartidas por otros sistemas" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Compartir las impresoras conectadas a este sistema" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permitir la impresión desde Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permitir la administración remota" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" "Permitir que los usuarios cancelen cualquier trabajo (no solo los suyos)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configurar las preferencias globales" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Ninguna impresora configurada ni descubierta" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Eliminar clase" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "¿Seguro que quiere eliminar la clase «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Eliminar impresora" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "¿Seguro que quiere eliminar la impresora «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Ha ocurrido un error al obtener las preferencias del servidor" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1476,83 +1471,83 @@ msgid "Show printer queue(s)" msgstr "Mostrar la cola de impresión" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Impresora preparada" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pausar la impresora" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Imprimiendo..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Imprimiendo «%1»" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Impresora pausada" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Continuar la impresión" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Estado de la impresora desconocido" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Mover a" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Todas las impresoras (%1 trabajo)" msgstr[1] "Todas las impresoras (%1 trabajos)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 trabajo)" msgstr[1] "%2 (%1 trabajos)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Todas las impresoras" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Ha ocurrido un error al cancelar «%1»" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Ha ocurrido un error al retener «%1»" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Ha ocurrido un error al liberar «%1»" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Ha ocurrido un error al volver a imprimir «%1»" @@ -1611,6 +1606,9 @@ msgid "All Jobs" msgstr "Todos los trabajos" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Añadir impresora" diff -Nru print-manager-17.12.3/po/et/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/et/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/et/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/et/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2016-01-14 13:32+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Printerid" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Seadista printereid..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Trükijärjekord on tühi" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Järjekorras on üks trükitöö" diff -Nru print-manager-17.12.3/po/et/print-manager.po print-manager-18.04.3/po/et/print-manager.po --- print-manager-17.12.3/po/et/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/et/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2016-01-14 13:30+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "qiilaq69@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Uue printeri lisamine" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Lisatava printeri valimine" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Draiveri valimine" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Printeri kirjeldamine" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "Parool" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Puudub" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Paaris" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Paaritu" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (tarkvaraline)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (riistvaraline)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -262,7 +262,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -340,71 +340,67 @@ msgid "Local Printers" msgstr "Kohalikud printerid" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Seadmete rühmitamine nurjus: \"%1\"" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Lisa printer" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Uute printerite lisamine tööriist" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013: Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Qt 5 / Plasma 5 port" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Ülemakna ID" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Uue printeri lisamine" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Uue printeriklassi lisamine" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Määratud printeri PPD muutmine" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Määratud printeri või seadme ID PPD muutmine" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Klassi lisamine nurjus: \"%1\"" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -611,8 +607,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -634,7 +630,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Prinditiitlid, reeglid ja lubatud kasutajad" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -658,29 +654,29 @@ msgid "Printer to be configured" msgstr "Seadistatav printer" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Aktiivne - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Vali kohandatud draiver" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Klassi seadistamine nurjus" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Printeri seadistamine nurjus" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -816,67 +812,67 @@ msgid "Driver:" msgstr "Draiver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Tühista töö" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Proovi aktiivset tööd uuesti" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Proovi tööd uuesti" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Peata printer" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autenditud" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Vaikimisi" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Puudub" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Salastatud" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Konfidentsiaalne" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Salajane" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standardne" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Ülisalajane" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Salastamata" @@ -935,7 +931,7 @@ msgid "A&llow these users to print" msgstr "N&eil kasutajatel lubatakse trükkida" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Vaikevalikute määramine" @@ -947,98 +943,98 @@ msgstr "Küsi vaikevalikuid printerilt" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Draiveri valimine" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Olek" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nimi" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Kasutaja" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Loodud" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Valmis" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Leheküljed" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Töödeldud" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Suurus" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Olekuteade" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Printer" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Masinast" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "\"%1\" liigutamine asukohta \"%2\" nurjus" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Nurjus" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Ootel" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Ootel" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Peatatud" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Katkestatud" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Katkestatud" @@ -1053,107 +1049,107 @@ msgid "Wrong username or password" msgstr "Vale kasutajanimi või parool" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Trükkimisteenus pole kättesaadav" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Ei leitud" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testlehekülg" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Käsu saatmine printeri draiverile nurjus." -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Meetodi väljakutsumine nurjus: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Soovitatavad draiverid" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Printerid" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Jõude" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Jõude, töid vastu ei võeta" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Jõude - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Jõude, töid vastu ei võeta - \"%1\"" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Kasutusel" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Kasutusel - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Paus" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Paus, töid vastu ei võeta" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Paus - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Paus, töid vastu ei võeta - \"%1\"" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Tundmatu" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Tundmatu - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Draiverite loendi hankimine nurjus: \"%1\"" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Soovitatava draiveri otsing nurjus: \"%1\"" @@ -1176,102 +1172,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "&Käsitsi PPD-faili määramine:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Leiti uus printer" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Uue printeri seadistamine..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Lisati uus printer" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Uuel printeril puuduvad draiverid" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Puuduv printeri draiver" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "%1 %2 jaoks puudub printeri draiver." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "%1 jaoks puudub printeri draiver." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Selle printeri jaoks pole draiverit." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Otsing" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Lisati uus printer" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Uuel printeril puuduvad draiverid" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "\"%1\" on trükkimiseks valmis." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Trüki testlehekülg" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "\"%1\" on lisatud, palun kontrolli draiverit." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "\"%1\" on lisatud, kasutatakse \"%2\" draiverit." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Trüki testlehekülg" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Otsi draiverit" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "\"%1\" on trükkimiseks valmis." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Jaga klassi" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Jaga printerit" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Puhasta trükipead" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Trüki enesetestilehekülg" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Soovi täitmine nurjus: %1" @@ -1342,95 +1338,95 @@ msgid "Print Self Test Page" msgstr "Trüki enesetestilehekülg" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Trükkimise seadistused" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Lisa printeriklass" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Uue printeri või printeriklassi lisamine" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Eemalda printer" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Teiste süsteemide jagatud printerite näitamine" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Selle süsteemiga ühendatud printerite jagamine" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Trükkimise lubamine internetist" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Võrguhalduse lubamine" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Kasutajatel lubatakse katkestada iga töö (mitte ainult enda oma)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Globaalsed seadistused" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Ühtegi printerit pole seadistatud või tuvastatud" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Klassi eemaldamine" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Kas tõesti eemaldada klass \"%1\"?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Printeri eemaldamine" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Kas tõesti eemaldada printer \"%1\"?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Serveri seadistuste hankimine nurjus" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1470,83 +1466,83 @@ msgid "Show printer queue(s)" msgstr "Trükijärjekorra näitamine" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Printer on valmis" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Printeri paus" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Trükkimine..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "\"%1\" trükkimine" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Printeril on paus" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Jätka printeri tööd" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Printeri olek pole teada" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Liigutamine" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Kõik printerid (%1 töö)" msgstr[1] "Kõik printerid (%1 tööd)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 töö)" msgstr[1] "%2 (%1 tööd)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Kõik printerid" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "\"%1\" katkestamine nurjus" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "\"%1\" kinnihoidmine nurjus" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "\"%1\" vabastamine nurjus" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "\"%1\" taastrükkimine nurjus" @@ -1605,6 +1601,9 @@ msgid "All Jobs" msgstr "Kõik tööd" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Printeri lisamine" diff -Nru print-manager-17.12.3/po/eu/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/eu/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/eu/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/eu/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2017-07-18 21:14+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" @@ -74,15 +74,15 @@ msgid "Printers" msgstr "Inprimagailuak" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Konfiguratu inprimagailuak..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Inprimaketa-ilara hutsik dago" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Inprimaketa-lan bat dago ilaran" diff -Nru print-manager-17.12.3/po/eu/print-manager.po print-manager-18.04.3/po/eu/print-manager.po --- print-manager-17.12.3/po/eu/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/eu/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2017-07-18 23:31+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" @@ -29,38 +29,38 @@ msgid "Your emails" msgstr "xalba@euskalnet.net" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Gehitu inprimagailu bat" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Hautatu gehitu beharreko inprimagailua" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Aukeratu gidari bat" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Deskribatu zure inprimagailua" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,37 +128,37 @@ msgid "Password" msgstr "Pasahitza" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Bat ere ez" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Bikoitiak" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Bakoitiak" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Softwarea)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardwarea)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -266,7 +266,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -349,71 +349,67 @@ msgid "Local Printers" msgstr "Bertako inprimagailuak" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Huts egin du gailuak taldekatzean: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Gehitu inprimagailua" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Inprimagailu berriak gehitzeko tresna" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Qt 5 / Plasma 5-era egokitzea" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Guraso-leihoaren ID" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Gehitu inprimagailu berri bat" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Gehitu inprimagailu klase berri bat" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Adierazitako inprimagailuaren PPD aldatzen du" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Adierazitako inprimagailu/gailuID-aren PPD aldatzen du" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Huts egin du klasea gehitzean: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -625,8 +621,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -648,7 +644,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Iragarki-bandak, gidalerroak eta baimendutako erabiltzaileak" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -672,29 +668,29 @@ msgid "Printer to be configured" msgstr "Konfiguratu beharreko inprimagailua" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Unekoa - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Hautatu gidari pertsonalizatu bat" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Huts egin du klasea konfiguratzeak" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Huts egin du inprimagailua konfiguratzeak" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -833,67 +829,67 @@ msgid "Driver:" msgstr "Gidaria:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Abortatu lana" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Saiatu berriz uneko lanarekin" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Saiatu berriz lanarekin" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Gelditu inprimagailua" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autentifikatuta" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Lehenetsia" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Bat ere ez" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Sailkatua" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Isilpekoa" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Sekretua" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Estandarra" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Sekretu-gorena" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Sailkatu gabekoa" @@ -952,7 +948,7 @@ msgid "A&llow these users to print" msgstr "O&nartu erabiltzaile hauei inprimatzea" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Ezarri lehenetsitako aukerak" @@ -964,98 +960,98 @@ msgstr "Itaundu inprimagailuari lehenetsitako aukerak" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Hautatu gidari bat" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Egoera" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Izena" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Erabiltzailea" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Sortua" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Osatua" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Orriak" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Prozesatuta" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Neurria" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Egoera-mezua" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Inprimagailua" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Ostalari-izenetik" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Huts egin du '%1' '%2'-ra mugitzeak" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Huts egin du" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Burutu gabe" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Zain" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Geldituta" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Bertan behera utzita" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Abortatuta" @@ -1070,107 +1066,107 @@ msgid "Wrong username or password" msgstr "Okerreko erabiltzaile-izena edo pasahitza" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Inprimatzeko zerbitzua eskuraezin dago" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Ez da aurkitu" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Probako orria" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Ezin zaio bidali komandoa inprimagailu-gidariari!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Huts egin du metodoa deitzeak: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Gomendatutako gidariak" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Inprimagailuak" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inaktibo" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Ez aktibo, lanak baztertzen" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Ez aktibo - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Ez aktibo, lanak baztertzen - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Erabiltzen" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Erabiltzen - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Etenarazita" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Etenarazita, lanak baztertzen" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Etenarazita - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Etenarazita, lanak baztertzen - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Ezezaguna" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Ezezaguna - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Huts egin du gidari zerrenda bat eskuratzeak: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Huts egin du gomendatutako gidari bat bilatzeak: '%1'" @@ -1193,102 +1189,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Es&kuz hornitu PPD fitxategi bat:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Inprimagailu berri bat detektatu da" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Inprimagailu berria konfiguratzen..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Inprimagailu berria gehitu da" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Inprimagailu berriak gidariak falta ditu" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Inprimagailuaren gidaria falta da" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Inprimagailu gidaririk ez %1 %2-(r)entzako." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Inprimagailu gidaririk ez %1-(r)entzako." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Gidaririk ez inprimagailu honentzako." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Bilatu" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Inprimagailu berria gehitu da" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Inprimagailu berriak gidariak falta ditu" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' inprimatzeko prest dago." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Inprimatu probako orria" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' gehitu da, egiaztatu bere gidaria." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1' gehitu da, '%2' gidaria erabiliz." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Inprimatu probako orria" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Bilatu gidaria" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' inprimatzeko prest dago." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Partekatu klase hau" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Partekatu inprimagailu hau" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Garbitu inprimatzeko buruak" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Inprimatu berezko proba-orria" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Huts egin du eskaera gauzatzeak: %1" @@ -1359,95 +1355,95 @@ msgid "Print Self Test Page" msgstr "Inprimatu berezko proba-orria" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Inprimaketa ezarpenak" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Gehitu inprimagailu klase bat" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Gehitu inprimagailu berri bat edo inprimagailu klase bat" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Kendu inprimagailua" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Erakutsi beste sistemek partekatutako inprimagailuak" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Partekatu sistema honetara konektatutako inprimagailuak" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Onartu Internetetik inprimatzea" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Onartu urruneko administrazioa" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Onartu erabiltzaileei edozein lan galaraztea (ez bakarrik beraienak)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Konfiguratu hobespen orokorrak" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Ez da inprimagailurik konfiguratu edo aurkitu" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Kendu klasea" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Ziur zaude '%1' klasea ezabatu nahi duzula?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Kendu inprimagailua" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Ziur zaude '%1' inprimagailua kendu nahi duzula?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Huts egin du zerbitzariaren ezarpenak jasotzeak" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1487,83 +1483,83 @@ msgid "Show printer queue(s)" msgstr "Erakutsi inprimaketa-ilara(k)" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Inprimagailua prest" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Etenarazi inprimagailua" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Inprimatzen..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "'%1' inprimatzen" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Inprimagailua etenarazita" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Berrekin inprimagailua" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Inprimagailuaren egoera ezezaguna" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Eraman hona" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Inprimagailu denak (lan %1)" msgstr[1] "Inprimagailu denak (lan %1)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (lan %1)" msgstr[1] "%2 (%1 lan)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Inprimagailu denak" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Huts egin du '%1' bertan behera uzteak" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Huts egin du '%1' zain ipintzeak" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Huts egin du '%1' askatzeak" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Huts egin du '%1' berrinprimatzeak" @@ -1621,3 +1617,6 @@ #, kde-format msgid "All Jobs" msgstr "Lan guztiak" + +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" diff -Nru print-manager-17.12.3/po/fi/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/fi/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/fi/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/fi/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-26 16:47+0200\n" "Last-Translator: Lasse Liehu \n" "Language-Team: Finnish \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Tulostimet" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "Tulostinten &asetukset…" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Tulostusjono on tyhjä" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Jonossa on yksi tulostustyö" diff -Nru print-manager-17.12.3/po/fi/print-manager.po print-manager-18.04.3/po/fi/print-manager.po --- print-manager-17.12.3/po/fi/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/fi/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -1,17 +1,17 @@ # KDE Finnish translation sprint participants: # Author: Artnay # Author: Lliehu -# Tommi Nieminen , 2012. +# Tommi Nieminen , 2012, 2018. # Lasse Liehu , 2012, 2013, 2015. # Jiri Grönroos , 2012. msgid "" msgstr "" "Project-Id-Version: add-printer\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-03-11 00:46+0200\n" -"Last-Translator: Lasse Liehu \n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-07-02 20:10+0200\n" +"Last-Translator: Tommi Nieminen \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,38 +30,38 @@ msgid "Your emails" msgstr "translator@legisign.org,jiri.gronroos+kde@iki.fi" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Lisää uusi tulostin" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Valitse lisättävä tulostin" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Valitse ajuri" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Anna tulostimelle kuvaus" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -129,37 +129,37 @@ msgid "Password" msgstr "Salasana:" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Ei mitään" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Parillinen" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Pariton" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (ohjelmisto)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (laitteisto)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -264,7 +264,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -340,71 +340,66 @@ msgid "Local Printers" msgstr "Paikalliset tulostimet" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Laitteiden ryhmittely epäonnistui: ”%1”" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Lisää tulostin" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Työkalu uusien tulostimien lisäystä varten" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "© 2010–2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "© 2010–18 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Siirtäminen Qt 5:een / Plasma 5:een" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Ylemmän tason ikkunan tunniste" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Lisää uusi tulostin" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Lisää uusi tulostinluokka" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Vaihtaa valitun tulostimen PPD:n" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Vaihtaa valitun tulostimen/laitetunnisteen PPD:n" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Luokan lisääminen epäonnistui: ”%1”" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -610,8 +605,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -633,7 +628,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Välilehdet, käytänteet ja sallitut käyttäjät" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -657,29 +652,29 @@ msgid "Printer to be configured" msgstr "Asetettava tulostin" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Nykyinen – %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Valitse oma ajuri" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Luokan määritys epäonnistui" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Tulostimen määritys epäonnistui" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -815,68 +810,68 @@ msgid "Driver:" msgstr "Ajuri:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Keskeytä työ" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Yritä uudelleen nykyistä työtä" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Yritä uudelleen työtä" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Pysäytä tulostin" # konteksti - operation policy (?): Tämä tuntuu luontevimmalta käännökseltä -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autentikoitu" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Oletus" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Ei mitään" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Luokiteltu" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Luottamuksellinen" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Salainen" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standardi" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Erittäin salainen" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Luokittamaton" @@ -935,7 +930,7 @@ msgid "A&llow these users to print" msgstr "&Salli näiden käyttäjien tulostaa" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Aseta oletusasetukset" @@ -947,99 +942,99 @@ msgstr "Kysy tulostimelta oletusasetukset" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Valitse ajuri" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Tila" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nimi" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Käyttäjä" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Luotu" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Valmis" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Sivuja" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Käsitelty" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Koko" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Tilaviesti" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Tulostin" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Koneelta" # %1 on ilmeisesti työn nimi ja %2 se tulostin, jolle sitä oltiin siirtämässä -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Ei saatu siirrettyä työtä %1 tulostimelle %2" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Epäonnistui" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Odottaa" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Pidossa" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Pysäytetty" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Peruutettu" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Keskeytetty" @@ -1054,107 +1049,107 @@ msgid "Wrong username or password" msgstr "Väärä käyttäjätunnus tai salasana" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Tulostuspalvelu ei ole käytettävissä" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Ei löytynyt" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testisivu" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Komentoa ei voitu lähettää tulostinajurille!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Menetelmän kutsu epäonnistui: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Suositellut ajurit" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Tulostimet" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Jouten" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Jouten, hylkää tulostustyöt" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Jouten – ”%1”" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Jouten, hylkää tulostustyöt – ”%1”" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Käytössä" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Käytössä – ”%1”" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Keskeytetty" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Keskeytetty, hylkää tulostustyöt" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Keskeytetty – ”%1”" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Keskeytetty, hylkää tulostustyöt – ”%1”" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Tuntematon" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Tuntematon - \"%1\"" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Ei saatu noudettua ajuriluetteloa: ”%1”" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Ei saatu noudettua suositusajuria: ”%1”" @@ -1177,102 +1172,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "A&nna itse PPD-tiedosto:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Havaittiin uusi tulostin" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Asetetaan uutta tulostinta…" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Lisättiin uusi tulostin" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Uudelta tulostimelta puuttuu ajuri" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Tulostinajuri puuttuu" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Ei tulostinajuria laitteelle %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Ei tulostinajuria laitteelle %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Tälle tulostimelle ei ole ajuria." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Etsi" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Lisättiin uusi tulostin" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Uudelta tulostimelta puuttuu ajuri" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "”%1” on valmis tulostamaan." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Tulosta testisivu" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "”%1” on lisätty, tarkista sen ajuri." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "”%1” on lisätty (käyttää ajuria ”%2”)." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Tulosta testisivu" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Etsi ajuria" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "”%1” on valmis tulostamaan." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Jaa tämä luokka" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Jaa tämä tulostin" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Puhdista tulostuspäät" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Tulosta itsetestaussivu" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Pyynnön toteuttaminen epäonnistui: %1" @@ -1343,95 +1338,95 @@ msgid "Print Self Test Page" msgstr "Tulosta itsetestaussivu" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Tulostusasetukset" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Lisää uusi tulostinluokka" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Lisää uusi tulostin tai tulostinluokka" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Poista tulostin" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Näytä muiden järjestelmien jakamat tulostimet" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Jaa tähän järjestelmään kytkettyjä tulostimia" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Salli tulostus internetin kautta" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Salli etähallinta" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Salli käyttäjien perua mikä tahansa työ (ei vain omiaan)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Aseta järjestelmänlaajuiset asetukset" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Tulostimia ei ole havaittu tai määritetty" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Poista luokka" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Haluatko varmasti poistaa luokan ”%1”?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Poista tulostin" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Haluatko varmasti poistaa tulostimen ”%1”?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Palvelinasetusten nouto epäonnistui" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1471,83 +1466,83 @@ msgid "Show printer queue(s)" msgstr "Näytä tulostinjonot" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Tulostin valmiina" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Keskeytä tulostus" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Tulostetaan…" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Tulostetaan ”%1”" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Tulostus keskeytetty" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Jatka tulostusta" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Tulostimen tila tuntematon" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Siirrä kohteeseen" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Kaikki tulostimet (%1 työ)" msgstr[1] "Kaikki tulostimet (%1 työtä)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 työ)" msgstr[1] "%2 (%1 työtä)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Kaikki tulostimet" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Peruminen epäonnistui: ”%1”" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Pito epäonnistui: ”%1”" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Vapautus epäonnistui: ”%1”" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Tulostaminen uudelleen epäonnistui: ”%1”" @@ -1606,6 +1601,9 @@ msgid "All Jobs" msgstr "Kaikki työt" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + # Tulostimen lisäämisohjelman nimi #~ msgid "AddPrinter" #~ msgstr "Tulostimen lisääminen" diff -Nru print-manager-17.12.3/po/fr/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/fr/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/fr/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/fr/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-03-10 23:21+0100\n" "Last-Translator: Thomas Vergnaud \n" "Language-Team: French \n" @@ -77,15 +77,15 @@ msgid "Printers" msgstr "Imprimantes" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configurer les imprimantes…" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "La file d'impression est vide" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Il y a une tâche d'impression dans la file" diff -Nru print-manager-17.12.3/po/fr/print-manager.po print-manager-18.04.3/po/fr/print-manager.po --- print-manager-17.12.3/po/fr/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/fr/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -9,9 +9,9 @@ msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2017-09-21 09:21+0100\n" -"Last-Translator: Vincent Pinon \n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-06-01 16:17+0800\n" +"Last-Translator: Simon Depiets \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -26,45 +26,45 @@ #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Joëlle Cornavin" +msgstr "Joëlle Cornavin, Simon Depiets" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "jcorn@free.fr" +msgstr "jcorn@free.fr, sdepiets@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Ajouter une nouvelle imprimante" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Sélectionner une imprimante à ajouter" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Choisissez un pilote" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Veuillez décrire votre imprimante" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -132,37 +132,37 @@ msgid "Password" msgstr "Mot de passe" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Aucune" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Paire" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Impaire" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON / XOFF (logiciel)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS / CTS (matériel)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -269,7 +269,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -349,72 +349,67 @@ msgid "Local Printers" msgstr "Imprimantes locales" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Il est impossible de grouper des périphériques : « %1 »" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Ajouter une imprimante" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Outil pour ajouter de nouvelles imprimantes" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Portage vers Qt5 /Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Identifiant de la fenêtre parente" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Ajouter une nouvelle imprimante" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Ajouter une nouvelle classe d'imprimantes" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Change le PPD d'une imprimante donnée" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" "Change le PPD d'une imprimante / d'un identifiant de périphérique donné" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Il est impossible d'ajouter une classe : « %1 »" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -624,8 +619,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -647,7 +642,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Bannières, politiques et utilisateurs autorisés" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -671,29 +666,29 @@ msgid "Printer to be configured" msgstr "Imprimante à configurer" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Courante - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Sélectionner un pilote personnalisé" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Il est impossible de configurer une classe" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Il est impossible de configurer une imprimante" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -830,67 +825,67 @@ msgid "Driver:" msgstr "Pilote :" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Interrompre une tâche d'impression" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Essayer à nouveau la tâche d'impression courante" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Essayer à nouveau la tâche d'impression" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Arrêter l'imprimante" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Authentifié" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Par défaut" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Aucun" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Classifié" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidentiel" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secret" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Top secret" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Non classifié" @@ -949,7 +944,7 @@ msgid "A&llow these users to print" msgstr "&Autoriser ces utilisateurs à imprimer" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Définir les options par défaut" @@ -961,98 +956,98 @@ msgstr "Consulter les options par défaut de l'imprimante" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Sélectionnez un pilote" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "État" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nom" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Utilisateur" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Créé" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Terminé" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Pages" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Traité" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Taille" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Message d'état" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Imprimante" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "À partir d'un nom d'hôte" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Il est impossible de déplacer « %1 » vers « %2 »" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Échec" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "En attente" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Suspendu" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Arrêté" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Annulé" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Interrompu" @@ -1069,107 +1064,107 @@ msgid "Wrong username or password" msgstr "Nom d'utilisateur ou mot de passe erroné" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Le service d'impression est indisponible" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Non trouvé" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Page de test" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Il est impossible d'envoyer une commande au pilote d'imprimante !" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Il est impossible d'exécuter une méthode : %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Pilotes recommandés" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Imprimantes" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inactive" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Inactive, refus des tâches d'impression" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Inactive - « %1 »" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Inactive, refus des tâches d'impression - « %1 »" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "En cours d'utilisation" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "En cours d'utilisation - « %1 »" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "En pause" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "En pause, refus des tâches d'impression" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "En pause - « %1 »" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "En pause, refus des tâches d'impression - « %1 »" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Inconnu" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Inconnu - « %1 »" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Il est impossible d'obtenir une classe de pilotes : « %1 »" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Échec de la recherche d'un pilote recommandé : « %1 »" @@ -1192,102 +1187,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Fournir &manuellement un fichier « PPD » :" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Une nouvelle imprimante a été détectée" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Configurer une nouvelle imprimante..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "La nouvelle imprimante a été ajoutée" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Les pilotes pour la nouvelle imprimante sont manquants" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Pilote d'imprimante manquant" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Aucun pilote d'imprimante pour %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Aucun pilote d'imprimante pour %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Aucun pilote pour cette imprimante." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Chercher" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "La nouvelle imprimante a été ajoutée" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Les pilotes pour la nouvelle imprimante sont manquants" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "« %1 » est prêt à imprimer." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Imprimer une page de test" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "« %1 » a été ajoutée. Veuillez vérifier son pilote." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "« %1 » a été ajoutée avec utilisation du pilote « %2 »." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Imprimer une page de test" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Chercher un pilote" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "« %1 » est prêt à imprimer." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Partager cette classe" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Partager cette imprimante" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Nettoyer les têtes d'impression" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Imprimer sa propre page de test" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Il est impossible d'effectuer la requête : %1" @@ -1358,53 +1353,53 @@ msgid "Print Self Test Page" msgstr "Imprimer sa propre page de test" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Configuration d'impression" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Ajouter une classe d'imprimantes" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Ajouter une nouvelle imprimante ou une classe d'imprimantes" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Supprimer une imprimante" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Afficher les imprimantes partagées par d'autres systèmes" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Partager les imprimantes connectées à ce système" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Autoriser l'impression depuis Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Autoriser l'administration à distance" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" @@ -1412,43 +1407,43 @@ "Autoriser les utilisateurs à annuler n'importe quelle tâche d'impression " "(pas seulement leurs propres tâches)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configurer les préférences globales" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Aucune imprimante n'a été configurée ou découverte" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Supprimer une classe" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Voulez-vous vraiment supprimer la classe « %1 » ?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Supprimer une imprimante" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Voulez-vous vraiment supprimer l'imprimante « %1 » ?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Il est impossible d'obtenir les paramètres du serveur" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1488,83 +1483,83 @@ msgid "Show printer queue(s)" msgstr "Afficher la(les) file(s) d'impression" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Imprimante prête" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Mettre en pause l'imprimante" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Impression en cours..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Impression en cours de « %1 »" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Imprimante en pause" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Reprendre l'impression" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "État inconnu de l'imprimante" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Déplacer vers" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Toutes les imprimantes (%1 tâche d'impression)" msgstr[1] "Toutes les imprimantes (%1 tâches d'impression)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 tâche d'impression)" msgstr[1] "%2 (%1 tâches d'impression)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Toutes les imprimantes" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Il est impossible d'annuler « %1 »" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Il est impossible de suspendre « %1 »" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Il est impossible de libérer « %1 »" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Il est impossible de relancer l'impression de « %1 »" @@ -1623,6 +1618,9 @@ msgid "All Jobs" msgstr "Toutes les tâches d'impression" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Ajouter une imprimante" diff -Nru print-manager-17.12.3/po/ga/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ga/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ga/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ga/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: plasma_applet_printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2012-07-31 09:30-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -79,15 +79,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "" diff -Nru print-manager-17.12.3/po/ga/print-manager.po print-manager-18.04.3/po/ga/print-manager.po --- print-manager-17.12.3/po/ga/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ga/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: add-printer\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2012-07-31 09:30-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "kscanne@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -243,7 +243,7 @@ "" msgstr "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -318,74 +318,69 @@ msgid "Local Printers" msgstr "" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, fuzzy, kde-format #| msgid "All Printers" msgid "Add Printer" msgstr "Gach Printéir" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, fuzzy, kde-format #| msgid "(C) 2010-2012 Daniel Nicoletti" -msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "© 2010-2012 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, fuzzy, kde-format #| msgid "All Printers" msgid "Add a new printer" msgstr "Gach Printéir" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -592,8 +587,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -615,7 +610,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -639,29 +634,29 @@ msgid "Printer to be configured" msgstr "Roghanna Printéara" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -760,67 +755,67 @@ msgid "Driver:" msgstr "Tiománaí:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Fíordheimhnithe" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Réamhshocrú" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Neamhní" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Faoi Cheilt" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Faoi Rún" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Rúnda" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Caighdeánach" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Gan aicme" @@ -879,7 +874,7 @@ msgid "A&llow these users to print" msgstr "" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "" @@ -892,98 +887,98 @@ msgstr "Roghanna Printéara" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Stádas" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Ainm" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Úsáideoir" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Cruthaithe" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Críochnaithe" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Leathanaigh" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Méid" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Teachtaireacht Stádais" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Printéir" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Teipthe" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Ar Feitheamh" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Stoptha" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cealaithe" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Tobscortha" @@ -998,107 +993,107 @@ msgid "Wrong username or password" msgstr "" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Gan aimsiú" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Leathanach Tástála" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Printéirí" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Díomhaoin" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "In úsáid" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Anaithnid" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "" @@ -1121,102 +1116,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Tiománaí printéara ar iarraidh" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Cuardaigh" -#: print-manager-kded/NewPrinterNotification.cpp:126 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format -msgid "The New Printer was Added" -msgstr "" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" +msgid "'%1' has been added, please check its driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:167 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format -msgid "'%1' is ready for printing." -msgstr "Tá '%1' réidh don phriontáil." +msgid "'%1' has been added, using the '%2' driver." +msgstr "Cuireadh '%1' leis, ag úsáid tiománaí '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 #, kde-format msgid "Print test page" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format -msgid "'%1' has been added, please check its driver." +msgid "Find driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:181 -#, kde-format -msgid "'%1' has been added, using the '%2' driver." -msgstr "Cuireadh '%1' leis, ag úsáid tiománaí '%2'." - -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:270 #, kde-format -msgid "Find driver" -msgstr "" +msgid "'%1' is ready for printing." +msgstr "Tá '%1' réidh don phriontáil." -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Glan Cnogaí Priontála" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "" @@ -1291,95 +1286,95 @@ msgid "Print Self Test Page" msgstr "Priontáil Leathanach Tástála" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Socruithe priontála" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Bain Printéir" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Comhroinn printéir ceangailte leis an gcóras seo" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1420,49 +1415,49 @@ msgid "Show printer queue(s)" msgstr "" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Á Phriontáil..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1472,7 +1467,7 @@ msgstr[3] "" msgstr[4] "" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1482,27 +1477,27 @@ msgstr[3] "" msgstr[4] "" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Gach Printéir" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "" @@ -1563,6 +1558,9 @@ msgid "All Jobs" msgstr "" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #, fuzzy #~| msgid "Completed" #~ msgid "Completed jobs only" diff -Nru print-manager-17.12.3/po/gl/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/gl/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/gl/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/gl/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 13:48+0100\n" "Last-Translator: Adrián Chaves Fernández \n" "Language-Team: Galician \n" @@ -77,15 +77,15 @@ msgid "Printers" msgstr "Impresoras" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configurar as impresoras…" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "A cola de impresión está baleira." -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Hai un traballo de impresión na cola." diff -Nru print-manager-17.12.3/po/gl/print-manager.po print-manager-18.04.3/po/gl/print-manager.po --- print-manager-17.12.3/po/gl/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/gl/print-manager.po 2018-07-10 00:08:10.000000000 +0000 @@ -3,20 +3,21 @@ # # Marce Villarino , 2013, 2014. # Adrian Chaves Fernandez , 2013, 2015. +# Adrián Chaves (Gallaecio) , 2018. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-21 13:44+0100\n" -"Last-Translator: Adrián Chaves Fernández \n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-31 21:16+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" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -31,38 +32,38 @@ msgid "Your emails" msgstr "mvillarino@kde-espana.es" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Engadir unha nova impresora" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Seleccione unha impresora para engadir" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Escolla un controlador" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Describa a súa impresora" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -130,37 +131,37 @@ msgid "Password" msgstr "Contrasinal" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Ningún" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Páxinas pares" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Páxinas impares" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -266,7 +267,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -346,71 +347,66 @@ msgid "Local Printers" msgstr "Impresoras locais" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Non se puideron agrupar os dispositivos: «%1»." #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Engadir unha impresora" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Ferramenta para engadir novas impresoras." -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "© 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "© 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Adaptación a Qt 5 e Plasma 5." -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Identificador da xanela nai" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Engadir unha nova impresora" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Engadir unha nova clase de impresora" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Cambia os PPD da impresora indicada" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Cambia os PPD da impresora ou identificador de dispositivo indicado" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Non se puido engadir a clase: «%1»." -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -619,8 +615,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -642,7 +638,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Separadores, regras e usuarios admitidos" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -666,29 +662,29 @@ msgid "Printer to be configured" msgstr "Impresora para configurar" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Actual — %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Seleccionar un controlador personalizado" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Non se puido configurar a clase." -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Non se puido configurar a impresora." -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -827,68 +823,68 @@ msgid "Driver:" msgstr "Controlador:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Cancelar o traballo" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Volver intentar o traballo actual" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Volver intentar o traballo" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Deter a impresora" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autenticado" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Predeterminado" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Ningún" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Clasificado" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidencial" # Sospeito que neste contexto funciona como adxectivo. -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secreto" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Estándar" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Altamente secreto" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Sen clasificar" @@ -947,7 +943,7 @@ msgid "A&llow these users to print" msgstr "&Permitirlle imprimir a estes usuarios:" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Definir as opcións predeterminadas" @@ -959,98 +955,98 @@ msgstr "Solicitar as opcións predeterminadas á impresora" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Escolla un controlador" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Estado" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nome" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Usuario" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Creación" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Completada" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Páxinas" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Procesada" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Tamaño" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Mensaxe de estado" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Impresora" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Desde o servidor" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Non se puido mover «%1» a «%2»." -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Fallou" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Pendente" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "En espera" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Detido" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cancelado" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Interrompido" @@ -1065,107 +1061,107 @@ msgid "Wrong username or password" msgstr "O nome de usuario ou contrasinal fornecidos eran incorrectos." -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "O servizo de impresión non está dispoñíbel." -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Non se atopou." -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Páxina de proba" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" -msgstr "Non é posíbel enviar a orde ao controlador da impresora!" +msgstr "Non se pode enviar a orde ao controlador da impresora!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Non se puido invocar o método: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Controladores recomendados" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Impresoras" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inactiva" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Inactiva, rexeitando tarefas" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Inactiva — «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Inactiva, rexeitando tarefas — «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "En uso" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "En uso — «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "En pausa" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "En pausa, rexeitando tarefas" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "En pausa — «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "En pausa, rexeitando tarefas — «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Descoñecido" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Descoñecido — «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Non se puido obter unha lista de controladores: «%1»." -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Non se puido buscar un controlador recomendado: «%1»." @@ -1188,102 +1184,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Fornecer un ficheiro PPD &manualmente:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Detectouse unha nova impresora" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Configurando a nova impresora…" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Engadiuse a nova impresora" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Á nova impresora fáltalle o controlador" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Falta o controlador da impresora." -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Non se atopou un controlador para a impresora %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Non se atopou un controlador para a impresora %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Non se atopou un controlador para esta impresora." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Buscar" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Engadiuse a nova impresora" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Á nova impresora fáltalle o controlador" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "«%1» está lista para imprimir." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Imprimir unha páxina de proba" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "Engadiuse «%1», comprobe o seu controlador." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "Engadiuse «%1», usando o controlador «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Imprimir unha páxina de proba" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Atopar un controlador" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "«%1» está lista para imprimir." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Compartir a clase" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Compartir a impresora" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Limpar os cabezais de impresión" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Imprimir unha páxina de proba" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Non se puido efectuar a solicitude: %1." @@ -1354,95 +1350,95 @@ msgid "Print Self Test Page" msgstr "Imprimir unha páxina de proba" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Configuración da impresión" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Engadir unha clase de impresora" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Engadir unha nova impresora ou clase" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Retirar a impresora" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Mostrar as impresoras compartidas por outros sistemas." -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Compartir as impresoras conectadas a este sistema." -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permitir imprimir desde internet." -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permitir a administración remota." -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Permitir que os usuarios cancelen calquera traballo (non só os seus)." -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configurar as preferencias globais" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Non se configurou nin descubriu ningunha impresora." -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Retirar a clase" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Seguro que quere retirar a clase «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Retirar a impresora" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Seguro que quere retirar a impresora «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Non se puido obter a configuración do servidor." -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1482,83 +1478,83 @@ msgid "Show printer queue(s)" msgstr "Mostrar as colas de impresión" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "A impresora está lista." #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Poñer en pausa a impresora" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Imprimindo…" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Imprimindo «%1»…" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Púxose en pausa a impresora." -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Continuar a impresión" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Descoñécese o estado da impresora." -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Mover a" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Todas as impresoras (un traballo)" msgstr[1] "Todas as impresoras (%1 traballos)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (un traballo)" msgstr[1] "%2 (%1 traballos)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Todas as impresoras" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Non se puido cancelar «%1»." -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Non se puido pór en espera «%1»." -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Non se puideron retomar os traballos en «%1»." -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Non se puido volver imprimir «%1»." @@ -1617,6 +1613,9 @@ msgid "All Jobs" msgstr "Todos os traballos" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Engadir unha impresora" diff -Nru print-manager-17.12.3/po/hu/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/hu/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/hu/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/hu/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-24 15:28+0100\n" "Last-Translator: Kristóf Kiszel \n" "Language-Team: Hungarian \n" @@ -74,15 +74,15 @@ msgid "Printers" msgstr "Nyomtatók" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "Nyomtatók &beállítása…" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "A nyomtatási sor üres" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Egy nyomtatási feladat van a várakozási sorban" diff -Nru print-manager-17.12.3/po/hu/print-manager.po print-manager-18.04.3/po/hu/print-manager.po --- print-manager-17.12.3/po/hu/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/hu/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2015-02-24 16:12+0100\n" "Last-Translator: Kristóf Kiszel \n" "Language-Team: Hungarian \n" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "ulysses@kubuntu.org,urbalazs@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Új nyomtató hozzáadása" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Válassza ki a hozzáadni kívánt nyomtatót" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Illesztőprogram-választás" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Nyomtatóleírás" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "Jelszó" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Nincs" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Páros" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Páratlan" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (szoftver)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (hardver)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -263,7 +263,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,67 @@ msgid "Local Printers" msgstr "Helyi nyomtatók" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Nem sikerült csoportosítani az eszközöket: „%1”" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Nyomtató hozzáadása" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Segédprogram új nyomtatók hozzáadáshoz" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "© Daniel Nicoletti, 2010-2013." -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Portolás Qt 5-re/Plasma 5-re" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Szülőablak azonosítója" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Új nyomtató hozzáadása" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Új nyomtatóosztály hozzáadása" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Megváltoztatja a megadott nyomtató PPD-jét" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Megváltoztatja a megadott nyomtató/eszközazonosító PPD-jét" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Nem sikerült osztályt hozzáadni: „%1”" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -612,8 +608,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -635,7 +631,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Kísérőoldal, házirendek és engedélyezett felhasználók" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -659,29 +655,29 @@ msgid "Printer to be configured" msgstr "A beállítandó nyomtató" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Jelenlegi - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Egyéni illesztőprogram kiválasztása" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Nem sikerült beállítani az osztályt" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Nem sikerült beállítani a nyomtatót" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -817,67 +813,67 @@ msgid "Driver:" msgstr "Illesztőprogram:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Feladat megszakítása" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Jelenlegi feladat újrapróbálása" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Feladat újrapróbálása" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Nyomtató leállítása" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Hitelesítve" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Alapértelmezett" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Nincs" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Védett" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Bizalmas" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Titkos" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Szabványos" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Szigorúan bizalmas" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Nem minősített" @@ -936,7 +932,7 @@ msgid "A&llow these users to print" msgstr "Ezen fe&lhasználók nyomtatásának engedélyezése" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Alapértelmezett lehetőségek beállítása" @@ -948,98 +944,98 @@ msgstr "Nyomtató lekérése az alapértelmezett beállításokhoz" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Illesztőprogram-választás" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Állapot" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Név" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Felhasználó" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Létrehozva" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Befejezve" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Oldalak" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Feldolgozva" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Méret" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Állapotüzenet" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Nyomtató" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Gépnévről" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Nem sikerült átmozgatni ezt: „%1” ide: „%2”" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Sikertelen" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Függőben" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Tartva" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Leállítva" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Lemondva" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Megszakítva" @@ -1054,107 +1050,107 @@ msgid "Wrong username or password" msgstr "Rossz felhasználónév vagy jelszó" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "A nyomtatási szolgáltatás nem érhető el" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nem található" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Tesztoldal" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Nem sikerült a parancsot elküldeni a nyomtató illesztőprogramjának!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Nem sikerült a metódus hívása: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Ajánlott illesztőprogramok" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Nyomtatók" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Üresjárat" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Üresjárat, feladatok elutasítása" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Üresjárat - „%1”" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Üresjárat, feladatok elutasítása - „%1”" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Használatban" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Használatban - „%1”" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Szüneteltetve" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Szüneteltetve, feladatok elutasítása" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Szüneteltetve - „%1”" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Szüneteltetve, feladatok elutasítása - „%1”" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Ismeretlen" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Ismeretlen - „%1”" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Nem sikerült megszerezni az illesztőprogramok listáját: „%1”" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Nem sikerült megkeresni az ajánlott illesztőprogramot: „%1”" @@ -1177,102 +1173,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "PPD-fájl kézi &megadása:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Új nyomtató csatlakoztatva" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Új nyomtató beállítása…" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Az új nyomtató felvéve" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Az új nyomtatóhoz hiányzik az illesztőprogram" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Hiányzó nyomtató-illesztőprogram" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Nincs nyomtató-illesztőprogram ehhez: %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Nincs nyomtató-illesztőprogram ehhez: %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Nincs nyomtató-illesztőprogram ehhez nyomtatóhoz." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Keresés" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Az új nyomtató felvéve" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Az új nyomtatóhoz hiányzik az illesztőprogram" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "Készen áll nyomtatásra: „%1”." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Tesztoldal nyomtatása" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "„%1” felvéve, ellenőrizze az illesztőprogramját." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "„%1” felvéve „%2” illesztőprogram használatával." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Tesztoldal nyomtatása" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Illesztőprogram keresése" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "Készen áll nyomtatásra: „%1”." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Osztály megosztása" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Nyomtató megosztása" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Nyomtatófej-tisztítás" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Önellenőrző oldal nyomtatása" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Nem sikerült végrehajtani a kérést: %1" @@ -1343,95 +1339,95 @@ msgid "Print Self Test Page" msgstr "Önellenőrző oldal nyomtatása" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Nyomtatási beállítások" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Nyomtatóosztály hozzáadása" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Új nyomtató vagy nyomtatóosztály hozzáadása" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Nyomtató eltávolítása" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "A más gépeken megosztott nyomtatók megjelenítése" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "A rendszerhez csatlakoztatott nyomtatók megosztása" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Nyomtatás engedélyezése az internetről" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Távoli adminisztráció engedélyezve" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "A nyomtatási feladatokat bárki törölhesse (nem csak a tulajdonos)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "A globális beállítások módosítása" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nincs beállított vagy felfedezett nyomtató" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Osztály eltávolítása" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Biztosan el szeretné távolítani ezt az osztályt: „%1”?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Nyomtató eltávolítása" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Biztosan el szeretné távolítani ezt a nyomtatót: „%1”?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "A kiszolgáló beállításainak lekérése nem sikerült" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1471,83 +1467,83 @@ msgid "Show printer queue(s)" msgstr "Nyomtatási sorok megjelenítése" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "A nyomtató kész" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Nyomtató szüneteltetése" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Nyomtatás…" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "„%1” nyomtatása" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Nyomtató szüneteltetve" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Nyomtató folytatása" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Nyomtatóállapot ismeretlen" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Mozgatás ide" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Minden nyomtató (%1 feladat)" msgstr[1] "Minden nyomtató (%1 feladat)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 feladat)" msgstr[1] "%2 (%1 feladat)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Minden nyomtató" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Nem sikerült megszakítani: „%1”" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Nem sikerült tartani: „%1”" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Nem sikerült kiadni: „%1”" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Nem sikerült újranyomtatni: „%1”" @@ -1606,6 +1602,9 @@ msgid "All Jobs" msgstr "Minden feladat" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "AddPrinter" diff -Nru print-manager-17.12.3/po/ia/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ia/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ia/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ia/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.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. # -# Giovanni Sora , 2013, 2017. +# Giovanni Sora , 2013, 2017, 2018. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" -"PO-Revision-Date: 2017-07-18 22:21+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" +"PO-Revision-Date: 2018-01-07 23:40+0100\n" "Last-Translator: giovanni \n" -"Language-Team: Interlingua \n" +"Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,24 +50,18 @@ msgstr "Aperi cauda de imprimer" #: plasmoid/package/contents/ui/PrinterItem.qml:283 -#, fuzzy -#| msgid "Active jobs only" msgid "No active jobs" -msgstr "Solmente cargas active" +msgstr "Necun cargas active" #: plasmoid/package/contents/ui/PrinterItem.qml:285 -#, fuzzy -#| msgid "Active jobs only" msgid "One active job" msgid_plural "%1 active jobs" -msgstr[0] "Solmente cargas active" -msgstr[1] "Solmente cargas active" +msgstr[0] "Un carga active" +msgstr[1] "%1 cargas active" #: plasmoid/package/contents/ui/PrinterItem.qml:289 -#, fuzzy -#| msgid "All jobs" msgid "No jobs" -msgstr "Omne cargas" +msgstr "Necun cargas" #: plasmoid/package/contents/ui/PrinterItem.qml:291 msgid "One job" @@ -79,15 +73,15 @@ msgid "Printers" msgstr "Imprimitores" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configura imprimitores..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Cauda de imprimer e vacue" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Il ha un carga de imprimer in le cauda" diff -Nru print-manager-17.12.3/po/ia/print-manager.po print-manager-18.04.3/po/ia/print-manager.po --- print-manager-17.12.3/po/ia/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ia/print-manager.po 2018-07-10 00:08:11.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. # -# Giovanni Sora , 2012, 2013, 2017. +# Giovanni Sora , 2012, 2013, 2017, 2018. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2017-07-18 22:19+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-02-18 23:04+0100\n" "Last-Translator: giovanni \n" -"Language-Team: Interlingua \n" +"Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "g.sora@tiscali.it" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Adde un nove imprimitor" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Selige un imprimitor de adder" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Collige un driver" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Pro favor tu describe tu imprimitor" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "Contrasigno:" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Necun" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Pare" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Dispare" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -262,7 +262,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -342,71 +342,66 @@ msgid "Local Printers" msgstr "Imprimitores local" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Il falleva gruppar dispositivos: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Adde imprimitor" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Instrumento pro adder nome imprimitores" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Porta a Qt5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID de fenestra genitor" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Adde un nove imprimitor" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Adde un nove classe de imprimitor" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Cambia le PPD de un date imprimitor" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Cambia le PPD de un date imprimitor/id de dispositivo" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Il falleva adder classe:'%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -615,8 +610,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -638,7 +633,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Standardos, politicas e usatores permittite" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -662,29 +657,29 @@ msgid "Printer to be configured" msgstr "Il falleva configurar imprimitor" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Currente - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Selige un driver personalisate" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Il falleva configurar un classe" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Ilfalleva configurar un imprimitor" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -823,67 +818,67 @@ msgid "Driver:" msgstr "Driver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Aborta carga" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Re-essaya carga currente" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Reessaya carga" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Stoppa imprimitor" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Authenticate" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Predefinite" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Necun" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Classificate" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidential" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secrete" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "De maxime secreto" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Non Classificate" @@ -942,7 +937,7 @@ msgid "A&llow these users to print" msgstr "&Permitte iste usatores de imprimer" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Fixa optiones predefinite" @@ -954,98 +949,98 @@ msgstr "Demanda imprimitor pro optiones predefinite" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Selige un driver" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Stato" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nomine" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Usator" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Create" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Completate" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Paginas" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Processate" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Grandor" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Message de stato" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Imprimitor" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Ex nomine de hospite" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Il falleva mover '%1' in '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Fallite" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Pendente" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "In pausa" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Stoppate" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cancellate" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Abortate" @@ -1060,107 +1055,107 @@ msgid "Wrong username or password" msgstr "Invalide nomine de usator o contrasigno" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Servicio de imprimer non disponibile" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Non trovate" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Pagina de prova" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Incapace de inviar commando al driver de imprimitor!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Il falleva invocar le methodo: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Drivers recommendate" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Imprimitores" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Otiante" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Inactive, refusante cargas" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Otiante - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Inactive, refusante cargas - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "In uso" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "In uso - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "In pausa" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "In pausa, refusante cargas" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "In pausa - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "In pausa, refusante cargas - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Incognite" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Incognite - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Il falleva obtener un lista de drivers: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Il falleva cercar un driver recommendate: '%1'" @@ -1183,102 +1178,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Forni ma&nualmente un file PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Un nove imprimitor esseva relevate" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Configurante nove imprimitor..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Le nove imprimitor esseva addite" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "On manca drivers pro le nove imprimitor" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Driver de imprimitor mancante" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Necun driver pro %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Necun driver pro %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Necun driver pro iste imprimitor" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Cerca" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Le nove imprimitor esseva addite" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "On manca drivers pro le nove imprimitor" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' es preste per imprimer." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Imprime pagina de prova" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' ha essite addite, pro favor tu verifica su driver." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1' ha essite addite, usante le driver '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Imprime pagina de prova" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Triva driver" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' es preste per imprimer." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Comparti iste classe" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Comparti iste imprimitor" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Netta testas de imprimer" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Imprime pagina de prova de auto test" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Il falleva executar requesta: %1" @@ -1349,95 +1344,95 @@ msgid "Print Self Test Page" msgstr "Imprime pagina de prova de auto test" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Preferentias de imprimer" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Adde un classe de imprimitor" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Adde un nove imprimitor o un nove classe de imprimitor" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Remove imprimitor" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Monstra imprimitores compartite con altere systemas" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Comparti imprimitores connectite a iste systema" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permitte imprimer ex le Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permitte administration remote" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Permitte a usatores de cancellar ulle cargas (non solmente los lor)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configura le preferentias global" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "On non trovava alcun imprimitor configurate o discoperite" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Remove classe" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Tu es secur que tu volwe remover le classe '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Remove imprimitor" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Tu es secur que tu volwe remover le imprimitor '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Il falleva obtener preferentias de servitor" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1477,83 +1472,83 @@ msgid "Show printer queue(s)" msgstr "Monstra cauda(s) de imprimer" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Imprimitor preste" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pone in pausa imprimitor" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Imprimente..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Imprimente '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Imprimitor ponite in pausa" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Reprende imprimitor" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Stato de imprimitor incognite" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Move a" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Omne imprimitores (%1 carga)" msgstr[1] "Omne imprimitores (%1 Cargas)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 Carga)" msgstr[1] "%2 (%1 Cargas)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Omne imprimitores" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Il falleva cancellar '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Il falleva pausar '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Il falleva liberar '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Il falleva reimprimer '%1'" @@ -1612,6 +1607,9 @@ msgid "All Jobs" msgstr "Omne cargas" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Commando de adder imprimitor (addprinter)" diff -Nru print-manager-17.12.3/po/it/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/it/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/it/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/it/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: plasma_applet_printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-03-02 01:25+0100\n" "Last-Translator: Luigi Toscano \n" "Language-Team: Italian \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Stampanti" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configura le stampanti..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "La coda di stampa è vuota" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "C'è un lavoro di stampa nella coda" diff -Nru print-manager-17.12.3/po/it/print-manager.po print-manager-18.04.3/po/it/print-manager.po --- print-manager-17.12.3/po/it/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/it/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-27 00:40+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-25 23:01+0100\n" "Last-Translator: Luigi Toscano \n" "Language-Team: Italian \n" "Language: it\n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "luigi.toscano@tiscali.it" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Aggiungi una nuova stampante" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Seleziona una stampante da aggiungere" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Scegli un driver" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Descrivi la tua stampante" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "Password" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Nessuna" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Pari" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Dispari" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -262,7 +262,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,66 @@ msgid "Local Printers" msgstr "Stampanti locali" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Impossibile raggruppare i dispositivi: «%1»" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Aggiungi stampante" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Strumento per aggiungere nuove stampanti" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Conversione a Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Identificato della finestra genitore" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Aggiungi una nuova stampante" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Aggiungi una nuova classe di stampanti" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Modifica il PPD di una certa stampante" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Modifica il PPD di una certa stampante o identificatore di dispositivo" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Aggiunta della classe non riuscita: «%1»" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -612,8 +607,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -635,7 +630,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Striscioni, politiche e utenti autorizzati" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -659,29 +654,29 @@ msgid "Printer to be configured" msgstr "Stampante da configurare" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Corrente - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Seleziona un driver personalizzato" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Configurazione della classe non riuscita" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Configurazione della stampante non riuscita" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -818,67 +813,67 @@ msgid "Driver:" msgstr "Driver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Interrompi il processo di stampa" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Ripeti il processo di stampa corrente" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Riprova il processo di stampa" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Ferma la stampante" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Identificato" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Predefinito" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Nessuno" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Riservato" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidenziale" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Segreto" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Normale" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Topsecret" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Non classificato" @@ -937,7 +932,7 @@ msgid "A&llow these users to print" msgstr "P&ermetti a questi utenti di stampare" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Imposta le opzioni predefinite" @@ -949,98 +944,98 @@ msgstr "Interroga la stampante per le opzioni predefinite" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Seleziona un driver" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Stato" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nome" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Utente" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Creato" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Completato" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Pagine" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Processato" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Dimensione" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Messaggio di stato" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Stampante" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Dall'host" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Spostamento non riuscito di «%1» in «%2»" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Non riuscito" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "In attesa" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "In sospeso" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Fermato" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Annullato" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Interrotto" @@ -1055,107 +1050,107 @@ msgid "Wrong username or password" msgstr "Nome utente o password non validi" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Il servizio di stampa non è disponibile" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Non trovato" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Pagina di prova" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Impossibile inviare il comando al driver della stampante!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Impossibile invocare il metodo: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Driver consigliati" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Stampanti" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inattiva" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Inattiva, rifiuta le stampe" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Inattiva - «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Inattiva, rifiuta le stampe - «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "In uso" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "In uso - «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "In pausa" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "In pausa, rifiuta le stampe" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "In pausa - «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "In pausa, rifiuta le stampe - «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Sconosciuto" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Sconosciuto - «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Impossibile recuperare un elenco di driver: «%1»" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Impossibile trovare un driver consigliato: «%1»" @@ -1178,102 +1173,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Fornisci ma&nualmente un file PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "È stata rilevata una nuova stampante" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Configurazione della nuova stampante..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "La nuova stampante è stata aggiunta" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Mancano i driver per la nuova stampante" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Driver non presente per la stampante" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Nessun driver per la stampante %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Nessun driver per la stampante %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Nessun driver per questa stampante." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Cerca" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "La nuova stampante è stata aggiunta" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Mancano i driver per la nuova stampante" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "«%1» è pronta per stampare" - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Stampa pagina di prova" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "«%1» è stata aggiunta, controlla il suo driver." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "«%1» è stata aggiunta usando il driver «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Stampa pagina di prova" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Trova driver" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "«%1» è pronta per stampare" + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Condividi questa classe" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Condividi questa stampante" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Pulisci le testine della stampante" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Stampa pagina di prova automatica" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Impossibile eseguire la richiesta: %1" @@ -1344,53 +1339,53 @@ msgid "Print Self Test Page" msgstr "Stampa pagina di prova automatica" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Impostazioni stampa" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Aggiungi una classe di stampanti" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Aggiunge una nuova stampante o una classe di stampanti" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Rimuovi stampante" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Mostra le stampanti condivise da altri sistemi" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Condividi le stampanti connesse a questo sistema" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permetti la stampa da Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permetti l'amministrazione remota" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" @@ -1398,43 +1393,43 @@ "Permetti agli utenti di annullare qualsiasi processo di stampa (non solo i " "propri)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configure le preferenze globali" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nessuna stampante è stata configurata o trovata" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Rimuovi classe" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Sei sicuro di voler rimuovere la classe «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Rimuovi stampante" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Sei sicuro di voler rimuovere la stampante «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Impossibile recuperare le impostazioni del server" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1474,83 +1469,83 @@ msgid "Show printer queue(s)" msgstr "Mostra code di stampa" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Stampante pronta" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Metti in pausa la stampante" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Stampa..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Stampa di «%1»" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Stampante in pausa" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Riprendi stampante" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Stato della stampante sconosciuto" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Sposta in" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Tutte le stampanti (%1 processo)" msgstr[1] "Tutte le stampanti (%1 processi)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 processo)" msgstr[1] "%2 (%1 processi)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Tutte le stampanti" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Impossibile annullare «%1»" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Impossibile sospendere «%1»" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Impossibile riprendere «%1»" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Impossibile ristampare «%1»" @@ -1609,6 +1604,9 @@ msgid "All Jobs" msgstr "Tutti i processi" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Aggiungi stampante" diff -Nru print-manager-17.12.3/po/ja/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ja/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ja/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ja/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2013-06-12 01:01-0700\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" @@ -70,15 +70,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "" diff -Nru print-manager-17.12.3/po/ja/print-manager.po print-manager-18.04.3/po/ja/print-manager.po --- print-manager-17.12.3/po/ja/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ja/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: add-printer\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2012-06-05 01:02-0700\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" @@ -24,38 +24,38 @@ msgid "Your emails" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -123,37 +123,37 @@ msgid "Password" msgstr "" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -237,7 +237,7 @@ "" msgstr "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -312,71 +312,66 @@ msgid "Local Printers" msgstr "" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -579,8 +574,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -602,7 +597,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -624,29 +619,29 @@ msgid "Printer to be configured" msgstr "" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -745,67 +740,67 @@ msgid "Driver:" msgstr "" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "" @@ -864,7 +859,7 @@ msgid "A&llow these users to print" msgstr "" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "" @@ -876,98 +871,98 @@ msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "" @@ -982,107 +977,107 @@ msgid "Wrong username or password" msgstr "" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "" @@ -1105,102 +1100,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 #, kde-format -msgid "Missing printer driver" +msgid "The New Printer was Added" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:116 #, kde-format -msgid "No printer driver for %1 %2." +msgid "The New Printer is Missing Drivers" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format -msgid "No printer driver for %1." +msgid "Missing printer driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format -msgid "No driver for this printer." +msgid "No printer driver for %1 %2." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format -msgid "Search" +msgid "No printer driver for %1." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:126 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format -msgid "The New Printer was Added" +msgid "No driver for this printer." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format -msgid "The New Printer is Missing Drivers" +msgid "Search" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:167 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format -msgid "'%1' is ready for printing." +msgid "'%1' has been added, please check its driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format -msgid "Print test page" +msgid "'%1' has been added, using the '%2' driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 #, kde-format -msgid "'%1' has been added, please check its driver." +msgid "Print test page" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format -msgid "'%1' has been added, using the '%2' driver." +msgid "Find driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:270 #, kde-format -msgid "Find driver" +msgid "'%1' is ready for printing." msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "" @@ -1271,95 +1266,95 @@ msgid "Print Self Test Page" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1399,83 +1394,83 @@ msgid "Show printer queue(s)" msgstr "" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "" msgstr[1] "" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "" msgstr[1] "" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "" diff -Nru print-manager-17.12.3/po/kk/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/kk/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/kk/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/kk/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2013-06-13 06:34+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -77,15 +77,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Басу кезегі бос" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Кезекте %1 басу тапсырма бар" diff -Nru print-manager-17.12.3/po/kk/print-manager.po print-manager-18.04.3/po/kk/print-manager.po --- print-manager-17.12.3/po/kk/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/kk/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2013-06-16 06:28+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -29,38 +29,38 @@ msgid "Your emails" msgstr "sairan@computer.org" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Жаңа принтерін қосу" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Қосатын принтерді таңдау" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Драйверін сайлау" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Принтеріңізді сипаттаңыз" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,37 +128,37 @@ msgid "Password" msgstr "Паролі" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Жоқ" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Жұп" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Тақ" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (бағдарламалық)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (аппараттық)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -264,7 +264,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,67 @@ msgid "Local Printers" msgstr "Жергілікті принтерлер" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Құрылғыларды топтастыру жаңылысы: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Принтер жазуын қосу" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Жаңа принтерлердің жазуларын қосу құралы" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Аталық терезесінің ID-і" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Жаңа принтерін қосу" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Жаңа принтер класын қосу" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Көрсетілген принтердің PPD-ін өзгерту" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Көрсетілген принтер/құрылғыдың PPD-ін өзгерту" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Класты қосу жаңылысы: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -611,8 +607,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -634,7 +630,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Баннер, саясат және рұқсатты пайдаланушылар" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -661,29 +657,29 @@ msgid "Printer to be configured" msgstr "Класты баптау жаңылысы" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Назардағысы - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Өзгеше драйверді таңдау" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Класты баптау жаңылысы" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Принтерді баптау жаңылысы" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -819,67 +815,67 @@ msgid "Driver:" msgstr "Драйвері:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Тапсырманы доғару" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Назардағысын қайталап көру" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Қайталап көру" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Принтерді тоқтату" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Аутентификациясы өткен" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Әдетті" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Жоқ" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Жіктелген" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Сырлы" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Құпиялы" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Стандартты" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Өте құпиялы" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Жіктелмеген" @@ -940,7 +936,7 @@ msgid "A&llow these users to print" msgstr "Мыналарға басуды рұқсат ету" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Әдетті параметрлерін орнату" @@ -952,98 +948,98 @@ msgstr "Принтердің әдетті параметрлерін сұрау" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Драйверін таңдау" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Күй-жайы" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Атауы" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Пайдаланушы" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Қашаннан" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Біткен" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Беттер" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Өндірілген" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Өлшемі" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Күй-жай хабарламасы" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Принтер" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Хост атауынан" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "'%1' -> '%2' жылжыту жаңылысы" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Жаңылды" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Күту" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Аялдау" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Тоқтатылды" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Айныған" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Доғарылды" @@ -1058,107 +1054,107 @@ msgid "Wrong username or password" msgstr "Жарамсыз пайдаланушысы не паролі" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Басу қызмет қол жеткізбеді" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Табылмады" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Сынақ беті" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Принтер драйверіне команда жіберілмейді!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Әдісті жұмсау жаңылысы: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Тиісті драйврлері" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Принтерлер" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Іссіз" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Ісіз, тапсырмалардан бас тарту" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Іссіз - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Ісіз, тапсырмадан бас тарту - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Қолданыста" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Қолданыста - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Аялдаулы" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Аялдалған, тапсырмалардан бас тарту" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Аялдаулы - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Аялдалған, тапсырмалардан бас тарту - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Беймәлім" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Беймәлім - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Драйверлер тізімін табу жаңылысы: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Тиісті драйверін табу жаңылысы: '%1'" @@ -1183,102 +1179,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Қолмен келтірілген PPD файлы:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Жаңа принтер байқалды" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Жаңа принтерді баптау..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Жаңа принтер жазуы қосылды" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Жаңа принтердің драйвері жоқ" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Принтердің драйвері жоқ" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "%1 %2 принтердің драйвері жоқ." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "%1 принтердің драйвері жоқ." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Бұл принтердің драйвері жоқ." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Іздеу" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Жаңа принтер жазуы қосылды" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Жаңа принтердің драйвері жоқ" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' принтері дайын." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Сынақ бетті басу" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' қосылды, оның драйверін тексеріңіз." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%2' драйверін қолданатын '%1' деген принтері қосылды." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Сынақ бетті басу" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Драйверін табу" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' принтері дайын." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Бұл класты ортактастыру" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Бұл принтерді ортақтастыру" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Баспа бастиектерін тазалау" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Өзін сынау бетті басу" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Сұрағанын орындау жаңылысы: %1" @@ -1349,95 +1345,95 @@ msgid "Print Self Test Page" msgstr "Өзін сынау бетті басу" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Басу параметрлері" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Принтер класын қосу" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Принтер класына жаңа принтерді қосу" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Принтер жазуын кетіру" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Басқа жүйелердегі ортақ принтерлерді көрсету" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Осы жүйедегі принтерлерді ортақтастыру" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Интернеттен басу тапсырмаларды қабылдау" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Қашықтан әкімшілік етуді рұқсат ету" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Басқаларға кез-келген (өзінікі емес те) тапсырманы жоюды рұқсат ету" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Жалпы жүйелік баптау" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Бапталған не табылған принтерлер жоқ" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Класын өшіру" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "'%1' класын өшіргіңіз келгені рас па?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Принтер жазуын кетіру" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "'%1' принтерін өшіргіңіз келгені рас па?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Сервер параметрлерін табу жаңылысы" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1479,81 +1475,81 @@ msgid "Show printer queue(s)" msgstr "Принтердің кезегін көрсету" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Принтер дайын" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Аялдату" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Басып шығару..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "'%1' дегенді басу" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Принтер аялдауда" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Жалғастыру" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Принтердің күйі беймәлім" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Мынаған жылжыту" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Бүкіл принтерлер (%1 тапсырма)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 тапсырма)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Бүкіл принтерлер" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "'%1' дегеннен айну жаңылысы" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "'%1' дегенді аялдау жаңылысы" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "'%1' дегенді аялдаудан жіберу жаңылысы" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Қайта басу жаңылысы: '%1'" @@ -1612,6 +1608,9 @@ msgid "All Jobs" msgstr "Барлық тапсырмалар" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Принтерді қосу" diff -Nru print-manager-17.12.3/po/km/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/km/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/km/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/km/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: plasma_applet_printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2012-06-12 10:41+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" @@ -72,15 +72,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "" diff -Nru print-manager-17.12.3/po/km/print-manager.po print-manager-18.04.3/po/km/print-manager.po --- print-manager-17.12.3/po/km/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/km/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: add-printer\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2012-06-29 15:40+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" @@ -31,38 +31,38 @@ "khoemsokhem@khmeros.info,​​mornmet@khmeros.info,sutha@khmeros.info," "ratanak@khmeros.info,sophea@khmeros.info" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "ម៉ាស៊ីន​បោះពុម្ព" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "ជ្រើស​ម៉ាស៊ីន​បោះពុម្ព​ដើម្បី​បន្ថែម​​" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "ជ្រើស​កម្មវិធី​បញ្ជា" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "សូម​អ្នក​ពិពណ៌នា​ពី​ម៉ាស៊ីន​បោះពុម្ព" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -130,37 +130,37 @@ msgid "Password" msgstr "ពាក្យសម្ងាត់" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "គ្មាន" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "ស្មើ" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "សេស" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (ផ្នែក​ទន់)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (ផ្នែករឹង)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -266,7 +266,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,66 @@ msgid "Local Printers" msgstr "ម៉ាស៊ីន​បោះពុម្ព​មូលដ្ឋាន" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, fuzzy, kde-format #| msgid "AddPrinter" msgid "Add Printer" msgstr "បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "ឧបករណ៍​សម្រាប់​បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព​ថ្មី" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, fuzzy, kde-format #| msgid "(C) 2010-2012 Daniel Nicoletti" -msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "រក្សាសិទ្ធិ​ឆ្នាំ ២០១០-២០១២ ដោយ Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add a New Printer" msgid "Add a new printer" msgstr "ម៉ាស៊ីន​បោះពុម្ព" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add a New Printer" msgid "Add a new printer class" msgstr "ម៉ាស៊ីន​បោះពុម្ព" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to add class" @@ -413,7 +408,7 @@ msgid "Failed to add class: '%1'" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បន្ថែម class" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to configure printer" @@ -619,8 +614,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -642,7 +637,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -668,17 +663,17 @@ msgid "Printer to be configured" msgstr "បាន​បរាជ័យ​ក្នុង​បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to configure printer" @@ -686,7 +681,7 @@ msgid "Failed to configure class" msgstr "បាន​បរាជ័យ​ក្នុង​បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to configure printer" @@ -694,7 +689,7 @@ msgid "Failed to configure printer" msgstr "បាន​បរាជ័យ​ក្នុង​បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -803,73 +798,73 @@ msgid "Driver:" msgstr "" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, fuzzy, kde-format #| msgctxt "@option:check" #| msgid "Share this printer" msgid "Stop printer" msgstr "ចែករំលែក​ម៉ាស៊ីន​បោះពុម្ព​នេះ" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, fuzzy, kde-format #| msgctxt "@title:group" #| msgid "Authentication" msgid "Authenticated" msgstr "ការ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, fuzzy, kde-format #| msgctxt "@label:listbox" #| msgid "None" msgid "None" msgstr "គ្មាន" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "" @@ -928,7 +923,7 @@ msgid "A&llow these users to print" msgstr "" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "" @@ -940,7 +935,7 @@ msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, fuzzy, kde-format #| msgctxt "@title:window" @@ -948,99 +943,99 @@ msgid "Select a Driver" msgstr "ជ្រើស​កម្មវិធី​បញ្ជា" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Name:" msgid "Name" msgstr "ឈ្មោះ ៖" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, fuzzy, kde-format #| msgctxt "@label:textbox" #| msgid "Username:" msgid "User" msgstr "ឈ្មោះ​អ្នក​ប្រើ ៖" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, fuzzy, kde-format #| msgid "AddPrinter" msgid "Printer" msgstr "បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Failed" msgid "Failed" msgstr "បាន​បរាជ័យ" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "" @@ -1055,111 +1050,111 @@ msgid "Wrong username or password" msgstr "" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, fuzzy, kde-format #| msgid "AddPrinter" msgid "Printers" msgstr "បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "ទំនេរ" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "ទំនេរ '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "កំពុង​ប្រើ" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "កំពុងប្រើ '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "បាន​ផ្អាក" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "បាន​ផ្អាក '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, fuzzy, kde-format #| msgid "Paused - '%1'" msgid "Paused, rejecting jobs - '%1'" msgstr "បាន​ផ្អាក '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "មិន​ស្គាល់" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "មិន​ស្គាល់ '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to add class" msgid "Failed to get a list of drivers: '%1'" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បន្ថែម class" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to configure printer" @@ -1185,92 +1180,92 @@ msgid "Ma&nually Provide a PPD File:" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add a New Printer" msgid "A New Printer was detected" msgstr "ម៉ាស៊ីន​បោះពុម្ព" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, fuzzy, kde-format #| msgid "Tool for adding new printers" msgid "Configuring new printer..." msgstr "ឧបករណ៍​សម្រាប់​បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព​ថ្មី" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, fuzzy, kde-format +#| msgctxt "@item" +#| msgid "Other Network Printers" +msgid "The New Printer was Added" +msgstr "ម៉ាស៊ីន​បោះពុម្ព​បណ្ដាញ​ផ្សេង​ទៀត" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, fuzzy, kde-format #| msgctxt "@option:check" #| msgid "Share this printer" msgid "No driver for this printer." msgstr "ចែករំលែក​ម៉ាស៊ីន​បោះពុម្ព​នេះ" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, fuzzy, kde-format -#| msgctxt "@item" -#| msgid "Other Network Printers" -msgid "The New Printer was Added" -msgstr "ម៉ាស៊ីន​បោះពុម្ព​បណ្ដាញ​ផ្សេង​ទៀត" - -#: print-manager-kded/NewPrinterNotification.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format -msgid "The New Printer is Missing Drivers" +msgid "'%1' has been added, please check its driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:167 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format -msgid "'%1' is ready for printing." +msgid "'%1' has been added, using the '%2' driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 #, kde-format msgid "Print test page" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format -msgid "'%1' has been added, please check its driver." -msgstr "" - -#: print-manager-kded/NewPrinterNotification.cpp:181 -#, kde-format -msgid "'%1' has been added, using the '%2' driver." +msgid "Find driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:270 #, kde-format -msgid "Find driver" +msgid "'%1' is ready for printing." msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, fuzzy, kde-format #| msgctxt "@option:check" #| msgid "Share this printer" msgid "Share this class" msgstr "ចែករំលែក​ម៉ាស៊ីន​បោះពុម្ព​នេះ" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, fuzzy, kde-format #| msgctxt "@option:check" #| msgid "Share this printer" @@ -1278,20 +1273,20 @@ msgstr "ចែករំលែក​ម៉ាស៊ីន​បោះពុម្ព​នេះ" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "សម្អាត​​ក្បាល​បោះពុម្ព" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "បោះពុម្ព​ទំព័រ​សាកល្បង" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to add class" @@ -1368,12 +1363,12 @@ msgid "Print Self Test Page" msgstr "បោះពុម្ព​ទំព័រ​សាកល្បង" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "ការ​កំណត់​បោះពុម្ព" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add a New Printer" @@ -1381,26 +1376,26 @@ msgid "Add a Printer Class" msgstr "ម៉ាស៊ីន​បោះពុម្ព" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព​ថ្មី ឬ​ថ្នាក់​ម៉ាស៊ីន​បោះពុម្ព" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, fuzzy, kde-format #| msgctxt "@item" #| msgid "Local Printers" msgid "Remove Printer" msgstr "ម៉ាស៊ីន​បោះពុម្ព​មូលដ្ឋាន" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "បង្ហាញ​ម៉ាស៊ីន​បោះពុម្ព​ដែល​បាន​ចែក​រំលែក​ដោយ​ប្រព័ន្ធ​ផ្សេង​ៗ​ទៀត" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, fuzzy, kde-format #| msgctxt "@info:tooltip" #| msgid "A printer connected to a USB port" @@ -1408,61 +1403,61 @@ msgid "Share printers connected to this system" msgstr "ម៉ាស៊ីន​បោះពុម្ព​​បាន​តភ្ជាប់​ទៅកាន់​ច្រក USB" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "អនុញ្ញាត​ឲ្យ​បោះពុម្ព​​ពី​អ៊ីនធឺណិត" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "អនុញ្ញាត​ការ​គ្រប់គ្រង​ពីចម្ងាយ" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​បោះបង់​​កិច្ចការ​មួយ​ចំនួន (មិន​មែន​កិច្ចការ​ផ្ទាល់ខ្លួន​របស់​ពួកគេ​ទេ)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "កំណត់​រចនាសម្ព័ន្ធ​ចំណូលចិត្ត​សកល" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "គ្មាន​ម៉ាស៊ីន​បោះពុម្ព​ត្រូវ​បាន​កំណត់​រចនាសម្ព័ន្ធ ឬ​រក​ឃើញ​ឡើយ" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "យក​ថ្នាក់​ចេញ" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "តើ​អ្នក​ពិត​ជា​ចង់​យក​ថ្នាក់ '%1' ចេញ​ឬ ?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "យក​ម៉ាស៊ីន​បោះពុម្ព​ចេញ" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "តើ​អ្នក​ពិត​ជា​ចង់​យក​ម៉ាស៊ីន​បោះពុម្ព '%1' ចេញ​ឬ ?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "បាន​បរាជ័យ​ក្នុងការ​ទទួល​យក​ការកំណត់​របស់​ម៉ាស៊ីន​បម្រើ" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to configure printer" @@ -1508,14 +1503,14 @@ msgid "Show printer queue(s)" msgstr "ចែករំលែក​ម៉ាស៊ីន​បោះពុម្ព​នេះ" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, fuzzy, kde-format #| msgid "AddPrinter" msgid "Printer ready" msgstr "បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, fuzzy, kde-format #| msgctxt "@title:window" @@ -1523,77 +1518,77 @@ msgid "Pause Printer" msgstr "ម៉ាស៊ីន​បោះពុម្ព" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, fuzzy, kde-format #| msgctxt "@item" #| msgid "Local Printers" msgid "All Printers" msgstr "ម៉ាស៊ីន​បោះពុម្ព​មូលដ្ឋាន" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to add class" msgid "Failed to cancel '%1'" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បន្ថែម class" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to add class" msgid "Failed to hold '%1'" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បន្ថែម class" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to add class" msgid "Failed to release '%1'" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បន្ថែម class" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to configure printer" @@ -1656,6 +1651,9 @@ msgid "All Jobs" msgstr "" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "បន្ថែម​ម៉ាស៊ីន​បោះពុម្ព" diff -Nru print-manager-17.12.3/po/ko/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ko/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ko/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ko/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-07-30 17:10+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -71,15 +71,15 @@ msgid "Printers" msgstr "프린터" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "프린터 설정(&C)..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "인쇄 큐가 비어 있음" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "인쇄 큐에 작업이 %1개 있음" diff -Nru print-manager-17.12.3/po/ko/print-manager.po print-manager-18.04.3/po/ko/print-manager.po --- print-manager-17.12.3/po/ko/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ko/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2015-07-30 17:09+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "kde@peremen.name" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "새 프린터 추가" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "추가할 프린터 선택" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "드라이버 선택" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "프린터 설명을 입력하십시오" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "암호" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "없음" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "짝수" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "홀수" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (소프트웨어)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (하드웨어)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -263,7 +263,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -338,71 +338,67 @@ msgid "Local Printers" msgstr "로컬 프린터" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "장치를 묶을 수 없음: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "프린터 추가" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "새 프린터 추가 도구" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Qt 5/Plasma 5 포팅" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "부모 창 ID" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "새 프린터 추가" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "새 프린터 클래스 추가" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "선택한 프린터의 PPD 변경" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "선택한 프린터/장치 ID의 PPD 변경" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "클래스를 추가할 수 없음: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -605,8 +601,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -628,7 +624,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "배너, 정책, 허용된 사용자" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -652,29 +648,29 @@ msgid "Printer to be configured" msgstr "설정할 프린터" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "현재 - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "사용자 정의 드라이버 선택" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "클래스를 설정할 수 없음" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "프린터를 설정할 수 없음" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -810,67 +806,67 @@ msgid "Driver:" msgstr "드라이버:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "작업 중지" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "현재 작업 다시 시도" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "작업 다시 시도" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "프린터 정지" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "인증됨" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "기본값" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "없음" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "인가자 전용" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "기밀" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "비밀" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "표준" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "일급 기밀" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "분류되지 않음" @@ -929,7 +925,7 @@ msgid "A&llow these users to print" msgstr "다음 사용자는 인쇄 허용(&L)" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "기본 옵션 설정" @@ -941,98 +937,98 @@ msgstr "프린터에 기본 옵션 질의" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "드라이버 선택" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "상태" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "이름" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "사용자" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "생성됨" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "완료됨" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "쪽 수" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "진행됨" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "크기" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "상태 메시지" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "프린터" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "호스트 이름에서" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "'%1'을(를) '%2'(으)로 이동할 수 없음" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "실패" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "대기 중" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "일시 정지됨" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "정지됨" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "취소됨" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "중단됨" @@ -1047,107 +1043,107 @@ msgid "Wrong username or password" msgstr "잘못된 사용자 이름이나 암호" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "인쇄 서비스를 사용할 수 없음" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "찾을 수 없음" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "테스트 페이지" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "프린터 드라이버에 명령을 보낼 수 없음!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "메서드를 호출할 수 없음: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "추천 드라이버" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "프린터" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "대기" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "대기, 작업 거부 중" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "대기 - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "대기, 작업 거부 중 - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "사용 중" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "사용 중 - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "일시 정지됨" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "일시 정지됨, 작업 거부 중" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "일시 정지됨 - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "일시 정지됨, 작업 거부 중 - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "알 수 없음" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "알 수 없음 - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "드라이버 목록을 가져올 수 없음: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "추천 드라이버를 찾을 수 없음: '%1'" @@ -1170,102 +1166,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "수동으로 PPD 파일 지정(&N):" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "새 프린터가 감지됨" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "새 프린터 설정..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "새 프린터가 추가됨" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "새 프린터의 드라이버가 없음" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "프린터 드라이버 없음" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "%1 %2에 대한 프린터 드라이버가 없습니다." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "%1에 대한 프린터 드라이버가 없습니다." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "이 프린터에 대한 드라이버가 없습니다." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "찾기" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "새 프린터가 추가됨" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "새 프린터의 드라이버가 없음" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1'에서 인쇄할 수 있습니다." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "테스트 페이지 인쇄" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1'이(가) 추가되었으며 드라이버를 확인하십시오." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1'이(가) 추가되었으며 드라이버 '%2'을(를) 사용합니다." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "테스트 페이지 인쇄" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "드라이버 찾기" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1'에서 인쇄할 수 있습니다." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "이 클래스 공유" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "이 프린터 공유" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "프린터 헤드 청소" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "자가 진단 페이지 인쇄" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "요청을 처리할 수 없음: %1" @@ -1336,95 +1332,95 @@ msgid "Print Self Test Page" msgstr "자가 진단 페이지 인쇄" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "인쇄 설정" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "프린터 클래스 추가" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "새 프린터나 프린터 클래스 추가" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "프린터 삭제" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "다른 시스템에서 공유한 프린터 보이기" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "이 시스템에 연결된 프린터 공유" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "인터넷 인쇄 허용하기" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "원격 관리 허용하기" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "다른 사용자의 작업도 취소할 수 있도록 허용하기" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "전역 설정 변경" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "설정되거나 발견된 프린터 없음" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "클래스 삭제" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "클래스 '%1'을(를) 삭제하시겠습니까?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "프린터 삭제" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "프린터 '%1'을(를) 삭제하시겠습니까?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "서버 설정을 가져올 수 없음" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1464,81 +1460,81 @@ msgid "Show printer queue(s)" msgstr "인쇄 큐 보이기" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "프린터 준비됨" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "프린터 일시 정지" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "인쇄 중..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "'%1' 인쇄 중" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "프린터 일시 정지됨" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "프린터 다시 시작" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "프린터 상태 알 수 없음" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "다음으로 이동" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "모든 프린터(작업 %1개)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2(작업 %1개)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "모든 프린터" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "'%1'을(를) 취소할 수 없음" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "'%1'을(를) 대기시킬 수 없음" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "'%1'을(를) 다시 시작할 수 없음" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "'%1'을(를) 다시 인쇄할 수 없음" @@ -1597,6 +1593,9 @@ msgid "All Jobs" msgstr "모든 작업" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "AddPrinter" diff -Nru print-manager-17.12.3/po/lt/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/lt/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/lt/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/lt/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: l 10n\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2016-08-30 16:19+0200\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: Lithuanian \n" @@ -81,15 +81,15 @@ msgid "Printers" msgstr "Spausdintuvai" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Konfigūruoti spausdintuvus..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Spausdinimo eilė yra tuščia" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Viena spausdinimo užduotis eilėje" diff -Nru print-manager-17.12.3/po/lt/print-manager.po print-manager-18.04.3/po/lt/print-manager.po --- print-manager-17.12.3/po/lt/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/lt/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: l 10n\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2015-12-29 20:55+0200\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: lt \n" @@ -31,38 +31,38 @@ msgid "Your emails" msgstr "liudas@akmc.lt" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Pridėti naują spausdintuvą" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Pasirinkti pridėtiną spausdintuvą" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Pasirinkite tvarkyklę" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Prašome apibūdinti spausdintuvą" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -130,37 +130,37 @@ msgid "Password" msgstr "Slaptažodis" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Joks" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Lyginiai" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Nelyginiai" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (programinis)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (aparatinis)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -266,7 +266,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -346,71 +346,67 @@ msgid "Local Printers" msgstr "Vietiniai spausdintuvai" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Nepavyko sugrupuoti įrenginių: „%1“" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Pridėti spausdintuvą" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Įrankis naujų spausdintuvų pridėjimui" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Aukštesnio lygmens lango ID" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Pridėti naują spausdintuvą" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Pridėti naują spausdintuvo klasę" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Pakeičia PPD duotam spausdintuvui" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Pakeičia PPD duotam spausdintuvui/įrenginio id" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Nepavyko pridėti klasės: „%1“" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -619,8 +615,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -642,7 +638,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Logotipai, taisyklės ir leisti naudotojai" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -669,29 +665,29 @@ msgid "Printer to be configured" msgstr "Nepavyko sukonfigūruoti klasės" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Dabartinis - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Pasirinkti savitą tvarkyklę" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Nepavyko sukonfigūruoti klasės" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Nepavyko sukonfigūruoti spausdintuvo" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -827,67 +823,67 @@ msgid "Driver:" msgstr "Tvarkyklė:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Nutraukti darbą" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Pakartoti dabartinį darbą" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Pakartoti darbą" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Sustabdyti spausdintuvą" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Nustatyta tapatybė" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Numatytas" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Joks" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Klasifikuota" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Konfidencialu" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Slaptai" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standartinis" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Visiškai slaptai" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Neklasifikuota" @@ -948,7 +944,7 @@ msgid "A&llow these users to print" msgstr "Leisti šiems naudotojams spausdinti" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Nustatyti numatytus nustatymus" @@ -960,98 +956,98 @@ msgstr "Klausti spausdintuvo numatytų nustatymų" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Pasirinkti tvarkyklę" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Būsena" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Pavadinimas" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Naudotojas" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Sukurta" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Užbaigta" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Puslapiai" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Apdorota" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Dydis" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Būsenos žinutė" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Spausdintuvas" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Iš kompiuterio vardo" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Nepavyko perkelti „%1“ į „%2“" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Nepavyko" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Laukia" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Sulaikytas" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Sustabdytas" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Atšauktas" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Nutrauktas" @@ -1066,107 +1062,107 @@ msgid "Wrong username or password" msgstr "Neteisingas naudotojo vardas arba slaptažodis" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Spausdinimo paslauga nepasiekiama" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nerasta" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Bandomasis puslapis" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Nepavyksta nusiųsti komandos spausdintuvo tvarkyklei!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Nepavyko iškviesti metodo: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Rekomenduojamos tvarkyklės" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Spausdintuvai" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Neveiklus" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Neveiksnus, atmeta darbus" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Neveiklus - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Neveiksnus, atmeta darbus - „%1“" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Naudojamas" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Naudojamas - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Pristabdyta" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Pristabdytas, atmeta darbus" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Pristabdyta - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Pristabdytas, atmeta darbus - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Nežinoma" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Nežinoma - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Nepavyko gauti tvarkyklių sąrašo: „%1“" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Nepavyko ieškoti rekomenduojamos tvarkyklės: „%1“" @@ -1191,102 +1187,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Pačiam pateikti PPD failą:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Aptiktas naujas spausdintuvas" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Konfigūruojamas naujas spausdintuvas..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Naujas spausdintuvas buvo pridėtas" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Naujam spausdintuvui trūksta tvarkyklių" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Trūksta spausdintuvo tvarkyklės" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Nėra tvarkyklės spausdintuvui %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Nėra tvarkyklės spausdintuvui %1 ." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Nėra tvarkyklės šiam spausdintuvui." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Ieškoti" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Naujas spausdintuvas buvo pridėtas" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Naujam spausdintuvui trūksta tvarkyklių" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "„%1“ pasiruošęs spausdinimui." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Spausdinti bandomąjį puslapį" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "„%1“ buvo pridėtas, prašome patikrinti jo tvarkyklę." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "„%1“ buvo pridėtas, naudojama „%2“ tvarkyklė." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Spausdinti bandomąjį puslapį" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Surasti valdyklę" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "„%1“ pasiruošęs spausdinimui." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Dalintis šia klase" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Dalintis šiuo spausdintuvu" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Valyti spausdintuvo galvutes" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Spausdinti bandomąjį lapą" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Nepavyko įvykdyti užklausos: %1" @@ -1357,95 +1353,95 @@ msgid "Print Self Test Page" msgstr "Spausdinti testinį puslapį" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Spausdinimo nuostatos" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Pridėti spausdintuvo klasę" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Pridėti naują spausdintuvą arba spausdintuvo klasę" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Pašalinti spausdintuvą" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Rodyti kitų naudotojų ar sistemų bendrinamus spausdintuvus" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Bendrinti spausdintuvus prijungtus prie šios sistemos" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Leisti spausdinti iš interneto" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Leisti nuotolinį valdymą" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Leisti naudotojams atšaukti bet kurį darbą (ne tik jų pačių)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Konfigūruoti globalius nustatymus" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nebuvo sukonfigūruoti ar aptikti spausdintuvai" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Pašalinti klasę" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Ar tikrai pašalinti klasę „%1“?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Pašalinti spausdintuvą" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Ar tikrai norite pašalinti spausdintuvą „%1“?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Nepavyko gauti serverio nuostatų" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1487,49 +1483,49 @@ msgid "Show printer queue(s)" msgstr "Rodyti spausdinimo eilę" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Spausdintuvas pasiruošęs" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pristabdyti spausdintuvą" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Spausdinama..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Spausdinama '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Spausdintuvas pristabdytas" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Tęsti spausdinimą" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Spausdintuvo būsena nežinoma" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Perkelti į" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1538,7 +1534,7 @@ msgstr[2] "Visi spausdintuvai (%1 darbų)" msgstr[3] "Visi spausdintuvai (%1 darbas)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1547,27 +1543,27 @@ msgstr[2] "%2 (%1 darbų)" msgstr[3] "%2 (%1 darbas)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Visi spausdintuvai" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Nepavyko atšaukti „%1“" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Nepavyko sulaikyti „%1“" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Nepavyko paleisti „%1“" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Nepavyko pakartotinai spausdinti „%1“" @@ -1626,6 +1622,9 @@ msgid "All Jobs" msgstr "Visos užduotys" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "PridėtiSpausdintuvą" diff -Nru print-manager-17.12.3/po/mr/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/mr/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/mr/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/mr/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2013-02-06 12:01+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: American English \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "" diff -Nru print-manager-17.12.3/po/mr/print-manager.po print-manager-18.04.3/po/mr/print-manager.po --- print-manager-17.12.3/po/mr/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/mr/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2013-03-15 15:30+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "chetan@kompkin.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "नवीन छपाईयंत्र जोडा" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "जोडण्याकरिता प्रिंटर निवडा" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "ड्राइव्हर निवडा" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "कृपया छपाईयंत्राचे वर्णन करा" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "गुप्तशब्द" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "काही नाही" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "सम" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "विषम" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (सॉफ़्टवेअर)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (हार्डवेअर)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -240,7 +240,7 @@ "" msgstr "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -315,76 +315,71 @@ msgid "Local Printers" msgstr "स्थानिक छपाईयंत्रे" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "छपाईयंत्र जोडा" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "नवीन छपाईयंत्र जोडण्याकरिताचे साधन" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, fuzzy, kde-format #| msgid "(C) 2010-2012 Daniel Nicoletti" -msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2012 डेनियल निलोलेट्टी" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "डेनियल निलोलेट्टी" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add a New Printer" msgid "Add a new printer" msgstr "नवीन छपाईयंत्र जोडा" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, fuzzy, kde-format #| msgctxt "@action:intoolbar" #| msgid "Add a Printer Class" msgid "Add a new printer class" msgstr "नवीन छपाईयंत्र वर्ग जोडा" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -587,8 +582,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -610,7 +605,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -634,29 +629,29 @@ msgid "Printer to be configured" msgstr "छपाईयंत्र चिन्ह" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "वर्तमान - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "ऐच्छिक ड्राइव्हर निवडा" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "छपाईयंत्र संयोजीत करण्यास अपयशी" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -755,67 +750,67 @@ msgid "Driver:" msgstr "ड्राइव्हर :" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "कार्य नष्ट करा" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "वर्तमान कार्य पुन्हा प्रयत्न करा" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "कार्य पुन्हा प्रयत्न करा" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "छपाईयंत्र थांबवा" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "अधिप्रमाणीत" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "मूलभूत" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "काही नाही" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "वर्गीकृत" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "गुप्त" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "गुपित" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "प्रमाणित" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "उच्च गुपित" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "अवर्गिकृत" @@ -874,7 +869,7 @@ msgid "A&llow these users to print" msgstr "" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "मूलभूत पर्याय निश्चित करा" @@ -886,98 +881,98 @@ msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "ड्राइव्हर निवडा" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "स्थिती" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "नाव" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "वापरकर्ता" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "तयार केले" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "पूर्ण झालेले" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "पाने" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "प्रक्रीया केलेले" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "आकार" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "स्थिती संदेश" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "छपाईयंत्र" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "अपयशी" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "अनिर्णायक" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "थांबवलेले" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "थांबले" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "रद्द केले" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "तोडले" @@ -992,108 +987,108 @@ msgid "Wrong username or password" msgstr "अयोग्य वापरकर्ता किंवा गुप्तशब्द" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, fuzzy, kde-format #| msgid "Service is unavailable" msgid "Print service is unavailable" msgstr "सेवा अनुपलब्ध आहे" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "सापडले नाही" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "चाचणी पान" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "छपाईयंत्रे" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "रिकामे" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "रिकामे - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "वापरात आहे" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "वापरात आहे - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "स्तब्ध केले" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "स्तब्ध केले - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "अपरिचीत" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "अपरिचीत - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "" @@ -1117,102 +1112,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "नवीन छपाईयंत्र सापडले" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "नवीन छपाईयंत्र संयोजीत करा..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "नवीन छपाईयंत्र जोडले" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "छपाईयंत्र ड्राइव्हर आढळला नाही" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "शोधा" -#: print-manager-kded/NewPrinterNotification.cpp:126 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format -msgid "The New Printer was Added" -msgstr "नवीन छपाईयंत्र जोडले" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" +msgid "'%1' has been added, please check its driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:167 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format -msgid "'%1' is ready for printing." +msgid "'%1' has been added, using the '%2' driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 #, kde-format msgid "Print test page" msgstr "चाचणी पान छापा" -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format -msgid "'%1' has been added, please check its driver." -msgstr "" +msgid "Find driver" +msgstr "ड्राइव्हर शोधा" -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:270 #, kde-format -msgid "'%1' has been added, using the '%2' driver." +msgid "'%1' is ready for printing." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:184 -#, kde-format -msgid "Find driver" -msgstr "ड्राइव्हर शोधा" - -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "हे छपाईयंत्र शेअर करा" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "स्व-चाचणी पान छापा" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, fuzzy, kde-format #| msgid "Failed to release '%1'" msgid "Failed to perform request: %1" @@ -1284,95 +1279,95 @@ msgid "Print Self Test Page" msgstr "स्व-चाचणी पान छापा" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "छपाई संयोजना" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "नवीन छपाईयंत्र वर्ग जोडा" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "नवीन छपाईयंत्र किंवा छपाईयंत्र वर्ग जोडा" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "छपाईयंत्र काढून टाका" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "जागतिक प्राधान्ये संयोजीत करा" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "वर्ग काढून टाका" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "छपाईयंत्र काढून टाका" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "तुम्हाला नक्की \"%1\" हे छपाईयंत्र काढून टाकायचे आहे का?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1414,83 +1409,83 @@ msgid "Show printer queue(s)" msgstr "छपाई रांग दर्शवा" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "छपाईयंत्र सज्ज आहे" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "छपाईयंत्र स्तब्ध करा" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "छपाई..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "छपाई '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "छपाईयंत्र स्तब्ध केले" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "छपाईयंत्र पुन्हा सुरु करा" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "छपाईयंत्र स्थिती अपरिचीत" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "येथे हलवा" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "सर्व छपाईयंत्रे (%1 कार्य)" msgstr[1] "सर्व छपाईयंत्रे (%1 कार्ये)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 कार्य)" msgstr[1] "%2 (%1 कार्ये)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "सर्व छपाईयंत्रे" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "'%1' हे रद्द करण्यास अपयश" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "'%1' हे थांबवण्यास अपयश" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "'%1' हे सोडण्यास अपयश" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to configure printer: '%1'" @@ -1552,6 +1547,9 @@ msgid "All Jobs" msgstr "सर्व कार्ये" +#~ msgid "Daniel Nicoletti" +#~ msgstr "डेनियल निलोलेट्टी" + #~ msgid "AddPrinter" #~ msgstr "छपाईयंत्र जोडा" diff -Nru print-manager-17.12.3/po/nb/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/nb/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/nb/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/nb/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2013-08-11 17:25+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -75,15 +75,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Skrivekøen er tom" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Det er en utskriftsjobb i køen" diff -Nru print-manager-17.12.3/po/nb/print-manager.po print-manager-18.04.3/po/nb/print-manager.po --- print-manager-17.12.3/po/nb/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/nb/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2013-08-11 17:27+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -29,38 +29,38 @@ msgid "Your emails" msgstr "bjornst@skogkatt.homelinux.org" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Legg til en ny skriver" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Velg en skriver som skal legges til" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Velg en driver" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Beskriv skriveren" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,37 +128,37 @@ msgid "Password" msgstr "Passord" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Ingen" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Like" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Ulike" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Programvare)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Maskinvare)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -265,7 +265,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -344,71 +344,66 @@ msgid "Local Printers" msgstr "Lokale skrivere" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Klarte ikke å gruppere enheter: «%1»" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Legg til skriver" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Verktøy for å legge til nye skrivere" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "© 2010–2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID for overliggende vindu" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Legg til en ny skriver" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Legg til en ny skriverklasse" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Endrer PPD for en gitt skriver" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Endrer PPD for en gitt skriver/enhets-id" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Klarte ikke å legge til klasse: «%1»" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -615,8 +610,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -638,7 +633,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Bannere, praksis og tillatte brukere" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -662,29 +657,29 @@ msgid "Printer to be configured" msgstr "" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Gjeldende – %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Velg en tilpasset driver" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Klarte ikke å sette opp klasse" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Klarte ikke å sette opp skriver" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -820,67 +815,67 @@ msgid "Driver:" msgstr "Driver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Avbryt jobb" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Forsøk gjeldende jobb på nytt" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Forsøk jobb på nytt" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Stopp skriver" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autentisert" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Ingen" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Gradert" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Konfidensielt" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Hemmelig" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Strengt hemmelig" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Ugradert" @@ -939,7 +934,7 @@ msgid "A&llow these users to print" msgstr "" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Sett standard-alternativer" @@ -951,98 +946,98 @@ msgstr "Spør skriveren etter dens standard alternativer" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Velg en driver" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Status" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Navn" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Bruker" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Opprettet" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Fullført" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Sider" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Behandlet" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Størrelse" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Statusmelding" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Skriver" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Fra vertsnavn" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Klarte ikke å flytte «%1» til «%2»" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Mislyktes" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Venter" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Holdt tilbake" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Stoppet" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Kansellert" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Avbrutt" @@ -1057,107 +1052,107 @@ msgid "Wrong username or password" msgstr "Feil brukernavn eller passord" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Utskriftstjenesten er ikke tilgjengelig" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Ikke funnet" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testside" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Klarer ikke sende kommando til skriverdriver." -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Klarte ikke å starte metode: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Anbefalte drivere" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Skrivere" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Tomgang" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Tomgang, avviser utskriftsjobber" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Tomgang – «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Tomgang, avviser utskriftsjobber – «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "I bruk" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "I bruk – «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Pause" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "I pause, avviser utskriftsjobber" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Pause – «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Pause, avviser utskriftsjobber – «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Ukjent" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Ukjent – «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Klarte ikke å skaffe en liste over drivere: «%1»" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Klarte ikke å lete etter en anbefalt driver: «%1»" @@ -1180,102 +1175,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "En ny skriver ble funnet" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Setter opp ny skriver …" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Den nye skriveren ble lagt til" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Den nye skriveren mangler drivere" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Manglende skriverdriver" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Ingen skriverdriver for %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Ingen skriverdriver for %1 ." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Ingen driver for denne skriveren." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Søk" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Den nye skriveren ble lagt til" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Den nye skriveren mangler drivere" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "«%1» er klar til utskrift." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Skriv ut testside" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "«%1» er lagt til, kontroller driveren dens." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "«%1» er lagt til, bruker driveren «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Skriv ut testside" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Finn driver" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "«%1» er klar til utskrift." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Del denne klassen" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Del denne skriveren" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Rens skrivehodene" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Skriv ut selvtest-side" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Klarte ikke å utføre forespørselen: %1" @@ -1346,95 +1341,95 @@ msgid "Print Self Test Page" msgstr "Skriv ut selvtest-side" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Utskriftsinnstillinger" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Legg til en skriverklasse" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Legg til en ny skriver eller en skriverklasse" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Fjern skriver" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Vis skrivere som er delt av andre systemer" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Del skrivere koblet til dette systemet" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Tillat utskrift fra Internett" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Tillat administrasjon fra nettverket" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Tillat brukere å avbryte alle jobber (ikke bare sine egne)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Sett opp globale innstillinger" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Ingen skrivere er satt opp eller oppdaget" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Fjern klasse" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Er du sikker på at du vil fjerne klassen %1?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Fjern skriver" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Er du sikker på at du vil fjerne skriveren %1 ?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Klarte ikke å hente tjenerinnstillinger" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1474,83 +1469,83 @@ msgid "Show printer queue(s)" msgstr "" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Skriver klar" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pause skriver" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Skriver ut …" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Skriver ut «%1»" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Skriver pauset" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Fortsett skriver" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Ukjent skrivertilstand" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Flytt til" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Alle skrivere (%1 jobb)" msgstr[1] "Alle skrivere (%1 jobber)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 jobb)" msgstr[1] "%2 (%1 jobber)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Alle skrivere" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Klarte ikke å kansellere «%1»" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Klarte ikke å holde tilbake «%1»" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Klarte ikke å slippe løs «%1»" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Klarte ikke å skrive ut «%1» på nytt." diff -Nru print-manager-17.12.3/po/nds/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/nds/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/nds/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/nds/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2014-02-20 14:57+0100\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -79,15 +79,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Druckertöövreeg is leddig" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Dor is een Opgaav binnen de Töövreeg" diff -Nru print-manager-17.12.3/po/nds/print-manager.po print-manager-18.04.3/po/nds/print-manager.po --- print-manager-17.12.3/po/nds/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/nds/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2014-02-21 00:53+0100\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "s_dibbern@web.de" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "En nieg Drucker tofögen" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Drucker to'n Tofögen utsöken" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Driever utsöken" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Drucker beschrieven" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "Passwoort" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Keen" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Even" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Uneven" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -262,7 +262,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -342,71 +342,67 @@ msgid "Local Printers" msgstr "Lokaal Druckers" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Reedschappen laat sik nich koppeln: \"%1\"" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Drucker tofögen" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Warktüüch för't Tofögen vun nieg Druckers" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Böverfinster-ID" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "En nieg Drucker tofögen" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "En nieg Druckerklass tofögen" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "De PPD vun en angeven Drucker ännern" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "De PPD vun en angeven Drucker/Reedschap-ID ännern" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Klass lett sik nich tofögen: \"%1\"" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -615,8 +611,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -638,7 +634,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Scheedsieden, Regeln un tolaten Brukers" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -665,29 +661,29 @@ msgid "Printer to be configured" msgstr "Klass lett sik nich inrichten" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Aktuell - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "En egen Driever utsöken" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Klass lett sik nich inrichten" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Drucker lett sik nich inrichten" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -825,67 +821,67 @@ msgid "Driver:" msgstr "Driever:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Opgaav afbreken" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Aktuell Opgaav wedderhalen" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Opgaav wedderhalen" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Drucker anhollen" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Anmeldt" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Keen" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Intern Saak" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Vertrolich" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Geheem" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Streng geheem" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Apen Saak" @@ -946,7 +942,7 @@ msgid "A&llow these users to print" msgstr "Disse Brukers drucken laten" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Standardoptschonen fastleggen" @@ -958,98 +954,98 @@ msgstr "Drucker na Standardoptschonen fragen" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "En Driever utsöken" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Tostand" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Naam" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Bruker" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Opstellt" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Afslaten" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Sieden" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Verarbeidt" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Grött" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Tostandmellen" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Drucker" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Vun Reekner" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Bewegen vun \"%1\" na \"%2\" fehlslaan" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Fehlslaan" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Utstahn" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Anhollen" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Ophollen" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Torüchtrocken" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Afbraken" @@ -1065,107 +1061,107 @@ msgid "Wrong username or password" msgstr "Leeg Brukernaam oder Passwoort" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Druckdeenst is nich verföögbor" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nich funnen" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testsiet" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Befehl lett sik den Druckerdriever nich tostüern!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Metood lett sik nich opropen: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Anraadt Drievers" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Druckers" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Deit nix" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Deit nix, wiest Opgaven af" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Deit nix - \"%1\"" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Deit nix, wiest Opgaven af - \"%1\"" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "In Bruuk" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "In Bruuk - \"%1\"" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Anhollen" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Anhollen, wiest Opgaven af" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Anhollen - \"%1\"" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Anhollen, wiest Opgaven af - \"%1\"" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Nich begäng" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Nich begäng - \"%1\"" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Drieverlist lett sik nich halen: \"%1\"" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Dor lett sik keen anraadt Driever finnen: \"%1\"" @@ -1190,102 +1186,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "En PPD-Datei vun Hand praatstellen:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "En nieg Drucker wöör funnen" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Nieg Drucker warrt inricht..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "De niege Drucker wöör toföögt" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Den niegen Drucker fehlt en Driever" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Druckerdriever fehlt" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Keen Druckerdriever för %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Keen Druckerdriever för %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Keen Driever för dissen Drucker." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Söken" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "De niege Drucker wöör toföögt" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Den niegen Drucker fehlt en Driever" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "\"%1\" steiht praat för't Drucken." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Testsiet drucken" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "\"%1\" wöör toföögt, kuntrulleer bitte sien Driever." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "\"%1\" wöör toföögt, he bruukt den Driever \"%2\"." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Testsiet drucken" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Driever söken" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "\"%1\" steiht praat för't Drucken." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Disse Klass delen" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Dissen Drucker delen" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Druckköpp reenmaken" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Sülvtest-Siet drucken" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Anfraag lett sik nich utföhren: %1" @@ -1356,95 +1352,95 @@ msgid "Print Self Test Page" msgstr "Sülvtest-Siet drucken" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Instellen drucken" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "En Druckerklass tofögen" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "En nieg Drucker oder Druckerklass tofögen" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Drucker wegmaken" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Druckers wiesen, de vun anner Systemen deelt warrt" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Druckers delen, de dit Systeem tokoppelt sünd" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Drucken ut't Internet tolaten" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Feernpleeg tolaten" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Brukers dat afbreken vun all (nich bloots ehr egen) Opgaven verlöven" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Globaal Instellen fastleggen" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Keen Drucker wöör opdeckt oder inricht" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Klass wegmaken" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Wullt Du de Klass \"%1\" redig wegmaken?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Drucker wegmaken" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Wullt Du den Drucker \"%1\" redig wegmaken?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Serverinstellen laat sik nich halen" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1486,83 +1482,83 @@ msgid "Show printer queue(s)" msgstr "Drucker-Töövreeg wiesen" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Drucker steiht praat" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Drucker anhollen" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Bi to Drucken..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "\"%1\" warrt druckt" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Drucker anhollen" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Drucken wiedermaken" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Druckertostand is nich begäng." -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Verschuven na" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "All Druckers (%1 Opgaav)" msgstr[1] "All Druckers (%1 Opgaven)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 Opgaav)" msgstr[1] "%2 (%1 Opgaven)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "All Druckers" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "\"%1\" lett sik nich torüchropen" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "\"%1\" lett sik nich anhollen" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "\"%1\" lett sik nich wiedermaken" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "\"%1\" lett sik nich nochmaal drucken" @@ -1621,6 +1617,9 @@ msgid "All Jobs" msgstr "All Opgaven" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Drucker tofögen" diff -Nru print-manager-17.12.3/po/nl/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/nl/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/nl/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/nl/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 23:09+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Printers" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Printers instellen..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Printwachtrij is leeg" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Er is een afdruktaak in de wachtrij" diff -Nru print-manager-17.12.3/po/nl/print-manager.po print-manager-18.04.3/po/nl/print-manager.po --- print-manager-17.12.3/po/nl/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/nl/print-manager.po 2018-07-10 00:08:11.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. # -# Freek de Kruijf , 2012, 2013, 2015. +# Freek de Kruijf , 2012, 2013, 2015, 2018. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-18 10:54+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-25 23:38+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -15,7 +15,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 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "freekdekruijf@kde.nl" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Een nieuwe printer toevoegen" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Selecteer een toe te voegen printer" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Een stuurprogramma kiezen" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Geef een beschrijving van uw printer" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "Wachtwoord" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Geen" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Even" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Oneven" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -262,7 +262,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,66 @@ msgid "Local Printers" msgstr "Lokale printers" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Het is mislukt apparaten te groeperen: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Printer toevoegen" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Hulpmiddel voor het toevoegen van nieuwe printers" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Overgezet naar Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Bovenliggend venster-id" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Een nieuwe printer toevoegen" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Een nieuwe printerklasse toevoegen" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Wijzigt de PPD van een gegeven printer" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Wijzigt de PPD van een gegeven printer/apparaat-id" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Het is mislukt klasse toe te voegen: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -612,8 +607,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -635,7 +630,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Voorlooppagina's, beleid en toegestane gebruikers" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -659,29 +654,29 @@ msgid "Printer to be configured" msgstr "In te stellen printer" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Huidige - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Een aangepast stuurprogramma selecteren" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Klasse instellen is mislukt" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Printer instellen is mislukt" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -817,67 +812,67 @@ msgid "Driver:" msgstr "Stuurprogramma:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Taak afbreken" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Huidige taak opnieuw proberen" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Taak opnieuw proberen" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Printer stoppen" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Geauthenticeerd" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Standaard" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Geen" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Geclassificeerd" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Vertrouwelijk" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Geheim" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standaard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Topgeheim" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Niet geclassificeerd" @@ -936,7 +931,7 @@ msgid "A&llow these users to print" msgstr "S&ta deze gebruikers toe de printer te gebruiken" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Standaard opties instellen" @@ -948,98 +943,98 @@ msgstr "Standaard opties opvragen bij de printer" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Een stuurprogramma selecteren" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Status" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Naam" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Gebruiker" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Aangemaakt" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Voltooid" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Pagina's" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Verwerkt" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Grootte" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Statusbericht" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Printer" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Van hostnaam" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Verplaatsen van '%1' naar '%2' is mislukt" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Mislukt" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "In behandeling" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "In de wacht" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Gestopt" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Geannuleerd" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Afgebroken" @@ -1054,107 +1049,107 @@ msgid "Wrong username or password" msgstr "Verkeerde gebruikersnaam of wachtwoord" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Afdrukservice is niet beschikbaar" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Niet gevonden" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testpagina" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Kan commando niet naar de het stuurprogramma van de printer sturen!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Methode opstarten is mislukt: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Aanbevolen stuurprogramma's " -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Printers" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inactief" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Niet actief, taken weigeren" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Inactief - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Niet actief, taken weigeren - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "In gebruik" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "In gebruik - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Gepauzeerd" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Gepauzeerd, taken weigeren" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Gepauzeerd - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Gepauzeerd, taken weigeren - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Onbekend" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Onbekend - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Het is mislukt een lijst met stuurprogramma's te verkrijgen: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Het zoeken naar een aanbevolen stuurprogramma is mislukt: '%1'" @@ -1177,102 +1172,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Lever ha&ndmatig een PPD-bestand:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Er is een nieuwe printer gedetecteerd" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Bezig met configureren van nieuwe printer..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "De nieuwe printer is toegevoegd" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "De nieuwe printer heeft geen stuurprogramma's" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Ontbrekende printerstuurprogramma" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Geen printerstuurprogramma voor %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Geen printerstuurprogramma voor %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Geen printerstuurprogramma voor deze printer." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Zoeken" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "De nieuwe printer is toegevoegd" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "De nieuwe printer heeft geen stuurprogramma's" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' is klaar om te printen." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Testpagina afdrukken" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' is toegevoegd, controleer zijn stuurprogramma." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1' is toegevoegd, met behulp van de driver '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Testpagina afdrukken" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Stuurprogramma zoeken" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' is klaar om te printen." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Deze klasse delen" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Deze printer delen" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Printkoppen reinigen" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Pagina voor zelftest afdrukken" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Verzoek uitvoeren is mislukt: %1" @@ -1343,96 +1338,96 @@ msgid "Print Self Test Page" msgstr "Pagina voor zelftest afdrukken" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Instellingen voor afdrukken" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Een nieuwe printerklasse toevoegen" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Een nieuwe printer of printerklasse toevoegen" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Printer verwijderen" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Door ander systemen gedeelde printers tonen" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Printers verbonden met dit systeem delen" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Afdrukken vanuit het internet toestaan" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Administratie op afstand toestaan" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" "Annuleren van elke taak door gebruikers toestaan (dus niet alleen hun eigen)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "De globale voorkeuren instellen" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Er zijn geen printers ingesteld of ontdekt" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Klasse verwijderen" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Wilt u de klasse '%1' verwijderen?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Printer verwijderen" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Wilt u de printer '%1' verwijderen?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Instellingen van server ophalen is mislukt" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1472,83 +1467,83 @@ msgid "Show printer queue(s)" msgstr "Printerwachtrij(en) tonen" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Printer is gereed" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Printer pauzeren" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Bezig met afdrukken..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Bezig met afdrukken van '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Printer gepauzeerd" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Printer hervatten" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Printerstatus onbekend" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Verplaatsen naar" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Alle printers (%1 taak)" msgstr[1] "Alle printers (%1 taken)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 taak)" msgstr[1] "%2 (%1 taken)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Alle printers" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Annuleren van '%1' is mislukt" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Vasthouden van '%1' is mislukt" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Vrijgeven van '%1' is mislukt" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Opnieuw afdrukken is mislukt '%1'" @@ -1607,6 +1602,9 @@ msgid "All Jobs" msgstr "Alle taken" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Printer toevoegen" diff -Nru print-manager-17.12.3/po/nn/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/nn/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/nn/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/nn/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2016-10-25 19:15+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -72,15 +72,15 @@ msgid "Printers" msgstr "Skrivarar" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Set opp skrivarar …" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Utskriftskøen er tom" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Det ligg éin utskriftsjobb i køen" diff -Nru print-manager-17.12.3/po/nn/print-manager.po print-manager-18.04.3/po/nn/print-manager.po --- print-manager-17.12.3/po/nn/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/nn/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -1,12 +1,12 @@ # Translation of print-manager to Norwegian Nynorsk # -# Karl Ove Hufthammer , 2015, 2016. +# Karl Ove Hufthammer , 2015, 2016, 2018. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2016-10-24 21:53+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-05-15 21:36+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -29,38 +29,38 @@ msgid "Your emails" msgstr "karl@huftis.org" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Legg til ny skrivar" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Vel skrivar å leggja til" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Vel ein drivar" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Skildra skrivaren" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,37 +128,37 @@ msgid "Password" msgstr "Passord" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Ingen" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Like" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Odde" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (programvare)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (maskinvare)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -263,7 +263,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -342,71 +342,66 @@ msgid "Local Printers" msgstr "Lokal skrivarar" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Klarte ikkje gruppera einingar: «%1»" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Legg til skrivar" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Verktøy for å leggja til nye skrivarar" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "© 2010–2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "© 2010–2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Porting til Qt 5 og Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID til foreldervindauge" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Legg til ny skrivar" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Legg til ny skrivarklasse" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Endrar PPD til ein vald skrivar" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Endrar PPD til ein vald skrivar/einings-ID" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Klarte ikkje leggja klasse: «%1»" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -615,8 +610,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -638,7 +633,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Banner, reglar og tillatne brukarar" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -662,29 +657,29 @@ msgid "Printer to be configured" msgstr "Skrivar som skal setjast opp" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Gjeldande – %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Vel tilpassa drivar" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Klarte ikkje setja opp klasse" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Klarte ikkje setja opp skrivar" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -820,67 +815,67 @@ msgid "Driver:" msgstr "Drivar:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Avbryt jobb" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Prøv gjeldande jobb på nytt" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Prøv jobb på nytt" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Stopp skrivar" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autentisert" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Ingen" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Gradert" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Konfidensielt" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Hemmeleg" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Strengt hemmeleg" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Ugradert" @@ -909,17 +904,19 @@ msgid "Policies" msgstr "Reglar" +# Kven som for lov til å skriva ut / kva funksjon som avgjer dette. #. i18n: ectx: property (text), widget (QLabel, label_4) #: configure-printer/PrinterBehavior.ui:90 #, kde-format msgid "Operation Policy:" -msgstr "Operasjonsreglar:" +msgstr "Bruksløyve:" +# Merkelapp til nedtrekksmeny som seier kva som skal skje ved feil (eks. «Avbryt jobb»). #. i18n: ectx: property (text), widget (QLabel, label_3) #: configure-printer/PrinterBehavior.ui:103 #, kde-format msgid "Error Policy:" -msgstr "Feilreglar:" +msgstr "Ved feil:" #. i18n: ectx: property (title), widget (QGroupBox, AllowGB) #: configure-printer/PrinterBehavior.ui:133 @@ -939,7 +936,7 @@ msgid "A&llow these users to print" msgstr "&Tillat desse brukarane å skriva ut" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Bruk standardvala" @@ -951,98 +948,98 @@ msgstr "Spør skrivaren om standardval" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Vel drivar" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Status" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Namn" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Brukar" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Oppretta" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Ferdig" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Sider" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Handsama" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Storleik" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Statusmelding" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Skrivar" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Frå vertsnamn" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Klarte ikkje flytta «%1» til «%2»" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Feil" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Ventar" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "På vent" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Stoppa" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Kansellert" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Avbroten" @@ -1057,107 +1054,107 @@ msgid "Wrong username or password" msgstr "Feil brukarnamn eller passord" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Utskriftstenesta er ikkje tilgjengeleg" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Ikkje funnen" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testside" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Klarte ikkje senda kommando til skrivardrivar." -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Klarte ikkje køyra metode: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Tilrådde drivarar" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Skrivarar" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Ikkje aktiv" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Ikkje aktiv, avviser jobbar" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Ikkje aktiv – «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Ikkje aktiv, avviser jobbar – «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "I bruk" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "I bruk – «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Pause" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Pause, avviser jobbar" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Pause – «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Pause, avviser jobbar – «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Ukjend" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Ukjend – «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Klarte ikkje henta drivaroversikt: «%1»" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Klarte ikkje søkja etter tilrådd drivar: «%1»" @@ -1180,102 +1177,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "&Vel manuelt ei PPD-fil:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Fann ein ny skrivar" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Set opp ny skrivar …" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Den nye skrivaren er lagd til" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Den nye skrivaren manglar drivarar" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Ingen skrivardrivar" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Ingen skrivardrivar for %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Ingen skrivardrivar for %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Ingen drivar for denne skrivaren." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Søk" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Den nye skrivaren er lagd til" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Den nye skrivaren manglar drivarar" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "«%1» er klar for utskrift." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Skriv ut testside" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "«%1» er lagt til. Kontroller drivaren." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "«%1» er lagt til. Brukar drivaren «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Skriv ut testside" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Finn drivar" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "«%1» er klar for utskrift." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Del denne klassen" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Del denne skrivaren" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Rens skrivarhovud" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Skriv ut testside" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Klarte ikkje utføra førespurnad: %1" @@ -1346,95 +1343,95 @@ msgid "Print Self Test Page" msgstr "Skriv ut sjølvtestside" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Utskriftsinnstillingar" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Legg til skrivarklasse" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Legg til ein ny skrivar eller skrivarklasse" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Fjern skrivar" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Vis skrivarar delte av andre system" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Del skrivarar kopla til dette systemet" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Tillat utskrift frå Internett" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Tillat administrasjon frå nettverket" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Tillat brukarar å kansellera alle jobbar (ikkje berre deira eigne)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Set opp globale innstillingar" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Ingen skrivarar er sette opp eller oppdaga" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Fjern klasse" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Er du sikker på at du vil fjerna klassen «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Fjern skrivar" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Er du sikker på at du vil fjerna skrivaren «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Klarte ikkje henta tenarinnstillingar" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1474,83 +1471,83 @@ msgid "Show printer queue(s)" msgstr "Vis utskriftskø(ar)" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Skrivaren er klar" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Set skrivar i pause" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Skriv ut …" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Skriv ut «%1»" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Skrivar pausa" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Hald fram med utskrift" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Ukjend skrivarstatus" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Flytt til" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Alle skrivarar (%1 jobb)" msgstr[1] "Alle skrivarar (%1 jobbar)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 jobb)" msgstr[1] "%2 (%1 jobbar)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Alle skrivarar" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Klarte ikkje kansellera «%1»" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Klarte ikkje halda tilbake «%1»" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Klarte ikkje frigje «%1»" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Klarte ikkje skriva ut «%1» på nytt" diff -Nru print-manager-17.12.3/po/pa/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/pa/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/pa/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/pa/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2014-03-16 23:45-0500\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" @@ -75,15 +75,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "" diff -Nru print-manager-17.12.3/po/pa/print-manager.po print-manager-18.04.3/po/pa/print-manager.po --- print-manager-17.12.3/po/pa/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/pa/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2012-12-16 13:10+0530\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "aalam@users.sf.net" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "ਨਵਾਂ ਪਰਿੰਟਰ ਸ਼ਾਮਿਲ" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "ਪਾਸਵਰਡ" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "ਕੋਈ ਨਹੀਂ" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -240,7 +240,7 @@ "" msgstr "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -315,76 +315,71 @@ msgid "Local Printers" msgstr "" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "ਪਰਿੰਟਰ ਸ਼ਾਮਿਲ" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, fuzzy, kde-format #| msgid "(C) 2010-2012 Daniel Nicoletti" -msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) ੨੦੦੮-੨੦੧੨ Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add a New Printer" msgid "Add a new printer" msgstr "ਨਵਾਂ ਪਰਿੰਟਰ ਸ਼ਾਮਿਲ" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add a New Printer" msgid "Add a new printer class" msgstr "ਨਵਾਂ ਪਰਿੰਟਰ ਸ਼ਾਮਿਲ" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -588,8 +583,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -611,7 +606,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -635,29 +630,29 @@ msgid "Printer to be configured" msgstr "ਪਰਿੰਟਰ ਆਈਕਾਨ" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "ਮੌਜੂਦਾ - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -756,67 +751,67 @@ msgid "Driver:" msgstr "ਡਰਾਇਵਰ:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "ਪਰਿੰਟਰ ਰੋਕੋ" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "ਪਰਮਾਣਿਤ" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "ਡਿਫਾਲਟ" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "ਕੋਈ ਨਹੀਂ" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "ਵਰਗਕ੍ਰਿਤ" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "ਗੁਪਤ" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "ਗੁਪਤ" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "ਸਟੈਂਡਰਡ" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "ਨਾ-ਵਰਗੀਕ੍ਰਿਤ" @@ -875,7 +870,7 @@ msgid "A&llow these users to print" msgstr "" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "" @@ -887,98 +882,98 @@ msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "ਹਾਲਤ" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "ਨਾਂ" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "ਯੂਜ਼ਰ" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "ਬਣਾਇਆ" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "ਮੁਕੰਮਲ" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "ਪੇਜ਼" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "ਕਾਰਵਾਈ ਹੋਈ" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "ਸਾਈਜ਼" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "ਹਾਲਤ ਸੁਨੇਹਾ" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "ਪਰਿੰਟਰ" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "ਫੇਲ੍ਹ ਹੈ" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "ਬਾਕੀ" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "ਹੋਲਡ" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "ਰੁਕਿਆ" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "ਰੱਦ ਕੀਤਾ" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "ਅਧੂਰਾ ਛੱਡਿਆ" @@ -993,108 +988,108 @@ msgid "Wrong username or password" msgstr "" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "ਨਹੀਂ ਲੱਭਿਆ" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "ਟੈਸਟ ਪੇਜ਼" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "ਪਰਿੰਟਰ" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "ਬੇਕਾਰ" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "ਬੇਕਾਰ - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "ਵਰਤੋਂ ਅਧੀਨ" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "ਵਰਤੋਂ ਵਿੱਚ - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "ਵਿਰਾਮ" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "ਵਿਰਾਮ - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, fuzzy, kde-format #| msgid "Paused - '%1'" msgid "Paused, rejecting jobs - '%1'" msgstr "ਵਿਰਾਮ - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "ਅਣਜਾਣ" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "ਅਣਜਾਣ - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "" @@ -1117,102 +1112,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "ਖੋਜ" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "" - -#: print-manager-kded/NewPrinterNotification.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format -msgid "The New Printer is Missing Drivers" +msgid "'%1' has been added, please check its driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:167 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format -msgid "'%1' is ready for printing." +msgid "'%1' has been added, using the '%2' driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 #, kde-format msgid "Print test page" msgstr "ਟੈਸਟ ਪੇਜ਼ ਪਰਿੰਟ ਕਰੋ" -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format -msgid "'%1' has been added, please check its driver." +msgid "Find driver" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:270 #, kde-format -msgid "'%1' has been added, using the '%2' driver." -msgstr "" - -#: print-manager-kded/NewPrinterNotification.cpp:184 -#, kde-format -msgid "Find driver" +msgid "'%1' is ready for printing." msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "" @@ -1285,95 +1280,95 @@ msgid "Print Self Test Page" msgstr "ਟੈਸਟ ਪੇਜ਼ ਪਰਿੰਟ ਕਰੋ" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "ਪਰਿੰਟ ਸੈਟਿੰਗ" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1415,83 +1410,83 @@ msgid "Show printer queue(s)" msgstr "ਪਰਿੰਟਰ ਰੋਕੋ" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "...ਛਾਪਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "'%1' ਛਾਪਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "ਇਸ 'ਤੇ ਭੇਜੋ" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "" msgstr[1] "" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, fuzzy, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "ਜਾਬ" msgstr[1] "%1 ਜਾਬ" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "ਸਭ ਪਰਿੰਟਰ" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "" @@ -1552,6 +1547,9 @@ msgid "All Jobs" msgstr "ਸਭ ਜਾਬ" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #, fuzzy #~| msgid "All Jobs" #~ msgid "All jobs" diff -Nru print-manager-17.12.3/po/pl/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/pl/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/pl/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/pl/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-28 08:38+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -77,15 +77,15 @@ msgid "Printers" msgstr "Drukarki" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Ustawienia drukarek..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Kolejka drukowania jest pusta" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Jest jedno zadanie drukowania w kolejce" diff -Nru print-manager-17.12.3/po/pl/print-manager.po print-manager-18.04.3/po/pl/print-manager.po --- print-manager-17.12.3/po/pl/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/pl/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -1,14 +1,14 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Łukasz Wojniłowicz , 2012, 2013, 2014, 2015, 2016. +# Łukasz Wojniłowicz , 2012, 2013, 2014, 2015, 2016, 2018. # Marta Rybczyńska , 2013. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2016-08-20 08:31+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-28 07:08+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" @@ -29,38 +29,38 @@ msgid "Your emails" msgstr "lukasz.wojnilowicz@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Dodaj nową drukarkę" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Wybierz drukarkę do dodania" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Wybierz sterownik" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Proszę opisać swoją drukarkę" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,37 +128,37 @@ msgid "Password" msgstr "Hasło" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Brak" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Parzyste" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Nieparzyste" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Programowo)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Sprzętowo)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -265,7 +265,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -344,71 +344,66 @@ msgid "Local Printers" msgstr "Lokalne drukarki" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Nie udało się pogrupować urządzeń: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Dodaj drukarkę" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Narzędzie do dodawania nowych drukarek" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Przenoszenie do Qt 5 / Plazmy 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID okna nadrzędnego" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Dodaj nową drukarkę" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Dodaj nową klasę drukarki" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Zmienia PPD danej drukarki" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Zmienia PPD danej drukarki/id urządzenia" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Nie udało się dodać klasy: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -616,8 +611,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -639,7 +634,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Strony oddzielające, Polityka i użytkownicy z pozwoleniem" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -663,29 +658,29 @@ msgid "Printer to be configured" msgstr "Drukarka do ustawienia" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Bieżący - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Wybierz własny sterownik" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Nie udało się ustawić klasy" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Nie udało się ustawić drukarki" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -823,67 +818,67 @@ msgid "Driver:" msgstr "Sterownik:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Przerwij zadanie" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Ponów bieżące zadanie" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Ponów zadanie" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Zatrzymaj drukarkę" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Uwierzytelniono" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Domyślne" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Brak" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Sklasyfikowany" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Poufne" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Tajny" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Ściśle tajne" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Niesklasyfikowany" @@ -942,7 +937,7 @@ msgid "A&llow these users to print" msgstr "Zezwó&l tym użytkownikom na drukowanie" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Ustaw opcje domyślne" @@ -954,98 +949,98 @@ msgstr "Odpytaj drukarkę o domyślne opcje" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Wybierz sterownik" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Stan" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nazwa" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Użytkownik" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Utworzone" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Ukończone" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Strony" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Przetworzone" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Rozmiar" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Wiadomość stanu" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Drukarka" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Z nazwy hosta" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Nie udało się przenieść '%1' do '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Niepowodzenie" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Oczekujące" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Wstrzymano" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Zatrzymano" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Anulowano" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Przerwano" @@ -1060,107 +1055,107 @@ msgid "Wrong username or password" msgstr "Zła nazwa użytkownika lub hasło" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Usługa drukowania jest niedostępna" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nie znaleziono" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Strona testowa" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Nie można wysłać polecenia do sterownika drukarki!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Nie udało się wywołać metody: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Zalecane sterowniki" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Drukarki" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Bezczynna" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Bezczynna, odrzucanie zadań" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Bezczynna - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Bezczynna, odrzucanie zadań - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "W użyciu" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "W użyciu - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Wstrzymana" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Wstrzymana, odrzucanie zadań" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Wstrzymana - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Wstrzymana, odrzucanie zadań - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Nieznany" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Nieznany - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Nie udało się uzyskać listy sterowników: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Nie udało się znaleźć zalecanego sterownika: '%1'" @@ -1183,102 +1178,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Ręcz&nie dostarcz plik PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Wykryto nową drukarkę" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Ustawianie nowej drukarki..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Dodano nową drukarkę" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Brakuje sterowników dla nowej drukarki" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Brakuje sterownika drukarki" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Brak sterownika dla drukarki %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Brak sterownika dla drukarki %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Brak sterownika dla tej drukarki." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Znajdź" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Dodano nową drukarkę" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Brakuje sterowników dla nowej drukarki" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "\"%1\" jest gotowa do drukowania." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Wydrukuj stronę testową" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' została dodana, proszę sprawdzić jej sterownik." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "\"%1\" została dodana i używa sterownika \"%2\"." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Wydrukuj stronę testową" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Znajdź sterownik" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "\"%1\" jest gotowa do drukowania." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Udostępnij tę klasę" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Udostępnij tę drukarkę" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Czyść głowice drukujące" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Wydrukuj stronę testową" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Nie udało się wykonać żądania: '%1'" @@ -1349,95 +1344,95 @@ msgid "Print Self Test Page" msgstr "Wydrukuj stronę testową" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Ustawienia drukowania" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Dodaj klasę drukarki" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Dodaj nową drukarkę lub klasę drukarki" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Usuń drukarkę" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Pokaż drukarki współdzielone przez inne systemy" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Udostępnij drukarki podłączone do tego systemu" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Zezwalaj na drukowanie z internetu" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Zezwalaj na zdalną administrację" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Pozwól użytkownikom anulować wszystkie zadania (nie tylko ich własne)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Ustaw globalne preferencje" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nie ustawiono, ani wykryto żadnych drukarek" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Usuń klasę" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Czy na pewno chcesz usunąć klasę '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Usuń drukarkę" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Czy na pewno chcesz usunąć drukarkę '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Nieudane uzyskanie ustawień serwera" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1477,49 +1472,49 @@ msgid "Show printer queue(s)" msgstr "Pokaż kolejkę(i) drukarki" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Drukarka gotowa" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Wstrzymaj drukarkę" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Drukowanie..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Drukowanie '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Drukarka wstrzymana" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Wznów drukarkę" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Stan drukarki nieznany" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Przenieś do" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1527,7 +1522,7 @@ msgstr[1] "Wszystkie drukarki (%1 zadania)" msgstr[2] "Wszystkie drukarki (%1 zadań)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1535,27 +1530,27 @@ msgstr[1] "%2 (%1 zadania)" msgstr[2] "%2 (%1 zadań)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Wszystkie drukarki" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Nie udało się anulowanie '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Nie udało się przytrzymanie '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Nie udało się zwolnienie '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Nie udało się ponownie wydrukować '%1'" @@ -1614,6 +1609,9 @@ msgid "All Jobs" msgstr "Wszystkie zadania" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "DodajDrukarkę" diff -Nru print-manager-17.12.3/po/pt/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/pt/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/pt/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/pt/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: plasma_applet_printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 16:21+0000\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" @@ -74,15 +74,15 @@ msgid "Printers" msgstr "Impressoras" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configurar as Impressoras..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "A fila de impressão está vazia" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Existe uma tarefa de impressão na fila de espera" diff -Nru print-manager-17.12.3/po/pt/print-manager.po print-manager-18.04.3/po/pt/print-manager.po --- print-manager-17.12.3/po/pt/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/pt/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: printer-applet\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-18 12:11+0000\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-25 09:06+0000\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -29,38 +29,38 @@ msgid "Your emails" msgstr "zepires@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Adicionar uma Nova Impressora" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Seleccionar uma Impressora a Adicionar" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Escolher um Controlador" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Descreva por favor a sua impressora" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,37 +128,37 @@ msgid "Password" msgstr "Senha" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Nenhuma" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Par" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Ímpar" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF ('Software')" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS ('Hardware')" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -264,7 +264,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -344,71 +344,66 @@ msgid "Local Printers" msgstr "Impressoras Locais" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Não foi possível agrupar os dispositivos: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Adicionar uma Impressora" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Ferramenta para adicionar impressoras novas" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Migração para o Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID da Janela-Mãe" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Adicionar uma nova impressora" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Adicionar uma nova classe de impressoras" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Modifica o PPD de uma dada impressora" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Modifica o PPD de uma dada impressora/ID de dispositivo" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Não foi possível adicionar a classe: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -617,8 +612,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -640,7 +635,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Separadores, Políticas e Utilizadores Permitidos" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -664,29 +659,29 @@ msgid "Printer to be configured" msgstr "Impressora a configurar" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Actual - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Seleccionar um controlador personalizado" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Não foi possível configurar a classe" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Não foi possível configurar a impressora" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -822,67 +817,67 @@ msgid "Driver:" msgstr "Controlador:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Interromper a tarefa" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Repetir a tarefa actual" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Repetir a tarefa" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Parar a impressora" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autenticado" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Predefinição" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Nenhuma" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Classificado" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidencial" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secreto" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Normal" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Ultra-Secreto" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Sem classificação" @@ -941,7 +936,7 @@ msgid "A&llow these users to print" msgstr "&Permitir a estes utilizadores imprimir" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Definir as Opções por Omissão" @@ -953,98 +948,98 @@ msgstr "Consultar as Opções por Omissão da Impressora" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Seleccionar um Controlador" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Estado" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nome" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Utilizador" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Criada" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Completa" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Páginas" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Processada" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Tamanho" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Mensagem de Estado" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Impressora" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Do Nome da Máquina" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Não foi possível mover o '%1' para '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Falhou" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Pendente" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Em espera" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Parada" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cancelada" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Interrompida" @@ -1059,107 +1054,107 @@ msgid "Wrong username or password" msgstr "Utilizador ou senha errados" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "O serviço de impressão está indisponível" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Não encontrado" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Página de Teste" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Não é possível enviar o comando para o controlador da impressora!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Não foi possível invocar o método: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Controladores Recomendados" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Impressoras" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inactivo" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Inactiva, a rejeitar as tarefas" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Inactiva - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Inactiva, a rejeitar as tarefas - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Em uso" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Em uso - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Em pausa" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Em pausa, a rejeitar as tarefas" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Em pausa - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Em pausa, a rejeitar as tarefas - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Desconhecido" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Desconhecido - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Não foi possível obter a lista de controladores: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Não foi possível descobrir um controlador recomendado: '%1'" @@ -1182,102 +1177,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "I&ndique manualmente um ficheiro PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Foi detectada uma nova impressora" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "A configurar a nova impressora..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "A nova impressora foi adicionada" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Falta o Controlador à Nova Impressora" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Falta o controlador da impressora" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Não existe o controlador de impressora para a %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Não existe o controlador de impressora para a %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Não existe nenhum controlador para esta impressora." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Procurar" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "A nova impressora foi adicionada" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Falta o Controlador à Nova Impressora" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "A '%1' está pronta para imprimir." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Imprimir a página de teste" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "A '%1' foi adicionada; verifique por favor o seu controlador." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "A '%1' foi adicionada, usando o controlador `%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Imprimir a página de teste" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Procurar o controlador" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "A '%1' está pronta para imprimir." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Partilhar esta classe" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Partilhar esta impressora" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Limpar as Cabeças de Impressão" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Imprimir uma Página de Teste" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Não foi possível efectuar o pedido: %1" @@ -1348,96 +1343,96 @@ msgid "Print Self Test Page" msgstr "Imprimir uma Página de Teste" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Configuração da impressão" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Adicionar uma Classe de Impressoras" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Adicionar uma nova impressora ou classe de impressoras" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Remover a Impressora" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Mostrar as impressoras partilhadas por outros sistemas" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Partilhar as impressoras ligadas a este sistema" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permitir a impressão pela Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permitir a administração remota" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" "Permitir aos utilizadores cancelarem qualquer tarefa (não apenas as suas)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configurar as preferências globais" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Não foram configuradas ou descobertas impressoras" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Remover a classe" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Tem a certeza que deseja remover a classe '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Remover a impressora" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Tem a certeza que deseja remover a impressora '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Não foi possível obter a configuração do servidor" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1477,83 +1472,83 @@ msgid "Show printer queue(s)" msgstr "Mostrar as filas das impressoras" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Impressora pronta" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pausar a Impressora" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "A imprimir..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "A imprimir a '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Impressora em pausa" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Reactivar a Impressora" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Estado da impressora desconhecido" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Mover para" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Todas as Impressoras (%1 Tarefa)" msgstr[1] "Todas as Impressoras (%1 Tarefas)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 Tarefa)" msgstr[1] "%2 (%1 Tarefas)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Todas as Impressoras" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Não foi possível cancelar a '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Não foi possível reter a '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Não foi possível libertar a '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Não foi possível imprimir de novo o '%1'" diff -Nru print-manager-17.12.3/po/pt_BR/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/pt_BR/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/pt_BR/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/pt_BR/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 09:27-0200\n" "Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Brazilian Portuguese \n" @@ -74,15 +74,15 @@ msgid "Printers" msgstr "Impressoras" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Configurar impressoras..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "A fila de impressão está vazia" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Existe um trabalho de impressão na fila de espera" diff -Nru print-manager-17.12.3/po/pt_BR/print-manager.po print-manager-18.04.3/po/pt_BR/print-manager.po --- print-manager-17.12.3/po/pt_BR/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/pt_BR/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2016-01-30 00:31-0300\n" "Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Brazilian Portuguese \n" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "alvarenga@kde.org" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Adicionar uma nova impressora" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Selecione uma impressora a adicionar" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Selecione um driver" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Por favor, descreva sua impressora" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "Senha" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Nenhum" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Par" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Ímpar" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Hardware)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -263,7 +263,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,67 @@ msgid "Local Printers" msgstr "Impressoras locais" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Falha ao agrupar os dispositivos: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Adicionar impressora" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Ferramenta para adicionar novas impressoras" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Porte para o Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID da janela-mãe" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Adicionar uma nova impressora" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Adicionar uma nova classe de impressora" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Altera o PPD de uma determinada impressora" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Altera o PPD de uma determinada impressora/ID de dispositivo" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Não foi possível adicionar a classe: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -612,8 +608,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -635,7 +631,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Separadores, políticas e usuários permitidos" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -659,29 +655,29 @@ msgid "Printer to be configured" msgstr "Impressora a ser configurada" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Atual - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Selecione um driver personalizado" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Não foi possível configurar a classe" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Não foi possível configurar a impressora" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -817,67 +813,67 @@ msgid "Driver:" msgstr "Driver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Cancelar trabalho" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Repetir o trabalho atual" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Repetir o trabalho" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Parar a impressora" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autenticado" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Padrão" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Nenhum" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Classificado" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidencial" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secreto" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Padrão" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Muito secreto" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Sem classificação" @@ -936,7 +932,7 @@ msgid "A&llow these users to print" msgstr "Pe&rmitir impressão por estes usuários" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Definir as opções padrão" @@ -948,98 +944,98 @@ msgstr "Consultar as opções padrão da impressora" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Selecione um driver" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Status" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Nome" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Usuário" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Criado em" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Concluído" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Páginas" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Processado" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Tamanho" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Mensagem de status" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Impressora" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Do nome da máquina" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Não foi possível mover '%1' para '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Falhou" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Pendente" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Aguardando" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Parado" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Cancelado" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Interrompido" @@ -1054,107 +1050,107 @@ msgid "Wrong username or password" msgstr "Usuário ou senha inválido" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "O serviço de impressão não está disponível" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Não encontrado" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Página de teste" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Não foi possível enviar o comando para o driver da impressora!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Não foi possível chamar o método: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Drivers recomendados" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Impressoras" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Ociosa" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Ociosa, rejeitando trabalhos de impressão" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Ociosa - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Ociosa, rejeitando trabalhos de impressão - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Em uso" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Em uso - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Pausada" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Pausada, rejeitando trabalhos de impressão" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Pausada - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Pausada, rejeitando trabalhos de impressão - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Desconhecida" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Desconhecida - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Não foi possível obter a lista de drivers: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Não foi possível localizar um driver para recomendar: '%1'" @@ -1177,102 +1173,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Indique ma&nualmente um arquivo PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Uma nova impressora foi detectada" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Configurando a nova impressora..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "A nova impressora foi adicionada" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Falta o driver para a nova impressora" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Falta o driver da impressora" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Não existe o driver de impressora para a %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Não existe o driver de impressora para a %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Não existe um driver para esta impressora." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Pesquisar" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "A nova impressora foi adicionada" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Falta o driver para a nova impressora" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' está pronta para impressão." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Imprimir página de teste" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' foi adicionada, verifique seu driver." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1' foi adicionada, usando o driver '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Imprimir página de teste" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Localizar driver" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' está pronta para impressão." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Compartilhar esta classe" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Compartilhar esta impressora" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Limpar cabeças de impressão" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Imprimir página de teste" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Falha ao efetuar a solicitação: %1" @@ -1343,96 +1339,96 @@ msgid "Print Self Test Page" msgstr "Imprimir página de teste automático" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Configurações de impressão" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Adicionar uma classe de impressora" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Adicionar uma nova impressora ou classe de impressora" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Remover impressora" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Mostrar impressoras compartilhadas por outros sistemas" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Compartilhar impressoras conectadas ao sistema" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permitir impressão pela Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permitir administração remota" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" "Permitir que usuários cancelem qualquer trabalho (não apenas os próprios)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configure as preferências globais" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nenhuma impressora foi configurada ou identificada" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Remover classe" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Deseja realmente remover a classe '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Remover impressora" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Deseja realmente remover a impressora '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Não foi possível obter as opções do servidor" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1472,83 +1468,83 @@ msgid "Show printer queue(s)" msgstr "Mostrar a(s) fila(s) de impressão" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Impressora pronta" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pausar impressora" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Imprimindo..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Imprimindo '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Impressora pausada" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Reativar a impressora" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Estado da impressora desconhecido" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Mover para" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Todas as impressoras (%1 trabalho)" msgstr[1] "Todas as impressoras (%1 trabalhos)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 trabalho)" msgstr[1] "%2 (%1 trabalhos)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Todas as impressoras" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Não foi possível cancelar '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Não foi possível colocar em espera '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Não foi possível liberar a '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Ocorreu uma falha na reimpressão '%1'" @@ -1606,3 +1602,6 @@ #, kde-format msgid "All Jobs" msgstr "Todos os trabalhos" + +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" diff -Nru print-manager-17.12.3/po/ro/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ro/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ro/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ro/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2013-10-24 14:10+0300\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -82,15 +82,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Coada de tipărire e goală" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Este o lucrare de tipărire în coadă" diff -Nru print-manager-17.12.3/po/ro/print-manager.po print-manager-18.04.3/po/ro/print-manager.po --- print-manager-17.12.3/po/ro/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ro/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2014-04-04 18:49+0300\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "sergiu@ase.md" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Adaugă o imprimantă nouă" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Alegeți imprimanta de adăugat" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Alegeți un driver" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Descrieți imprimanta" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "Parolă" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Niciuna" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Pară" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Impară" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Software)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Echipament)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -264,7 +264,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -345,71 +345,67 @@ msgid "Local Printers" msgstr "Imprimante locale" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Gruparea dispozitivelor a eșuat: „%1”" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Adaugă imprimantă" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Unealtă pentru adăugarea de noi imprimante" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Adaugă o imprimantă nouă" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Adaugă o clasă de imprimante nouă" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Schimbă PPD-ul imprimantei date" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Schimbă PPD-ul imprimantei sau identificatorului de dispozitiv" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Adăugarea clasei a eșuat: „%1”" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -620,8 +616,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -643,7 +639,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Banere, politici și utilizatori permiși" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -670,29 +666,29 @@ msgid "Printer to be configured" msgstr "Configurarea clasei a eșuat" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Curent - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Alege un driver personalizat" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Configurarea clasei a eșuat" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Configurarea imprimantei a eșuat" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -827,67 +823,67 @@ msgid "Driver:" msgstr "Driver:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Anulează lucrarea" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Reîncearcă lucrarea actuală" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Reîncearcă lucrarea" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Oprește imprimanta" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Autentificat" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Implicit" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Niciunul" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Clasificat" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Confidențial" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Secret" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Absolut secret" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Neclasificat" @@ -948,7 +944,7 @@ msgid "A&llow these users to print" msgstr "Permite acestor utilizatori să tipărească" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Stabilește opțiuni implicite" @@ -960,98 +956,98 @@ msgstr "Interoghează imprimanta pentru opțiuni implicite" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Alegeți un driver" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Stare" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Denumire" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Utilizator" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Creat" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Încheiat" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Pagini" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Prelucrat" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Dimensiune" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Mesaj de stare" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Imprimantă" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "De la gazda" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Mutarea „%1” către „%2” a eșuat" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Eșuat" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "În așteptare" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Reținut" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Oprit" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Anulat" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Abandonat" @@ -1067,107 +1063,107 @@ msgid "Wrong username or password" msgstr "Nume de utilizator greșit sau parolă incorectă" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Serviciul de tipărire nu este disponibil" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nu a fost găsit" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Pagină de test" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Comanda nu a putut fi trimisă către driverul imprimantei!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Metoda nu a putut fi invocată: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Drivere recomandate" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Imprimante" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Inactivă" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Inactivă - „%1”" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "În uz" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "În uz - „%1”" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Întreruptă" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Întreruptă - „%1”" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Necunoscută" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Necunoscută - „%1”" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Obținerea listei de drivere a eșuat: „%1”" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Căutarea unui driver recomandat a eșuat: „%1”" @@ -1192,102 +1188,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Furnizați manual un fișier PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "A fost descoperită o nouă imprimantă" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Se configurează noua imprimantă..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Noua imprimantă a fost adăugată" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Lipsesc driverele pentru noua imprimantă" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Driverul de imprimantă lipsește" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Niciun driver de imprimantă pentru %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Niciun driver de imprimantă pentru %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Niciun driver pentru această imprimantă." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Caută" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Noua imprimantă a fost adăugată" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Lipsesc driverele pentru noua imprimantă" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "„%1” e gata să tipărească." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Tipărește pagină de test" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "„%1” a fost adăugată, verificați-i driverul." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "„%1” a fost adăugată, folosind driverul „%2”." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Tipărește pagină de test" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Caută driver" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "„%1” e gata să tipărească." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Partajează această clasă" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Partajează imprimanta" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Curăță capul de imprimare" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Tipărește pagină de test propriu" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, fuzzy, kde-format #| msgid "Failed to group devices: '%1'" msgid "Failed to perform request: %1" @@ -1359,95 +1355,95 @@ msgid "Print Self Test Page" msgstr "Tipărește pagină de test propriu" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Configurări de tipărire" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Adaugă o clasă de imprimante" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Adaugă o nouă imprimantă sau clasă de imprimante" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Elimină imprimanta" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Arată imprimante partajate de alte sisteme" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Partajează imprimantele conectate la acest sistem" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Permite tipărirea din Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Permite administrarea de la distanță" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Permite utilizatorilor să anuleze orice lucrare (nu doar a lor)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Configurează preferințele globale" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nicio imprimantă nu a fost configurată sau descoperită" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Elimină clasa" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Sigur doriți să eliminați clasa „%1”?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Elimină imprimanta" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Sigur doriți să eliminați imprimanta „%1”?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Obținerea parametrilor serverului a eșuat" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1489,49 +1485,49 @@ msgid "Show printer queue(s)" msgstr "Arată coada imprimantei" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Imprimantă pregătită" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Întrerupe imprimanta" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Se tipărește..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Se tipărește „%1”" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Imprimantă întreruptă" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Reia imprimanta" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Starea imprimantei nu e cunoscută" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Mută la" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1539,7 +1535,7 @@ msgstr[1] "Toate imprimantele (%1 lucrări)" msgstr[2] "Toate imprimantele (%1 de lucrări)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1547,27 +1543,27 @@ msgstr[1] "%2 (%1 lucrări)" msgstr[2] "%2 (%1 de lucrări)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Toate imprimantele" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Anularea „%1” a eșuat" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Reținerea „%1” a eșuat" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Eliberarea „%1” a eșuat" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, fuzzy, kde-format #| msgctxt "@info" #| msgid "Failed to configure printer: '%1'" @@ -1628,6 +1624,9 @@ msgid "All Jobs" msgstr "Toate lucrările" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "AdăugareImprimantă" diff -Nru print-manager-17.12.3/po/ru/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ru/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ru/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ru/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-04-28 06:20+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" @@ -83,15 +83,15 @@ msgid "Printers" msgstr "Принтеры" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "Н&астроить принтеры..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Очередь печати пуста" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "В очереди печати %1 задание" diff -Nru print-manager-17.12.3/po/ru/print-manager.po print-manager-18.04.3/po/ru/print-manager.po --- print-manager-17.12.3/po/ru/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ru/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2015-04-28 06:06+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" @@ -33,38 +33,38 @@ msgid "Your emails" msgstr "yur.arh@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Добавление нового принтера" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Выбор принтера для добавления" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Выбор драйвера" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Описание принтера" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -132,37 +132,37 @@ msgid "Password" msgstr "Пароль" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Отсутствует" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Чётность" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Нечётность" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (программный)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (аппаратный)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -268,7 +268,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -347,71 +347,67 @@ msgid "Local Printers" msgstr "Локальные принтеры" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Ошибка группировки устройств: «%1»" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Добавить принтер" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Инструмент для добавления новых принтеров" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "© Daniel Nicoletti, 2010-2013" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Портирование на Qt 5 и Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID родительского окна" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Добавить новый принтер" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Добавить класс принтеров" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Сменить PPD данного принтера" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Создать принтер из описания устройства" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Ошибка добавления класса принтеров: «%1»" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -618,8 +614,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -641,7 +637,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Страницы-разделители, правила и пользователи" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -665,29 +661,29 @@ msgid "Printer to be configured" msgstr "Настраиваемый принтер" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Текущий — %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Выбрать другой драйвер..." -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Ошибка настройки класса" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Ошибка настройки принтера" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -825,67 +821,67 @@ msgid "Driver:" msgstr "Драйвер:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Прервать задание" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Повторить текущее задание" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Повторить задание" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Остановить печать" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "С проверкой подлинности" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "По умолчанию" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Нет" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "С ограничением доступа" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Конфиденциально" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Секретно" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Обычно" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Совершено секретно" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Без ограничения доступа" @@ -944,7 +940,7 @@ msgid "A&llow these users to print" msgstr "Разр&ешить печать этим пользователям" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Установить параметры по умолчанию" @@ -956,98 +952,98 @@ msgstr "Получить параметры по умолчанию от принтера" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Выбор драйвера" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Состояние" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Имя" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Пользователь" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Создано" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Завершено" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Страницы" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Обработано" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Размер" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Сообщение состояния" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Принтер" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "С компьютера" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Ошибка перемещения «%1» в «%2»" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Ошибка" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Ожидание" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Приостановлено" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Остановлено" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Отменено" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Прервано" @@ -1062,107 +1058,107 @@ msgid "Wrong username or password" msgstr "Неверное имя пользователя или пароль" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Служба печати недоступна" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Не найдено" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Пробная страница" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Не удалось отправить команду драйверу принтера!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Не удалось вызвать метод: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Рекомендуемые драйверы" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Принтеры" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Бездействие" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Бездействие, задания не принимаются" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Бездействие — «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Бездействие, задания не принимаются — «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Используется" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Используется — «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Приостановлено" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Приостановлено, задания не принимаются" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Приостановлено — «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Приостановлено, задания не принимаются — «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Неизвестно" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Неизвестно — «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Ошибка получения списка драйверов: «%1»" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Не удалось найти подходящий драйвер: «%1»" @@ -1185,102 +1181,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "У&казать файл PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Обнаружен новый принтер" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Настройка нового принтера..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Новый принтер добавлен" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "К новому принтера отсутствуют драйверы" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Отсутствует драйвер принтера" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Отсутствует драйвер принтера %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Отсутствует драйвер принтера %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Отсутствует драйвер для этого принтера." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Поиск" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Новый принтер добавлен" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "К новому принтера отсутствуют драйверы" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "Принтер «%1» готов к печати." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Напечатать пробную страницу" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "Был добавлен принтер «%1». Укажите драйвер к нему." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "Был добавлен принтер «%1», используется драйвер «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Напечатать пробную страницу" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Найти драйвер" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "Принтер «%1» готов к печати." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Общий доступ для этого класса" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Общий доступ к этому принтеру" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Чистка головок печати" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Распечатать страницу самопроверки" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Не удалось выполнить запрос: %1" @@ -1351,95 +1347,95 @@ msgid "Print Self Test Page" msgstr "Распечатать страницу самопроверки" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Параметры печати" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Добавить класс принтеров" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Добавить новый принтер или класс принтеров" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Удалить принтер" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Показывать принтеры, доступные на других компьютерах" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Открыть общий доступ к принтерам, подключённым к данному компьютеру" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Принимать задания на печать из Интернета" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Разрешить удалённое управление" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Разрешить пользователям снимать любые задания (не только свои)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Настройка общих параметров" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Нет ни одного принтера для настройки или обнаружения" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Удаление класса принтеров" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Удалить класс принтеров «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Удаление принтера" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Удалить принтер «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Ошибка получения параметров сервера" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1479,49 +1475,49 @@ msgid "Show printer queue(s)" msgstr "Показать очереди печати" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Принтер готов" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Приостановить печать" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Печать..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Печать «%1»" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Печать остановлена" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Возобновить печать" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Состояние принтера неизвестно" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Переместить в" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1530,7 +1526,7 @@ msgstr[2] "Все принтеры (%1 заданий)" msgstr[3] "Все принтеры (%1 задание)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1539,27 +1535,27 @@ msgstr[2] "%2 (%1 заданий)" msgstr[3] "%2 (%1 задание)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Все принтеры" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Ошибка отмены «%1»" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Ошибка приостановления «%1»" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Ошибка возобновления «%1»" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Ошибка повторной печати: «%1»" @@ -1618,6 +1614,9 @@ msgid "All Jobs" msgstr "Все задания" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Добавление принтера" diff -Nru print-manager-17.12.3/po/sk/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/sk/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/sk/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/sk/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 19:43+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Tlačiarne" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "Nastaviť tlačiarne..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Tlačová fronta je prázdna" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Je jedna tlačová úloha vo fronte" diff -Nru print-manager-17.12.3/po/sk/print-manager.po print-manager-18.04.3/po/sk/print-manager.po --- print-manager-17.12.3/po/sk/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/sk/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2015-02-18 21:58+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -25,38 +25,38 @@ msgid "Your emails" msgstr "wizzardsk@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Pridať novú tlačiareň" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Vyberte tlačiareň na pridanie" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Vybrať ovládač" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Prosím popíšte svoju tlačiareň" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -124,37 +124,37 @@ msgid "Password" msgstr "Heslo" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Žiadne" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Párne" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Nepárne" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (softvér)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (hardvér)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -260,7 +260,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -339,71 +339,67 @@ msgid "Local Printers" msgstr "Lokálne tlačiarne" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Zlyhalo zoskupenie zariadení: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Pridať tlačiareň" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Nástroj na pridanie nových tlačiarní" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Port pre Qt5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID rodičovského okna" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Pridať novú tlačiareň" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Pridať novú triedu tlačiarne" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Zmení PPD danej tlačiarne" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Zmení PPD danej tlačiarne/zariadenia" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Zlyhalo pridanie triedy: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -610,8 +606,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -633,7 +629,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Bannery, politiky a povolení používatelia" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -657,29 +653,29 @@ msgid "Printer to be configured" msgstr "Tlačiareň na nastavenie" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Aktuálne - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Vybrať vlastný ovládač" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Zlyhalo nastavenie triedy" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Zlyhalo nastavenie tlačiarne" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -815,67 +811,67 @@ msgid "Driver:" msgstr "Ovládač:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Prerušiť úlohu" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Opakovať aktuálnu úlohu" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Opakovať úlohu" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Zastaviť tlačiareň" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Overený" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Predvolené" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Žiadne" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Klasifikované" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Dôverné" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Tajné" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Štandardné" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Prísne tajné" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Neklasifikované" @@ -934,7 +930,7 @@ msgid "A&llow these users to print" msgstr "Povoliť týmto používateľom tlačiť" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Nastaviť predvolené voľby" @@ -946,98 +942,98 @@ msgstr "Dotázať tlačiareň na predvolené voľby" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Vybrať ovládač" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Stav" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Názov" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Užívateľ" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Vytvorené" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Dokončené" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Stránky" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Spracované" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Veľkosť" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Stavová správa" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Tlačiareň" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Z názvu hostiteľa" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Zlyhal presun '%1' na '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Zlyhalo" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Čakajúci" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Pozdržané" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Zastavené" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Zrušené" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Prerušené" @@ -1052,107 +1048,107 @@ msgid "Wrong username or password" msgstr "Zlý používateľ alebo heslo" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Tlačová služba je nedostupná" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Nenájdené" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testovacia stránka" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Zlyhalo poslanie príkazu ovládaču tlačiarne!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Zlyhalo vyvolanie metódy: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Odporúčané ovládače" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Tlačiarne" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Nečinný" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Nečinné, odmieta úlohy" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Nečinný - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Nečinné, odmieta úlohy - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Používa sa" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Používa sa - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Pozastavené" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Pozastavené, odmieta úlohy" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Pozastavené - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Pozastavené, odmieta úlohy - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Neznáme" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Neznáme - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Zlyhalo získanie zoznamu ovládačov: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Zlyhalo nájdenie odporúčaného ovládača: '%1'" @@ -1175,102 +1171,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Ručne poskytnúť PPD súbor:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Bola zistená nová tlačiareň" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Konfiguruje sa nová tlačiareň..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Nová tlačiareň bola pridaná" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Novej tlačiarni chýbajú ovládače" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Chýba ovládač pre tlačiareň" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Žiadny ovládač tlačiarne pre %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Žiadny ovládač tlačiarne pre %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Ovládač pre tlačiareň nie je k dispozícii." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Hľadať" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Nová tlačiareň bola pridaná" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Novej tlačiarni chýbajú ovládače" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "Tlačiareň '%1' je pripravená na tlač." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Vytlačiť skúšobnú stránku" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' bola pridaná, prosím skontrolujte jej ovládač." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "Tlačiareň '%1' bola pridaná použitím ovládača '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Vytlačiť skúšobnú stránku" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Nájsť ovládač" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "Tlačiareň '%1' je pripravená na tlač." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Zdieľať túto triedu" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Zdieľať túto tlačiareň" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Vyčistiť tlačové hlavy" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Vytlačiť samo-testovaciu stránku" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Zlyhalo vykonanie požiadavky: %1" @@ -1341,95 +1337,95 @@ msgid "Print Self Test Page" msgstr "Vytlačiť samo-testovaciu stránku" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Nastavenia tlače" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Pridať triedu tlačiarne" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Pridať novú tlačiareň alebo triedu tlačiarne" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Odstrániť tlačiareň" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Zobrazovať tlačiarne zdieľané inými systémami" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Zdieľať tlačiarne pripojené k tomuto systému" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Povoliť tlač z Internetu" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Povoliť vzdialenú správu" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Povoliť užívateľom zrušenie akejkoľvek úlohy (nie iba ich vlastnej)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Nastaviť globálne predvoľby" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Žiadne tlačiarne neboli nastavené alebo nájdené" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Odstrániť triedu" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Určite chcete odstrániť triedu '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Odstrániť tlačiareň" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Určite chcete odstrániť tlačiareň '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Zlyhalo získanie nastavení servera" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1469,49 +1465,49 @@ msgid "Show printer queue(s)" msgstr "Zobraziť tlačovú frontu" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Tlačiareň pripravená" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pozastaviť tlačiareň" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Tlač..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Tlačí sa '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Tlačiareň pozastavená" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Pokračovať tlačiareň" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Stav tlačiarne neznámy" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Presunúť do" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1519,7 +1515,7 @@ msgstr[1] "Všetky tlačiarne (%1 úlohy)" msgstr[2] "Všetky tlačiarne (%1 úloh)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1527,27 +1523,27 @@ msgstr[1] "%2 (%1 úlohy)" msgstr[2] "%2 (%1 úloh)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Všetky tlačiarne" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Zlyhalo zrušenie '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Zlyhalo podržanie '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Zlyhalo uvoľnenie '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Zlyhalo znovuvytlačenie '%1'" @@ -1606,6 +1602,9 @@ msgid "All Jobs" msgstr "Všetky úlohy" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Pridať tlačiareň" diff -Nru print-manager-17.12.3/po/sl/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/sl/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/sl/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/sl/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-04-04 10:59+0200\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -79,15 +79,15 @@ msgid "Printers" msgstr "Tiskalniki" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "Nasta&vi tiskalnike ..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Tiskalna vrsta je prazna" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "V vrsti je %1 tiskalnih poslov" diff -Nru print-manager-17.12.3/po/sl/print-manager.po print-manager-18.04.3/po/sl/print-manager.po --- print-manager-17.12.3/po/sl/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/sl/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2016-09-01 20:14+0200\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -29,38 +29,38 @@ msgid "Your emails" msgstr "jlp@holodeck1.com,andrejm@ubuntu.si" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Dodaj nov tiskalnik" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Izberite tiskalnik za dodajanje" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Izberite gonilnik" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Opišite tiskalnik" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,37 +128,37 @@ msgid "Password" msgstr "Geslo" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Brez" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Soda" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Liha" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (programsko)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (strojno)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -264,7 +264,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -343,71 +343,67 @@ msgid "Local Printers" msgstr "Krajevni tiskalniki" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Združevanje naprav ni uspelo: »%1«" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Dodaj tiskalnik" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Orodje za dodajanje novih tiskalnikov" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Predelava za Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ID nadrejenega okna" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Dodaj nov tiskalnik" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Dodaj nov razred tiskalnikov" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Spremeni PPD podanega tiskalnika" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Spremeni PPD podanega tiskalnika/deviceid" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Dodajanje razreda ni uspelo: »%1«" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -614,8 +610,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -637,7 +633,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Napisi, pravilniki in dovoljeni uporabniki" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -661,29 +657,29 @@ msgid "Printer to be configured" msgstr "Tiskalnik, ki bo nastavljen" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Trenutni – %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Izberite gonilnik po meri" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Nastavitev razreda ni uspela" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Nastavitev tiskalnika ni uspela" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -819,67 +815,67 @@ msgid "Driver:" msgstr "Gonilnik:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Prekini posel" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Znova poskusi trenutni posel" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Znova poskusi posel" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Zaustavi tiskalnik" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Overjeno" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Privzeto" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Brez" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Zaupno" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Zaupno" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Tajno" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standardno" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Najvišja tajnost" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Neuvrščeno" @@ -938,7 +934,7 @@ msgid "A&llow these users to print" msgstr "Tem uporabnikom dovo&li tiskanje" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Nastavi privzete možnosti" @@ -950,98 +946,98 @@ msgstr "Poizvedi o privzetih možnostih tiskalnika" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Izberite gonilnik" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Stanje" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Ime" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Uporabnik" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Ustvarjeno" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Zaključeno" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Strani" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Obdelano" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Velikost" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Sporočilo stanja" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Tiskalnik" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Od imena gostitelja" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Premikanje »%1« na »%2« ni uspelo" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Spodletelo" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Na čakanju" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Zadržano" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Zaustavljeno" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Preklicano" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Prekinjeno" @@ -1056,107 +1052,107 @@ msgid "Wrong username or password" msgstr "Napačno uporabniško ime ali geslo" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Storitev tiskanja ni na voljo" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Ni najden" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Preizkusna stran" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Ukaza ni mogoče poslati gonilniku tiskalnika!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Klicanje metode ni uspelo: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Priporočeni gonilniki" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Tiskalniki" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Nedejaven" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Nedejaven, zavrača posle" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Nedejaven – »%1«" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Nedejaven, zavrača posle – »%1«" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "V uporabi" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "V uporabi – »%1«" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "V premoru" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "V premoru, zavrača posle" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "V premoru – »%1«" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "V premoru, zavrača posle – »%1«" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Neznano" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Neznano – »%1«" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Pridobivanje seznama gonilnikov ni uspelo: »%1«" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Iskanje priporočenega gonilnika ni uspelo: »%1«" @@ -1179,102 +1175,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Roč&no priskrbite datoteko PPD:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Zaznan je bil nov tiskalnik" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Nastavljanje novega tiskalnika ..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Novi tiskalnik je bil dodan" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Za novi tiskalnik manjkajo gonilniki" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Manjkajoč tiskalniški gonilnik" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Za %1 %2 ni tiskalniškega gonilnika." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Za %1 ni tiskalniškega gonilnika." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Za ta tiskalnik ni gonilnika." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Poišči" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Novi tiskalnik je bil dodan" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Za novi tiskalnik manjkajo gonilniki" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "»%1« je pripravljen za tiskanje." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Natisni preizkusno stran" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "»%1« je bil dodan, preverite njegov gonilnik." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "»%1« je bil dodan z uporabo gonilnika »%2«." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Natisni preizkusno stran" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Najdi gonilnik" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "»%1« je pripravljen za tiskanje." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Deli ta razred" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Deli ta tiskalnik" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Očisti tiskalne glave" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Natisni stran samo-preizkusa" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Izvedba zahteve ni uspela: %1" @@ -1345,95 +1341,95 @@ msgid "Print Self Test Page" msgstr "Natisni stran samo-preizkusa" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Nastavitve tiskanja" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Dodaj razred tiskalnikov" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Dodaj nov tiskalnik ali razred tiskalnikov" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Odstrani tiskalnik" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Pokaži tiskalnike, ki jih delijo drugi sistemi" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Deli tiskalnike priključene na ta sistem" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Dovoli tiskanje iz interneta" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Dovoli oddaljeno skrbništvo" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Uporabnikom dovoli preklic vseh poslov (ne le svojih)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Nastavite splošne možnosti" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Nastavljenega ali odkritega ni bilo nobenega tiskalnika" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Odstrani razred" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Ali resnično želite odstraniti razred »%1«?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Odstrani tiskalnik" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Ali resnično želite odstraniti tiskalnik »%1«?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Pridobivanje nastavitev strežnika ni uspelo" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1473,49 +1469,49 @@ msgid "Show printer queue(s)" msgstr "Pokaži tiskalniške vrste" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Tiskalnik je pripravljen" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Postavi tiskalnik v premor" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Tiskanje ..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Tiskanje »%1«" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Tiskalnik v premoru" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Nadaljuj s tiskanjem" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Stanje tiskalnika ni znano" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Premakni na" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1524,7 +1520,7 @@ msgstr[2] "Vsi tiskalniki (%1 posla)" msgstr[3] "Vsi tiskalniki (%1 posli)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1533,27 +1529,27 @@ msgstr[2] "%2 (%1 posla)" msgstr[3] "%2 (%1 posli)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Vsi tiskalniki" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Ni uspelo preklicati »%1«" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Ni uspelo zadržati »%1«" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Ni uspelo sprostiti »%1«" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Ni uspelo znova natisniti '%1'" @@ -1612,6 +1608,9 @@ msgid "All Jobs" msgstr "Vsi posli" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "DodajTiskalnik" diff -Nru print-manager-17.12.3/po/sr/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/sr/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/sr/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/sr/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.plasma.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-03-01 12:45+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -78,15 +78,15 @@ msgid "Printers" msgstr "Штампачи" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Подеси штампаче..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Ред за штампање празан" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "%1 посао у реду за штампање." diff -Nru print-manager-17.12.3/po/sr/print-manager.po print-manager-18.04.3/po/sr/print-manager.po --- print-manager-17.12.3/po/sr/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/sr/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2016-03-20 15:25+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "caslav.ilic@gmx.net" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Додавање новог штампача" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Избор штампача за додавање" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Избор драјвера" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Опис штампача" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,42 +128,42 @@ msgstr "Лозинка" # >> @item:inlistbox Parity: -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "ништа" # >> @item:inlistbox Parity: -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "парно" # >> @item:inlistbox Parity: -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "непарно" # >> @item:inlistbox Flow control: -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (софтверска)" # >> @item:inlistbox Flow control: -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (хардверска)" # >> @item:inlistbox Flow control: -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -265,7 +265,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -344,71 +344,67 @@ msgid "Local Printers" msgstr "локални штампачи" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Неуспело груписање уређаја: „%1“" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Додај штампач" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Алатка за додавање нових штампача" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "© 2010–2013, Данијел Николети" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Данијел Николети" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Пренос на КуТ‑5 и Плазму 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "ИД родитељског прозора" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Додај нови штампач" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Додај нову класу штампача" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Промени ППД задатог штампача" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Промени ППД задатог штампача/ИД‑а уређаја" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Неуспело додавање класе: „%1“" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -638,8 +634,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -663,7 +659,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Барјаци, смернице и дозвољени корисници" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -689,30 +685,30 @@ # >> @item:inlistbox # >> %1 is printer make and model -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "тренутни — %1" # >> @item:inlistbox -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "посебни драјвер" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Неуспело подешавање класе." -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Неуспело подешавање штампача." -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -815,79 +811,79 @@ msgstr "Драјвер:" # >> @item error policy -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "обустављање посла" # >> @item error policy -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "понављање текућег посла" # >> @item error policy -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "понављање посла" # >> @item error policy -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "заустављање штампача" # >> @item operation policy -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "аутентификовано" # >> @item operation policy -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "подразумевано" # >> @item job sheets -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "ништа" # >> @item job sheets -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "поверљиво" # >> @item job sheets -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "строго поверљиво" # >> @item job sheets -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "тајно" # >> @item job sheets -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "стандардно" # >> @item job sheets -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "врхунски тајно" # >> @item job sheets -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "отворено" @@ -946,7 +942,7 @@ msgid "A&llow these users to print" msgstr "&Дозволи овим корисницима да штампају" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Постави подразумеване опције" @@ -958,115 +954,115 @@ msgstr "Затражи од штампача подразумеване опције" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Избор драјвера" # >> @title:column -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "стање" # >> @title:column -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "име" # >> @title:column -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "корисник" # >> @title:column job created on -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "направљен" # >> @title:column completed job -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "завршен" # >> @title:column -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "страница" # >> @title:column job processed -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "обрађен" # >> @title:column -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "величина" # >> @title:column -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "порука стања" # >> @title:column -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "штампач" # rewrite-msgid: /Hostname/Host/ # >> @title:column -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "од домаћина" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Не могу да преместим „%1“ на „%2“." -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Неуспех" # >> @item job -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "наступа" # >> @item job -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "задржан" # >> @item job -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "заустављен" # >> @item job -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "отказан" # >> @item job -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "обустављен" @@ -1081,120 +1077,120 @@ msgid "Wrong username or password" msgstr "Погрешно корисничко име или лозинка" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Сервис штампања је недоступан" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Није нађено" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Пробна страница" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Не могу да пошаљем наредбу драјверу штампача." -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Не могу да позовем метод: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Препоручени драјвери" # >> @title:column -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "штампачи" # >> @item printer state -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "мирује" # >> @item printer state -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "мирује, одбацује послове" # >> @item printer state -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "мирује — %1" # >> @item printer state -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "мирује, одбацује послове — %1" # >> @item printer state -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "у употреби" # >> @item printer state -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "у употреби — %1" # >> @item printer state -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "паузиран" # >> @item printer state -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "паузиран, одбацује послове" # >> @item printer state -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "паузиран — %1" # >> @item printer state -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "паузиран, одбацује послове — %1" # >> @item printer state -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "непознато" # >> @item printer state -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "непознато — %1" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Не могу да добавим списак драјвера: „%1“" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Не могу да потражим препоручени драјвер: „%1“" @@ -1217,103 +1213,103 @@ msgid "Ma&nually Provide a PPD File:" msgstr "&Ручно задајте ППД фајл:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Откривен је нови штампач" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Подешавам нови штампач..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Додај је нови штампач" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Новом штампачу недостаје драјвер" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Нема драјвера за штампач" # >> %1 %2 make and model -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Нема драјвера за штампач %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Нема драјвера за штампач %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Нема драјвера за овај штампач." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Потражи" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Додај је нови штампач" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Новом штампачу недостаје драјвер" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "„%1“ спреман за штампање." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Одштампај пробну страницу" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "„%1“ је додат, проверите му драјвер." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "„%1“ је додат, под драјвером „%2“." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Одштампај пробну страницу" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Нађи драјвер" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "„%1“ спреман за штампање." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Дели ову класу" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Дели овај штампач" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Очисти штампарске главе" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Одштампај страницу за самопробу" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Неуспело извршавање захтева: %1" @@ -1384,97 +1380,97 @@ msgid "Print Self Test Page" msgstr "Одштампај страницу за самопробу" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Поставке штампача" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Додај класу штампача" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Додај нови штампач или класу штампача" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Уклони штампач" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Прикажи штампаче које деле други системи" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Подели штампаче повезане на овај систем" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Дозволи штампање преко Интернета" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Дозволи удаљено администрирање" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Дозволи корисницима да откажу било који посао (не само сопствени)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Подеси глобалне поставке" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Ниједан штампач није подешен нити откривен" # >> @title:window -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Уклањање класе" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Желите ли заиста да уклоните класу „%1“?" # >> @title:window -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Уклањање штампача" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Желите ли заиста да уклоните штампач „%1“?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Не могу да добавим поставке сервера" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1514,50 +1510,50 @@ msgid "Show printer queue(s)" msgstr "Прикажи ред штампача" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Штампач спреман" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Паузирај штампач" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Штампам..." # rewrite-msgid: /$/.../ -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Штампам „%1“..." -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Штампач паузиран" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Настави штампање" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Стање штампача непознато" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Премести на" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1566,7 +1562,7 @@ msgstr[2] "Сви штампачи (%1 послова)" msgstr[3] "Сви штампачи (%1 посао)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1575,27 +1571,27 @@ msgstr[2] "%2 (%1 послова)" msgstr[3] "%2 (%1 посао)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Сви штампачи" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Не могу да откажем „%1“." -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Не могу да задржим „%1“." -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Не могу да пустим „%1“." -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Пропало поновно штампање „%1“" diff -Nru print-manager-17.12.3/po/sv/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/sv/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/sv/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/sv/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 18:39+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "Skrivare" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "A&npassa skrivare..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Utskriftskön är tom" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Det finns ett utskriftsjobb i kön" diff -Nru print-manager-17.12.3/po/sv/print-manager.po print-manager-18.04.3/po/sv/print-manager.po --- print-manager-17.12.3/po/sv/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/sv/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -1,14 +1,14 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Stefan Asserhäll , 2012, 2013, 2015. +# Stefan Asserhäll , 2012, 2013, 2015, 2018. # Arve Eriksson <031299870@telia.com>, 2012. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-18 19:12+0100\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-25 22:20+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -16,7 +16,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 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -28,38 +28,38 @@ msgid "Your emails" msgstr "stefan.asserhall@bredband.net" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Lägg till en ny skrivare" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Välj en skrivare att lägga till" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Välj en drivrutin" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Beskriv skrivaren" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -127,37 +127,37 @@ msgid "Password" msgstr "Lösenord" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Ingen" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Jämn" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Udda" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (programvara)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (hårdvara)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -263,7 +263,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -342,71 +342,66 @@ msgid "Local Printers" msgstr "Lokala skrivare" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Misslyckades gruppera enheter: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Lägg till skrivare" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Verktyg för att lägga till nya skrivare" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "© 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "© 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Konvertering till Qt 5 och Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Fönsteridentifikation för överliggande fönster" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Lägg till en ny skrivare" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Lägg till en ny skrivarklass" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Ändrar PPD för en angiven skrivare" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Ändrar PPD för en angiven skrivare eller enhetsidentifikation" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Misslyckades lägga till klass: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -613,8 +608,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -636,7 +631,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Försättsblad, policy, och tillåtna användare" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -660,29 +655,29 @@ msgid "Printer to be configured" msgstr "Skrivare att anpassa" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Aktuell -%1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Välj egen drivrutin" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Misslyckades anpassa klass" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Misslyckades anpassa skrivare" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -818,67 +813,67 @@ msgid "Driver:" msgstr "Drivrutin:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Avbryt jobb" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Försök aktuellt jobb igen" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Försök jobb igen" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Stoppa skrivare" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Behörig" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Standard" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Ingen" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Klassificerad" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Konfidentiell" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Hemlig" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Normal" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Topphemlig" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Oklassificerad" @@ -937,7 +932,7 @@ msgid "A&llow these users to print" msgstr "Ti&llåt dessa användare att skriva ut" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Ange standardalternativ" @@ -949,98 +944,98 @@ msgstr "Fråga skrivaren om standardalternativ" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Välj en drivrutin" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Tillstånd" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Namn" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Användare" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Skapad" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Klar" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Sidor" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Behandlad" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Storlek" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Tillståndsmeddelande" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Skrivare" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Från värddator" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Misslyckades flytta '%1' till '%2'" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Misslyckades" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Väntande" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Avvaktar" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Stoppad" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Avslutad" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Avbruten" @@ -1055,107 +1050,107 @@ msgid "Wrong username or password" msgstr "Fel användarnamn eller lösenord" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Utskriftstjänsten är inte tillgänglig" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Hittades inte" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Testsida" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Kan inte skicka kommando till skrivardrivrutinen." -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Misslyckades anropa metod: '%1'" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Rekommenderade drivrutiner" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Skrivare" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Overksam" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Overksam, avvisar jobb" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Overksam - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Overksam, avvisar jobb - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Används" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Används - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Paus" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Paus, avvisar jobb" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Paus - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Paus, avvisar jobb - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Okänd" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Okänd - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Misslyckades hämta drivrutinslista: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Misslyckades söka efter rekommenderad drivrutin: '%1'" @@ -1178,102 +1173,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "Ange PPD-fil ma&nuellt:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Hittade ny skrivare" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Anpassar ny skrivare..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Den nya skrivaren har lagts till" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Den nya skrivaren saknar drivrutiner" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Saknar skrivardrivrutin" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Ingen skrivardrivrutin för %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Ingen skrivardrivrutin för %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Ingen drivrutin för den här skrivaren." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Sök" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Den nya skrivaren har lagts till" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Den nya skrivaren saknar drivrutiner" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' är klar för utskrift." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Skriv ut testsida" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' har lagts till, kontrollera drivrutinen." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1' har lagts till, använder drivrutinen '%2'." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Skriv ut testsida" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Sök drivrutin" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' är klar för utskrift." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Dela klassen" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Dela skrivaren" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Rengör skrivarhuvuden" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Skriv ut självtestsida" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Misslyckades utföra begäran: %1" @@ -1344,95 +1339,95 @@ msgid "Print Self Test Page" msgstr "Skriv ut självtestsida" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Skrivarinställningar" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Lägg till skrivarklass" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Lägg till en ny skrivare eller skrivarklass" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Ta bort skrivare" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Visa skrivare delade av andra datorer" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Dela skrivare som är anslutna till systemet" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Tillåt utskrift från Internet" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Tillåt fjärradministration" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Tillåt användare att avsluta alla jobb (inte bara egna)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Anpassa allmänna inställningar" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Inga skrivare har ställts in eller upptäckts" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Ta bort klass" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Är du säker på att du vill ta bort klassen '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Ta bort skrivare" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Är du säker på att du vill ta bort skrivaren '%1'?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Misslyckades hämta serverinställningar" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1472,83 +1467,83 @@ msgid "Show printer queue(s)" msgstr "Visa utskriftskö(er)" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Skrivare redo" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Pausa skrivare" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Skriver ut..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Skriver ut '%1'" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Skrivaren pausad" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Återuppta utskrift" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Skrivartillstånd okänt" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Flytta till" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Alla skrivare (%1 jobb)" msgstr[1] "Alla skrivare (%1 jobb)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 jobb)" msgstr[1] "%2 (%1 jobb)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Alla skrivare" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Misslyckades avsluta '%1'" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Misslyckades stoppa '%1'" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Misslyckades återuppta '%1'" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Misslyckades skriva ut '%1' igen" @@ -1607,6 +1602,9 @@ msgid "All Jobs" msgstr "Alla jobb" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Lägg till skrivare" diff -Nru print-manager-17.12.3/po/tr/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/tr/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/tr/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/tr/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdeutils-kde4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-05-19 05:49+0000\n" "Last-Translator: Necdet \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/kdeutils-k-tr/" @@ -75,15 +75,15 @@ msgid "Printers" msgstr "Yazıcılar" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Yazıcıları Yapılandır..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Yazdırma kuyruğu boş" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "Kuyrukta %1 yazdırma görevi var" diff -Nru print-manager-17.12.3/po/tr/print-manager.po print-manager-18.04.3/po/tr/print-manager.po --- print-manager-17.12.3/po/tr/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/tr/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdeutils-kde4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2015-05-19 05:55+0000\n" "Last-Translator: Necdet \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/kdeutils-k-tr/" @@ -29,38 +29,38 @@ msgid "Your emails" msgstr "volkangezer@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Yeni Bir Yazıcı Ekle" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Eklenecek Bir Yazıcı Seçin" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Bir Sürücü Seçin" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Lütfen yazıcınızı tanımlayın" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -128,37 +128,37 @@ msgid "Password" msgstr "Parola" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Hiçbiri" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Çift" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Tek" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (Yazılım)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (Donanım)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -264,7 +264,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -343,71 +343,67 @@ msgid "Local Printers" msgstr "Yerel Yazıcılar" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Aygıtları gruplama başarısız: '%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Yazıcı Ekle" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Yeni yazıcıları eklemek için bir araç" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "(C) 2010-2013 Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "(C) 2010-2013 Daniel Nicoletti" -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Qt 5 / Plasma 5 portu" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Üst Pencere Kimliği" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Yeni bir yazıcı ekle" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Bir yazıcı sınıfı ekle" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Belirtilen yazıcının PPD'sini değiştirir" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Belirtilen yazıcının/cihaz kimliğinin PPD'sini değiştirir" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Sınıf eklenemedi: '%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -614,8 +610,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -637,7 +633,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Başlıklar, İlkeler ve İzinli Kullanıcılar" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -661,29 +657,29 @@ msgid "Printer to be configured" msgstr "Yapılandırılan yazıcı" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Geçerli - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Özel bir sürücü seçin" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Sınıf yapılandırma başarısız" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Yazıcı yapılandırma başarısız" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -819,67 +815,67 @@ msgid "Driver:" msgstr "Sürücü:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Görevi iptal et" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Geçerli görevi yeniden dene" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Görevi yeniden dene" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Yazıcıyı durdur" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Yetkilendirilmiş" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Öntanımlı" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Hiçbiri" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Sınıflandırılmış" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Özel" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Gizli" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Standart" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Çok gizli" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Sınıflandırılmamış" @@ -938,7 +934,7 @@ msgid "A&llow these users to print" msgstr "Bu ku&llanıcıların yazdırmalarına izin ver" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Öntanımlı Seçenekleri Ayarla" @@ -950,98 +946,98 @@ msgstr "Öntanımlı Seçenekler için Yazıcıyı Sorgula" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Bir Sürücü Seçin" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Durum" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "İsim" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Kullanıcı" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Oluşturulma" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Tamamlandı" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Sayfa" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "İşlenen" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Boyut" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Durum İletisi" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Yazıcı" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "Sunucu Adından" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "'%1', '%2' taşıması başarısız" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Başarısız" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Bekleyen" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Beklemede" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Durduruldu" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "İptal edildi" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "İptal edildi" @@ -1056,107 +1052,107 @@ msgid "Wrong username or password" msgstr "Hatalı kullanıcı adı veya parola" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Yazdırma hizmeti kullanılamıyor" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Bulunamadı" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Deneme Sayfası" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Yazıcı sürücüsüne komut gönderilemedi!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Yöntem çalıştırılamadı: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Önerilen Sürücüler" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Yazıcılar" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Boşta" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Boşta, görevler reddediliyor" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Boşta - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Boşta, görevler reddediliyor - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Kullanımda" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Kullanımda - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Duraklatıldı" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Duraklatıldı, görevler reddediliyor" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Duraklatıldı - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Duraklatıldı, görevler reddediliyor - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Bilinmiyor" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Bilinmiyor - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Sürücü listesi alınamadı: '%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Önerilen sürücü arama başarısız: '%1'" @@ -1179,102 +1175,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "PPD Dosyası&nı el ile sağla:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Yeni Bir Yazıcı tespit edildi" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Yeni yazıcı yapılandırılıyor..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Yeni Yazıcı Eklendi" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Yeni Yazıcı Sürücüsü Eksik" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Yazıcı sürücüsü eksik" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "%1 %2 için yazıcı sürücüsü yok." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "%1 için yazıcı sürücüsü yok." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Bu yazıcı için sürücü yok." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Ara" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Yeni Yazıcı Eklendi" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Yeni Yazıcı Sürücüsü Eksik" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "'%1' yazdırılmak üzere hazır." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Deneme sayfası yazdır" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' eklendi, lütfen sürücüsünü denetleyin." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "'%1' eklendi, '%2' sürücüsü kullanıyor." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Deneme sayfası yazdır" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Sürücü bul" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "'%1' yazdırılmak üzere hazır." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Bu sınıfı paylaş" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Bu yazıcıyı paylaş" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Yazıcı Başlığını Temizle" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Yazıcı Sınama Sayfası Yazdır" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "İstek gerçekleştirilemedi: '%1'" @@ -1345,96 +1341,96 @@ msgid "Print Self Test Page" msgstr "Yazıcı Sınama Sayfası Yazdır" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Yazdırma ayarları" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Bir Yazıcı Sınıfı Ekle" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Yeni bir yazıcı veya yazıcı sınıfı ekle" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Yazıcıyı Kaldır" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Diğer sistemler tarafından paylaşılan yazıcıları göster" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Bu sisteme bağlı yazıcıları paylaş" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "İnternet üzerinden yazdırmaya izin ver" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Uzak yönetime izin ver" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "" "Kullanıcıların görevleri iptal etmesine izin ver (sadece kendilerin değil)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Genel tercihleri yapılandır" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Hiçbir yazıcı yapılandırılmadı veya algılanmadı" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Sınıfı kaldır" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "'%1' sınıfını kaldırmak istediğinizden emin misiniz?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Yazıcıyı kaldır" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "'%1' yazıcısını kaldırmak istediğinize emin misiniz?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Sunucu ayarlarını alma başarısız" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1474,83 +1470,83 @@ msgid "Show printer queue(s)" msgstr "Yazdırma kuyruğunu göster" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Yazıcı hazır" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Yazıcıyı Duraklat" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Yazdırılıyor..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "'%1' yazdırılıyor" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Yazıcı duraklatıldı" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Yazıcıyı Devam Ettir" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Yazıcı durumu bilinmiyor" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Şuraya taşı" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "Tüm Yazıcılar (%1 Görev)" msgstr[1] "Tüm Yazıcılar (%1 Görev)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 Görev)" msgstr[1] "%2 (%1 Görev)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Tüm Yazıcılar" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "'%1' iptal edilemedi" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "'%1' bekletilemedi" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "'%1' bırakılamadı" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Yeniden yazdırılamadı: '%1'" @@ -1609,6 +1605,9 @@ msgid "All Jobs" msgstr "Tüm Görevler" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "YazıcıEkle" diff -Nru print-manager-17.12.3/po/ug/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/ug/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/ug/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ug/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur \n" @@ -73,15 +73,15 @@ msgid "Printers" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "" diff -Nru print-manager-17.12.3/po/ug/print-manager.po print-manager-18.04.3/po/ug/print-manager.po --- print-manager-17.12.3/po/ug/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/ug/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur \n" @@ -27,38 +27,38 @@ msgid "Your emails" msgstr "sahran.ug@gmail.com, gheyret@gmail.com" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "بىر يېڭى پرىنتېر قوش" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +126,37 @@ msgid "Password" msgstr "ئىم" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "يوق" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "جۈپ" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "تاق" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (يۇمشاق دېتال)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (قاتتىق دېتال)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -240,7 +240,7 @@ "" msgstr "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -315,71 +315,67 @@ msgid "Local Printers" msgstr "يەرلىك پرىنتېرلار" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "پرىنتېر قوشۇش" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "" - -#: add-printer/main.cpp:44 -#, kde-format -msgid "Daniel Nicoletti" +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 +#, fuzzy, kde-format +#| msgid "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" msgstr "Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "بىر يېڭى پرىنتېر قوش" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -586,8 +582,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -609,7 +605,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -632,29 +628,29 @@ msgid "Printer to be configured" msgstr "" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -753,67 +749,67 @@ msgid "Driver:" msgstr "قوزغاتقۇچ:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "ۋەزىپىنى توختىتىش" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "نۆۋەتتىكى ۋەزىپىنى قايتا قىلىدۇ" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "ۋەزىپىنى قايتا قىلىش" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "پرىنتېرنى توختات" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "سالاھىيىتى دەلىللەنگەن" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "كۆڭۈلدىكى" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "يوق" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "تۈرگە ئايرىلغان" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "مەخپىي" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "مەخپىي" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "ئۆلچەملىك" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "تۈرگە ئايرىلمىغان" @@ -872,7 +868,7 @@ msgid "A&llow these users to print" msgstr "" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "" @@ -884,98 +880,98 @@ msgstr "" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "ھالىتى" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "ئاتى" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "ئىشلەتكۈچى" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "قۇرغان ۋاقتى" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "تاماملاندى" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "بەتلەر" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "چوڭلۇقى" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "پرىنتېر" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "مەغلۇپ بولدى" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "كۈتۈپ تۇر" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "توختىدى" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "قالدۇرۇۋېتىلدى" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "توختىتىلدى" @@ -990,107 +986,107 @@ msgid "Wrong username or password" msgstr "" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "تېپىلمىدى" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "سىناق بەت" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "پرىنتېرلار" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "بىكار" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "ئىشلىتىلىۋاتىدۇ" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "ۋاقىتلىق توختىدى" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "نامەلۇم" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "" @@ -1113,102 +1109,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "بىر يېڭى پرىنتېر بايقالدى" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "پرىنتېر قوزغاتقۇسى يوق" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "بۇ پرىنتېرنىڭ قوزغاتقۇسى يوق." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "ئىزدە" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "" - -#: print-manager-kded/NewPrinterNotification.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format -msgid "The New Printer is Missing Drivers" +msgid "'%1' has been added, please check its driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:167 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format -msgid "'%1' is ready for printing." +msgid "'%1' has been added, using the '%2' driver." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 #, kde-format msgid "Print test page" msgstr "سىناق بەتنى بېسىش" -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format -msgid "'%1' has been added, please check its driver." -msgstr "" +msgid "Find driver" +msgstr "قوزغاتقۇ تېپىش" -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:270 #, kde-format -msgid "'%1' has been added, using the '%2' driver." +msgid "'%1' is ready for printing." msgstr "" -#: print-manager-kded/NewPrinterNotification.cpp:184 -#, kde-format -msgid "Find driver" -msgstr "قوزغاتقۇ تېپىش" - -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "بېسىش بەشىنى تازىلاش" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "ئۆزىنى سىناش بېتىنى بېسىش" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "" @@ -1279,53 +1275,53 @@ msgid "Print Self Test Page" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "پرىنتېر تەڭشەك" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "پرىنتېر چىقىرىۋېتىش" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "باشقا سىستېمىلار ھەمبەھىرلىگەن پىرىنتېرلارنى كۆرسەت" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "ئىنتېرنېتتىن كەلگەن بېسىشقا يول قوي" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "يىراقتىن باشقۇرۇشقا يول قوي" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" @@ -1333,43 +1329,43 @@ "ئىشلەتكۈچىنىڭ ھەر قانداق ۋەزىپىنى توختىتىشىغا يول قوي (ئۆزىنىڭ ۋەزىپىسىلا " "ئەمەس)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1411,81 +1407,81 @@ msgid "Show printer queue(s)" msgstr "پرىنتېرنى توختات" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "بېسىۋاتىدۇ…" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "بارلىق پرىنتېرلار" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "" diff -Nru print-manager-17.12.3/po/uk/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/uk/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/uk/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/uk/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: plasma_applet_org.kde.plasma.printmanager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-21 15:32+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -80,15 +80,15 @@ msgid "Printers" msgstr "Принтери" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "&Налаштовування принтерів…" -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "Черга друку порожня" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "У черзі перебуває %1 завдання" diff -Nru print-manager-17.12.3/po/uk/print-manager.po print-manager-18.04.3/po/uk/print-manager.po --- print-manager-17.12.3/po/uk/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/uk/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -1,15 +1,15 @@ # Translation of print-manager.po to Ukrainian -# Copyright (C) 2012-2015 This_file_is_part_of_KDE +# Copyright (C) 2012-2018 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Yuri Chornoivan , 2012, 2013, 2015. +# Yuri Chornoivan , 2012, 2013, 2015, 2018. msgid "" msgstr "" "Project-Id-Version: print-manager\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-18 17:20+0200\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-01-25 08:45+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -18,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 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -30,38 +30,38 @@ msgid "Your emails" msgstr "yurchor@ukr.net" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "Додавання нового принтера" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "Виберіть принтер для додавання" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "Вибір драйвера" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "Визначення опису принтера" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -129,37 +129,37 @@ msgid "Password" msgstr "Пароль" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "Немає" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "Парні" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "Непарні" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (програмний)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (апаратний)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -265,7 +265,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -344,71 +344,66 @@ msgid "Local Printers" msgstr "Локальні принтери" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "Не вдалося згрупувати пристрої: «%1»" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "Додати принтер" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "Інструмент для додавання нових записів принтерів" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "© Daniel Nicoletti, 2010–2013" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "© Daniel Nicoletti, 2010–2018" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "Портування на Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "Ід. батьківського вікна" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "Додати новий принтер" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "Додати новий клас принтерів" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "Змінює PPD вказаного принтера" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "Змінює PPD вказаного принтера або пристрою з певним ідентифікатором" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "Не вдалося додати клас: «%1»" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -615,8 +610,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -638,7 +633,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "Банери, правила та дозволені користувачі" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -662,29 +657,29 @@ msgid "Printer to be configured" msgstr "Принтер, який слід налаштувати" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "Поточний — %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "Вибрати нетиповий драйвер" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "Не вдалося налаштувати клас" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "Не вдалося налаштувати принтер" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -822,67 +817,67 @@ msgid "Driver:" msgstr "Драйвер:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "Перервати виконання" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "Повторити поточне завдання" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "Повторити завдання" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "Зупинити друк" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "Вимагати розпізнавання" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "Типовий" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "Немає" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "Обмеження доступу" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "Конфіденційно" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "Таємно" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "Стандартний" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "Надсекретне" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "Без грифів" @@ -941,7 +936,7 @@ msgid "A&llow these users to print" msgstr "&Дозволити друк цим користувачам" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "Встановити типові параметри" @@ -953,98 +948,98 @@ msgstr "Надіслати запит щодо типових параметрів" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "Виберіть драйвер" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "Стан" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "Назва" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "Користувач" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "Створено" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "Завершено" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "Сторінки" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "Оброблено" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "Розмір" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "Повідомлення про стан" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "Принтер" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "За назвою вузла" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "Не вдалося пересунути «%1» до «%2»" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "Помилка" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "Заплановано" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "Очікування" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "Зупинено" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "Скасовано" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "Припинено" @@ -1059,107 +1054,107 @@ msgid "Wrong username or password" msgstr "Помилкове ім’я користувача або пароль" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "Служба друку недоступна" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "Не знайдено" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "Пробна сторінка" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "Не вдалося надіслати команду драйверу принтера!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "Не вдалося викликати метод: %1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "Рекомендовані драйвери" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "Принтери" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "Вільний" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "Не задіяно, відмовляє у виконанні завдань" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "Вільний — «%1»" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "Вільний, відмова у виконанні завдань — «%1»" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "Використовується" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "Використовується — «%1»" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "Призупинено" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "Призупинено, відмова у виконанні завдань" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "Призупинено — «%1»" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "Призупинено, відмова у виконанні завдань — «%1»" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "Невідомо" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "Невідомо — «%1»" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "Не вдалося отримати список драйверів: «%1»" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "Не вдалося знайти рекомендований драйвер: «%1»" @@ -1182,102 +1177,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "В&казати файл PPD вручну:" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "Виявлено новий принтер" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "Налаштування нового принтера…" -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "Новий принтер додано" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "Немає драйверів до нового принтера" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "Не вистачає драйвера принтера" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "Немає драйвера принтера для %1 %2." -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "Немає драйвера принтера для %1." -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "Для цього принтера відсутній драйвер." -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "Пошук" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "Новий принтер додано" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "Немає драйверів до нового принтера" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "«%1» готовий до друку." - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "Надрукувати пробну сторінку" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "Було додано «%1». Будь ласка, вкажіть драйвер до нього." -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "Було додано «%1», що використовує драйвер «%2»." -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "Надрукувати пробну сторінку" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "Знайти драйвер" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "«%1» готовий до друку." + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "Надати спільний доступ до цього класу" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "Надати спільний доступ до цього принтера" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "Почистити голівки принтера" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "Надрукувати сторінку самоперевірки" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "Не вдалося виконати запит: %1" @@ -1348,95 +1343,95 @@ msgid "Print Self Test Page" msgstr "Надрукувати сторінку самоперевірки" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "Параметри друку" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "Додати клас принтерів" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "Додати новий принтер або клас принтерів" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "Вилучити принтер" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "Показувати принтери, відкриті іншими системами" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "Дозволити спільне використання принтерів цієї системи" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "Дозволити друк з інтернету" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "Дозволити віддалене адміністрування" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "Дозволити користувачам скасовувати всі завдання (не лише власні)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "Виконати загальне налаштовування" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "Не налаштовано або не виявлено жодного принтера" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "Вилучити клас" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "Ви справді хочете вилучити клас «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "Вилучення принтера" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "Ви справді бажаєте вилучити принтер «%1»?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "Не вдалося отримати параметри сервера" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1476,49 +1471,49 @@ msgid "Show printer queue(s)" msgstr "Показ черги завдань принтерів" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "Принтер готовий" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "Призупинити друк" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "Друк…" -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "Друк «%1»" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "Друк призупинено" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "Відновити друк" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "Стан принтера невідомий" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "Пересунути" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" @@ -1527,7 +1522,7 @@ msgstr[2] "Всі принтери (%1 завдань)" msgstr[3] "Всі принтери (одне завдання)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" @@ -1536,27 +1531,27 @@ msgstr[2] "%2 (%1 завдань)" msgstr[3] "%2 (одне завдання)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "Всі принтери" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "Не вдалося скасувати «%1»" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "Не вдалося призупинити «%1»" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "Не вдалося зняти блокування з «%1»" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "Не вдалося повторно надрукувати «%1»" @@ -1615,6 +1610,9 @@ msgid "All Jobs" msgstr "Всі завдання" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "Додавання принтера" diff -Nru print-manager-17.12.3/po/zh_CN/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/zh_CN/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/zh_CN/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/zh_CN/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" -"PO-Revision-Date: 2018-02-28 02:30-0500\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" +"PO-Revision-Date: 2018-07-03 17:42\n" "Last-Translator: guoyunhebrave \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -76,15 +76,15 @@ msgid "Printers" msgstr "打印机" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "配置打印机(&C)..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "打印队列为空" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "队列中有 %1 个打印任务" diff -Nru print-manager-17.12.3/po/zh_CN/print-manager.po print-manager-18.04.3/po/zh_CN/print-manager.po --- print-manager-17.12.3/po/zh_CN/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/zh_CN/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2018-02-28 02:30-0500\n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-07-03 17:42\n" "Last-Translator: guoyunhebrave \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -31,38 +31,38 @@ msgid "Your emails" msgstr "kde-china@kde.org" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "添加新打印机" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "选择要添加的打印机" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "选择驱动" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "请描述您的打印机" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -130,37 +130,37 @@ msgid "Password" msgstr "密码" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "无" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "偶" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "奇" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF (软件)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS (硬件)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -266,7 +266,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -341,71 +341,66 @@ msgid "Local Printers" msgstr "本地打印机" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "无法连接组设备:%1" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "添加打印机" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "添加新打印机的工具" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "移植到 Qt 5 / Plasma 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "父窗口 ID" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "添加新打印机" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "添加新打印机类" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "更改所选打印机的 PPD 文件" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "更改所选打印机/设备编号的 PPD 文件" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "无法添加类:%1" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -608,8 +603,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -631,7 +626,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "横幅,使用政策和允许的用户" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -655,29 +650,29 @@ msgid "Printer to be configured" msgstr "要配置的打印机" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "当前 - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "选择自定义驱动" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "无法配置类" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "无法配置打印机" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -813,67 +808,67 @@ msgid "Driver:" msgstr "驱动:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "中止任务" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "重试当前任务" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "重试任务" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "停止打印机" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "已认证" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "默认" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "无" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "机密" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "机密" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "机密" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "标准" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "绝密" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "未分类" @@ -932,7 +927,7 @@ msgid "A&llow these users to print" msgstr "允许这些用户打印(&L)" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "设置默认选项" @@ -944,98 +939,98 @@ msgstr "查询打印机默认选项" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "选择驱动" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "状态" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "名称" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "用户" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "已创建" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "已完成" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "页" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "已处理" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "大小" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "状态消息" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "打印机" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "来自主机名" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "无法移动 %1 到 %2" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "失败" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "等待" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "暂停" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "已停止" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "已取消" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "已中止" @@ -1050,107 +1045,107 @@ msgid "Wrong username or password" msgstr "错误的用户名或密码" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "打印服务不可用" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "未找到" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "测试页" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "无法发送命令到打印机驱动!" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "无法调用方法:%1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "建议的驱动" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "打印机" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "空闲" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "空闲,拒绝任务" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "空闲 - %1" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "空闲,拒绝任务 - “%1”" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "使用中" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "使用中 - %1" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "已暂停" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "暂停,拒绝任务" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "已暂停 - %1" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "已暂停,拒绝任务 - “%1”" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "未知" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "未知 - %1" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "无法获取驱动列表:%1" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "无法搜索建议驱动:%1" @@ -1173,102 +1168,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "手动提供 PPD 文件(&N):" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "检测到一个新的打印机" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "正在配置新打印机..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "添加了新打印机" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "新打印机缺少驱动" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "缺失打印机驱动" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "没有 %1 %2 打印机的驱动。" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "没有 %1 打印机的驱动。" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "没有此打印机的驱动。" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "搜索" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "添加了新打印机" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "新打印机缺少驱动" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "“%1”已准备打印。" - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "打印测试页面" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "%1 已被添加,请检查驱动。" -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "“%1”已被添加,使用“%2”驱动。" -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "打印测试页面" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "查找驱动" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "“%1”已准备打印。" + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "共享此类" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "共享此打印机" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "清除打印报头" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "打印自检页" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "执行请求失败:%1" @@ -1339,95 +1334,95 @@ msgid "Print Self Test Page" msgstr "打印自检页" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "打印设置" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "添加打印机类" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "添加新打印机或打印机类" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "删除打印机" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "显示其它系统共享的打印机" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "共享链接到此系统的打印机" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "允许来自互联网的打印请求" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "允许远程管理" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "允许用户中止任何任务(不仅是自己的任务)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "配置全局选项" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "未配置或未发现打印机" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "移除类" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "您确定要移除类 %1 吗?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "移除打印机" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "您确定要移除打印机 %1 吗?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "无法获取服务器设置" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1467,81 +1462,81 @@ msgid "Show printer queue(s)" msgstr "显示打印队列" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "打印机准备就绪" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "暂停打印" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "正在打印..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "打印 %1" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "打印机已暂停" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "恢复打印机" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "打印机状态未知" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "移动到" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "所有打印机 (%1 任务)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2 (%1 任务)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "所有打印机" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "无法取消 %1" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "无法保留 %1" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "无法释放 %1" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "重新打印失败“%1”" diff -Nru print-manager-17.12.3/po/zh_TW/plasma_applet_org.kde.plasma.printmanager.po print-manager-18.04.3/po/zh_TW/plasma_applet_org.kde.plasma.printmanager.po --- print-manager-17.12.3/po/zh_TW/plasma_applet_org.kde.plasma.printmanager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/zh_TW/plasma_applet_org.kde.plasma.printmanager.po 2018-07-10 00:08:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-02-07 06:04+0100\n" +"POT-Creation-Date: 2018-03-10 03:22+0100\n" "PO-Revision-Date: 2015-02-25 08:18+0800\n" "Last-Translator: Franklin Weng \n" "Language-Team: Chinese Traditional \n" @@ -71,15 +71,15 @@ msgid "Printers" msgstr "印表機" -#: plasmoid/package/contents/ui/printmanager.qml:49 +#: plasmoid/package/contents/ui/printmanager.qml:48 msgid "&Configure Printers..." msgstr "設定印表機(&C)..." -#: plasmoid/package/contents/ui/printmanager.qml:80 +#: plasmoid/package/contents/ui/printmanager.qml:79 msgid "Print queue is empty" msgstr "列印佇列是空的" -#: plasmoid/package/contents/ui/printmanager.qml:82 +#: plasmoid/package/contents/ui/printmanager.qml:81 msgid "There is one print job in the queue" msgid_plural "There are %1 print jobs in the queue" msgstr[0] "有 %1 個列印工作在佇列中" diff -Nru print-manager-17.12.3/po/zh_TW/print-manager.po print-manager-18.04.3/po/zh_TW/print-manager.po --- print-manager-17.12.3/po/zh_TW/print-manager.po 2018-03-06 00:16:24.000000000 +0000 +++ print-manager-18.04.3/po/zh_TW/print-manager.po 2018-07-10 00:08:11.000000000 +0000 @@ -2,20 +2,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Franklin Weng , 2012, 2013, 2015. +# pan93412 , 2018. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-05-12 03:00+0200\n" -"PO-Revision-Date: 2015-02-20 22:57+0800\n" -"Last-Translator: Franklin Weng \n" -"Language-Team: Chinese Traditional \n" +"POT-Creation-Date: 2018-03-18 03:22+0100\n" +"PO-Revision-Date: 2018-04-24 20:44+0800\n" +"Last-Translator: pan93412 \n" +"Language-Team: Chinese \n" "Language: zh_TW\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" @@ -27,38 +28,38 @@ msgid "Your emails" msgstr "franklin@goodhorse.idv.tw" -#: add-printer/AddPrinterAssistant.cpp:46 +#: add-printer/AddPrinterAssistant.cpp:41 #, kde-format msgctxt "@title:window" msgid "Add a New Printer" msgstr "新增印表機" -#: add-printer/AddPrinterAssistant.cpp:88 add-printer/ChooseLpd.cpp:40 -#: add-printer/ChooseSamba.cpp:38 add-printer/ChooseSerial.cpp:37 -#: add-printer/ChooseSocket.cpp:38 add-printer/ChooseUri.cpp:38 -#: add-printer/PageAddPrinter.cpp:40 add-printer/PageChoosePPD.cpp:45 +#: add-printer/AddPrinterAssistant.cpp:83 add-printer/ChooseLpd.cpp:38 +#: add-printer/ChooseSamba.cpp:37 add-printer/ChooseSerial.cpp:36 +#: add-printer/ChooseSocket.cpp:36 add-printer/ChooseUri.cpp:39 +#: add-printer/PageAddPrinter.cpp:41 add-printer/PageChoosePPD.cpp:43 #: add-printer/PageChoosePrinters.cpp:39 add-printer/PageDestinations.cpp:89 #, kde-format msgctxt "@title:window" msgid "Select a Printer to Add" msgstr "選擇要新增的印表機" -#: add-printer/AddPrinterAssistant.cpp:92 -#: add-printer/AddPrinterAssistant.cpp:99 -#: add-printer/AddPrinterAssistant.cpp:141 +#: add-printer/AddPrinterAssistant.cpp:87 +#: add-printer/AddPrinterAssistant.cpp:94 +#: add-printer/AddPrinterAssistant.cpp:138 #, kde-format msgctxt "@title:window" msgid "Pick a Driver" msgstr "挑選驅動程式" -#: add-printer/AddPrinterAssistant.cpp:104 -#: add-printer/AddPrinterAssistant.cpp:124 +#: add-printer/AddPrinterAssistant.cpp:99 +#: add-printer/AddPrinterAssistant.cpp:120 #, kde-format msgctxt "@title:window" msgid "Please describe you printer" msgstr "請描述您的印表機" -#: add-printer/AddPrinterAssistant.cpp:120 +#: add-printer/AddPrinterAssistant.cpp:116 #, kde-format msgctxt "@title:window" msgid "Configure your connection" @@ -126,37 +127,37 @@ msgid "Password" msgstr "密碼" -#: add-printer/ChooseSerial.cpp:39 add-printer/ChooseSerial.cpp:43 +#: add-printer/ChooseSerial.cpp:38 add-printer/ChooseSerial.cpp:42 #, kde-format msgctxt "@label:listbox" msgid "None" msgstr "無" -#: add-printer/ChooseSerial.cpp:40 +#: add-printer/ChooseSerial.cpp:39 #, kde-format msgctxt "@label:listbox" msgid "Even" msgstr "偶數頁" -#: add-printer/ChooseSerial.cpp:41 +#: add-printer/ChooseSerial.cpp:40 #, kde-format msgctxt "@label:listbox" msgid "Odd" msgstr "奇數頁" -#: add-printer/ChooseSerial.cpp:44 +#: add-printer/ChooseSerial.cpp:43 #, kde-format msgctxt "@label:listbox" msgid "XON/XOFF (Software)" msgstr "XON/XOFF(軟體)" -#: add-printer/ChooseSerial.cpp:45 +#: add-printer/ChooseSerial.cpp:44 #, kde-format msgctxt "@label:listbox" msgid "RTS/CTS (Hardware)" msgstr "RTS/CTS(硬體)" -#: add-printer/ChooseSerial.cpp:46 +#: add-printer/ChooseSerial.cpp:45 #, kde-format msgctxt "@label:listbox" msgid "DTR/DSR (Hardware)" @@ -262,7 +263,7 @@ "\n" "" -#: add-printer/DevicesModel.cpp:54 +#: add-printer/DevicesModel.cpp:53 #, kde-format msgctxt "@item" msgid "Manual URI" @@ -337,71 +338,66 @@ msgid "Local Printers" msgstr "本地印表機" -#: add-printer/DevicesModel.cpp:343 +#: add-printer/DevicesModel.cpp:342 #, kde-format msgid "Failed to group devices: '%1'" msgstr "將裝置分組失敗:'%1'" #. i18n: ectx: property (text), widget (QToolButton, addTB) -#: add-printer/main.cpp:38 printer-manager-kcm/PrintKCM.ui:19 +#: add-printer/main.cpp:41 printer-manager-kcm/PrintKCM.ui:19 #, kde-format msgid "Add Printer" msgstr "新增印表機" -#: add-printer/main.cpp:40 +#: add-printer/main.cpp:43 #, kde-format msgid "Tool for adding new printers" msgstr "新增印表機工具" -#: add-printer/main.cpp:42 configure-printer/main.cpp:43 -#: printer-manager-kcm/PrintKCM.cpp:60 printqueue/main.cpp:42 -#, kde-format -msgid "(C) 2010-2013 Daniel Nicoletti" -msgstr "(C) 2010-2013 Daniel Nicoletti" - -#: add-printer/main.cpp:44 +#: add-printer/main.cpp:45 configure-printer/main.cpp:43 +#: printer-manager-kcm/PrintKCM.cpp:54 printqueue/main.cpp:42 #, kde-format -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +msgid "(C) 2010-2018 Daniel Nicoletti" +msgstr "(C) 2010-2018 Daniel Nicoletti" -#: add-printer/main.cpp:45 configure-printer/main.cpp:45 -#: printer-manager-kcm/PrintKCM.cpp:62 printqueue/main.cpp:45 +#: add-printer/main.cpp:48 configure-printer/main.cpp:45 +#: printer-manager-kcm/PrintKCM.cpp:56 printqueue/main.cpp:45 #, kde-format msgid "Port to Qt 5 / Plasma 5" msgstr "移植到 Plasma 5 / Qt 5" -#: add-printer/main.cpp:52 +#: add-printer/main.cpp:56 #, kde-format msgid "Parent Window ID" msgstr "父視窗代碼" -#: add-printer/main.cpp:53 +#: add-printer/main.cpp:59 #, kde-format msgid "Add a new printer" msgstr "新增印表機。" -#: add-printer/main.cpp:54 +#: add-printer/main.cpp:62 #, kde-format msgid "Add a new printer class" msgstr "新增印表機類別" -#: add-printer/main.cpp:55 +#: add-printer/main.cpp:65 #, kde-format msgid "Changes the PPD of a given printer" msgstr "變更指定印表機的 PPD" -#: add-printer/main.cpp:56 +#: add-printer/main.cpp:68 #, kde-format msgid "Changes the PPD of a given printer/deviceid" msgstr "變更指定印表機或裝置代碼的 PPD" -#: add-printer/PageAddPrinter.cpp:141 +#: add-printer/PageAddPrinter.cpp:143 #, kde-format msgctxt "@info" msgid "Failed to add class: '%1'" msgstr "加入類別失敗:'%1'" -#: add-printer/PageAddPrinter.cpp:143 +#: add-printer/PageAddPrinter.cpp:145 #, kde-format msgctxt "@info" msgid "Failed to configure printer: '%1'" @@ -604,8 +600,8 @@ #. i18n: ectx: property (text), widget (QPushButton, configurePB) #. i18n: ectx: property (text), widget (QPushButton, configurePrinterPB) #: configure-printer/ConfigureDialog.cpp:103 -#: print-manager-kded/NewPrinterNotification.cpp:170 -#: print-manager-kded/NewPrinterNotification.cpp:178 +#: print-manager-kded/NewPrinterNotification.cpp:255 +#: print-manager-kded/NewPrinterNotification.cpp:271 #: printer-manager-kcm/PrinterDescription.ui:198 printqueue/PrintQueueUi.ui:131 #, kde-format msgid "Configure" @@ -627,7 +623,7 @@ msgid "Banners, Policies and Allowed Users" msgstr "橫幅,政策與允許的使用者" -#: configure-printer/ConfigureDialog.cpp:197 +#: configure-printer/ConfigureDialog.cpp:198 #, kde-format msgid "" "The current page has changes.\n" @@ -651,29 +647,29 @@ msgid "Printer to be configured" msgstr "要設定的印表機" -#: configure-printer/ModifyPrinter.cpp:145 +#: configure-printer/ModifyPrinter.cpp:141 #, kde-format msgid "Current - %1" msgstr "目前 - %1" -#: configure-printer/ModifyPrinter.cpp:148 +#: configure-printer/ModifyPrinter.cpp:144 #, kde-format msgid "Select a custom driver" msgstr "選擇自訂印表機" -#: configure-printer/ModifyPrinter.cpp:247 +#: configure-printer/ModifyPrinter.cpp:243 #, kde-format msgctxt "@info" msgid "Failed to configure class" msgstr "設定類別失敗" -#: configure-printer/ModifyPrinter.cpp:248 +#: configure-printer/ModifyPrinter.cpp:244 #, kde-format msgctxt "@info" msgid "Failed to configure printer" msgstr "設定印表機失敗" -#: configure-printer/ModifyPrinter.cpp:250 printer-manager-kcm/PrintKCM.cpp:341 +#: configure-printer/ModifyPrinter.cpp:246 printer-manager-kcm/PrintKCM.cpp:325 #, kde-format msgctxt "@title:window" msgid "Failed" @@ -809,67 +805,67 @@ msgid "Driver:" msgstr "驅動程式:" -#: configure-printer/PrinterBehavior.cpp:211 +#: configure-printer/PrinterBehavior.cpp:213 #, kde-format msgid "Abort job" msgstr "中止工作" -#: configure-printer/PrinterBehavior.cpp:213 +#: configure-printer/PrinterBehavior.cpp:215 #, kde-format msgid "Retry current job" msgstr "重試目前的工作" -#: configure-printer/PrinterBehavior.cpp:215 +#: configure-printer/PrinterBehavior.cpp:217 #, kde-format msgid "Retry job" msgstr "重試工作" -#: configure-printer/PrinterBehavior.cpp:217 +#: configure-printer/PrinterBehavior.cpp:219 #, kde-format msgid "Stop printer" msgstr "停止印表機" -#: configure-printer/PrinterBehavior.cpp:226 +#: configure-printer/PrinterBehavior.cpp:228 #, kde-format msgid "Authenticated" msgstr "已認證" -#: configure-printer/PrinterBehavior.cpp:228 +#: configure-printer/PrinterBehavior.cpp:230 #, kde-format msgid "Default" msgstr "預設" -#: configure-printer/PrinterBehavior.cpp:237 +#: configure-printer/PrinterBehavior.cpp:239 #, kde-format msgid "None" msgstr "無" -#: configure-printer/PrinterBehavior.cpp:239 +#: configure-printer/PrinterBehavior.cpp:241 #, kde-format msgid "Classified" msgstr "已分類" -#: configure-printer/PrinterBehavior.cpp:241 +#: configure-printer/PrinterBehavior.cpp:243 #, kde-format msgid "Confidential" msgstr "機密" -#: configure-printer/PrinterBehavior.cpp:243 +#: configure-printer/PrinterBehavior.cpp:245 #, kde-format msgid "Secret" msgstr "極機密" -#: configure-printer/PrinterBehavior.cpp:245 +#: configure-printer/PrinterBehavior.cpp:247 #, kde-format msgid "Standard" msgstr "標準" -#: configure-printer/PrinterBehavior.cpp:247 +#: configure-printer/PrinterBehavior.cpp:249 #, kde-format msgid "Topsecret" msgstr "最高機密" -#: configure-printer/PrinterBehavior.cpp:249 +#: configure-printer/PrinterBehavior.cpp:251 #, kde-format msgid "Unclassified" msgstr "未分類" @@ -928,7 +924,7 @@ msgid "A&llow these users to print" msgstr "允許這些使用者進行列印(&L)" -#: configure-printer/PrinterOptions.cpp:71 +#: configure-printer/PrinterOptions.cpp:69 #, kde-format msgid "Set Default Options" msgstr "設定預設選項" @@ -940,98 +936,98 @@ msgstr "查詢印表機的預設選項" #. i18n: ectx: property (windowTitle), widget (QWidget, SelectMakeModel) -#: configure-printer/SelectMakeModelDialog.cpp:36 +#: configure-printer/SelectMakeModelDialog.cpp:37 #: libkcups/SelectMakeModel.ui:14 #, kde-format msgid "Select a Driver" msgstr "選擇驅動程式" -#: libkcups/JobModel.cpp:45 +#: libkcups/JobModel.cpp:38 #, kde-format msgid "Status" msgstr "狀態" -#: libkcups/JobModel.cpp:46 +#: libkcups/JobModel.cpp:39 #, kde-format msgid "Name" msgstr "名稱" -#: libkcups/JobModel.cpp:47 +#: libkcups/JobModel.cpp:40 #, kde-format msgid "User" msgstr "使用者" -#: libkcups/JobModel.cpp:48 +#: libkcups/JobModel.cpp:41 #, kde-format msgid "Created" msgstr "已建立" -#: libkcups/JobModel.cpp:49 libkcups/JobModel.cpp:610 +#: libkcups/JobModel.cpp:42 libkcups/JobModel.cpp:584 #, kde-format msgid "Completed" msgstr "已完成" -#: libkcups/JobModel.cpp:50 +#: libkcups/JobModel.cpp:43 #, kde-format msgid "Pages" msgstr "頁面" -#: libkcups/JobModel.cpp:51 +#: libkcups/JobModel.cpp:44 #, kde-format msgid "Processed" msgstr "已處理" -#: libkcups/JobModel.cpp:52 +#: libkcups/JobModel.cpp:45 #, kde-format msgid "Size" msgstr "大小" -#: libkcups/JobModel.cpp:53 +#: libkcups/JobModel.cpp:46 #, kde-format msgid "Status Message" msgstr "狀態訊息" -#: libkcups/JobModel.cpp:54 +#: libkcups/JobModel.cpp:47 #, kde-format msgid "Printer" msgstr "印表機" -#: libkcups/JobModel.cpp:55 +#: libkcups/JobModel.cpp:48 #, kde-format msgid "From Hostname" msgstr "從主機名稱" -#: libkcups/JobModel.cpp:529 printqueue/PrintQueueUi.cpp:518 +#: libkcups/JobModel.cpp:498 printqueue/PrintQueueUi.cpp:504 #, kde-format msgid "Failed to move '%1' to '%2'" msgstr "將 '%1' 移動到 '%2' 失敗" -#: libkcups/JobModel.cpp:532 printqueue/PrintQueueUi.cpp:524 +#: libkcups/JobModel.cpp:501 printqueue/PrintQueueUi.cpp:510 #, kde-format msgid "Failed" msgstr "失敗" -#: libkcups/JobModel.cpp:604 +#: libkcups/JobModel.cpp:578 #, kde-format msgid "Pending" msgstr "暫停" -#: libkcups/JobModel.cpp:605 +#: libkcups/JobModel.cpp:579 #, kde-format msgid "On hold" msgstr "保留中" -#: libkcups/JobModel.cpp:607 +#: libkcups/JobModel.cpp:581 #, kde-format msgid "Stopped" msgstr "已停止" -#: libkcups/JobModel.cpp:608 +#: libkcups/JobModel.cpp:582 #, kde-format msgid "Canceled" msgstr "已取消" -#: libkcups/JobModel.cpp:609 +#: libkcups/JobModel.cpp:583 #, kde-format msgid "Aborted" msgstr "已中止" @@ -1046,107 +1042,107 @@ msgid "Wrong username or password" msgstr "錯誤的使用者名稱或密碼" -#: libkcups/KCupsRequest.cpp:52 +#: libkcups/KCupsRequest.cpp:49 #, kde-format msgid "Print service is unavailable" msgstr "列印服務無法使用" -#: libkcups/KCupsRequest.cpp:54 +#: libkcups/KCupsRequest.cpp:51 #, kde-format msgid "Not found" msgstr "找不到" -#: libkcups/KCupsRequest.cpp:425 +#: libkcups/KCupsRequest.cpp:418 #, kde-format msgid "Test Page" msgstr "測試頁" -#: libkcups/KCupsRequest.cpp:457 +#: libkcups/KCupsRequest.cpp:450 #, kde-format msgid "Unable to send command to printer driver!" msgstr "無法傳送指令給印表機驅動程式。" -#: libkcups/KCupsRequest.cpp:581 +#: libkcups/KCupsRequest.cpp:574 #, kde-format msgid "Failed to invoke method: %1" msgstr "呼叫方法失敗:%1" -#: libkcups/PPDModel.cpp:48 +#: libkcups/PPDModel.cpp:45 #, kde-format msgid "Recommended Drivers" msgstr "建議的驅動程式" -#: libkcups/PrinterModel.cpp:194 +#: libkcups/PrinterModel.cpp:177 #, kde-format msgid "Printers" msgstr "印表機" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle" msgstr "閒置" -#: libkcups/PrinterModel.cpp:391 +#: libkcups/PrinterModel.cpp:380 #, kde-format msgid "Idle, rejecting jobs" msgstr "閒置,拒絕工作" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle - '%1'" msgstr "閒置 - '%1'" -#: libkcups/PrinterModel.cpp:393 +#: libkcups/PrinterModel.cpp:382 #, kde-format msgid "Idle, rejecting jobs - '%1'" msgstr "閒置,拒絕工作 - '%1'" -#: libkcups/PrinterModel.cpp:397 +#: libkcups/PrinterModel.cpp:386 #, kde-format msgid "In use" msgstr "使用中" -#: libkcups/PrinterModel.cpp:399 +#: libkcups/PrinterModel.cpp:388 #, kde-format msgid "In use - '%1'" msgstr "使用中 - '%1'" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused" msgstr "已暫停" -#: libkcups/PrinterModel.cpp:403 +#: libkcups/PrinterModel.cpp:392 #, kde-format msgid "Paused, rejecting jobs" msgstr "已暫停,拒絕工作" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused - '%1'" msgstr "已暫停 - '%1'" -#: libkcups/PrinterModel.cpp:405 +#: libkcups/PrinterModel.cpp:394 #, kde-format msgid "Paused, rejecting jobs - '%1'" msgstr "已暫停,拒絕工作 - '%1'" -#: libkcups/PrinterModel.cpp:409 +#: libkcups/PrinterModel.cpp:398 #, kde-format msgid "Unknown" msgstr "未知" -#: libkcups/PrinterModel.cpp:411 +#: libkcups/PrinterModel.cpp:400 #, kde-format msgid "Unknown - '%1'" msgstr "未知 - '%1'" -#: libkcups/SelectMakeModel.cpp:157 +#: libkcups/SelectMakeModel.cpp:152 #, kde-format msgid "Failed to get a list of drivers: '%1'" msgstr "取得驅動程式清單失敗:'%1'" -#: libkcups/SelectMakeModel.cpp:246 +#: libkcups/SelectMakeModel.cpp:242 #, kde-format msgid "Failed to search for a recommended driver: '%1'" msgstr "搜尋建議的驅動程式失敗:'%1'" @@ -1169,102 +1165,102 @@ msgid "Ma&nually Provide a PPD File:" msgstr "手動提供 PPD 檔(&N):" -#: print-manager-kded/NewPrinterNotification.cpp:72 +#: print-manager-kded/NewPrinterNotification.cpp:73 #, kde-format msgid "A New Printer was detected" msgstr "偵測到新印表機" -#: print-manager-kded/NewPrinterNotification.cpp:73 +#: print-manager-kded/NewPrinterNotification.cpp:74 #, kde-format msgid "Configuring new printer..." msgstr "設定新印表機..." -#: print-manager-kded/NewPrinterNotification.cpp:110 +#: print-manager-kded/NewPrinterNotification.cpp:114 +#, kde-format +msgid "The New Printer was Added" +msgstr "新印表機已加入" + +#: print-manager-kded/NewPrinterNotification.cpp:116 +#, kde-format +msgid "The New Printer is Missing Drivers" +msgstr "新印表機缺少驅動程式" + +#: print-manager-kded/NewPrinterNotification.cpp:178 #, kde-format msgid "Missing printer driver" msgstr "遺失印表機驅動程式" -#: print-manager-kded/NewPrinterNotification.cpp:112 +#: print-manager-kded/NewPrinterNotification.cpp:180 #, kde-format msgid "No printer driver for %1 %2." msgstr "沒有 %1 %2 的印表機驅動程式。" -#: print-manager-kded/NewPrinterNotification.cpp:114 +#: print-manager-kded/NewPrinterNotification.cpp:182 #, kde-format msgid "No printer driver for %1." msgstr "沒有 %1 的印表機驅動程式。" -#: print-manager-kded/NewPrinterNotification.cpp:116 +#: print-manager-kded/NewPrinterNotification.cpp:184 #, kde-format msgid "No driver for this printer." msgstr "沒有此印表機的驅動程式。" -#: print-manager-kded/NewPrinterNotification.cpp:119 +#: print-manager-kded/NewPrinterNotification.cpp:187 #, kde-format msgid "Search" msgstr "搜尋" -#: print-manager-kded/NewPrinterNotification.cpp:126 -#, kde-format -msgid "The New Printer was Added" -msgstr "新印表機已加入" - -#: print-manager-kded/NewPrinterNotification.cpp:128 -#, kde-format -msgid "The New Printer is Missing Drivers" -msgstr "新印表機缺少驅動程式" - -#: print-manager-kded/NewPrinterNotification.cpp:167 -#, kde-format -msgid "'%1' is ready for printing." -msgstr "%1 已就緒。" - -#: print-manager-kded/NewPrinterNotification.cpp:168 -#: print-manager-kded/NewPrinterNotification.cpp:182 -#, kde-format -msgid "Print test page" -msgstr "列印測試頁" - -#: print-manager-kded/NewPrinterNotification.cpp:177 +#: print-manager-kded/NewPrinterNotification.cpp:254 #, kde-format msgid "'%1' has been added, please check its driver." msgstr "'%1' 已新增,請檢查它的驅動程式。" -#: print-manager-kded/NewPrinterNotification.cpp:181 +#: print-manager-kded/NewPrinterNotification.cpp:258 #, kde-format msgid "'%1' has been added, using the '%2' driver." msgstr "%1 已新增,使用驅動程式 %2。" -#: print-manager-kded/NewPrinterNotification.cpp:184 +#: print-manager-kded/NewPrinterNotification.cpp:259 +#: print-manager-kded/NewPrinterNotification.cpp:271 +#, kde-format +msgid "Print test page" +msgstr "列印測試頁" + +#: print-manager-kded/NewPrinterNotification.cpp:259 #, kde-format msgid "Find driver" msgstr "尋找驅動程式" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: print-manager-kded/NewPrinterNotification.cpp:270 +#, kde-format +msgid "'%1' is ready for printing." +msgstr "%1 已就緒。" + +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this class" msgstr "分享此類別" -#: printer-manager-kcm/PrinterDescription.cpp:128 +#: printer-manager-kcm/PrinterDescription.cpp:123 #, kde-format msgid "Share this printer" msgstr "分享此印表機" #. i18n: ectx: property (text), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:249 +#: printer-manager-kcm/PrinterDescription.cpp:244 #: printer-manager-kcm/PrinterDescription.ui:293 #, kde-format msgid "Clean Print Heads" msgstr "清潔列印噴頭" #. i18n: ectx: property (toolTip), widget (KMessageWidget, errorMessage) -#: printer-manager-kcm/PrinterDescription.cpp:258 +#: printer-manager-kcm/PrinterDescription.cpp:253 #: printer-manager-kcm/PrinterDescription.ui:301 #, kde-format msgid "Print Self-Test Page" msgstr "列印自我測試頁" -#: printer-manager-kcm/PrinterDescription.cpp:265 +#: printer-manager-kcm/PrinterDescription.cpp:259 #, kde-format msgid "Failed to perform request: %1" msgstr "執行要求失敗:%1" @@ -1335,95 +1331,95 @@ msgid "Print Self Test Page" msgstr "列印自我測試頁" -#: printer-manager-kcm/PrintKCM.cpp:56 printer-manager-kcm/PrintKCM.cpp:58 +#: printer-manager-kcm/PrintKCM.cpp:50 printer-manager-kcm/PrintKCM.cpp:52 #, kde-format msgid "Print settings" msgstr "列印設定" -#: printer-manager-kcm/PrintKCM.cpp:75 +#: printer-manager-kcm/PrintKCM.cpp:69 #, kde-format msgctxt "@action:intoolbar" msgid "Add a Printer Class" msgstr "新增印表機類別" -#: printer-manager-kcm/PrintKCM.cpp:78 +#: printer-manager-kcm/PrintKCM.cpp:72 #, kde-format msgid "Add a new printer or a printer class" msgstr "新增印表機或印表機類別" #. i18n: ectx: property (text), widget (QToolButton, removeTB) -#: printer-manager-kcm/PrintKCM.cpp:82 printer-manager-kcm/PrintKCM.ui:32 +#: printer-manager-kcm/PrintKCM.cpp:76 printer-manager-kcm/PrintKCM.ui:32 #, kde-format msgid "Remove Printer" msgstr "移除印表機" -#: printer-manager-kcm/PrintKCM.cpp:88 +#: printer-manager-kcm/PrintKCM.cpp:82 #, kde-format msgctxt "@action:intoolbar" msgid "Show printers shared by other systems" msgstr "顯示其他系統共享的印表機" -#: printer-manager-kcm/PrintKCM.cpp:92 +#: printer-manager-kcm/PrintKCM.cpp:86 #, kde-format msgctxt "@action:intoolbar" msgid "Share printers connected to this system" msgstr "分享連線到此系統的印表機" -#: printer-manager-kcm/PrintKCM.cpp:94 +#: printer-manager-kcm/PrintKCM.cpp:88 #, kde-format msgctxt "@action:intoolbar" msgid "Allow printing from the Internet" msgstr "允許從網際網路上列印" -#: printer-manager-kcm/PrintKCM.cpp:100 +#: printer-manager-kcm/PrintKCM.cpp:94 #, kde-format msgctxt "@action:intoolbar" msgid "Allow remote administration" msgstr "允許遠端管理" -#: printer-manager-kcm/PrintKCM.cpp:102 +#: printer-manager-kcm/PrintKCM.cpp:96 #, kde-format msgctxt "@action:intoolbar" msgid "Allow users to cancel any job (not just their own)" msgstr "允許使用者取消任何工作(而不是只能取消他們自己的工作)" -#: printer-manager-kcm/PrintKCM.cpp:106 +#: printer-manager-kcm/PrintKCM.cpp:100 #, kde-format msgid "Configure the global preferences" msgstr "設定全域喜好設定" -#: printer-manager-kcm/PrintKCM.cpp:156 printer-manager-kcm/PrintKCM.cpp:256 +#: printer-manager-kcm/PrintKCM.cpp:145 printer-manager-kcm/PrintKCM.cpp:245 #, kde-format msgid "No printers have been configured or discovered" msgstr "沒有設定或發現任何印表機" -#: printer-manager-kcm/PrintKCM.cpp:289 +#: printer-manager-kcm/PrintKCM.cpp:276 #, kde-format msgid "Remove class" msgstr "移除類別" -#: printer-manager-kcm/PrintKCM.cpp:290 +#: printer-manager-kcm/PrintKCM.cpp:277 #, kde-format msgid "Are you sure you want to remove the class '%1'?" msgstr "您確定要移除類別 '%1' 嗎?" -#: printer-manager-kcm/PrintKCM.cpp:293 +#: printer-manager-kcm/PrintKCM.cpp:280 #, kde-format msgid "Remove printer" msgstr "移除印表機" -#: printer-manager-kcm/PrintKCM.cpp:294 +#: printer-manager-kcm/PrintKCM.cpp:281 #, kde-format msgid "Are you sure you want to remove the printer '%1'?" msgstr "您確定要移除印表機 '%1' 嗎?" -#: printer-manager-kcm/PrintKCM.cpp:339 +#: printer-manager-kcm/PrintKCM.cpp:323 #, kde-format msgctxt "@info" msgid "Failed to get server settings" msgstr "取得伺服器設定失敗" -#: printer-manager-kcm/PrintKCM.cpp:371 +#: printer-manager-kcm/PrintKCM.cpp:354 #, kde-format msgctxt "@info" msgid "Failed to configure server settings" @@ -1463,81 +1459,81 @@ msgid "Show printer queue(s)" msgstr "顯示列印佇列" -#: printqueue/PrintQueueUi.cpp:230 +#: printqueue/PrintQueueUi.cpp:218 #, kde-format msgid "Printer ready" msgstr "印表機已就緒" #. i18n: ectx: property (text), widget (QPushButton, pausePrinterPB) -#: printqueue/PrintQueueUi.cpp:231 printqueue/PrintQueueUi.cpp:242 +#: printqueue/PrintQueueUi.cpp:219 printqueue/PrintQueueUi.cpp:230 #: printqueue/PrintQueueUi.ui:118 #, kde-format msgid "Pause Printer" msgstr "暫停印表機" -#: printqueue/PrintQueueUi.cpp:238 +#: printqueue/PrintQueueUi.cpp:226 #, kde-format msgid "Printing..." msgstr "正在列印..." -#: printqueue/PrintQueueUi.cpp:240 +#: printqueue/PrintQueueUi.cpp:228 #, kde-format msgid "Printing '%1'" msgstr "列印 '%1' 中" -#: printqueue/PrintQueueUi.cpp:248 +#: printqueue/PrintQueueUi.cpp:236 #, kde-format msgid "Printer paused" msgstr "印表機已暫停" -#: printqueue/PrintQueueUi.cpp:249 +#: printqueue/PrintQueueUi.cpp:237 #, kde-format msgid "Resume Printer" msgstr "回復印表機" -#: printqueue/PrintQueueUi.cpp:264 +#: printqueue/PrintQueueUi.cpp:252 #, kde-format msgid "Printer state unknown" msgstr "印表機狀態未知" -#: printqueue/PrintQueueUi.cpp:298 +#: printqueue/PrintQueueUi.cpp:287 #, kde-format msgid "Move to" msgstr "移動到" -#: printqueue/PrintQueueUi.cpp:434 +#: printqueue/PrintQueueUi.cpp:418 #, kde-format msgid "All Printers (%1 Job)" msgid_plural "All Printers (%1 Jobs)" msgstr[0] "所有印表機(%1 個工作)" -#: printqueue/PrintQueueUi.cpp:436 +#: printqueue/PrintQueueUi.cpp:420 #, kde-format msgid "%2 (%1 Job)" msgid_plural "%2 (%1 Jobs)" msgstr[0] "%2(%1 個工作)" -#: printqueue/PrintQueueUi.cpp:439 +#: printqueue/PrintQueueUi.cpp:423 #, kde-format msgid "All Printers" msgstr "所有印表機" -#: printqueue/PrintQueueUi.cpp:506 +#: printqueue/PrintQueueUi.cpp:492 #, kde-format msgid "Failed to cancel '%1'" msgstr "取消 '%1' 失敗" -#: printqueue/PrintQueueUi.cpp:509 +#: printqueue/PrintQueueUi.cpp:495 #, kde-format msgid "Failed to hold '%1'" msgstr "保留 '%1' 失敗" -#: printqueue/PrintQueueUi.cpp:512 +#: printqueue/PrintQueueUi.cpp:498 #, kde-format msgid "Failed to release '%1'" msgstr "釋出 '%1' 失敗" -#: printqueue/PrintQueueUi.cpp:515 +#: printqueue/PrintQueueUi.cpp:501 #, kde-format msgid "Failed to reprint '%1'" msgstr "重新列印 '%1' 失敗" @@ -1596,6 +1592,9 @@ msgid "All Jobs" msgstr "所有工作" +#~ msgid "Daniel Nicoletti" +#~ msgstr "Daniel Nicoletti" + #~ msgid "AddPrinter" #~ msgstr "新增印表機" diff -Nru print-manager-17.12.3/printer-manager-kcm/PrinterDelegate.cpp print-manager-18.04.3/printer-manager-kcm/PrinterDelegate.cpp --- print-manager-17.12.3/printer-manager-kcm/PrinterDelegate.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printer-manager-kcm/PrinterDelegate.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -181,3 +181,5 @@ return QSize(width, calcItemHeight(option)); } + +#include "moc_PrinterDelegate.cpp" diff -Nru print-manager-17.12.3/printer-manager-kcm/PrinterDescription.cpp print-manager-18.04.3/printer-manager-kcm/PrinterDescription.cpp --- print-manager-17.12.3/printer-manager-kcm/PrinterDescription.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printer-manager-kcm/PrinterDescription.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -38,22 +38,19 @@ PrinterDescription::PrinterDescription(QWidget *parent) : QWidget(parent), - ui(new Ui::PrinterDescription), - m_isClass(false), - m_globalShared(false), - m_markerChangeTime(0) + ui(new Ui::PrinterDescription) { ui->setupUi(this); m_layoutEnd = ui->formLayout->count(); // loads the standard key icon - m_printerIcon = KIconLoader::global()->loadIcon("printer", + m_printerIcon = KIconLoader::global()->loadIcon(QLatin1String("printer"), KIconLoader::NoGroup, PRINTER_ICON_SIZE, // a not so huge icon KIconLoader::DefaultState); ui->iconL->setPixmap(m_printerIcon); - m_pauseIcon = KIconLoader::global()->loadIcon("media-playback-pause", + m_pauseIcon = KIconLoader::global()->loadIcon(QLatin1String("media-playback-pause"), KIconLoader::NoGroup, KIconLoader::SizeMedium, KIconLoader::DefaultState, @@ -61,7 +58,7 @@ 0, true); - QMenu *menu = new QMenu(ui->maintenancePB); + auto menu = new QMenu(ui->maintenancePB); menu->addAction(ui->actionPrintTestPage); menu->addAction(ui->actionPrintSelfTestPage); menu->addAction(ui->actionCleanPrintHeads); @@ -80,32 +77,30 @@ void PrinterDescription::on_openQueuePB_clicked() { - QStringList args; - args << m_destName; - KToolInvocation::kdeinitExec(QLatin1String("kde-print-queue"), args); + KToolInvocation::kdeinitExec(QLatin1String("kde-print-queue"), { m_destName }); } void PrinterDescription::on_defaultCB_clicked() { ui->defaultCB->setDisabled(true); - KCupsRequest *request = new KCupsRequest; - connect(request, SIGNAL(finished()), this, SLOT(requestFinished())); + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, &PrinterDescription::requestFinished); request->setDefaultPrinter(m_destName); } void PrinterDescription::on_sharedCB_clicked() { ui->sharedCB->setDisabled(true); - KCupsRequest *request = new KCupsRequest; - connect(request, SIGNAL(finished()), this, SLOT(requestFinished())); + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, &PrinterDescription::requestFinished); request->setShared(m_destName, m_isClass, ui->sharedCB->isChecked()); } void PrinterDescription::on_rejectPrintJobsCB_clicked() { ui->rejectPrintJobsCB->setDisabled(true); - KCupsRequest *request = new KCupsRequest; - connect(request, SIGNAL(finished()), this, SLOT(requestFinished())); + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, &PrinterDescription::requestFinished); if (ui->rejectPrintJobsCB->isChecked()) { request->rejectJobs(m_destName); } else { @@ -186,8 +181,8 @@ if (m_commands != commands) { m_commands = commands; - ui->actionCleanPrintHeads->setVisible(commands.contains("Clean")); - ui->actionPrintSelfTestPage->setVisible(commands.contains("PrintSelfTestPage")); + ui->actionCleanPrintHeads->setVisible(commands.contains(QLatin1String("Clean"))); + ui->actionPrintSelfTestPage->setVisible(commands.contains(QLatin1String("PrintSelfTestPage"))); // TODO if the printer supports ReportLevels // we should probably probe for them @@ -202,31 +197,31 @@ ui->formLayout->takeAt(ui->formLayout->count() - 1)->widget()->deleteLater(); } - int size = data["marker-names"].toStringList().size(); - if (size != data["marker-levels"].value >().size() || - size != data["marker-colors"].toStringList().size() || - size != data["marker-types"].toStringList().size()) { + int size = data[KCUPS_MARKER_NAMES].toStringList().size(); + if (size != data[KCUPS_MARKER_LEVELS].value >().size() || + size != data[KCUPS_MARKER_COLORS].toStringList().size() || + size != data[KCUPS_MARKER_TYPES].toStringList().size()) { return; } // Create a colored progress bar for each marker for (int i = 0; i < size; i++) { - if (data["marker-types"].toStringList().at(i) == QLatin1String("unknown")) { + if (data[KCUPS_MARKER_TYPES].toStringList().at(i) == QLatin1String("unknown")) { continue; } - QProgressBar *pogressBar = new QProgressBar; - pogressBar->setValue(data["marker-levels"].value >().at(i)); + auto pogressBar = new QProgressBar; + pogressBar->setValue(data[KCUPS_MARKER_LEVELS].value >().at(i)); pogressBar->setTextVisible(false); pogressBar->setMaximumHeight(15); QPalette palette = pogressBar->palette(); palette.setColor(QPalette::Active, QPalette::Highlight, - QColor(data["marker-colors"].toStringList().at(i))); + QColor(data[KCUPS_MARKER_COLORS].toStringList().at(i))); palette.setColor(QPalette::Inactive, QPalette::Highlight, - QColor(data["marker-colors"].toStringList().at(i)).lighter()); + QColor(data[KCUPS_MARKER_COLORS].toStringList().at(i)).lighter()); pogressBar->setPalette(palette); - QLabel *label = new QLabel(data["marker-names"].toStringList().at(i), this); + auto label = new QLabel(data[KCUPS_MARKER_NAMES].toStringList().at(i), this); ui->formLayout->addRow(label, pogressBar); } } @@ -235,8 +230,8 @@ { Q_UNUSED(checked) - KCupsRequest *request = new KCupsRequest; - connect(request, SIGNAL(finished()), this, SLOT(requestFinished())); + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, &PrinterDescription::requestFinished); request->printTestPage(m_destName, m_isClass); } @@ -244,23 +239,22 @@ { Q_UNUSED(checked) - KCupsRequest *request = new KCupsRequest; - connect(request, SIGNAL(finished()), this, SLOT(requestFinished())); - request->printCommand(m_destName, "Clean all", i18n("Clean Print Heads")); + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, &PrinterDescription::requestFinished); + request->printCommand(m_destName, QLatin1String("Clean all"), i18n("Clean Print Heads")); } void PrinterDescription::on_actionPrintSelfTestPage_triggered(bool checked) { Q_UNUSED(checked) - KCupsRequest *request = new KCupsRequest; - connect(request, SIGNAL(finished()), this, SLOT(requestFinished())); - request->printCommand(m_destName, "PrintSelfTestPage", i18n("Print Self-Test Page")); + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, &PrinterDescription::requestFinished); + request->printCommand(m_destName, QLatin1String("PrintSelfTestPage"), i18n("Print Self-Test Page")); } -void PrinterDescription::requestFinished() +void PrinterDescription::requestFinished(KCupsRequest *request) { - KCupsRequest *request = qobject_cast(sender()); if (request && request->hasError()) { ui->errorMessage->setText(i18n("Failed to perform request: %1", request->errorMsg())); ui->errorMessage->animatedShow(); @@ -281,5 +275,7 @@ void PrinterDescription::on_configurePB_clicked() { - QProcess::startDetached("configure-printer", {m_destName}); + QProcess::startDetached(QLatin1String("configure-printer"), {m_destName}); } + +#include "moc_PrinterDescription.cpp" diff -Nru print-manager-17.12.3/printer-manager-kcm/PrinterDescription.h print-manager-18.04.3/printer-manager-kcm/PrinterDescription.h --- print-manager-17.12.3/printer-manager-kcm/PrinterDescription.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printer-manager-kcm/PrinterDescription.h 2018-03-17 21:16:53.000000000 +0000 @@ -70,20 +70,20 @@ void on_actionCleanPrintHeads_triggered(bool checked); void on_actionPrintSelfTestPage_triggered(bool checked); - void requestFinished(); + void requestFinished(KCupsRequest *request); private: Ui::PrinterDescription *ui; QString m_destName; - bool m_isClass; + bool m_isClass = false; bool m_isShared; - bool m_globalShared; + bool m_globalShared = false; QStringList m_commands; QPixmap m_printerIcon; QPixmap m_pauseIcon; QPixmap m_startIcon; QPixmap m_warningIcon; - int m_markerChangeTime; + int m_markerChangeTime = 0; QVariantHash m_markerData; int m_layoutEnd; }; diff -Nru print-manager-17.12.3/printer-manager-kcm/PrintKCM.cpp print-manager-18.04.3/printer-manager-kcm/PrintKCM.cpp --- print-manager-17.12.3/printer-manager-kcm/PrintKCM.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printer-manager-kcm/PrintKCM.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -30,7 +30,6 @@ #include "PrinterDescription.h" #include -#include #include #include #include @@ -43,47 +42,42 @@ #include -K_PLUGIN_FACTORY(PrintKCMFactory, registerPlugin();) - PrintKCM::PrintKCM(QWidget *parent, const QVariantList &args) : KCModule(parent, args), - ui(new Ui::PrintKCM), - m_lastError(-1), // Force the error to run on the first time - m_serverRequest(0) -{ - KAboutData *aboutData; - aboutData = new KAboutData("kcm_print", - i18n("Print settings"), - PM_VERSION, - i18n("Print settings"), - KAboutLicense::GPL, - i18n("(C) 2010-2013 Daniel Nicoletti")); - aboutData->addAuthor(QStringLiteral("Daniel Nicoletti"), QString(), "dantti12@gmail.com"); + ui(new Ui::PrintKCM) +{ + auto aboutData = new KAboutData(QLatin1String("kcm_print"), + i18n("Print settings"), + QLatin1String(PM_VERSION), + i18n("Print settings"), + KAboutLicense::GPL, + i18n("(C) 2010-2018 Daniel Nicoletti")); + aboutData->addAuthor(QStringLiteral("Daniel Nicoletti"), QString(), QLatin1String("dantti12@gmail.com")); aboutData->addAuthor(QStringLiteral("Jan Grulich"), i18n("Port to Qt 5 / Plasma 5"), QStringLiteral("jgrulich@redhat.com")); setAboutData(aboutData); setButtons(NoAdditionalButton); ui->setupUi(this); - connect(ui->printerDesc, SIGNAL(updateNeeded()), SLOT(update())); + connect(ui->printerDesc, &PrinterDescription::updateNeeded, this, &PrintKCM::update); // The printer list needs to increase in width according to the icon sizes // default dialog icon size is 32, this times 6 is 192 which is roughly the original width ui->printersTV->setMinimumWidth(IconSize(KIconLoader::Dialog) * 6); - QMenu *addMenu = new QMenu(this); + auto addMenu = new QMenu(this); addMenu->addAction(i18nc("@action:intoolbar","Add a Printer Class"), - this, SLOT(addClass())); - ui->addTB->setIcon(QIcon::fromTheme("list-add")); + this, &PrintKCM::addClass); + ui->addTB->setIcon(QIcon::fromTheme(QLatin1String("list-add"))); ui->addTB->setToolTip(i18n("Add a new printer or a printer class")); ui->addTB->setMenu(addMenu); - ui->removeTB->setIcon(QIcon::fromTheme("list-remove")); + ui->removeTB->setIcon(QIcon::fromTheme(QLatin1String("list-remove"))); ui->removeTB->setToolTip(i18n("Remove Printer")); - QMenu *systemMenu = new QMenu(this); - connect(systemMenu, SIGNAL(aboutToShow()), this, SLOT(getServerSettings())); - connect(systemMenu, SIGNAL(triggered(QAction*)), this, SLOT(systemPreferencesTriggered())); + auto systemMenu = new QMenu(this); + connect(systemMenu, &QMenu::aboutToShow, this, &PrintKCM::getServerSettings); + connect(systemMenu, &QMenu::triggered, this, &PrintKCM::systemPreferencesTriggered); #if CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR < 6 m_showSharedPrinters = systemMenu->addAction(i18nc("@action:intoolbar","Show printers shared by other systems")); m_showSharedPrinters->setCheckable(true); @@ -94,47 +88,42 @@ m_allowPrintringFromInternet = systemMenu->addAction(i18nc("@action:intoolbar","Allow printing from the Internet")); m_allowPrintringFromInternet->setCheckable(true); m_allowPrintringFromInternet->setEnabled(false); - connect(m_shareConnectedPrinters, SIGNAL(toggled(bool)), m_allowPrintringFromInternet, SLOT(setEnabled(bool))); - connect(m_shareConnectedPrinters, SIGNAL(toggled(bool)), ui->printerDesc, SLOT(enableShareCheckBox(bool))); + connect(m_shareConnectedPrinters, &QAction::toggled, m_allowPrintringFromInternet, &QAction::setEnabled); + connect(m_shareConnectedPrinters, &QAction::toggled, ui->printerDesc, &PrinterDescription::enableShareCheckBox); systemMenu->addSeparator(); m_allowRemoteAdmin = systemMenu->addAction(i18nc("@action:intoolbar","Allow remote administration")); m_allowRemoteAdmin->setCheckable(true); m_allowUsersCancelAnyJob = systemMenu->addAction(i18nc("@action:intoolbar","Allow users to cancel any job (not just their own)")); m_allowUsersCancelAnyJob->setCheckable(true); - ui->systemPreferencesTB->setIcon(QIcon::fromTheme("configure")); + ui->systemPreferencesTB->setIcon(QIcon::fromTheme(QLatin1String("configure"))); ui->systemPreferencesTB->setToolTip(i18n("Configure the global preferences")); ui->systemPreferencesTB->setMenu(systemMenu); m_model = new PrinterModel(this); - PrinterSortFilterModel *sortModel = new PrinterSortFilterModel(this); + auto sortModel = new PrinterSortFilterModel(this); sortModel->setSourceModel(m_model); ui->printersTV->setModel(sortModel); ui->printersTV->setItemDelegate(new NoSelectionRectDelegate(this)); ui->printersTV->setItemDelegate(new PrinterDelegate(this)); - connect(ui->printersTV->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), - this, SLOT(update())); - connect(sortModel, SIGNAL(rowsInserted(QModelIndex,int,int)), - this, SLOT(update())); - connect(sortModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), - this, SLOT(update())); - connect(m_model, SIGNAL(dataChanged(QModelIndex,QModelIndex)), - this, SLOT(update())); - connect(m_model, SIGNAL(error(int,QString,QString)), - this, SLOT(error(int,QString,QString))); + connect(ui->printersTV->selectionModel(), &QItemSelectionModel::selectionChanged, this, &PrintKCM::update); + connect(sortModel, &PrinterSortFilterModel::rowsInserted, this, &PrintKCM::update); + connect(sortModel, &PrinterSortFilterModel::rowsRemoved, this, &PrintKCM::update); + connect(m_model, &PrinterModel::dataChanged, this, &PrintKCM::update); + connect(m_model, &PrinterModel::error, this, &PrintKCM::error); - ui->addPrinterBtn->setIcon(QIcon::fromTheme("list-add")); - connect(ui->addPrinterBtn, SIGNAL(clicked()), this, SLOT(on_addTB_clicked())); + ui->addPrinterBtn->setIcon(QIcon::fromTheme(QLatin1String("list-add"))); + connect(ui->addPrinterBtn, &QPushButton::clicked, this, &PrintKCM::on_addTB_clicked); // Force the model update AFTER we setup the error signal m_model->update(); // Make sure we update our server settings if the user change it on // another interface - connect(KCupsConnection::global(), SIGNAL(serverAudit(QString)), this, SLOT(getServerSettings())); - connect(KCupsConnection::global(), SIGNAL(serverRestarted(QString)), this, SLOT(getServerSettings())); - connect(KCupsConnection::global(), SIGNAL(serverStarted(QString)), this, SLOT(getServerSettings())); - connect(KCupsConnection::global(), SIGNAL(serverStopped(QString)), this, SLOT(getServerSettings())); + connect(KCupsConnection::global(), &KCupsConnection::serverAudit, this, &PrintKCM::getServerSettings); + connect(KCupsConnection::global(), &KCupsConnection::serverStarted, this, &PrintKCM::getServerSettings); + connect(KCupsConnection::global(), &KCupsConnection::serverStopped, this, &PrintKCM::getServerSettings); + connect(KCupsConnection::global(), &KCupsConnection::serverRestarted, this, &PrintKCM::getServerSettings); // We need to know the server settings so we disable the // share printer checkbox if sharing is disabled on the server @@ -152,13 +141,13 @@ // The user has no printer // allow him to add a new one if (lastError == IPP_NOT_FOUND) { - showInfo(QIcon::fromTheme("dialog-information"), + showInfo(QIcon::fromTheme(QLatin1String("dialog-information")), i18n("No printers have been configured or discovered"), QString(), true, true); } else { - showInfo(QIcon::fromTheme("printer"), + showInfo(QIcon::fromTheme(QLatin1String("printer")), QStringLiteral("%1").arg(errorTitle), errorMsg, false, @@ -252,7 +241,7 @@ if (m_lastError == IPP_OK) { // the model is empty and no problem happened - showInfo(QIcon::fromTheme("dialog-information"), + showInfo(QIcon::fromTheme(QLatin1String("dialog-information")), i18n("No printers have been configured or discovered"), QString(), true, @@ -263,16 +252,14 @@ void PrintKCM::on_addTB_clicked() { - QStringList args; - args << "--add-printer"; - KToolInvocation::kdeinitExec(QLatin1String("kde-add-printer"), args); + KToolInvocation::kdeinitExec(QLatin1String("kde-add-printer"), + { QLatin1String("--add-printer") }); } void PrintKCM::addClass() { - QStringList args; - args << "--add-class"; - KToolInvocation::kdeinitExec(QLatin1String("kde-add-printer"), args); + KToolInvocation::kdeinitExec(QLatin1String("kde-add-printer"), + { QLatin1String("--add-class") }); } void PrintKCM::on_removeTB_clicked() @@ -309,19 +296,16 @@ void PrintKCM::getServerSettings() { if (!m_serverRequest) { - QMenu *systemMenu = qobject_cast(sender()); + auto systemMenu = qobject_cast(sender()); m_serverRequest = new KCupsRequest; m_serverRequest->setProperty("interactive", static_cast(systemMenu)); - connect(m_serverRequest, SIGNAL(finished()), - this, SLOT(getServerSettingsFinished())); + connect(m_serverRequest, &KCupsRequest::finished, this, &PrintKCM::getServerSettingsFinished); m_serverRequest->getServerSettings(); } } -void PrintKCM::getServerSettingsFinished() +void PrintKCM::getServerSettingsFinished(KCupsRequest *request) { - KCupsRequest *request = qobject_cast(sender()); - // When we don't have any destinations error is set to IPP_NOT_FOUND // we can safely ignore the error since it DOES bring the server settings bool error = request->hasError() && request->error() != IPP_NOT_FOUND; @@ -357,15 +341,14 @@ m_serverRequest = 0; } -void PrintKCM::updateServerFinished() +void PrintKCM::updateServerFinished(KCupsRequest *request) { - KCupsRequest *request = qobject_cast(sender()); if (request->hasError()) { if (request->error() == IPP_SERVICE_UNAVAILABLE || request->error() == IPP_INTERNAL_ERROR || request->error() == IPP_AUTHENTICATION_CANCELED) { // Server is restarting, or auth was canceled, update the settings in one second - QTimer::singleShot(1000, this, SLOT(update())); + QTimer::singleShot(1000, this, &PrintKCM::update); } else { KMessageBox::detailedSorry(this, i18nc("@info", "Failed to configure server settings"), @@ -389,9 +372,9 @@ server.setAllowPrintingFromInternet(m_allowPrintringFromInternet->isChecked()); server.setAllowRemoteAdmin(m_allowRemoteAdmin->isChecked()); server.setAllowUserCancelAnyJobs(m_allowUsersCancelAnyJob->isChecked()); - KCupsRequest *request = new KCupsRequest; - connect(request, SIGNAL(finished()), this, SLOT(updateServerFinished())); + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, &PrintKCM::updateServerFinished); request->setServerSettings(server); } -#include "PrintKCM.moc" +#include "moc_PrintKCM.cpp" diff -Nru print-manager-17.12.3/printer-manager-kcm/PrintKCM.h print-manager-18.04.3/printer-manager-kcm/PrintKCM.h --- print-manager-17.12.3/printer-manager-kcm/PrintKCM.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printer-manager-kcm/PrintKCM.h 2018-03-17 21:16:53.000000000 +0000 @@ -22,8 +22,9 @@ #define PRINT_KCM_H #include -#include +#include +#include #include #include @@ -50,16 +51,16 @@ void showInfo(const QIcon &icon, const QString &title, const QString &comment, bool showAddPrinter, bool showToolButtons); void getServerSettings(); - void getServerSettingsFinished(); - void updateServerFinished(); + void getServerSettingsFinished(KCupsRequest *request); + void updateServerFinished(KCupsRequest *request); void systemPreferencesTriggered(); private: Ui::PrintKCM *ui; PrinterModel *m_model; - int m_lastError; + int m_lastError = -1; // Force the error to run on the first time - KCupsRequest *m_serverRequest; + KCupsRequest *m_serverRequest = nullptr; QAction *m_showSharedPrinters; QAction *m_shareConnectedPrinters; QAction *m_allowPrintringFromInternet; @@ -67,4 +68,6 @@ QAction *m_allowUsersCancelAnyJob; }; +K_PLUGIN_FACTORY(PrintKCMFactory, registerPlugin();) + #endif diff -Nru print-manager-17.12.3/print-manager-kded/Debug.cpp print-manager-18.04.3/print-manager-kded/Debug.cpp --- print-manager-17.12.3/print-manager-kded/Debug.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/print-manager-kded/Debug.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -20,4 +20,4 @@ #include "Debug.h" -Q_LOGGING_CATEGORY(PM_KDED, "pm.kded") +Q_LOGGING_CATEGORY(PM_KDED, "print-manager.kded") diff -Nru print-manager-17.12.3/print-manager-kded/NewPrinterNotification.cpp print-manager-18.04.3/print-manager-kded/NewPrinterNotification.cpp --- print-manager-17.12.3/print-manager-kded/NewPrinterNotification.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/print-manager-kded/NewPrinterNotification.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -29,12 +29,11 @@ #include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #define STATUS_SUCCESS 0 #define STATUS_MODEL_MISMATCH 1 @@ -42,20 +41,22 @@ #define STATUS_NO_DRIVER 3 #define PRINTER_NAME "PrinterName" -#define DEVICE_ID "DeviceId" -NewPrinterNotification::NewPrinterNotification() +NewPrinterNotification::NewPrinterNotification(QObject *parent) : QObject(parent) { - // Make sure the password dialog is created in the main thread - KCupsConnection::global(); - - // Make all our init code run on the thread since - // the DBus calls were made blocking - QTimer::singleShot(0, this, SLOT(init())); + // Creates our new adaptor + (void) new NewPrinterNotificationAdaptor(this); - m_thread = new QThread(this); - moveToThread(m_thread); - m_thread->start(); + // Register the com.redhat.NewPrinterNotification interface + if (!registerService()) { + // in case registration fails due to another user or application running + // keep an eye on it so we can register when available + auto watcher = new QDBusServiceWatcher(QLatin1String("com.redhat.NewPrinterNotification"), + QDBusConnection::systemBus(), + QDBusServiceWatcher::WatchForUnregistration, + this); + connect(watcher, &QDBusServiceWatcher::serviceUnregistered, this, &NewPrinterNotification::registerService); + } } NewPrinterNotification::~NewPrinterNotification() @@ -64,11 +65,11 @@ void NewPrinterNotification::GetReady() { - qCDebug(PM_KDED); + qCDebug(PM_KDED) << "GetReady"; // This method is all about telling the user a new printer was detected - KNotification *notify = new KNotification("GetReady"); - notify->setComponentName("printmanager"); - notify->setPixmap(QIcon::fromTheme("printer").pixmap(64, 64)); + auto notify = new KNotification(QLatin1String("GetReady")); + notify->setComponentName(QLatin1String("printmanager")); + notify->setIconName(QLatin1String("printer")); notify->setTitle(i18n("A New Printer was detected")); notify->setText(i18n("Configuring new printer...")); notify->sendEvent(); @@ -88,138 +89,52 @@ const QString &cmd) { qCDebug(PM_KDED) << status << name << make << model << description << cmd; + // 1 // "usb://Samsung/SCX-3400%20Series?serial=Z6Y1BQAC500079K&interface=1" // mfg "Samsung" // mdl "SCX-3400 Series" "" "SPL,FWV,PIC,BDN,EXT" // This method is all about telling the user a new printer was detected - KNotification *notify = new KNotification("NewPrinterNotification"); - notify->setComponentName("printmanager"); - notify->setPixmap(QIcon::fromTheme("printer").pixmap(64, 64)); + auto notify = new KNotification(QLatin1String("NewPrinterNotification")); + notify->setComponentName(QLatin1String("printmanager")); + notify->setIconName(QLatin1String("printer")); notify->setFlags(KNotification::Persistent); - QString title; - QString text; - QString devid; - QStringList actions; - devid = QString("MFG:%1;MDL:%2;DES:%3;CMD:%4;").arg(make, model, description, cmd); - if (name.contains(QLatin1Char('/'))) { - // name is a URI, no queue was generated, because no suitable - // driver was found - title = i18n("Missing printer driver"); - if (!make.isEmpty() && !model.isEmpty()) { - text = i18n("No printer driver for %1 %2.", make, model); - } else if (!description.isEmpty()) { - text = i18n("No printer driver for %1.", description); - } else { - text = i18n("No driver for this printer."); - } - - actions << i18n("Search"); - connect(notify, SIGNAL(action1Activated()), this, SLOT(setupPrinter())); + const QString devid = QString::fromLatin1("MFG:%1;MDL:%2;DES:%3;CMD:%4;") + .arg(make, model, description, cmd); + setupPrinterNotification(notify, make, model, description, + name + QLatin1Char('/') + devid); } else { + notify->setProperty(PRINTER_NAME, name); // name is the name of the queue which hal_lpadmin has set up // automatically. if (status < STATUS_GENERIC_DRIVER) { - title = i18n("The New Printer was Added"); + notify->setTitle(i18n("The New Printer was Added")); } else { - title = i18n("The New Printer is Missing Drivers"); - } - - QStringList attr; - attr << KCUPS_PRINTER_MAKE_AND_MODEL; - - // Get the new printer attributes - QPointer request = new KCupsRequest; - request->getPrinterAttributes(name, false, attr); - request->waitTillFinished(); - if (!request) { - return; - } - - QString driver; - // Get the new printer driver - if (!request->printers().isEmpty()){ - KCupsPrinter printer = request->printers().first(); - driver = printer.makeAndModel(); + notify->setTitle(i18n("The New Printer is Missing Drivers")); } - request->deleteLater(); - QString ppdFileName; - request = new KCupsRequest; - request->getPrinterPPD(name); - request->waitTillFinished(); - if (!request) { - return; - } - ppdFileName = request->printerPPD(); - request->deleteLater(); - - // Get a list of missing executables - QStringList missingExecutables = getMissingExecutables(ppdFileName); - - if (!missingExecutables.isEmpty()) { - // TODO check with PackageKit about missing drivers - qCWarning(PM_KDED) << "Missing executables:" << missingExecutables; - } else if (status == STATUS_SUCCESS) { - text = i18n("'%1' is ready for printing.", name); - actions << i18n("Print test page"); - connect(notify, SIGNAL(action1Activated()), this, SLOT(printTestPage())); - actions << i18n("Configure"); - connect(notify, SIGNAL(action2Activated()), this, SLOT(configurePrinter())); - } else { - // Model mismatch - - // The cups request might have failed - if (driver.isEmpty()) { - text = i18n("'%1' has been added, please check its driver.", name); - actions << i18n("Configure"); - connect(notify, SIGNAL(action1Activated()), this, SLOT(configurePrinter())); - } else { - text = i18n("'%1' has been added, using the '%2' driver.", name, driver); - actions << i18n("Print test page"); - connect(notify, SIGNAL(action1Activated()), this, SLOT(printTestPage())); - actions << i18n("Find driver"); - connect(notify, SIGNAL(action2Activated()), this, SLOT(findDriver())); - } - } - } - notify->setTitle(title); - notify->setText(text); - notify->setProperty(PRINTER_NAME, name); - notify->setProperty(DEVICE_ID, devid); - notify->setActions(actions); - notify->sendEvent(); -} - -void NewPrinterNotification::init() -{ - // Creates our new adaptor - (void) new NewPrinterNotificationAdaptor(this); - - // Register the com.redhat.NewPrinterNotification interface - if (!registerService()) { - // in case registration fails due to another user or application running - // keep an eye on it so we can register when available - QDBusServiceWatcher *watcher; - watcher = new QDBusServiceWatcher(QLatin1String("com.redhat.NewPrinterNotification"), - QDBusConnection::systemBus(), - QDBusServiceWatcher::WatchForUnregistration, - this); - connect(watcher, SIGNAL(serviceUnregistered(QString)), this, SLOT(registerService())); + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, [this, notify, status, name] (KCupsRequest *request) { + const QString ppdFileName = request->printerPPD(); + // Get a list of missing executables + getMissingExecutables(notify, status, name, ppdFileName); + request->deleteLater(); + }); + request->getPrinterPPD(name); } } bool NewPrinterNotification::registerService() { - if (!QDBusConnection::systemBus().registerService("com.redhat.NewPrinterNotification")) { + if (!QDBusConnection::systemBus().registerService(QLatin1String("com.redhat.NewPrinterNotification"))) { qCWarning(PM_KDED) << "unable to register service to dbus"; return false; } - if (!QDBusConnection::systemBus().registerObject("/com/redhat/NewPrinterNotification", this)) { + if (!QDBusConnection::systemBus().registerObject(QLatin1String("/com/redhat/NewPrinterNotification"), this)) { qCWarning(PM_KDED) << "unable to register object to dbus"; return false; } @@ -228,64 +143,135 @@ void NewPrinterNotification::configurePrinter() { - QProcess::startDetached("configure-printer", {PRINTER_NAME}); -} - -void NewPrinterNotification::searchDrivers() -{ + const QString printerName = sender()->property(PRINTER_NAME).toString(); + qCDebug(PM_KDED) << "configure printer tool" << printerName; + QProcess::startDetached(QLatin1String("configure-printer"), { printerName }); } void NewPrinterNotification::printTestPage() { - qCDebug(PM_KDED); - QPointer request = new KCupsRequest; - request->printTestPage(sender()->property(PRINTER_NAME).toString(), false); - request->waitTillFinished(); - if (request) { - request->deleteLater(); - } + const QString printerName = sender()->property(PRINTER_NAME).toString(); + qCDebug(PM_KDED) << "printing test page for" << printerName; + + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, request, &KCupsRequest::deleteLater); + request->printTestPage(printerName, false); } void NewPrinterNotification::findDriver() { - qCDebug(PM_KDED); + const QString printerName = sender()->property(PRINTER_NAME).toString(); + qCDebug(PM_KDED) << "find driver for" << printerName; + // This function will show the PPD browser dialog // to choose a better PPD to the already added printer - QStringList args; - args << "--change-ppd"; - args << sender()->property(PRINTER_NAME).toString(); - KToolInvocation::kdeinitExec(QLatin1String("kde-add-printer"), args); + KToolInvocation::kdeinitExec(QLatin1String("kde-add-printer"), { + QLatin1String("--change-ppd"), + printerName + }); } -void NewPrinterNotification::installDriver() -{ - qCDebug(PM_KDED); +void NewPrinterNotification::setupPrinterNotification(KNotification *notify, const QString &make, const QString &model, const QString &description, const QString &arg) +{ + // name is a URI, no queue was generated, because no suitable + // driver was found + notify->setTitle(i18n("Missing printer driver")); + if (!make.isEmpty() && !model.isEmpty()) { + notify->setText(i18n("No printer driver for %1 %2.", make, model)); + } else if (!description.isEmpty()) { + notify->setText(i18n("No printer driver for %1.", description)); + } else { + notify->setText(i18n("No driver for this printer.")); + } + + notify->setActions({ i18n("Search") }); + connect(notify, &KNotification::action1Activated, this, [notify, arg] () { + qCDebug(PM_KDED); + // This function will show the PPD browser dialog + // to choose a better PPD, queue name, location + // in this case the printer was not added + KToolInvocation::kdeinitExec(QLatin1String("kde-add-printer"), { + QLatin1String("--new-printer-from-device"), + arg + }); + }); + + notify->sendEvent(); } -void NewPrinterNotification::setupPrinter() +void NewPrinterNotification::getMissingExecutables(KNotification *notify, int status, const QString &name, const QString &ppdFileName) { - qCDebug(PM_KDED); - // This function will show the PPD browser dialog - // to choose a better PPD, queue name, location - // in this case the printer was not added - QStringList args; - args << "--new-printer-from-device"; - args << sender()->property(PRINTER_NAME).toString() % QLatin1Char('/') % sender()->property(DEVICE_ID).toString(); - KToolInvocation::kdeinitExec(QLatin1String("kde-add-printer"), args); -} - -QStringList NewPrinterNotification::getMissingExecutables(const QString &ppdFileName) const -{ - qCDebug(PM_KDED); - QDBusMessage message; - message = QDBusMessage::createMethodCall(QLatin1String("org.fedoraproject.Config.Printing"), - QLatin1String("/org/fedoraproject/Config/Printing"), - QLatin1String("org.fedoraproject.Config.Printing"), - QLatin1String("MissingExecutables")); + qCDebug(PM_KDED) << "get missing executables" << ppdFileName; + QDBusMessage message = QDBusMessage::createMethodCall( + QLatin1String("org.fedoraproject.Config.Printing"), + QLatin1String("/org/fedoraproject/Config/Printing"), + QLatin1String("org.fedoraproject.Config.Printing"), + QLatin1String("MissingExecutables")); message << ppdFileName; - QDBusReply reply = QDBusConnection::sessionBus().call(message); - if (!reply.isValid()) { - qCWarning(PM_KDED) << "Invalid reply" << reply.error(); - } - return reply; + + QDBusPendingReply reply = QDBusConnection::sessionBus().asyncCall(message); + auto watcher = new QDBusPendingCallWatcher(reply, this); + connect(watcher, &QDBusPendingCallWatcher::finished, this, [this, watcher, notify, status, name] () { + watcher->deleteLater(); + QDBusPendingReply reply = *watcher; + if (!reply.isValid()) { + qCWarning(PM_KDED) << "Invalid reply" << reply.error(); + notify->deleteLater(); + return; + } + + const QStringList missingExecutables = reply; + if (!missingExecutables.isEmpty()) { + // TODO check with PackageKit about missing drivers + qCWarning(PM_KDED) << "Missing executables:" << missingExecutables; + notify->deleteLater(); + return; + } else if (status == STATUS_SUCCESS) { + printerReadyNotification(notify, name); + } else { + // Model mismatch + checkPrinterCurrentDriver(notify, name); + } + }); } + +void NewPrinterNotification::checkPrinterCurrentDriver(KNotification *notify, const QString &name) +{ + // Get the new printer attributes + auto request = new KCupsRequest; + connect(request, &KCupsRequest::finished, this, [this, notify, name] (KCupsRequest *request) { + request->deleteLater(); + + QString driver; + // Get the new printer driver + if (!request->printers().isEmpty()){ + const KCupsPrinter &printer = request->printers().first(); + driver = printer.makeAndModel(); + } + + // The cups request might have failed + if (driver.isEmpty()) { + notify->setText(i18n("'%1' has been added, please check its driver.", name)); + notify->setActions({ i18n("Configure") }); + connect(notify, &KNotification::action1Activated, this, &NewPrinterNotification::configurePrinter); + } else { + notify->setText(i18n("'%1' has been added, using the '%2' driver.", name, driver)); + notify->setActions({ i18n("Print test page"), i18n("Find driver") }); + connect(notify, &KNotification::action1Activated, this, &NewPrinterNotification::printTestPage); + connect(notify, &KNotification::action2Activated, this, &NewPrinterNotification::findDriver); + } + notify->sendEvent(); + }); + request->getPrinterAttributes(name, false, { KCUPS_PRINTER_MAKE_AND_MODEL }); +} + +void NewPrinterNotification::printerReadyNotification(KNotification *notify, const QString &name) +{ + notify->setText(i18n("'%1' is ready for printing.", name)); + notify->setActions({ i18n("Print test page"), i18n("Configure") }); + connect(notify, &KNotification::action1Activated, this, &NewPrinterNotification::printTestPage); + connect(notify, &KNotification::action2Activated, this, &NewPrinterNotification::configurePrinter); + notify->sendEvent(); +} + +#include "moc_NewPrinterNotification.cpp" diff -Nru print-manager-17.12.3/print-manager-kded/NewPrinterNotification.h print-manager-18.04.3/print-manager-kded/NewPrinterNotification.h --- print-manager-17.12.3/print-manager-kded/NewPrinterNotification.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/print-manager-kded/NewPrinterNotification.h 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -21,35 +21,31 @@ #ifndef NEW_PRINTER_NOTIFICATION_H #define NEW_PRINTER_NOTIFICATION_H -#include -#include +#include +class KNotification; class NewPrinterNotification : public QObject, protected QDBusContext { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "com.redhat.NewPrinterNotification") public: - NewPrinterNotification(); + NewPrinterNotification(QObject *parent); ~NewPrinterNotification(); -public slots: +public: void GetReady(); void NewPrinter(int status, const QString &name, const QString &make, const QString &model, const QString &des, const QString &cmd); -private slots: - void init(); +private: bool registerService(); void configurePrinter(); - void searchDrivers(); void printTestPage(); void findDriver(); - void installDriver(); - void setupPrinter(); -private: - QStringList getMissingExecutables(const QString &ppdFileName) const; - QThread *m_thread; - QString m_destName; + void setupPrinterNotification(KNotification *notify, const QString &make, const QString &model, const QString &description, const QString &arg); + void getMissingExecutables(KNotification *notify, int status, const QString &name, const QString &ppdFileName); + void checkPrinterCurrentDriver(KNotification *notify, const QString &name); + void printerReadyNotification(KNotification *notify, const QString &name); }; #endif // NEW_PRINTER_NOTIFICATION_H diff -Nru print-manager-17.12.3/print-manager-kded/PrintManagerKded.cpp print-manager-18.04.3/print-manager-kded/PrintManagerKded.cpp --- print-manager-17.12.3/print-manager-kded/PrintManagerKded.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/print-manager-kded/PrintManagerKded.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -22,31 +22,16 @@ #include "NewPrinterNotification.h" -#include - -#include - -K_PLUGIN_FACTORY(PrintDFactory, registerPlugin();) - PrintManagerKded::PrintManagerKded(QObject *parent, const QVariantList &args) : - KDEDModule(parent), - m_newPrinterNotification(0) + KDEDModule(parent) { Q_UNUSED(args) - QTimer::singleShot(0, this, SLOT(loadThread())); + new NewPrinterNotification(this); } PrintManagerKded::~PrintManagerKded() { - if (m_newPrinterNotification) { - m_newPrinterNotification->deleteLater(); - } -} - -void PrintManagerKded::loadThread() -{ - m_newPrinterNotification = new NewPrinterNotification; } -#include "PrintManagerKded.moc" +#include "moc_PrintManagerKded.cpp" diff -Nru print-manager-17.12.3/print-manager-kded/PrintManagerKded.h print-manager-18.04.3/print-manager-kded/PrintManagerKded.h --- print-manager-17.12.3/print-manager-kded/PrintManagerKded.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/print-manager-kded/PrintManagerKded.h 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -22,22 +22,18 @@ #define PRINTMANAGERKDED_H #include +#include #include -class NewPrinterNotification; class PrintManagerKded : public KDEDModule { Q_OBJECT public: PrintManagerKded(QObject *parent, const QVariantList &args); ~PrintManagerKded(); - -private slots: - void loadThread(); - -private: - NewPrinterNotification *m_newPrinterNotification; }; +K_PLUGIN_FACTORY(PrintDFactory, registerPlugin();) + #endif // PRINTMANAGERKDED_H diff -Nru print-manager-17.12.3/print-manager-kded/printmanager.notifyrc print-manager-18.04.3/print-manager-kded/printmanager.notifyrc --- print-manager-17.12.3/print-manager-kded/printmanager.notifyrc 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/print-manager-kded/printmanager.notifyrc 2018-03-17 21:16:53.000000000 +0000 @@ -145,6 +145,7 @@ Name[zh_CN]=检测到一个新的打印机 Name[zh_TW]=偵測到新印表機 Action=Sound|Popup +Sound=KDE-Sys-App-Positive.ogg [Event/NewPrinterNotification] Name=The New Printer was added @@ -194,4 +195,4 @@ Name[x-test]=xxThe New Printer was addedxx Name[zh_CN]=添加了新打印机 Name[zh_TW]=新印表機已加入 -Action=Sound|Popup +Action=Popup diff -Nru print-manager-17.12.3/printqueue/main.cpp print-manager-18.04.3/printqueue/main.cpp --- print-manager-17.12.3/printqueue/main.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printqueue/main.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2012 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -32,16 +32,16 @@ int main(int argc, char **argv) { PrintQueue app(argc, argv); - app.setOrganizationDomain("org.kde"); + app.setOrganizationDomain(QLatin1String("org.kde")); - KAboutData about("PrintQueue", + KAboutData about(QLatin1String("PrintQueue"), i18n("Print Queue"), - PM_VERSION, + QLatin1String(PM_VERSION), i18n("Print Queue"), KAboutLicense::GPL, - i18n("(C) 2010-2013 Daniel Nicoletti")); + i18n("(C) 2010-2018 Daniel Nicoletti")); - about.addAuthor(QStringLiteral("Daniel Nicoletti"), QString(), "dantti12@gmail.com"); + about.addAuthor(QStringLiteral("Daniel Nicoletti"), QString(), QLatin1String("dantti12@gmail.com")); about.addAuthor(QStringLiteral("Lukáš Tinkl"), i18n("Port to Qt 5 / Plasma 5"), QStringLiteral("ltinkl@redhat.com")); KAboutData::setApplicationData(about); @@ -51,7 +51,7 @@ about.setupCommandLine(&parser); parser.addVersionOption(); parser.addHelpOption(); - parser.addPositionalArgument("queue", i18n("Show printer queue(s)")); + parser.addPositionalArgument(QLatin1String("queue"), i18n("Show printer queue(s)")); parser.process(app); about.processCommandLine(&parser); diff -Nru print-manager-17.12.3/printqueue/PrintQueue.cpp print-manager-18.04.3/printqueue/PrintQueue.cpp --- print-manager-17.12.3/printqueue/PrintQueue.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printqueue/PrintQueue.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -43,13 +43,13 @@ Q_UNUSED(cwd) if (!queues.isEmpty()) { - foreach (const QString & queue, queues) { + for (const QString &queue : queues) { showQueue(queue); } } else { qDebug() << "called with no args"; // If DBus called the ui list won't be empty - QTimer::singleShot(500, this, SLOT(removeQueue())); + QTimer::singleShot(500, this, &PrintQueue::removeQueue); } } @@ -60,12 +60,9 @@ // Reserve this since the CUPS call might take a long time m_uis[destName] = 0; - QStringList attr; - attr << KCUPS_PRINTER_NAME; - attr << KCUPS_PRINTER_TYPE; // Get destinations with these attributes QPointer request = new KCupsRequest; - request->getPrinters(attr); + request->getPrinters({ KCUPS_PRINTER_NAME, KCUPS_PRINTER_TYPE }); request->waitTillFinished(); if (!request) { return; @@ -73,10 +70,10 @@ bool found = false; KCupsPrinter printer; - KCupsPrinters printers = request->printers(); - for (int i = 0; i < printers.size(); i++) { - if (printers.at(i).name() == destName) { - printer = printers.at(i); + const KCupsPrinters printers = request->printers(); + for (const KCupsPrinter &printerItem : printers) { + if (printerItem.name() == destName) { + printer = printerItem; found = true; break; } @@ -84,7 +81,7 @@ request->deleteLater(); if (found) { - PrintQueueUi *ui = new PrintQueueUi(printer); + auto ui = new PrintQueueUi(printer); connect(ui, &PrintQueueUi::finished, this, &PrintQueue::removeQueue); ui->show(); m_uis[printer.name()] = ui; @@ -109,7 +106,7 @@ void PrintQueue::removeQueue() { - QWidget *ui = qobject_cast(sender()); + auto ui = qobject_cast(sender()); if (ui) { m_uis.remove(m_uis.key(ui)); } @@ -120,3 +117,5 @@ quit(); } } + +#include "moc_PrintQueue.cpp" diff -Nru print-manager-17.12.3/printqueue/PrintQueueUi.cpp print-manager-18.04.3/printqueue/PrintQueueUi.cpp --- print-manager-17.12.3/printqueue/PrintQueueUi.cpp 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printqueue/PrintQueueUi.cpp 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -32,10 +32,10 @@ #include #include #include -#include #include #include #include +#include #include #include @@ -48,10 +48,7 @@ PrintQueueUi::PrintQueueUi(const KCupsPrinter &printer, QWidget *parent) : QDialog(parent), ui(new Ui::PrintQueueUi), - m_destName(printer.name()), - m_preparingMenu(false), - m_printerPaused(false), - m_lastState(0) + m_destName(printer.name()) { ui->setupUi(this); @@ -92,7 +89,7 @@ m_printerIcon = printer.icon().pixmap(PRINTER_ICON_SIZE, PRINTER_ICON_SIZE); ui->iconL->setPixmap(m_printerIcon); - m_pauseIcon = KIconLoader::global()->loadIcon("media-playback-pause", + m_pauseIcon = KIconLoader::global()->loadIcon(QLatin1String("media-playback-pause"), KIconLoader::NoGroup, KIconLoader::SizeMedium, KIconLoader::DefaultState, @@ -116,28 +113,26 @@ ui->jobsView->setItemDelegate(new NoSelectionRectDelegate(this)); // sort by status column means the jobs will be sorted by the queue order ui->jobsView->sortByColumn(JobModel::ColStatus, Qt::AscendingOrder); - connect(ui->jobsView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), - this, SLOT(updateButtons())); + connect(ui->jobsView->selectionModel(), &QItemSelectionModel::selectionChanged, this, &PrintQueueUi::updateButtons); connect(ui->jobsView, &QTreeView::customContextMenuRequested, this, &PrintQueueUi::showContextMenu); ui->jobsView->header()->setContextMenuPolicy(Qt::CustomContextMenu); - connect(ui->jobsView->header(), SIGNAL(customContextMenuRequested(QPoint)), - this, SLOT(showHeaderContextMenu(QPoint))); + connect(ui->jobsView->header(), &QHeaderView::customContextMenuRequested, this, &PrintQueueUi::showHeaderContextMenu); QHeaderView *header = ui->jobsView->header(); - header->setResizeMode(QHeaderView::Interactive); + header->setSectionResizeMode(QHeaderView::Interactive); header->setStretchLastSection(false); - header->setResizeMode(JobModel::ColStatus, QHeaderView::ResizeToContents); - header->setResizeMode(JobModel::ColName, QHeaderView::Stretch); - header->setResizeMode(JobModel::ColUser, QHeaderView::ResizeToContents); - header->setResizeMode(JobModel::ColCreated, QHeaderView::ResizeToContents); - header->setResizeMode(JobModel::ColCompleted, QHeaderView::ResizeToContents); - header->setResizeMode(JobModel::ColPages, QHeaderView::ResizeToContents); - header->setResizeMode(JobModel::ColProcessed, QHeaderView::ResizeToContents); - header->setResizeMode(JobModel::ColSize, QHeaderView::ResizeToContents); - header->setResizeMode(JobModel::ColStatusMessage, QHeaderView::ResizeToContents); - header->setResizeMode(JobModel::ColPrinter, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColStatus, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColName, QHeaderView::Stretch); + header->setSectionResizeMode(JobModel::ColUser, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColCreated, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColCompleted, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColPages, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColProcessed, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColSize, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColStatusMessage, QHeaderView::ResizeToContents); + header->setSectionResizeMode(JobModel::ColPrinter, QHeaderView::ResizeToContents); - KConfigGroup printQueue(KSharedConfig::openConfig("print-manager"), "PrintQueue"); + KConfigGroup printQueue(KSharedConfig::openConfig(QLatin1String("print-manager")), "PrintQueue"); if (printQueue.hasKey("ColumnState")) { // restore the header state order header->restoreState(printQueue.readEntry("ColumnState", QByteArray())); @@ -151,50 +146,43 @@ } // This is emitted when a printer is modified - connect(KCupsConnection::global(), SIGNAL(printerModified(QString,QString,QString,uint,QString,bool)), this, - SLOT(updatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerModified, this, &PrintQueueUi::updatePrinter); // This is emitted when a printer has it's state changed - connect(KCupsConnection::global(), SIGNAL(printerStateChanged(QString,QString,QString,uint,QString,bool)), this, - SLOT(updatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerStateChanged, this, &PrintQueueUi::updatePrinter); // This is emitted when a printer is stopped - connect(KCupsConnection::global(), SIGNAL(printerStopped(QString,QString,QString,uint,QString,bool)), this, - SLOT(updatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerStopped, this, &PrintQueueUi::updatePrinter); // This is emitted when a printer is restarted - connect(KCupsConnection::global(), SIGNAL(printerRestarted(QString,QString,QString,uint,QString,bool)), this, - SLOT(updatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerRestarted, this, &PrintQueueUi::updatePrinter); // This is emitted when a printer is shutdown - connect(KCupsConnection::global(), SIGNAL(printerShutdown(QString,QString,QString,uint,QString,bool)), this, - SLOT(updatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerShutdown, this, &PrintQueueUi::updatePrinter); // This is emitted when a printer is removed - connect(KCupsConnection::global(), SIGNAL(printerDeleted(QString,QString,QString,uint,QString,bool)), this, - SLOT(updatePrinter(QString,QString,QString,uint,QString,bool))); + connect(KCupsConnection::global(), &KCupsConnection::printerDeleted, this, &PrintQueueUi::updatePrinter); // This is emitted when a printer/queue is changed // Deprecated stuff that works better than the above - connect(KCupsConnection::global(), SIGNAL(rhPrinterAdded(QString)), - this, SLOT(updatePrinter(QString))); + connect(KCupsConnection::global(), &KCupsConnection::rhPrinterAdded, this, &PrintQueueUi::updatePrinterByName); + connect(KCupsConnection::global(), &KCupsConnection::rhPrinterRemoved, this, &PrintQueueUi::updatePrinterByName); + connect(KCupsConnection::global(), &KCupsConnection::rhQueueChanged, this, &PrintQueueUi::updatePrinterByName); - connect(KCupsConnection::global(), SIGNAL(rhPrinterRemoved(QString)), - this, SLOT(updatePrinter(QString))); - - connect(KCupsConnection::global(), SIGNAL(rhQueueChanged(QString)), - this, SLOT(updatePrinter(QString))); - - updatePrinter(m_destName); + updatePrinterByName(m_destName); // Restore the dialog size - KConfigGroup configGroup(KSharedConfig::openConfig("print-manager"), "PrintQueue"); + KConfigGroup configGroup(KSharedConfig::openConfig(QLatin1String("print-manager")), "PrintQueue"); KWindowConfig::restoreWindowSize(windowHandle(), configGroup); + + auto delJobShortcut = new QShortcut(QKeySequence::Delete, ui->jobsView); + delJobShortcut->setContext(Qt::WidgetShortcut); + connect(delJobShortcut, &QShortcut::activated, this, &PrintQueueUi::cancelJob); } PrintQueueUi::~PrintQueueUi() { - KConfigGroup configGroup(KSharedConfig::openConfig("print-manager"), "PrintQueue"); + KConfigGroup configGroup(KSharedConfig::openConfig(QLatin1String("print-manager")), "PrintQueue"); // save the header state order configGroup.writeEntry("ColumnState", ui->jobsView->header()->saveState()); @@ -229,7 +217,7 @@ case KCupsPrinter::Idle: ui->statusL->setText(i18n("Printer ready")); ui->pausePrinterPB->setText(i18n("Pause Printer")); - ui->pausePrinterPB->setIcon(QIcon::fromTheme("media-playback-pause")); + ui->pausePrinterPB->setIcon(QIcon::fromTheme(QLatin1String("media-playback-pause"))); break; case KCupsPrinter::Printing: if (!m_title.isNull()) { @@ -240,14 +228,14 @@ ui->statusL->setText(i18n("Printing '%1'", jobTitle)); } ui->pausePrinterPB->setText(i18n("Pause Printer")); - ui->pausePrinterPB->setIcon(QIcon::fromTheme("media-playback-pause")); + ui->pausePrinterPB->setIcon(QIcon::fromTheme(QLatin1String("media-playback-pause"))); } break; case KCupsPrinter::Stopped: m_printerPaused = true; ui->statusL->setText(i18n("Printer paused")); ui->pausePrinterPB->setText(i18n("Resume Printer")); - ui->pausePrinterPB->setIcon(QIcon::fromTheme("media-playback-start")); + ui->pausePrinterPB->setIcon(QIcon::fromTheme(QLatin1String("media-playback-start"))); // create a paiter to paint the action icon over the key icon { QPainter painter(&icon); @@ -283,7 +271,8 @@ selection = m_proxyModel->mapSelectionToSource(ui->jobsView->selectionModel()->selection()); // if the selection is empty the user clicked on an empty space if (!selection.indexes().isEmpty()) { - foreach (const QModelIndex &index, selection.indexes()) { + const QModelIndexList indexes = selection.indexes(); + for (const QModelIndex &index : indexes) { if (index.column() == 0 && index.flags() & Qt::ItemIsDragEnabled) { // Found a move to item moveTo = true; @@ -293,24 +282,21 @@ // if we can move a job create the menu if (moveTo) { // context menu - QMenu *menu = new QMenu(this); + auto menu = new QMenu(this); // move to menu - QMenu *moveToMenu = new QMenu(i18n("Move to"), this); + auto moveToMenu = new QMenu(i18n("Move to"), this); // get printers we can move to QPointer request = new KCupsRequest; - QStringList attr; - attr << KCUPS_PRINTER_NAME; - attr << KCUPS_PRINTER_INFO; - request->getPrinters(attr); + request->getPrinters({ KCUPS_PRINTER_NAME, KCUPS_PRINTER_INFO }); request->waitTillFinished(); if (!request) { return; } - KCupsPrinters printers = request->printers(); + const KCupsPrinters printers = request->printers(); request->deleteLater(); - foreach (const KCupsPrinter &printer, printers) { + for (const KCupsPrinter &printer : printers) { // If there is a printer and it's not the current one add it // as a new destination if (printer.name() != m_destName) { @@ -337,12 +323,10 @@ { // Displays a menu containing the header name, and // a check box to indicate if it's being shown - QMenu *menu = new QMenu(this); + auto menu = new QMenu(this); for (int i = 0; i < m_proxyModel->columnCount(); i++) { - QAction *action; - QString name; - name = m_proxyModel->headerData(i, Qt::Horizontal, Qt::DisplayRole).toString(); - action = menu->addAction(name); + auto name = m_proxyModel->headerData(i, Qt::Horizontal, Qt::DisplayRole).toString(); + QAction *action = menu->addAction(name); action->setCheckable(true); action->setChecked(!ui->jobsView->header()->isSectionHidden(i)); action->setData(i); @@ -359,7 +343,7 @@ } } -void PrintQueueUi::updatePrinter(const QString &printer) +void PrintQueueUi::updatePrinterByName(const QString &printer) { qDebug() << printer << m_destName; if (printer != m_destName) { @@ -367,13 +351,14 @@ return; } - QStringList attr; - attr << KCUPS_PRINTER_INFO; - attr << KCUPS_PRINTER_TYPE; - attr << KCUPS_PRINTER_STATE; - attr << KCUPS_PRINTER_STATE_MESSAGE; + const QStringList attr({ + KCUPS_PRINTER_INFO, + KCUPS_PRINTER_TYPE, + KCUPS_PRINTER_STATE, + KCUPS_PRINTER_STATE_MESSAGE, + }); - KCupsRequest *request = new KCupsRequest; + auto request = new KCupsRequest; connect(request, &KCupsRequest::finished, this, &PrintQueueUi::getAttributesFinished); request->getPrinterAttributes(printer, m_isClass, attr); } @@ -388,12 +373,11 @@ Q_UNUSED(printerIsAcceptingJobs) qDebug() << printerName << printerStateReasons; - updatePrinter(printerName); + updatePrinterByName(printerName); } -void PrintQueueUi::getAttributesFinished() +void PrintQueueUi::getAttributesFinished(KCupsRequest *request) { - KCupsRequest *request = qobject_cast(sender()); qDebug() << request->hasError() << request->printers().isEmpty(); if (request->hasError() || request->printers().isEmpty()) { @@ -412,7 +396,7 @@ if (printer.info().isEmpty()) { m_title = printer.name(); } else { - m_title = printer.name() % QLatin1String(" - ") % printer.info(); + m_title = printer.name() + QLatin1String(" - ") + printer.info(); } // get printer-state @@ -451,7 +435,8 @@ selection = m_proxyModel->mapSelectionToSource(ui->jobsView->selectionModel()->selection()); // enable or disable the job action buttons if something is selected if (!selection.indexes().isEmpty()) { - foreach (const QModelIndex &index, selection.indexes()) { + const QModelIndexList indexes = selection.indexes(); + for (const QModelIndex &index : indexes) { if (index.column() == 0) { switch (static_cast(index.data(JobModel::RoleJobState).toInt())) { case IPP_JOB_CANCELED : @@ -486,7 +471,8 @@ QItemSelection selection; // we need to map the selection to source to get the real indexes selection = m_proxyModel->mapSelectionToSource(ui->jobsView->selectionModel()->selection()); - foreach (const QModelIndex &index, selection.indexes()) { + const QModelIndexList indexes = selection.indexes(); + for (const QModelIndex &index : indexes) { if (index.column() == 0) { KCupsRequest *request; request = m_model->modifyJob(index.row(), @@ -547,7 +533,7 @@ void PrintQueueUi::configurePrinter() { - QProcess::startDetached("configure-printer", {m_destName}); + QProcess::startDetached(QLatin1String("configure-printer"), {m_destName}); } void PrintQueueUi::cancelJob() @@ -594,26 +580,27 @@ // setup jobs buttons // cancel action - ui->cancelJobPB->setIcon(QIcon::fromTheme("dialog-cancel")); + ui->cancelJobPB->setIcon(QIcon::fromTheme(QLatin1String("dialog-cancel"))); // hold job action - ui->holdJobPB->setIcon(QIcon::fromTheme("document-open-recent")); + ui->holdJobPB->setIcon(QIcon::fromTheme(QLatin1String("document-open-recent"))); // resume job action // TODO we need a new icon - ui->resumeJobPB->setIcon(QIcon::fromTheme("media-playback-start")); + ui->resumeJobPB->setIcon(QIcon::fromTheme(QLatin1String("media-playback-start"))); - ui->reprintPB->setIcon(QIcon::fromTheme("view-refresh")); + ui->reprintPB->setIcon(QIcon::fromTheme(QLatin1String("view-refresh"))); - ui->whichJobsCB->setItemIcon(0, QIcon::fromTheme("view-filter")); - ui->whichJobsCB->setItemIcon(1, QIcon::fromTheme("view-filter")); - ui->whichJobsCB->setItemIcon(2, QIcon::fromTheme("view-filter")); + const QIcon viewFilterIcon = QIcon::fromTheme(QLatin1String("view-filter")); + ui->whichJobsCB->setItemIcon(0, viewFilterIcon); + ui->whichJobsCB->setItemIcon(1, viewFilterIcon); + ui->whichJobsCB->setItemIcon(2, viewFilterIcon); // stop start printer - ui->pausePrinterPB->setIcon(QIcon::fromTheme("media-playback-pause")); + ui->pausePrinterPB->setIcon(QIcon::fromTheme(QLatin1String("media-playback-pause"))); // configure printer - ui->configurePrinterPB->setIcon(QIcon::fromTheme("configure")); + ui->configurePrinterPB->setIcon(QIcon::fromTheme(QLatin1String("configure"))); } void PrintQueueUi::closeEvent(QCloseEvent *event) @@ -622,3 +609,5 @@ emit finished(); QWidget::closeEvent(event); } + +#include "moc_PrintQueueUi.cpp" diff -Nru print-manager-17.12.3/printqueue/PrintQueueUi.h print-manager-18.04.3/printqueue/PrintQueueUi.h --- print-manager-17.12.3/printqueue/PrintQueueUi.h 2018-02-06 22:14:26.000000000 +0000 +++ print-manager-18.04.3/printqueue/PrintQueueUi.h 2018-03-17 21:16:53.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Nicoletti * + * Copyright (C) 2010-2018 by Daniel Nicoletti * * dantti12@gmail.com * * * * This program is free software; you can redistribute it and/or modify * @@ -29,6 +29,7 @@ class PrintQueueUi; } +class KCupsRequest; class KCupsPrinter; class JobSortFilterModel; class JobModel; @@ -46,7 +47,7 @@ void update(); private slots: - void updatePrinter(const QString &printer); + void updatePrinterByName(const QString &printer); void updatePrinter(const QString &text, const QString &printerUri, const QString &printerName, @@ -66,7 +67,7 @@ void updateButtons(); void showContextMenu(const QPoint &point); void showHeaderContextMenu(const QPoint &point); - void getAttributesFinished(); + void getAttributesFinished(KCupsRequest *request); private: void closeEvent(QCloseEvent *event) Q_DECL_OVERRIDE; @@ -80,14 +81,14 @@ JobModel *m_model; QString m_destName; QString m_title; - bool m_isClass; - bool m_preparingMenu; QPixmap m_printerIcon; QPixmap m_pauseIcon; QPixmap m_startIcon; QPixmap m_warningIcon; - bool m_printerPaused; - char m_lastState; + char m_lastState = 0; + bool m_isClass; + bool m_preparingMenu = false; + bool m_printerPaused = false; }; #endif