Hello community, here is the log from the commit of package kfloppy for openSUSE:Factory checked in at 2019-12-14 12:09:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kfloppy (Old) and /work/SRC/openSUSE:Factory/.kfloppy.new.4691 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kfloppy" Sat Dec 14 12:09:53 2019 rev:104 rq:756219 version:19.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kfloppy/kfloppy.changes 2019-11-13 13:19:51.759168890 +0100 +++ /work/SRC/openSUSE:Factory/.kfloppy.new.4691/kfloppy.changes 2019-12-14 12:13:56.139294092 +0100 @@ -1,0 +2,26 @@ +Tue Dec 10 06:38:30 UTC 2019 - Luca Beltrame <[email protected]> + +- Update to 19.12.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/releases/19.12.0 +- Changes since 19.11.90: + * Update Appstream for new release + +------------------------------------------------------------------- +Sat Nov 30 09:11:51 UTC 2019 - Luca Beltrame <[email protected]> + +- Update to 19.11.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/19.12-rc +- No code change since 19.11.80 + +------------------------------------------------------------------- +Sun Nov 24 13:29:23 UTC 2019 - Luca Beltrame <[email protected]> + +- Update to 19.11.80 + * New feature release +- No code change since 19.08.3 + +------------------------------------------------------------------- Old: ---- kfloppy-19.08.3.tar.xz kfloppy-19.08.3.tar.xz.sig New: ---- kfloppy-19.12.0.tar.xz kfloppy-19.12.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kfloppy.spec ++++++ --- /var/tmp/diff_new_pack.cKRrpA/_old 2019-12-14 12:13:56.755293985 +0100 +++ /var/tmp/diff_new_pack.cKRrpA/_new 2019-12-14 12:13:56.759293984 +0100 @@ -16,33 +16,32 @@ # -%define kf5_version 5.26.0 +%define kf5_version 5.60.0 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kfloppy -Version: 19.08.3 +Version: 19.12.0 Release: 0 Summary: Floppy Formatter License: GPL-2.0-only Group: System/GUI/KDE URL: https://www.kde.org -Source: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz +Source: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz %if %{with lang} -Source1: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz.sig +Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig Source2: applications.keyring %endif BuildRequires: extra-cmake-modules -BuildRequires: kdoctools-devel -BuildRequires: ki18n-devel -BuildRequires: kio-devel -BuildRequires: kxmlgui-devel -BuildRequires: pkgconfig +BuildRequires: cmake(KF5DocTools) +BuildRequires: cmake(KF5I18n) +BuildRequires: cmake(KF5KIO) +BuildRequires: cmake(KF5XmlGui) BuildRequires: update-desktop-files BuildRequires: cmake(KF5Crash) -BuildRequires: pkgconfig(Qt5Core) -BuildRequires: pkgconfig(Qt5DBus) -BuildRequires: pkgconfig(Qt5Widgets) +BuildRequires: cmake(Qt5Core) +BuildRequires: cmake(Qt5DBus) +BuildRequires: cmake(Qt5Widgets) %if %{with lang} Recommends: %{name}-lang %endif ++++++ applications.keyring ++++++ Binary files /var/tmp/diff_new_pack.cKRrpA/_old and /var/tmp/diff_new_pack.cKRrpA/_new differ ++++++ kfloppy-19.08.3.tar.xz -> kfloppy-19.12.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/CMakeLists.txt new/kfloppy-19.12.0/CMakeLists.txt --- old/kfloppy-19.08.3/CMakeLists.txt 2019-11-05 05:06:14.000000000 +0100 +++ new/kfloppy-19.12.0/CMakeLists.txt 2019-12-06 01:28:26.000000000 +0100 @@ -2,8 +2,8 @@ # KDE Application Version, managed by release script set (KDE_APPLICATIONS_VERSION_MAJOR "19") -set (KDE_APPLICATIONS_VERSION_MINOR "08") -set (KDE_APPLICATIONS_VERSION_MICRO "3") +set (KDE_APPLICATIONS_VERSION_MINOR "12") +set (KDE_APPLICATIONS_VERSION_MICRO "0") set (KDE_APPLICATIONS_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}") project(kfloppy VERSION ${KDE_APPLICATIONS_VERSION}) @@ -34,7 +34,10 @@ add_definitions(-DQT_NO_FOREACH) MESSAGE(STATUS "compile without foreach") endif() -add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) +if (EXISTS "${CMAKE_SOURCE_DIR}/.git") + add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) + add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x060000) +endif() set(kfloppy_SRCS main.cpp format.cpp floppy.cpp ) set_property(SOURCE main.cpp APPEND PROPERTY COMPILE_DEFINITIONS "KFLOPPY_VERSION=\"${KDE_APPLICATIONS_VERSION}\"") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/org.kde.kfloppy.appdata.xml new/kfloppy-19.12.0/org.kde.kfloppy.appdata.xml --- old/kfloppy-19.08.3/org.kde.kfloppy.appdata.xml 2019-11-01 22:53:33.000000000 +0100 +++ new/kfloppy-19.12.0/org.kde.kfloppy.appdata.xml 2019-12-05 22:06:35.000000000 +0100 @@ -122,4 +122,7 @@ <binary>kfloppy</binary> </provides> <project_group>KDE</project_group> + <releases> + <release version="19.12.0" date="2019-12-12"/> + </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ar/kfloppy.po new/kfloppy-19.12.0/po/ar/kfloppy.po --- old/kfloppy-19.08.3/po/ar/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/ar/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2010-07-19 18:57+0400\n" "Last-Translator: Zayed Al-Saidi <[email protected]>\n" "Language-Team: Arabic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/bg/kfloppy.po new/kfloppy-19.12.0/po/bg/kfloppy.po --- old/kfloppy-19.08.3/po/bg/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/bg/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2011-07-22 23:43+0300\n" "Last-Translator: Yasen Pramatarov <[email protected]>\n" "Language-Team: Bulgarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/bs/kfloppy.po new/kfloppy-19.12.0/po/bs/kfloppy.po --- old/kfloppy-19.08.3/po/bs/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/bs/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2013-10-18 20:14+0000\n" "Last-Translator: Samir Ribić <Unknown>\n" "Language-Team: Bosanski <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ca/kfloppy.po new/kfloppy-19.12.0/po/ca/kfloppy.po --- old/kfloppy-19.08.3/po/ca/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/ca/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2017-12-28 22:23+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ca@valencia/kfloppy.po new/kfloppy-19.12.0/po/ca@valencia/kfloppy.po --- old/kfloppy-19.08.3/po/ca@valencia/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/ca@valencia/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -5,19 +5,20 @@ # Albert Astals Cid <[email protected]>, 2002, 2003, 2004, 2005. # Josep Ma. Ferrer <[email protected]>, 2005, 2007, 2008, 2009, 2010, 2015, 2016, 2017. # Manuel Tortosa <[email protected]>, 2009. +# empar <[email protected]>, 2019. msgid "" msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" -"PO-Revision-Date: 2017-12-28 22:23+0100\n" -"Last-Translator: Josep Ma. Ferrer <[email protected]>\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" +"PO-Revision-Date: 2019-09-25 11:00+0200\n" +"Last-Translator: empar <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca@valencia\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.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" @@ -76,7 +77,7 @@ #: floppy.cpp:114 #, kde-format msgid "<qt>This allows you to select the floppy disk's size and density.</qt>" -msgstr "<qt>Ací es permet de seleccionar la mida i densitat del disquet.</qt>" +msgstr "<qt>Ací es permet seleccionar la mida i densitat del disquet.</qt>" #: floppy.cpp:122 #, kde-format @@ -89,13 +90,13 @@ msgid "" "KFloppy supports three file formats under Linux: MS-DOS, Ext2, and Minix" msgstr "" -"KFloppy permet tres formats de fitxers des de Linux: MS-DOS, Ext2, i Minix" +"KFloppy permet tres formats de fitxers des de Linux: MS-DOS, Ext2 i Minix" #: floppy.cpp:133 #, kde-format msgctxt "BSD" msgid "KFloppy supports three file formats under BSD: MS-DOS, UFS, and Ext2" -msgstr "KFloppy permet tres formats de fitxers des de BSD: MS-DOS, UFS, i Ext2" +msgstr "KFloppy permet tres formats de fitxers des de BSD: MS-DOS, UFS i Ext2" #: floppy.cpp:144 floppy.cpp:173 floppy.cpp:607 floppy.cpp:734 #, kde-format @@ -216,7 +217,7 @@ #: floppy.cpp:212 #, kde-format msgid "&Zero out and quick format" -msgstr "Esborrat amb &zeros i format ràpid" +msgstr "Esborrament amb &zeros i format ràpid" #: floppy.cpp:216 #, kde-format @@ -261,8 +262,8 @@ #, kde-format msgid "Program dd <b>not found</b>. Zeroing-out <b>disabled</b>." msgstr "" -"<b>No s'ha trobat</b> el programa dd. S'ha <b>desactivat</b> l'esborrat amb " -"zeros." +"<b>No s'ha trobat</b> el programa dd. S'ha <b>desactivat</b> l'esborrament " +"amb zeros." #: floppy.cpp:252 #, kde-format @@ -276,9 +277,9 @@ "Please note that the floppy will be checked twice if you have selected full " "formatting.</qt>" msgstr "" -"<qt>Marqueu ací si voleu que el disquet es verifiqui després del formatat. " -"Tingueu en compte que el disquet es verificarà dues vegades si heu " -"seleccionat un formatat complet.</qt>" +"<qt>Marqueu ací si voleu que el disquet es verifique després del formatat. " +"Tingueu en compte que el disquet es verifica dues vegades si heu seleccionat " +"un formatat complet.</qt>" #: floppy.cpp:261 #, kde-format @@ -291,7 +292,7 @@ "<qt>Check this if you want a volume label for your floppy. Please note that " "Minix does not support labels at all.</qt>" msgstr "" -"<qt>Marqueu ací si voleu una etiqueta de volum pel disquet. Tingueu en " +"<qt>Marqueu ací si voleu una etiqueta de volum per al disquet. Tingueu en " "compte que Minix no permet l'ús d'etiquetes.</qt>" #: floppy.cpp:274 floppy.cpp:726 @@ -307,7 +308,7 @@ "can only be 11 characters long. Please note that Minix does not support " "labels, whatever you enter here.</qt>" msgstr "" -"<qt>Ací s'indica l'etiqueta de volum. Per limitacions del MS-DOS l'etiqueta " +"<qt>Ací s'indica l'etiqueta de volum. Per limitacions de MS-DOS, l'etiqueta " "només pot tindre 11 caràcters de longitud. Tingueu en compte que el Minix no " "permet l'ús d'etiquetes, encara que la introduïu ací.</qt>" @@ -325,8 +326,7 @@ #, kde-format msgid "<qt>This is the status window, where error messages are displayed.</qt>" msgstr "" -"<qt>Aquesta és la finestra d'estat, a on es mostraran els missatges d'error." -"</qt>" +"<qt>Aquesta és la finestra d'estat, on es mostren els missatges d'error.</qt>" #: floppy.cpp:335 #, kde-format @@ -339,21 +339,20 @@ "KFloppy cannot find any of the needed programs for creating file systems; " "please check your installation.<br /><br />Log:" msgstr "" -"El KFloppy no ha pogut trobar cap dels programes necessaris per crear " -"sistemes de fitxers; per favor, comproveu la vostra instal·lació.<br /><br /" -">Registre:" +"KFloppy no ha pogut trobar cap dels programes necessaris per a crear " +"sistemes de fitxers; comproveu la vostra instal·lació.<br /><br />Registre:" #: floppy.cpp:376 #, kde-format msgid "KDE Floppy Formatter" -msgstr "Formatador de disquet del KDE" +msgstr "Formatador de disquet de KDE" #: floppy.cpp:519 #, kde-format msgctxt "BSD" msgid "Formatting with BSD on a user-given device is only possible with UFS" msgstr "" -"El formatat des del BSD en un dispositiu d'un usuari determinat només és " +"El formatat des de BSD en un dispositiu d'un usuari determinat només és " "possible amb UFS" #: floppy.cpp:527 @@ -363,8 +362,8 @@ "check the correctness of the device name.)<br/>Are you sure you wish to " "proceed?</qt>" msgstr "" -"<qt>En formatar s'esborrarà totes les dades del dispositiu:<br/><b>%1</b><br/" -">(Comproveu si és correcte el nom del dispositiu)<br/>Esteu segur de voler " +"<qt>En formatar s'esborren totes les dades del dispositiu:<br/><b>%1</b><br/" +">(Comproveu si és correcte el nom del dispositiu)<br/>Segur que voleu " "continuar?</qt>" #: floppy.cpp:530 floppy.cpp:545 @@ -384,8 +383,8 @@ "Formatting will erase all data on the disk.\n" "Are you sure you wish to proceed?" msgstr "" -"Formatar esborrarà totes les dades del disc.\n" -"Esteu segur que voleu continuar?" +"El formatat esborrarà totes les dades del disc.\n" +"Segur que voleu continuar?" #: format.cpp:267 #, kde-format @@ -400,7 +399,7 @@ #: format.cpp:294 #, kde-format msgid "Cannot find a device for drive %1 and density %2." -msgstr "No s'ha pogut trobar cap dispositiu per disc %1 i densitat %2." +msgstr "No s'ha pogut trobar cap dispositiu per a la unitat %1 i densitat %2." #: format.cpp:313 #, kde-format @@ -456,7 +455,7 @@ #: format.cpp:508 #, kde-format msgid "Low-level formatting error at track %1." -msgstr "Error en formatar a baix nivell a la pista %1." +msgstr "Error en formatar a baix nivell en la pista %1." #: format.cpp:513 #, kde-format @@ -490,7 +489,7 @@ #: format.cpp:675 #, kde-format msgid "Cannot find a program to create FAT filesystems." -msgstr "No s'ha trobat cap programa per crear sistemes de fitxers FAT." +msgstr "No s'ha trobat cap programa per a crear sistemes de fitxers FAT." #: format.cpp:706 #, kde-format @@ -510,7 +509,7 @@ #, kde-format msgctxt "BSD" msgid "Cannot find a program to create UFS filesystems." -msgstr "No s'ha trobat cap programa per crear sistemes de fitxers UFS." +msgstr "No s'ha trobat cap programa per a crear sistemes de fitxers UFS." #: format.cpp:796 #, kde-format @@ -521,7 +520,7 @@ #: format.cpp:856 #, kde-format msgid "Cannot find a program to create ext2 filesystems." -msgstr "No s'ha trobat cap programa per crear sistemes de fitxers ext2." +msgstr "No s'ha trobat cap programa per a crear sistemes de fitxers ext2." #: format.cpp:873 #, kde-format @@ -531,7 +530,7 @@ #: format.cpp:954 #, kde-format msgid "Cannot find a program to create Minix filesystems." -msgstr "No s'ha trobat cap programa per crear sistemes de fitxers Minix." +msgstr "No s'ha trobat cap programa per a crear sistemes de fitxers Minix." #: format.cpp:971 #, kde-format @@ -541,7 +540,7 @@ #: main.cpp:37 #, kde-format msgid "KDE Floppy Disk Utility" -msgstr "Utilitat de disquet del KDE" +msgstr "Utilitat de disquet de KDE" #: main.cpp:52 #, kde-format @@ -598,7 +597,7 @@ #: main.cpp:65 #, kde-format msgid "Add BSD support" -msgstr "S'ha implementat pel BSD" +msgstr "S'ha implementat per a BSD" #: main.cpp:66 #, kde-format @@ -608,7 +607,7 @@ #: main.cpp:66 #, kde-format msgid "Make KFloppy work again for KDE 3.4" -msgstr "Ha fet que KFloppy funcione un altre cop per al KDE 3.4" +msgstr "Ha fet que KFloppy funcione altra vegada per a KDE 3.4" #: main.cpp:67 #, kde-format @@ -618,7 +617,7 @@ #: main.cpp:67 #, kde-format msgid "Port KFloppy to KF5" -msgstr "Adaptació del KFloppy al KF5" +msgstr "Adaptació de KFloppy al KF5" #: main.cpp:69 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/cs/kfloppy.po new/kfloppy-19.12.0/po/cs/kfloppy.po --- old/kfloppy-19.08.3/po/cs/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/cs/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-30 10:00+0100\n" "Last-Translator: Vít Pelčák <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/da/kfloppy.po new/kfloppy-19.12.0/po/da/kfloppy.po --- old/kfloppy-19.08.3/po/da/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/da/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-07-11 21:43+0100\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/de/kfloppy.po new/kfloppy-19.12.0/po/de/kfloppy.po --- old/kfloppy-19.08.3/po/de/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/de/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2017-02-27 19:53+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/el/kfloppy.po new/kfloppy-19.12.0/po/el/kfloppy.po --- old/kfloppy-19.08.3/po/el/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/el/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-11-02 15:59+0200\n" "Last-Translator: Petros Vidalis <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/en_GB/kfloppy.po new/kfloppy-19.12.0/po/en_GB/kfloppy.po --- old/kfloppy-19.08.3/po/en_GB/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/en_GB/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-04-24 16:15+0100\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/eo/kfloppy.po new/kfloppy-19.12.0/po/eo/kfloppy.po --- old/kfloppy-19.08.3/po/eo/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/eo/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2009-12-29 20:02+0100\n" "Last-Translator: Axel Rousseau <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/es/kfloppy.po new/kfloppy-19.12.0/po/es/kfloppy.po --- old/kfloppy-19.08.3/po/es/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/es/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-26 11:22+0100\n" "Last-Translator: Eloy Cuadra <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/et/kfloppy.po new/kfloppy-19.12.0/po/et/kfloppy.po --- old/kfloppy-19.08.3/po/et/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/et/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-07-26 20:51+0300\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/eu/kfloppy.po new/kfloppy-19.12.0/po/eu/kfloppy.po --- old/kfloppy-19.08.3/po/eu/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/eu/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2017-07-08 16:36+0200\n" "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/fa/kfloppy.po new/kfloppy-19.12.0/po/fa/kfloppy.po --- old/kfloppy-19.08.3/po/fa/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/fa/kfloppy.po 2019-12-06 01:28:22.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2007-08-22 18:45+0330\n" "Last-Translator: Nazanin Kazemi <[email protected]>\n" "Language-Team: Persian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/fi/kfloppy.po new/kfloppy-19.12.0/po/fi/kfloppy.po --- old/kfloppy-19.08.3/po/fi/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/fi/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-29 19:08+0200\n" "Last-Translator: Lasse Liehu <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/fr/kfloppy.po new/kfloppy-19.12.0/po/fr/kfloppy.po --- old/kfloppy-19.08.3/po/fr/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/fr/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2017-05-19 22:07+0100\n" "Last-Translator: Johnny Jazeix <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ga/kfloppy.po new/kfloppy-19.12.0/po/ga/kfloppy.po --- old/kfloppy-19.08.3/po/ga/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/ga/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdeutils/kfloppy.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell <[email protected]>\n" "Language-Team: Irish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/gl/kfloppy.po new/kfloppy-19.12.0/po/gl/kfloppy.po --- old/kfloppy-19.08.3/po/gl/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/gl/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2019-02-15 17:34+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/he/kfloppy.po new/kfloppy-19.12.0/po/he/kfloppy.po --- old/kfloppy-19.08.3/po/he/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/he/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2017-05-16 07:04-0400\n" "Last-Translator: Copied by Zanata <[email protected]>\n" "Language-Team: Hebrew <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/hi/kfloppy.po new/kfloppy-19.12.0/po/hi/kfloppy.po --- old/kfloppy-19.08.3/po/hi/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/hi/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2008-02-03 13:02+0530\n" "Last-Translator: Ravishankar Shrivastava <[email protected]>\n" "Language-Team: Hindi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/hr/kfloppy.po new/kfloppy-19.12.0/po/hr/kfloppy.po --- old/kfloppy-19.08.3/po/hr/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/hr/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kfloppy 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2004-04-20 13:24+CEST\n" "Last-Translator: auto\n" "Language-Team: Croatian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/hu/kfloppy.po new/kfloppy-19.12.0/po/hu/kfloppy.po --- old/kfloppy-19.08.3/po/hu/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/hu/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2009-08-24 11:11+0100\n" "Last-Translator: Tamas Szanto <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ia/kfloppy.po new/kfloppy-19.12.0/po/ia/kfloppy.po --- old/kfloppy-19.08.3/po/ia/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/ia/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2014-04-29 13:37+0200\n" "Last-Translator: G.Sora <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/id/kfloppy.po new/kfloppy-19.12.0/po/id/kfloppy.po --- old/kfloppy-19.08.3/po/id/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/id/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2019-01-19 08:55+0700\n" "Last-Translator: Wantoyo <[email protected]>\n" "Language-Team: Indonesian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/is/kfloppy.po new/kfloppy-19.12.0/po/is/kfloppy.po --- old/kfloppy-19.08.3/po/is/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/is/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2010-05-31 12:37+0000\n" "Last-Translator: Sveinn í Felli <[email protected]>\n" "Language-Team: Icelandic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/it/kfloppy.po new/kfloppy-19.12.0/po/it/kfloppy.po --- old/kfloppy-19.08.3/po/it/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/it/kfloppy.po 2019-12-06 01:28:23.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-09-05 16:50+0100\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ja/kfloppy.po new/kfloppy-19.12.0/po/ja/kfloppy.po --- old/kfloppy-19.08.3/po/ja/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/ja/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2007-06-25 22:00+0900\n" "Last-Translator: Yukiko Bando <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/kk/kfloppy.po new/kfloppy-19.12.0/po/kk/kfloppy.po --- old/kfloppy-19.08.3/po/kk/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/kk/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2010-07-03 10:09+0600\n" "Last-Translator: Sairan Kikkarin <[email protected]>\n" "Language-Team: Kazakh <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/km/kfloppy.po new/kfloppy-19.12.0/po/km/kfloppy.po --- old/kfloppy-19.08.3/po/km/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/km/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2008-12-19 10:25+0700\n" "Last-Translator: Khoem Sokhem <[email protected]>\n" "Language-Team: Khmer <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ko/kfloppy.po new/kfloppy-19.12.0/po/ko/kfloppy.po --- old/kfloppy-19.08.3/po/ko/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/ko/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-12-05 22:46+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/lt/kfloppy.po new/kfloppy-19.12.0/po/lt/kfloppy.po --- old/kfloppy-19.08.3/po/lt/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/lt/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2011-10-06 21:02+0300\n" "Last-Translator: Remigijus Jarmalavičius <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/lv/kfloppy.po new/kfloppy-19.12.0/po/lv/kfloppy.po --- old/kfloppy-19.08.3/po/lv/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/lv/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2009-06-07 20:53+0300\n" "Last-Translator: Viesturs Zariņš <[email protected]>\n" "Language-Team: Latvian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/mr/kfloppy.po new/kfloppy-19.12.0/po/mr/kfloppy.po --- old/kfloppy-19.08.3/po/mr/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/mr/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2013-03-15 14:23+0530\n" "Last-Translator: Chetan Khona <[email protected]>\n" "Language-Team: Marathi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/nb/kfloppy.po new/kfloppy-19.12.0/po/nb/kfloppy.po --- old/kfloppy-19.08.3/po/nb/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/nb/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2009-03-27 09:00+0100\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/nds/kfloppy.po new/kfloppy-19.12.0/po/nds/kfloppy.po --- old/kfloppy-19.08.3/po/nds/kfloppy.po 2019-11-05 05:06:12.000000000 +0100 +++ new/kfloppy-19.12.0/po/nds/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2009-03-11 23:10+0100\n" "Last-Translator: Sönke Dibbern <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/nl/kfloppy.po new/kfloppy-19.12.0/po/nl/kfloppy.po --- old/kfloppy-19.08.3/po/nl/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/nl/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -14,8 +14,8 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" -"PO-Revision-Date: 2019-09-17 10:01+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" +"PO-Revision-Date: 2019-09-17 09:59+0200\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" "Language: nl\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/nn/kfloppy.po new/kfloppy-19.12.0/po/nn/kfloppy.po --- old/kfloppy-19.08.3/po/nn/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/nn/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2019-05-01 11:44+0200\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/pa/kfloppy.po new/kfloppy-19.12.0/po/pa/kfloppy.po --- old/kfloppy-19.08.3/po/pa/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/pa/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2009-01-15 08:57+0530\n" "Last-Translator: A S Alam <[email protected]>\n" "Language-Team: Punjabi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/pl/kfloppy.po new/kfloppy-19.12.0/po/pl/kfloppy.po --- old/kfloppy-19.08.3/po/pl/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/pl/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -1,4 +1,4 @@ -# Version: $Revision: 1550639 $ +# Version: $Revision: 1544608 $ # translation of kfloppy.po to Polish # translation of kfloppy.po to # KTranslator Generated File @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-08-20 08:31+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/pt/kfloppy.po new/kfloppy-19.12.0/po/pt/kfloppy.po --- old/kfloppy-19.08.3/po/pt/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/pt/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-24 11:26+0000\n" "Last-Translator: José Nuno Pires <[email protected]>\n" "Language-Team: pt <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/pt_BR/kfloppy.po new/kfloppy-19.12.0/po/pt_BR/kfloppy.po --- old/kfloppy-19.08.3/po/pt_BR/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/pt_BR/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-24 08:00-0300\n" "Last-Translator: André Marcelo Alvarenga <[email protected]>\n" "Language-Team: Brazilian Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ro/kfloppy.po new/kfloppy-19.12.0/po/ro/kfloppy.po --- old/kfloppy-19.08.3/po/ro/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/ro/kfloppy.po 2019-12-06 01:28:24.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2009-03-19 12:43+0200\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ru/kfloppy.po new/kfloppy-19.12.0/po/ru/kfloppy.po --- old/kfloppy-19.08.3/po/ru/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/ru/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2018-11-20 21:26+0300\n" "Last-Translator: Alexander Yavorsky <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/sk/kfloppy.po new/kfloppy-19.12.0/po/sk/kfloppy.po --- old/kfloppy-19.08.3/po/sk/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/sk/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-25 10:24+0100\n" "Last-Translator: Roman Paholik <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/sl/kfloppy.po new/kfloppy-19.12.0/po/sl/kfloppy.po --- old/kfloppy-19.08.3/po/sl/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/sl/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -2,7 +2,7 @@ # Translation of kfloppy.po to Slovenian # -*- mode:po; coding:iso-latin-2; -*- kfloppy Slovenian message catalogue. # Copyright (C) 2001,2003, 2004, 2005 Free Software Foundation, Inc. -# $Id: kfloppy.po 1550639 2019-08-30 07:08:12Z scripty $ +# $Id: kfloppy.po 1544608 2019-06-21 03:12:06Z scripty $ # $Source$ # # Marko Samastur <[email protected]>, 2000. @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-26 19:12+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/sv/kfloppy.po new/kfloppy-19.12.0/po/sv/kfloppy.po --- old/kfloppy-19.08.3/po/sv/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/sv/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-24 19:40+0100\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/tr/kfloppy.po new/kfloppy-19.12.0/po/tr/kfloppy.po --- old/kfloppy-19.08.3/po/tr/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/tr/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kdeutils-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2017-10-03 15:07+0000\n" "Last-Translator: Kaan <[email protected]>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/kdeutils-k-tr/" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/ug/kfloppy.po new/kfloppy-19.12.0/po/ug/kfloppy.po --- old/kfloppy-19.08.3/po/ug/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/ug/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji <[email protected]>\n" "Language-Team: Uyghur Computer Science Association <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/uk/kfloppy.po new/kfloppy-19.12.0/po/uk/kfloppy.po --- old/kfloppy-19.08.3/po/uk/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/uk/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-03-24 18:57+0200\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/wa/kfloppy.po new/kfloppy-19.12.0/po/wa/kfloppy.po --- old/kfloppy-19.08.3/po/wa/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/wa/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2011-07-17 17:45+0200\n" "Last-Translator: Jean Cayron <[email protected]>\n" "Language-Team: Walloon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/zh_CN/kfloppy.po new/kfloppy-19.12.0/po/zh_CN/kfloppy.po --- old/kfloppy-19.08.3/po/zh_CN/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/zh_CN/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" -"PO-Revision-Date: 2019-10-09 10:13\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" +"PO-Revision-Date: 2019-11-19 23:14\n" "Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kfloppy-19.08.3/po/zh_TW/kfloppy.po new/kfloppy-19.12.0/po/zh_TW/kfloppy.po --- old/kfloppy-19.08.3/po/zh_TW/kfloppy.po 2019-11-05 05:06:13.000000000 +0100 +++ new/kfloppy-19.12.0/po/zh_TW/kfloppy.po 2019-12-06 01:28:25.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kfloppy\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-08-30 07:47+0200\n" +"POT-Creation-Date: 2019-06-21 03:19+0200\n" "PO-Revision-Date: 2016-11-10 14:14+0800\n" "Last-Translator: Jeff Huang <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n"
