Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmplot for openSUSE:Factory checked 
in at 2021-12-13 20:43:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kmplot (Old)
 and      /work/SRC/openSUSE:Factory/.kmplot.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kmplot"

Mon Dec 13 20:43:23 2021 rev:136 rq:937977 version:21.12.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kmplot/kmplot.changes    2021-11-06 
18:20:19.908957247 +0100
+++ /work/SRC/openSUSE:Factory/.kmplot.new.2520/kmplot.changes  2021-12-13 
20:48:41.240569320 +0100
@@ -1,0 +2,25 @@
+Fri Dec  3 19:22:17 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 21.12.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.12.0/
+- No code change since 21.11.90
+
+-------------------------------------------------------------------
+Sat Nov 27 10:11:12 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 21.11.90
+  * New feature release
+- No code change since 21.11.80
+
+-------------------------------------------------------------------
+Sat Nov 13 17:55:36 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 21.11.80
+  * New feature release
+- Changes since 21.08.3:
+  * mimeData signature was changed in qt6 (ported by script)
+  * This is for 20.11
+
+-------------------------------------------------------------------

Old:
----
  kmplot-21.08.3.tar.xz
  kmplot-21.08.3.tar.xz.sig

New:
----
  kmplot-21.12.0.tar.xz
  kmplot-21.12.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kmplot.spec ++++++
--- /var/tmp/diff_new_pack.3HHbPo/_old  2021-12-13 20:48:41.808569683 +0100
+++ /var/tmp/diff_new_pack.3HHbPo/_new  2021-12-13 20:48:41.820569691 +0100
@@ -16,12 +16,11 @@
 #
 
 
-%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:           kmplot
-Version:        21.08.3
+Version:        21.12.0
 Release:        0
 Summary:        Mathematical Function Plotter
 License:        GPL-2.0-or-later


++++++ kmplot-21.08.3.tar.xz -> kmplot-21.12.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/.gitignore 
new/kmplot-21.12.0/.gitignore
--- old/kmplot-21.08.3/.gitignore       2021-10-31 11:16:15.000000000 +0100
+++ new/kmplot-21.12.0/.gitignore       2021-12-02 22:07:41.000000000 +0100
@@ -4,3 +4,4 @@
 .cache
 .idea
 /cmake-build*
+/build*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/CMakeLists.txt 
new/kmplot-21.12.0/CMakeLists.txt
--- old/kmplot-21.08.3/CMakeLists.txt   2021-10-31 11:16:15.000000000 +0100
+++ new/kmplot-21.12.0/CMakeLists.txt   2021-12-02 22:07:41.000000000 +0100
@@ -2,8 +2,8 @@
 
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "21")
-set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "3")
+set (RELEASE_SERVICE_VERSION_MINOR "12")
+set (RELEASE_SERVICE_VERSION_MICRO "0")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 set (RELEASE_SERVICE_COMPACT_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}${RELEASE_SERVICE_VERSION_MINOR}${RELEASE_SERVICE_VERSION_MICRO}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/kmplot/functioneditor.cpp 
new/kmplot-21.12.0/kmplot/functioneditor.cpp
--- old/kmplot-21.08.3/kmplot/functioneditor.cpp        2021-10-31 
11:16:15.000000000 +0100
+++ new/kmplot-21.12.0/kmplot/functioneditor.cpp        2021-12-02 
22:07:41.000000000 +0100
@@ -749,7 +749,11 @@
 }
 
 
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
 QMimeData * FunctionListWidget::mimeData( const QList<QListWidgetItem *> items 
) const
+#else
+QMimeData * FunctionListWidget::mimeData(const QList<QListWidgetItem *> 
&items) const
+#endif
 {
        QDomDocument doc( QStringLiteral("kmpdoc") );
        QDomElement root = doc.createElement( QStringLiteral("kmpdoc") );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/kmplot/functioneditor.h 
new/kmplot-21.12.0/kmplot/functioneditor.h
--- old/kmplot-21.08.3/kmplot/functioneditor.h  2021-10-31 11:16:15.000000000 
+0100
+++ new/kmplot-21.12.0/kmplot/functioneditor.h  2021-12-02 22:07:41.000000000 
+0100
@@ -196,7 +196,11 @@
        protected:
                void dragEnterEvent( QDragEnterEvent * event ) Q_DECL_OVERRIDE;
                void dropEvent( QDropEvent * event ) Q_DECL_OVERRIDE;
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
                QMimeData * mimeData( const QList<QListWidgetItem *> items ) 
const Q_DECL_OVERRIDE;
+#else
+               QMimeData * mimeData(const QList<QListWidgetItem *> &items) 
const Q_DECL_OVERRIDE;
+#endif
                QStringList mimeTypes() const Q_DECL_OVERRIDE;
 };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/org.kde.kmplot.appdata.xml 
new/kmplot-21.12.0/org.kde.kmplot.appdata.xml
--- old/kmplot-21.08.3/org.kde.kmplot.appdata.xml       2021-10-31 
11:16:15.000000000 +0100
+++ new/kmplot-21.12.0/org.kde.kmplot.appdata.xml       2021-12-02 
22:07:41.000000000 +0100
@@ -88,7 +88,7 @@
     <p xml:lang="pl">KmPlot jest programem do rysowania wykres??w funkcji, ich 
ca??ek i r????niczek. Wykresy mo??na zabarwia??, a widok jest wysoce 
ustawialny, skalowalny i mo??na go powi??kszy??. Program dostarcza zaawansowany 
analizator sk??adni matematycznej, r????ne rodzaje wykres??w (kartezja??ski, 
parametryczny, biegunowy, jawny, r????niczkowy) oraz proste narz??dzia 
matematyczne jak np. do znajdowania maksimum/minimum funkcji. Funkcje 
parametryczne mo??na przedstawi?? poprzez dostosowanie parametru zmiennej 
poprzez suwak. Wykresy mo??na eksportowa?? jako zdj??cia w postaci map bitowych 
(BMP lub PNG), mo??na tak??e je wydrukowa??.</p>
     <p xml:lang="pt">O KmPlot ?? um programa para desenhar gr??ficos de 
