diff -Nru knotes-19.04.3/AUTHORS knotes-19.12.3/AUTHORS --- knotes-19.04.3/AUTHORS 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/AUTHORS 2020-03-01 09:54:33.000000000 +0000 @@ -41,7 +41,7 @@ danimo Dianiel Molkentin deller Helge Deller dfaure David Faure - djarvie David Jarvie + djarvie David Jarvie ereslibre Rafael Fernández López espen Espen Sand ettrich Matthias Ettrich diff -Nru knotes-19.04.3/CMakeLists.txt knotes-19.12.3/CMakeLists.txt --- knotes-19.04.3/CMakeLists.txt 2019-07-09 00:20:52.000000000 +0000 +++ knotes-19.12.3/CMakeLists.txt 2020-03-03 00:34:48.000000000 +0000 @@ -1,9 +1,10 @@ -set(KDEPIM_VERSION_NUMBER "5.11.3") +set(KDEPIM_VERSION_NUMBER "5.13.3") cmake_minimum_required(VERSION 3.5) project(knotes VERSION ${KDEPIM_VERSION_NUMBER}) +set(KDE_APPLICATIONS_VERSION "19.12.3") -set(KF5_MIN_VERSION "5.56.0") +set(KF5_MIN_VERSION "5.63.0") find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${knotes_SOURCE_DIR}/cmake/modules ${ECM_MODULE_PATH}) @@ -28,7 +29,7 @@ # Do NOT add quote -set(KDEPIM_DEV_VERSION ) +set(KDEPIM_DEV_VERSION) # add an extra space if(DEFINED KDEPIM_DEV_VERSION) @@ -37,23 +38,24 @@ -set(KDEPIM_VERSION "${KDEPIM_VERSION_NUMBER}${KDEPIM_DEV_VERSION}") +set(KDEPIM_VERSION "${KDEPIM_VERSION_NUMBER}${KDEPIM_DEV_VERSION} (${KDE_APPLICATIONS_VERSION})") set(KDEPIM_LIB_VERSION "${KDEPIM_VERSION_NUMBER}") set(KDEPIM_LIB_SOVERSION "5") -set(AKONADINOTES_LIB_VERSION "5.11.3") -set(AKONADI_VERSION "5.11.3") -set(CALENDARUTILS_LIB_VERSION "5.11.3") -set(KDEPIM_APPS_LIB_VERSION "5.11.3") -set(KONTACTINTERFACE_LIB_VERSION "5.11.3") -set(KPIMTEXTEDIT_LIB_VERSION "5.11.3") -set(LIBKDEPIM_LIB_VERSION "5.11.3") -set(KMIME_LIB_VERSION "5.11.3") -set(PIMCOMMON_LIB_VERSION "5.11.3") +set(AKONADINOTES_LIB_VERSION "5.13.3") +set(AKONADI_VERSION "5.13.3") +set(CALENDARUTILS_LIB_VERSION "5.13.3") +set(KDEPIM_APPS_LIB_VERSION "5.13.3") +set(KONTACTINTERFACE_LIB_VERSION "5.13.3") +set(KPIMTEXTEDIT_LIB_VERSION "5.13.3") +set(LIBKDEPIM_LIB_VERSION "5.13.3") +set(KMIME_LIB_VERSION "5.13.3") +set(PIMCOMMON_LIB_VERSION "5.13.3") +set(GRANTLEETHEME_LIB_VERSION "5.13.3") -set(QT_REQUIRED_VERSION "5.10.0") +set(QT_REQUIRED_VERSION "5.11.0") find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED DBus Network PrintSupport Test Widgets Xml) find_package(Qt5X11Extras NO_MODULE) find_package(Grantlee5 "5.1" CONFIG REQUIRED) @@ -80,7 +82,6 @@ find_package(KF5WindowSystem ${KF5_MIN_VERSION} CONFIG REQUIRED) find_package(KF5XmlGui ${KF5_MIN_VERSION} CONFIG REQUIRED) find_package(KF5Notifications ${KF5_MIN_VERSION} CONFIG REQUIRED) -find_package(KF5KDELibs4Support ${KF5_MIN_VERSION} CONFIG REQUIRED) # Find KdepimLibs Package @@ -92,10 +93,11 @@ find_package(KF5Mime ${KMIME_LIB_VERSION} CONFIG REQUIRED) find_package(KF5PimCommonAkonadi ${PIMCOMMON_LIB_VERSION} CONFIG REQUIRED) find_package(KF5PimTextEdit ${KPIMTEXTEDIT_LIB_VERSION} CONFIG REQUIRED) +find_package(KF5GrantleeTheme ${GRANTLEETHEME_LIB_VERSION} CONFIG REQUIRED) -find_package(KF5AkonadiSearch "5.11.3" CONFIG REQUIRED) -set_package_properties(KF5AkonadiSearch PROPERTIES DESCRIPTION "The Akonadi Search libraries" URL "http://www.kde.org" TYPE REQUIRED PURPOSE "Provides search capabilities in KMail and Akonadi") +find_package(KF5AkonadiSearch "5.13.3" CONFIG REQUIRED) +set_package_properties(KF5AkonadiSearch PROPERTIES DESCRIPTION "The Akonadi Search libraries" URL "https://kde.org/" TYPE REQUIRED PURPOSE "Provides search capabilities in KMail and Akonadi") if (NOT APPLE) find_package(X11) @@ -103,16 +105,19 @@ set(KDEPIM_HAVE_X11 ${X11_FOUND}) -add_definitions(-DQT_NO_URL_CAST_FROM_STRING) -add_definitions(-DQT_USE_QSTRINGBUILDER) set(CMAKE_MODULE_PATH ${knotes_SOURCE_DIR}/cmake/modules ${ECM_MODULE_PATH}) find_package(Xsltproc) set_package_properties(Xsltproc PROPERTIES DESCRIPTION "XSLT processor from libxslt" TYPE REQUIRED PURPOSE "Required to generate D-Bus interfaces for all Akonadi resources.") include_directories(${knotes_SOURCE_DIR} ${knotes_BINARY_DIR}) -#add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) +if (EXISTS "${CMAKE_SOURCE_DIR}/.git") + add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050e00) + add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054000) +endif() +add_definitions(-DQT_NO_FOREACH) +set(CMAKE_CXX_STANDARD 14) configure_file(knotes-version.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/knotes-version.h @ONLY) @@ -120,7 +125,7 @@ add_subdirectory(src) add_subdirectory(notesagent) -install( FILES knotes.categories knotes.renamecategories DESTINATION ${KDE_INSTALL_CONFDIR} ) +install(FILES knotes.categories knotes.renamecategories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}) add_subdirectory(doc) feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -Nru knotes-19.04.3/debian/changelog knotes-19.12.3/debian/changelog --- knotes-19.04.3/debian/changelog 2020-03-23 18:16:13.000000000 +0000 +++ knotes-19.12.3/debian/changelog 2020-04-11 12:58:49.000000000 +0000 @@ -1,3 +1,9 @@ +knotes (4:19.12.3-0ubuntu1) focal; urgency=medium + + * New upstream release (19.12.3) + + -- Rik Mills Sat, 11 Apr 2020 13:58:49 +0100 + knotes (4:19.04.3-0ubuntu2) focal; urgency=medium * No-change rebuild for libgcc-s1 package name change. diff -Nru knotes-19.04.3/debian/control knotes-19.12.3/debian/control --- knotes-19.04.3/debian/control 2019-07-23 17:55:35.000000000 +0000 +++ knotes-19.12.3/debian/control 2020-04-11 12:58:49.000000000 +0000 @@ -8,7 +8,7 @@ Michael Meskes , George Kiagiadakis , Eshat Cakar , - Maximiliano Curia + Maximiliano Curia , Build-Depends: cmake (>= 2.8.12~), debhelper (>= 9), extra-cmake-modules (>= 5.31.0~), @@ -18,46 +18,47 @@ libboost-graph-dev (>= 1.40.0-2), libgpgme11-dev, libgrantlee5-dev (>= 5.0.0~), - libkf5akonadi-dev (>= 4:19.04.3~), - libkf5akonadinotes-dev (>= 4:19.04.3~), - libkf5akonadisearch-dev (>= 4:19.04.3~), - libkf5akonadiserver-dev (>= 4:19.04.3~), + libkf5akonadi-dev (>= 4:19.12.3~), + libkf5akonadinotes-dev (>= 4:19.12.3~), + libkf5akonadisearch-dev (>= 4:19.12.3~), + libkf5akonadiserver-dev (>= 4:19.12.3~), libkf5archive-dev (>= 5.31.0~), libkf5auth-dev (>= 5.31.0~), - libkf5calendarcore-dev (>= 4:19.04.3~), - libkf5calendarutils-dev (>= 4:19.04.3~), + libkf5calendarcore-dev (>= 4:19.08.3~), + libkf5calendarutils-dev (>= 4:19.12.3~), libkf5codecs-dev (>= 5.31.0~), libkf5completion-dev (>= 5.31.0~), libkf5config-dev (>= 5.31.0~), - libkf5contacteditor-dev (>= 4:19.04.3~), + libkf5contacteditor-dev (>= 4:19.12.3~), libkf5coreaddons-dev (>= 5.31.0~), libkf5crash-dev (>= 5.31.0~), libkf5dbusaddons-dev (>= 5.31.0~), libkf5dnssd-dev (>= 5.31.0~), libkf5doctools-dev (>= 5.31.0~), - libkf5followupreminder-dev (>= 4:19.04.3~), + libkf5followupreminder-dev (>= 4:19.12.3~), libkf5globalaccel-dev (>= 5.31.0~), + libkf5grantleetheme-dev (>= 19.12.3~), libkf5i18n-dev (>= 5.31.0~), libkf5iconthemes-dev (>= 5.31.0~), libkf5itemviews-dev (>= 5.31.0~), libkf5kcmutils-dev (>= 5.31.0~), libkf5kdelibs4support-dev (>= 5.31.0~), libkf5khtml-dev (>= 5.31.0~), - libkf5kontactinterface-dev (>= 19.04.3~), - libkf5libkdepim-dev (>= 4:19.04.3~), - libkf5mime-dev (>= 19.04.3~), - libkf5mimetreeparser-dev (>= 4:19.04.3~), + libkf5kontactinterface-dev (>= 19.12.3~), + libkf5libkdepim-dev (>= 4:19.12.3~), + libkf5mime-dev (>= 19.12.3~), + libkf5mimetreeparser-dev (>= 4:19.12.3~), libkf5newstuff-dev (>= 5.31.0~), libkf5notifyconfig-dev (>= 5.31.0~), - libkf5pimcommon-dev (>= 4:19.04.3~), - libkf5pimtextedit-dev (>= 19.04.3~), + libkf5pimcommon-dev (>= 4:19.12.3~), + libkf5pimtextedit-dev (>= 19.12.3~), libkf5service-dev (>= 5.31.0~), libkf5sonnet-dev (>= 5.31.0~), - libkf5templateparser-dev (>= 4:19.04.3~), + libkf5templateparser-dev (>= 4:19.12.3~), libkf5texteditor-dev (>= 5.31.0~), libkf5textwidgets-dev (>= 5.31.0~), libkf5wallet-dev (>= 5.31.0~), - libkf5webengineviewer-dev (>= 4:19.04.3~), + libkf5webengineviewer-dev (>= 4:19.12.3~), libkf5webkit-dev (>= 5.31.0~), libkf5widgetsaddons-dev (>= 5.31.0~), libkf5windowsystem-dev (>= 5.31.0~), @@ -91,7 +92,7 @@ libkf5akonadisearch-bin, libkf5akonadisearch-plugins, ${misc:Depends}, - ${shlibs:Depends} + ${shlibs:Depends}, Breaks: kdepim-doc (<< 4:16.12.0), knode (<< 4:4.14.5), ${kde-l10n:all} Replaces: kdepim-doc (<< 4:16.12.0), knode (<< 4:4.14.5), ${kde-l10n:all} Description: sticky notes application diff -Nru knotes-19.04.3/HACKING knotes-19.12.3/HACKING --- knotes-19.04.3/HACKING 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/HACKING 2020-03-01 09:54:33.000000000 +0000 @@ -1,10 +1,9 @@ Coding Style ============ - KNotes conforms to the KDEPIM Coding Standard: - - http://kdepim.kde.org/development/coding.php + KNotes conforms to the KDE Frameworks coding standards: + https://techbase.kde.org/Policies/Frameworks_Coding_Style Rules ===== diff -Nru knotes-19.04.3/notesagent/akonadi_notes_agent.notifyrc knotes-19.12.3/notesagent/akonadi_notes_agent.notifyrc --- knotes-19.04.3/notesagent/akonadi_notes_agent.notifyrc 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/notesagent/akonadi_notes_agent.notifyrc 2020-03-01 09:54:33.000000000 +0000 @@ -1,5 +1,5 @@ [Global] -IconName=notes +IconName=knotes Comment=Notes Agent Comment[ar]=وكيل ملاحظات Comment[bs]=Agent za bilješke @@ -45,6 +45,7 @@ Name[bs]=Primljena bilješka Name[ca]=S'ha rebut una nota Name[ca@valencia]=S'ha rebut una nota +Name[cs]=Přijata poznámka Name[da]=Modtog en note Name[de]=Notiz erhalten Name[el]=Λήψη σημείωσης @@ -78,4 +79,4 @@ Name[zh_CN]=收到一则便笺 Name[zh_TW]=接收到一張便條 Action=Popup - +Urgency=Normal diff -Nru knotes-19.04.3/notesagent/notesagent.cpp knotes-19.12.3/notesagent/notesagent.cpp --- knotes-19.04.3/notesagent/notesagent.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/notesagent/notesagent.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -119,7 +119,8 @@ { QPointer dialog = new NotesAgentSettingsDialog; if (windowId) { - KWindowSystem::setMainWindow(dialog, windowId); + dialog->setAttribute(Qt::WA_NativeWindow, true); + KWindowSystem::setMainWindow(dialog->windowHandle(), windowId); } if (dialog->exec()) { mNotesManager->load(); diff -Nru knotes-19.04.3/notesagent/notesmanager.cpp knotes-19.12.3/notesagent/notesmanager.cpp --- knotes-19.04.3/notesagent/notesmanager.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/notesagent/notesmanager.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -39,11 +39,9 @@ #include #include -#include #include #include -#include #include #include @@ -137,14 +135,14 @@ { QDateTime from = NoteShared::NoteSharedGlobalConfig::self()->alarmsLastChecked().addSecs(1); if (!from.isValid()) { - from.setTime_t(0); + from.setSecsSinceEpoch(0); } const QDateTime now = QDateTime::currentDateTime(); NoteShared::NoteSharedGlobalConfig::self()->setAlarmsLastChecked(now); Akonadi::Item::List lst; - Q_FOREACH (const Akonadi::Item &item, mListItem) { + for (const Akonadi::Item &item : qAsConst(mListItem)) { const NoteShared::NoteAlarmAttribute *attrAlarm = item.attribute(); if (attrAlarm) { if (attrAlarm->dateTime() < QDateTime::currentDateTime()) { diff -Nru knotes-19.04.3/noteshared/src/alarms/notealarmdialog.cpp knotes-19.12.3/noteshared/src/alarms/notealarmdialog.cpp --- knotes-19.04.3/noteshared/src/alarms/notealarmdialog.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/noteshared/src/alarms/notealarmdialog.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -99,7 +99,7 @@ layout->addWidget(at); d->m_buttons->addButton(label_at, 1); - connect(d->m_buttons, QOverload::of(&QButtonGroup::buttonClicked), this, &NoteAlarmDialog::slotButtonChanged); + connect(d->m_buttons, qOverload(&QButtonGroup::buttonClicked), this, &NoteAlarmDialog::slotButtonChanged); connect(okButton, &QPushButton::clicked, this, &NoteAlarmDialog::accept); d->m_buttons->button(0)->setChecked(true); slotButtonChanged(d->m_buttons->checkedId()); diff -Nru knotes-19.04.3/noteshared/src/attributes/notedisplayattribute.cpp knotes-19.12.3/noteshared/src/attributes/notedisplayattribute.cpp --- knotes-19.04.3/noteshared/src/attributes/notedisplayattribute.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/noteshared/src/attributes/notedisplayattribute.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -74,9 +74,7 @@ void NoteDisplayAttribute::deserialize(const QByteArray &data) { QDataStream s(data); -#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0) s.setVersion(QDataStream::Qt_5_11); -#endif s >> mFont; s >> mTitleFont; s >> mBackgroundColor; @@ -98,9 +96,7 @@ { QByteArray result; QDataStream s(&result, QIODevice::WriteOnly); -#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0) s.setVersion(QDataStream::Qt_5_11); -#endif s << mFont; s << mTitleFont; s << mBackgroundColor; diff -Nru knotes-19.04.3/noteshared/src/job/createnewnotejob.cpp knotes-19.12.3/noteshared/src/job/createnewnotejob.cpp --- knotes-19.04.3/noteshared/src/job/createnewnotejob.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/noteshared/src/job/createnewnotejob.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -141,7 +141,7 @@ Akonadi::Collection col = fetchCollection->collections().at(0); if (col.isValid()) { if (!col.hasAttribute()) { - if (KMessageBox::Yes == KMessageBox::warningYesNo(nullptr, i18n("Collection is hidden. New note will stored but not displaying. Do you want to show collection?"))) { + if (KMessageBox::Yes == KMessageBox::warningYesNo(nullptr, i18n("Collection is hidden. New note will be stored but not displayed. Do you want to show collection?"))) { col.addAttribute(new NoteShared::ShowFolderNotesAttribute()); Akonadi::CollectionModifyJob *job = new Akonadi::CollectionModifyJob(col); connect(job, &Akonadi::CollectionModifyJob::result, this, &CreateNewNoteJob::slotCollectionModifyFinished); diff -Nru knotes-19.04.3/noteshared/src/network/notesnetworkreceiver.cpp knotes-19.12.3/noteshared/src/network/notesnetworkreceiver.cpp --- knotes-19.04.3/noteshared/src/network/notesnetworkreceiver.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/noteshared/src/network/notesnetworkreceiver.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -92,7 +92,7 @@ // Setup the communications connect(d->m_sock, &QTcpSocket::readyRead, this, &NotesNetworkReceiver::slotDataAvailable); connect(d->m_sock, &QTcpSocket::disconnected, this, &NotesNetworkReceiver::slotConnectionClosed); - connect(d->m_sock, QOverload::of(&QTcpSocket::error), this, &NotesNetworkReceiver::slotError); + connect(d->m_sock, qOverload(&QTcpSocket::error), this, &NotesNetworkReceiver::slotError); // Setup the timer d->m_timer = new QTimer(this); diff -Nru knotes-19.04.3/noteshared/src/network/notesnetworksender.cpp knotes-19.12.3/noteshared/src/network/notesnetworksender.cpp --- knotes-19.04.3/noteshared/src/network/notesnetworksender.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/noteshared/src/network/notesnetworksender.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -49,7 +49,7 @@ QObject::connect(m_socket, &QTcpSocket::connected, this, &NotesNetworkSender::slotConnected); - QObject::connect(m_socket, QOverload::of(&QTcpSocket::error), + QObject::connect(m_socket, qOverload(&QTcpSocket::error), this, &NotesNetworkSender::slotError); QObject::connect(m_socket, &QTcpSocket::disconnected, diff -Nru knotes-19.04.3/noteshared/src/resources/metatype.h knotes-19.12.3/noteshared/src/resources/metatype.h --- knotes-19.04.3/noteshared/src/resources/metatype.h 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/noteshared/src/resources/metatype.h 2020-03-01 09:54:33.000000000 +0000 @@ -19,7 +19,6 @@ #ifndef POP3_METATYPE_H #define POP3_METATYPE_H -#include #include #include diff -Nru knotes-19.04.3/noteshared/src/widget/notelistwidget.cpp knotes-19.12.3/noteshared/src/widget/notelistwidget.cpp --- knotes-19.04.3/noteshared/src/widget/notelistwidget.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/noteshared/src/widget/notelistwidget.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -70,7 +70,7 @@ { clear(); d->mNotes = notes; - Q_FOREACH (const Akonadi::Item ¬e, d->mNotes) { + for (const Akonadi::Item ¬e : qAsConst(d->mNotes)) { createItem(note); } } @@ -96,8 +96,9 @@ Akonadi::Item::List NoteListWidget::selectedNotes() const { Akonadi::Item::List lst; - Q_FOREACH (QListWidgetItem *item, selectedItems()) { - Akonadi::Item::Id akonadiId = item->data(AkonadiId).toLongLong(); + const auto lstItems = selectedItems(); + for (QListWidgetItem *item : lstItems) { + const Akonadi::Item::Id akonadiId = item->data(AkonadiId).toLongLong(); if (akonadiId != -1) { lst.append(Akonadi::Item(akonadiId)); } diff -Nru knotes-19.04.3/po/ar/akonadi_notes_agent.po knotes-19.12.3/po/ar/akonadi_notes_agent.po --- knotes-19.04.3/po/ar/akonadi_notes_agent.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ar/akonadi_notes_agent.po 2020-03-03 00:34:39.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2018-01-23 16:18+0300\n" "Last-Translator: Safa Alfulaij \n" "Language-Team: Arabic \n" @@ -112,7 +112,7 @@ msgid "Your emails" msgstr "safa1996alfulaij@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "استُلِمت ملاحظة" diff -Nru knotes-19.04.3/po/ar/knotes.po knotes-19.12.3/po/ar/knotes.po --- knotes-19.04.3/po/ar/knotes.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ar/knotes.po 2020-03-03 00:34:39.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-01-31 14:37+0300\n" "Last-Translator: Safa Alfulaij \n" "Language-Team: Arabic \n" @@ -312,22 +312,22 @@ msgid "Rename note" msgstr "غيّر اسم الملاحظة" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "اعرض عدد الملاحظات في أيقونة الصّينيّة" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "العنوان المبدئيّ:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "كيف يعمل هذا؟" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

You can customize title note. You can use:

  • %d current date " @@ -338,12 +338,12 @@ "\"rtl\">‎%d التّاريخ الحاليّ (النّسق القصير)
  • ‎%l التّاريخ " "الحاليّ (النّسق الطّويل)
  • ‎%t الوقت الحاليّ
" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "السّمة:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "نزّل سمات طباعة جديدة" @@ -658,32 +658,32 @@ msgid "Preferences KNotes..." msgstr "تفضيلات «ملاحظاتك»..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "أبرِد..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "أرسل..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "اضبط تنبيهًا...." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "احفظ كَ‍..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "اقفل" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "أزِل القفل" @@ -762,12 +762,12 @@ msgid "Plain text (*.txt)" msgstr "نصّ صِرف (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "احفظ كَ‍" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
Are you sure you want to " @@ -943,92 +943,92 @@ msgid "Read Popup Note: \"%1\"" msgstr "اقرأ الملاحظة المنبثقة: ”%1“" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "أمتأكّد من حذف الملاحظة %1؟" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "أكّد الحذف" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "ا&حذف" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "رجاءً أدخِل الاسم الجديد:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "احفظ الملاحظة كنصّ صِرف" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&كلّ أسطح المكتب" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "جديد" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "غيّر الاسم..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "أخفِ" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "احذف" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "التّفضيلات..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "أبقها فوق غيرها" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "أبقها تحت غيرها" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "إلى سطح المكتب" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "تنقّل بين الملاحظات" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "المنبّه:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "الملاحظة مُقفلة" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1039,12 +1039,12 @@ msgstr[4] "اطبع %1 ملاحظة" msgstr[5] "اطبع %1 ملاحظة" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "لم يُعثر على سمة الطّباعة." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "خطأ في الطّباعة" diff -Nru knotes-19.04.3/po/ar/libnoteshared.po knotes-19.12.3/po/ar/libnoteshared.po --- knotes-19.04.3/po/ar/libnoteshared.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ar/libnoteshared.po 2020-03-03 00:34:39.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2018-01-31 19:46+0300\n" "Last-Translator: Safa Alfulaij \n" "Language-Team: Arabic \n" @@ -98,9 +98,12 @@ msgstr "حدث خطأ أثناء الجلب. أتريد اختيار تجميعة مبدئيّة جديدة؟" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "التّجميعة مخفيّة. ستُخزّن الملاحظة الجديدة ولكنّها لن تُعرض. أتريد عرض التّجميعة؟" diff -Nru knotes-19.04.3/po/bg/knotes.po knotes-19.12.3/po/bg/knotes.po --- knotes-19.04.3/po/bg/knotes.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/bg/knotes.po 2020-03-03 00:34:39.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2014-05-12 21:37+0200\n" "Last-Translator: Svetoslav Stefanov \n" "Language-Team: Bulgarian \n" @@ -319,22 +319,22 @@ msgid "Rename note" msgstr "Преименуване на бележка" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Показване броят на бележките в иконата в системния панел" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Стандартно име:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Как работи това?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

You can customize title note. You can use:

  • %d current date " @@ -342,12 +342,12 @@ "time
" msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Тема:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Изтегляне на нови теми за печат" @@ -672,32 +672,32 @@ msgid "Preferences KNotes..." msgstr "Настройване..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Поща..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Изпращане..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Задаване на аларма..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Запис като..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Заключване" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Отключване" @@ -784,12 +784,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Запис като" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
Are you sure you want to " @@ -981,105 +981,105 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "" "Сигурни ли сте, че искате да бъде изтрита бележката %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Потвърждаване на изтриването" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Изтриване" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Моля, въведете ново име:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Запис на бележката като обикновен текст" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Всички работни плотове" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Нова" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Преименуване..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Скриване" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Изтриване" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Настройване..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "На преден план" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "На заден план" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Преместване към" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Преглед на бележките" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Аларма:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Бележката е заключена" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Печат на бележка" msgstr[1] "Печат на %1 бележки" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Темата за печат не е открита." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Грешка при печат" diff -Nru knotes-19.04.3/po/bs/akonadi_notes_agent.po knotes-19.12.3/po/bs/akonadi_notes_agent.po --- knotes-19.04.3/po/bs/akonadi_notes_agent.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/bs/akonadi_notes_agent.po 2020-03-03 00:34:39.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: $2\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2014-02-01 00:32+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: none\n" @@ -113,7 +113,7 @@ msgid "Your emails" msgstr "samir.ribic@etf.unsa.ba" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Poruka primljena" diff -Nru knotes-19.04.3/po/bs/knotes.po knotes-19.12.3/po/bs/knotes.po --- knotes-19.04.3/po/bs/knotes.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/bs/knotes.po 2020-03-03 00:34:39.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2014-02-08 00:15+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosanski \n" @@ -323,23 +323,23 @@ msgid "Rename note" msgstr "Izaberi bilješke" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "Podrazumjevana &širina:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Kako ovo radi?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, fuzzy, kde-format #| msgid "" #| "

You can customize command line. You can use:

  • %t returns " @@ -353,12 +353,12 @@ "vraća trenutni naslov bilješke
  • %f vraća trenutni tekst zabilješke
" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Preuzmi nove teme štampe" @@ -683,32 +683,32 @@ msgid "Preferences KNotes..." msgstr "Postavke..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Pošalji..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Promijeni ime..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Postavi alarm..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Snimi kao" -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Zaključaj" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Otključaj" @@ -793,12 +793,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Snimi kao" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
Are you sure you want to " @@ -989,93 +989,93 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Da li stvarno želite obrisati bilješku %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Potvrdite brisanje" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Obriši" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Molim vas unesite novo ime:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Snimi zabilješku kao običan tekst" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Svi desktopi" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Novi" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Promijeni ime..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Sakrij" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Obriši" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Postavke..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Drži iznad ostalih" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Drži ispod ostalih" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Na desktop" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Šetaj kroz zabilješke" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "Alarm" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1083,12 +1083,12 @@ msgstr[1] "Štampaj %1 bilješke" msgstr[2] "Štampaj %1 bilješki" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Tema štampanja je nađena." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Greška štampanja" diff -Nru knotes-19.04.3/po/bs/libnoteshared.po knotes-19.12.3/po/bs/libnoteshared.po --- knotes-19.04.3/po/bs/libnoteshared.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/bs/libnoteshared.po 2020-03-03 00:34:39.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: $2\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2014-02-01 00:30+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: none\n" @@ -101,7 +101,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" diff -Nru knotes-19.04.3/po/ca/akonadi_notes_agent.po knotes-19.12.3/po/ca/akonadi_notes_agent.po --- knotes-19.04.3/po/ca/akonadi_notes_agent.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ca/akonadi_notes_agent.po 2020-03-03 00:34:40.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: akonadi_notes_agent\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-03 17:45+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -114,7 +114,7 @@ msgid "Your emails" msgstr "antonibella5@yahoo.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "S'ha rebut una nota" diff -Nru knotes-19.04.3/po/ca/docs/knotes/index.docbook knotes-19.12.3/po/ca/docs/knotes/index.docbook --- knotes-19.04.3/po/ca/docs/knotes/index.docbook 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/ca/docs/knotes/index.docbook 2020-03-03 00:34:46.000000000 +0000 @@ -298,7 +298,7 @@ >F3 Cerca següentCerca la següent diff -Nru knotes-19.04.3/po/ca/knotes.po knotes-19.12.3/po/ca/knotes.po --- knotes-19.04.3/po/ca/knotes.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ca/knotes.po 2020-03-03 00:34:40.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-12-29 16:08+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -312,22 +312,22 @@ msgid "Rename note" msgstr "Reanomena la nota" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Mostra el nombre de notes a la icona de la safata" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Títol per omissió:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Com funciona això?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

