Hello community, here is the log from the commit of package gwenview5 for openSUSE:Factory checked in at 2018-07-18 22:39:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gwenview5 (Old) and /work/SRC/openSUSE:Factory/.gwenview5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gwenview5" Wed Jul 18 22:39:59 2018 rev:37 rq:622610 version:18.04.3 Changes: -------- --- /work/SRC/openSUSE:Factory/gwenview5/gwenview5.changes 2018-06-13 15:19:09.533186829 +0200 +++ /work/SRC/openSUSE:Factory/.gwenview5.new/gwenview5.changes 2018-07-18 22:40:01.253729375 +0200 @@ -1,0 +2,14 @@ +Fri Jul 13 04:49:48 UTC 2018 - [email protected] + +- Update to 18.04.3 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-18.04.3.php +- Changes since 18.04.2: + * Fix external application menu occasionally slowing down startup (kde#395925) + * Fix issues with cursors and unwanted actions when right-clicking + * Reset zoom cursor more reliably + * Fix QFileDialog::selectUrl() setting initial directory + * Enable AutoErrorHandling for rename job (kde#395890) + +------------------------------------------------------------------- Old: ---- gwenview-18.04.2.tar.xz New: ---- gwenview-18.04.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gwenview5.spec ++++++ --- /var/tmp/diff_new_pack.1wBBR9/_old 2018-07-18 22:40:02.273725995 +0200 +++ /var/tmp/diff_new_pack.1wBBR9/_new 2018-07-18 22:40:02.277725982 +0200 @@ -19,7 +19,7 @@ %bcond_without lang Name: gwenview5 -Version: 18.04.2 +Version: 18.04.3 Release: 0 %define kf5_version 5.26.0 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) ++++++ gwenview-18.04.2.tar.xz -> gwenview-18.04.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/CMakeLists.txt new/gwenview-18.04.3/CMakeLists.txt --- old/gwenview-18.04.2/CMakeLists.txt 2018-06-05 02:29:19.000000000 +0200 +++ new/gwenview-18.04.3/CMakeLists.txt 2018-07-10 02:07:17.000000000 +0200 @@ -3,7 +3,7 @@ # KDE Application Version, managed by release script set (KDE_APPLICATIONS_VERSION_MAJOR "18") set (KDE_APPLICATIONS_VERSION_MINOR "04") -set (KDE_APPLICATIONS_VERSION_MICRO "2") +set (KDE_APPLICATIONS_VERSION_MICRO "3") set (KDE_APPLICATIONS_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}") project(gwenview VERSION ${KDE_APPLICATIONS_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/app/fileoperations.cpp new/gwenview-18.04.3/app/fileoperations.cpp --- old/gwenview-18.04.2/app/fileoperations.cpp 2018-06-03 08:10:57.000000000 +0200 +++ new/gwenview-18.04.3/app/fileoperations.cpp 2018-07-09 21:50:29.000000000 +0200 @@ -245,8 +245,8 @@ newUrl.setPath(newUrl.path() + name); KIO::SimpleJob* job = KIO::rename(oldUrl, newUrl, KIO::HideProgressInfo); KJobWidgets::setWindow(job, parent); + job->uiDelegate()->setAutoErrorHandlingEnabled(true); if (!job->exec()) { - job->uiDelegate()->showErrorMessage(); return; } contextManager->setCurrentUrl(newUrl); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/app/gvcore.cpp new/gwenview-18.04.3/app/gvcore.cpp --- old/gwenview-18.04.2/app/gvcore.cpp 2018-06-03 08:10:57.000000000 +0200 +++ new/gwenview-18.04.3/app/gvcore.cpp 2018-07-09 21:50:29.000000000 +0200 @@ -70,6 +70,9 @@ DialogGuard<QFileDialog> dialog(mMainWindow); dialog->setAcceptMode(QFileDialog::AcceptSave); dialog->setWindowTitle(i18nc("@title:window", "Save Image")); + // Temporary workaround for selectUrl() not setting the + // initial directory to url (removed in D4193) + dialog->setDirectoryUrl(url.adjusted(QUrl::RemoveFilename)); dialog->selectUrl(url); QStringList supportedMimetypes; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/app/mainwindow.cpp new/gwenview-18.04.3/app/mainwindow.cpp --- old/gwenview-18.04.2/app/mainwindow.cpp 2018-06-03 08:10:57.000000000 +0200 +++ new/gwenview-18.04.3/app/mainwindow.cpp 2018-07-09 21:50:29.000000000 +0200 @@ -829,12 +829,6 @@ d->setupContextManagerItems(); d->setupFullScreenContent(); -#ifdef HAVE_QTDBUS - d->mMpris2Service = new Mpris2Service(d->mSlideShow, d->mContextManager, - d->mToggleSlideShowAction, d->mFullScreenAction, - d->mGoToPreviousAction, d->mGoToNextAction, this); -#endif - d->updateActions(); updatePreviousNextActions(); d->mSaveBar->initActionDependentWidgets(); @@ -845,6 +839,12 @@ connect(DocumentFactory::instance(), SIGNAL(modifiedDocumentListChanged()), SLOT(slotModifiedDocumentListChanged())); +#ifdef HAVE_QTDBUS + d->mMpris2Service = new Mpris2Service(d->mSlideShow, d->mContextManager, + d->mToggleSlideShowAction, d->mFullScreenAction, + d->mGoToPreviousAction, d->mGoToNextAction, this); +#endif + #ifdef KIPI_FOUND d->mKIPIInterface = new KIPIInterface(this); d->mKIPIExportAction->setKIPIInterface(d->mKIPIInterface); @@ -1371,7 +1371,7 @@ QUrl dirUrl = d->mContextManager->currentDirUrl(); DialogGuard<QFileDialog> dialog(this); - dialog->selectUrl(dirUrl); + dialog->setDirectoryUrl(dirUrl); dialog->setWindowTitle(i18nc("@title:window", "Open Image")); const QStringList mimeFilter = MimeTypeUtils::imageMimeTypes(); dialog->setMimeTypeFilters(mimeFilter); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/app/org.kde.gwenview.appdata.xml new/gwenview-18.04.3/app/org.kde.gwenview.appdata.xml --- old/gwenview-18.04.2/app/org.kde.gwenview.appdata.xml 2018-06-03 08:10:57.000000000 +0200 +++ new/gwenview-18.04.3/app/org.kde.gwenview.appdata.xml 2018-07-09 21:50:29.000000000 +0200 @@ -206,7 +206,7 @@ <li xml:lang="fr">Prise en charge d'actions basiques de gestion de fichiers comme copier, déplacer, supprimer, et autres</li> <li xml:lang="gl">Permite realizar accións básicas de xestión de ficheiros como copiar, mover, eliminar, etc.</li> <li xml:lang="hu">Egyszerű fájlművelet, mint például másolás, áthelyezés, törlés támogatása</li> - <li xml:lang="id">Mendukung tindakan pengelolaan file dasar seperti salin, pindah, hapus, dan lainnya</li> + <li xml:lang="id">Mendukung aksi pengelolaan file dasar seperti salin, pindah, hapus, dan lainnya</li> <li xml:lang="it">Supporta semplici azioni di gestione file come copia, spostamento, eliminazione ed altre</li> <li xml:lang="ko">파일 복사, 이동, 삭제와 같은 기본 파일 관리 작업</li> <li xml:lang="lt">Palaiko paprastą failų tvarkymo veiksmus kaip kopijavimą, perkėlimą, trynimą ir kitus</li> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/lib/documentview/abstractimageview.cpp new/gwenview-18.04.3/lib/documentview/abstractimageview.cpp --- old/gwenview-18.04.2/lib/documentview/abstractimageview.cpp 2018-06-03 08:10:57.000000000 +0200 +++ new/gwenview-18.04.3/lib/documentview/abstractimageview.cpp 2018-07-09 21:50:29.000000000 +0200 @@ -27,6 +27,7 @@ // Qt #include <QDebug> +#include <QGuiApplication> #include <QCursor> #include <QGraphicsSceneMouseEvent> #include <QStandardPaths> @@ -287,6 +288,18 @@ } } +void AbstractImageView::focusInEvent(QFocusEvent* event) +{ + QGraphicsWidget::focusInEvent(event); + + // We might have missed a keyReleaseEvent for the control key, e.g. for Ctrl+O + const bool controlKeyIsCurrentlyDown = QGuiApplication::queryKeyboardModifiers() & Qt::ControlModifier; + if (d->mControlKeyIsDown != controlKeyIsCurrentlyDown) { + d->mControlKeyIsDown = controlKeyIsCurrentlyDown; + updateCursor(); + } +} + qreal AbstractImageView::computeZoomToFit() const { QSizeF docSize = documentSize(); @@ -341,8 +354,11 @@ } } - d->mLastDragPos = event->pos(); - updateCursor(); + // Prepare for panning or dragging + if (event->button() == Qt::LeftButton) { + d->mLastDragPos = event->pos(); + updateCursor(); + } } void AbstractImageView::mouseMoveEvent(QGraphicsSceneMouseEvent* event) @@ -468,7 +484,7 @@ void AbstractImageView::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event) { - if (event->modifiers() == Qt::NoModifier) { + if (event->modifiers() == Qt::NoModifier && event->button() == Qt::LeftButton) { toggleFullScreenRequested(); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/lib/documentview/abstractimageview.h new/gwenview-18.04.3/lib/documentview/abstractimageview.h --- old/gwenview-18.04.2/lib/documentview/abstractimageview.h 2018-06-03 08:10:57.000000000 +0200 +++ new/gwenview-18.04.3/lib/documentview/abstractimageview.h 2018-07-09 21:50:29.000000000 +0200 @@ -129,6 +129,7 @@ virtual void onScrollPosChanged(const QPointF& oldPos) = 0; void resizeEvent(QGraphicsSceneResizeEvent* event) Q_DECL_OVERRIDE; + void focusInEvent(QFocusEvent* event) Q_DECL_OVERRIDE; void keyPressEvent(QKeyEvent* event) Q_DECL_OVERRIDE; void keyReleaseEvent(QKeyEvent* event) Q_DECL_OVERRIDE; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/lib/documentview/birdeyeview.cpp new/gwenview-18.04.3/lib/documentview/birdeyeview.cpp --- old/gwenview-18.04.2/lib/documentview/birdeyeview.cpp 2018-06-03 08:10:57.000000000 +0200 +++ new/gwenview-18.04.3/lib/documentview/birdeyeview.cpp 2018-07-09 21:50:29.000000000 +0200 @@ -239,7 +239,7 @@ void BirdEyeView::mousePressEvent(QGraphicsSceneMouseEvent* event) { - if (d->mVisibleRect.contains(event->pos())) { + if (d->mVisibleRect.contains(event->pos()) && event->button() == Qt::LeftButton) { setCursor(Qt::ClosedHandCursor); d->mStartDragMousePos = event->pos(); d->mStartDragViewPos = d->mDocView->position(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/lib/redeyereduction/redeyereductiontool.cpp new/gwenview-18.04.3/lib/redeyereduction/redeyereductiontool.cpp --- old/gwenview-18.04.2/lib/redeyereduction/redeyereductiontool.cpp 2018-06-03 08:10:57.000000000 +0200 +++ new/gwenview-18.04.3/lib/redeyereduction/redeyereductiontool.cpp 2018-07-09 21:50:29.000000000 +0200 @@ -134,6 +134,9 @@ void RedEyeReductionTool::mousePressEvent(QGraphicsSceneMouseEvent* event) { event->accept(); + if (event->buttons() != Qt::LeftButton) { + return; + } if (d->mStatus == NotSet) { d->mToolWidget->diameterSpinBox->setValue(d->mDiameter); d->mToolWidget->showMainPage(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/po/ca/docs/gwenview/index.docbook new/gwenview-18.04.3/po/ca/docs/gwenview/index.docbook --- old/gwenview-18.04.2/po/ca/docs/gwenview/index.docbook 2018-06-05 02:29:16.000000000 +0200 +++ new/gwenview-18.04.3/po/ca/docs/gwenview/index.docbook 2018-07-10 02:07:16.000000000 +0200 @@ -364,7 +364,7 @@ >Ajusta</guibutton > ajustarà la imatge actual a la mida de la finestra, el botó <guibutton >Omple</guibutton -> ajustarà la imatge fins omplir la finestra, amb l'amplada o alçada, i el botó <guibutton +> ajustarà la imatge fins a omplir la finestra, amb l'amplada o alçada, i el botó <guibutton >100%</guibutton > ajustarà la imatge a la mida de píxels real. La drecera <keycap >F</keycap diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/po/ca/gwenview.po new/gwenview-18.04.3/po/ca/gwenview.po --- old/gwenview-18.04.2/po/ca/gwenview.po 2018-06-05 02:29:11.000000000 +0200 +++ new/gwenview-18.04.3/po/ca/gwenview.po 2018-07-10 02:07:16.000000000 +0200 @@ -12,7 +12,7 @@ "Project-Id-Version: gwenview\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-04-22 06:28+0200\n" -"PO-Revision-Date: 2018-03-23 16:34+0100\n" +"PO-Revision-Date: 2018-07-08 18:09+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca\n" @@ -1916,7 +1916,7 @@ #: lib/documentview/documentviewcontroller.cpp:104 #, kde-format msgid "Zoom to fill window by fitting to width or height" -msgstr "Amplia fins omplir la finestra, ajustant a amplada o alçada" +msgstr "Amplia fins a omplir la finestra, ajustant a amplada o alçada" #: lib/documentview/documentviewcontroller.cpp:106 #, kde-format @@ -2062,7 +2062,7 @@ #, kde-format msgid "Index representing selected ratio in the Advanced settings combobox" msgstr "" -"Índex que representa la relació seleccionada l quadre combinat de " +"Índex que representa la relació seleccionada al quadre combinat de " "l'arranjament avançat" #. i18n: ectx: label, entry (CropRatioWidth), group (Crop) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/po/ca@valencia/gwenview.po new/gwenview-18.04.3/po/ca@valencia/gwenview.po --- old/gwenview-18.04.2/po/ca@valencia/gwenview.po 2018-06-05 02:29:11.000000000 +0200 +++ new/gwenview-18.04.3/po/ca@valencia/gwenview.po 2018-07-10 02:07:16.000000000 +0200 @@ -12,7 +12,7 @@ "Project-Id-Version: gwenview\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-04-22 06:28+0200\n" -"PO-Revision-Date: 2018-03-23 16:34+0100\n" +"PO-Revision-Date: 2018-07-08 18:09+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca@valencia\n" @@ -108,8 +108,8 @@ "Squash colors that don't fit within the active color profile's color gamut, " "leaving other colors untouched" msgstr "" -"Redueix els colors que no s'ajusten a la gamma de colors del perfil de " -"colors actiu, sense modificar els altres colors" +"Redueix els colors que no s'ajusten a la gamma de colors del perfil de colors " +"actiu, sense modificar els altres colors" #: app/browsemainpage.cpp:134 app/mainwindow.cpp:363 app/viewmainpage.cpp:407 #: lib/documentview/documentviewcontroller.cpp:90 @@ -1263,8 +1263,8 @@ #: app/savebar.cpp:86 #, kde-format msgid "" -"You have modified many images. To avoid memory problems, you should save " -"your changes." +"You have modified many images. To avoid memory problems, you should save your " +"changes." msgstr "" "Heu modificat moltes imatges. Per evitar problemes de memòria, hauríeu de " "guardar els canvis." @@ -1434,8 +1434,8 @@ #: app/startmainpage.ui:126 #, kde-format msgid "" -"Browsing by tags is not available. Make sure Nepomuk is properly installed " -"on your computer." +"Browsing by tags is not available. Make sure Nepomuk is properly installed on " +"your computer." msgstr "" "No està disponible la navegació per etiquetes. Comproveu que el Nepomuk " "estiga instal·lat correctament a l'ordinador." @@ -1664,8 +1664,8 @@ msgid "" "The device UDI, used to retrieve information about the device (name, icon...)" msgstr "" -"L'UDI del dispositiu, usat per recuperar informació quant al dispositiu " -"(nom, icona...)" +"L'UDI del dispositiu, usat per recuperar informació quant al dispositiu (nom, " +"icona...)" #: importer/main.cpp:56 #, kde-format @@ -1916,7 +1916,7 @@ #: lib/documentview/documentviewcontroller.cpp:104 #, kde-format msgid "Zoom to fill window by fitting to width or height" -msgstr "Amplia fins omplir la finestra, ajustant a amplària o alçària" +msgstr "Amplia fins a omplir la finestra, ajustant a amplària o alçària" #: lib/documentview/documentviewcontroller.cpp:106 #, kde-format @@ -2006,14 +2006,12 @@ " uses an ICC color profile and an image has colors that do not\n" " fit within the profile's color gamut. \"Perceptual\" will scale\n" " the colors of the entire image so that they all fit within the\n" -" display's capabilities. \"Relative\" will squash only the " -"colors\n" +" display's capabilities. \"Relative\" will squash only the colors\n" " that cannot be displayed, and leave the other colors alone." msgstr "" "Defineix com es representen els colors quan la vostra pantalla\n" " usa un perfil de color ICC i una imatge té colors que no\n" -" encaixen amb la gamma de colors del perfil. «Perceptiu» " -"escalarà\n" +" encaixen amb la gamma de colors del perfil. «Perceptiu» escalarà\n" " els colors de la imatge sencera de manera que s'ajusten amb les\n" " característiques de la pantalla. «Relatiu» només reduirà els " "colors\n" @@ -2062,7 +2060,7 @@ #, kde-format msgid "Index representing selected ratio in the Advanced settings combobox" msgstr "" -"Índex que representa la relació seleccionada l quadre combinat de " +"Índex que representa la relació seleccionada al quadre combinat de " "l'arranjament avançat" #. i18n: ectx: label, entry (CropRatioWidth), group (Crop) @@ -2078,8 +2076,8 @@ #, kde-format msgid "Last used crop ratio height when Advanced Settings enabled" msgstr "" -"Darrera alçària usada de la relació d'escapçat quan l'arranjament avançat " -"era actiu" +"Darrera alçària usada de la relació d'escapçat quan l'arranjament avançat era " +"actiu" #: lib/historymodel.cpp:148 #, kde-format @@ -2364,11 +2362,3 @@ #, kde-format msgid "&View" msgstr "Vi&sualitza" - -#~ msgctxt "@info" -#~ msgid "" -#~ "A file named <filename>%1</filename> already exists.\n" -#~ "Are you sure you want to overwrite it?" -#~ msgstr "" -#~ "Ja existeix un fitxer anomenat <filename>%1</filename>.\n" -#~ "Esteu segur que voleu sobreescriure'l?" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/po/cs/gwenview.po new/gwenview-18.04.3/po/cs/gwenview.po --- old/gwenview-18.04.2/po/cs/gwenview.po 2018-06-05 02:29:11.000000000 +0200 +++ new/gwenview-18.04.3/po/cs/gwenview.po 2018-07-10 02:07:16.000000000 +0200 @@ -9,7 +9,7 @@ "Project-Id-Version: gwenview\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-04-22 06:28+0200\n" -"PO-Revision-Date: 2018-05-31 16:24+0100\n" +"PO-Revision-Date: 2018-06-11 13:19+0100\n" "Last-Translator: Vit Pelcak <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" "Language: cs\n" @@ -546,7 +546,7 @@ #: app/generalconfigpage.ui:128 #, kde-format msgid "Thumbnail actions:" -msgstr "" +msgstr "Činnosti náhledu:" #. i18n: ectx: property (text), widget (QRadioButton, allButtonsThumbnailActionsRadioButton) #: app/generalconfigpage.ui:135 @@ -558,7 +558,7 @@ #: app/generalconfigpage.ui:142 #, kde-format msgid "Show selection button only" -msgstr "" +msgstr "Zobrazit pouze tlačítko výběru" #. i18n: ectx: property (text), widget (QRadioButton, noneThumbnailActionsRadioButton) #. i18n: ectx: property (text), widget (QRadioButton, noAnimationRadioButton) @@ -998,7 +998,7 @@ #, kde-format msgctxt "@action Open Recent menu" msgid "Forget All Files && Folders" -msgstr "" +msgstr "Zapomenout všechny soubory a složky" #: app/mainwindow.cpp:380 #, kde-format @@ -1159,7 +1159,7 @@ #: app/mainwindow.cpp:1439 #, kde-format msgid "Resume Slideshow" -msgstr "" +msgstr "Pokračovat v prezentaci" #: app/mainwindow.cpp:1440 #, kde-format @@ -1374,13 +1374,13 @@ #, kde-format msgctxt "@action Recent Folders view" msgid "Add Folder to Places" -msgstr "" +msgstr "Přidat složku do Umístění" #: app/startmainpage.cpp:279 #, kde-format msgctxt "@action Recent Folders view" msgid "Forget This Folder" -msgstr "" +msgstr "Zapomenout tuto složku" #: app/startmainpage.cpp:280 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/po/fr/gwenview.po new/gwenview-18.04.3/po/fr/gwenview.po --- old/gwenview-18.04.2/po/fr/gwenview.po 2018-06-05 02:29:12.000000000 +0200 +++ new/gwenview-18.04.3/po/fr/gwenview.po 2018-07-10 02:07:16.000000000 +0200 @@ -7,14 +7,15 @@ # xavier <[email protected]>, 2012, 2013. # Sebastien Renard <[email protected]>, 2013. # Peter Potrowl <[email protected]>, 2017, 2018. +# Simon Depiets <[email protected]>, 2018. # msgid "" msgstr "" "Project-Id-Version: gwenview\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-04-22 06:28+0200\n" -"PO-Revision-Date: 2018-03-04 22:52+0100\n" -"Last-Translator: Peter Potrowl <[email protected]>\n" +"PO-Revision-Date: 2018-06-29 15:23+0800\n" +"Last-Translator: Simon Depiets <[email protected]>\n" "Language-Team: French <[email protected]>\n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -29,12 +30,12 @@ #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Olivier Serve, Peter Potrowl" +msgstr "Olivier Serve, Peter Potrowl, Simon Depiets" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "[email protected], [email protected]" +msgstr "[email protected], [email protected], [email protected]" #. i18n: ectx: property (text), widget (QLabel, label_2) #: app/advancedconfigpage.ui:17 @@ -374,7 +375,7 @@ #: app/fileopscontextmanageritem.cpp:190 #, kde-format msgid "Open Containing Folder" -msgstr "Ouvrir le dossier contenant" +msgstr "Ouvrir le dossier contenant cet élément" #: app/fileopscontextmanageritem.cpp:386 #, kde-format @@ -995,11 +996,10 @@ msgstr "Un fichier ou des dossiers pour le démarrage" #: app/mainwindow.cpp:373 -#, fuzzy, kde-format -#| msgid "Forget this Folder" +#, kde-format msgctxt "@action Open Recent menu" msgid "Forget All Files && Folders" -msgstr "Oublier ce dossier" +msgstr "Oublier tous les fichiers et dossiers" #: app/mainwindow.cpp:380 #, kde-format @@ -1153,16 +1153,14 @@ msgstr "Ouvrir une image" #: app/mainwindow.cpp:1436 -#, fuzzy, kde-format -#| msgid "Slideshow" +#, kde-format msgid "Pause Slideshow" -msgstr "Diaporama" +msgstr "Mettre en pause le diaporama" #: app/mainwindow.cpp:1439 -#, fuzzy, kde-format -#| msgid "Slideshow" +#, kde-format msgid "Resume Slideshow" -msgstr "Diaporama" +msgstr "Reprendre le diaporama" #: app/mainwindow.cpp:1440 #, kde-format @@ -1371,48 +1369,40 @@ msgstr "Description" #: app/startmainpage.cpp:278 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Add Folder to Places" +#, kde-format msgctxt "@action Recent Folders view" msgid "Add Folder to Places" msgstr "Ajouter un dossier aux emplacements" #: app/startmainpage.cpp:279 -#, fuzzy, kde-format -#| msgid "Forget this Folder" +#, kde-format msgctxt "@action Recent Folders view" msgid "Forget This Folder" msgstr "Oublier ce dossier" #: app/startmainpage.cpp:280 -#, fuzzy, kde-format -#| msgid "Forget this Folder" +#, kde-format msgctxt "@action Recent Folders view" msgid "Forget All Folders" -msgstr "Oublier ce dossier" +msgstr "Oublier tous les dossiers" #: app/startmainpage.cpp:282 -#, fuzzy, kde-format -#| msgctxt "@action:inmenu" -#| msgid "Add Folder to Places" +#, kde-format msgctxt "@action Recent Files view" msgid "Add Containing Folder to Places" -msgstr "Ajouter un dossier aux emplacements" +msgstr "Ajouter le dossier contenant cet élément aux emplacements" #: app/startmainpage.cpp:283 -#, fuzzy, kde-format -#| msgid "Forget this Folder" +#, kde-format msgctxt "@action Recent Files view" msgid "Forget This File" -msgstr "Oublier ce dossier" +msgstr "Oublier ce fichier" #: app/startmainpage.cpp:284 -#, fuzzy, kde-format -#| msgid "Forget All" +#, kde-format msgctxt "@action Recent Files view" msgid "Forget All Files" -msgstr "Tout oublier" +msgstr "Oublier tous les fichiers" #. i18n: ectx: property (text), widget (QLabel, mHistoryDisabledLabel) #: app/startmainpage.ui:34 @@ -1762,10 +1752,9 @@ msgstr "Développeur" #: lib/crop/cropwidget.cpp:183 -#, fuzzy, kde-format -#| msgid "Print Image" +#, kde-format msgid "Current Image" -msgstr "Imprimer une image" +msgstr "Image actuelle" #: lib/crop/cropwidget.cpp:186 #, kde-format @@ -1783,10 +1772,9 @@ msgstr "Paysage" #: lib/crop/cropwidget.cpp:193 lib/crop/cropwidget.cpp:200 -#, fuzzy, kde-format -#| msgid "ISO Size (A4, A3...)" +#, kde-format msgid "ISO (A4, A3...)" -msgstr "Taille ISO (A4, A3...)" +msgstr "ISO (A4, A3...)" #: lib/crop/cropwidget.cpp:194 lib/crop/cropwidget.cpp:201 #, kde-format @@ -2076,24 +2064,32 @@ #, kde-format msgid "Restrict crop to image ratio when Advanced Settings disabled" msgstr "" +"Limiter le rognage aux proportions de l'image lorsque la Configuration " +"avancée est désactivée" #. i18n: ectx: label, entry (CropRatioIndex), group (Crop) #: lib/gwenviewconfig.kcfg:308 #, kde-format msgid "Index representing selected ratio in the Advanced settings combobox" msgstr "" +"L'indice représentant le ratio sélectionné dans la liste déroulante de la " +"Configuration avancée" #. i18n: ectx: label, entry (CropRatioWidth), group (Crop) #: lib/gwenviewconfig.kcfg:312 #, kde-format msgid "Last used crop ratio width when Advanced Settings enabled" msgstr "" +"Dernière largeur de la proportion de rognage utilisée lorsque la " +"Configuration avancée est activée" #. i18n: ectx: label, entry (CropRatioHeight), group (Crop) #: lib/gwenviewconfig.kcfg:316 #, kde-format msgid "Last used crop ratio height when Advanced Settings enabled" msgstr "" +"Dernière hauteur de la proportion de rognage utilisée lorsque la " +"Configuration avancée est activée" #: lib/historymodel.cpp:148 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gwenview-18.04.2/po/zh_CN/gwenview.po new/gwenview-18.04.3/po/zh_CN/gwenview.po --- old/gwenview-18.04.2/po/zh_CN/gwenview.po 2018-06-05 02:29:15.000000000 +0200 +++ new/gwenview-18.04.3/po/zh_CN/gwenview.po 2018-07-10 02:07:16.000000000 +0200 @@ -14,7 +14,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-04-22 06:28+0200\n" -"PO-Revision-Date: 2018-05-18 06:31-0400\n" +"PO-Revision-Date: 2018-07-03 17:41\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -108,7 +108,7 @@ msgid "" "Squash colors that don't fit within the active color profile's color gamut, " "leaving other colors untouched" -msgstr "" +msgstr "挤压无法适应当前活动色彩方案的色域的色彩,不改变其他颜色" #: app/browsemainpage.cpp:134 app/mainwindow.cpp:363 app/viewmainpage.cpp:407 #: lib/documentview/documentviewcontroller.cpp:90 @@ -984,7 +984,7 @@ #, kde-format msgctxt "@action Open Recent menu" msgid "Forget All Files && Folders" -msgstr "" +msgstr "忘记所有文件和文件夹" #: app/mainwindow.cpp:380 #, kde-format @@ -1358,13 +1358,13 @@ #, kde-format msgctxt "@action Recent Folders view" msgid "Forget This Folder" -msgstr "" +msgstr "忘记此文件夹" #: app/startmainpage.cpp:280 #, kde-format msgctxt "@action Recent Folders view" msgid "Forget All Folders" -msgstr "" +msgstr "忘记所有文件夹" #: app/startmainpage.cpp:282 #, kde-format @@ -1376,13 +1376,13 @@ #, kde-format msgctxt "@action Recent Files view" msgid "Forget This File" -msgstr "" +msgstr "忘记此文件" #: app/startmainpage.cpp:284 #, kde-format msgctxt "@action Recent Files view" msgid "Forget All Files" -msgstr "" +msgstr "忘记所有文件" #. i18n: ectx: property (text), widget (QLabel, mHistoryDisabledLabel) #: app/startmainpage.ui:34 @@ -1713,7 +1713,7 @@ #: lib/crop/cropwidget.cpp:183 #, kde-format msgid "Current Image" -msgstr "" +msgstr "当前图像" #: lib/crop/cropwidget.cpp:186 #, kde-format @@ -1733,7 +1733,7 @@ #: lib/crop/cropwidget.cpp:193 lib/crop/cropwidget.cpp:200 #, kde-format msgid "ISO (A4, A3...)" -msgstr "" +msgstr "ISO (A4,A3...)" #: lib/crop/cropwidget.cpp:194 lib/crop/cropwidget.cpp:201 #, kde-format @@ -1877,7 +1877,7 @@ #: lib/documentview/documentviewcontroller.cpp:104 #, kde-format msgid "Zoom to fill window by fitting to width or height" -msgstr "" +msgstr "缩放到适应窗口,适应到宽度或高度" #: lib/documentview/documentviewcontroller.cpp:106 #, kde-format @@ -2006,25 +2006,25 @@ #: lib/gwenviewconfig.kcfg:304 #, kde-format msgid "Restrict crop to image ratio when Advanced Settings disabled" -msgstr "" +msgstr "当高级设置关闭时,限制裁减到图像的比率" #. i18n: ectx: label, entry (CropRatioIndex), group (Crop) #: lib/gwenviewconfig.kcfg:308 #, kde-format msgid "Index representing selected ratio in the Advanced settings combobox" -msgstr "" +msgstr "高级设置组合框中选择的比率的索引" #. i18n: ectx: label, entry (CropRatioWidth), group (Crop) #: lib/gwenviewconfig.kcfg:312 #, kde-format msgid "Last used crop ratio width when Advanced Settings enabled" -msgstr "" +msgstr "启用高级设置时,上次使用的裁减比率宽度" #. i18n: ectx: label, entry (CropRatioHeight), group (Crop) #: lib/gwenviewconfig.kcfg:316 #, kde-format msgid "Last used crop ratio height when Advanced Settings enabled" -msgstr "" +msgstr "启用高级设置时,上次使用的裁减比率高度" #: lib/historymodel.cpp:148 #, kde-format