fun????es, os seus integrais e derivadas. Os gr??ficos poder??o ser coloridos e 
a ??rea ?? bastante configur??vel, escal??vel e pode ser ampliada. O programa 
oferece um processador matem??tico poderoso, diferentes tipos de gr??ficos 
(cartesianos, param??tricos, polares, impl??citos, diferenciais) e oferece 
ferramentas matem??ticas simples como a descoberta dos valores 
m??ximos/m??nimos de uma fun????o. As fun????es parametrizadas podem ser 
visualizadas se ajustar o par??metro vari??vel com uma barra deslizante. Os 
gr??ficos podem ser exportados como imagens (BMP, PNG) e podem ser 
impressos.</p>
     <p xml:lang="pt-BR">KmPlot ?? um programa para desenhar gr??ficos de 
fun????es, suas integrais e derivadas. Os gr??ficos podem ser coloridos e a 
??rea de visualiza????o ?? bastante configur??vel, escal??vel e pode ser 
ampliada/reduzida. O programa possui um processador matem??tico poderoso, 
diferentes tipos de gr??ficos (cartesianos, param??tricos, polares, 
impl??citos, diferenciais) e oferece ferramentas matem??ticas simples, como a 
descoberta dos valores m??ximos/m??nimos de uma fun????o. As fun????es 
parametrizadas podem ser visualizadas se ajustar o par??metro vari??vel com uma 
barra deslizante. Os gr??ficos podem ser impressos e tamb??m exportados como 
imagens (BMP, PNG).</p>
-    <p xml:lang="ru">KmPlot ??? ?????????????????? ?????? ???????????????????? 
???????????????? ??????????????, ???? ?????????????????????? ?? 
????????????????????. ?????????? ???????????????? ???????? ???????????????? ?? 
???????????? ???? ??????????????. ?????????????????? ???????????????? 
???????????????????????? ?????????????? ??????????????, ?????????????? 
?????????????? ?? ???????????? ???????????????? ?????????????????? ?? 
?????????????? (?????????????????? ?? ???????????????? ????????????????????, 
?????????????????????????????? ????????????, ?????????????? ??????????????, 
???????????????????????? ????????????), ?? ?????????? 
?????????????????????????? ?????????????? ???????????????????????????? 
??????????????????????, ??? ????????????????, ?????? ???????????? 
?????????????????? ?? ???????????????????? ??????????????. ???????????????? 
?????????????????? ?????? ?????????????????????????????? ?????????????? 
?????????? ???????????????? ?????????????????? ????????????????. ???????
 ??????? ?????????????? ?????????? ???????????????????????????? ?? ?????????? 
BMP ?????? PNG ???????? ?????????????????????? ???? ????????????????.</p>
+    <p xml:lang="ru">KmPlot ??? ?????????????????? ?????? ???????????????????? 
???????????????? ??????????????, ???? ?????????????????????? ?? 
????????????????????. ???????????????? ???????????????? ???????? 
???????????????? ?? ???????????? ???? ??????????????. ?????????????????? 
???????????????? ???????????????????????? ?????????????? ??????????????, 
?????????????? ?????????????? ?? ???????????? ???????????????? 
?????????????????? ?? ?????????????? (?????????????????? ?? ???????????????? 
????????????????????, ?????????????????????????????? ????????????, 
?????????????? ??????????????, ???????????????????????? ????????????), ?? 
?????????? ?????????????????????????? ?????????????? 
???????????????????????????? ??????????????????????, ??? ????????????????, 
?????? ???????????? ?????????????????? ?? ???????????????????? ??????????????. 
???????????????? ?????????????????? ?????? ?????????????????????????????? 
?????????????? ?????????? ???????????????? ?????????????????? ????????????????. 
?
 ????????????? ?????????????? ???????????????? ???????????????????????????? ?? 
?????????? BMP ?????? PNG ???????? ?????????????????????? ???? 
????????????????.</p>
     <p xml:lang="sk">KmPlot je program na zakreslenie grafov funkci??, ich 
integr??lov alebo deriv??ci??. Grafy m????u by?? zafarben?? a poh??ad je vysoko 
nastavite??n??, ??k??lovate??n?? a je ho mo??n?? pribli??ova??. Program 
obsahuje siln?? matematick?? spracova??, r??zne typy z??kresu (kartezi??nsky, 
parametrick??, pol??rny, implicitn??, diferenci??lny) a poskytuje jednoduch?? 
matematick?? n??stroje ako napr??klad na h??adanie maxima/minima funkcie. 
Parametrizovan?? funkcie je mo??n?? vizualizova?? ??pravou parametra premennej 
cez posuvn??k. Z??kresy je mo??n?? exportova?? ako obr??zky bitmapov??ho 
form??tu (BMP, PNG) a je ich mo??n?? tla??i??.</p>
     <p xml:lang="sl">KmPlot je program za izris grafov funkcij, njihovih 
integralov in odvodov. Grafe lahko obarvate, prikaz je zelo prilagodljiv, se da 
umerjati in prilagajati. Program vklju??uje zmogljiv matemati??ni 
raz??lenjevalnik, razli??ne vrste grafov (kartezi??ni, parametri??ni, polarni, 
implicitni, diferencialni) in preprosta matemati??na orodja (npr. orodje za 
iskanje minimuma oz. maksimuma funkcije). Parametrizirane funkcije lahko 
izri??ete s pomo??jo drsnika, ki nastavlja spremenljiv parameter. Grafe lahko 
izvozite kot bitne slike (BMP, PNG) in natisnete.</p>
     <p xml:lang="sv">Kmplot ??r ett program f??r att rita funktionsgrafer, 
deras integraler eller derivator. Graferna kan f??rgl??ggas och visningen ??r 
mycket inst??llningsbar, skalbar och kan zoomas. Programmet inneh??ller en 
kraftfull matematisk tolk, olika typer av diagram (kartesiska, parametriserade, 
pol??ra, implicita, differentiella), och tillhandah??ller enkla matematiska 
verktyg s??som att hitta maximum eller minimum av en funktion. Parametriserade 
funktioner kan ??sk??dligg??ras genom att justera den variabla parametern via 
ett skjutreglage. Diagram kan exporteras som bilder med bitavbildningsformat 
(BMP, PNG) och kan skrivas ut.</p>
@@ -122,6 +122,7 @@
       <caption xml:lang="pl">Funkcja kwadratowa, jej r????niczka i ca??ka 
