Hello community, here is the log from the commit of package kmouth for openSUSE:Factory checked in at 2019-04-28 20:08:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kmouth (Old) and /work/SRC/openSUSE:Factory/.kmouth.new.5536 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kmouth" Sun Apr 28 20:08:05 2019 rev:93 rq:696287 version:19.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kmouth/kmouth.changes 2019-03-11 13:47:12.713348327 +0100 +++ /work/SRC/openSUSE:Factory/.kmouth.new.5536/kmouth.changes 2019-04-28 20:08:34.098600632 +0200 @@ -1,0 +2,31 @@ +Sat Apr 20 06:51:56 UTC 2019 - [email protected] + +- Update to 19.04.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.04.0.php +- Changes since 19.03.90: + * No code changes since 19.03.90 + +------------------------------------------------------------------- +Tue Apr 09 20:54:42 UTC 2019 - [email protected] + +- Update to 19.03.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/announce-applications-19.04-rc.php +- Changes since 19.03.80: + * No code changes since 19.03.80 + +------------------------------------------------------------------- +Wed Mar 27 06:41:04 UTC 2019 - [email protected] + +- Update to 19.03.80 + * New feature release + * For more details please see: + * https://kde.org/announcements/announce-applications-19.04-beta.php +- Changes since 18.12.3: + * Remove #include moc file + * Fix some clazy warning + +------------------------------------------------------------------- Old: ---- kmouth-18.12.3.tar.xz New: ---- kmouth-19.04.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kmouth.spec ++++++ --- /var/tmp/diff_new_pack.I7Ad0e/_old 2019-04-28 20:08:35.750599606 +0200 +++ /var/tmp/diff_new_pack.I7Ad0e/_new 2019-04-28 20:08:35.754599603 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kmouth -Version: 18.12.3 +Version: 19.04.0 Release: 0 Summary: Speech Synthesizer Frontend License: GPL-2.0-or-later ++++++ kmouth-18.12.3.tar.xz -> kmouth-19.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/CMakeLists.txt new/kmouth-19.04.0/CMakeLists.txt --- old/kmouth-18.12.3/CMakeLists.txt 2019-03-05 01:12:45.000000000 +0100 +++ new/kmouth-19.04.0/CMakeLists.txt 2019-04-12 02:07:23.000000000 +0200 @@ -11,12 +11,12 @@ include(FeatureSummary) set(QT_MIN_VERSION "5.9.0") -set(KF5_VERSION "5.46.0") +set(KF5_MIN_VERSION "5.46.0") find_package(Qt5 ${QT_MIN_VERSION} REQUIRED COMPONENTS Core PrintSupport TextToSpeech Xml Widgets) -find_package(ECM ${KF5_VERSION} NO_MODULE REQUIRED) +find_package(ECM ${KF5_MIN_VERSION} NO_MODULE REQUIRED) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) include(ECMAddAppIcon) @@ -26,7 +26,7 @@ include(ECMInstallIcons) include(ECMAddAppIcon) -find_package(KF5 ${KF5_VERSION} REQUIRED COMPONENTS +find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS Crash Completion Config diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/configwizard.cpp new/kmouth-19.04.0/configwizard.cpp --- old/kmouth-18.12.3/configwizard.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/configwizard.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -62,7 +62,7 @@ addPage(commandWidget); commandWidget->setFinalPage(true); } else - commandWidget = 0; + commandWidget = nullptr; } void ConfigWizard::initBookPage() @@ -75,10 +75,10 @@ bookWidget->setTitle(i18n("Initial Phrase Book")); addPage(bookWidget); bookWidget->setFinalPage(true); - if (commandWidget != 0) + if (commandWidget != nullptr) commandWidget->setFinalPage(false); } else - bookWidget = 0; + bookWidget = nullptr; } void ConfigWizard::initCompletion() @@ -98,7 +98,7 @@ } if (KSharedConfig::openConfig()->hasGroup("Completion")) { - completionWidget = 0; + completionWidget = nullptr; return; } @@ -108,31 +108,31 @@ addPage(completionWidget); completionWidget->setFinalPage(true); - if (commandWidget != 0) + if (commandWidget != nullptr) commandWidget->setFinalPage(false); - if (bookWidget != 0) + if (bookWidget != nullptr) bookWidget->setFinalPage(false); } else - completionWidget = 0; + completionWidget = nullptr; } void ConfigWizard::saveConfig() { - if (commandWidget != 0) { + if (commandWidget != nullptr) { commandWidget->ok(); commandWidget->saveOptions(QStringLiteral("TTS System")); } - if (bookWidget != 0) + if (bookWidget != nullptr) bookWidget->createBook(); - if (completionWidget != 0) + if (completionWidget != nullptr) completionWidget->ok(); } bool ConfigWizard::requestConfiguration() { - if (commandWidget != 0 || bookWidget != 0 || completionWidget != 0) + if (commandWidget != nullptr || bookWidget != nullptr || completionWidget != nullptr) return (exec() == QDialog::Accepted); else return false; @@ -140,7 +140,7 @@ bool ConfigWizard::configurationNeeded() { - return (commandWidget != 0 || bookWidget != 0 || completionWidget != 0); + return (commandWidget != nullptr || bookWidget != nullptr || completionWidget != nullptr); } void ConfigWizard::help() @@ -148,4 +148,3 @@ KHelpClient::invokeHelp(QStringLiteral("Wizard")); } -#include "configwizard.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/kmouth.cpp new/kmouth-19.04.0/kmouth.cpp --- old/kmouth-18.12.3/kmouth.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/kmouth.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -47,7 +47,7 @@ #include "optionsdialog.h" #include "configwizard.h" -KMouthApp::KMouthApp(QWidget* , const QString& name): KXmlGuiWindow(0) +KMouthApp::KMouthApp(QWidget* , const QString& name): KXmlGuiWindow(nullptr) { setWindowIcon(QIcon::fromTheme(QStringLiteral("kmouth"))); setObjectName(name); @@ -89,7 +89,7 @@ fileSaveAs->setEnabled(false); filePrint->setEnabled(false); - printer = 0; + printer = nullptr; } KMouthApp::~KMouthApp() @@ -273,7 +273,7 @@ // FIXME: KToolBar no longer has barPos() method. // cg.writeEntry("ToolBarPos", (int) toolBar("mainToolBar")->barPos()); - if (phraseList != 0) + if (phraseList != nullptr) phraseList->saveCompletionOptions(); optionsDialog->saveOptions(); KConfigGroup cg2(KSharedConfig::openConfig(), "mainToolBar"); @@ -322,7 +322,7 @@ toolBar(QStringLiteral("phrasebookBar"))->applySettings(KSharedConfig::openConfig()->group("phrasebookBar")); slotPhrasebookConfirmed(); - if (phraseList != 0) + if (phraseList != nullptr) phraseList->readCompletionOptions(); } @@ -373,11 +373,11 @@ { slotStatusMsg(i18n("Printing...")); - if (printer == 0) { + if (printer == nullptr) { printer = new QPrinter(); } - QPrintDialog *printDialog = new QPrintDialog(printer, 0); + QPrintDialog *printDialog = new QPrintDialog(printer, nullptr); if (printDialog->exec()) { phraseList->print(printer); @@ -525,4 +525,3 @@ return optionsDialog->getTTSSystem(); } -#include "kmouth.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/main.cpp new/kmouth-19.04.0/main.cpp --- old/kmouth-18.12.3/main.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/main.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -39,7 +39,7 @@ KAboutData aboutData(QStringLiteral("kmouth"), i18n("KMouth"), - QLatin1String(KMOUTH_VERSION), + QStringLiteral(KMOUTH_VERSION), i18n("A type-and-say front end for speech synthesizers"), KAboutLicense::GPL, i18n("(c) 2002/2003, Gunnar Schmi Dt"), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/optionsdialog.cpp new/kmouth-19.04.0/optionsdialog.cpp --- old/kmouth-18.12.3/optionsdialog.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/optionsdialog.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -155,7 +155,7 @@ pageGeneral->setIcon(QIcon::fromTheme(QStringLiteral("configure"))); addPage(pageGeneral); - completionWidget = new WordCompletionWidget(0, "Word Completion widget"); + completionWidget = new WordCompletionWidget(nullptr, "Word Completion widget"); KPageWidgetItem *pageCompletion = new KPageWidgetItem(completionWidget, i18n("Word Completion")); pageCompletion->setHeader(i18n("Word Completion")); pageCompletion->setIcon(QIcon::fromTheme(QStringLiteral("keyboard"))); @@ -221,4 +221,3 @@ return behaviourWidget->isSpeakImmediately(); } -#include "optionsdialog.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/org.kde.kmouth.appdata.xml new/kmouth-19.04.0/org.kde.kmouth.appdata.xml --- old/kmouth-18.12.3/org.kde.kmouth.appdata.xml 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/org.kde.kmouth.appdata.xml 2019-03-05 03:17:13.000000000 +0100 @@ -7,6 +7,7 @@ <name xml:lang="ca">KMouth</name> <name xml:lang="ca-valencia">KMouth</name> <name xml:lang="cs">KMouth</name> + <name xml:lang="da">KMouth</name> <name xml:lang="de">KMouth</name> <name xml:lang="el">KMouth</name> <name xml:lang="en-GB">KMouth</name> @@ -35,6 +36,7 @@ <summary xml:lang="ca">Frontal del sintetitzador de veu</summary> <summary xml:lang="ca-valencia">Frontal del sintetitzador de veu</summary> <summary xml:lang="cs">Rozhraní hlasového syntezátoru</summary> + <summary xml:lang="da">Talesyntese-brugerflade</summary> <summary xml:lang="de">Oberfläche für Sprachsynthesizer</summary> <summary xml:lang="el">Περιβάλλον χρήσης για σύνθσεη ομιλίας</summary> <summary xml:lang="en-GB">Speech Synthesiser Frontend</summary> @@ -64,6 +66,7 @@ </p> <p xml:lang="ca">El KMouth és un programa que habilita a les persones que no poden parlar a que ho faci el seu ordinador, p. ex. la gent muda o la gent que ha perdut la seva veu. Té un camp d'entrada de text i pronuncia les frases que s'introdueixen. També permet llibres de frases definits per l'usuari.</p> <p xml:lang="ca-valencia">El KMouth és un programa que habilita a les persones que no poden parlar a que ho faça el seu ordinador, p. ex. la gent muda o la gent que ha perdut la seua veu. Té un camp d'entrada de text i pronuncia les frases que s'introdueixen. També permet llibres de frases definits per l'usuari.</p> + <p xml:lang="da">KMouth er et program som gør det muligt for personer der ikke kan tale, at lade deres computer tale. F.eks. stumme personer som har mistet stemmen. Den har et tekstindtastningsfelt og læser de sætninger du skriver op. Det understøttes også brugerdefinerede frasebøger.</p> <p xml:lang="de">KMouth ist ein Programm, mit dem stumme Benutzer ihren Computer für sich sprechen lassen können. Es gibt ein Texteingabefeld, dessen Inhalt vorgelesen wird. Außerdem können benutzerdefinierte Textpassagenbücher benutzt werden.</p> <p xml:lang="el">Το KMouth είναι ένα πρόγραμμα που επιτρέπει σε άτομα χωρίς δυνατότητα ομιλίας να χρησιμοποιήσουν το πρόγραμμα ομιλίας του υπολογιστή, π.χ. άνθρωποι που έχουν χάσει τη φωνή τους. Έχει ένα πεδίο για είσοδο κειμένου και λέει τις προτάσεις που δίνετε. Έχει και υποστήριξη για βιβλιοθήκη φρασεολογίας ορισμένη από το χρήστη.</p> <p xml:lang="en-GB">KMouth is a program which enables persons that cannot speak to let their computer speak, e.g. mute people or people who have lost their voice. It has a text input field and speaks the sentences that you enter. It also has support for user defined phrasebooks.</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/phrasebook/phrasebook.cpp new/kmouth-19.04.0/phrasebook/phrasebook.cpp --- old/kmouth-18.12.3/phrasebook/phrasebook.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/phrasebook/phrasebook.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -303,7 +303,7 @@ } if (QFile::exists(url.toLocalFile())) { - if (KMessageBox::warningContinueCancel(0, QStringLiteral("<qt>%1</qt>").arg(i18n("The file %1 already exists. " + if (KMessageBox::warningContinueCancel(nullptr, QStringLiteral("<qt>%1</qt>").arg(i18n("The file %1 already exists. " "Do you want to overwrite it?", url.url())), i18n("File Exists"), KGuiItem(i18n("&Overwrite"))) == KMessageBox::Cancel) { return 0; } @@ -311,26 +311,26 @@ bool result; if (fdlg.selectedNameFilter() == QLatin1String("*.phrasebook")) { - if (url.fileName(0).contains(QLatin1Char('.')) == 0) { + if (url.fileName(nullptr).contains(QLatin1Char('.')) == 0) { url = url.adjusted(QUrl::RemoveFilename); - url.setPath(url.path() + url.fileName(0) + QStringLiteral(".phrasebook")); - } else if (url.fileName(0).rightRef(11).contains(QLatin1String(".phrasebook"), Qt::CaseInsensitive) == 0) { - int filetype = KMessageBox::questionYesNoCancel(0, QStringLiteral("<qt>%1</qt>").arg(i18n("Your chosen filename <i>%1</i> has a different extension than <i>.phrasebook</i>. " + url.setPath(url.path() + url.fileName(nullptr) + QStringLiteral(".phrasebook")); + } else if (url.fileName(nullptr).rightRef(11).contains(QLatin1String(".phrasebook"), Qt::CaseInsensitive) == 0) { + int filetype = KMessageBox::questionYesNoCancel(nullptr, QStringLiteral("<qt>%1</qt>").arg(i18n("Your chosen filename <i>%1</i> has a different extension than <i>.phrasebook</i>. " "Do you wish to add <i>.phrasebook</i> to the filename?", url.fileName())), i18n("File Extension"), KGuiItem(i18n("Add")), KGuiItem(i18n("Do Not Add"))); if (filetype == KMessageBox::Cancel) { return 0; } if (filetype == KMessageBox::Yes) { url = url.adjusted(QUrl::RemoveFilename); - url.setPath(url.path() + url.fileName(0) + QStringLiteral(".phrasebook")); + url.setPath(url.path() + url.fileName(nullptr) + QStringLiteral(".phrasebook")); } } result = save(url, true); } else if (fdlg.selectedNameFilter() == QLatin1String("*.txt")) { - if (url.fileName(0).rightRef(11).contains(QLatin1String(".phrasebook"), Qt::CaseInsensitive) == 0) { + if (url.fileName(nullptr).rightRef(11).contains(QLatin1String(".phrasebook"), Qt::CaseInsensitive) == 0) { result = save(url, false); } else { - int filetype = KMessageBox::questionYesNoCancel(0, QStringLiteral("<qt>%1</qt>").arg(i18n("Your chosen filename <i>%1</i> has the extension <i>.phrasebook</i>. " + int filetype = KMessageBox::questionYesNoCancel(nullptr, QStringLiteral("<qt>%1</qt>").arg(i18n("Your chosen filename <i>%1</i> has the extension <i>.phrasebook</i>. " "Do you wish to save in phrasebook format?", url.fileName())), i18n("File Extension"), KGuiItem(i18n("As Phrasebook")), KGuiItem(i18n("As Plain Text"))); if (filetype == KMessageBox::Cancel) { return 0; @@ -452,7 +452,7 @@ void PhraseBook::addToGUI(QMenu *popup, KToolBar *toolbar, KActionCollection *phrases, QObject *receiver, const char *slot) const { - if ((popup != 0) || (toolbar != 0)) { + if ((popup != nullptr) || (toolbar != nullptr)) { QStack<QWidget*> stack; QWidget *parent = popup; int level = 0; @@ -465,7 +465,7 @@ menu->setDelayed(false); if (parent == popup) toolbar->addAction(menu); - if (parent != 0) { + if (parent != nullptr) { parent->addAction(menu); stack.push(parent); } @@ -482,7 +482,7 @@ phrase.getShortcut(), receiver, slot, phrases); if (parent == popup) toolbar->addAction(action); - if (parent != 0) + if (parent != nullptr) parent->addAction(action); } else { Phrase phrase = (*it).getPhrase(); @@ -510,4 +510,3 @@ } } -#include "phrasebook.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/phrasebook/phrasebookdialog.cpp new/kmouth-19.04.0/phrasebook/phrasebookdialog.cpp --- old/kmouth-18.12.3/phrasebook/phrasebookdialog.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/phrasebook/phrasebookdialog.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -512,8 +512,8 @@ name = QStringLiteral("phrasebook_popup_nosel"); QMenu *popup = (QMenu *)factory()->container(name, this); - if (popup != 0) { - popup->popup(m_ui->treeView->mapToGlobal(pos), 0); + if (popup != nullptr) { + popup->popup(m_ui->treeView->mapToGlobal(pos), nullptr); } } @@ -553,7 +553,7 @@ const QMimeData *data = QApplication::clipboard()->mimeData(); QModelIndex index = m_ui->treeView->selectionModel()->currentIndex(); QStandardItem *item = m_bookModel->itemFromIndex(index); - while (item != NULL && !item->isDropEnabled()) + while (item != nullptr && !item->isDropEnabled()) item = item->parent(); QDomDocument document; document.setContent(data->text()); @@ -565,7 +565,7 @@ { QModelIndex currentIndex = m_ui->treeView->currentIndex(); QStandardItem *item = m_bookModel->itemFromIndex(currentIndex); - if (item != NULL && !item->isDropEnabled()) // If it's not a book + if (item != nullptr && !item->isDropEnabled()) // If it's not a book currentIndex = currentIndex.parent(); return currentIndex; } @@ -648,7 +648,7 @@ document.setContent(&file); QDomNode node = document.documentElement(); - QStandardItem *item = 0; + QStandardItem *item = nullptr; if (node.hasAttributes()) { // It has attributes, so add it directly item = deserializeBook(node, parentItem); @@ -702,4 +702,3 @@ // delete printDialog; //} -#include "phrasebookdialog.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/phraselist.cpp new/kmouth-19.04.0/phraselist.cpp --- old/kmouth-18.12.3/phraselist.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/phraselist.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -355,8 +355,8 @@ KMouthApp *theApp = (KMouthApp *) parentWidget(); KXMLGUIFactory *factory = theApp->factory(); QMenu *popup = (QMenu *)factory->container(name, theApp); - if (popup != 0) { - popup->exec(pos, 0); + if (popup != nullptr) { + popup->exec(pos, nullptr); } } @@ -502,4 +502,3 @@ KMessageBox::sorry(this, i18n("There was an error loading file\n%1", url.toDisplayString())); } -#include "phraselist.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ar/kmouth.po new/kmouth-19.04.0/po/ar/kmouth.po --- old/kmouth-18.12.3/po/ar/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ar/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2007-10-14 15:30+0000\n" "Last-Translator: Youssef Chahibi <[email protected]>\n" "Language-Team: <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/bg/kmouth.po new/kmouth-19.04.0/po/bg/kmouth.po --- old/kmouth-18.12.3/po/bg/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/bg/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2011-07-13 13:47+0300\n" "Last-Translator: Yasen Pramatarov <[email protected]>\n" "Language-Team: Bulgarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/bs/kmouth.po new/kmouth-19.04.0/po/bs/kmouth.po --- old/kmouth-18.12.3/po/bs/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/bs/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2013-10-18 20:22+0000\n" "Last-Translator: Samir Ribić <Unknown>\n" "Language-Team: Bosnian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ca/kmouth.po new/kmouth-19.04.0/po/ca/kmouth.po --- old/kmouth-18.12.3/po/ca/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ca/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-12-24 13:46+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ca@valencia/kmouth.po new/kmouth-19.04.0/po/ca@valencia/kmouth.po --- old/kmouth-18.12.3/po/ca@valencia/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ca@valencia/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-12-24 13:46+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" @@ -1369,3 +1369,67 @@ #, kde-format msgid "Performing spell check..." msgstr "S'està executant la verificació de l'ortografia..." + +#~ msgid "kmouth" +#~ msgstr "kmouth" + +#~ msgid "https://www.kde.org/applications/utilities/kmouth/" +#~ msgstr "https://www.kde.org/applications/utilities/kmouth/" + +#~ msgid "[email protected]" +#~ msgstr "[email protected]" + +#~ msgid "Jovie Speech Service" +#~ msgstr "Servei de sintetització Jovie" + +#~ msgid "KDE Text-to-Speech Daemon Configuration" +#~ msgstr "Configuració del dimoni de síntesi del KDE" + +#~ msgid "&Use Jovie speech service if possible" +#~ msgstr "&Usa el servei de síntesi Jovie si és possible" + +#~ msgid "Currently Selected Phrase or Phrase Book" +#~ msgstr "Frases o llibres de frases seleccionats actualment" + +#~ msgid " (%2 of 1 book selected)" +#~ msgid_plural " (%2 of %1 books selected)" +#~ msgstr[0] " (%2 d'1 llibre seleccionat)" +#~ msgstr[1] " (%2 de %1 llibres seleccionats)" + +#~ msgid "Prints the currently selected phrase(s) or phrase book(s)" +#~ msgstr "Imprimeix la frase(s) o llibre(s) de frases seleccionats actualment" + +#~ msgid "" +#~ "In order to use the '%1' key as a shortcut, it must be combined with the " +#~ "Win, Alt, Ctrl, and/or Shift keys." +#~ msgstr "" +#~ "Per tal d'usar la tecla «%1» com a drecera, ha de combinar-se amb les " +#~ "tecles Win, Alt, Ctrl, i/o Maj." + +#~ msgid "Invalid Shortcut Key" +#~ msgstr "Tecla de drecera no vàlida" + +#~ msgid "" +#~ "The '%1' key combination has already been allocated to %2.\n" +#~ "Please choose a unique key combination." +#~ msgstr "" +#~ "La combinació de tecles «%1» ja està assignada a %2.\n" +#~ "Trieu una combinació de tecles única." + +#~ msgid "the standard \"%1\" action" +#~ msgstr "l'acció estàndard «%1»" + +#~ msgid "Conflict with Standard Application Shortcut" +#~ msgstr "Conflicte amb una drecera d'aplicació estàndard" + +#~ msgid "the global \"%1\" action" +#~ msgstr "l'acció global «%1»" + +#~ msgid "Conflict with Global Shortcuts" +#~ msgstr "Conflicte amb una drecera global" + +#~ msgid "an other phrase" +#~ msgstr "una altra frase" + +#~ msgid "Key Conflict" +#~ msgstr "Conflicte de tecla" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/cs/kmouth.po new/kmouth-19.04.0/po/cs/kmouth.po --- old/kmouth-18.12.3/po/cs/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/cs/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2019-01-29 12:24+0100\n" "Last-Translator: Vit Pelcak <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/da/kmouth.po new/kmouth-19.04.0/po/da/kmouth.po --- old/kmouth-18.12.3/po/da/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/da/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-11-06 14:22+0200\n" "Last-Translator: scootergrisen\n" "Language-Team: Danish\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/de/kmouth.po new/kmouth-19.04.0/po/de/kmouth.po --- old/kmouth-18.12.3/po/de/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/de/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-11-01 17:01+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/el/kmouth.po new/kmouth-19.04.0/po/el/kmouth.po --- old/kmouth-18.12.3/po/el/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/el/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-09-21 11:16+0200\n" "Last-Translator: Stelios <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/en_GB/kmouth.po new/kmouth-19.04.0/po/en_GB/kmouth.po --- old/kmouth-18.12.3/po/en_GB/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/en_GB/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-11-26 15:23+0000\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/eo/kmouth.po new/kmouth-19.04.0/po/eo/kmouth.po --- old/kmouth-18.12.3/po/eo/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/eo/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2004-07-16 20:22GMT\n" "Last-Translator: David Anema <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/es/kmouth.po new/kmouth-19.04.0/po/es/kmouth.po --- old/kmouth-18.12.3/po/es/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/es/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -22,7 +22,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-10-10 12:54+0100\n" "Last-Translator: Eloy Cuadra <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/et/kmouth.po new/kmouth-19.04.0/po/et/kmouth.po --- old/kmouth-18.12.3/po/et/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/et/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2015-08-07 18:33+0300\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/eu/kmouth.po new/kmouth-19.04.0/po/eu/kmouth.po --- old/kmouth-18.12.3/po/eu/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/eu/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-08-30 14:30+0100\n" "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/fa/kmouth.po new/kmouth-19.04.0/po/fa/kmouth.po --- old/kmouth-18.12.3/po/fa/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/fa/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2007-06-10 15:32+0330\n" "Last-Translator: Nazanin Kazemi <[email protected]>\n" "Language-Team: Persian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/fi/kmouth.po new/kmouth-19.04.0/po/fi/kmouth.po --- old/kmouth-18.12.3/po/fi/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/fi/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-12-08 16:46+0200\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/fr/kmouth.po new/kmouth-19.04.0/po/fr/kmouth.po --- old/kmouth-18.12.3/po/fr/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/fr/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2018-07-30 17:25+0800\n" "Last-Translator: Simon Depiets <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ga/kmouth.po new/kmouth-19.04.0/po/ga/kmouth.po --- old/kmouth-18.12.3/po/ga/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ga/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdeaccessibility/kmouth.po\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell <[email protected]>\n" "Language-Team: Irish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/gl/kmouth.po new/kmouth-19.04.0/po/gl/kmouth.po --- old/kmouth-18.12.3/po/gl/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/gl/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" -"PO-Revision-Date: 2019-03-03 14:13+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" +"PO-Revision-Date: 2019-03-03 14:00+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" "Language: gl\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/he/kmouth.po new/kmouth-19.04.0/po/he/kmouth.po --- old/kmouth-18.12.3/po/he/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/he/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2014-01-03 17:29+0200\n" "Last-Translator: Diego Iastrubni <[email protected]>\n" "Language-Team: Hebrew <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/hi/kmouth.po new/kmouth-19.04.0/po/hi/kmouth.po --- old/kmouth-18.12.3/po/hi/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/hi/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2007-11-20 15:59+0530\n" "Last-Translator: Ravishankar Shrivastava <[email protected]>\n" "Language-Team: Hindi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/hr/kmouth.po new/kmouth-19.04.0/po/hr/kmouth.po --- old/kmouth-18.12.3/po/hr/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/hr/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2011-07-24 13:06+0200\n" "Last-Translator: Marko Dimjašević <[email protected]>\n" "Language-Team: Croatian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/hu/kmouth.po new/kmouth-19.04.0/po/hu/kmouth.po --- old/kmouth-18.12.3/po/hu/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/hu/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2011-04-15 21:32+0200\n" "Last-Translator: Kristóf Kiszel <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ia/kmouth.po new/kmouth-19.04.0/po/ia/kmouth.po --- old/kmouth-18.12.3/po/ia/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ia/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2018-09-21 22:50+0100\n" "Last-Translator: giovanni <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/is/kmouth.po new/kmouth-19.04.0/po/is/kmouth.po --- old/kmouth-18.12.3/po/is/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/is/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2009-07-28 20:08+0000\n" "Last-Translator: Sveinn í Felli <[email protected]>\n" "Language-Team: Icelandic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/it/kmouth.po new/kmouth-19.04.0/po/it/kmouth.po --- old/kmouth-18.12.3/po/it/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/it/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-08-16 23:56+0100\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ja/kmouth.po new/kmouth-19.04.0/po/ja/kmouth.po --- old/kmouth-18.12.3/po/ja/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ja/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2010-11-07 22:37-0800\n" "Last-Translator: Fumiaki Okushi <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" @@ -1368,8 +1368,3 @@ #, kde-format msgid "Performing spell check..." msgstr "スペルチェック中..." - -#, fuzzy -#~| msgid "KMouth" -#~ msgid "kmouth" -#~ msgstr "KMouth" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/kk/kmouth.po new/kmouth-19.04.0/po/kk/kmouth.po --- old/kmouth-18.12.3/po/kk/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/kk/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2013-04-13 03:03+0600\n" "Last-Translator: Sairan Kikkarin <[email protected]>\n" "Language-Team: Kazakh <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/km/kmouth.po new/kmouth-19.04.0/po/km/kmouth.po --- old/kmouth-18.12.3/po/km/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/km/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2009-06-03 15:22+0700\n" "Last-Translator: Khoem Sokhem <[email protected]>\n" "Language-Team: Khmer <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ko/kmouth.po new/kmouth-19.04.0/po/ko/kmouth.po --- old/kmouth-18.12.3/po/ko/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ko/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-12-03 11:59+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/lt/kmouth.po new/kmouth-19.04.0/po/lt/kmouth.po --- old/kmouth-18.12.3/po/lt/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/lt/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2015-01-03 20:22+0200\n" "Last-Translator: Mindaugas Baranauskas <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/lv/kmouth.po new/kmouth-19.04.0/po/lv/kmouth.po --- old/kmouth-18.12.3/po/lv/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/lv/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2009-05-16 09:01+0300\n" "Last-Translator: Viesturs Zariņš <[email protected]>\n" "Language-Team: Latvian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/mr/kmouth.po new/kmouth-19.04.0/po/mr/kmouth.po --- old/kmouth-18.12.3/po/mr/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/mr/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2013-03-30 15:33+0530\n" "Last-Translator: Chetan Khona <[email protected]>\n" "Language-Team: Marathi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/nb/kmouth.po new/kmouth-19.04.0/po/nb/kmouth.po --- old/kmouth-18.12.3/po/nb/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/nb/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2010-12-24 08:26+0100\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/nds/kmouth.po new/kmouth-19.04.0/po/nds/kmouth.po --- old/kmouth-18.12.3/po/nds/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/nds/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2011-02-16 09:49+0100\n" "Last-Translator: Manfred Wiese <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/nl/kmouth.po new/kmouth-19.04.0/po/nl/kmouth.po --- old/kmouth-18.12.3/po/nl/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/nl/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-08-16 21:47+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/nn/kmouth.po new/kmouth-19.04.0/po/nn/kmouth.po --- old/kmouth-18.12.3/po/nn/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/nn/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-09-03 18:02+0100\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/pa/kmouth.po new/kmouth-19.04.0/po/pa/kmouth.po --- old/kmouth-18.12.3/po/pa/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/pa/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2010-02-02 08:39+0530\n" "Last-Translator: A S Alam <[email protected]>\n" "Language-Team: ਪੰਜਾਬੀ <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/pl/kmouth.po new/kmouth-19.04.0/po/pl/kmouth.po --- old/kmouth-18.12.3/po/pl/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/pl/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-09-02 20:00+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/pt/kmouth.po new/kmouth-19.04.0/po/pt/kmouth.po --- old/kmouth-18.12.3/po/pt/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/pt/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2018-02-22 11:59+0000\n" "Last-Translator: Pedro Morais <[email protected]>\n" "Language-Team: pt <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/pt_BR/kmouth.po new/kmouth-19.04.0/po/pt_BR/kmouth.po --- old/kmouth-18.12.3/po/pt_BR/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/pt_BR/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2019-02-07 16:05-0200\n" "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ro/kmouth.po new/kmouth-19.04.0/po/ro/kmouth.po --- old/kmouth-18.12.3/po/ro/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ro/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2009-04-26 18:45+0300\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ru/kmouth.po new/kmouth-19.04.0/po/ru/kmouth.po --- old/kmouth-18.12.3/po/ru/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ru/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2019-01-20 11:48+0300\n" "Last-Translator: Alexander Yavorsky <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/sk/kmouth.po new/kmouth-19.04.0/po/sk/kmouth.po --- old/kmouth-18.12.3/po/sk/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/sk/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-08-18 20:24+0100\n" "Last-Translator: Roman Paholik <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/sl/kmouth.po new/kmouth-19.04.0/po/sl/kmouth.po --- old/kmouth-18.12.3/po/sl/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/sl/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2018-01-13 09:50+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/sr/kmouth.po new/kmouth-19.04.0/po/sr/kmouth.po --- old/kmouth-18.12.3/po/sr/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/sr/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/sv/kmouth.po new/kmouth-19.04.0/po/sv/kmouth.po --- old/kmouth-18.12.3/po/sv/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/sv/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-08-17 20:39+0100\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/tr/kmouth.po new/kmouth-19.04.0/po/tr/kmouth.po --- old/kmouth-18.12.3/po/tr/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/tr/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: kdeaccessibility-kde4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-10-02 12:44+0000\n" "Last-Translator: Kaan <[email protected]>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/kdeaccessibility-" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/ug/kmouth.po new/kmouth-19.04.0/po/ug/kmouth.po --- old/kmouth-18.12.3/po/ug/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/ug/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji <[email protected]>\n" "Language-Team: Uyghur Computer Science Association <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/uk/kmouth.po new/kmouth-19.04.0/po/uk/kmouth.po --- old/kmouth-18.12.3/po/uk/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/uk/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-08-16 10:56+0200\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/zh_CN/kmouth.po new/kmouth-19.04.0/po/zh_CN/kmouth.po --- old/kmouth-18.12.3/po/zh_CN/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/zh_CN/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" -"PO-Revision-Date: 2019-02-20 23:34\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" +"PO-Revision-Date: 2019-04-09 18:57\n" "Last-Translator: guoyunhe <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/po/zh_TW/kmouth.po new/kmouth-19.04.0/po/zh_TW/kmouth.po --- old/kmouth-18.12.3/po/zh_TW/kmouth.po 2019-03-05 01:12:44.000000000 +0100 +++ new/kmouth-19.04.0/po/zh_TW/kmouth.po 2019-04-12 02:07:22.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmouth\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:50+0100\n" +"POT-Creation-Date: 2018-09-22 03:51+0200\n" "PO-Revision-Date: 2017-09-27 08:38+0800\n" "Last-Translator: Jeff Huang <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/speech.cpp new/kmouth-19.04.0/speech.cpp --- old/kmouth-18.12.3/speech.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/speech.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -232,4 +232,3 @@ delete this; } -#include "speech.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/texttospeechsystem.cpp new/kmouth-19.04.0/texttospeechsystem.cpp --- old/kmouth-18.12.3/texttospeechsystem.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/texttospeechsystem.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -52,7 +52,7 @@ } if (codec < Speech::UseCodec) - (new Speech())->speak(ttsCommand, stdIn, text, language, codec, 0); + (new Speech())->speak(ttsCommand, stdIn, text, language, codec, nullptr); else (new Speech())->speak(ttsCommand, stdIn, text, language, Speech::UseCodec, codecList->at(codec - Speech::UseCodec)); @@ -109,4 +109,3 @@ } } -#include "texttospeechsystem.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/wordcompletion/dictionarycreationwizard.cpp new/kmouth-19.04.0/wordcompletion/dictionarycreationwizard.cpp --- old/kmouth-18.12.3/wordcompletion/dictionarycreationwizard.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/wordcompletion/dictionarycreationwizard.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -339,4 +339,3 @@ } } -#include "dictionarycreationwizard.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/wordcompletion/wordcompletion.cpp new/kmouth-19.04.0/wordcompletion/wordcompletion.cpp --- old/kmouth-18.12.3/wordcompletion/wordcompletion.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/wordcompletion/wordcompletion.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -252,5 +252,3 @@ } } -#include "wordcompletion.moc" - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/wordcompletion/wordcompletionwidget.cpp new/kmouth-19.04.0/wordcompletion/wordcompletionwidget.cpp --- old/kmouth-18.12.3/wordcompletion/wordcompletionwidget.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/wordcompletion/wordcompletionwidget.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -173,7 +173,7 @@ int row = dictionaryView->currentIndex().row(); const QStandardItem *nameItem = model->item(row, 0); - if (nameItem != 0) { + if (nameItem != nullptr) { removedDictionaryFiles += nameItem->data().toString(); qDeleteAll(model->takeRow(row)); } @@ -203,13 +203,13 @@ { const QStandardItem *nameItem = model->item(dictionaryView->currentIndex().row(), 0); - if (nameItem != 0) { + if (nameItem != nullptr) { QUrl url = QFileDialog::getSaveFileUrl(this, i18n("Export Dictionary")); if (url.isEmpty() || !url.isValid()) return; if (url.isLocalFile() && QFile::exists(url.toLocalFile())) { - if (KMessageBox::warningContinueCancel(0, QStringLiteral("<qt>%1</qt>").arg(i18n("The file %1 already exists. " + if (KMessageBox::warningContinueCancel(nullptr, QStringLiteral("<qt>%1</qt>").arg(i18n("The file %1 already exists. " "Do you want to overwrite it?", url.url())), i18n("File Exists"), KGuiItem(i18n("&Overwrite"))) == KMessageBox::Cancel) { return; } @@ -245,7 +245,7 @@ { const QStandardItem *nameItem = model->item(dictionaryView->currentIndex().row(), 0); - if (nameItem != 0) { + if (nameItem != nullptr) { QString old = nameItem->text(); if (old != text) { @@ -261,7 +261,7 @@ { const QStandardItem *languageItem = model->item(dictionaryView->currentIndex().row(), 1); - if (languageItem != 0) { + if (languageItem != nullptr) { QString old = languageItem->text(); QString text = languageButton->current(); @@ -273,4 +273,3 @@ } } -#include "wordcompletionwidget.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmouth-18.12.3/wordcompletion/wordlist.cpp new/kmouth-19.04.0/wordcompletion/wordlist.cpp --- old/kmouth-18.12.3/wordcompletion/wordlist.cpp 2019-02-25 07:32:53.000000000 +0100 +++ new/kmouth-19.04.0/wordcompletion/wordlist.cpp 2019-03-05 03:17:13.000000000 +0100 @@ -128,7 +128,7 @@ QProgressDialog *progressDialog() { QProgressDialog *pdlg = new QProgressDialog(i18n("Creating Word List"), i18n("Parsing the KDE documentation..."), 0, 100); - pdlg->setCancelButton(0); + pdlg->setCancelButton(nullptr); pdlg->setAutoReset(false); pdlg->setAutoClose(false); return pdlg; @@ -219,7 +219,7 @@ QFile file(filename); if (file.open(QIODevice::ReadOnly)) { QTextStream stream(&file); - Q_ASSERT(codec != 0); + Q_ASSERT(codec != nullptr); stream.setCodec(codec); while (!stream.atEnd()) addWords(map, stream.readLine());