You can customize title note. You can use:

  • %d current date " @@ -338,12 +338,12 @@ "data actual (format curt)
  • %l data actual (format llarg)
  • %t " "hora actual
" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Baixa temes d'impressió nous" @@ -664,32 +664,32 @@ msgid "Preferences KNotes..." msgstr "Preferències de KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Correu..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Envia..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Estableix una alarma..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Desa com a..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Bloca" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Desbloca" @@ -765,12 +765,12 @@ msgid "Plain text (*.txt)" msgstr "Text net (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Desa com a" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
Are you sure you want to " @@ -947,104 +947,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Llegeix la nota emergent: «%1»" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Realment voleu suprimir la nota %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirmació de la supressió" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "Su&primeix" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Si us plau, introduïu el nom nou:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Desa la nota com a text net" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Tots els escriptoris" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nova" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Reanomena..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Oculta" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Suprimeix" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferències..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Mantén sobre les altres" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Mantén sota les altres" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "A l'escriptori" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Recorre les notes" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarma:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "La nota està bloquejada" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Imprimeix la nota" msgstr[1] "Imprimeix les %1 notes" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "No s'ha trobat el tema d'impressió." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Error d'impressió" @@ -1073,55 +1073,3 @@ #, kde-format msgid "Themes:" msgstr "Temes:" - -#~ msgid "" -#~ "Thanks for using KNotes!

KNotes uses a new storage technology " -#~ "that requires migration of your current KNotes data and configuration.\n" -#~ "

The conversion process can take a lot of time (depending on the amount " -#~ "of notes you have) and it must not be interrupted.

\n" -#~ "

You can:

  • Migrate now (be prepared to wait)
  • Skip the " -#~ "migration and start with fresh data and configuration
  • Cancel and " -#~ "exit KNotes.

More " -#~ "Information...

" -#~ msgstr "" -#~ "Gràcies per usar el KNotes!

El KNotes usa una nova tecnologia " -#~ "d'emmagatzematge que requereix la migració de les vostres dades i de la " -#~ "configuració actual del KNotes.

\n" -#~ "

El procés de conversió pot trigar molt temps (depenent de la quantitat " -#~ "de correus que tingueu) i no s'ha d'interrompre.

\n" -#~ "

Podeu:

  • Migrar ara (prepareu-vos per esperar)
  • Ometre " -#~ "la migració i iniciar amb dades i configuració noves
  • Cancel·lar i " -#~ "sortir del KNotes

Més informació...

" - -#~ msgid "KNotes Migration" -#~ msgstr "Migració del KNotes" - -#~ msgid "Migrate Now" -#~ msgstr "Migra ara" - -#~ msgid "Skip Migration" -#~ msgstr "Omet la migració" - -#~ msgid "" -#~ "Migration to KNotes failed. In case you want to try again, run 'knotes-" -#~ "migrator --interactive' manually." -#~ msgstr "" -#~ "Ha fallat la migració al KNotes. En el cas que vulgueu tornar-ho a " -#~ "intentar, executeu «knotes-migrator --interactive» manualment." - -#~ msgid "Migration Failed" -#~ msgstr "Ha fallat la migració" - -#~ msgid "Uppercase" -#~ msgstr "Majúscules" - -#~ msgid "Sentence case" -#~ msgstr "Caixa de la frase" - -#~ msgid "Lowercase" -#~ msgstr "Minúscules" - -#~ msgid "Change case..." -#~ msgstr "Canvia la caixa..." diff -Nru knotes-19.04.3/po/ca/libnoteshared.po knotes-19.12.3/po/ca/libnoteshared.po --- knotes-19.04.3/po/ca/libnoteshared.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ca/libnoteshared.po 2020-03-03 00:34:40.000000000 +0000 @@ -1,16 +1,17 @@ # Translation of libnoteshared.po to Catalan -# Copyright (C) 2014-2017 This_file_is_part_of_KDE +# Copyright (C) 2014-2019 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. # # Antoni Bella Pérez , 2014, 2017. +# Josep Ma. Ferrer , 2019. msgid "" msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-01-27 16:57+0100\n" -"Last-Translator: Antoni Bella Pérez \n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-17 19:23+0100\n" +"Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -104,11 +105,11 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" -"La col·lecció està oculta. La nota nova serà emmagatzemada però no es " -"mostrarà. Voleu mostrar la col·lecció?" +"La col·lecció està oculta. La nota nova s'emmagatzemarà però no es mostrarà. " +"Voleu mostrar la col·lecció?" #: job/createnewnotejob.cpp:198 #, kde-format @@ -171,10 +172,3 @@ #, kde-format msgid "The port will listen on and send notes to." msgstr "El port pel qual escoltarà i enviarà les notes." - -#~ msgid "" -#~ "An error occures during fetching. Do you want select an new default " -#~ "collection?" -#~ msgstr "" -#~ "Ha succeït un error durant la recuperació. Voleu seleccionar una nova " -#~ "col·lecció per omissió?" diff -Nru knotes-19.04.3/po/ca@valencia/akonadi_notes_agent.po knotes-19.12.3/po/ca@valencia/akonadi_notes_agent.po --- knotes-19.04.3/po/ca@valencia/akonadi_notes_agent.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ca@valencia/akonadi_notes_agent.po 2020-03-03 00:34:40.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: akonadi_notes_agent\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-03 17:45+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -114,7 +114,7 @@ msgid "Your emails" msgstr "antonibella5@yahoo.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "S'ha rebut una nota" diff -Nru knotes-19.04.3/po/ca@valencia/knotes.po knotes-19.12.3/po/ca@valencia/knotes.po --- knotes-19.04.3/po/ca@valencia/knotes.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ca@valencia/knotes.po 2020-03-03 00:34:40.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-12-29 16:08+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -312,22 +312,22 @@ msgid "Rename note" msgstr "Reanomena la nota" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Mostra el nombre de notes a la icona de la safata" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Títol per omissió:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Com funciona això?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

You can customize title note. You can use:

  • %d current date " @@ -338,12 +338,12 @@ "data actual (format curt)
  • %l data actual (format llarg)
  • %t " "hora actual
" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Baixa temes d'impressió nous" @@ -664,32 +664,32 @@ msgid "Preferences KNotes..." msgstr "Preferències de KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Correu..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Envia..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Estableix una alarma..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Guarda com a..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Bloca" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Desbloca" @@ -765,12 +765,12 @@ msgid "Plain text (*.txt)" msgstr "Text net (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Guarda com a" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
Are you sure you want to " @@ -947,104 +947,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Llig la nota emergent: «%1»" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Realment voleu suprimir la nota %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirmació de la supressió" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "Su&primeix" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Per favor, introduïu el nom nou:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Guarda la nota com a text net" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Tots els escriptoris" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nova" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Reanomena..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Oculta" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Suprimeix" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferències..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Mantén sobre les altres" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Mantén sota les altres" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "A l'escriptori" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Recorre les notes" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarma:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "La nota està bloquejada" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Imprimeix la nota" msgstr[1] "Imprimeix les %1 notes" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "No s'ha trobat el tema d'impressió." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Error d'impressió" @@ -1073,55 +1073,3 @@ #, kde-format msgid "Themes:" msgstr "Temes:" - -#~ msgid "" -#~ "Thanks for using KNotes!

KNotes uses a new storage technology " -#~ "that requires migration of your current KNotes data and configuration.\n" -#~ "

The conversion process can take a lot of time (depending on the amount " -#~ "of notes you have) and it must not be interrupted.

\n" -#~ "

You can:

  • Migrate now (be prepared to wait)
  • Skip the " -#~ "migration and start with fresh data and configuration
  • Cancel and " -#~ "exit KNotes.

More " -#~ "Information...

" -#~ msgstr "" -#~ "Gràcies per usar el KNotes!

El KNotes usa una nova tecnologia " -#~ "d'emmagatzematge que requereix la migració de les vostres dades i de la " -#~ "configuració actual del KNotes.

\n" -#~ "

El procés de conversió pot trigar molt temps (depenent de la quantitat " -#~ "de correus que tingueu) i no s'ha d'interrompre.

\n" -#~ "

Podeu:

  • Migrar ara (prepareu-vos per esperar)
  • Ometre " -#~ "la migració i iniciar amb dades i configuració noves
  • Cancel·lar i " -#~ "sortir del KNotes

Més informació...

" - -#~ msgid "KNotes Migration" -#~ msgstr "Migració del KNotes" - -#~ msgid "Migrate Now" -#~ msgstr "Migra ara" - -#~ msgid "Skip Migration" -#~ msgstr "Omet la migració" - -#~ msgid "" -#~ "Migration to KNotes failed. In case you want to try again, run 'knotes-" -#~ "migrator --interactive' manually." -#~ msgstr "" -#~ "Ha fallat la migració al KNotes. En el cas que vulgueu tornar-ho a " -#~ "intentar, executeu «knotes-migrator --interactive» manualment." - -#~ msgid "Migration Failed" -#~ msgstr "Ha fallat la migració" - -#~ msgid "Uppercase" -#~ msgstr "Majúscules" - -#~ msgid "Sentence case" -#~ msgstr "Caixa de la frase" - -#~ msgid "Lowercase" -#~ msgstr "Minúscules" - -#~ msgid "Change case..." -#~ msgstr "Canvia la caixa..." diff -Nru knotes-19.04.3/po/ca@valencia/libnoteshared.po knotes-19.12.3/po/ca@valencia/libnoteshared.po --- knotes-19.04.3/po/ca@valencia/libnoteshared.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/ca@valencia/libnoteshared.po 2020-03-03 00:34:40.000000000 +0000 @@ -1,16 +1,17 @@ # Translation of libnoteshared.po to Catalan (Valencian) -# Copyright (C) 2014-2017 This_file_is_part_of_KDE +# Copyright (C) 2014-2019 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. # # Antoni Bella Pérez , 2014, 2017. +# Josep Ma. Ferrer , 2019. msgid "" msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-01-27 16:57+0100\n" -"Last-Translator: Antoni Bella Pérez \n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-17 19:23+0100\n" +"Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" @@ -104,11 +105,11 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" -"La col·lecció està oculta. La nota nova serà emmagatzemada però no es " -"mostrarà. Voleu mostrar la col·lecció?" +"La col·lecció està oculta. La nota nova s'emmagatzemarà però no es mostrarà. " +"Voleu mostrar la col·lecció?" #: job/createnewnotejob.cpp:198 #, kde-format @@ -171,10 +172,3 @@ #, kde-format msgid "The port will listen on and send notes to." msgstr "El port pel qual escoltarà i enviarà les notes." - -#~ msgid "" -#~ "An error occures during fetching. Do you want select an new default " -#~ "collection?" -#~ msgstr "" -#~ "Ha succeït un error durant la recuperació. Voleu seleccionar una nova " -#~ "col·lecció per omissió?" diff -Nru knotes-19.04.3/po/cs/akonadi_notes_agent.po knotes-19.12.3/po/cs/akonadi_notes_agent.po --- knotes-19.04.3/po/cs/akonadi_notes_agent.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/cs/akonadi_notes_agent.po 2020-03-03 00:34:40.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. -# Vít Pelčák , 2013, 2014, 2015, 2017, 2018. +# Vít Pelčák , 2013, 2014, 2015, 2017, 2018, 2019. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2018-01-09 14:35+0100\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" +"PO-Revision-Date: 2019-11-07 12:00+0100\n" "Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" "Language: cs\n" @@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.08.2\n" #: notesagentalarmdialog.cpp:51 notesagentalarmdialog.cpp:220 #, kde-format @@ -66,7 +66,7 @@ #: notesagentsettingsdialog.cpp:58 #, kde-format msgid "Notify" -msgstr "Informovat" +msgstr "Upozornit" #: notesagentsettingsdialog.cpp:61 #, kde-format @@ -86,7 +86,7 @@ #: notesagentsettingsdialog.cpp:74 #, kde-format msgid "Copyright (C) 2013-2019 Laurent Montel" -msgstr "" +msgstr "Copyright (C) 2013-2019 Laurent Montel" #: notesagentsettingsdialog.cpp:76 #, kde-format @@ -110,7 +110,7 @@ msgid "Your emails" msgstr "vit@pelcak.org" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Přijata poznámka" diff -Nru knotes-19.04.3/po/cs/knotes.po knotes-19.12.3/po/cs/knotes.po --- knotes-19.04.3/po/cs/knotes.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/cs/knotes.po 2020-03-03 00:34:40.000000000 +0000 @@ -1,14 +1,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Lukáš Tinkl , 2010. -# Vít Pelčák , 2011, 2013, 2014, 2015, 2016, 2017, 2018. +# Vít Pelčák , 2011, 2013, 2014, 2015, 2016, 2017, 2018, 2019. # msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2018-04-03 17:19+0100\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2019-10-04 12:47+0200\n" "Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" "Language: cs\n" @@ -16,7 +16,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.08.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -126,7 +126,7 @@ #: apps/main.cpp:56 #, kde-format msgid "Copyright © 1997–2019 KNotes authors" -msgstr "" +msgstr "Copyright © 1997–2019 autoři KNotes" #: apps/main.cpp:76 kontactplugin/kcmknotessummary.cpp:64 #, kde-format @@ -309,22 +309,22 @@ msgid "Rename note" msgstr "Přejmenovat poznámku" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Výchozí titulek:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Jak to funguje?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

You can customize title note. You can use:

  • %d current date " @@ -332,12 +332,12 @@ "time
" msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Motiv:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "" @@ -572,7 +572,7 @@ #: kontactplugin/kcmknotessummary.cpp:63 #, kde-format msgid "Copyright © 2013-2019 Laurent Montel " -msgstr "" +msgstr "Copyright © 2013-2019 Laurent Montel " #: kontactplugin/knotes_part.cpp:98 #, kde-format @@ -649,34 +649,34 @@ #: kontactplugin/knotes_part.cpp:167 #, kde-format msgid "Preferences KNotes..." -msgstr "Nastavení KNotes..." +msgstr "Předvolby KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Odeslat e-mailem..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Poslat..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Nastavit upomínku..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Uložit jako..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Uzamknout" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Odemknout" @@ -752,12 +752,12 @@ msgid "Plain text (*.txt)" msgstr "Prostý text (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Uložit jako" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
Are you sure you want to " @@ -933,92 +933,92 @@ msgid "Read Popup Note: \"%1\"" msgstr "Přečíst poznámku: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Opravdu si přejete smazat poznámku %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Potvrzení smazání" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Smazat" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Prosím, zadejte nové jméno:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Uložit poznámku jako text" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Všechny pr&acovní plochy" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nová" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Přejmenovat..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Skrýt" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Smazat" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." -msgstr "Nastavení..." +msgstr "Předvolby..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Podržet nad ostatními" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Podržet pod ostatními" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Na plochu" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Procházet poznámkami" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarm:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1026,12 +1026,12 @@ msgstr[1] "Vytisknout %1 poznámky" msgstr[2] "Vytisknout %1 poznámek" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Chyba tisku:" diff -Nru knotes-19.04.3/po/cs/libnoteshared.po knotes-19.12.3/po/cs/libnoteshared.po --- knotes-19.04.3/po/cs/libnoteshared.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/cs/libnoteshared.po 2020-03-03 00:34:40.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2017-02-22 16:48+0100\n" "Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" @@ -96,7 +96,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" diff -Nru knotes-19.04.3/po/da/akonadi_notes_agent.po knotes-19.12.3/po/da/akonadi_notes_agent.po --- knotes-19.04.3/po/da/akonadi_notes_agent.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/da/akonadi_notes_agent.po 2020-03-03 00:34:40.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2016-08-07 15:06+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -111,7 +111,7 @@ msgid "Your emails" msgstr "mschlander@opensuse.org" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Note modtaget" diff -Nru knotes-19.04.3/po/da/knotes.po knotes-19.12.3/po/da/knotes.po --- knotes-19.04.3/po/da/knotes.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/da/knotes.po 2020-03-03 00:34:40.000000000 +0000 @@ -5,20 +5,20 @@ # Thomas Tanghus , 1998. # Erik Kjær Pedersen , 2002, 2003, 2004, 2005, 2006. # Erik K. Pedersen , 2005. -# Martin Schlander , 2008, 2009, 2010, 2013, 2014, 2015, 2016, 2018. +# Martin Schlander , 2008, 2009, 2010, 2013, 2014, 2015, 2016, 2018, 2020. msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2018-01-10 19:53+0100\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2020-02-13 20:14+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.3\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -127,10 +127,9 @@ msgstr "KDE Noter" #: apps/main.cpp:56 -#, fuzzy, kde-format -#| msgid "Copyright © 1997–2016 KNotes authors" +#, kde-format msgid "Copyright © 1997–2019 KNotes authors" -msgstr "Ophavsret © 1997–2016 KNotes-udviklerne" +msgstr "Ophavsret © 1997–2019 KNotes-udviklerne" #: apps/main.cpp:76 kontactplugin/kcmknotessummary.cpp:64 #, kde-format @@ -313,22 +312,22 @@ msgid "Rename note" msgstr "Omdøb note" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Vis antal noter i statusikonet" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Standardtitel:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Hvordan virker dette?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

You can customize title note. You can use:

  • %d current date " @@ -339,12 +338,12 @@ "(kort format)
  • %l aktuel dato (langt format)
  • %t aktuelt " "tidspunkt
" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Download nye udskriftstemaer" @@ -577,10 +576,9 @@ msgstr "Konfigurationsdialog til notes-oversigt" #: kontactplugin/kcmknotessummary.cpp:63 -#, fuzzy, kde-format -#| msgid "Copyright © 2013-2016 Laurent Montel " +#, kde-format msgid "Copyright © 2013-2019 Laurent Montel " -msgstr "Ophavsret © 2013-2016 Laurent Montel " +msgstr "Ophavsret © 2013-2019 Laurent Montel " #: kontactplugin/knotes_part.cpp:98 #, kde-format @@ -666,32 +664,32 @@ msgid "Preferences KNotes..." msgstr "KNotes-indstillinger..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "E-mail..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Send..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Sæt alarm..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Gem som..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Lås" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Lås op" @@ -768,12 +766,12 @@ msgid "Plain text (*.txt)" msgstr "Klartekst (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Gem som" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
Are you sure you want to " @@ -809,12 +807,10 @@ msgstr "Pop op-noter" #: kontactplugin/knotes_plugin.cpp:103 -#, fuzzy, kde-kuit-format -#| msgctxt "@info:credit" -#| msgid "Copyright © 2003–2016 Kontact authors" +#, kde-kuit-format msgctxt "@info:credit" msgid "Copyright © 2003–2018 Kontact authors" -msgstr "Ophavsret © 2003–2016 Kontact-udviklerne" +msgstr "Ophavsret © 2003–2018 Kontact-udviklerne" #: kontactplugin/knotes_plugin.cpp:105 #, kde-kuit-format @@ -952,104 +948,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Læs pop op-note: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Vil du virkelig at slette denne note %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Bekræft sletning" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Slet" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Indtast det nye navn:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Gem notits som almindelig text" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Alle skriveborde" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Ny" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Omdøb..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Skjul" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Slet" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Indstillinger..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Hold over de andre" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Hold under de andre" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Til skrivebord" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Gennemgå notitser" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarm:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Noten er låst" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Udskriv note" msgstr[1] "Udskriv %1 noter" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Udskriftstema blev ikke fundet." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Udskriftsfejl" diff -Nru knotes-19.04.3/po/da/libnoteshared.po knotes-19.12.3/po/da/libnoteshared.po --- knotes-19.04.3/po/da/libnoteshared.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/da/libnoteshared.po 2020-03-03 00:34:40.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2016-07-11 22:00+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -100,9 +100,12 @@ msgstr "Der opstod en fejl under hentning. Vil du vælge en ny standardsamling?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Samlingen er skjult. Nye noter vil blive lagret, men ikke vist. Vil du vise " diff -Nru knotes-19.04.3/po/de/akonadi_notes_agent.po knotes-19.12.3/po/de/akonadi_notes_agent.po --- knotes-19.04.3/po/de/akonadi_notes_agent.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/de/akonadi_notes_agent.po 2020-03-03 00:34:40.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-07 06:56+0100\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" @@ -108,7 +108,7 @@ msgid "Your emails" msgstr "lueck@hube-lueck.de" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Notiz erhalten" diff -Nru knotes-19.04.3/po/de/docs/knotes/index.docbook knotes-19.12.3/po/de/docs/knotes/index.docbook --- knotes-19.04.3/po/de/docs/knotes/index.docbook 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/de/docs/knotes/index.docbook 2020-03-03 00:34:47.000000000 +0000 @@ -118,7 +118,7 @@ >Die Notizen verwenden frei einstellbare Farben und Schriftarten. Es können sowohl die Standardeinstellungen wie auch die Einstellungen für einzelne Notizen verändert werden. Nach dem ersten Start von &knotes; wird eine Ressource installiert, in der alle Notizen in einem Maildir-Ordner in Nach dem ersten Start von &knotes; wird eine Ressource installiert, in der alle Notizen in einem Maildir-Ordner notes in $(qtpaths --paths GenericDataLocation)\n" "Language-Team: German \n" @@ -315,22 +315,22 @@ msgid "Rename note" msgstr "Notiz umbenennen" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Anzahl der Notizen im Kontrollleistensymbol anzeigen" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Standardtitel:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Wie funktioniert das?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

You can customize title note. You can use:

  • %d current date " @@ -341,12 +341,12 @@ "Platzhalter verwenden:

    • %d - das aktuelle Datum in Kurzform
    • %t - die aktuelle Zeit
    " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Design:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Neue Druckdesigns herunterladen" @@ -668,32 +668,32 @@ msgid "Preferences KNotes..." msgstr "KNotes-Einstellungen ..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Via E-Mail versenden ..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Versenden ..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Erinnerung einstellen ..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Speichern unter ..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Sperren" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Entsperren" @@ -770,12 +770,12 @@ msgid "Plain text (*.txt)" msgstr "Textdatei (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Speichern unter" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
    Are you sure you want to " @@ -953,104 +953,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Notiz lesen: „%1“" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Möchten Sie die Notiz %1 wirklich löschen?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Löschen bestätigen" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Löschen" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Bitte den neuen Namen eingeben:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Notiz als Textdatei speichern" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Auf a&lle Arbeitsflächen" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Neu" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Umbenennen ..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Ausblenden" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Löschen" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Einstellungen ..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Immer im Vordergrund" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Immer im Hintergrund" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Auf Arbeitsfläche" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Notizen durchblättern" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Erinnerung:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Die Notiz ist gesperrt" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Notiz drucken" msgstr[1] "%1 Notizen drucken" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Es wurde kein Druckstil gefunden." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Fehler beim Drucken" diff -Nru knotes-19.04.3/po/de/libnoteshared.po knotes-19.12.3/po/de/libnoteshared.po --- knotes-19.04.3/po/de/libnoteshared.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/de/libnoteshared.po 2020-03-03 00:34:40.000000000 +0000 @@ -1,10 +1,10 @@ -# Burkhard Lück , 2013, 2014, 2017. +# Burkhard Lück , 2013, 2014, 2017, 2019. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-03-19 15:41+0100\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-25 06:12+0100\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" "Language: de\n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.3\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -98,7 +98,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Die Sammlung ist ausgeblendet. Neue Notizen werden gespeichert, aber nicht " diff -Nru knotes-19.04.3/po/el/akonadi_notes_agent.po knotes-19.12.3/po/el/akonadi_notes_agent.po --- knotes-19.04.3/po/el/akonadi_notes_agent.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/el/akonadi_notes_agent.po 2020-03-03 00:34:40.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2014-03-30 19:10+0300\n" "Last-Translator: Dimitris Kardarakos \n" "Language-Team: Greek \n" @@ -111,7 +111,7 @@ msgid "Your emails" msgstr "dimkard@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Λήψη σημείωσης" diff -Nru knotes-19.04.3/po/el/knotes.po knotes-19.12.3/po/el/knotes.po --- knotes-19.04.3/po/el/knotes.po 2019-07-09 00:20:48.000000000 +0000 +++ knotes-19.12.3/po/el/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2012-09-10 06:33+0200\n" "Last-Translator: Dimitrios Glentadakis \n" "Language-Team: Greek \n" @@ -327,23 +327,23 @@ msgid "Rename note" msgstr "Επιλογή παραλήπτη:" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "Προκαθορισμένο &πλάτος:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

    You can customize title note. You can use:

    • %d current date " @@ -351,12 +351,12 @@ "time
    " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print Note" #| msgid_plural "Print %1 notes" @@ -684,32 +684,32 @@ msgid "Preferences KNotes..." msgstr "Προτιμήσεις..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Αλληλογραφία..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Αποστολή..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Ορισμός συναγερμού..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Αποθήκευση ως..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Κλείδωμα" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Ξεκλείδωμα" @@ -793,12 +793,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Αποθήκευση ως" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
    Are you sure you want to " @@ -989,105 +989,105 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Θέλετε πράγματι να διαγράψετε το σημείωμα %1;" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Επιβεβαίωση διαγραφής" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Διαγραφή" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Παρακαλώ δώστε το νέο όνομα:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Αποθήκευση σημειώματος ως απλό κείμενο" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Όλες τις επιφάνειες εργασίας" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Νέο" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Μετονομασία..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Απόκρυψη" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Διαγραφή" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Προτιμήσεις..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Διατήρηση πάνω από τα άλλα" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Διατήρηση κάτω από τα άλλα" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Στην επιφάνεια εργασίας" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Περιήγηση στα σημειώματα" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "Συναγερμός" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Εκτύπωση σημειώματος" msgstr[1] "Εκτύπωση %1 σημειωμάτων" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/en_GB/akonadi_notes_agent.po knotes-19.12.3/po/en_GB/akonadi_notes_agent.po --- knotes-19.04.3/po/en_GB/akonadi_notes_agent.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/en_GB/akonadi_notes_agent.po 2020-03-03 00:34:41.000000000 +0000 @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-03-24 20:56+0000\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" +"PO-Revision-Date: 2019-03-24 20:03+0000\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English \n" "Language: en_GB\n" @@ -110,7 +110,7 @@ msgid "Your emails" msgstr "steve.allewell@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Note Received" diff -Nru knotes-19.04.3/po/en_GB/knotes.po knotes-19.12.3/po/en_GB/knotes.po --- knotes-19.04.3/po/en_GB/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/en_GB/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-03-24 20:58+0000\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2019-03-24 20:13+0000\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English \n" "Language: en_GB\n" @@ -312,22 +312,22 @@ msgid "Rename note" msgstr "Rename note" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Show number of notes in tray icon" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Default Title:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "How does this work?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

    You can customize title note. You can use:

    • %d current date " @@ -338,12 +338,12 @@ "(short format)
    • %l current date (long format)
    • %t current " "time
    " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Theme:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Download new printing themes" @@ -664,32 +664,32 @@ msgid "Preferences KNotes..." msgstr "Preferences KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Mail..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Send..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Set Alarm..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Save As..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Lock" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Unlock" @@ -764,12 +764,12 @@ msgid "Plain text (*.txt)" msgstr "Plain text (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Save As" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
    Are you sure you want to " @@ -946,104 +946,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Read Popup Note: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Do you really want to delete note %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirm Delete" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Delete" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Please enter the new name:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Save note as plain text" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&All Desktops" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "New" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Rename..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Hide" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Delete" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferences..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Keep Above Others" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Keep Below Others" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "To Desktop" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Walk Through Notes" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarm:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Note is locked" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Print Note" msgstr[1] "Print %1 notes" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Printing theme was not found." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Printing error" diff -Nru knotes-19.04.3/po/en_GB/libnoteshared.po knotes-19.12.3/po/en_GB/libnoteshared.po --- knotes-19.04.3/po/en_GB/libnoteshared.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/en_GB/libnoteshared.po 2020-03-03 00:34:41.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, 2017. +# Steve Allewell , 2014, 2017, 2019. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-02-04 09:39+0000\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-17 12:16+0000\n" "Last-Translator: Steve Allewell \n" -"Language-Team: English \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 2.0\n" +"X-Generator: Lokalize 19.07.70\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -100,10 +100,10 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" #: job/createnewnotejob.cpp:198 diff -Nru knotes-19.04.3/po/eo/knotes.po knotes-19.12.3/po/eo/knotes.po --- knotes-19.04.3/po/eo/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/eo/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes 1.0pre2\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2002-09-16 22:52GMT\n" "Last-Translator: Steffen Pietsch \n" "Language-Team: Esperanto \n" @@ -312,23 +312,23 @@ msgid "Rename note" msgstr "Alinomu..." -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "Apriora &larĝeco:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

    You can customize title note. You can use:

    • %d current date " @@ -336,12 +336,12 @@ "time
    " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format msgid "Download new printing themes" msgstr "Presu..." @@ -659,32 +659,32 @@ msgid "Preferences KNotes..." msgstr "Noto-agordo..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Sendu..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, fuzzy, kde-format msgid "Send..." msgstr "Alinomu..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, fuzzy, kde-format msgid "Set Alarm..." msgstr "Tekstkoloro..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, fuzzy, kde-format msgid "Save As..." msgstr "Tekstkoloro..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Ŝloso" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Malŝlosi" @@ -761,12 +761,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Konservi kiel" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
    Are you sure you want to " @@ -943,104 +943,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, fuzzy, kde-format msgid "Do you really want to delete note %1?" msgstr "Ĉu vi vere volas forigi tiun ĉi noton?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Konfirmi forigon" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Forigi" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Bonvolu tajpi la novan nomon:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Ĉ&iuj tabuloj" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nova" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Alinomu..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Forigi" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Noto-agordo..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Teni super aliaj" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Teni sub aliaj" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Al tabulo" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, fuzzy, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Presu..." msgstr[1] "Presu..." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/es/akonadi_notes_agent.po knotes-19.12.3/po/es/akonadi_notes_agent.po --- knotes-19.04.3/po/es/akonadi_notes_agent.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/es/akonadi_notes_agent.po 2020-03-03 00:34:41.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-04 22:59+0100\n" "Last-Translator: Javier Vinal \n" "Language-Team: Spanish \n" @@ -110,7 +110,7 @@ msgid "Your emails" msgstr "fjvinal@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Nota recibida" diff -Nru knotes-19.04.3/po/es/docs/akonadi_notes_agent/index.docbook knotes-19.12.3/po/es/docs/akonadi_notes_agent/index.docbook --- knotes-19.04.3/po/es/docs/akonadi_notes_agent/index.docbook 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/es/docs/akonadi_notes_agent/index.docbook 2020-03-03 00:34:47.000000000 +0000 @@ -76,8 +76,7 @@ >Traducido por Javier Viñal fjvinal@gmail.com -&underFDL; &underGPL; +> &underFDL; &underGPL; diff -Nru knotes-19.04.3/po/es/docs/knotes/index.docbook knotes-19.12.3/po/es/docs/knotes/index.docbook --- knotes-19.04.3/po/es/docs/knotes/index.docbook 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/es/docs/knotes/index.docbook 2020-03-03 00:34:47.000000000 +0000 @@ -915,8 +915,7 @@ > y Javier Viñal fjvinal@gmail.com -&underFDL; &underGPL; +> &underFDL; &underGPL; &documentation.index; diff -Nru knotes-19.04.3/po/es/knotes.po knotes-19.12.3/po/es/knotes.po --- knotes-19.04.3/po/es/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/es/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-12-29 23:37+0100\n" "Last-Translator: Javier Vinal \n" "Language-Team: Spanish \n" @@ -319,22 +319,22 @@ msgid "Rename note" msgstr "Cambiar de nombre la nota" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Mostrar el número de notas en el icono de la bandeja" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Título predeterminado:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "¿Cómo funciona esto?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

    You can customize title note. You can use:

    • %d current date " @@ -345,12 +345,12 @@ "%d fecha actual (formato corto)
    • %l fecha actual (formato largo)
    • %t hora actual
    " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Descargar nuevos temas de impresión" @@ -671,32 +671,32 @@ msgid "Preferences KNotes..." msgstr "Preferencias de KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Enviar por correo..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Enviar..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Definir la alarma..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Guardar como..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Bloquear" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Desbloquear" @@ -772,12 +772,12 @@ msgid "Plain text (*.txt)" msgstr "Texto sin formato (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Guardar como" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
    Are you sure you want to " @@ -954,104 +954,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Leer nota emergente:«%1»" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "¿Seguro qué quiere borrar la nota %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirmar el borrado" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Borrar" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Introduzca el nuevo nombre:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Guarda la nota como texto sin formato" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Todos los escritorios" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nueva" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Cambiar de nombre..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Ocultar" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Borrar" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferencias..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Mantener sobre las otras" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Mantener bajo las otras" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Al escritorio" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Circular por las notas" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarma:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "La nota está bloqueada" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Imprimir la nota" msgstr[1] "Imprimir %1 notas" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "No se encontró el tema de impresión." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Error de impresión" diff -Nru knotes-19.04.3/po/es/libnoteshared.po knotes-19.12.3/po/es/libnoteshared.po --- knotes-19.04.3/po/es/libnoteshared.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/es/libnoteshared.po 2020-03-03 00:34:41.000000000 +0000 @@ -2,20 +2,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Javier Vinal , 2013, 2014, 2017. +# Eloy Cuadra , 2019. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-01-29 22:10+0100\n" -"Last-Translator: Javier Vinal \n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-17 00:55+0100\n" +"Last-Translator: Eloy Cuadra \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.08.3\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -48,7 +49,7 @@ "

    You can customize command line. You can use:

    • %t returns " "current note title
    • %f returns current note text
    " msgstr "" -"

    Usted puede personalizar la línea de órdenes. Usted puede usar:

    Puede personalizar la línea de órdenes. Para ello puede usar:

    • %t devuelve el título de la nota actual
    • %f devuelve el " "texto de la nota actual
    " @@ -95,17 +96,17 @@ "An error occurred during fetching. Do you want to select a new default " "collection?" msgstr "" -"Ocurrió un error durante la recuperación. ¿Quiere usted seleccionar una " -"nueva colección predeterminada?" +"Ocurrió un error durante la recuperación. ¿Quiere seleccionar una nueva " +"colección predeterminada?" #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "La colección está oculta. La nueva nota se almacenará, pero no se mostrará. " -"¿Quiere usted mostrar la colección?" +"¿Quiere mostrar la colección?" #: job/createnewnotejob.cpp:198 #, kde-format diff -Nru knotes-19.04.3/po/et/akonadi_notes_agent.po knotes-19.12.3/po/et/akonadi_notes_agent.po --- knotes-19.04.3/po/et/akonadi_notes_agent.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/et/akonadi_notes_agent.po 2020-03-03 00:34:41.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2016-07-27 20:00+0300\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -111,7 +111,7 @@ msgid "Your emails" msgstr "qiilaq69@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Saadi sedel" diff -Nru knotes-19.04.3/po/et/knotes.po knotes-19.12.3/po/et/knotes.po --- knotes-19.04.3/po/et/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/et/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2016-12-09 21:38+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -314,22 +314,22 @@ msgid "Rename note" msgstr "Sedeli nime muutmine" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Sedelite arvu näitamine süsteemisalve ikoonil" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Vaikimisi nimi:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Kuidas see töötab?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

    You can customize title note. You can use:

    • %d current date " @@ -340,12 +340,12 @@ "tänane kuupäev (lühidalt)
    • %l tänane kuupäev (pikalt)
    • %t " "praegune kellaaeg
    " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Teema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Uute trükkimisteemade allalaadimine" @@ -665,32 +665,32 @@ msgid "Preferences KNotes..." msgstr "KNotesi seadistused..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Saada e-postiga..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Saada..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Määra häire..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Salvesta kui..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Lukusta" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Eemalda lukk" @@ -767,12 +767,12 @@ msgid "Plain text (*.txt)" msgstr "Tekstifail (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Salvestamine" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
    Are you sure you want to " @@ -949,104 +949,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Loe sedelit: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Kas tõesti kustutada sedel %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Kustutamise kinnitus" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Kustuta" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Palun sisesta uus nimi:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Salvesta sedel lihttekstina" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Kõik töölauad" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Uus" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Nimeta ümber..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Peida" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Kustuta" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Eelistused..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Hoia kõige peal" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Hoia kõige all" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Töölauale" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Keri sedelid läbi" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Häire:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Sedel on lukustatud" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Sedeli trükkimine" msgstr[1] "%1 sedeli trükkimine" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Trükkimisteemat ei leitud." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Trükkimise tõrge" diff -Nru knotes-19.04.3/po/et/libnoteshared.po knotes-19.12.3/po/et/libnoteshared.po --- knotes-19.04.3/po/et/libnoteshared.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/et/libnoteshared.po 2020-03-03 00:34:41.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2016-01-15 17:28+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -100,9 +100,12 @@ msgstr "Tõmbamisel tekkis tõrge. Kas soovid valida uue vaikimisi kogu?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Kogu on peidetud. Uus sedel salvestatakse, aga seda ei näidata. Kas muuta " diff -Nru knotes-19.04.3/po/eu/knotes.po knotes-19.12.3/po/eu/knotes.po --- knotes-19.04.3/po/eu/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/eu/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2005-12-13 17:25+0100\n" "Last-Translator: Marcos \n" "Language-Team: \n" @@ -325,23 +325,23 @@ msgid "Rename note" msgstr "Berrizendatu..." -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "Oharraren &zabalera:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

    You can customize title note. You can use:

    • %d current date " @@ -349,12 +349,12 @@ "time
    " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print %1" msgid "Download new printing themes" @@ -679,32 +679,32 @@ msgid "Preferences KNotes..." msgstr "Hobespenak..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Posta..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Bidali..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Ezarri alarma..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, fuzzy, kde-format msgid "Save As..." msgstr "Ezarri alarma..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Blokeatu" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Desblokeatu" @@ -787,12 +787,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, fuzzy, kde-format #| msgid "" #| "A file named %1 already exists.
    Are you sure you want to " @@ -982,93 +982,93 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Ziur zaude %1 oharra ezabatu nahi duzula?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Berretsi ezabatzea" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Mesedez, sartu izen berria:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Gode oharra testu arrunta bezala" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Mahaigain &guztiak" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Berria" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Berrizendatu..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Ezkutatu" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, fuzzy, kde-format msgid "Delete" msgstr "Berretsi ezabatzea" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Hobespenak..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Mantendu besteen gainean" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Mantendu besteen azpian" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Mahaigainera" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Ibilaldia oharretan zehar" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "Alarma" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, fuzzy, kde-format #| msgid "Print %1" msgid "Print Note" @@ -1076,12 +1076,12 @@ msgstr[0] "Inprimatu %1" msgstr[1] "Inprimatu %1" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/fa/knotes.po knotes-19.12.3/po/fa/knotes.po --- knotes-19.04.3/po/fa/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/fa/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2007-09-03 14:31+0330\n" "Last-Translator: Nazanin Kazemi \n" "Language-Team: Persian \n" @@ -323,23 +323,23 @@ msgid "Rename note" msgstr "تغییر نام..." -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "&عرض پیش‌فرض:‌" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

    You can customize title note. You can use:

    • %d current date " @@ -347,12 +347,12 @@ "time
    " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print Note" #| msgid_plural "Print %1 notes" @@ -680,32 +680,32 @@ msgid "Preferences KNotes..." msgstr "تنظیمات..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "نامه..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "ارسال..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "تنظیم هشدار..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "ذخیره به عنوان..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "قفل" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "بدون قفل" @@ -788,12 +788,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "ذخیره به عنوان" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
    Are you sure you want to " @@ -981,104 +981,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "واقعاً می‌خواهید یادداشت را حذف کنید %1؟" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "تأیید حذف" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&حذف‌" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "لطفاً، نام جدید را وارد کنید:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "ذخیره یادداشت به عنوان متن ساده" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&همه رومیزیها‌" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "جدید" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "تغییر نام..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "مخفی کردن" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "حذف" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "تنظیمات..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "نگه داشتن بالای بقیه" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "نگه داشتن پایین بقیه" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "به رومیزی" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "گردش در میان یادداشتها" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "هشدار" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "چاپ %1 یادداشت" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/fi/akonadi_notes_agent.po knotes-19.12.3/po/fi/akonadi_notes_agent.po --- knotes-19.04.3/po/fi/akonadi_notes_agent.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/fi/akonadi_notes_agent.po 2020-03-03 00:34:41.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. # Lasse Liehu , 2013, 2014, 2015, 2016. -# Tommi Nieminen , 2017, 2018, 2019. +# Tommi Nieminen , 2017, 2018, 2019, 2020. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-02-19 11:05+0200\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \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 2.0\n" +"X-Generator: Lokalize 18.12.3\n" #: notesagentalarmdialog.cpp:51 notesagentalarmdialog.cpp:220 #, kde-format @@ -111,7 +111,7 @@ msgid "Your emails" msgstr "lasse.liehu@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Muistiinpano vastaanotettu" diff -Nru knotes-19.04.3/po/fi/knotes.po knotes-19.12.3/po/fi/knotes.po --- knotes-19.04.3/po/fi/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/fi/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -9,12 +9,12 @@ # Ilpo Kantonen , 2005, 2006. # Mikko Piippo , 2007. # Lasse Liehu , 2010, 2011, 2013, 2014, 2015, 2016. -# Tommi Nieminen , 2011, 2016, 2017, 2018, 2019. +# Tommi Nieminen , 2011, 2016, 2017, 2018, 2019, 2020. msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2019-02-19 11:26+0200\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" @@ -24,7 +24,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2012-12-01 22:25:03+0000\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -323,22 +323,22 @@ msgid "Rename note" msgstr "Muuta muistiinpanon nimeä" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Näytä muistiinpanojen määrä ilmoitusalueen kuvakkeessa" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Oletusotsikko:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Kuinka tämä toimii?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

    You can customize title note. You can use:

    • %d current date " @@ -349,12 +349,12 @@ "p>
      • %d nykyinen päivä (lyhyessä muodossa)
      • %l nykyinen päivä " "(pitkässä muodossa)
      • %t nykyinen kellonaika
      " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Teema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Lataa uusia tulostusteemoja" @@ -673,32 +673,32 @@ msgid "Preferences KNotes..." msgstr "KNotesin asetukset…" -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Lähetä sähköpostitse…" -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Lähetä…" -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Aseta hälytys…" -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Tallenna nimellä…" -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Lukitse" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Poista lukitus" @@ -773,12 +773,12 @@ msgid "Plain text (*.txt)" msgstr "Paljas teksti (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Tallenna nimellä" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
      Are you sure you want to " @@ -956,104 +956,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Lue ponnahdusmuistiinpano: ”%1”" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Haluatko varmasti poistaa muistiinpanon %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Vahvista poisto" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Poista" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Anna uusi nimi:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Tallenna muistiinpano pelkkänä tekstinä" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Kaikille työpöydille" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Uusi" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Muuta nimeä…" -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Piilota" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Poista" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Asetukset…" -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Pidä ylinnä" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Pidä alinna" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Työpöydälle" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Selaa muistiinpanoja" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Hälytys:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Muistiinpano on lukittu" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Tulosta muistiinpano" msgstr[1] "Tulosta %1 muistiinpanoa" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Tulostusteemaa ei löydy." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Tulostusvirhe" diff -Nru knotes-19.04.3/po/fi/libnoteshared.po knotes-19.12.3/po/fi/libnoteshared.po --- knotes-19.04.3/po/fi/libnoteshared.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/fi/libnoteshared.po 2020-03-03 00:34:41.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. # Lasse Liehu , 2013, 2014. -# Tommi Nieminen , 2017. +# Tommi Nieminen , 2017, 2020. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-05-07 20:58+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2020-01-01 13:28+0200\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" "Language: fi\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 2.0\n" +"X-Generator: Lokalize 18.12.3\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -100,11 +100,11 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" -"Kokoelma on piilotettu. Uusi muistiinpano tallennetaan, mutta se ei näy. " -"Haluatko, että kokoelma näytetään?" +"Kokoelma on piilotettu. Uusi muistiinpano tallennetaan mutta ei näytetä. " +"Haluatko näyttää kokoelman?" #: job/createnewnotejob.cpp:198 #, kde-format diff -Nru knotes-19.04.3/po/fr/akonadi_notes_agent.po knotes-19.12.3/po/fr/akonadi_notes_agent.po --- knotes-19.04.3/po/fr/akonadi_notes_agent.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/fr/akonadi_notes_agent.po 2020-03-03 00:34:41.000000000 +0000 @@ -3,13 +3,13 @@ # Vincent PINON , 2013. # Vincent Pinon , 2014, 2017, 2018. # Geoffray Levasseur , 2014. -# Simon Depiets , 2019. +# Simon Depiets , 2019, 2020. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-27 23:28+0800\n" "Last-Translator: Simon Depiets \n" "Language-Team: French \n" @@ -18,7 +18,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 19.03.70\n" +"X-Generator: Lokalize 20.03.70\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -116,7 +116,7 @@ msgid "Your emails" msgstr "geoffray.levasseurbrandin@numericable.fr,vincent.pinon@laposte.net" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Note reçue" diff -Nru knotes-19.04.3/po/fr/knotes.po knotes-19.12.3/po/fr/knotes.po --- knotes-19.04.3/po/fr/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/fr/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -12,13 +12,13 @@ # Sébastien Renard , 2010, 2013, 2014, 2015. # xavier , 2013. # Vincent Pinon , 2017, 2018. -# Simon Depiets , 2019. +# Simon Depiets , 2019, 2020. # msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2019-01-30 00:59+0800\n" "Last-Translator: Simon Depiets \n" "Language-Team: French \n" @@ -30,7 +30,7 @@ "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -"X-Generator: Lokalize 19.03.70\n" +"X-Generator: Lokalize 20.03.70\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -324,22 +324,22 @@ msgid "Rename note" msgstr "Renommer une note" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Afficher le nombre de notes dans l'icône de la boîte à miniatures" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Titre par défaut : " -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Comment est-ce que cela fonctionne ?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

      You can customize title note. You can use:

      • %d current date " @@ -350,12 +350,12 @@ "

        • %d pour la date courante (format court)
        • %l pour la date " "courante (format long)
        • %p pour l'heure courante
        " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Thème :" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Télécharger des nouveaux thèmes d'impression" @@ -679,32 +679,32 @@ msgid "Preferences KNotes..." msgstr "Préférences de KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Envoyer par courrier électronique..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Envoyer..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Régler une alarme..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Enregistrer sous..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Verrouiller" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Déverrouiller" @@ -780,12 +780,12 @@ msgid "Plain text (*.txt)" msgstr "Texte brut (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Enregistrer sous" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -963,104 +963,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Lire la note contextuelle : « %1 »" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Voulez-vous vraiment supprimer la note %1 ?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirmer la suppression" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Supprimer" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Veuillez saisir le nouveau nom :" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Enregistrer la note sous forme de texte brut" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Tous les bure&aux" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nouveau" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Renommer..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Masquer" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Supprimer" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Préférences..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Conserver au-dessus des autres" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Conserver au-dessous des autres" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Vers le bureau" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Parcourir les notes" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarme : " -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "La note est verrouillée" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Imprimer une note" msgstr[1] "Imprimer %1 notes" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Impossible de trouver le thème d'impression." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Erreur d'impression" diff -Nru knotes-19.04.3/po/fr/libnoteshared.po knotes-19.12.3/po/fr/libnoteshared.po --- knotes-19.04.3/po/fr/libnoteshared.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/fr/libnoteshared.po 2020-03-03 00:34:41.000000000 +0000 @@ -2,21 +2,22 @@ # This file is distributed under the same license as the PACKAGE package. # Vincent Pinon , 2013, 2014, 2017. # Vincent PINON , 2013, 2014. +# Simon Depiets , 2019. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-06-14 09:18+0100\n" -"Last-Translator: Vincent Pinon \n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-11 07:36+0800\n" +"Last-Translator: Simon Depiets \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.07.70\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -105,11 +106,11 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" -"La collection est cachée. La nouvelle note sera mémorisée mais ne " -"s'affichera pas. Voulez-vous afficher la collection ?" +"La collection est cachée. La nouvelle note sera mémorisée mais ne sera pas " +"affichée. Voulez-vous afficher la collection ?" #: job/createnewnotejob.cpp:198 #, kde-format diff -Nru knotes-19.04.3/po/ga/knotes.po knotes-19.12.3/po/ga/knotes.po --- knotes-19.04.3/po/ga/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/ga/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdepim/knotes.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -323,23 +323,23 @@ msgid "Rename note" msgstr "Roghnaigh faighteoir:" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "Leithead &réamhshocraithe:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -347,12 +347,12 @@ "time
        " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print Note" #| msgid_plural "Print %1 notes" @@ -681,32 +681,32 @@ msgid "Preferences KNotes..." msgstr "Sainroghanna..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Ríomhphost..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Seol..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Socraigh Aláram..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Sábháil Mar..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Cuir Faoi Ghlas" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Díghlasáil" @@ -798,12 +798,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Sábháil Mar" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -994,94 +994,94 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "" "An bhfuil tú cinnte gur mhaith leat nóta %1 a scriosadh?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Dearbhaigh an Scriosadh" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Scrios" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Iontráil an t-ainm nua le do thoil:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Sábháil an nóta mar ghnáth-théacs" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "G&ach Deasc" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nua" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Athainmnigh..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Folaigh" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Scrios" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Sainroghanna..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Coimeád Os Cionn" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Coimeád Faoi Chinn Eile" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Go Deasc" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Céimnigh Trí na Nótaí" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "Aláram" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1091,12 +1091,12 @@ msgstr[3] "Priontáil %1 nóta" msgstr[4] "Priontáil %1 nóta" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/gl/akonadi_notes_agent.po knotes-19.12.3/po/gl/akonadi_notes_agent.po --- knotes-19.04.3/po/gl/akonadi_notes_agent.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/gl/akonadi_notes_agent.po 2020-03-03 00:34:41.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-05 10:46+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" @@ -17,7 +17,6 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" #: notesagentalarmdialog.cpp:51 notesagentalarmdialog.cpp:220 #, kde-format @@ -112,7 +111,7 @@ msgid "Your emails" msgstr "xosecalvo@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Nota recibida" diff -Nru knotes-19.04.3/po/gl/knotes.po knotes-19.12.3/po/gl/knotes.po --- knotes-19.04.3/po/gl/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/gl/knotes.po 2020-03-03 00:34:41.000000000 +0000 @@ -1,12 +1,6 @@ # translation of knotes.po to Galician # Galician translation of knotes. # Copyright (C) 2000 Jesús Bravo Álvarez. -# -# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas -# colaborar connosco, podes atopar máis información en http://trasno.gpul.org -# -# First Version: 2000-10-28 16:51+0200 -# # Jesús Bravo Álvarez , 2000. # Xabi García , 2004. # Xabier García Feal , 2004. @@ -16,24 +10,27 @@ # Marce Villarino , 2010. # Marce Villarino , 2012, 2013, 2014. # Adrián Chaves Fernández , 2015, 2016, 2017. -# Adrián Chaves (Gallaecio) , 2017, 2018. +# Adrián Chaves (Gallaecio) , 2017, 2018, 2019. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en http://trasno.gpul.org +# +# First Version: 2000-10-28 16:51+0200 +# msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2018-12-29 10:01+0100\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2019-11-13 22:26+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" -"Language-Team: Galician \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Environment: kde\n" -"X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" +"X-Generator: Lokalize 19.08.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -329,22 +326,22 @@ msgid "Rename note" msgstr "Renomear a nota" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Mostrar a cantidade de notas na icona da bandexa" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Título predeterminado:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Como funciona isto?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -355,12 +352,12 @@ "(formato curto)
        • %l data actual (formato longo)
        • %t data " "actual
        " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Descargar temas de impresión novos" @@ -413,12 +410,12 @@ #: configdialog/knoteeditorconfigwidget.cpp:55 #, kde-format msgid "Text font:" -msgstr "Tipo de letra do texto:" +msgstr "Fonte do texto:" #: configdialog/knoteeditorconfigwidget.cpp:64 #, kde-format msgid "Title font:" -msgstr "Tipo de letra do título:" +msgstr "Fonte do título:" #: configdialog/knotesimpleconfigdialog.cpp:64 #, kde-format @@ -565,7 +562,7 @@ #: knoteedit.cpp:147 #, kde-format msgid "Text Font" -msgstr "Tipo de letra do texto" +msgstr "Fonte do texto" #: knoteedit.cpp:151 #, kde-format @@ -679,32 +676,32 @@ msgid "Preferences KNotes..." msgstr "Preferencias de KNotes…" -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Enviar por correo…" -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Enviar…" -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Pór a alarma…" -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Gardar como…" -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Bloquear" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Desbloquear" @@ -781,12 +778,12 @@ msgid "Plain text (*.txt)" msgstr "Texto simple (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Gardar como" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -962,104 +959,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Ler a nota emerxente: «%1»" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Seguro que quere eliminar a nota %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirmar a eliminación" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "Elimina&r" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Insira o nome novo:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Gardar a nota como texto simple" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Todos os escritorios" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nova" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Renomear…" -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Agochar" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Eliminar" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferencias…" -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Manter enriba das outras" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Manter embaixo das outras" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Para o escritorio" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Navegar polas notas" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarma:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "A nota está bloqueada" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Imprimir a nota" msgstr[1] "Imprimir %1 notas" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Non foi posíbel atopar o tema de impresión." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Erro de impresión" diff -Nru knotes-19.04.3/po/gl/libnoteshared.po knotes-19.12.3/po/gl/libnoteshared.po --- knotes-19.04.3/po/gl/libnoteshared.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/gl/libnoteshared.po 2020-03-03 00:34:42.000000000 +0000 @@ -1,27 +1,24 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# # Marce Villarino , 2013, 2014. # Xosé , 2014. # Adrián Chaves Fernández (Gallaecio) , 2017. -# Adrian Chaves , 2018. +# Adrian Chaves , 2018, 2019. +# msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2018-04-22 10:53+0100\n" -"Last-Translator: Adrian Chaves \n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-26 23:18+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 2.0\n" -"X-Environment: kde\n" -"X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" +"X-Generator: Lokalize 19.08.3\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -107,11 +104,11 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" -"A colección está agochada. A nova nota ha almacenarse pero non se ha " -"mostrar. Quere mostrar a colección?" +"A colección está agochada. A nova nota almacenarase pero non se mostrará. " +"Quere mostrar a colección?" #: job/createnewnotejob.cpp:198 #, kde-format diff -Nru knotes-19.04.3/po/he/knotes.po knotes-19.12.3/po/he/knotes.po --- knotes-19.04.3/po/he/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/he/knotes.po 2020-03-03 00:34:42.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2017-05-16 06:41-0400\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Hebrew \n" @@ -319,22 +319,22 @@ msgid "Rename note" msgstr "שנה שם..." -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format msgid "Default Title:" msgstr "רו&חב ברירת מחדל:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -342,12 +342,12 @@ "time
        " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format msgid "Download new printing themes" msgstr "הדפס פתק" @@ -661,32 +661,32 @@ msgid "Preferences KNotes..." msgstr "העדפות..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "שליחה בדוא\"ל..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "שלח..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "קבע תזכורת..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "שמור בשם..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "נְעָל" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "שחרר נעילה" @@ -762,12 +762,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "שמור בשם" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -940,104 +940,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "האם אתה בטוח שברצונך למחוק את הפתק %1 " -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "אשר מחיקה" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&מחק" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "הזן את השם החדש:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "שמור את הפתק בתור קובץ טקסט" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&כולם" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "חדש" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "שנה שם..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "הסתר" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "מחק" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "העדפות..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "השאר מעל אחרים" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "השאר מתחת לאחרים" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "לשולחן עבודה" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "עבור על כל הפתקים" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format msgid "Alarm:" msgstr "תזכורת" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "הדפס פתק" msgstr[1] "הדפס %1 פתקים" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/hi/knotes.po knotes-19.12.3/po/hi/knotes.po --- knotes-19.04.3/po/hi/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/hi/knotes.po 2020-03-03 00:34:42.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2008-01-22 16:59+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -317,23 +317,23 @@ msgid "Rename note" msgstr "नाम बदलें..." -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "डिफॉल्ड चौड़ाईः (&w)" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -341,12 +341,12 @@ "time
        " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format msgid "Download new printing themes" msgstr "नई टिप्पणी" @@ -669,32 +669,32 @@ msgid "Preferences KNotes..." msgstr "प्राथमिकताएं..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "डाक..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "भेजें..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "अलार्म सेट करें..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "ऐसे सहेजें..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "तालाबंद" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "तालाखोलें" @@ -776,12 +776,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "ऐसे सहेजें" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -968,105 +968,105 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "क्या आप सचमुच टिप्पणी %1 को मिटाना चाहते हैं ?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "मिटाना पुष्टि करें" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "मिटाएँ (&D)" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "कृपया एक नया नाम भरें:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "नोट को सादा पाठ के रूप में सहेजें" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "सभी डेस्कटॉप (&A)" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "नया" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "नाम बदलें..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "छुपाएँ" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "मिटाएँ" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "प्राथमिकताएं..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "अन्यों के ऊपर रखें" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "अन्यों के नीचे रखें" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "डेस्कटॉप पर" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "नोट्स के आरपार चलें" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "अलार्म" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, fuzzy, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "नई टिप्पणी" msgstr[1] "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/hr/knotes.po knotes-19.12.3/po/hr/knotes.po --- knotes-19.04.3/po/hr/knotes.po 2019-07-09 00:20:49.000000000 +0000 +++ knotes-19.12.3/po/hr/knotes.po 2020-03-03 00:34:42.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: knotes 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2004-04-20 13:26+CEST\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" @@ -316,22 +316,22 @@ msgid "Rename note" msgstr "Promijeni ime …" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format msgid "Default Title:" msgstr "Uobičajena ši&rina:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -339,12 +339,12 @@ "time
        " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "" @@ -664,32 +664,32 @@ msgid "Preferences KNotes..." msgstr "Podešenja …" -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Pošta …" -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, fuzzy, kde-format msgid "Send..." msgstr "Promijeni ime..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, fuzzy, kde-format msgid "Set Alarm..." msgstr "Boja teksta..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, fuzzy, kde-format msgid "Save As..." msgstr "Boja teksta..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "" @@ -769,12 +769,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -952,92 +952,92 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, fuzzy, kde-format msgid "Do you really want to delete note %1?" msgstr "Da li zaista želite da obrišete zabelešku %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Potvrda brisanja" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, fuzzy, kde-format msgid "Please enter the new name:" msgstr "Unesite novo ime:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Na sve radne površine" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Novi" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Promijeni ime …" -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Sakrij" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, fuzzy, kde-format msgid "Delete" msgstr "Potvrda brisanja" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Podešenja …" -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Na radnu površinu" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, fuzzy, kde-format #| msgid "Print %1" msgid "Print Note" @@ -1046,12 +1046,12 @@ msgstr[1] "Ispiši %1" msgstr[2] "Ispiši %1" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/hu/akonadi_notes_agent.po knotes-19.12.3/po/hu/akonadi_notes_agent.po --- knotes-19.04.3/po/hu/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/hu/akonadi_notes_agent.po 2020-03-03 00:34:42.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2017-03-04 14:43+0100\n" "Last-Translator: Kiszel Kristóf \n" "Language-Team: Hungarian \n" @@ -113,7 +113,7 @@ msgid "Your emails" msgstr "urbalazs@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Jegyzet fogadva" diff -Nru knotes-19.04.3/po/hu/knotes.po knotes-19.12.3/po/hu/knotes.po --- knotes-19.04.3/po/hu/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/hu/knotes.po 2020-03-03 00:34:42.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2014-10-18 12:09+0200\n" "Last-Translator: Kristóf Kiszel \n" "Language-Team: Hungarian \n" @@ -312,22 +312,22 @@ msgid "Rename note" msgstr "Jegyzet átnevezése" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Jegyzetek számának megjelenítése a tálcaikonon" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Alapértelmezett cím:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Hogyan működik ez?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -338,12 +338,12 @@ "jelenlegi dátum (rövid forma)
        • %l jelenlegi dátum (hosszú forma)
        • %t jelenlegi idő
        " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Téma:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Új nyomtatási témák letöltése" @@ -668,32 +668,32 @@ msgid "Preferences KNotes..." msgstr "Beállítások..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Elküldés levélben..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Küldés..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Emlékeztető beállítása..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Mentés mint..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Zárolás" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Feloldás" @@ -778,12 +778,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Mentés mint" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -974,104 +974,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Biztosan törölni szeretné ezt a jegyzetet: %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "A törlés megerősítése" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Törlés" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Adja meg az új nevet:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Jegyzet mentése egyszerű szövegként" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Az összes &asztalra" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Új" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Átnevezés..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Elrejtés" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Törlés" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Beállítások..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "A többi fölé" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "A többi alá" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Erre az asztalra" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Jegyzetek végigjárása" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Riasztás:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "A jegyzet zárolt" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Jegyzet nyomtatása" msgstr[1] "%1 jegyzet nyomtatása" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "A nyomtatási téma nem található." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Nyomtatási hiba" diff -Nru knotes-19.04.3/po/hu/libnoteshared.po knotes-19.12.3/po/hu/libnoteshared.po --- knotes-19.04.3/po/hu/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/hu/libnoteshared.po 2020-03-03 00:34:42.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2014-09-04 12:27+0200\n" "Last-Translator: Kristóf Kiszel \n" "Language-Team: Hungarian \n" @@ -103,9 +103,12 @@ "gyűjteményt?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "A gyűjtemény rejtett. Az új feljegyzés el lesz tárolva, de nem lesz " diff -Nru knotes-19.04.3/po/ia/akonadi_notes_agent.po knotes-19.12.3/po/ia/akonadi_notes_agent.po --- knotes-19.04.3/po/ia/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ia/akonadi_notes_agent.po 2020-03-03 00:34:42.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. # -# G.Sora , 2013, 2014. +# G.Sora , 2013, 2014, 2020. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2014-04-08 14:56+0200\n" -"Last-Translator: G.Sora \n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" +"PO-Revision-Date: 2020-01-20 13:43+0100\n" +"Last-Translator: giovanni \n" +"Language-Team: Interlingua \n" "Language: ia\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 18.12.3\n" #: notesagentalarmdialog.cpp:51 notesagentalarmdialog.cpp:220 #, kde-format @@ -56,7 +56,7 @@ #: notesagentalarmdialog.cpp:220 #, kde-format msgid "Error during fetch alarm info." -msgstr "" +msgstr "Errr quandotu reportava info de alarma." #: notesagentsettingsdialog.cpp:42 #, kde-format @@ -84,10 +84,9 @@ msgstr "Agente de Notas." #: notesagentsettingsdialog.cpp:74 -#, fuzzy, kde-format -#| msgid "Copyright (C) 2013, 2014 Laurent Montel" +#, kde-format msgid "Copyright (C) 2013-2019 Laurent Montel" -msgstr "Copyright (C) , 2013, 2014 Laurent Montel" +msgstr "Copyright (C) 2014-2019 Laurent Montel" #: notesagentsettingsdialog.cpp:76 #, kde-format @@ -111,7 +110,7 @@ msgid "Your emails" msgstr "g.sora@tiscali.it" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Nota recipite" diff -Nru knotes-19.04.3/po/ia/knotes.po knotes-19.12.3/po/ia/knotes.po --- knotes-19.04.3/po/ia/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ia/knotes.po 2020-03-03 00:34:42.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. # -# g.sora , 2011, 2012, 2013, 2014. +# g.sora , 2011, 2012, 2013, 2014, 2020. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2014-04-08 15:10+0200\n" -"Last-Translator: G.Sora \n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2020-01-19 22:21+0100\n" +"Last-Translator: Giovanni Sora \n" +"Language-Team: Interlingua \n" "Language: ia\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" @@ -33,8 +33,7 @@ msgstr "Supprime creation de un nove nota sur un instantia non unic." #: apps/knotesakonaditray.cpp:35 apps/knotestray.cpp:32 -#, fuzzy, kde-format -#| msgid "KNotes: Sticky notes for KDE" +#, kde-format msgid "KNotes: Sticky notes by KDE" msgstr "KNotes: notas collose per KDE" @@ -49,8 +48,7 @@ msgstr "Nove nota ex area de transferentia" #: apps/knotesapp.cpp:112 kontactplugin/knotes_part.cpp:192 -#, fuzzy, kde-format -#| msgid "New Note From Clipboard" +#, kde-format msgid "New Note From Text File..." msgstr "Nove nota ex area de transferentia" @@ -71,41 +69,35 @@ msgstr "Imprime notas seligite ..." #: apps/knotesapp.cpp:134 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Print Selected Notes..." +#, kde-format msgctxt "@action:inmenu" msgid "Delete Selected Notes..." msgstr "Imprime notas seligite ..." #: apps/knotesapp.cpp:423 kontactplugin/knotes_part.cpp:874 -#, fuzzy, kde-format -#| msgctxt "@title:window" -#| msgid "Select Note Folder" +#, kde-format msgid "Select Text File" msgstr "Selige dossier de nota" #: apps/knotesapp.cpp:424 kontactplugin/knotes_part.cpp:875 -#, fuzzy, kde-format -#| msgid "Text Size" +#, kde-format msgid "Text File" -msgstr "Dimension de texto" +msgstr "File de texto" #: apps/knotesapp.cpp:430 kontactplugin/knotes_part.cpp:882 #, kde-format msgid "Error during open text file: %1" -msgstr "" +msgstr "Error quando on aperiva le file detexto : %1" #: apps/knotesapp.cpp:431 kontactplugin/knotes_part.cpp:883 -#, fuzzy, kde-format -#| msgid "Text Size" +#, kde-format msgid "Open Text File" msgstr "Dimension de texto" #: apps/knotesapp.cpp:434 kontactplugin/knotes_part.cpp:886 #, kde-format msgid "Note from file '%1'" -msgstr "" +msgstr "Nota ex file '%1'" #: apps/knotesapp.cpp:529 #, kde-format @@ -131,10 +123,9 @@ msgstr "Notas de KDE" #: apps/main.cpp:56 -#, fuzzy, kde-format -#| msgid "Copyright © 1997–2014 KNotes authors" +#, kde-format msgid "Copyright © 1997–2019 KNotes authors" -msgstr "Copyright © 1997–2014 Le Autores de KNotes" +msgstr "Copyright © 1997–2019 Le Autores de KNotes" #: apps/main.cpp:76 kontactplugin/kcmknotessummary.cpp:64 #, kde-format @@ -254,7 +245,7 @@ #: configdialog/knotecollectionconfigwidget.cpp:117 #, kde-format msgid "Folders" -msgstr "" +msgstr "Dossieres" #: configdialog/knotecollectionconfigwidget.cpp:119 #, kde-format @@ -277,8 +268,7 @@ msgstr "&Annulla toto" #: configdialog/knotecollectionconfigwidget.cpp:177 -#, fuzzy, kde-format -#| msgid "Rename..." +#, kde-format msgid "Rename notes..." msgstr "Renomina..." @@ -289,54 +279,51 @@ msgstr "Selige le dossier ubi le nota essera salveguardate:" #: configdialog/knotecollectionconfigwidget.cpp:200 -#, fuzzy, kde-format -#| msgid "Note Actions" +#, kde-format msgid "Notes accounts" -msgstr "Actiones de nota" +msgstr "Contos de notas" #: configdialog/knotecollectionconfigwidget.cpp:205 #, kde-format msgid "Accounts" -msgstr "" +msgstr "Contos" #: configdialog/knotecollectionconfigwidget.cpp:237 -#, fuzzy, kde-format -#| msgid "Search Notes" +#, kde-format msgid "Rename Notes" msgstr "Cerca notas" #: configdialog/knotecollectionconfigwidget.cpp:238 #, kde-format msgid "Name:" -msgstr "" +msgstr "Nomine:" #: configdialog/knotecollectionconfigwidget.cpp:257 #, kde-format msgid "An error was occurred during renaming: %1" -msgstr "" +msgstr "Un error occurreva durante le renominar: %1" #: configdialog/knotecollectionconfigwidget.cpp:257 -#, fuzzy, kde-format -#| msgid "Create new note" +#, kde-format msgid "Rename note" msgstr "Crea nove nota" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Monstra numero de notas in le tabuliero" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Titulo predefinite:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Como il functiona?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -347,12 +334,12 @@ "data currente (forma breve)
        • %l data currente (forma longe)
        • " "%t tempore currente
        " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Thema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Discarga nove themas de imprimer" @@ -435,8 +422,7 @@ msgstr "Notas" #: dialog/knotedeleteselectednotesdialog.cpp:32 -#, fuzzy, kde-format -#| msgid "Select notes" +#, kde-format msgid "Select notes to delete" msgstr "Selige notas" @@ -457,32 +443,28 @@ msgstr "Actiones de nota" #: finddialog/knotefinddialog.cpp:40 -#, fuzzy, kde-format -#| msgid "Search Notes" +#, kde-format msgctxt "@title:window" msgid "Search Notes" msgstr "Cerca notas" #: finddialog/knotefinddialog.cpp:85 -#, fuzzy, kde-format -#| msgid "Search notes:" +#, kde-format msgctxt "@label:textbox" msgid "Search notes:" msgstr "Cerca notas:" #: finddialog/knotefinddialog.cpp:94 -#, fuzzy, kde-format -#| msgid "Search..." +#, kde-format msgctxt "@action:button Search notes" msgid "Search..." msgstr "Cerca..." #: finddialog/knotefinddialog.cpp:149 -#, fuzzy, kde-format -#| msgid "No Result found." +#, kde-format msgctxt "@label" msgid "No Results found in search." -msgstr "Il trovava necun exito." +msgstr "Necun resultatos trovate in cerca." #: knoteedit.cpp:56 #, kde-format @@ -582,37 +564,37 @@ #: kontactplugin/kcmknotessummary.cpp:59 #, kde-format msgid "kcmknotessummary" -msgstr "" +msgstr "kcmknotessummary" #: kontactplugin/kcmknotessummary.cpp:61 #, kde-format msgid "Notes Summary Configuration Dialog" -msgstr "" +msgstr "Dialogo de configuration de summario de Notas" #: kontactplugin/kcmknotessummary.cpp:63 #, kde-format msgid "Copyright © 2013-2019 Laurent Montel " -msgstr "" +msgstr "Copyright (C) 2013-2019 Laurent Montel " #: kontactplugin/knotes_part.cpp:98 #, kde-format msgctxt "@action:inmenu create new popup note" msgid "&New" -msgstr "" +msgstr "&Nove" #: kontactplugin/knotes_part.cpp:108 #, kde-format msgctxt "@info:whatsthis" msgid "You will be presented with a dialog where you can add a new popup note." msgstr "" +"Tu essera presentate con un dialogo ubi tu pote adder un nove nota de popup." #: kontactplugin/knotes_part.cpp:111 kontactplugin/knotes_part.cpp:606 #: kontactplugin/knotes_part.cpp:608 kontactplugin/knotes_part.cpp:790 -#, fuzzy, kde-format -#| msgid "Editor" +#, kde-format msgctxt "@action:inmenu" msgid "Edit..." -msgstr "Editor" +msgstr "Edita ..." #: kontactplugin/knotes_part.cpp:120 #, kde-format @@ -621,10 +603,11 @@ "You will be presented with a dialog where you can modify an existing popup " "note." msgstr "" +"Tu essera presentate con un dialogo ubi tu pote modificar un nota de popup " +"existente." #: kontactplugin/knotes_part.cpp:123 -#, fuzzy, kde-format -#| msgid "Rename..." +#, kde-format msgctxt "@action:inmenu" msgid "Rename..." msgstr "Renomina..." @@ -636,10 +619,11 @@ "You will be presented with a dialog where you can rename an existing popup " "note." msgstr "" +"Tu esser presentate con un dialogo ubi tu pote renominar un nota de popup " +"existente." #: kontactplugin/knotes_part.cpp:134 -#, fuzzy, kde-format -#| msgid "Delete" +#, kde-format msgctxt "@action:inmenu" msgid "Delete" msgstr "Dele" @@ -651,59 +635,57 @@ "You will be prompted if you really want to permanently remove the selected " "popup note." msgstr "" +"Tu essera requirite si tu vermente vole remover permanentemente le seligite " +"nota de popup." #: kontactplugin/knotes_part.cpp:153 #, kde-format msgctxt "@info:whatsthis" msgid "You will be prompted to print the selected popup note." -msgstr "" +msgstr "Tu essera demandate ante imprimer le nota de popup seligite." #: kontactplugin/knotes_part.cpp:156 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Print Selected Notes..." +#, kde-format msgctxt "@action:inmenu" msgid "Print Preview Selected Notes..." -msgstr "Imprime notas seligite ..." +msgstr "Imprime notas de vista preliminar seligite ..." #: kontactplugin/knotes_part.cpp:162 -#, fuzzy, kde-format -#| msgid "Note Actions" +#, kde-format msgid "Note settings..." -msgstr "Actiones de nota" +msgstr "Preferentias de nota..." #: kontactplugin/knotes_part.cpp:167 -#, fuzzy, kde-format -#| msgid "Preferences..." +#, kde-format msgid "Preferences KNotes..." -msgstr "Preferentias..." +msgstr "Preferentias KNotes ..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Invia via e-posta..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Invia..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Fixa alarma..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Salvar como..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Bloca" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Disbloca" @@ -711,89 +693,79 @@ #: kontactplugin/knotes_part.cpp:238 #, kde-format msgid "Set Focus to Quick Search" -msgstr "" +msgstr "Fixa foco a Cerca rapide" #: kontactplugin/knotes_part.cpp:321 #, kde-format msgctxt "@info" msgid "To print notes, first select the notes to print from the list." -msgstr "" +msgstr "Pro imprimer notas, prime tu selige le notas de imprimer ex le lista." #: kontactplugin/knotes_part.cpp:322 -#, fuzzy, kde-format -#| msgid "Print Note" -#| msgid_plural "Print %1 notes" +#, kde-format msgctxt "@title:window" msgid "Print Popup Notes" -msgstr "Imprime nota" +msgstr "Imprime notas de popup" #: kontactplugin/knotes_part.cpp:366 -#, fuzzy, kde-format -#| msgid "Note is locked" +#, kde-format msgid "Note was not created." -msgstr "Nota es blocate" +msgstr "Nota esseva create." #: kontactplugin/knotes_part.cpp:366 -#, fuzzy, kde-format -#| msgid "Create new note" +#, kde-format msgid "Create new note" msgstr "Crea nove nota" #: kontactplugin/knotes_part.cpp:388 #: kontactplugin/knotesselectdeletenotesdialog.cpp:70 -#, fuzzy, kde-format -#| msgid "Do you really want to delete note %1?" +#, kde-format msgctxt "@info" msgid "Do you really want to delete this note?" msgid_plural "Do you really want to delete these %1 notes?" -msgstr[0] "Tu vermente voler dele nota %1?" +msgstr[0] "Tu realmente vole deler iste note?" msgstr[1] "Tu vermente voler dele nota %1?" #: kontactplugin/knotes_part.cpp:390 #: kontactplugin/knotesselectdeletenotesdialog.cpp:57 -#, fuzzy, kde-format -#| msgid "Confirm Delete" +#, kde-format msgctxt "@title:window" msgid "Confirm Delete" msgstr "Confirma dele" #: kontactplugin/knotes_part.cpp:582 -#, fuzzy, kde-format -#| msgid "Search Notes" +#, kde-format msgctxt "@title:window" msgid "Rename Popup Note" -msgstr "Cerca notas" +msgstr "Renomina nota de popup" #: kontactplugin/knotes_part.cpp:583 -#, fuzzy, kde-format -#| msgid "New Note" +#, kde-format msgctxt "@label:textbox" msgid "New Name:" -msgstr "Nove Nota" +msgstr "Nove nomine:" #: kontactplugin/knotes_part.cpp:606 kontactplugin/knotes_part.cpp:790 -#, fuzzy, kde-format -#| msgid "Show All Notes" +#, kde-format msgid "Show Note..." -msgstr "Monstra omne notas" +msgstr "Monstra nota ..." #: kontactplugin/knotes_part.cpp:742 -#, fuzzy, kde-format -#| msgid "&Rich text" +#, kde-format msgid "Rich text (*.html)" -msgstr "&Rich text" +msgstr "Rich text (*.html)" #: kontactplugin/knotes_part.cpp:744 #, kde-format msgid "Plain text (*.txt)" -msgstr "" +msgstr "Text simplice(*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Salveguarda como" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -803,11 +775,10 @@ "vole super scriber lo?
        " #: kontactplugin/knotes_plugin.cpp:62 -#, fuzzy, kde-format -#| msgid "New Note" +#, kde-format msgctxt "@action:inmenu" msgid "New Popup Note..." -msgstr "Nove Nota" +msgstr "Nove nota de popup ..." #: kontactplugin/knotes_plugin.cpp:70 #, kde-format @@ -815,52 +786,46 @@ msgid "" "You will be presented with a dialog where you can create a new popup note." msgstr "" +"Tu essera presentate con un dialogo ubi tu pote crear un nove nota de popup." #: kontactplugin/knotes_plugin.cpp:99 -#, fuzzy, kde-kuit-format -#| msgid "KNotes" +#, kde-kuit-format msgctxt "@title" msgid "KNotes" msgstr "KNotes" #: kontactplugin/knotes_plugin.cpp:101 -#, fuzzy, kde-kuit-format -#| msgid "No Notes" +#, kde-kuit-format msgctxt "@title" msgid "Popup Notes" -msgstr "Nulle notas" +msgstr "Notas de Popup" #: kontactplugin/knotes_plugin.cpp:103 -#, fuzzy, kde-kuit-format -#| msgid "Copyright © 1997–2014 KNotes authors" +#, kde-kuit-format msgctxt "@info:credit" msgid "Copyright © 2003–2018 Kontact authors" -msgstr "Copyright © 1997–2014 Le Autores de KNotes" +msgstr "Copyright (c) 2003-2019 autores de Kontact" #: kontactplugin/knotes_plugin.cpp:105 -#, fuzzy, kde-kuit-format -#| msgid "Laurent Montel" +#, kde-kuit-format msgctxt "@info:credit" msgid "Laurent Montel" msgstr "Laurent Montel" #: kontactplugin/knotes_plugin.cpp:106 -#, fuzzy, kde-kuit-format -#| msgid "Maintainer" +#, kde-kuit-format msgctxt "@info:credit" msgid "Current Maintainer" -msgstr "Mantenitor" +msgstr "Mantenitor currente" #: kontactplugin/knotes_plugin.cpp:109 -#, fuzzy, kde-kuit-format -#| msgid "Michael Brade" +#, kde-kuit-format msgctxt "@info:credit" msgid "Michael Brade" msgstr "Michael Brade" #: kontactplugin/knotes_plugin.cpp:110 -#, fuzzy, kde-kuit-format -#| msgid "Previous Maintainer" +#, kde-kuit-format msgctxt "@info:credit" msgid "Previous Maintainer" msgstr "Previe mantenitor" @@ -869,31 +834,28 @@ #, kde-kuit-format msgctxt "@info:credit" msgid "Tobias Koenig" -msgstr "" +msgstr "Tobias Koenig" #: kontactplugin/knotes_plugin.cpp:113 #, kde-kuit-format msgctxt "@info:credit" msgid "Developer" -msgstr "" +msgstr "Disveloppator" #: kontactplugin/knotes_plugin.cpp:151 -#, fuzzy, kde-format -#| msgid "Settings" +#, kde-format msgctxt "@item" msgid "Meeting" -msgstr "Preferentias" +msgstr "Incontro" #: kontactplugin/knotes_plugin.cpp:165 kontactplugin/knotes_plugin.cpp:170 -#, fuzzy, kde-format -#| msgid "Notes" +#, kde-format msgctxt "@item" msgid "Note: %1" -msgstr "Notas" +msgstr "Nota:%1" #: kontactplugin/knotes_plugin.cpp:177 -#, fuzzy, kde-format -#| msgid "New Note" +#, kde-format msgctxt "@item" msgid "New Note" msgstr "Nove Nota" @@ -902,7 +864,7 @@ #, kde-format msgctxt "@info" msgid "Dropping multiple mails is not supported." -msgstr "" +msgstr "Deponer multiple e-postas non es supportate." #: kontactplugin/knotes_plugin.cpp:190 #, kde-format @@ -912,176 +874,172 @@ "To: %2\n" "Subject: %3" msgstr "" +"Ex: %1\n" +"A: %2\n" +"Subjecto: %3" #: kontactplugin/knotes_plugin.cpp:193 #, kde-format msgctxt "@item" msgid "Mail: %1" -msgstr "" +msgstr "E-posta: %1" #: kontactplugin/knoteseditdialog.cpp:50 -#, fuzzy, kde-format -#| msgid "Show All Notes" +#, kde-format msgctxt "@title:window" msgid "Show Popup Note" -msgstr "Monstra omne notas" +msgstr "Sync Nota de Popup" #: kontactplugin/knoteseditdialog.cpp:50 #, kde-format msgctxt "@title:window" msgid "Edit Popup Note" -msgstr "" +msgstr "Edita nota de popup" #: kontactplugin/knoteseditdialog.cpp:79 #, kde-format msgctxt "@label popup note name" msgid "Name:" -msgstr "" +msgstr "Nomine:" #: kontactplugin/knoteslistwidgetsearchline.cpp:28 -#, fuzzy, kde-format -#| msgid "Search notes:" +#, kde-format msgid "Search notes..." -msgstr "Cerca notas:" +msgstr "Cerca notas..." #: kontactplugin/knoteslistwidgetsearchline.cpp:37 -#, fuzzy, kde-format -#| msgid "Search notes:" +#, kde-format msgid "Search notes...<%1>" -msgstr "Cerca notas:" +msgstr "Cerca notas...<%1>" #: kontactplugin/knotesselectdeletenotesdialog.cpp:46 #, kde-format msgid "(note locked, it will not removed)" -msgstr "" +msgstr "(nota blocate, il non essera removite)" #: kontactplugin/summarywidget.cpp:63 -#, fuzzy, kde-format -#| msgid "No Notes" +#, kde-format msgid "Popup Notes" -msgstr "Nulle notas" +msgstr "Notas de popup" #: kontactplugin/summarywidget.cpp:120 -#, fuzzy, kde-format -#| msgid "No Result found." +#, kde-format msgid "No notes found" -msgstr "Il trovava necun exito." +msgstr "Il trovava necun nota." #: kontactplugin/summarywidget.cpp:153 #, kde-format msgid "Modify Note..." -msgstr "" +msgstr "Modifica nota ..." #: kontactplugin/summarywidget.cpp:157 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Print Selected Notes..." +#, kde-format msgid "Delete Note..." -msgstr "Imprime notas seligite ..." +msgstr "Deler Nota..." #: kontactplugin/summarywidget.cpp:243 #, kde-format msgid "Read Popup Note: \"%1\"" -msgstr "" +msgstr "Lege Nota de Popup: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Tu vermente voler dele nota %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirma dele" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Dele" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Per favor inserta le nove nomine:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Salveguardar nota como texto plan" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Omne Scriptorios" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nove " -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Renomina..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Cela" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Dele" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferentias..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Mantene super alteres" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Mantene sub alteres" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "A scriptorio" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Transversa Notas" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarma:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Nota es blocate" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Imprime nota" msgstr[1] "Imprime %1 notas" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Il non trovava le thema de imprimer." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Error de imprimer" diff -Nru knotes-19.04.3/po/ia/libnoteshared.po knotes-19.12.3/po/ia/libnoteshared.po --- knotes-19.04.3/po/ia/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ia/libnoteshared.po 2020-03-03 00:34:42.000000000 +0000 @@ -1,36 +1,36 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Giovanni Sora , 2013. +# Giovanni Sora , 2013, 2020. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2013-12-16 13:48+0100\n" -"Last-Translator: G.Sora \n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2020-02-07 23:42+0100\n" +"Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua \n" "Language: ia\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" #: alarms/notealarmdialog.cpp:77 #, kde-format msgid "Scheduled Alarm" -msgstr "" +msgstr "Alarma planificate" #: alarms/notealarmdialog.cpp:80 #, kde-format msgid "&No alarm" -msgstr "" +msgstr "&Necun Alarma" #: alarms/notealarmdialog.cpp:89 #, kde-format msgid "Alarm &at:" -msgstr "" +msgstr "Alarma &a:" #: config/noteactionconfig.cpp:36 #, kde-format @@ -95,13 +95,17 @@ "An error occurred during fetching. Do you want to select a new default " "collection?" msgstr "" +"Un error occurreva durante la cerca. Tu vole seliger un nove collection " +"predefinite?" #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" +"Collection es celate. Nove nota essera immagazinate ma non monstrate. Tu " +"vole monstrar collection?" #: job/createnewnotejob.cpp:198 #, kde-format @@ -134,10 +138,9 @@ msgstr "Pro favor configura action pro inviar e-posta." #: noteutils.cpp:53 -#, fuzzy, kde-format -#| msgid "Send \"%1\"" +#, kde-format msgid "Note: \"%1\"" -msgstr "Invia \"%1\"" +msgstr "Nota: \"%1\"" #: noteutils.cpp:60 #, kde-format diff -Nru knotes-19.04.3/po/is/knotes.po knotes-19.12.3/po/is/knotes.po --- knotes-19.04.3/po/is/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/is/knotes.po 2020-03-03 00:34:42.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2009-06-13 16:18+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: icelandic \n" @@ -332,23 +332,23 @@ msgid "Rename note" msgstr "Endurnefna..." -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "Sjálfgefin &breidd:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -356,12 +356,12 @@ "time
        " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print %1" msgid "Download new printing themes" @@ -686,32 +686,32 @@ msgid "Preferences KNotes..." msgstr "Stillingar..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Póstsenda..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Senda..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Setja áminningu..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, fuzzy, kde-format msgid "Save As..." msgstr "Setja áminningu..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Læsa" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Aflæsa" @@ -794,12 +794,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, fuzzy, kde-format msgid "Save As" msgstr "Vista sem" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, fuzzy, kde-format #| msgid "" #| "A file named %1 already exists.
        Are you sure you want to " @@ -989,93 +989,93 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Viltu örugglega eyða miða %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Staðfesta eyðingu" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, fuzzy, kde-format msgid "&Delete" msgstr "&Eyða" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Sláðu inn nýtt heiti:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Vista miða sem texta" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Öll &skjáborð" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nýr" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Endurnefna..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Fela" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, fuzzy, kde-format msgid "Delete" msgstr "Staðfesta eyðingu" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Stillingar..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Fyrir ofan aðra" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Fyrir neðan aðra" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Á skjáborð" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Ganga gegnum miða" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "Áminning" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, fuzzy, kde-format #| msgid "Print %1" msgid "Print Note" @@ -1083,12 +1083,12 @@ msgstr[0] "Prenta %1" msgstr[1] "Prenta %1" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/it/akonadi_notes_agent.po knotes-19.12.3/po/it/akonadi_notes_agent.po --- knotes-19.04.3/po/it/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/it/akonadi_notes_agent.po 2020-03-03 00:34:42.000000000 +0000 @@ -1,12 +1,12 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Luigi Toscano , 2014, 2015, 2016, 2017, 2018, 2019. +# Luigi Toscano , 2014, 2015, 2016, 2017, 2018, 2019, 2020. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-13 14:17+0100\n" "Last-Translator: Luigi Toscano \n" "Language-Team: Italian \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 2.0\n" +"X-Generator: Lokalize 19.08.1\n" #: notesagentalarmdialog.cpp:51 notesagentalarmdialog.cpp:220 #, kde-format @@ -110,7 +110,7 @@ msgid "Your emails" msgstr "luigi.toscano@tiscali.it" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Nota ricevuta" diff -Nru knotes-19.04.3/po/it/docs/akonadi_notes_agent/index.docbook knotes-19.12.3/po/it/docs/akonadi_notes_agent/index.docbook --- knotes-19.04.3/po/it/docs/akonadi_notes_agent/index.docbook 2019-07-09 00:20:52.000000000 +0000 +++ knotes-19.12.3/po/it/docs/akonadi_notes_agent/index.docbook 2020-03-03 00:34:47.000000000 +0000 @@ -76,8 +76,7 @@ >Traduzione di Luigi Toscano luigi.toscano@tiscali.it -&underFDL; &underGPL; +> &underFDL; &underGPL; diff -Nru knotes-19.04.3/po/it/docs/knotes/index.docbook knotes-19.12.3/po/it/docs/knotes/index.docbook --- knotes-19.04.3/po/it/docs/knotes/index.docbook 2019-07-09 00:20:52.000000000 +0000 +++ knotes-19.12.3/po/it/docs/knotes/index.docbook 2020-03-03 00:34:47.000000000 +0000 @@ -913,8 +913,7 @@ > e Valter Mura valtermura@gmail.com -&underFDL; &underGPL; +> &underFDL; &underGPL; &documentation.index; diff -Nru knotes-19.04.3/po/it/knotes.po knotes-19.12.3/po/it/knotes.po --- knotes-19.04.3/po/it/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/it/knotes.po 2020-03-03 00:34:42.000000000 +0000 @@ -4,13 +4,13 @@ # Andrea Rizzi , 2005. # Dario Panico , 2008. # Antonino Arcudi , 2009. -# Valter Mura , 2010, 2013, 2014, 2015, 2016, 2017, 2018, 2019. +# Valter Mura , 2010, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020. # Luigi Toscano , 2014. msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2019-01-27 20:09+0100\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" @@ -19,7 +19,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 18.12.1\n" +"X-Generator: Lokalize 19.12.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -314,22 +314,22 @@ msgid "Rename note" msgstr "Rinomina nota" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Mostra il numero delle note nell'icona del vassoio" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Titolo predefinito:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Come funziona?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -340,12 +340,12 @@ "data corrente (forma breve)
        • %l data corrente (forma lunga)
        • " "%t ora corrente
        " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Scarica nuovi temi di stampa" @@ -668,32 +668,32 @@ msgid "Preferences KNotes..." msgstr "Preferenze di KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Posta..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Invia..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Imposta avviso..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Salva come..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Blocca" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Sblocca" @@ -768,12 +768,12 @@ msgid "Plain text (*.txt)" msgstr "Testo semplice (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Salva come" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -950,104 +950,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Leggi nota a comparsa: «%1»" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Vuoi davvero eliminare la nota %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Conferma eliminazione" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Elimina" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Inserisci il nuovo nome:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Salva la nota come testo semplice" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Tutti i desktop" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nuova" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Rinomina..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Nascondi" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Elimina" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferenze..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Mantieni sopra gli altri" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Mantieni sotto gli altri" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Al desktop" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Scorri le note" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Avviso:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "La nota è bloccata" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Stampa nota" msgstr[1] "Stampa %1 note" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Il tema di stampa non è stato trovato." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Errore di stampa" diff -Nru knotes-19.04.3/po/it/libnoteshared.po knotes-19.12.3/po/it/libnoteshared.po --- knotes-19.04.3/po/it/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/it/libnoteshared.po 2020-03-03 00:34:42.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. -# Luigi Toscano , 2014, 2017. +# Luigi Toscano , 2014, 2017, 2019. # msgid "" msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-01-30 21:52+0100\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-29 00:49+0100\n" "Last-Translator: Luigi Toscano \n" "Language-Team: Italian \n" "Language: it\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 2.0\n" +"X-Generator: Lokalize 19.08.1\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -101,7 +101,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "La collezione è nascosta. Le nuova nota sarà memorizzata ma non mostrata. " diff -Nru knotes-19.04.3/po/ja/akonadi_notes_agent.po knotes-19.12.3/po/ja/akonadi_notes_agent.po --- knotes-19.04.3/po/ja/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ja/akonadi_notes_agent.po 2020-03-03 00:34:42.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: akonadi_notes_agent\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2013-12-24 01:18-0800\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" @@ -107,7 +107,7 @@ msgid "Your emails" msgstr "" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "" diff -Nru knotes-19.04.3/po/ja/knotes.po knotes-19.12.3/po/ja/knotes.po --- knotes-19.04.3/po/ja/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ja/knotes.po 2020-03-03 00:34:42.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2008-11-23 02:06+0900\n" "Last-Translator: Yukiko Bando \n" "Language-Team: Japanese \n" @@ -331,23 +331,23 @@ msgid "Rename note" msgstr "受信者を選択:" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "デフォルトの幅(&W):" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

        You can customize title note. You can use:

        • %d current date " @@ -355,12 +355,12 @@ "time
        " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print Note" #| msgid_plural "Print %1 notes" @@ -687,32 +687,32 @@ msgid "Preferences KNotes..." msgstr "設定..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "メール..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "送信..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "アラームを設定..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "名前を付けて保存..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "ロック" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "ロック解除" @@ -796,12 +796,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "名前を付けて保存" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
        Are you sure you want to " @@ -991,106 +991,106 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "本当にメモ “%1” を削除しますか?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "削除の確認" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "削除(&D)" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "新しい名前を入力してください:" # ACCELERATOR added by translator -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "プレーンテキストとして保存する(&P)" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "すべてのデスクトップ(&A)" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "新規" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "名前変更..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "隠す" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "削除" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "設定..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "常に最前面に表示" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "常に最背面に表示" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "デスクトップへ" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "メモをざっと読む" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "アラーム" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "メモを印刷" msgstr[1] "%1 件のメモを印刷" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/ja/libnoteshared.po knotes-19.12.3/po/ja/libnoteshared.po --- knotes-19.04.3/po/ja/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ja/libnoteshared.po 2020-03-03 00:34:42.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2013-12-24 01:18-0800\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" @@ -93,7 +93,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" diff -Nru knotes-19.04.3/po/kk/knotes.po knotes-19.12.3/po/kk/knotes.po --- knotes-19.04.3/po/kk/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/kk/knotes.po 2020-03-03 00:34:42.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2013-11-08 01:39+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -321,23 +321,23 @@ msgid "Rename note" msgstr "Жазбаларды таңдау" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "Әдетті &ені:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Бұл қалай істейді?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, fuzzy, kde-format #| msgid "" #| "

        You can customize command line. You can use:

        • %t returns " @@ -350,12 +350,12 @@ "

          Команда жолын ыңғайлауға болады:

          • %t назардағы жазба атауын " "қайтарады
          • %f назардағы жазба мәтінің қайтарады.
          " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Нақышы:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Жаңа басып шығару нақышын жүктеп алу" @@ -680,32 +680,32 @@ msgid "Preferences KNotes..." msgstr "Баптаулары..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Пошта..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Жіберу..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Ескертуді орнату..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Былай сақтау..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Бұғаттау" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Босату" @@ -788,12 +788,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Былай сақтау" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
          Are you sure you want to " @@ -984,104 +984,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Шынымен %1 жазбасын өшірмексіз бе?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Өшіруді құптау" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "Ө&шіру" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Жаңа атауын келтіріңіз:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Кәдімгі мәтінде сақтау" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Б&арлық үстелдерге" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Жаңа" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Атауын өзгерту..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Жасыру" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Өшіру" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Баптаулары..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Бет алдында ұстау" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Ең артында ұстау" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Қай үстелге" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Жазбаларды ақтару" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "Ескерту" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "%1 жазбаны басып шығару" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Басып шығару нақышы табылған жоқ." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Басып шығару қатесі" diff -Nru knotes-19.04.3/po/km/knotes.po knotes-19.12.3/po/km/knotes.po --- knotes-19.04.3/po/km/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/km/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2010-05-24 16:25+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -326,23 +326,23 @@ msgid "Rename note" msgstr "ជ្រើស​អ្នក​ទទួល ៖" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "ទទឹង​លំនាំដើម ៖" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

          You can customize title note. You can use:

          • %d current date " @@ -350,12 +350,12 @@ "time
          " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print Note" #| msgid_plural "Print %1 notes" @@ -683,32 +683,32 @@ msgid "Preferences KNotes..." msgstr "ចំណង់​ចំណូល​ចិត្ត..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "សំបុត្រ..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "ផ្ញើ..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "កំណត់សម្លេង​រោទ៍..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "​រក្សាទុកជា..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "ចាក់​សោ" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "ដោះសោ" @@ -791,12 +791,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "រក្សាទុក​ជា" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
          Are you sure you want to " @@ -986,104 +986,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "តើ​អ្នក​ពិត​ជា​ចង់​លុប​ចំណាំ %1​ឬទេ ?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "អះអាង​ការលុប" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "លុប" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "សូម​បញ្ចូល​ឈ្មោះ​ថ្មី ៖" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "រក្សា​ទុក​ចំណាំ​ជា​អត្ថបទ​ធម្មតា" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "ផ្ទៃ​តុ​ទាំងអស់" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "ថ្មី" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "​ប្តូរឈ្មោះ..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "លាក់" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "លុប" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "ចំណង់​ចំណូល​ចិត្ត..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "ដាក់​លើ​គេ" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "ដាក់ក្រោម​គេ" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "ទៅ​ផ្ទៃតុ" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "ដើរ​កាត់​ចំណាំ" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "ការ​ជូនដំណឹង" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "បោះពុម្ព​ចំណាំ %1" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/ko/akonadi_notes_agent.po knotes-19.12.3/po/ko/akonadi_notes_agent.po --- knotes-19.04.3/po/ko/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ko/akonadi_notes_agent.po 2020-03-03 00:34:43.000000000 +0000 @@ -1,12 +1,12 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Shinjo Park , 2014, 2015, 2016, 2017, 2018, 2019. +# Shinjo Park , 2014, 2015, 2016, 2017, 2018, 2019, 2020. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-04-22 01:29+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 18.12.3\n" +"X-Generator: Lokalize 19.04.3\n" #: notesagentalarmdialog.cpp:51 notesagentalarmdialog.cpp:220 #, kde-format @@ -110,7 +110,7 @@ msgid "Your emails" msgstr "kde@peremen.name" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "받은 노트" diff -Nru knotes-19.04.3/po/ko/knotes.po knotes-19.12.3/po/ko/knotes.po --- knotes-19.04.3/po/ko/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ko/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -2,14 +2,14 @@ # Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. # SiO4, Yong Hwan , 1999. # Kim jaehwan , 2000, 2001. -# Shinjo Park , 2007, 2009, 2011, 2014, 2015, 2016, 2017, 2018, 2019. +# Shinjo Park , 2007, 2009, 2011, 2014, 2015, 2016, 2017, 2018, 2019, 2020. # msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-04-22 01:08+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2020-01-29 00:32+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -17,7 +17,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 18.12.3\n" +"X-Generator: Lokalize 19.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -310,22 +310,22 @@ msgid "Rename note" msgstr "노트 이름 바꾸기" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "트레이 아이콘에 노트 수 보이기" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "기본 제목:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "어떻게 작동합니까?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

          You can customize title note. You can use:

          • %d current date " @@ -336,12 +336,12 @@ "습니다:

            • %d: 오늘 날짜(짧은 형식)
            • %l: 오늘 날짜(긴 형식)
            • %t: 현재 시간
            " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "테마:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "새 인쇄 테마 다운로드" @@ -364,7 +364,7 @@ #: configdialog/knotedisplayconfigwidget.cpp:70 #, kde-format msgid "&Remember desktop" -msgstr "데스크톱 기억하기(&A)" +msgstr "바탕 화면 기억하기(&A)" #: configdialog/knotedisplayconfigwidget.cpp:74 #, kde-format @@ -655,32 +655,32 @@ msgid "Preferences KNotes..." msgstr "KNotes 설정..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "이메일로 보내기..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "네트워크로 보내기..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "알람 설정..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "다른 이름으로 저장..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "잠금" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "잠금 해제" @@ -754,12 +754,12 @@ msgid "Plain text (*.txt)" msgstr "일반 텍스트 (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "다른 이름으로 저장" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
            Are you sure you want to " @@ -933,103 +933,103 @@ msgid "Read Popup Note: \"%1\"" msgstr "팝업 노트 읽기: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "노트 %1을(를) 삭제하시겠습니까?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "삭제 확인" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "삭제" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "새로운 이름을 입력해 주십시오:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "노트를 일반 텍스트로 저장" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" -msgstr "모든 데스크톱에 표시(&A)" +msgstr "모든 바탕 화면에 표시(&A)" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "새로 만들기" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "이름 바꾸기..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "숨기기" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "삭제" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "설정..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "항상 위" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "항상 아래" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" -msgstr "다음 데스크톱으로" +msgstr "다음 바탕 화면으로" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "노트 사이로 탐색" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "알람:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "노트가 잠김" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "%1개 노트 인쇄" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "인쇄 테마를 찾을 수 없습니다." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "인쇄 오류" diff -Nru knotes-19.04.3/po/ko/libnoteshared.po knotes-19.12.3/po/ko/libnoteshared.po --- knotes-19.04.3/po/ko/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/ko/libnoteshared.po 2020-03-03 00:34:43.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. -# Shinjo Park , 2014, 2017. +# Shinjo Park , 2014, 2017, 2020. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-12-03 22:34+0100\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2020-01-29 00:48+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.04.3\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -99,7 +99,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "모음집이 숨겨져 있습니다. 새 메모를 저장할 수 있지만 표시할 수 없습니다. 모음" diff -Nru knotes-19.04.3/po/lt/akonadi_notes_agent.po knotes-19.12.3/po/lt/akonadi_notes_agent.po --- knotes-19.04.3/po/lt/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/lt/akonadi_notes_agent.po 2020-03-03 00:34:43.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: l 10n\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2014-11-10 19:18+0200\n" "Last-Translator: Liudas Ališauskas \n" "Language-Team: Lithuanian \n" @@ -114,7 +114,7 @@ msgid "Your emails" msgstr "liudas@akmc.lt" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Gauta pastaba" diff -Nru knotes-19.04.3/po/lt/knotes.po knotes-19.12.3/po/lt/knotes.po --- knotes-19.04.3/po/lt/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/lt/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2017-06-28 10:07+0200\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: Lithuanian \n" @@ -312,22 +312,22 @@ msgid "Rename note" msgstr "Pervadinti lapelį" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Sistemos dėkle rodyti lapelių skaičių" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Numatytoji antraštė:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Kaip tai veikia?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

            You can customize title note. You can use:

            • %d current date " @@ -335,12 +335,12 @@ "time
            " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Apipavidalinimas:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Parsisiųsti naujų spausdinimo apipavidalinimų" @@ -659,32 +659,32 @@ msgid "Preferences KNotes..." msgstr "KNotes parinktys..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Siųsti paštu..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Siųsti..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Nustatyti perspėjimą..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Įrašyti kaip..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Užrakinti" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Atrakinti" @@ -763,12 +763,12 @@ msgid "Plain text (*.txt)" msgstr "Teksto failas (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Įrašyti kaip" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
            Are you sure you want to " @@ -947,92 +947,92 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Ar tikrai norite pašalinti lapelį %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Šalinimo patvirtinimas" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "Paša&linti" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Įrašykite naują vardą:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Išsaugoti lapelį kaip paprastą tekstą" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Visuose d&arbalaukiuose" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Naujas" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Pervadinti..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Slėpti" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Pašalinti" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Pasirinkimai..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Laikyti virš kitų" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Laikyti po kitais" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Į darbalaukį" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Pereiti per lapelius" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Priminimas:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Lapelis užrakintas" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1041,12 +1041,12 @@ msgstr[2] "Spausdinti %1 lapelių" msgstr[3] "Spausdinti %1 lapelį" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Nerastas spausdinimo apipavidalinimas" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Spausdinimo klaida" diff -Nru knotes-19.04.3/po/lt/libnoteshared.po knotes-19.12.3/po/lt/libnoteshared.po --- knotes-19.04.3/po/lt/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/lt/libnoteshared.po 2020-03-03 00:34:43.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: l 10n\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2017-06-28 09:52+0200\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: Lithuanian \n" @@ -97,9 +97,12 @@ msgstr "" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Rinkinys paslėptas. Naujas lapelis sukursimas, tačiau nerodysimas. Ar " diff -Nru knotes-19.04.3/po/lv/knotes.po knotes-19.12.3/po/lv/knotes.po --- knotes-19.04.3/po/lv/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/lv/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2009-06-01 20:23+0300\n" "Last-Translator: Viesturs Zariņš \n" "Language-Team: Latvian \n" @@ -324,23 +324,23 @@ msgid "Rename note" msgstr "Izvēlieties saņēmēju:" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "Noklusētais &platums:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

            You can customize title note. You can use:

            • %d current date " @@ -348,12 +348,12 @@ "time
            " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print Note" #| msgid_plural "Print %1 notes" @@ -681,32 +681,32 @@ msgid "Preferences KNotes..." msgstr "Iestatījumi.." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Sūtīt uz e-pastu..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Sūtīt..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Pievienot atgādinājumu..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Saglabāt kā..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Slēgt" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Atslēgt" @@ -791,12 +791,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Saglabāt kā" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
            Are you sure you want to " @@ -986,93 +986,93 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Vai tiešām vēlaties dzēst piezīmi %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Apstiprināt dzēšanu" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Dzēst" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Lūdzu ievadiet jaunu nosaukumu:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Saglabāt piezīmi kā vienkāršu tekstu" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Visām darbvirsmām" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Jauna" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Pārdēvēt..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Slēpt" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Dzēst" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Iestatījumi.." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Turēt virs citiem" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Turēt zem citiem" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Uz darbvirsmu" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Iet caur piezīmēm" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "Atgādinājums" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1080,12 +1080,12 @@ msgstr[1] "Drukāt %1 piezīmes" msgstr[2] "Drukāt %1 piezīmju" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/mr/knotes.po knotes-19.12.3/po/mr/knotes.po --- knotes-19.04.3/po/mr/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/mr/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2013-02-13 17:25+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -312,22 +312,22 @@ msgid "Rename note" msgstr "नाव बदला..." -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

            You can customize title note. You can use:

            • %d current date " @@ -335,12 +335,12 @@ "time
            " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "" @@ -661,32 +661,32 @@ msgid "Preferences KNotes..." msgstr "प्राधान्ये..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "मेल..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "पाठवा..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "" -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "असे साठवा..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "कुलूपबंद करा" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "कुलूप काढून टाका" @@ -764,12 +764,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "असे साठवा" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
            Are you sure you want to " @@ -954,104 +954,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "काढून टाका (&D)" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "सर्व डेस्कटॉप (&A)" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "नवीन" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "नाव बदला..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "लपवा" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "काढून टाका" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "प्राधान्ये..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "" msgstr[1] "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/nb/akonadi_notes_agent.po knotes-19.12.3/po/nb/akonadi_notes_agent.po --- knotes-19.04.3/po/nb/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nb/akonadi_notes_agent.po 2020-03-03 00:34:43.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2015-02-07 19:02+0100\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -112,7 +112,7 @@ msgid "Your emails" msgstr "bjornst@skogkatt.homelinux.org" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Notat mottatt" diff -Nru knotes-19.04.3/po/nb/knotes.po knotes-19.12.3/po/nb/knotes.po --- knotes-19.04.3/po/nb/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nb/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2015-02-07 22:15+0100\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -321,22 +321,22 @@ msgid "Rename note" msgstr "Sett nytt navn på notat" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Vis i systemkurven antall notater" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Standard tittel:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Hvordan virker dette?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

            You can customize title note. You can use:

            • %d current date " @@ -347,12 +347,12 @@ "dato, kort format
            • %l dagens dato, langt format
            • %t " "klokkeslettet nå
            " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Last ned nye utskriftstemaer" @@ -666,32 +666,32 @@ msgid "Preferences KNotes..." msgstr "" -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Postlegg …" -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Send …" -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Still inn varsling …" -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Lagre som …" -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Lås" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Lås opp" @@ -766,12 +766,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Lagre som" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
            Are you sure you want to " @@ -944,104 +944,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Er det sikkert at du vil slette dette notatet %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Bekreft sletting" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Slett" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Oppgi det nye navnet:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Lagre notat som ren tekst" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Alle skrivebord" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Ny" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Endre navn …" -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Skjul" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Slett" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Notisinnstillinger …" -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Behold øverst" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Behold underst" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Til skrivebord" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Gå gjennom notater" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Varsling:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Notatet er låst." -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Skriv ut notat" msgstr[1] "Skriv ut %1 notater" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Fant ikke utskriftstema." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Utskriftfeil" diff -Nru knotes-19.04.3/po/nb/libnoteshared.po knotes-19.12.3/po/nb/libnoteshared.po --- knotes-19.04.3/po/nb/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nb/libnoteshared.po 2020-03-03 00:34:43.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2014-09-13 18:22+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -101,11 +101,9 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" -"Samlingen er skjult. Nytt notat vil bli lagret, men ikke vist. Vil du vise " -"samlingen?" #: job/createnewnotejob.cpp:198 #, kde-format diff -Nru knotes-19.04.3/po/nds/akonadi_notes_agent.po knotes-19.12.3/po/nds/akonadi_notes_agent.po --- knotes-19.04.3/po/nds/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nds/akonadi_notes_agent.po 2020-03-03 00:34:43.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2014-09-18 16:42+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -111,7 +111,7 @@ msgid "Your emails" msgstr "s_dibbern@web.de" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Notiz ankamen" diff -Nru knotes-19.04.3/po/nds/knotes.po knotes-19.12.3/po/nds/knotes.po --- knotes-19.04.3/po/nds/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nds/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2014-06-20 16:37+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -314,22 +314,22 @@ msgid "Rename note" msgstr "Notiz ümnömen" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Notizentall binnen Systeemafsnitt wiesen" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Standardtitel:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Wodennig funkscheneert dat?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

            You can customize title note. You can use:

            • %d current date " @@ -340,12 +340,12 @@ "aktuelle Datum (kort) inföögt, för
            • %l dat aktuelle Datum (lang) un " "för
            • %t de aktuelle Tiet.
            " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Muster:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Niege Druckmustern daalladen" @@ -670,32 +670,32 @@ msgid "Preferences KNotes..." msgstr "Instellen..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Nettpost..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Sennen..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Alarm fastleggen..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Sekern as..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Afsluten" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Opsluten" @@ -780,12 +780,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Sekern as" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
            Are you sure you want to " @@ -977,104 +977,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Wullt Du de Notiz %1 redig wegdoon?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Wegdoon beglöven" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Wegdoon" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Bitte giff den niegen Naam in:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Notiz as Eenfachtext sekern" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&All Schriefdischen" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nieg" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Ümömen..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Versteken" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Wegdoon" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Instellen..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Vörn hollen" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Achtern hollen" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Na Schriefdisch" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Notizen dörgahn" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarm:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Notiz is fastsett." -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Notiz drucken" msgstr[1] "%1 Notizen drucken" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Druckmuster lett sik nich finnen." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Druckfehler" diff -Nru knotes-19.04.3/po/nds/libnoteshared.po knotes-19.12.3/po/nds/libnoteshared.po --- knotes-19.04.3/po/nds/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nds/libnoteshared.po 2020-03-03 00:34:43.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2014-08-13 01:05+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -101,9 +101,12 @@ "Bi't Halen geev dat en Fehler. Wullt Du en anner Standardsammeln utsöken?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Disse Sammeln is versteken. De Notiz warrt sekert, man nich wiest. Wullt Du " diff -Nru knotes-19.04.3/po/nl/akonadi_notes_agent.po knotes-19.12.3/po/nl/akonadi_notes_agent.po --- knotes-19.04.3/po/nl/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nl/akonadi_notes_agent.po 2020-03-03 00:34:43.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-03 10:24+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -110,7 +110,7 @@ msgid "Your emails" msgstr "freekdekruijf@kde.nl" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Notitie ontvangen" diff -Nru knotes-19.04.3/po/nl/knotes.po knotes-19.12.3/po/nl/knotes.po --- knotes-19.04.3/po/nl/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nl/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-12-29 11:44+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -322,22 +322,22 @@ msgid "Rename note" msgstr "Notitie hernoemen" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Aantal notities in systeemvakpictogram tonen" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Standaard titel:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Hoe werkt dit?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

            You can customize title note. You can use:

            • %d current date " @@ -348,12 +348,12 @@ "p>
              • %d geeft de huidige datum (kort formaat)
              • %l geeft de " "huidige datum (lang formaat)
              • %t huidige tijd
              " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Thema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Nieuwe afdrukthema's downloaden" @@ -673,32 +673,32 @@ msgid "Preferences KNotes..." msgstr "Voorkeuren voor KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Verzenden..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Verzenden..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Herinnering instellen..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Opslaan als..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Vergrendelen" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Ontgrendelen" @@ -775,12 +775,12 @@ msgid "Plain text (*.txt)" msgstr "Platte tekst (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Opslaan als" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -958,104 +958,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Notitie lezen: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Wilt u de notitie %1 verwijderen?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Verwijderen bevestigen" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "Verwij&deren" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Voer a.u.b. de nieuwe naam in:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Notitie opslaan als platte tekst" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Alle bureaubladen" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nieuw" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Hernoemen..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Verbergen" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Verwijderen" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Instellingen..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Naar voorgrond" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Naar achtergrond" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Naar bureaublad" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Door notities bladeren" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Herinnering:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Notitie is vergrendeld" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Notitie afdrukken" msgstr[1] "%1 notities afdrukken" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Afdrukthema niet gevonden." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Afdrukfout" diff -Nru knotes-19.04.3/po/nl/libnoteshared.po knotes-19.12.3/po/nl/libnoteshared.po --- knotes-19.04.3/po/nl/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nl/libnoteshared.po 2020-03-03 00:34:43.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 , 2013, 2014, 2017. +# Freek de Kruijf , 2013, 2014, 2017, 2019. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-01-27 11:42+0100\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-16 10:36+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 2.0\n" +"X-Generator: Lokalize 19.08.2\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -101,7 +101,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Verzameling is verborgen. Nieuwe notitie zal niet getoond worden. Wilt u de " diff -Nru knotes-19.04.3/po/nn/knotes.po knotes-19.12.3/po/nn/knotes.po --- knotes-19.04.3/po/nn/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/nn/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2019-05-01 11:44+0200\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -313,22 +313,22 @@ msgid "Rename note" msgstr "" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Korleis fungerer dette?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -336,12 +336,12 @@ "time
              " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "" @@ -659,32 +659,32 @@ msgid "Preferences KNotes..." msgstr "" -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "E-post …" -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Send …" -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Set alarm …" -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Lagra som …" -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Lås" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Lås opp" @@ -759,12 +759,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Lagra som" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -941,104 +941,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Les sprettoppnotat: «%1»" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Er du sikker på at du vil sletta notatet %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Stadfest sletting" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Slett" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Skriv inn eit nytt namn:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Lagra notat som reintekst" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Alle skrivebord" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Ny" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Endra namn …" -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Gøym" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Slett" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Innstillingar …" -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Hald over andre" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Hald under andre" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Til skrivebord" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Gå gjennom notat" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Skriv ut notat" msgstr[1] "Skriv ut %1 notat" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Utskriftsfeil" diff -Nru knotes-19.04.3/po/pa/knotes.po knotes-19.12.3/po/pa/knotes.po --- knotes-19.04.3/po/pa/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/pa/knotes.po 2020-03-03 00:34:43.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2012-12-20 08:55+0530\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" @@ -323,23 +323,23 @@ msgid "Rename note" msgstr "ਪਰਾਪਤ ਕਰਤਾ ਚੁਣੋ:" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "ਡਿਫਾਲਟ ਚੌੜਾਈ(&w):" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -347,12 +347,12 @@ "time
              " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print Note" #| msgid_plural "Print %1 notes" @@ -680,32 +680,32 @@ msgid "Preferences KNotes..." msgstr "ਮੇਰੀ ਪਸੰਦ..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "ਮੇਲ..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "ਭੇਜੋ..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "ਅਲਾਰਮ ਸੈੱਟ ਕਰੋ..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "ਇੰਝ ਸੰਭਾਲੋ..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "ਲਾਕ" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "ਤਾਲਾ-ਖੋਲ੍ਹੋ" @@ -789,12 +789,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "ਇੰਝ ਸੰਭਾਲੋ" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -984,105 +984,105 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "ਕੀ ਤੁਸੀਂ %1 ਨੋਟ ਨੂੰ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "ਹਟਾਉਣ ਦੀ ਪੁਸ਼ਟੀ" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "ਹਟਾਓ(&D)" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "ਨਵਾਂ ਨਾਂ ਦਿਓ ਜੀ:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "ਨੋਟ ਨੂੰ ਪਲੇਨ ਟੈਕਸਟ ਵਾਂਗ ਸੰਭਾਲੋ" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "ਸਭ ਡੈਸਕਟਾਪ(&A)" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "ਨਵਾਂ" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "ਨਾਂ ਬਦਲੋ..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "ਓਹਲੇ" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "ਹਟਾਓ" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "ਮੇਰੀ ਪਸੰਦ..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "ਸਭ ਤੋਂ ਉੱਤੇ ਰੱਖੋ" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "ਹੋਰਾਂ ਦੇ ਹੇਠਾਂ ਰੱਖੋ" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "ਡੈਸਕਟਾਪ ਉੱਤੇ" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "ਨੋਟਿਸਾਂ ਵਿੱਚ ਵੇਖੋ" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "ਅਲਾਰਮ" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "ਨੋਟ ਪਰਿੰਟ ਕਰੋ" msgstr[1] "ਨੋਟ %1 ਪਰਿੰਟ ਕਰੋ" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/pl/akonadi_notes_agent.po knotes-19.12.3/po/pl/akonadi_notes_agent.po --- knotes-19.04.3/po/pl/akonadi_notes_agent.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/pl/akonadi_notes_agent.po 2020-03-03 00:34:44.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-02-03 07:11+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -111,7 +111,7 @@ msgid "Your emails" msgstr "lukasz.wojnilowicz@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Odebrano notatkę" diff -Nru knotes-19.04.3/po/pl/knotes.po knotes-19.12.3/po/pl/knotes.po --- knotes-19.04.3/po/pl/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/pl/knotes.po 2020-03-03 00:34:44.000000000 +0000 @@ -1,5 +1,5 @@ # translation of knotes.po to -# Version: $Revision: 1542253 $ +# Version: $Revision: 1554367 $ # Currently maintained by Marcin Bokszczanin # Piotr Roszatycki 1998 # Jacek Stolarczyk 1999, 2000. @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2019-02-03 07:15+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -320,22 +320,22 @@ msgid "Rename note" msgstr "Zmień nazwę notatki" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Pokaż liczbę notatek na tacce systemowej" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Domyślny tytuł:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Jak to działa?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -346,12 +346,12 @@ "bieżąca data(krótki format)
              • %l bieżąca data (długi format)
              • " "%t bieżący czas
              " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Wygląd:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Pobierz nowe wystroje drukowania" @@ -672,32 +672,32 @@ msgid "Preferences KNotes..." msgstr "Ustawienia KNotatek..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Wyślij pocztą..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Wyślij..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Ustaw alarm..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Zapisz jako..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Zablokuj" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Odblokuj" @@ -773,12 +773,12 @@ msgid "Plain text (*.txt)" msgstr "Zwykły tekst (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Zapisz jako" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -956,92 +956,92 @@ msgid "Read Popup Note: \"%1\"" msgstr "Przeczytaj żółtą karteczkę: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Czy na pewno chcesz usunąć notatkę %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Potwierdź usunięcie" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Usuń" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Proszę podać nowa nazwę:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Zachowaj notatkę jako zwykły tekst" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Wszystkie pulpity" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nowa" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Zmień nazwę..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Ukryj" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Usuń" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferencje..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Zawsze na wierzchu" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Zawsze na spodzie" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Na pulpit" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Przejrzyj notatki po kolei" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarm:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Notatka jest zablokowana" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1049,12 +1049,12 @@ msgstr[1] "Wydrukuj %1 notatki" msgstr[2] "Wydrukuj %1 notatek" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Nie znaleziono wystroju drukowania." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Błąd drukowania" diff -Nru knotes-19.04.3/po/pl/libnoteshared.po knotes-19.12.3/po/pl/libnoteshared.po --- knotes-19.04.3/po/pl/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/pl/libnoteshared.po 2020-03-03 00:34:44.000000000 +0000 @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Łukasz Wojniłowicz , 2014, 2017. +# Łukasz Wojniłowicz , 2014, 2017, 2019. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-02-25 07:56+0100\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-24 07:53+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" @@ -16,7 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.07.70\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -99,7 +99,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Zbiór jest ukryty. Nowa notatka zostanie zachowana, ale niepokazana. Czy " diff -Nru knotes-19.04.3/po/pt/akonadi_notes_agent.po knotes-19.12.3/po/pt/akonadi_notes_agent.po --- knotes-19.04.3/po/pt/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/pt/akonadi_notes_agent.po 2020-03-03 00:34:44.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: akonadi_notes_agent\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2018-01-02 10:29+0000\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" @@ -106,7 +106,7 @@ msgid "Your emails" msgstr "zepires@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Nota Recebida" diff -Nru knotes-19.04.3/po/pt/knotes.po knotes-19.12.3/po/pt/knotes.po --- knotes-19.04.3/po/pt/knotes.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/pt/knotes.po 2020-03-03 00:34:44.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-12-29 13:24+0000\n" "Last-Translator: José Nuno Pires \n" "Language-Team: pt \n" @@ -19,6 +19,7 @@ "X-POFile-IgnoreConsistency: Display\n" "X-POFile-SpellExtra: Antonio nepomuk knotes migrator interactive Koenig\n" "X-POFile-SpellExtra: Kontact kcmknotessummary txt\n" +"X-POFile-IgnoreConsistency: Lock\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -311,22 +312,22 @@ msgid "Rename note" msgstr "Mudar o nome da nota" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Mostrar o número de notas no ícone da bandeja" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Título Predefinido:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Como é que isto funciona?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -337,12 +338,12 @@ "actual (formato curto)
              • %l data actual (formato extenso)
              • %t " "hora actual
              " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Obter novos temas de impressão" @@ -664,32 +665,32 @@ msgid "Preferences KNotes..." msgstr "Preferências do KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Enviar por E-mail..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Enviar..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Definir Alarme..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Gravar Como..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Bloquear" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Desbloquear" @@ -765,12 +766,12 @@ msgid "Plain text (*.txt)" msgstr "Texto simples (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Gravar Como" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -947,104 +948,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Ler a Nota Instantânea: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Quer mesmo apagar a nota %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirmar a Remoção" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Apagar" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Insira o novo nome:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Gravar nota como texto" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "To&dos os Ecrãs" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nova" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Mudar o Nome..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Esconder" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Apagar" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferências..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Manter por Cima das Outras" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Manter por Baixo das Outras" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Para o Ecrã" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Passear Pelas Notas" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarme:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "A nota está bloqueada" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Imprimir a Nota" msgstr[1] "Imprimir as %1 Notas" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "O tema de impressão não foi encontrado." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Erro de impressão" diff -Nru knotes-19.04.3/po/pt/libnoteshared.po knotes-19.12.3/po/pt/libnoteshared.po --- knotes-19.04.3/po/pt/libnoteshared.po 2019-07-09 00:20:50.000000000 +0000 +++ knotes-19.12.3/po/pt/libnoteshared.po 2020-03-03 00:34:44.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2017-01-27 11:41+0000\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" @@ -96,7 +96,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "A colecção está escondida. As novas notas serão guardadas mas não estarão " diff -Nru knotes-19.04.3/po/pt_BR/akonadi_notes_agent.po knotes-19.12.3/po/pt_BR/akonadi_notes_agent.po --- knotes-19.04.3/po/pt_BR/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/pt_BR/akonadi_notes_agent.po 2020-03-03 00:34:44.000000000 +0000 @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # André Marcelo Alvarenga , 2013, 2014, 2015, 2016, 2018, 2019. +# Luiz Fernando Ranghetti , 2019. msgid "" msgstr "" "Project-Id-Version: akonadi_notes_agent\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-01-05 23:45-0200\n" -"Last-Translator: André Marcelo Alvarenga \n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" +"PO-Revision-Date: 2019-12-20 11:12-0300\n" +"Last-Translator: Luiz Fernando Ranghetti \n" +"Language-Team: Portuguese \n" "Language: pt_BR\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 18.12.0\n" +"X-Generator: Lokalize 19.08.2\n" #: notesagentalarmdialog.cpp:51 notesagentalarmdialog.cpp:220 #, kde-format @@ -77,12 +78,12 @@ #: notesagentsettingsdialog.cpp:70 #, kde-format msgid "Notes Agent" -msgstr "Agente de Notas" +msgstr "Agente de notas" #: notesagentsettingsdialog.cpp:72 #, kde-format msgid "Notes Agent." -msgstr "Agente de Notas." +msgstr "Agente de notas." #: notesagentsettingsdialog.cpp:74 #, kde-format @@ -111,7 +112,7 @@ msgid "Your emails" msgstr "alvarenga@kde.org" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Nota recebida" diff -Nru knotes-19.04.3/po/pt_BR/knotes.po knotes-19.12.3/po/pt_BR/knotes.po --- knotes-19.04.3/po/pt_BR/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/pt_BR/knotes.po 2020-03-03 00:34:44.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2019-01-05 23:51-0200\n" "Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Brazilian Portuguese \n" @@ -316,22 +316,22 @@ msgid "Rename note" msgstr "Renomear nota" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Mostrar o número de notas no ícone da área de notificação" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Título padrão:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Como isto funciona?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -342,12 +342,12 @@ "%d data atual (formato abreviado)
              • %l data atual (formato por " "extenso)
              • %t hora atual
              " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Baixar novos temas de impressão" @@ -669,32 +669,32 @@ msgid "Preferences KNotes..." msgstr "Preferências do KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "E-mail..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Enviar..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Configurar alarme..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Salvar como..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Bloquear" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Desbloquear" @@ -769,12 +769,12 @@ msgid "Plain text (*.txt)" msgstr "Texto simples (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Salvar como" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -952,104 +952,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Ler nota instantânea: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Deseja realmente excluir a nota %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirmar exclusão" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Excluir" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Digite o novo nome:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Salvar nota como texto simples" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Tod&as as áreas de trabalho" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nova" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Renomear..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Ocultar" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Excluir" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferências..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Manter acima das outras" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Manter abaixo das outras" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Para a área de trabalho" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Percorrer as notas" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarme:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Nota bloqueada" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Imprimir nota" msgstr[1] "Imprimir %1 notas" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "O tema de impressão não foi encontrado." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Erro de impressão" diff -Nru knotes-19.04.3/po/pt_BR/libnoteshared.po knotes-19.12.3/po/pt_BR/libnoteshared.po --- knotes-19.04.3/po/pt_BR/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/pt_BR/libnoteshared.po 2020-03-03 00:34:44.000000000 +0000 @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # André Marcelo Alvarenga , 2013, 2014, 2015, 2018. +# Luiz Fernando Ranghetti , 2019. msgid "" msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2018-08-04 23:36-0300\n" -"Last-Translator: André Marcelo Alvarenga \n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-19 22:34-0300\n" +"Last-Translator: Luiz Fernando Ranghetti \n" +"Language-Team: Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.08.2\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -102,7 +103,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "A coleção está oculta. As novas notas serão armazenadas, mas não ficarão " diff -Nru knotes-19.04.3/po/ro/knotes.po knotes-19.12.3/po/ro/knotes.po --- knotes-19.04.3/po/ro/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/ro/knotes.po 2020-03-03 00:34:44.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2014-10-03 11:30+0300\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -325,23 +325,23 @@ msgid "Rename note" msgstr "Alegeți destinatarul:" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, fuzzy, kde-format #| msgid "Default &width:" msgid "Default Title:" msgstr "&Lățime implicită:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -349,12 +349,12 @@ "time
              " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, fuzzy, kde-format #| msgid "Print Note" #| msgid_plural "Print %1 notes" @@ -682,32 +682,32 @@ msgid "Preferences KNotes..." msgstr "Preferințe..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Poștă..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Trimite..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Stabilire alarmă..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Salvare ca..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Blochează" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Deblochează" @@ -792,12 +792,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Salvează ca" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -988,93 +988,93 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Sigur ștergeți notița %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Confirmare ștergere" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "Ș&terge" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Introduceți un nume nou:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Salvează notița ca text simplu" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "To&ate birourile" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nou" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Redenumire..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Ascunde" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Șterge" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Preferințe..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Ține deasupra celorlalte" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Ține sub celelalte" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Spre biroul" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Parcurge notițele" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "Alarmă" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1082,12 +1082,12 @@ msgstr[1] "Tipărește %1 notițe" msgstr[2] "Tipărește %1 de notițe" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/ro/libnoteshared.po knotes-19.12.3/po/ro/libnoteshared.po --- knotes-19.04.3/po/ro/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/ro/libnoteshared.po 2020-03-03 00:34:44.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2014-08-18 09:40+0300\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -97,7 +97,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" diff -Nru knotes-19.04.3/po/ru/akonadi_notes_agent.po knotes-19.12.3/po/ru/akonadi_notes_agent.po --- knotes-19.04.3/po/ru/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/ru/akonadi_notes_agent.po 2020-03-03 00:34:44.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-15 20:34+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" @@ -115,7 +115,7 @@ msgid "Your emails" msgstr "aspotashev@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Получена заметка" diff -Nru knotes-19.04.3/po/ru/knotes.po knotes-19.12.3/po/ru/knotes.po --- knotes-19.04.3/po/ru/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/ru/knotes.po 2020-03-03 00:34:44.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-10-15 20:52+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" @@ -321,23 +321,23 @@ msgid "Rename note" msgstr "Переименование заметки" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Показывать число заметок в системном лотке" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Заголовок по умолчанию:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Как это работает?" # BUGME: please change "title note" to "note title" --aspotashev -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -349,12 +349,12 @@ "на текущую дату в короткой записи;
              • %l заменяется на текущую дату в " "длинной записи;
              • %t заменяется на текущее время.
              " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Оформление:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Загрузить новые оформления для печати заметок" @@ -671,32 +671,32 @@ msgstr "Настроить KNotes..." # Starts e-mail client. Not to be confused with "Send..." --aspotashev -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Отправить по почте..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Отправить..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Установить напоминание..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Сохранить как..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Заблокировать" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Разблокировать" @@ -774,12 +774,12 @@ msgstr "Обычный текст (*.txt)" # BUGME: please add @title:window --aspotashev -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Сохранение в файл" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -953,93 +953,93 @@ msgid "Read Popup Note: \"%1\"" msgstr "Открыть заметку «%1»" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Удалить заметку %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Подтверждение удаления" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Удалить" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Введите новое имя:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Сохранить заметку в виде обычного текста" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "На &все рабочие столы" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Создать" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Переименовать..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Скрыть" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Удалить" # BUGME: please change to "Properties" (without ellipsis) --aspotashev -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Свойства" -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Показывать над другими" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Показывать под другими" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "На рабочий стол" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Переход по заметкам" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Напоминание:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Заметка заблокирована" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1048,12 +1048,12 @@ msgstr[2] "Печать %1 заметок" msgstr[3] "Печать заметки" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Оформление для печати не найдено." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Ошибка печати" diff -Nru knotes-19.04.3/po/ru/libnoteshared.po knotes-19.12.3/po/ru/libnoteshared.po --- knotes-19.04.3/po/ru/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/ru/libnoteshared.po 2020-03-03 00:34:44.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2018-08-04 21:49+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" @@ -104,9 +104,12 @@ "Во время извлечения произошла ошибка. Выбрать новую коллекцию по умолчанию?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Коллекция скрыта. Новая заметка будет сохранена, но не будет показана. " diff -Nru knotes-19.04.3/po/sk/akonadi_notes_agent.po knotes-19.12.3/po/sk/akonadi_notes_agent.po --- knotes-19.04.3/po/sk/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sk/akonadi_notes_agent.po 2020-03-03 00:34:44.000000000 +0000 @@ -1,18 +1,19 @@ # translation of akonadi_notes_agent.po to Slovak # Roman Paholik , 2013, 2014, 2015, 2016, 2017. +# Matej Mrenica , 2019. msgid "" msgstr "" "Project-Id-Version: akonadi_notes_agent\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-01-13 20:20+0100\n" -"Last-Translator: Roman Paholik \n" -"Language-Team: Slovak \n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" +"PO-Revision-Date: 2019-07-17 16:24+0200\n" +"Last-Translator: Matej Mrenica \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.04.3\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: notesagentalarmdialog.cpp:51 notesagentalarmdialog.cpp:220 @@ -82,10 +83,9 @@ msgstr "Agent poznámok." #: notesagentsettingsdialog.cpp:74 -#, fuzzy, kde-format -#| msgid "Copyright (C) 2013-2017 Laurent Montel" +#, kde-format msgid "Copyright (C) 2013-2019 Laurent Montel" -msgstr "Copyright (C) 2013-2017 Laurent Montel" +msgstr "Copyright (C) 2013-2019 Laurent Montel" #: notesagentsettingsdialog.cpp:76 #, kde-format @@ -109,7 +109,7 @@ msgid "Your emails" msgstr "wizzardsk@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Poznámka prijatá" diff -Nru knotes-19.04.3/po/sk/knotes.po knotes-19.12.3/po/sk/knotes.po --- knotes-19.04.3/po/sk/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sk/knotes.po 2020-03-03 00:34:45.000000000 +0000 @@ -4,19 +4,20 @@ # Stanislav Visnovsky , 2003, 2004. # Richard Fric , 2006, 2009. # Roman Paholík , 2013, 2014, 2015, 2016, 2017. +# Matej Mrenica , 2019. msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-04-16 09:18+0100\n" -"Last-Translator: Roman Paholik \n" -"Language-Team: Slovak \n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2019-07-12 18:09+0200\n" +"Last-Translator: Matej Mrenica \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.04.3\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #, kde-format @@ -82,10 +83,9 @@ msgstr "Vybrať textový súbor" #: apps/knotesapp.cpp:424 kontactplugin/knotes_part.cpp:875 -#, fuzzy, kde-format -#| msgid "Open Text File" +#, kde-format msgid "Text File" -msgstr "Otvoriť textový súbor" +msgstr "Textový súbor" #: apps/knotesapp.cpp:430 kontactplugin/knotes_part.cpp:882 #, kde-format @@ -126,10 +126,9 @@ msgstr "KDE Notes" #: apps/main.cpp:56 -#, fuzzy, kde-format -#| msgid "Copyright © 1997–2017 KNotes authors" +#, kde-format msgid "Copyright © 1997–2019 KNotes authors" -msgstr "Copyright © 1997–2017 Autori KNotes" +msgstr "Copyright © 1997–2019 Autori KNotes" #: apps/main.cpp:76 kontactplugin/kcmknotessummary.cpp:64 #, kde-format @@ -312,22 +311,22 @@ msgid "Rename note" msgstr "Premenovať poznámku" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Zobraziť počet poznámok v tray ikone" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Predvolený titul:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Ako toto funguje?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -338,12 +337,12 @@ "aktuálny dátum (krátky formát)
              • %l aktuálny dátum (dlhý formát)
              • %t aktuálny čas
              " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Téma:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Stiahnuť nové tlačové témy" @@ -447,29 +446,25 @@ msgstr "Poznamenať akcie" #: finddialog/knotefinddialog.cpp:40 -#, fuzzy, kde-format -#| msgid "Search Notes" +#, kde-format msgctxt "@title:window" msgid "Search Notes" msgstr "Prehľadať poznámky" #: finddialog/knotefinddialog.cpp:85 -#, fuzzy, kde-format -#| msgid "Search notes:" +#, kde-format msgctxt "@label:textbox" msgid "Search notes:" msgstr "Prehľadať poznámky:" #: finddialog/knotefinddialog.cpp:94 -#, fuzzy, kde-format -#| msgid "Search..." +#, kde-format msgctxt "@action:button Search notes" msgid "Search..." msgstr "Hľadať..." #: finddialog/knotefinddialog.cpp:149 -#, fuzzy, kde-format -#| msgid "No Result found." +#, kde-format msgctxt "@label" msgid "No Results found in search." msgstr "Nenašli sa žiadne výsledky." @@ -580,10 +575,9 @@ msgstr "Dialóg nastavenia súhrnu poznámok" #: kontactplugin/kcmknotessummary.cpp:63 -#, fuzzy, kde-format -#| msgid "Copyright © 2013-2017 Laurent Montel " +#, kde-format msgid "Copyright © 2013-2019 Laurent Montel " -msgstr "Copyright © 2013-2017 Laurent Montel " +msgstr "Copyright © 2013-2019 Laurent Montel " #: kontactplugin/knotes_part.cpp:98 #, kde-format @@ -666,32 +660,32 @@ msgid "Preferences KNotes..." msgstr "Predvoľby KNotes..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Poslať..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Poslať..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Nastaviť poplach..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Uložiť ako..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Zamknúť" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Odomknúť" @@ -759,23 +753,21 @@ msgstr "Zobraziť poznámku..." #: kontactplugin/knotes_part.cpp:742 -#, fuzzy, kde-format -#| msgid "&Rich text" +#, kde-format msgid "Rich text (*.html)" -msgstr "&Rich text" +msgstr "Rich text (*.html)" #: kontactplugin/knotes_part.cpp:744 -#, fuzzy, kde-format -#| msgid "Text File (*.txt)" +#, kde-format msgid "Plain text (*.txt)" -msgstr "Textový súbor (*.txt)" +msgstr "Obyčajný textový súbor (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Uložiť ako" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -810,12 +802,10 @@ msgstr "Vyskakujúce poznámky" #: kontactplugin/knotes_plugin.cpp:103 -#, fuzzy, kde-kuit-format -#| msgctxt "@info:credit" -#| msgid "Copyright © 2003–2017 Kontact authors" +#, kde-kuit-format msgctxt "@info:credit" msgid "Copyright © 2003–2018 Kontact authors" -msgstr "Copyright © 2003–2017 Autori Kontact" +msgstr "Copyright © 2003–2018 Autori Kontact" #: kontactplugin/knotes_plugin.cpp:105 #, kde-kuit-format @@ -934,10 +924,9 @@ msgstr "Vyskakujúce poznámky" #: kontactplugin/summarywidget.cpp:120 -#, fuzzy, kde-format -#| msgid "No note found" +#, kde-format msgid "No notes found" -msgstr "Nenašla sa poznámka" +msgstr "Nenašli sa žiadne poznámky" #: kontactplugin/summarywidget.cpp:153 #, kde-format @@ -954,92 +943,92 @@ msgid "Read Popup Note: \"%1\"" msgstr "Čitať vyskakovaciu poznámku: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Naozaj chcete odstrániť poznámku %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Potvrďte odstránenie" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "O&dstrániť" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Prosím, vložte nové meno:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Uložiť poznámku ako obyčajný text" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Všetky plochy" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Nová" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Premenovať..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Skryť" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Odstrániť" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Nastavenie..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Udržiavať nad ostatnými" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Udržiavať pod ostatnými" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Na plochu" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Prechádzať cez poznámky" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Poplach:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Poznámka je zamknutá" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1047,12 +1036,12 @@ msgstr[1] "Vytlačiť %1 poznámky" msgstr[2] "Vytlačiť %1 poznámok" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Tlačová téma nebola nájdená," -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Chyba pri tlačení" diff -Nru knotes-19.04.3/po/sk/libnoteshared.po knotes-19.12.3/po/sk/libnoteshared.po --- knotes-19.04.3/po/sk/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sk/libnoteshared.po 2020-03-03 00:34:45.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2017-02-04 11:10+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -96,9 +96,12 @@ "Nastala chyba počas naťahovania. Chcete vybrať novú predvolenú kolekciu?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Kolekcia je skrytá. Nová poznámka sa uloží, ale nezobrazí. Chcete zobraziť " diff -Nru knotes-19.04.3/po/sl/akonadi_notes_agent.po knotes-19.12.3/po/sl/akonadi_notes_agent.po --- knotes-19.04.3/po/sl/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sl/akonadi_notes_agent.po 2020-03-03 00:34:45.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2018-01-16 17:20+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -112,7 +112,7 @@ msgid "Your emails" msgstr "andrejm@ubuntu.si" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Prejeto sporočilce" diff -Nru knotes-19.04.3/po/sl/knotes.po knotes-19.12.3/po/sl/knotes.po --- knotes-19.04.3/po/sl/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sl/knotes.po 2020-03-03 00:34:45.000000000 +0000 @@ -1,7 +1,7 @@ # translation of knotes.po to Slovenian # Translation of knotes.po to Slovenian # Copyright (C) 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. -# $Id: knotes.po 1542253 2019-05-20 06:55:29Z scripty $ +# $Id: knotes.po 1554367 2019-10-24 03:10:15Z scripty $ # $Source$ # # Marko Samastur , 2000. @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-01-20 10:57+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -319,22 +319,22 @@ msgid "Rename note" msgstr "Preimenuj sporočilce" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Pokaži število sporočilc v ikoni sistemske vrstice" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Privzet naslov:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Kako to deluje?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -345,12 +345,12 @@ "%d - trenutni datum (kratka oblika)
              • %l - trenutni datum (dolga " "oblika)
              • %t - trenuten čas
              " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Prejmi nove teme za tiskanje" @@ -672,32 +672,32 @@ msgid "Preferences KNotes..." msgstr "Možnosti KNotes ..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Pošta ..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Pošlji ..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Nastavi alarm ..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Shrani kot ..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Zakleni" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Odkleni" @@ -774,12 +774,12 @@ msgid "Plain text (*.txt)" msgstr "Navadno besedilo (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Shrani kot" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -957,92 +957,92 @@ msgid "Read Popup Note: \"%1\"" msgstr "Preberi pojavno sporočilce: »%1«" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Ali resnično želite izbrisati sporočilce %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Potrditev izbrisa" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "I&zbriši" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Vnesite novo ime:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Shrani sporočilce kot navadno besedilo" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "Vs&a namizja" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Novo" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Preimenuj ..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Skrij" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Izbriši" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Možnosti ..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Ohrani nad drugimi" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Ohrani pod drugimi" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Na namizje" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Sprehodi se skozi sporočilca" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarm:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Sporočilce je zaklenjeno" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1051,12 +1051,12 @@ msgstr[2] "Natisni %1 sporočilci" msgstr[3] "Natisni %1 sporočilca" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Teme za tiskanje ni bilo mogoče najti." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Napaka med tiskanjem" diff -Nru knotes-19.04.3/po/sl/libnoteshared.po knotes-19.12.3/po/sl/libnoteshared.po --- knotes-19.04.3/po/sl/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sl/libnoteshared.po 2020-03-03 00:34:45.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2017-03-25 07:49+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -100,9 +100,12 @@ "zbirko?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Zbirka je skrita. Novo sporočilce bo shranjeno, ne pa prikazano. Ali želite " diff -Nru knotes-19.04.3/po/sv/akonadi_notes_agent.po knotes-19.12.3/po/sv/akonadi_notes_agent.po --- knotes-19.04.3/po/sv/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sv/akonadi_notes_agent.po 2020-03-03 00:34:45.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-03 17:50+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -110,7 +110,7 @@ msgid "Your emails" msgstr "stefan.asserhall@bredband.net" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Anteckning mottagen" diff -Nru knotes-19.04.3/po/sv/docs/akonadi_notes_agent/index.docbook knotes-19.12.3/po/sv/docs/akonadi_notes_agent/index.docbook --- knotes-19.04.3/po/sv/docs/akonadi_notes_agent/index.docbook 2019-07-09 00:20:52.000000000 +0000 +++ knotes-19.12.3/po/sv/docs/akonadi_notes_agent/index.docbook 2020-03-03 00:34:48.000000000 +0000 @@ -76,8 +76,7 @@ >Översättning Stefan Asserhäll stefan.asserhall@bredband.net -&underFDL; &underGPL; +> &underFDL; &underGPL; diff -Nru knotes-19.04.3/po/sv/docs/knotes/index.docbook knotes-19.12.3/po/sv/docs/knotes/index.docbook --- knotes-19.04.3/po/sv/docs/knotes/index.docbook 2019-07-09 00:20:52.000000000 +0000 +++ knotes-19.12.3/po/sv/docs/knotes/index.docbook 2020-03-03 00:34:48.000000000 +0000 @@ -903,8 +903,7 @@ >Översättning Stefan Asserhäll stefan.asserhall@bredband.net -&underFDL; &underGPL; +> &underFDL; &underGPL; &documentation.index; diff -Nru knotes-19.04.3/po/sv/knotes.po knotes-19.12.3/po/sv/knotes.po --- knotes-19.04.3/po/sv/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sv/knotes.po 2020-03-03 00:34:45.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-12-29 09:18+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -313,22 +313,22 @@ msgid "Rename note" msgstr "Byt namn på anteckningslapp" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Visa antal anteckningar på ikonen i systembrickan" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Förvald rubrik:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Hur fungerar det här?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -339,12 +339,12 @@ "%d dagens datum (kort format)
              • %l dagens datum (långt format)
              • " "%t aktuell tid
              " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Ladda ner nya utskriftsteman" @@ -663,32 +663,32 @@ msgid "Preferences KNotes..." msgstr "Inställning av Anteckningar..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Brev..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Skicka..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Ställ in alarm..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Spara som..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Lås" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Lås upp" @@ -765,12 +765,12 @@ msgid "Plain text (*.txt)" msgstr "Vanlig text (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Spara som" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
              Are you sure you want to " @@ -946,104 +946,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Läs anteckningslapp: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Vill du verkligen ta bort anteckningen %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Bekräfta borttag" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Ta bort" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Ange det nya namnet:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Spara anteckning som vanlig text" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Alla skrivbord" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Ny" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Byt namn..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Dölj" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Ta bort" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Inställningar..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Behåll ovanför andra" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Behåll under andra" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Till skrivbord" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Gå igenom anteckningar" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarm:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Anteckning är låst" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Skriv ut anteckning" msgstr[1] "Skriv ut %1 anteckningar" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Utskriftstema hittades inte." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Utskriftsfel" diff -Nru knotes-19.04.3/po/sv/libnoteshared.po knotes-19.12.3/po/sv/libnoteshared.po --- knotes-19.04.3/po/sv/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/sv/libnoteshared.po 2020-03-03 00:34:45.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. # -# Stefan Asserhäll , 2013, 2014, 2017. +# Stefan Asserhäll , 2013, 2014, 2017, 2019. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-01-27 18:04+0100\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-18 17:21+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -99,7 +99,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Samlingen är dold. Nya anteckningar lagras men visas inte. Vill du visa " diff -Nru knotes-19.04.3/po/tr/akonadi_notes_agent.po knotes-19.12.3/po/tr/akonadi_notes_agent.po --- knotes-19.04.3/po/tr/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/tr/akonadi_notes_agent.po 2020-03-03 00:34:45.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2017-06-09 15:18+0100\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish \n" @@ -111,7 +111,7 @@ msgid "Your emails" msgstr "necdetyucel@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Not Alındı" diff -Nru knotes-19.04.3/po/tr/knotes.po knotes-19.12.3/po/tr/knotes.po --- knotes-19.04.3/po/tr/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/tr/knotes.po 2020-03-03 00:34:46.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2017-10-03 14:35+0000\n" "Last-Translator: Kaan \n" "Language-Team: Turkish \n" @@ -316,22 +316,22 @@ msgid "Rename note" msgstr "Notu yeniden adlandır" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Çekmece simgesinde not sayısını göster" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Ö&ntanımlı Başlık:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Bu nasıl çalışır?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

              You can customize title note. You can use:

              • %d current date " @@ -342,12 +342,12 @@ "p>
                • %d geçerli tarih (kısa biçim)
                • %l geçerli tarih (uzun " "biçim)
                • %t geçerli saat
                " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Tema:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Yeni yazdırma temaları indir" @@ -666,32 +666,32 @@ msgid "Preferences KNotes..." msgstr "KNotes Tercihleri..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Postala..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Gönder..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Alarmı Ayarla..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Farklı Kaydet..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Kilitle" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Kilidi Aç" @@ -766,12 +766,12 @@ msgid "Plain text (*.txt)" msgstr "Düz metin (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Farklı Kaydet" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
                Are you sure you want to " @@ -949,104 +949,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "Açılır Notu Oku: \"%1\"" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "%1 notunu silmek istediğinizden emin misiniz ?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Silmeyi Onayla" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Sil" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Lütfen yeni ismi girin:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Notu düz metin olarak kaydet" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Tüm Masaüstleri" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Yeni" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Yeniden adlandır..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Gizle" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Sil" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Tercihler..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Diğerlerinin Üzerinde Tut" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Diğerlerinin Altında Tut" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "Masaüstüne" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Notlar Arasında Gezin" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Alarm:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Not kilitli" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "Notu Yazdır" msgstr[1] "%1 Notu Yazdır" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Yazdırma teması bulunamadı." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Yazdırma hatası" diff -Nru knotes-19.04.3/po/tr/libnoteshared.po knotes-19.12.3/po/tr/libnoteshared.po --- knotes-19.04.3/po/tr/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/tr/libnoteshared.po 2020-03-03 00:34:46.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2017-06-19 13:44+0000\n" "Last-Translator: Kaan \n" "Language-Team: Turkish \n" @@ -99,9 +99,12 @@ "misiniz?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Koleksiyon gizli. Yeni not depolanacak, ancak gösterilmeyecek. Koleksiyonu " diff -Nru knotes-19.04.3/po/ug/knotes.po knotes-19.12.3/po/ug/knotes.po --- knotes-19.04.3/po/ug/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/ug/knotes.po 2020-03-03 00:34:46.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -313,22 +313,22 @@ msgid "Rename note" msgstr "ئات ئۆزگەرت…" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

                You can customize title note. You can use:

                • %d current date " @@ -336,12 +336,12 @@ "time
                " msgstr "" -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "" @@ -662,32 +662,32 @@ msgid "Preferences KNotes..." msgstr "مايىللىق…" -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "" -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "ئەۋەت…" -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "" -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "باشقا ئاتتا ساقلا…" -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "قۇلۇپلا" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "قۇلۇپسىزلا" @@ -767,12 +767,12 @@ msgid "Plain text (*.txt)" msgstr "" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "باشقا ئاتتا ساقلا" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
                Are you sure you want to " @@ -957,104 +957,104 @@ msgid "Read Popup Note: \"%1\"" msgstr "" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Do you really want to delete note %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "ئۆچۈرۈش جەزملە" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "ئۆچۈر(&D)" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "بارلىق ئۈستەلئۈستى(&A)" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "يېڭى" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "ئات ئۆزگەرت…" -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "يوشۇر" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "ئۆچۈر" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "مايىللىق…" -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "ئەڭ ئۈستىدە" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "ئەڭ ئاستىدا" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, fuzzy, kde-format #| msgid "Alarm" msgid "Alarm:" msgstr "قوڭغۇراق" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "" diff -Nru knotes-19.04.3/po/uk/akonadi_notes_agent.po knotes-19.12.3/po/uk/akonadi_notes_agent.po --- knotes-19.04.3/po/uk/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/uk/akonadi_notes_agent.po 2020-03-03 00:34:46.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: akonadi_notes_agent\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-03 08:34+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -113,7 +113,7 @@ msgid "Your emails" msgstr "yurchor@ukr.net" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "Отримано нотатку" diff -Nru knotes-19.04.3/po/uk/knotes.po knotes-19.12.3/po/uk/knotes.po --- knotes-19.04.3/po/uk/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/uk/knotes.po 2020-03-03 00:34:46.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" "PO-Revision-Date: 2018-12-29 08:32+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -314,22 +314,22 @@ msgid "Rename note" msgstr "Перейменування нотатки" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "Показувати кількість нотаток на піктограмі у лотку" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "Типовий заголовок:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "Як це працює?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

                You can customize title note. You can use:

                • %d current date " @@ -340,12 +340,12 @@ "p>
                  • %d — поточна дата (скорочений формат)
                  • %l — поточна дата " "(повністю)
                  • %t — поточний час
                  " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "Тема:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "Отримати нові теми для друку" @@ -668,32 +668,32 @@ msgid "Preferences KNotes..." msgstr "Налаштування KNotes…" -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "Надіслати поштою…" -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "Надіслати…" -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "Встановити нагадування…" -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "Зберегти як…" -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "Заблокувати" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "Розблокувати" @@ -770,12 +770,12 @@ msgid "Plain text (*.txt)" msgstr "звичайний текст (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "Зберегти як" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
                  Are you sure you want to " @@ -953,92 +953,92 @@ msgid "Read Popup Note: \"%1\"" msgstr "Прочитати нотатку: «%1»" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "Ви дійсно хочете вилучити нотатку %1?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "Підтвердити вилучення" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "&Вилучити" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "Будь ласка, введіть нову назву:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "Зберегти нотатку як простий текст" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "&Всі стільниці" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "Створити" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "Перейменувати…" -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "Сховати" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "Вилучити" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "Вподобання…" -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "Зберігати над іншими" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "Зберігати під іншими" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "До стільниці" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "Пройтись по нотатках" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "Нагадування:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "Нотатку заблоковано" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" @@ -1047,12 +1047,12 @@ msgstr[2] "Друкувати %1 приміток" msgstr[3] "Друкувати %1 примітку" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "Теми для друку не знайдено." -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "Помилка друку" diff -Nru knotes-19.04.3/po/uk/libnoteshared.po knotes-19.12.3/po/uk/libnoteshared.po --- knotes-19.04.3/po/uk/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/uk/libnoteshared.po 2020-03-03 00:34:46.000000000 +0000 @@ -1,15 +1,15 @@ # Translation of libnoteshared.po to Ukrainian -# Copyright (C) 2013-2017 This_file_is_part_of_KDE +# Copyright (C) 2013-2019 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 , 2013, 2014, 2017. +# Yuri Chornoivan , 2013, 2014, 2017, 2019. msgid "" msgstr "" "Project-Id-Version: libnoteshared\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-01-27 11:37+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2019-11-16 10:07+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 19.11.70\n" #: alarms/notealarmdialog.cpp:77 #, kde-format @@ -103,7 +103,7 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "" "Збірку приховано. Нову нотатку буде збережено, але не буде показано. Хочете " diff -Nru knotes-19.04.3/po/zh_CN/akonadi_notes_agent.po knotes-19.12.3/po/zh_CN/akonadi_notes_agent.po --- knotes-19.04.3/po/zh_CN/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/zh_CN/akonadi_notes_agent.po 2020-03-03 00:34:46.000000000 +0000 @@ -7,16 +7,15 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-06-02 13:15\n" -"Last-Translator: Guo Yunhe (guoyunhe)\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" +"PO-Revision-Date: 2020-01-20 21:56\n" +"Last-Translator: FULL NAME \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\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: crowdin.com\n" "X-Crowdin-Project: kdeorg\n" "X-Crowdin-Language: zh-CN\n" "X-Crowdin-File: /kf5-stable/messages/pim/akonadi_notes_agent.pot\n" @@ -114,7 +113,7 @@ msgid "Your emails" msgstr "wengxt@gmail.com" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "便签已接收" diff -Nru knotes-19.04.3/po/zh_CN/knotes.po knotes-19.12.3/po/zh_CN/knotes.po --- knotes-19.04.3/po/zh_CN/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/zh_CN/knotes.po 2020-03-03 00:34:46.000000000 +0000 @@ -12,16 +12,15 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-06-02 13:15\n" -"Last-Translator: Guo Yunhe (guoyunhe)\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2020-01-20 21:56\n" +"Last-Translator: FULL NAME \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\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: crowdin.com\n" "X-Crowdin-Project: kdeorg\n" "X-Crowdin-Language: zh-CN\n" "X-Crowdin-File: /kf5-stable/messages/pim/knotes.pot\n" @@ -317,22 +316,22 @@ msgid "Rename note" msgstr "重命名便笺" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "在托盘图标显示便笺数量" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "默认标题:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "工作方式解释" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

                  You can customize title note. You can use:

                  • %d current date " @@ -342,12 +341,12 @@ "

                    您可以自定义便笺标题。您可以使用:

                    • %d 当前日期 (短格式)
                    • %l 当前日期 (长格式)
                    • %t 当前时间
                    " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "主题:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "下载新打印主题" @@ -661,32 +660,32 @@ msgid "Preferences KNotes..." msgstr "KNotes 首选项..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "邮寄..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "发送..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "设定提醒..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "另存为..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "锁定" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "取消锁定" @@ -760,12 +759,12 @@ msgid "Plain text (*.txt)" msgstr "纯文本 (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "另存为" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
                    Are you sure you want to " @@ -939,103 +938,103 @@ msgid "Read Popup Note: \"%1\"" msgstr "阅读弹出便笺:“%1”" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "您真要删除便笺 %1 吗?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "确认删除" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "删除(&D)" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "请输入新的名字:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "将便笺另存为纯文本" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "所有桌面(&A)" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "新建" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "重命名..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "隐藏" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "删除" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "首选项..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "常居顶端" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "常居底端" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "移到桌面" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "便笺漫游" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "提醒:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "便笺已锁定" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "打印 %1 个便笺" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "未找到打印主题" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "打印错误" diff -Nru knotes-19.04.3/po/zh_CN/libnoteshared.po knotes-19.12.3/po/zh_CN/libnoteshared.po --- knotes-19.04.3/po/zh_CN/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/zh_CN/libnoteshared.po 2020-03-03 00:34:46.000000000 +0000 @@ -6,16 +6,15 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-06-02 13:16\n" -"Last-Translator: Guo Yunhe (guoyunhe)\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" +"PO-Revision-Date: 2020-01-20 21:56\n" +"Last-Translator: FULL NAME \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\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: crowdin.com\n" "X-Crowdin-Project: kdeorg\n" "X-Crowdin-Language: zh-CN\n" "X-Crowdin-File: /kf5-stable/messages/pim/libnoteshared.pot\n" @@ -101,9 +100,9 @@ #: job/createnewnotejob.cpp:144 #, kde-format msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" -msgstr "收藏已隐藏。新的便笺将会储存但是不会显示。您想要显示收藏吗?" +msgstr "收藏已隐藏。新的便笺将会被储存但是不会被显示。您想要显示收藏吗?" #: job/createnewnotejob.cpp:198 #, kde-format diff -Nru knotes-19.04.3/po/zh_TW/akonadi_notes_agent.po knotes-19.12.3/po/zh_TW/akonadi_notes_agent.po --- knotes-19.04.3/po/zh_TW/akonadi_notes_agent.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/zh_TW/akonadi_notes_agent.po 2020-03-03 00:34:46.000000000 +0000 @@ -7,10 +7,10 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-06-19 03:21+0200\n" "PO-Revision-Date: 2019-01-19 19:35+0800\n" "Last-Translator: pan93412 \n" -"Language-Team: Chinese \n" +"Language-Team: Chinese \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -111,7 +111,7 @@ msgid "Your emails" msgstr "franklin@nospam.goodhorse.idv.tw" -#: notesmanager.cpp:199 +#: notesmanager.cpp:197 #, kde-format msgid "Note Received" msgstr "接收到便條" diff -Nru knotes-19.04.3/po/zh_TW/knotes.po knotes-19.12.3/po/zh_TW/knotes.po --- knotes-19.04.3/po/zh_TW/knotes.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/zh_TW/knotes.po 2020-03-03 00:34:46.000000000 +0000 @@ -8,21 +8,21 @@ # Frank Weng (a.k.a. Franklin) , 2006, 2009, 2010. # Franklin Weng , 2007, 2008. # Franklin Weng , 2008, 2013, 2014, 2015. -# pan93412 , 2018, 2019. +# pan93412 , 2018, 2019, 2020. msgid "" msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-01-19 19:51+0800\n" +"POT-Creation-Date: 2019-10-24 03:24+0200\n" +"PO-Revision-Date: 2020-01-16 14:41+0800\n" "Last-Translator: pan93412 \n" -"Language-Team: Chinese \n" +"Language-Team: Chinese \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "dot tw>\n" -"X-Generator: Lokalize 18.12.1\n" +"X-Generator: Lokalize 19.12.1\n" "Plural-Forms: nplurals=1; plural=0;\n" #, kde-format @@ -316,22 +316,22 @@ msgid "Rename note" msgstr "重新命名便條" -#: configdialog/knoteconfigdialog.cpp:192 +#: configdialog/knoteconfigdialog.cpp:193 #, kde-format msgid "Show number of notes in tray icon" msgstr "在系統匣中顯示便條數量" -#: configdialog/knoteconfigdialog.cpp:199 +#: configdialog/knoteconfigdialog.cpp:200 #, kde-format msgid "Default Title:" msgstr "預設標題:" -#: configdialog/knoteconfigdialog.cpp:206 +#: configdialog/knoteconfigdialog.cpp:207 #, kde-format msgid "How does this work?" msgstr "這是怎麼運作的?" -#: configdialog/knoteconfigdialog.cpp:240 +#: configdialog/knoteconfigdialog.cpp:245 #, kde-format msgid "" "

                    You can customize title note. You can use:

                    • %d current date " @@ -341,12 +341,12 @@ "

                      您可以自訂便條標題。您可以使用:

                      • %d 目前的日期(短格式)
                      • %l 目前的日期(長格式)
                      • %t 目前的時間
                      " -#: configdialog/knoteconfigdialog.cpp:262 +#: configdialog/knoteconfigdialog.cpp:267 #, kde-format msgid "Theme:" msgstr "主題:" -#: configdialog/knoteconfigdialog.cpp:272 +#: configdialog/knoteconfigdialog.cpp:277 #, kde-format msgid "Download new printing themes" msgstr "下載新的列印主題" @@ -399,12 +399,12 @@ #: configdialog/knoteeditorconfigwidget.cpp:55 #, kde-format msgid "Text font:" -msgstr "內文字體" +msgstr "內文字型" #: configdialog/knoteeditorconfigwidget.cpp:64 #, kde-format msgid "Title font:" -msgstr "標題字體" +msgstr "標題字型" #: configdialog/knotesimpleconfigdialog.cpp:64 #, kde-format @@ -551,7 +551,7 @@ #: knoteedit.cpp:147 #, kde-format msgid "Text Font" -msgstr "文字字體" +msgstr "文字字型" #: knoteedit.cpp:151 #, kde-format @@ -660,32 +660,32 @@ msgid "Preferences KNotes..." msgstr "KNotes 喜好設定..." -#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:714 +#: kontactplugin/knotes_part.cpp:172 notes/knote.cpp:715 #, kde-format msgid "Mail..." msgstr "寄送..." -#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:710 +#: kontactplugin/knotes_part.cpp:177 notes/knote.cpp:711 #, kde-format msgid "Send..." msgstr "傳送..." -#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:705 +#: kontactplugin/knotes_part.cpp:182 notes/knote.cpp:706 #, kde-format msgid "Set Alarm..." msgstr "設定鬧鈴..." -#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:718 +#: kontactplugin/knotes_part.cpp:197 notes/knote.cpp:719 #, kde-format msgid "Save As..." msgstr "另存為..." -#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:691 +#: kontactplugin/knotes_part.cpp:202 notes/knote.cpp:692 #, kde-format msgid "Lock" msgstr "鎖定" -#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:694 +#: kontactplugin/knotes_part.cpp:205 notes/knote.cpp:695 #, kde-format msgid "Unlock" msgstr "解除鎖定" @@ -759,12 +759,12 @@ msgid "Plain text (*.txt)" msgstr "純文字 (*.txt)" -#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:517 +#: kontactplugin/knotes_part.cpp:747 notes/knote.cpp:518 #, kde-format msgid "Save As" msgstr "另存新檔" -#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:534 +#: kontactplugin/knotes_part.cpp:758 notes/knote.cpp:535 #, kde-format msgid "" "A file named %1 already exists.
                      Are you sure you want to " @@ -939,103 +939,103 @@ msgid "Read Popup Note: \"%1\"" msgstr "讀取便條:%1" -#: notes/knote.cpp:150 +#: notes/knote.cpp:149 #, kde-format msgid "Do you really want to delete note %1?" msgstr "您確定要刪除標題為%1的便條紙?" -#: notes/knote.cpp:151 +#: notes/knote.cpp:150 #, kde-format msgid "Confirm Delete" msgstr "刪除確認" -#: notes/knote.cpp:152 +#: notes/knote.cpp:151 #, kde-format msgid "&Delete" msgstr "刪除(&D)" -#: notes/knote.cpp:278 +#: notes/knote.cpp:277 #, kde-format msgid "Please enter the new name:" msgstr "請輸入新標題:" -#: notes/knote.cpp:512 +#: notes/knote.cpp:511 #, kde-format msgid "Save note as plain text" msgstr "存成純文字檔" -#: notes/knote.cpp:640 +#: notes/knote.cpp:641 #, kde-format msgid "&All Desktops" msgstr "所有桌面(&A)" -#: notes/knote.cpp:682 +#: notes/knote.cpp:683 #, kde-format msgid "New" msgstr "新增" -#: notes/knote.cpp:686 +#: notes/knote.cpp:687 #, kde-format msgid "Rename..." msgstr "重新命名..." -#: notes/knote.cpp:696 +#: notes/knote.cpp:697 #, kde-format msgid "Hide" msgstr "隱藏" -#: notes/knote.cpp:701 +#: notes/knote.cpp:702 #, kde-format msgid "Delete" msgstr "刪除" -#: notes/knote.cpp:728 +#: notes/knote.cpp:729 #, kde-format msgid "Preferences..." msgstr "設定偏好..." -#: notes/knote.cpp:733 +#: notes/knote.cpp:734 #, kde-format msgid "Keep Above Others" msgstr "顯示在最上層" -#: notes/knote.cpp:738 +#: notes/knote.cpp:739 #, kde-format msgid "Keep Below Others" msgstr "顯示在最下層" -#: notes/knote.cpp:743 +#: notes/knote.cpp:744 #, kde-format msgid "To Desktop" msgstr "移至桌面" -#: notes/knote.cpp:753 +#: notes/knote.cpp:754 #, kde-format msgid "Walk Through Notes" msgstr "瀏覽所有便條紙" -#: print/knotegrantleeprint.cpp:50 +#: print/knotegrantleeprint.cpp:47 #, kde-format msgid "Alarm:" msgstr "鬧鈴:" -#: print/knotegrantleeprint.cpp:51 +#: print/knotegrantleeprint.cpp:48 #, kde-format msgid "Note is locked" msgstr "便條已鎖定" -#: print/knoteprinter.cpp:135 +#: print/knoteprinter.cpp:134 #, kde-format msgid "Print Note" msgid_plural "Print %1 notes" msgstr[0] "列印 %1 張備註" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing theme was not found." msgstr "找不到列印主題。" -#: print/knoteprinter.cpp:143 +#: print/knoteprinter.cpp:142 #, kde-format msgid "Printing error" msgstr "列印失敗" diff -Nru knotes-19.04.3/po/zh_TW/libnoteshared.po knotes-19.12.3/po/zh_TW/libnoteshared.po --- knotes-19.04.3/po/zh_TW/libnoteshared.po 2019-07-09 00:20:51.000000000 +0000 +++ knotes-19.12.3/po/zh_TW/libnoteshared.po 2020-03-03 00:34:46.000000000 +0000 @@ -7,10 +7,10 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-11-16 08:00+0100\n" "PO-Revision-Date: 2018-12-21 19:37+0800\n" "Last-Translator: pan93412 \n" -"Language-Team: Chinese \n" +"Language-Team: Chinese \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -97,9 +97,12 @@ msgstr "抓取時發生錯誤。您要選擇新的預設收藏嗎?" #: job/createnewnotejob.cpp:144 -#, kde-format +#, fuzzy, kde-format +#| msgid "" +#| "Collection is hidden. New note will stored but not displaying. Do you " +#| "want to show collection?" msgid "" -"Collection is hidden. New note will stored but not displaying. Do you want " +"Collection is hidden. New note will be stored but not displayed. Do you want " "to show collection?" msgstr "收藏已隱藏。新的便條將會儲存但不會顯示。您要顯示收藏嗎?" diff -Nru knotes-19.04.3/README knotes-19.12.3/README --- knotes-19.04.3/README 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/README 2020-03-01 09:54:33.000000000 +0000 @@ -5,9 +5,9 @@ the KDE project. It tries to be as fast and lightweight as possible although including some advanced features. - KNotes conforms to the KDEPIM coding standards: + KNotes conforms to the KDE Frameworks coding standards: - http://kdepim.kde.org/development/coding.php + https://techbase.kde.org/Policies/Frameworks_Coding_Style Features ======== diff -Nru knotes-19.04.3/src/apps/knotesakonaditray.cpp knotes-19.12.3/src/apps/knotesakonaditray.cpp --- knotes-19.04.3/src/apps/knotesakonaditray.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/apps/knotesakonaditray.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -64,7 +64,7 @@ // number doesn't fit into the available space float countFontSize = countFont.pointSizeF(); QFontMetrics qfm(countFont); - const int width = qfm.width(countString); + const int width = qfm.boundingRect(countString).width(); if (width > (overlaySize - 2)) { countFontSize *= float(overlaySize - 2) / float(width); countFont.setPointSizeF(countFontSize); diff -Nru knotes-19.04.3/src/apps/knotesapp.cpp knotes-19.12.3/src/apps/knotesapp.cpp --- knotes-19.04.3/src/apps/knotesapp.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/apps/knotesapp.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -232,7 +232,7 @@ connect(mNoteRecorder->changeRecorder(), &Akonadi::Monitor::itemRemoved, this, &KNotesApp::slotItemRemoved); - connect(mNoteRecorder->changeRecorder(), QOverload &>::of(&Akonadi::ChangeRecorder::collectionChanged), + connect(mNoteRecorder->changeRecorder(), qOverload &>(&Akonadi::ChangeRecorder::collectionChanged), this, &KNotesApp::slotCollectionChanged); connect(qApp, &QGuiApplication::commitDataRequest, @@ -580,7 +580,7 @@ { // create a new preferences dialog... KNoteConfigDialog *dialog = new KNoteConfigDialog(i18n("Settings"), this); - connect(dialog, QOverload<>::of(&KCMultiDialog::configCommitted), this, &KNotesApp::slotConfigUpdated); + connect(dialog, qOverload<>(&KCMultiDialog::configCommitted), this, &KNotesApp::slotConfigUpdated); dialog->show(); } @@ -632,7 +632,8 @@ QHashIterator i(mNotes); while (i.hasNext()) { i.next(); - foreach (QAction *action, actionCollection->actions()) { + const auto lst = actionCollection->actions(); + for (QAction *action : lst) { QAction *toChange = i.value()->actionCollection()->action(action->objectName()); if (toChange) { toChange->setShortcuts(action->shortcuts()); diff -Nru knotes-19.04.3/src/apps/main.cpp knotes-19.12.3/src/apps/main.cpp --- knotes-19.04.3/src/apps/main.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/apps/main.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -42,8 +42,8 @@ qunsetenv("SESSION_MANAGER"); QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); + QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps, true); Application app(argc, &argv); - app.setAttribute(Qt::AA_UseHighDpiPixmaps, true); KCrash::initialize(); KNotesMigrateApplication migrate; migrate.migrate(); diff -Nru knotes-19.04.3/src/CMakeLists.txt knotes-19.12.3/src/CMakeLists.txt --- knotes-19.04.3/src/CMakeLists.txt 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/CMakeLists.txt 2020-03-01 09:54:33.000000000 +0000 @@ -56,7 +56,7 @@ KF5::IconThemes PRIVATE KF5::PimCommon - KF5::KCMUtils Grantlee5::Templates KF5::NewStuff KF5::WindowSystem Qt5::PrintSupport KF5::TextWidgets KF5::I18n notesharedprivate KF5::AkonadiSearchPIM KF5::AkonadiNotes KF5::PimTextEdit KF5::AkonadiWidgets + KF5::KCMUtils Grantlee5::Templates KF5::NewStuff KF5::WindowSystem Qt5::PrintSupport KF5::TextWidgets KF5::I18n notesharedprivate KF5::AkonadiSearchPIM KF5::AkonadiNotes KF5::PimTextEdit KF5::AkonadiWidgets KF5::GrantleeTheme ) set_target_properties(knotesprivate @@ -99,7 +99,7 @@ KF5::GlobalAccel KF5::Notifications KF5::WindowSystem - KF5::KDELibs4Support + KF5::KIOFileWidgets KF5::AkonadiSearchDebug KF5::AkonadiNotes KF5::Crash @@ -138,6 +138,6 @@ install( FILES ${CMAKE_CURRENT_BINARY_DIR}/knotesglobalconfig.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR}) install( FILES data/knotesappui.rc data/knotesui.rc DESTINATION ${KDE_INSTALL_KXMLGUI5DIR}/knotes) install( FILES apps/org.kde.KNotes.xml DESTINATION ${KDE_INSTALL_DBUSINTERFACEDIR}) -install( FILES data/knotes_printing_theme.knsrc DESTINATION ${KDE_INSTALL_CONFDIR} ) +install( FILES data/knotes_printing_theme.knsrc DESTINATION ${KDE_INSTALL_KNSRCDIR} ) install(DIRECTORY print/themes/ DESTINATION ${KDE_INSTALL_DATADIR}/knotes/print/themes ) diff -Nru knotes-19.04.3/src/configdialog/knoteconfigdialog.cpp knotes-19.12.3/src/configdialog/knoteconfigdialog.cpp --- knotes-19.04.3/src/configdialog/knoteconfigdialog.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/configdialog/knoteconfigdialog.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -30,6 +30,7 @@ #include "config/notenetworkconfig.h" #include "print/knoteprintselectthemecombobox.h" +#include #include #include #include @@ -210,7 +211,11 @@ howItWorks->setContextMenuPolicy(Qt::NoContextMenu); lay->addStretch(); load(); - connect(mDefaultTitle, &QLineEdit::textChanged, this, QOverload<>::of(&KNoteMiscConfig::changed)); +#if KCONFIGWIDGETS_VERSION < QT_VERSION_CHECK(5, 64, 0) + connect(mDefaultTitle, &QLineEdit::textChanged, this, qOverload<>(&KNoteMiscConfig::changed)); +#else + connect(mDefaultTitle, &QLineEdit::textChanged, this, &KNoteMiscConfig::markAsChanged); +#endif } void KNoteMiscConfig::load() @@ -263,7 +268,7 @@ layout->addWidget(label_PrintAction, 0, 0); mSelectTheme = new KNotePrintSelectThemeComboBox(this); - connect(mSelectTheme, QOverload::of(&QComboBox::activated), this, &KNotePrintConfig::slotThemeChanged); + connect(mSelectTheme, qOverload(&QComboBox::activated), this, &KNotePrintConfig::slotThemeChanged); label_PrintAction->setBuddy(mSelectTheme); layout->addWidget(mSelectTheme, 0, 1); if (KAuthorized::authorize(QStringLiteral("ghns"))) { @@ -317,7 +322,11 @@ QHBoxLayout *lay = new QHBoxLayout(this); mCollectionConfigWidget = new KNoteCollectionConfigWidget; lay->addWidget(mCollectionConfigWidget); - connect(mCollectionConfigWidget, &KNoteCollectionConfigWidget::emitChanged, this, QOverload<>::of(&KNoteCollectionConfig::changed)); +#if KCONFIGWIDGETS_VERSION < QT_VERSION_CHECK(5, 64, 0) + connect(mCollectionConfigWidget, &KNoteCollectionConfigWidget::emitChanged, this, qOverload<>(&KNoteCollectionConfig::changed)); +#else + connect(mCollectionConfigWidget, &KNoteCollectionConfigWidget::emitChanged, this, &KNoteCollectionConfig::markAsChanged); +#endif load(); } diff -Nru knotes-19.04.3/src/data/knote_config_misc.desktop knotes-19.12.3/src/data/knote_config_misc.desktop --- knotes-19.04.3/src/data/knote_config_misc.desktop 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/data/knote_config_misc.desktop 2020-03-01 09:54:33.000000000 +0000 @@ -114,7 +114,7 @@ Comment[kk]=Басқа параметрлері Comment[km]=ការ​កំណត់​ដែល​មិន​ត្រូវ​នឹង​កន្លែង​ផ្សេង Comment[ko]=어떤 곳에도 어울리지 않는 설정 -Comment[lt]=Kiti nustatymai +Comment[lt]=Kitos nuostatos Comment[lv]=Iestatījumi, kas citur neiederas Comment[mk]=Поставувања што не се вклопуваат на друго место Comment[mr]=कोठेही न बसणाऱ्या संयोजना @@ -139,7 +139,7 @@ Comment[sr@latin]=Postavke koje ne pripadaju drugde Comment[sv]=Inställningar som inte passar någon annanstans Comment[ta]=அமைப்புகள் எந்த இடத்திலும் பொருந்தவில்லை -Comment[tg]=Дигар танзимотҳо +Comment[tg]=Дигар танзимот Comment[tr]=Diğer bölümlere uymayan yapılandırma seçenekleri Comment[uk]=Інші параметри Comment[wa]=Apontiaedjes k' on n' sait wice mete d' ôte diff -Nru knotes-19.04.3/src/data/knotes_printing_theme.knsrc knotes-19.12.3/src/data/knotes_printing_theme.knsrc --- knotes-19.04.3/src/data/knotes_printing_theme.knsrc 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/data/knotes_printing_theme.knsrc 2020-03-01 09:54:33.000000000 +0000 @@ -8,6 +8,7 @@ Name[fi]=KNotes-tulostusteema Name[fr]=Thème d'impression KNotes Name[gl]=Tema de impresión de KNotes +Name[ia]=Thema de imprimer de knotes Name[it]=Tema di stampa predefinito di KNotes Name[ko]=KNotes 인쇄 테마 Name[nl]=Afdrukthema van KNotes @@ -15,9 +16,11 @@ Name[pt]=Tema de Impressão do KNotes Name[pt_BR]=Tema de impressão do KNotes Name[ru]=Оформление для печати заметок +Name[sk]=Tlačová téma KNotes Name[sv]=Utskriftstema för anteckningslappar Name[uk]=Тема для друку даних KNotes Name[x-test]=xxKNotes Printing Themexx +Name[zh_CN]=KNotes 打印主题 Name[zh_TW]=KNotes 列印主題 ProvidersUrl=https://autoconfig.kde.org/ocs/providers.xml Categories=KNotes Printing Theme diff -Nru knotes-19.04.3/src/data/org.kde.knotes.appdata.xml knotes-19.12.3/src/data/org.kde.knotes.appdata.xml --- knotes-19.04.3/src/data/org.kde.knotes.appdata.xml 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/data/org.kde.knotes.appdata.xml 2020-03-01 09:54:33.000000000 +0000 @@ -13,6 +13,7 @@ KDE-yhteisö La communauté KDE A comunidade de KDE + Le communitate de KDE Komunitas KDE La Comunità KDE KDE 커뮤니티 @@ -21,6 +22,7 @@ A Comunidade do KDE A Comunidade KDE Сообщество KDE + KDE Komunita KDE-gemenskapen Спільнота KDE xxThe KDE Communityxx @@ -72,7 +74,8 @@ Aplicación de notas adhesivas Muistilappusovellus Application de notes autocollantes - Aplicativo de notas pegañentas + Aplicación de notas pegañentas + Application de notas collose Aplikasi catatan lekat Applicazione per le note adesive 찍찍이 노트 프로그램 @@ -105,6 +108,7 @@

                      KNotes est un programme qui vous permet d'avoir l'équivalent électronique des papillons autocollants (Post-it®). Les notes sont enregistrées automatiquement lorsque vous quittez le programme, et elles s'affichent lorsque vous l'ouvrez.

                      KNotes é un programa que permite escribir o que sería un equivalente informático das notas pegañentas. As notas gárdanse automaticamente cando se sae do programa e móstranse cando se abre o programa.

                      A KNotes program használatával kisebb jegyzeteket lehet készíteni. A jegyzetek a programból való kilépéskor automatikusan mentésre kerülnek, a program indulásakor pedig ismét megjelennek.

                      +

                      Knotes es le programma que te permitte scriber le equivalente de notas collose sur le computator. Le notas es saklveguardate automaticamente quando tu exi le programma, e es monstrate quando tu aperi le programma.

                      KNotes adalah program yang memungkinkan kamu menulis komputer yang setara dengan catatan lekat. Catatan disimpan secara otomatis saat kamu keluar dari program, dan catatan itu ditampilkan saat kamu membuka program.

                      KNotes è un programma che ti permette di scrivere nel computer l'equivalente delle note adesive (post-it). Le note vengono salvate automaticamente alla chiusura del programma, e visualizzate quando lo apri.

                      KNotes는 메모를 남길 수 있는 프로그램입니다. 프로그램을 종료할 때 메모를 자동으로 저장하고, 다음 실행 때 보여 줍니다.

                      @@ -170,8 +174,9 @@
                    • Märkuste kirjutamine enda valitud kirja ja taustavärviga
                    • Voit valita muistilappujen fontin ja taustavärin
                    • Écrivez des notes avec la police de caractère et la couleur de fond de votre choix
                    • -
                    • Escriba notas usando o tipo de letra e cor de fondo que prefira.
                    • +
                    • Escriba notas usando a fonte e cor de fondo que prefira
                    • Jegyzetek írása tetszőleges betűtípussal és háttérszínnel
                    • +
                    • Tu scribe notas in tu font e color de fundo preferite
                    • Tulislah catatan dalam warna latarbelakang dan font pilihanmu
                    • Scrivi le note scegliendo il carattere e lo sfondo
                    • 사용자 정의 글꼴 및 배경색 지원
                    • @@ -202,6 +207,7 @@
                    • Utilisez le glisser-déposer pour envoyer vos notes par courriel
                    • Use arrastrar e soltar para enviar as súas notas por correo electrónico.
                    • Jegyzetek elküldése e-mailben a fogd-és-vidd módszerrel
                    • +
                    • Usa ther e poner per inviar via e-posta tu notas
                    • Gunakanlah seret dan taruh untuk menyuratkan catatanmu
                    • Usa la funzione di trascinamento per inviare le note con la posta elettronica
                    • 드래그 앤 드롭으로 바로 이메일 보내기
                    • @@ -232,6 +238,7 @@
                    • Glissez les notes dans le calendrier pour réserver des créneaux horaires
                    • Pode arrastras as notas a un calendario para asocialas a un espazo de tempo.
                    • Naptárba húzható egy időablak lefoglalásához
                    • +
                    • Pote esser trahite in Calendar pro reservar un fissura de tempore
                    • Bisa diseret ke dalam Kalender untuk membukukan slot waktu
                    • Possono essere trascinate e incollate nel Calendario per creare degli intervalli
                    • 달력에 드래그 앤 드롭으로 일정 추가
                    • @@ -262,6 +269,7 @@
                    • Imprimez les notes
                    • Pode imprimir as notas.
                    • A jegyzetek nyomtathatók
                    • +
                    • Notas pote esser imprimite
                    • Catatan bisa dicetak
                    • Le note possono essere stampate
                    • 인쇄 기능
                    • @@ -288,11 +296,17 @@ https://kontact.kde.org/components/knotes.html - https://kde.org/images/screenshots/knotes.png + https://cdn.kde.org/screenshots/knotes/knotes.png KDE knotes + + + + + + diff -Nru knotes-19.04.3/src/data/org.kde.knotes.desktop knotes-19.12.3/src/data/org.kde.knotes.desktop --- knotes-19.04.3/src/data/org.kde.knotes.desktop 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/data/org.kde.knotes.desktop 2020-03-01 09:54:33.000000000 +0000 @@ -163,6 +163,7 @@ Name[fi]=Uusi muistiinpano Name[fr]=Nouvelle note Name[gl]=Nova nota +Name[ia]=Nove notas: Name[it]=Nuova nota Name[ko]=새 노트 Name[nl]=Nieuwe notitie @@ -170,6 +171,7 @@ Name[pt]=Nova Nota Name[pt_BR]=Nova nota Name[ru]=Новая заметка +Name[sk]=Nová Poznámka Name[sl]=Novo sporočilce Name[sv]=Ny anteckning Name[uk]=Нова нотатка diff -Nru knotes-19.04.3/src/dialog/knoteselectednotesdialog.cpp knotes-19.12.3/src/dialog/knoteselectednotesdialog.cpp --- knotes-19.04.3/src/dialog/knoteselectednotesdialog.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/dialog/knoteselectednotesdialog.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -79,7 +79,7 @@ QStringList KNoteSelectedNotesDialog::selectedNotes() const { QStringList lst; - Q_FOREACH (QListWidgetItem *item, mListNotes->selectedItems()) { + for (QListWidgetItem *item : mListNotes->selectedItems()) { Akonadi::Item::Id akonadiId = item->data(AkonadiId).toLongLong(); if (akonadiId != -1) { lst.append(QString::number(akonadiId)); diff -Nru knotes-19.04.3/src/knoteedit.cpp knotes-19.12.3/src/knoteedit.cpp --- knotes-19.04.3/src/knoteedit.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/knoteedit.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -146,7 +146,7 @@ m_textFont = new KFontAction(i18n("Text Font"), this); actions->addAction(QStringLiteral("format_font"), m_textFont); - connect(m_textFont, QOverload::of(&KFontAction::triggered), this, &KNoteEdit::setFontFamily); + connect(m_textFont, qOverload(&KFontAction::triggered), this, &KNoteEdit::setFontFamily); m_textSize = new KFontSizeAction(i18n("Text Size"), this); actions->addAction(QStringLiteral("format_size"), m_textSize); @@ -307,7 +307,7 @@ void KNoteEdit::setTabStop(int tabs) { QFontMetrics fm(font()); - setTabStopWidth(fm.width(QLatin1Char('x')) * tabs); + setTabStopDistance(fm.boundingRect(QLatin1Char('x')).width() * tabs); } void KNoteEdit::setAutoIndentMode(bool newmode) diff -Nru knotes-19.04.3/src/kontactplugin/knoteseditdialog.cpp knotes-19.12.3/src/kontactplugin/knoteseditdialog.cpp --- knotes-19.04.3/src/kontactplugin/knoteseditdialog.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/kontactplugin/knoteseditdialog.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -99,7 +99,8 @@ layout->addWidget(mNoteEdit); actionCollection()->addAssociatedWidget(this); - foreach (QAction *action, actionCollection()->actions()) { + const auto lst = actionCollection()->actions(); + for (QAction *action : lst) { action->setShortcutContext(Qt::WidgetWithChildrenShortcut); } readConfig(); diff -Nru knotes-19.04.3/src/kontactplugin/knotesiconview.cpp knotes-19.12.3/src/kontactplugin/knotesiconview.cpp --- knotes-19.04.3/src/kontactplugin/knotesiconview.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/kontactplugin/knotesiconview.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -31,7 +31,8 @@ #include #include - +#include +#include #include //#define DEBUG_SAVE_NOTE 1 diff -Nru knotes-19.04.3/src/kontactplugin/knotes_part.cpp knotes-19.12.3/src/kontactplugin/knotes_part.cpp --- knotes-19.04.3/src/kontactplugin/knotes_part.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/kontactplugin/knotes_part.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -220,7 +220,7 @@ connect(mNoteRecorder->changeRecorder(), &Akonadi::Monitor::itemRemoved, this, &KNotesPart::slotItemRemoved); - connect(mNoteRecorder->changeRecorder(), QOverload &>::of(&Akonadi::ChangeRecorder::collectionChanged), + connect(mNoteRecorder->changeRecorder(), qOverload &>(&Akonadi::ChangeRecorder::collectionChanged), this, &KNotesPart::slotCollectionChanged); mSelectionModel = new QItemSelectionModel(mNoteTreeModel); @@ -242,7 +242,7 @@ connect(mQuickSearchAction, &QAction::triggered, mNotesWidget, &KNotesWidget::slotFocusQuickSearch); connect(mNotesWidget->notesView(), &QListWidget::itemDoubleClicked, - this, QOverload::of(&KNotesPart::editNote)); + this, qOverload(&KNotesPart::editNote)); connect(mNotesWidget->notesView(), &QListWidget::itemSelectionChanged, this, &KNotesPart::slotOnCurrentChanged); @@ -313,7 +313,7 @@ void KNotesPart::printSelectedNotes(bool preview) { - QList lst = mNotesWidget->notesView()->selectedItems(); + const QList lst = mNotesWidget->notesView()->selectedItems(); if (lst.isEmpty()) { KMessageBox::information( mNotesWidget, @@ -333,7 +333,7 @@ } if (!printingTheme.isEmpty()) { QList listPrintObj; - foreach (QListWidgetItem *item, lst) { + for (QListWidgetItem *item : lst) { listPrintObj.append(new KNotePrintObject(static_cast(item)->item())); } KNotePrinter printer; @@ -635,7 +635,7 @@ { // create a new preferences dialog... KNoteConfigDialog *dialog = new KNoteConfigDialog(i18n("Settings"), widget()); - connect(dialog, QOverload<>::of(&KCMultiDialog::configCommitted), this, &KNotesPart::slotConfigUpdated); + connect(dialog, qOverload<>(&KCMultiDialog::configCommitted), this, &KNotesPart::slotConfigUpdated); dialog->show(); } @@ -745,11 +745,11 @@ QString format; const QString fileName = QFileDialog::getSaveFileName(widget(), i18n("Save As"), QString(), - filters.join(QStringLiteral(";;")), &format); + filters.join(QLatin1String(";;")), &format); if (fileName.isEmpty()) { return; } - const bool htmlFormatAndSaveAsHtml = (knoteItem->isRichText() && !format.contains(QStringLiteral("(*.txt)"))); + const bool htmlFormatAndSaveAsHtml = (knoteItem->isRichText() && !format.contains(QLatin1String("(*.txt)"))); QFile file(fileName); if (file.exists() @@ -860,7 +860,7 @@ Akonadi::ItemFetchJob *fetchJob = qobject_cast(job); const Akonadi::Item::List items = fetchJob->items(); - foreach (const Akonadi::Item &item, items) { + for (const Akonadi::Item &item : items) { if (!item.hasPayload()) { continue; } diff -Nru knotes-19.04.3/src/kontactplugin/knotes_plugin.cpp knotes-19.12.3/src/kontactplugin/knotes_plugin.cpp --- knotes-19.04.3/src/kontactplugin/knotes_plugin.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/kontactplugin/knotes_plugin.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -26,14 +26,14 @@ #include "knotesglobalconfig.h" #include #include -#include +#include #include "knotes-version.h" #include using namespace KPIM; using namespace KCalUtils; -using namespace KCalCore; +using namespace KCalendarCore; #include @@ -148,20 +148,20 @@ } event->accept(); static_cast(part())->newNote( - i18nc("@item", "Meeting"), attendees.join(QStringLiteral(", "))); + i18nc("@item", "Meeting"), attendees.join(QLatin1String(", "))); return; } if (KCalUtils::ICalDrag::canDecode(md)) { - KCalCore::MemoryCalendar::Ptr cal(new KCalCore::MemoryCalendar(QTimeZone::systemTimeZone())); + KCalendarCore::MemoryCalendar::Ptr cal(new KCalendarCore::MemoryCalendar(QTimeZone::systemTimeZone())); if (KCalUtils::ICalDrag::fromMimeData(md, cal)) { - KCalCore::Incidence::List incidences = cal->incidences(); + KCalendarCore::Incidence::List incidences = cal->incidences(); Q_ASSERT(incidences.count()); if (!incidences.isEmpty()) { event->accept(); - KCalCore::Incidence::Ptr i = incidences.first(); + KCalendarCore::Incidence::Ptr i = incidences.first(); QString summary; - if (i->type() == KCalCore::Incidence::TypeJournal) { + if (i->type() == KCalendarCore::Incidence::TypeJournal) { summary = i18nc("@item", "Note: %1", i->summary()); } else { summary = i->summary(); diff -Nru knotes-19.04.3/src/kontactplugin/knotesselectdeletenotesdialog.cpp knotes-19.12.3/src/kontactplugin/knotesselectdeletenotesdialog.cpp --- knotes-19.04.3/src/kontactplugin/knotesselectdeletenotesdialog.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/kontactplugin/knotesselectdeletenotesdialog.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -44,7 +44,7 @@ QListWidgetItem *i = new QListWidgetItem(this); if (item->readOnly()) { i->setText(item->realName() + QLatin1Char(' ') + i18n("(note locked, it will not removed)")); - i->setTextColor(Qt::red); + i->setForeground(Qt::red); } else { i->setText(item->realName()); } diff -Nru knotes-19.04.3/src/kontactplugin/summarywidget.cpp knotes-19.12.3/src/kontactplugin/summarywidget.cpp --- knotes-19.04.3/src/kontactplugin/summarywidget.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/kontactplugin/summarywidget.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -58,7 +58,7 @@ mDefaultPixmap = KIconLoader::global()->loadIcon(QStringLiteral("knotes"), KIconLoader::Desktop); QVBoxLayout *mainLayout = new QVBoxLayout(this); mainLayout->setSpacing(3); - mainLayout->setMargin(3); + mainLayout->setContentsMargins(3, 3, 3, 3); QWidget *header = createHeader(this, QStringLiteral("view-pim-notes"), i18n("Popup Notes")); mainLayout->addWidget(header); @@ -189,10 +189,10 @@ urlLabel->installEventFilter(this); urlLabel->setAlignment(Qt::AlignLeft); urlLabel->setWordWrap(true); - connect(urlLabel, QOverload::of(&KUrlLabel::leftClickedUrl), + connect(urlLabel, qOverload(&KUrlLabel::leftClickedUrl), this, &KNotesSummaryWidget::slotSelectNote); - connect(urlLabel, QOverload::of(&KUrlLabel::rightClickedUrl), + connect(urlLabel, qOverload(&KUrlLabel::rightClickedUrl), this, &KNotesSummaryWidget::slotPopupMenu); mLayout->addWidget(urlLabel, counter, 1); diff -Nru knotes-19.04.3/src/notes/knote.cpp knotes-19.12.3/src/notes/knote.cpp --- knotes-19.04.3/src/notes/knote.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/notes/knote.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -45,7 +45,7 @@ #include #include -#include +#include #include #include #include @@ -53,7 +53,6 @@ #include #include #include -#include #include #include @@ -68,10 +67,10 @@ #include #include #include +#include #if KDEPIM_HAVE_X11 #include -#include #endif //#define DEBUG_SAVE_NOTE 1 @@ -512,15 +511,17 @@ convert->setText(i18n("Save note as plain text")); } QUrl url; - QPointer dlg = new KFileDialog(url, QString(), this, convert); - dlg->setOperationMode(KFileDialog::Saving); + QPointer dlg = new KFileCustomDialog(this); + dlg->setCustomWidget(convert); + dlg->setUrl(url); + dlg->setOperationMode(KFileWidget::Saving); dlg->setWindowTitle(i18n("Save As")); if (!dlg->exec()) { delete dlg; return; } - const QString fileName = dlg->selectedFile(); + const QString fileName = dlg->fileWidget()->selectedFile(); const bool htmlFormatAndSaveAsHtml = (convert && !convert->isChecked()); delete dlg; if (fileName.isEmpty()) { @@ -742,7 +743,7 @@ #if KDEPIM_HAVE_X11 m_toDesktop = new KSelectAction(i18n("To Desktop"), this); actionCollection()->addAction(QStringLiteral("to_desktop"), m_toDesktop); - connect(m_toDesktop, QOverload::of(&KSelectAction::triggered), + connect(m_toDesktop, qOverload(&KSelectAction::triggered), this, &KNote::slotPopupActionToDesktop); connect(m_toDesktop->menu(), &QMenu::aboutToShow, this, &KNote::slotUpdateDesktopActions); @@ -756,7 +757,8 @@ actionCollection()->setDefaultShortcut(action, QKeySequence(Qt::SHIFT + Qt::Key_Backtab)); actionCollection()->addAssociatedWidget(this); - foreach (QAction *action, actionCollection()->actions()) { + const auto lst = actionCollection()->actions(); + for (QAction *action : lst) { action->setShortcutContext(Qt::WidgetWithChildrenShortcut); } if (mAllowDebugAkonadiSearch) { @@ -841,7 +843,8 @@ // if there was just a way of making KComboBox adhere the toolbar height... if (m_tool) { - foreach (KComboBox *combo, m_tool->findChildren()) { + const auto comboboxs = m_tool->findChildren(); + for (KComboBox *combo : comboboxs) { QFont font = combo->font(); font.setPointSize(7); combo->setFont(font); diff -Nru knotes-19.04.3/src/print/autotests/CMakeLists.txt knotes-19.12.3/src/print/autotests/CMakeLists.txt --- knotes-19.04.3/src/print/autotests/CMakeLists.txt 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/print/autotests/CMakeLists.txt 2020-03-01 09:54:33.000000000 +0000 @@ -6,5 +6,5 @@ add_executable( knotesgrantleeprinttest ${knotes_knotesgrantleeprint_source}) add_test(NAME knotesgrantleeprinttest COMMAND knotesgrantleeprinttest) ecm_mark_as_test(knotesgrantleeprinttest) -target_link_libraries( knotesgrantleeprinttest Qt5::Test Qt5::Gui KF5::AkonadiCore knotesprivate KF5::Mime KF5::AkonadiNotes Grantlee5::Templates KF5::PimCommon) +target_link_libraries( knotesgrantleeprinttest Qt5::Test Qt5::Gui KF5::AkonadiCore knotesprivate KF5::Mime KF5::AkonadiNotes Grantlee5::Templates KF5::GrantleeTheme) diff -Nru knotes-19.04.3/src/print/autotests/knotesgrantleeprinttest.cpp knotes-19.12.3/src/print/autotests/knotesgrantleeprinttest.cpp --- knotes-19.04.3/src/print/autotests/knotesgrantleeprinttest.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/print/autotests/knotesgrantleeprinttest.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -36,33 +36,21 @@ { } -void KNotesGrantleePrintTest::shouldDefaultValue() -{ - KNoteGrantleePrint *grantleePrint = new KNoteGrantleePrint; - QVERIFY(grantleePrint); - grantleePrint->deleteLater(); - grantleePrint = nullptr; -} - void KNotesGrantleePrintTest::shouldReturnEmptyStringWhenNotContentAndNoNotes() { - KNoteGrantleePrint *grantleePrint = new KNoteGrantleePrint; + KNoteGrantleePrint grantleePrint; QList lst; - const QString result = grantleePrint->notesToHtml(lst); + const QString result = grantleePrint.notesToHtml(lst); QVERIFY(result.isEmpty()); - grantleePrint->deleteLater(); - grantleePrint = nullptr; } void KNotesGrantleePrintTest::shouldReturnEmptyStringWhenAddContentWithoutNotes() { - KNoteGrantleePrint *grantleePrint = new KNoteGrantleePrint; - grantleePrint->setContent(QStringLiteral("foo")); + KNoteGrantleePrint grantleePrint; + grantleePrint.setTemplateContent(QStringLiteral("foo")); QList lst; - const QString result = grantleePrint->notesToHtml(lst); + const QString result = grantleePrint.notesToHtml(lst); QVERIFY(result.isEmpty()); - grantleePrint->deleteLater(); - grantleePrint = nullptr; } void KNotesGrantleePrintTest::shouldDisplayNoteInfo_data() @@ -79,8 +67,8 @@ QFETCH(QString, result); Akonadi::Item note(42); - KNoteGrantleePrint *grantleePrint = new KNoteGrantleePrint; - grantleePrint->setContent(QStringLiteral("{% if notes %}{% for note in notes %}{{ note.%1 }}{% endfor %}{% endif %}").arg(variable)); + KNoteGrantleePrint grantleePrint; + grantleePrint.setTemplateContent(QStringLiteral("{% if notes %}{% for note in notes %}{{ note.%1 }}{% endfor %}{% endif %}").arg(variable)); KMime::Message::Ptr msg(new KMime::Message); note.setMimeType(Akonadi::NoteUtils::noteMimeType()); @@ -97,10 +85,8 @@ QList lst; KNotePrintObject *obj = new KNotePrintObject(note); lst << obj; - const QString html = grantleePrint->notesToHtml(lst); + const QString html = grantleePrint.notesToHtml(lst); QCOMPARE(html, result); - grantleePrint->deleteLater(); - grantleePrint = nullptr; } QTEST_MAIN(KNotesGrantleePrintTest) diff -Nru knotes-19.04.3/src/print/autotests/knotesgrantleeprinttest.h knotes-19.12.3/src/print/autotests/knotesgrantleeprinttest.h --- knotes-19.04.3/src/print/autotests/knotesgrantleeprinttest.h 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/print/autotests/knotesgrantleeprinttest.h 2020-03-01 09:54:33.000000000 +0000 @@ -29,7 +29,6 @@ ~KNotesGrantleePrintTest(); private Q_SLOTS: - void shouldDefaultValue(); void shouldReturnEmptyStringWhenNotContentAndNoNotes(); void shouldReturnEmptyStringWhenAddContentWithoutNotes(); diff -Nru knotes-19.04.3/src/print/knotegrantleeprint.cpp knotes-19.12.3/src/print/knotegrantleeprint.cpp --- knotes-19.04.3/src/print/knotegrantleeprint.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/print/knotegrantleeprint.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -21,13 +21,10 @@ #include "knoteprintobject.h" #include -KNoteGrantleePrint::KNoteGrantleePrint(QObject *parent) - : PimCommon::GenericGrantleeFormatter(parent) -{ -} +KNoteGrantleePrint::KNoteGrantleePrint() = default; -KNoteGrantleePrint::KNoteGrantleePrint(const QString &themePath, QObject *parent) - : PimCommon::GenericGrantleeFormatter(QStringLiteral("theme.html"), themePath, parent) +KNoteGrantleePrint::KNoteGrantleePrint(const QString &themePath) + : GrantleeTheme::GenericFormatter(QStringLiteral("theme.html"), themePath) { } diff -Nru knotes-19.04.3/src/print/knotegrantleeprint.h knotes-19.12.3/src/print/knotegrantleeprint.h --- knotes-19.04.3/src/print/knotegrantleeprint.h 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/print/knotegrantleeprint.h 2020-03-01 09:54:33.000000000 +0000 @@ -22,16 +22,15 @@ #include "knotes_export.h" -#include +#include class KNotePrintObject; -class KNOTES_EXPORT KNoteGrantleePrint : public PimCommon::GenericGrantleeFormatter +class KNOTES_EXPORT KNoteGrantleePrint : public GrantleeTheme::GenericFormatter { - Q_OBJECT public: - explicit KNoteGrantleePrint(QObject *parent = nullptr); - explicit KNoteGrantleePrint(const QString &themePath, QObject *parent = nullptr); + KNoteGrantleePrint(); + explicit KNoteGrantleePrint(const QString &themePath); ~KNoteGrantleePrint(); QString notesToHtml(const QList &lst); diff -Nru knotes-19.04.3/src/print/knoteprinter.cpp knotes-19.12.3/src/print/knoteprinter.cpp --- knotes-19.04.3/src/print/knoteprinter.cpp 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/print/knoteprinter.cpp 2020-03-01 09:54:33.000000000 +0000 @@ -40,7 +40,6 @@ KNotePrinter::KNotePrinter(QObject *parent) : QObject(parent) - , mGrantleePrint(nullptr) { } @@ -117,7 +116,7 @@ painter.setFont(m_defaultFont); const QString pageNumber(QString::number(page)); painter.drawText( - clip.right() - painter.fontMetrics().width(pageNumber), + clip.right() - painter.fontMetrics().boundingRect(pageNumber).width(), clip.bottom() + painter.fontMetrics().ascent() + 5, pageNumber); @@ -129,7 +128,7 @@ void KNotePrinter::printNotes(const QList &lst, const QString &themePath, bool preview) { - mGrantleePrint = new KNoteGrantleePrint(themePath, this); + mGrantleePrint.reset(new KNoteGrantleePrint(themePath)); if (mGrantleePrint->errorMessage().isEmpty()) { const QString htmlText = mGrantleePrint->notesToHtml(lst); const QString dialogCaption = i18np("Print Note", "Print %1 notes", diff -Nru knotes-19.04.3/src/print/knoteprinter.h knotes-19.12.3/src/print/knoteprinter.h --- knotes-19.04.3/src/print/knoteprinter.h 2019-06-24 05:04:42.000000000 +0000 +++ knotes-19.12.3/src/print/knoteprinter.h 2020-03-01 09:54:33.000000000 +0000 @@ -24,6 +24,8 @@ #include +#include + class QPrinter; class KNotePrintObject; class KNoteGrantleePrint; @@ -47,7 +49,7 @@ QFont m_defaultFont; QString mHtmlPreviewText; - KNoteGrantleePrint *mGrantleePrint = nullptr; + std::unique_ptr mGrantleePrint; }; #endif // KNOTEPRINTER