narysowane w KmPlot</caption>
       <caption xml:lang="pt">Fun????o quadr??tica, a sua derivada e o seu 
integral desenhados no KmPlot</caption>
       <caption xml:lang="pt-BR">Fun????o quadr??tica, sua derivada e integral 
desenhada com o KmPlot</caption>
+      <caption xml:lang="ru">???????????????????????? ??????????????, ???? 
?????????????????????? ?? ????????????????, ?????????????????????? ?? 
?????????????? KmPlot</caption>
       <caption xml:lang="sk">Kvadratick?? funkcia, jej deriv??cia a integr??l 
zakreslen?? pomocou KmPlot</caption>
       <caption xml:lang="sl">Kvadratna funkcija, njen odvod in integral 
narisan s KmPlot</caption>
       <caption xml:lang="sv">Kvadratisk funktion, dess derivata och integral 
uppritade med Kmplot</caption>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ar/kmplot.po 
new/kmplot-21.12.0/po/ar/kmplot.po
--- old/kmplot-21.08.3/po/ar/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/ar/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2010-07-16 11:32+0300\n"
 "Last-Translator: ???????? ?????????????? <[email protected]>\n"
 "Language-Team: <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/be/kmplot.po 
new/kmplot-21.12.0/po/be/kmplot.po
--- old/kmplot-21.08.3/po/be/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/be/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2007-06-25 11:11+0300\n"
 "Last-Translator: Darafei Praliaskouski <[email protected]>\n"
 "Language-Team: Belarusian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/bg/kmplot.po 
new/kmplot-21.12.0/po/bg/kmplot.po
--- old/kmplot-21.08.3/po/bg/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/bg/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2007-04-15 09:07+0000\n"
 "Last-Translator: Zlatko Popov <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/bs/kmplot.po 
new/kmplot-21.12.0/po/bs/kmplot.po
--- old/kmplot-21.08.3/po/bs/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/bs/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2013-10-18 20:27+0000\n"
 "Last-Translator: Vedran Ljubovic <[email protected]>\n"
 "Language-Team: Bosnian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ca/kmplot.po 
new/kmplot-21.12.0/po/ca/kmplot.po
--- old/kmplot-21.08.3/po/ca/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/ca/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-10-31 23:11+0100\n"
 "Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ca@valencia/kmplot.po 
new/kmplot-21.12.0/po/ca@valencia/kmplot.po
--- old/kmplot-21.08.3/po/ca@valencia/kmplot.po 2021-11-02 01:06:42.000000000 
+0100
+++ new/kmplot-21.12.0/po/ca@valencia/kmplot.po 2021-12-03 01:08:15.000000000 
+0100
@@ -4,22 +4,22 @@
 # Albert Astals Cid <[email protected]>, 2003, 2004.
 # David Gil <[email protected]>, 2005.
 # Orestes Mas Casals <[email protected]>, 2006, 2007, 2010, 2011.
-# Josep M. Ferrer <[email protected]>, 2007, 2010, 2011, 2012, 2014, 2015, 
2017, 2018, 2019, 2020.
+# Josep M. Ferrer <[email protected]>, 2007, 2010, 2011, 2012, 2014, 2015, 
2017, 2018, 2019, 2020, 2021.
 # Aleix Pol Gonzalez <[email protected]>, 2007.
 # Antoni Bella P??rez <[email protected]>, 2015, 2018, 2020, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
-"PO-Revision-Date: 2021-01-09 17:37+0100\n"
-"Last-Translator: Antoni Bella P??rez <[email protected]>\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
+"PO-Revision-Date: 2021-10-31 23:11+0100\n"
+"Last-Translator: Josep M. Ferrer <[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 20.08.2\n"
+"X-Generator: Lokalize 20.12.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -2515,10 +2515,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 2. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color4)
 #: settingspagecolor.ui:146
@@ -2536,10 +2536,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 5. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color0)
 #: settingspagecolor.ui:159
@@ -2557,10 +2557,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 1. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel3)
 #: settingspagecolor.ui:172
@@ -2584,10 +2584,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 3. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel3_13)
 #: settingspagecolor.ui:198
@@ -2623,10 +2623,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 4. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel3_11)
 #: settingspagecolor.ui:250
@@ -2662,10 +2662,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 9. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel3_10)
 #: settingspagecolor.ui:328
@@ -2689,10 +2689,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 7. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color7)
 #: settingspagecolor.ui:354
@@ -2710,10 +2710,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 8. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color5)
 #: settingspagecolor.ui:367
@@ -2731,10 +2731,10 @@
 "time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 6. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel3_7)
 #: settingspagecolor.ui:380
@@ -2758,10 +2758,10 @@
 "shown next time you define a new function at number 1."
 msgstr ""
 "El color predeterminat per a la funci?? n??mero 10. Cal tindre en compte que "
-"aquesta opci?? de configuraci?? del color nom??s afectar?? a les funcions "
-"buides, per tant si heu definit una funci?? al n??mero 1 i canvieu el color "
-"per a aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que "
-"definiu una nova funci?? al n??mero 1."
+"aquesta opci?? de configuraci?? del color nom??s afectar?? les funcions 
buides, "
+"per tant si heu definit una funci?? al n??mero 1 i canvieu el color per a "
+"aquest n??mero, la configuraci?? es mostrar?? la seg??ent vegada que definiu 
una "
+"nova funci?? al n??mero 1."
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel3_6)
 #: settingspagecolor.ui:406
@@ -3124,3 +3124,21 @@
 #, kde-format
 msgid "Error in extension."
 msgstr "Error a l'extensi??."
+
+#~ msgid "Background Color:"
+#~ msgstr "Color de fons:"
+
+#~ msgid "root"
+#~ msgstr "arrel"
+
+#~ msgid "  to  "
+#~ msgstr "  a  "
+
+#~ msgid "Sorry, this file format is not supported."
+#~ msgstr "Aquest format de fitxer no est?? perm??s."
+
+#~ msgid "&Overwrite"
+#~ msgstr "&Sobreescriu"
+
+#~ msgid "KmPlotPart"
+#~ msgstr "KmPlotPart"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/cs/kmplot.po 
new/kmplot-21.12.0/po/cs/kmplot.po
--- old/kmplot-21.08.3/po/cs/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/cs/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-04-23 14:51+0200\n"
 "Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/da/kmplot.po 
new/kmplot-21.12.0/po/da/kmplot.po
--- old/kmplot-21.08.3/po/da/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/da/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2015-12-08 19:57+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/kmplot-21.08.3/po/de/kmplot.po 
new/kmplot-21.12.0/po/de/kmplot.po
--- old/kmplot-21.08.3/po/de/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/de/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-04-25 06:25+0200\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/kmplot-21.08.3/po/el/kmplot.po 
new/kmplot-21.12.0/po/el/kmplot.po
--- old/kmplot-21.08.3/po/el/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/el/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-06-29 09:45+0300\n"
 "Last-Translator: Stelios <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/en_GB/kmplot.po 
new/kmplot-21.12.0/po/en_GB/kmplot.po
--- old/kmplot-21.08.3/po/en_GB/kmplot.po       2021-11-02 01:06:42.000000000 
+0100
+++ new/kmplot-21.12.0/po/en_GB/kmplot.po       2021-12-03 01:08:15.000000000 
+0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-10 12:03+0000\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/eo/kmplot.po 
new/kmplot-21.12.0/po/eo/kmplot.po
--- old/kmplot-21.08.3/po/eo/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/eo/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2007-12-03 10:44-0500\n"
 "Last-Translator: Pierre-Marie P??drot <[email protected]>\n"
 "Language-Team: esperanto <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/es/kmplot.po 
new/kmplot-21.12.0/po/es/kmplot.po
--- old/kmplot-21.08.3/po/es/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/es/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-09 20:26+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/kmplot-21.08.3/po/et/kmplot.po 
new/kmplot-21.12.0/po/et/kmplot.po
--- old/kmplot-21.08.3/po/et/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/et/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2020-06-05 19:53+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/kmplot-21.08.3/po/eu/kmplot.po 
new/kmplot-21.12.0/po/eu/kmplot.po
--- old/kmplot-21.08.3/po/eu/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/eu/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2019-05-21 00:45+0100\n"
 "Last-Translator: I??igo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/fa/kmplot.po 
new/kmplot-21.12.0/po/fa/kmplot.po
--- old/kmplot-21.08.3/po/fa/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/fa/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2007-06-19 09:48+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/kmplot-21.08.3/po/fi/kmplot.po 
new/kmplot-21.12.0/po/fi/kmplot.po
--- old/kmplot-21.08.3/po/fi/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/fi/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -13,7 +13,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2020-07-08 17:45+0300\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/fr/kmplot.po 
new/kmplot-21.12.0/po/fr/kmplot.po
--- old/kmplot-21.08.3/po/fr/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/fr/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -22,7 +22,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-25 10:35+0100\n"
 "Last-Translator: Xavier Besnard <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ga/kmplot.po 
new/kmplot-21.12.0/po/ga/kmplot.po
--- old/kmplot-21.08.3/po/ga/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/ga/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kdeedu/kmplot.po\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\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/kmplot-21.08.3/po/gl/kmplot.po 
new/kmplot-21.12.0/po/gl/kmplot.po
--- old/kmplot-21.08.3/po/gl/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/gl/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2019-11-17 09:27+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/kmplot-21.08.3/po/he/kmplot.po 
new/kmplot-21.12.0/po/he/kmplot.po
--- old/kmplot-21.08.3/po/he/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/he/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -20,7 +20,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2017-05-16 06:59-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/kmplot-21.08.3/po/hi/kmplot.po 
new/kmplot-21.12.0/po/hi/kmplot.po
--- old/kmplot-21.08.3/po/hi/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/hi/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
-"PO-Revision-Date: 2021-09-17 20:34+0530\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
+"PO-Revision-Date: 2021-09-17 20:07+0530\n"
 "Last-Translator: Raghavendra Kamath <[email protected]>\n"
 "Language-Team: kde-hindi\n"
 "Language: hi\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/hr/kmplot.po 
new/kmplot-21.12.0/po/hr/kmplot.po
--- old/kmplot-21.08.3/po/hr/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/hr/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kmplot 0\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2006-12-13 22:16+0100\n"
 "Last-Translator: Renato Pavicic <[email protected]>\n"
 "Language-Team: Croatian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/hu/kmplot.po 
new/kmplot-21.12.0/po/hu/kmplot.po
--- old/kmplot-21.08.3/po/hu/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/hu/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4.0\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2012-06-20 21:55+0200\n"
 "Last-Translator: Bal??zs ??r <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/is/kmplot.po 
new/kmplot-21.12.0/po/is/kmplot.po
--- old/kmplot-21.08.3/po/is/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/is/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2004-02-22 21:18+0000\n"
 "Last-Translator: Bj??rgvin Ragnarsson <[email protected]>\n"
 "Language-Team: Icelandic <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/it/kmplot.po 
new/kmplot-21.12.0/po/it/kmplot.po
--- old/kmplot-21.08.3/po/it/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/it/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-16 17:52+0100\n"
 "Last-Translator: Pino Toscano <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ja/kmplot.po 
new/kmplot-21.12.0/po/ja/kmplot.po
--- old/kmplot-21.08.3/po/ja/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/ja/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2008-12-23 11:25+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/kmplot-21.08.3/po/kk/kmplot.po 
new/kmplot-21.12.0/po/kk/kmplot.po
--- old/kmplot-21.08.3/po/kk/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/kk/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2013-09-15 06:54+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/kmplot-21.08.3/po/km/kmplot.po 
new/kmplot-21.12.0/po/km/kmplot.po
--- old/kmplot-21.08.3/po/km/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/km/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2012-07-16 15:01+0700\n"
 "Last-Translator: Sok Sophea <[email protected]>\n"
 "Language-Team: Khmer <>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ko/kmplot.po 
new/kmplot-21.12.0/po/ko/kmplot.po
--- old/kmplot-21.08.3/po/ko/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/ko/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-06-07 00:53+0200\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/kmplot-21.08.3/po/lt/kmplot.po 
new/kmplot-21.12.0/po/lt/kmplot.po
--- old/kmplot-21.08.3/po/lt/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/lt/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2011-08-08 20:18+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/kmplot-21.08.3/po/lv/kmplot.po 
new/kmplot-21.12.0/po/lv/kmplot.po
--- old/kmplot-21.08.3/po/lv/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/lv/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2012-06-24 20:42+0300\n"
 "Last-Translator: Einars Sprugis <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ml/kmplot.po 
new/kmplot-21.12.0/po/ml/kmplot.po
--- old/kmplot-21.08.3/po/ml/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/ml/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2019-12-12 21:39+0000\n"
 "Last-Translator: Vivek KJ Pazhedath <[email protected]>\n"
 "Language-Team: Swathanthra Malayalam Computing/??????????????????????????? 
?????????????????? ????????????????????????????????????????????? <smc-"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/mr/kmplot.po 
new/kmplot-21.12.0/po/mr/kmplot.po
--- old/kmplot-21.08.3/po/mr/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/mr/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2013-03-05 17:02+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/kmplot-21.08.3/po/nb/kmplot.po 
new/kmplot-21.12.0/po/nb/kmplot.po
--- old/kmplot-21.08.3/po/nb/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/nb/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2011-07-13 09:47+0200\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/kmplot-21.08.3/po/nds/kmplot.po 
new/kmplot-21.12.0/po/nds/kmplot.po
--- old/kmplot-21.08.3/po/nds/kmplot.po 2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/nds/kmplot.po 2021-12-03 01:08:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2011-08-24 06:54+0200\n"
 "Last-Translator: Manfred Wiese <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/nl/kmplot.po 
new/kmplot-21.12.0/po/nl/kmplot.po
--- old/kmplot-21.08.3/po/nl/kmplot.po  2021-11-02 01:06:42.000000000 +0100
+++ new/kmplot-21.12.0/po/nl/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-09 14:46+0100\n"
 "Last-Translator: jaap <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/nn/kmplot.po 
new/kmplot-21.12.0/po/nn/kmplot.po
--- old/kmplot-21.08.3/po/nn/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/nn/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-09 16:56+0100\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/pa/kmplot.po 
new/kmplot-21.12.0/po/pa/kmplot.po
--- old/kmplot-21.08.3/po/pa/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/pa/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2019-02-10 09:40-0800\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/kmplot-21.08.3/po/pl/kmplot.po 
new/kmplot-21.12.0/po/pl/kmplot.po
--- old/kmplot-21.08.3/po/pl/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/pl/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-04-04 08:05+0200\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/kmplot-21.08.3/po/pt/kmplot.po 
new/kmplot-21.12.0/po/pt/kmplot.po
--- old/kmplot-21.08.3/po/pt/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/pt/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-09 11:48+0000\n"
 "Last-Translator: Pedro Morais <[email protected]>\n"
 "Language-Team: pt <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/pt_BR/kmplot.po 
new/kmplot-21.12.0/po/pt_BR/kmplot.po
--- old/kmplot-21.08.3/po/pt_BR/kmplot.po       2021-11-02 01:06:43.000000000 
+0100
+++ new/kmplot-21.12.0/po/pt_BR/kmplot.po       2021-12-03 01:08:15.000000000 
+0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-02-02 13:41-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ro/kmplot.po 
new/kmplot-21.12.0/po/ro/kmplot.po
--- old/kmplot-21.08.3/po/ro/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/ro/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2012-12-22 11: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/kmplot-21.08.3/po/ru/kmplot.po 
new/kmplot-21.12.0/po/ru/kmplot.po
--- old/kmplot-21.08.3/po/ru/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/ru/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -8,19 +8,20 @@
 # Alexander Potashev <[email protected]>, 2010, 2015, 2019.
 # Alexander Wolf <[email protected]>, 2010.
 # Yury G. Kudryashov <[email protected]>, 2011.
+# ?????????? ???????????????? <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
-"PO-Revision-Date: 2019-07-20 19:10+0300\n"
-"Last-Translator: Alexander Potashev <[email protected]>\n"
-"Language-Team: Russian <[email protected]>\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
+"PO-Revision-Date: 2021-11-29 16:13+0300\n"
+"Last-Translator: Olesya Gerasimenko <[email protected]>\n"
+"Language-Team: Basealt Translation Team\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.07.70\n"
+"X-Generator: Lokalize 21.08.2\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-Environment: kde\n"
@@ -31,17 +32,18 @@
 msgctxt "NAME OF TRANSLATORS"
 msgid "Your names"
 msgstr ""
-"???????????? ??????????????????,?????????????? 
????????????????????,?????????????????? ??????????????????,?????????????????? 
??????????????"
+"???????????? ??????????????????,?????????????? 
????????????????????,?????????????????? ??????????????????,?????????????????? 
??????????????,"
+"?????????? ????????????????"
 
 #, kde-format
 msgctxt "EMAIL OF TRANSLATORS"
 msgid "Your emails"
 msgstr ""
-"[email protected],[email protected],[email protected],[email protected]"
+"[email protected],[email protected],[email protected],[email protected],"
+"[email protected]"
 
 #: calculator.cpp:31
-#, fuzzy, kde-format
-#| msgid "Calculator"
+#, kde-format
 msgctxt "@title:window"
 msgid "Calculator"
 msgstr "??????????????????????"
@@ -158,8 +160,7 @@
 msgstr "?????????????? ??????????????????"
 
 #: coordsconfigdialog.cpp:41
-#, fuzzy, kde-format
-#| msgid "Coordinate System"
+#, kde-format
 msgctxt "@title:window"
 msgid "Coordinate System"
 msgstr "?????????????? ??????????????????"
@@ -263,8 +264,7 @@
 msgstr "?????? ???????????????????????? ?????????? ???? ?????? Y"
 
 #: equationeditor.cpp:28
-#, fuzzy, kde-format
-#| msgid "Equation Editor"
+#, kde-format
 msgctxt "@title:window"
 msgid "Equation Editor"
 msgstr "???????????????? ??????????????????"
@@ -903,15 +903,13 @@
 msgstr "???????????????? ????????????:"
 
 #: functiontools.cpp:62
-#, fuzzy, kde-format
-#| msgid "Find Minimum Point"
+#, kde-format
 msgctxt "@title:window"
 msgid "Find Minimum Point"
 msgstr "?????????? ?????????? ????????????????"
 
 #: functiontools.cpp:69
-#, fuzzy, kde-format
-#| msgid "Find Maximum Point"
+#, kde-format
 msgctxt "@title:window"
 msgid "Find Maximum Point"
 msgstr "?????????? ?????????? ??????????????????"
@@ -922,8 +920,7 @@
 msgstr "?????????????????? ?????????????? ?????? ???????????????? ?????????? 
?????????? ???????????????????? x:"
 
 #: functiontools.cpp:76
-#, fuzzy, kde-format
-#| msgid "Area Under Graph"
+#, kde-format
 msgctxt "@title:window"
 msgid "Area Under Graph"
 msgstr "?????????????? ?????? ????????????????"
@@ -977,8 +974,7 @@
 msgstr "????????????????..."
 
 #: kconstanteditor.cpp:55
-#, fuzzy, kde-format
-#| msgid "Constants Editor"
+#, kde-format
 msgctxt "@title:window"
 msgid "Constants Editor"
 msgstr "???????????????? ????????????????"
@@ -1006,8 +1002,7 @@
 msgstr "?????????????? ?????????????? ??????????"
 
 #: kgradientdialog.cpp:398
-#, fuzzy, kde-format
-#| msgid "Choose a Gradient"
+#, kde-format
 msgctxt "@title:window"
 msgid "Choose a Gradient"
 msgstr "?????????? ??????????????????"
@@ -1553,17 +1548,15 @@
 msgstr "???? ?????????????? ?????????????????? ???????????? %1"
 
 #: kparametereditor.cpp:42
-#, fuzzy, kde-format
-#| msgid "Parameter Editor"
+#, kde-format
 msgctxt "@title:window"
 msgid "Parameter Editor"
 msgstr "???????????????? ????????????????????"
 
 #: kparametereditor.cpp:212
-#, fuzzy, kde-format
-#| msgid "Parameter Value"
+#, kde-format
 msgid "Open Parameter File"
-msgstr "???????????????? ??????????????????"
+msgstr "?????????????? ???????? ????????????????????"
 
 #: kparametereditor.cpp:212 kparametereditor.cpp:287
 #, kde-format
@@ -1605,10 +1598,9 @@
 msgstr "???? ?????????????? ?????????????? ????????"
 
 #: kparametereditor.cpp:287
-#, fuzzy, kde-format
-#| msgid "Save As"
+#, kde-format
 msgid "Save File"
-msgstr "????????????????????"
+msgstr "?????????????????? ????????"
 
 #: kparametereditor.cpp:291
 #, kde-format
@@ -1628,8 +1620,7 @@
 msgstr "???? ?????????????? ?????????????????? ????????"
 
 #: kprinterdlg.cpp:31
-#, fuzzy, kde-format
-#| msgid "KmPlot Options"
+#, kde-format
 msgctxt "@title:window"
 msgid "KmPlot Options"
 msgstr "?????????????????? KmPlot"
@@ -1699,8 +1690,7 @@
 "???????? ??????????????????."
 
 #: ksliderwindow.cpp:84
-#, fuzzy, kde-format
-#| msgid "Sliders"
+#, kde-format
 msgctxt "@title:window"
 msgid "Sliders"
 msgstr "????????????????"
@@ -1893,8 +1883,7 @@
 msgstr "?????????? ??&????????????..."
 
 #: maindlg.cpp:307
-#, fuzzy, kde-format
-#| msgid "Predefined &Math Functions"
+#, kde-format
 msgctxt "@action:inmenu Help"
 msgid "Predefined &Math Functions"
 msgstr "???????????????????????????????? &???????????????????????????? 
??????????????"
@@ -1943,18 +1932,18 @@
 #: maindlg.cpp:379
 #, kde-format
 msgid "Copy (x, y)"
-msgstr ""
+msgstr "???????????????????? (x, y)"
 
 #: maindlg.cpp:383
 #, kde-format
 msgctxt "Copied pair of coordinates (x, y)"
 msgid "(%1, %2)"
-msgstr ""
+msgstr "(%1, %2)"
 
 #: maindlg.cpp:388
 #, kde-format
 msgid "Copy Root Value"
-msgstr ""
+msgstr "???????????????????? ???????????????? ????????????????"
 
 #: maindlg.cpp:474
 #, kde-format
@@ -2006,28 +1995,24 @@
 msgstr "???? ?????????????? ?????????????????? ?????????????????????? ??%1??."
 
 #: maindlg.cpp:690
-#, fuzzy, kde-format
-#| msgid "Print Plot"
+#, kde-format
 msgctxt "@title:window"
 msgid "Print Plot"
 msgstr "???????????? ????????????????????"
 
 #: maindlg.cpp:707
-#, fuzzy, kde-format
-#| msgid "&Settings"
+#, kde-format
 msgid "Print Settings"
-msgstr "&??????????????????"
+msgstr "?????????????????? ????????????"
 
 #: maindlg.cpp:712
-#, fuzzy, kde-format
-#| msgid "&Settings"
+#, kde-format
 msgctxt "@title:window"
 msgid "Print Settings"
-msgstr "&??????????????????"
+msgstr "?????????????????? ????????????"
 
 #: parameteranimator.cpp:52
-#, fuzzy, kde-format
-#| msgid "Parameter Animator"
+#, kde-format
 msgctxt "@title:window"
 msgid "Parameter Animator"
 msgstr "???????????????? ???? ??????????????????"
@@ -2315,8 +2300,7 @@
 msgstr "????????:"
 
 #: plotstylewidget.cpp:59
-#, fuzzy, kde-format
-#| msgid "Plot Appearance"
+#, kde-format
 msgctxt "@title:window"
 msgid "Plot Appearance"
 msgstr "?????????????? ?????? ??????????????"
@@ -2450,10 +2434,9 @@
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: settingspagecolor.ui:35
-#, fuzzy, kde-format
-#| msgid "Background color"
+#, kde-format
 msgid "Background color:"
-msgstr "???????? ????????"
+msgstr "???????? ????????:"
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_backgroundcolor)
 #: settingspagecolor.ui:45
@@ -2485,8 +2468,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_AxesColor)
 #: settingspagecolor.ui:84
-#, fuzzy, kde-format
-#| msgid "select color for the axes"
+#, kde-format
 msgid "Select color for the axes."
 msgstr "???????? ???????????????????????? ????????"
 
@@ -2501,8 +2483,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_GridColor)
 #: settingspagecolor.ui:97
-#, fuzzy, kde-format
-#| msgid "select color for the grid"
+#, kde-format
 msgid "Select color for the grid."
 msgstr "???????? ???????????????????????? ??????????"
 
@@ -2523,8 +2504,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color1)
 #: settingspagecolor.ui:133
-#, fuzzy, kde-format
-#| msgid "the default color for function number 2"
+#, kde-format
 msgid "The default color for function number 2."
 msgstr "???????? ???? ?????????????????? ?????? 2-???? ??????????????"
 
@@ -2546,8 +2526,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color4)
 #: settingspagecolor.ui:146
-#, fuzzy, kde-format
-#| msgid "the default color for function number 5"
+#, kde-format
 msgid "The default color for function number 5."
 msgstr "???????? ???? ?????????????????? ?????? 5-???? ??????????????"
 
@@ -2569,8 +2548,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color0)
 #: settingspagecolor.ui:159
-#, fuzzy, kde-format
-#| msgid "the default color for function number 1"
+#, kde-format
 msgid "The default color for function number 1."
 msgstr "???????? ???? ?????????????????? ?????? 1-???? ??????????????"
 
@@ -2598,8 +2576,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color2)
 #: settingspagecolor.ui:185
-#, fuzzy, kde-format
-#| msgid "the default color for function number 3"
+#, kde-format
 msgid "The default color for function number 3."
 msgstr "???????? ???? ?????????????????? ?????? 3-???? ??????????????"
 
@@ -2639,8 +2616,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color3)
 #: settingspagecolor.ui:237
-#, fuzzy, kde-format
-#| msgid "the default color for function number 4"
+#, kde-format
 msgid "The default color for function number 4."
 msgstr "???????? ???? ?????????????????? ?????? 4-???? ??????????????"
 
@@ -2680,8 +2656,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color8)
 #: settingspagecolor.ui:315
-#, fuzzy, kde-format
-#| msgid "the default color for function number 9"
+#, kde-format
 msgid "The default color for function number 9."
 msgstr "???????? ???? ?????????????????? ?????? 9-???? ??????????????"
 
@@ -2709,8 +2684,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color6)
 #: settingspagecolor.ui:341
-#, fuzzy, kde-format
-#| msgid "the default color for function number 7"
+#, kde-format
 msgid "The default color for function number 7."
 msgstr "???????? ???? ?????????????????? ?????? 7-???? ??????????????"
 
@@ -2732,8 +2706,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color7)
 #: settingspagecolor.ui:354
-#, fuzzy, kde-format
-#| msgid "the default color for function number 8"
+#, kde-format
 msgid "The default color for function number 8."
 msgstr "???????? ???? ?????????????????? ?????? 8-???? ??????????????"
 
@@ -2755,8 +2728,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color5)
 #: settingspagecolor.ui:367
-#, fuzzy, kde-format
-#| msgid "the default color for function number 6"
+#, kde-format
 msgid "The default color for function number 6."
 msgstr "???????? ???? ?????????????????? ?????? 6-???? ??????????????"
 
@@ -2784,8 +2756,7 @@
 
 #. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color9)
 #: settingspagecolor.ui:393
-#, fuzzy, kde-format
-#| msgid "the default color for function number 10"
+#, kde-format
 msgid "The default color for function number 10."
 msgstr "???????? ???? ?????????????????? ?????? 10-???? ??????????????"
 
@@ -2872,10 +2843,9 @@
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: settingspagediagram.ui:84
-#, fuzzy, kde-format
-#| msgid "Horizontal Axis Label: "
+#, kde-format
 msgid "Horizontal axis label:"
-msgstr "???????????????? ???????????????????????????? ??????: "
+msgstr "???????????????? ???????????????????????????? ??????:"
 
 #. i18n: ectx: property (text), widget (QLineEdit, kcfg_LabelHorizontalAxis)
 #: settingspagediagram.ui:94
@@ -2891,10 +2861,9 @@
 
 #. i18n: ectx: property (text), widget (QLabel, label_2)
 #: settingspagediagram.ui:104
-#, fuzzy, kde-format
-#| msgid "Vertical Axis Label:"
+#, kde-format
 msgid "Vertical axis label:"
-msgstr "???????????????? ???????????????????????? ??????: "
+msgstr "???????????????? ???????????????????????? ??????:"
 
 #. i18n: ectx: property (text), widget (QLineEdit, kcfg_LabelVerticalAxis)
 #: settingspagediagram.ui:114
@@ -2928,8 +2897,7 @@
 
 #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowLabel)
 #: settingspagediagram.ui:252
-#, fuzzy, kde-format
-#| msgid "visible tic labels"
+#, kde-format
 msgid "Visible tic labels."
 msgstr "???????????????????? ?????????????? ?????????????? ???? ????????"
 
@@ -2947,8 +2915,7 @@
 
 #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowAxes)
 #: settingspagediagram.ui:268
-#, fuzzy, kde-format
-#| msgid "visible axes"
+#, kde-format
 msgid "Visible axes."
 msgstr "???????????????????? ?????? ?????????????? ??????????????????"
 
@@ -2966,8 +2933,7 @@
 
 #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowArrows)
 #: settingspagediagram.ui:284
-#, fuzzy, kde-format
-#| msgid "visible arrows at the end of the axes"
+#, kde-format
 msgid "Visible arrows at the end of the axes."
 msgstr "???????????????????? ?????????????? ???? ???????????? ????????"
 
@@ -3060,15 +3026,13 @@
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
 #: settingspagegeneral.ui:73
-#, fuzzy, kde-format
-#| msgid "Zoom In by:"
+#, kde-format
 msgid "Zoom in by:"
 msgstr "?????????????????????? ?????????????? ????:"
 
 #. i18n: ectx: property (text), widget (QLabel, textLabel1_2_2)
 #: settingspagegeneral.ui:86
-#, fuzzy, kde-format
-#| msgid "Zoom Out by:"
+#, kde-format
 msgid "Zoom out by:"
 msgstr "?????????????????? ?????????????? ????:"
 
@@ -3119,13 +3083,13 @@
 #, kde-format
 msgctxt "%1=minimum value, %2=maximum value"
 msgid "%1 to %2"
-msgstr ""
+msgstr "?? %1 ???? %2"
 
 #: view.cpp:2373 view.cpp:2374
 #, kde-format
 msgctxt "'E' is the distance between ticks on the axis"
 msgid "1E = "
-msgstr ""
+msgstr "1E = "
 
 #: view.cpp:2377
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/se/kmplot.po 
new/kmplot-21.12.0/po/se/kmplot.po
--- old/kmplot-21.08.3/po/se/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/se/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2007-09-11 22:44+0200\n"
 "Last-Translator: Northern Sami translation team <[email protected]."
 "no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/sk/kmplot.po 
new/kmplot-21.12.0/po/sk/kmplot.po
--- old/kmplot-21.08.3/po/sk/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/sk/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2020-07-11 11:34+0200\n"
 "Last-Translator: Matej Mrenica <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/sl/kmplot.po 
new/kmplot-21.12.0/po/sl/kmplot.po
--- old/kmplot-21.08.3/po/sl/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/sl/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-10 12:36+0100\n"
 "Last-Translator: Matja?? Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/sq/kmplot.po 
new/kmplot-21.12.0/po/sq/kmplot.po
--- old/kmplot-21.08.3/po/sq/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/sq/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdeedu\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2009-07-24 03:05+0000\n"
 "Last-Translator: Vilson Gjeci <[email protected]>\n"
 "Language-Team: Albanian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/sv/kmplot.po 
new/kmplot-21.12.0/po/sv/kmplot.po
--- old/kmplot-21.08.3/po/sv/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/sv/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-09 09:08+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/kmplot-21.08.3/po/ta/kmplot.po 
new/kmplot-21.12.0/po/ta/kmplot.po
--- old/kmplot-21.08.3/po/ta/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/ta/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -16,7 +16,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2004-12-27 04:33-0800\n"
 "Last-Translator: Tamil PC <[email protected]>\n"
 "Language-Team:  <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/tg/kmplot.po 
new/kmplot-21.12.0/po/tg/kmplot.po
--- old/kmplot-21.08.3/po/tg/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/tg/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -5,20 +5,20 @@
 # 2004, Khujand Computer Technologies, Inc.
 # 2004, Youth Opportunities, NGO
 # Marina Kolucheva <[email protected]>, 2004.
-# Victor Ibragimov <[email protected]>, 2004, 2019.
+# Victor Ibragimov <[email protected]>, 2004, 2019, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
-"PO-Revision-Date: 2019-09-29 12:26+0500\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
+"PO-Revision-Date: 2021-09-09 23:33-0700\n"
 "Last-Translator: Victor Ibragimov <[email protected]>\n"
-"Language-Team: English <[email protected]>\n"
+"Language-Team: Tajik Language Support\n"
 "Language: tg\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.04.3\n"
+"X-Generator: Lokalize 21.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #, kde-format
@@ -2111,19 +2111,19 @@
 #: parameteranimator.ui:257
 #, kde-format
 msgid "Speed:"
-msgstr ""
+msgstr "????????????:"
 
 #. i18n: ectx: property (text), widget (QLabel, label_7)
 #: parameteranimator.ui:304
 #, kde-format
 msgid "Fast"
-msgstr ""
+msgstr "??????"
 
 #. i18n: ectx: property (text), widget (QLabel, label_6)
 #: parameteranimator.ui:311
 #, kde-format
 msgid "Slow"
-msgstr ""
+msgstr "????????"
 
 #: parameterswidget.cpp:25
 #, fuzzy, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/tr/kmplot.po 
new/kmplot-21.12.0/po/tr/kmplot.po
--- old/kmplot-21.08.3/po/tr/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/tr/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: kdeedu-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2017-05-16 09:32+0000\n"
 "Last-Translator: Kaan <[email protected]>\n"
 "Language-Team: Turkish (http://www.transifex.com/projects/p/kdeedu-k-tr/";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/ug/kmplot.po 
new/kmplot-21.12.0/po/ug/kmplot.po
--- old/kmplot-21.08.3/po/ug/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/ug/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\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/kmplot-21.08.3/po/uk/kmplot.po 
new/kmplot-21.12.0/po/uk/kmplot.po
--- old/kmplot-21.08.3/po/uk/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/uk/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2021-01-09 08:48+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/kmplot-21.08.3/po/vi/kmplot.po 
new/kmplot-21.12.0/po/vi/kmplot.po
--- old/kmplot-21.08.3/po/vi/kmplot.po  2021-11-02 01:06:43.000000000 +0100
+++ new/kmplot-21.12.0/po/vi/kmplot.po  2021-12-03 01:08:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2006-06-02 15:26+0930\n"
 "Last-Translator: Tr???n Th??? Trung <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/zh_CN/kmplot.po 
new/kmplot-21.12.0/po/zh_CN/kmplot.po
--- old/kmplot-21.08.3/po/zh_CN/kmplot.po       2021-11-02 01:06:43.000000000 
+0100
+++ new/kmplot-21.12.0/po/zh_CN/kmplot.po       2021-12-03 01:08:15.000000000 
+0100
@@ -12,8 +12,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
-"PO-Revision-Date: 2021-10-29 13:28\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
+"PO-Revision-Date: 2021-11-30 15:23\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmplot-21.08.3/po/zh_TW/kmplot.po 
new/kmplot-21.12.0/po/zh_TW/kmplot.po
--- old/kmplot-21.08.3/po/zh_TW/kmplot.po       2021-11-02 01:06:43.000000000 
+0100
+++ new/kmplot-21.12.0/po/zh_TW/kmplot.po       2021-12-03 01:08:15.000000000 
+0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: kmplot\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-07-22 01:37+0000\n"
+"POT-Creation-Date: 2021-07-22 00:13+0000\n"
 "PO-Revision-Date: 2019-02-16 21:22+0800\n"
 "Last-Translator: pan93412 <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"

Reply via email to