Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kcalc for openSUSE:Factory checked in at 2022-08-19 17:51:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kcalc (Old) and /work/SRC/openSUSE:Factory/.kcalc.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kcalc" Fri Aug 19 17:51:45 2022 rev:135 rq:997800 version:22.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kcalc/kcalc.changes 2022-07-09 17:00:39.688582540 +0200 +++ /work/SRC/openSUSE:Factory/.kcalc.new.2083/kcalc.changes 2022-08-19 17:51:59.203535525 +0200 @@ -1,0 +2,20 @@ +Sun Aug 14 09:42:05 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 22.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/22.08.0/ + +------------------------------------------------------------------- +Fri Aug 5 12:10:37 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 22.07.90 + * New feature release + +------------------------------------------------------------------- +Sat Jul 16 08:27:51 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 22.07.80 + * New feature release + +------------------------------------------------------------------- Old: ---- kcalc-22.04.3.tar.xz kcalc-22.04.3.tar.xz.sig New: ---- kcalc-22.08.0.tar.xz kcalc-22.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kcalc.spec ++++++ --- /var/tmp/diff_new_pack.uqjiZz/_old 2022-08-19 17:51:59.963537118 +0200 +++ /var/tmp/diff_new_pack.uqjiZz/_new 2022-08-19 17:51:59.967537126 +0200 @@ -20,7 +20,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without released Name: kcalc -Version: 22.04.3 +Version: 22.08.0 Release: 0 Summary: Scientific Calculator License: GPL-2.0-or-later ++++++ kcalc-22.04.3.tar.xz -> kcalc-22.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/.kde-ci.yml new/kcalc-22.08.0/.kde-ci.yml --- old/kcalc-22.04.3/.kde-ci.yml 2022-07-03 05:31:49.000000000 +0200 +++ new/kcalc-22.08.0/.kde-ci.yml 2022-08-10 23:46:44.000000000 +0200 @@ -12,3 +12,6 @@ 'frameworks/ki18n': '@stable' 'frameworks/knotifications': '@stable' 'frameworks/kxmlgui': '@stable' + +Options: + require-passing-tests-on: [ 'Linux', 'FreeBSD'] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/CMakeLists.txt new/kcalc-22.08.0/CMakeLists.txt --- old/kcalc-22.04.3/CMakeLists.txt 2022-07-03 05:31:49.000000000 +0200 +++ new/kcalc-22.08.0/CMakeLists.txt 2022-08-10 23:46:44.000000000 +0200 @@ -2,8 +2,8 @@ # KDE Application Version, managed by release script set (RELEASE_SERVICE_VERSION_MAJOR "22") -set (RELEASE_SERVICE_VERSION_MINOR "04") -set (RELEASE_SERVICE_VERSION_MICRO "3") +set (RELEASE_SERVICE_VERSION_MINOR "08") +set (RELEASE_SERVICE_VERSION_MICRO "0") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kcalc VERSION ${RELEASE_SERVICE_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/kcalc.cpp new/kcalc-22.08.0/kcalc.cpp --- old/kcalc-22.04.3/kcalc.cpp 2022-07-03 05:31:49.000000000 +0200 +++ new/kcalc-22.08.0/kcalc.cpp 2022-08-10 23:46:44.000000000 +0200 @@ -2451,7 +2451,7 @@ KColorScheme schemeButtons(QPalette::Active, KColorScheme::Button); const QColor defaultColor = schemeButtons.background().color(); - // Do not apply style sheets when using default background colors, see bug 237513 + // Do not apply style sheets when using default background colors, see bug #237513 if (KCalcSettings::numberButtonsColor() == defaultColor && KCalcSettings::functionButtonsColor() == defaultColor && KCalcSettings::statButtonsColor() == defaultColor && KCalcSettings::hexButtonsColor() == defaultColor && KCalcSettings::memoryButtonsColor() == defaultColor && KCalcSettings::operationButtonsColor() == defaultColor @@ -2840,7 +2840,7 @@ "ger\n" "Copyright ?? 1996-2000, Bernd Johannes Wuebben"), QString(), - QStringLiteral("https://utils.kde.org/projects/kcalc")); + QStringLiteral("https://apps.kde.org/kcalc/")); // Klaus Niederkrueger aboutData.addAuthor(i18n("Klaus Niederkr" @@ -2874,7 +2874,8 @@ parser.process(app); aboutData.processCommandLine(&parser); - // force system locale to "C" internally [bug 159168] + // Force system locale to "C" internally. Fix for bug #159168, showing multiple commas + // in floating point operations because of different thousands separator and comma separator. setlocale(LC_NUMERIC, "C"); KNumber::setGroupSeparator(QLocale().groupSeparator()); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/kcalc_button.cpp new/kcalc-22.08.0/kcalc_button.cpp --- old/kcalc-22.04.3/kcalc_button.cpp 2022-07-03 05:31:49.000000000 +0200 +++ new/kcalc-22.08.0/kcalc_button.cpp 2022-08-10 23:46:44.000000000 +0200 @@ -77,7 +77,7 @@ if (flag) { // if the specified mode is to be set (i.e. flag = true) new_mode = ButtonModeFlags(mode_flags_ | mode); - } else if (mode_flags_ && mode) { // if the specified mode is to be cleared (i.e. flag = false) + } else if (mode_flags_ & mode) { // if the specified mode is to be cleared (i.e. flag = false) new_mode = ButtonModeFlags(mode_flags_ - mode); } else { return; // nothing to do @@ -188,7 +188,7 @@ { int margin = style()->pixelMetric(QStyle::PM_ButtonMargin, nullptr, this); - // want narrow margin than normal + // want narrower margin than normal margin = qMax(margin / 2, 3); // simply use font size of a single letter diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/knumber/knumber.cpp new/kcalc-22.08.0/knumber/knumber.cpp --- old/kcalc-22.04.3/knumber/knumber.cpp 2022-07-03 05:31:49.000000000 +0200 +++ new/kcalc-22.08.0/knumber/knumber.cpp 2022-08-10 23:46:44.000000000 +0200 @@ -534,7 +534,7 @@ //------------------------------------------------------------------------------ KNumber &KNumber::operator/=(const KNumber &rhs) { - // Fix for bug #330577, x /0 is undefined, not infinity + // Fix for bug #330577, x/0 is undefined, not infinity // Also indirectly fixes bug #329897, tan(90) is undefined, not infinity if (rhs == Zero) { *this = NaN; @@ -713,8 +713,8 @@ //------------------------------------------------------------------------------ KNumber KNumber::pow(const KNumber &x) const { - // Fix for bug #330711 (pow(0, -x) was causing crashes - // Fix for bug #330597 (pow(0,0) was 1 now it is NaN + // Fix for bug #330711, pow(0, -x) was causing crashes + // Fix for bug #330597, pow(0,0) was 1 now it is NaN // Thanks to Raushan Kumar for identifying the issue and submitting // patches if (*this == Zero && x <= Zero) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/org.kde.kcalc.appdata.xml new/kcalc-22.08.0/org.kde.kcalc.appdata.xml --- old/kcalc-22.04.3/org.kde.kcalc.appdata.xml 2022-07-03 05:31:49.000000000 +0200 +++ new/kcalc-22.08.0/org.kde.kcalc.appdata.xml 2022-08-10 23:46:44.000000000 +0200 @@ -240,7 +240,7 @@ <li xml:lang="sl">Natan??nost lahko dolo??i uporabnik</li> <li xml:lang="sq">Sakt??si ??sht?? e definuar nga p??rdoruesi</li> <li xml:lang="sv">Precisionen ??r anv??ndardefinierbar</li> - <li xml:lang="tr">Kesinlik, kullan??c?? taraf??ndan tan??mlanabilir</li> + <li xml:lang="tr">Hesaplama kesinli??i kullan??c?? taraf??ndan tan??mlanabilir</li> <li xml:lang="uk">???????????????? ?????????????????? ???????? ???????? ?????????????????? ????????????????????????.</li> <li xml:lang="x-test">xxPrecision is user-definablexx</li> <li xml:lang="zh-CN">???????????????????????????</li> @@ -523,10 +523,10 @@ </provides> <project_group>KDE</project_group> <releases> + <release version="22.08.0" date="2022-08-18"/> <release version="22.04.3" date="2022-07-07"/> <release version="22.04.2" date="2022-06-09"/> <release version="22.04.1" date="2022-05-12"/> - <release version="22.04.0" date="2022-04-21"/> </releases> <content_rating type="oars-1.1"/> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/org.kde.kcalc.desktop new/kcalc-22.08.0/org.kde.kcalc.desktop --- old/kcalc-22.04.3/org.kde.kcalc.desktop 2022-07-03 05:31:49.000000000 +0200 +++ new/kcalc-22.08.0/org.kde.kcalc.desktop 2022-08-10 23:46:44.000000000 +0200 @@ -59,7 +59,7 @@ Name[sr@ijekavianlatin]=KCalc Name[sr@latin]=KCalc Name[sv]=Kcalc -Name[ta]=????????????????????????????????? +Name[ta]=?????????????????????????????? Name[tg]=K?????????????? ???????????????????? Name[th]=???????????????????????????????????????-K Name[tr]=KCalc @@ -108,6 +108,7 @@ Comment[sl]=Kalkulator, ki ponuja ??tevilne matemati??ne funkcije, na primer trigonometri??ne funkcije, logi??ne operacije in statisti??ne izra??une Comment[sq]=Makin?? llogarit??se q?? ofron shum?? funksione matematikore si funksione trigonometrike, operacione logjike dhe lloritje statistikore Comment[sv]=R??knare som tillhandah??ller m??nga matematiska funktioner, s??som trigonometriska funktioner, logiska operationer och statistiska ber??kningar +Comment[ta]=????????????????????????, ?????????????????????????????????, ????????????????????? ????????????????????????????????? ????????????????????????????????????????????? ???????????? ????????????????????????????????? ??????????????? ??????????????????????????? Comment[tr]=??statistiksel, mant??ksal ve trigonometrik hesaplamalar gibi bir ??ok matematiksel i??levi sunan hesap makinesi Comment[uk]=?????????????????????? ???? ???????????????????????? ?????????????????? ???????????????? ???????????????????????? ??????, ?????????????? ???????????????????? ???????????????????????????????? ???? ???????????????????????? ??????????????, ?? ?????????? ???????????????? ????????????????. Comment[x-test]=xxCalculator which offers many mathematical functions, such as trigonometric functions, logic operations, and statistical calculationsxx @@ -174,7 +175,7 @@ GenericName[sr@ijekavianlatin]=Nau??ni kalkulator GenericName[sr@latin]=Nau??ni kalkulator GenericName[sv]=Vetenskaplig minir??knare -GenericName[ta]= ???????????????????????? ????????????????????? ??????????????????????????? +GenericName[ta]=??????????????????????????????????????? ??????????????????????????? GenericName[tg]=?????????????? ?????????????????????? ???????? GenericName[th]=????????????????????????????????????????????????????????????????????????????????? GenericName[tr]=Bilimsel Hesap Makinesi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/po/az/kcalc.po new/kcalc-22.08.0/po/az/kcalc.po --- old/kcalc-22.04.3/po/az/kcalc.po 2022-07-05 06:32:42.000000000 +0200 +++ new/kcalc-22.08.0/po/az/kcalc.po 2022-08-12 02:04:57.000000000 +0200 @@ -1,21 +1,21 @@ # Copyright (C) YEAR This file is copyright: # This file is distributed under the same license as the kcalc package. # -# Kheyyam Gojayev <[email protected]>, 2021. +# Kheyyam Gojayev <[email protected]>, 2021, 2022. msgid "" msgstr "" "Project-Id-Version: kcalc\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-02-02 00:47+0000\n" -"PO-Revision-Date: 2021-12-21 17:47+0400\n" -"Last-Translator: Kheyyam Gojayev <[email protected]>\n" +"PO-Revision-Date: 2022-07-06 09:32+0400\n" +"Last-Translator: Kheyyam <[email protected]>\n" "Language-Team: Azerbaijani <[email protected]>\n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 21.12.0\n" +"X-Generator: Lokalize 22.04.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -1988,7 +1988,7 @@ #, kde-format msgctxt "Write display data into memory" msgid "Store" -msgstr "Saxlamaq" +msgstr "Saxlay??n" #: kcalc_const_button.cpp:24 kcalc_const_button.cpp:37 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/po/de/kcalc.po new/kcalc-22.08.0/po/de/kcalc.po --- old/kcalc-22.04.3/po/de/kcalc.po 2022-07-05 06:32:42.000000000 +0200 +++ new/kcalc-22.08.0/po/de/kcalc.po 2022-08-12 02:04:57.000000000 +0200 @@ -13,7 +13,7 @@ "Project-Id-Version: kcalc\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-02-02 00:47+0000\n" -"PO-Revision-Date: 2022-03-06 18:27+0100\n" +"PO-Revision-Date: 2022-07-14 00:40+0200\n" "Last-Translator: Frederik Schwarzer <[email protected]>\n" "Language-Team: German <[email protected]>\n" "Language: de\n" @@ -21,7 +21,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 21.12.2\n" +"X-Generator: Lokalize 22.07.70\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -1368,7 +1368,7 @@ #: kcalc.ui:133 kcalc.ui:169 kcalc.ui:205 kcalc.ui:241 #, kde-format msgid "KSq???bel" -msgstr "KSq???bel" +msgstr "KSq...bel" #. i18n: ectx: property (toolTip), widget (QRadioButton, decRadio) #: kcalc.ui:147 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/po/ia/kcalc.po new/kcalc-22.08.0/po/ia/kcalc.po --- old/kcalc-22.04.3/po/ia/kcalc.po 2022-07-05 06:32:42.000000000 +0200 +++ new/kcalc-22.08.0/po/ia/kcalc.po 2022-08-12 02:04:57.000000000 +0200 @@ -1,20 +1,20 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Giovanni Sora <[email protected]>, 2012, 2013, 2014, 2017, 2018, 2019, 2021. +# Giovanni Sora <[email protected]>, 2012, 2013, 2014, 2017, 2018, 2019, 2021, 2022. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-02-02 00:47+0000\n" -"PO-Revision-Date: 2021-12-19 23:20+0100\n" +"PO-Revision-Date: 2022-07-15 17:14+0200\n" "Last-Translator: giovanni <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.12.0\n" +"X-Generator: Lokalize 21.12.3\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -483,7 +483,7 @@ #, kde-format msgctxt "Tangent" msgid "tan" -msgstr "Bronzage" +msgstr "tan" #. i18n: ectx: property (toolTip), widget (KCalcButton, pbTan) #: kcalc.cpp:462 kcalc.ui:523 @@ -528,7 +528,7 @@ #, kde-format msgctxt "Logarithm to base 10" msgid "log" -msgstr "bloco" +msgstr "log" #. i18n: ectx: property (toolTip), widget (KCalcButton, pbLog) #: kcalc.cpp:470 kcalc.ui:823 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/po/pt/kcalc.po new/kcalc-22.08.0/po/pt/kcalc.po --- old/kcalc-22.04.3/po/pt/kcalc.po 2022-07-05 06:32:42.000000000 +0200 +++ new/kcalc-22.08.0/po/pt/kcalc.po 2022-08-12 02:04:57.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kcalc\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-02-02 00:47+0000\n" -"PO-Revision-Date: 2021-11-08 18:51+0000\n" +"PO-Revision-Date: 2022-03-26 23:51+0000\n" "Last-Translator: Jos?? Nuno Pires <[email protected]>\n" "Language-Team: pt <[email protected]>\n" "Language: pt\n" @@ -29,6 +29,7 @@ "X-POFile-IgnoreConsistency: Tan\n" "X-POFile-IgnoreConsistency: L\n" "X-POFile-SpellExtra: acos cosh acosh tan atan tanh atanh mod DAT KSq bel\n" +"X-POFile-SpellExtra: Niklas Freund\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -909,7 +910,7 @@ #: kcalc.cpp:2867 #, kde-format msgid "Niklas Freund" -msgstr "" +msgstr "Niklas Freund" #. i18n: ectx: label, entry (ForeColor), group (Colors) #: kcalc.kcfg:12 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/po/ta/kcalc.po new/kcalc-22.08.0/po/ta/kcalc.po --- old/kcalc-22.04.3/po/ta/kcalc.po 2022-07-05 06:32:42.000000000 +0200 +++ new/kcalc-22.08.0/po/ta/kcalc.po 2022-08-12 02:04:57.000000000 +0200 @@ -1,131 +1,114 @@ -# translation of kcalc.po to +# translation of kcalc.po to # translation of kcalc.po to Tamil # Copyright (C) 2004 Free Software Foundation, Inc. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# , 2004. -# Ambalam <[email protected]>, 2004. # +# Ambalam <[email protected]>, 2004. +# Kishore G <[email protected]>, 2022. msgid "" msgstr "" "Project-Id-Version: kcalc\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-02-02 00:47+0000\n" -"PO-Revision-Date: 2005-02-27 21:10-0800\n" -"Last-Translator: Tamil PC <[email protected]>\n" -"Language-Team: <[email protected]>\n" +"PO-Revision-Date: 2022-07-21 21:43+0530\n" +"Last-Translator: Kishore G <[email protected]>\n" +"Language-Team: Tamil <[email protected]>\n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 22.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "????????????????????? ?????? ??????????????????????????????????????????,??????????????? ???????????????????????????,??????????????????????????? ?????????????????????, ?????? ???????????????????????????" +msgstr "" +"????????????????????? ?????? ??????????????????????????????????????????,??????????????? ???????????????????????????,??????????????????????????? ?????????????????????, ?????? ???????????????????????????, ??????. ??????????????????" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" "[email protected],[email protected],[email protected],ma_sivakumar@yahoo." -"com" +"com, [email protected]" #. i18n: ectx: property (title), widget (QGroupBox, displayColorsBox) #: colors.ui:17 #, kde-format msgid "Display Colors" -msgstr "???????????????????????????????????? ??????????????????" +msgstr "??????????????????????????????????????????????????? ????????????????????????" #. i18n: ectx: property (text), widget (QLabel, textLabel1) #: colors.ui:25 #, kde-format msgid "&Foreground:" -msgstr "?????????????????????" +msgstr "&???????????????????????????:" #. i18n: ectx: property (text), widget (QLabel, textLabel2) #: colors.ui:52 #, kde-format msgid "&Background:" -msgstr "?????????????????????" +msgstr "&???????????????????????????:" #. i18n: ectx: property (title), widget (QGroupBox, buttonColorsBox) #: colors.ui:97 #, kde-format msgid "Button Colors" -msgstr "???????????????????????? ??????????????????" +msgstr "????????????????????????????????? ????????????????????????" #. i18n: ectx: property (text), widget (QLabel, textLabel6) #: colors.ui:105 -#, fuzzy, kde-format -#| msgid "&Background:" +#, kde-format msgid "Background" -msgstr "?????????????????????" +msgstr "???????????????????????????" #. i18n: ectx: property (text), widget (QLabel, textLabel3) #: colors.ui:115 -#, fuzzy, kde-format -#| msgid "&Foreground:" +#, kde-format msgid "Foreground" -msgstr "?????????????????????" +msgstr "???????????????????????????" #. i18n: ectx: property (text), widget (QLabel, textLabel5) #: colors.ui:125 #, kde-format msgid "&Functions:" -msgstr "????????????????????????????????????" +msgstr "&???????????????????????????:" #. i18n: ectx: property (text), widget (QLabel, textLabel4) #: colors.ui:152 #, kde-format msgid "St&atistic functions:" -msgstr "??????????????????????????????????????????????????????????????????" +msgstr "&????????????????????????????????? ???????????????????????????:" #. i18n: ectx: property (text), widget (QLabel, textLabel9) #: colors.ui:179 #, kde-format msgid "He&xadecimals:" -msgstr "?????????????????????????????????" +msgstr "???&????????????????????????:" #. i18n: ectx: property (text), widget (QLabel, textLabel11) #: colors.ui:206 #, kde-format msgid "&Numbers:" -msgstr "??????????????????" +msgstr "&??????????????????:" #. i18n: ectx: property (text), widget (QLabel, textLabel10) #: colors.ui:233 #, kde-format msgid "&Memory:" -msgstr "????????????????????????" +msgstr "&??????????????????:" #. i18n: ectx: property (text), widget (QLabel, textLabel12) #: colors.ui:260 #, kde-format msgid "O&perations:" -msgstr "????????????????????????????????????" +msgstr "??????&??????????????????????????????:" #. i18n: ectx: property (text), widget (QLabel, textLabel13) #: colors.ui:287 -#, fuzzy, kde-format -#| msgid "&Constants" +#, kde-format msgid "&Constants:" -msgstr "&???????????????????????????" +msgstr "&???????????????????????????:" #. i18n: ectx: property (windowTitle), widget (QWidget, Constants) #. i18n: ectx: property (title), widget (QGroupBox, constantsBox) @@ -144,73 +127,67 @@ #: constants.ui:123 constants.ui:144 #, kde-format msgid "Predefined" -msgstr "???????????????????????????????????????" +msgstr "???????????????????????????????????????????????????????????????" #. i18n: ectx: property (text), widget (QLabel, buttonlabel) #: fonts.ui:21 -#, fuzzy, kde-format -#| msgid "Button Colors" +#, kde-format msgid "&Button font:" -msgstr "???????????????????????? ??????????????????" +msgstr "???&?????????????????????????????? ???????????????????????????:" #. i18n: ectx: property (toolTip), widget (KFontRequester, kcfg_ButtonFont) #: fonts.ui:34 -#, fuzzy, kde-format -#| msgid "The font to use in the display." +#, kde-format msgid "The font to use for the buttons" -msgstr "???????????????????????? ?????????????????????????????? ????????????????????? ??????????????????????????? " +msgstr "????????????????????????????????? ?????????????????????????????? ????????????????????? ???????????????????????????" #. i18n: ectx: property (text), widget (QLabel, displaylabel) #: fonts.ui:41 -#, fuzzy, kde-format -#| msgid "Select Display Font" +#, kde-format msgid "&Display font:" -msgstr "????????????????????????????????????????????? ?????????????????? ????????????" +msgstr "??????????????????????????????????????????????????? ???&????????????????????????:" #. i18n: ectx: property (toolTip), widget (KFontRequester, kcfg_DisplayFont) #: fonts.ui:54 -#, fuzzy, kde-format -#| msgid "The font to use in the display." +#, kde-format msgid "The font to use in the display" -msgstr "???????????????????????? ?????????????????????????????? ????????????????????? ??????????????????????????? " +msgstr "??????????????????????????????????????????????????? ?????????????????????????????? ????????????????????? ???????????????????????????" #. i18n: ectx: property (text), widget (QLabel, historylabel) #: fonts.ui:61 -#, fuzzy, kde-format -#| msgid "Select Display Font" +#, kde-format msgid "&History font:" -msgstr "????????????????????????????????????????????? ?????????????????? ????????????" +msgstr "&??????????????????????????????????????? ???????????????????????????:" #. i18n: ectx: property (toolTip), widget (KFontRequester, kcfg_HistoryFont) #: fonts.ui:74 -#, fuzzy, kde-format -#| msgid "The font to use in the display." +#, kde-format msgid "The font to use in the history" -msgstr "???????????????????????? ?????????????????????????????? ????????????????????? ??????????????????????????? " +msgstr "?????????????????????????????? ?????????????????????????????? ????????????????????? ???????????????????????????" #. i18n: ectx: property (windowTitle), widget (QWidget, General) #: general.ui:14 kcalc.cpp:1758 #, kde-format msgid "General" -msgstr "?????????????????????" +msgstr "???????????????????????????" #. i18n: ectx: property (title), widget (QGroupBox, precisionGroupBox) #: general.ui:20 #, kde-format msgid "Precision" -msgstr "??????????????????????????????" +msgstr "???????????????????????????" #. i18n: ectx: property (text), widget (QLabel, textLabel1) #: general.ui:28 #, kde-format msgid "&Maximum number of digits:" -msgstr "???????????????????????? ????????????????????????????????? ???????????????????????????" +msgstr "&???????????????????????? ??????????????????????????????:" #. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_Precision) #: general.ui:41 -#, fuzzy, kde-format +#, kde-format msgid "Maximum number of digits displayed" -msgstr "????????????????????????????????? ??????????????????" +msgstr "???????????????????????????????????? ???????????????????????? ????????? ??????????????????????????????" #. i18n: ectx: property (whatsThis), widget (QSpinBox, kcfg_Precision) #: general.ui:44 @@ -220,6 +197,9 @@ "display. This setting gives the maximum number of digits displayed, before " "KCalc starts using scientific notation, i.e. notation of the type 2.34e12." msgstr "" +"??????????????????????????????????????????????????? ???????????????????????????????????????????????? ???????????????????????? ???????????????????????????????????? ?????????????????? ?????????????????????????????? ???????????????????????????. " +"??????????????????????????????, ???????????????????????????????????? ?????????????????????????????? ????????????????????? ????????????????????????????????????????????????. ?????????????????? ????????????????????? ?????????????????????????????? " +"???????????????????????????????????????, ???????????????????????? ?????????????????????????????? (?????????????????? 2.34e12 ????????????????????????) ?????????????????????????????? ???????????????????????????????????????." #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_Fixed) #: general.ui:51 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/po/tr/kcalc.po new/kcalc-22.08.0/po/tr/kcalc.po --- old/kcalc-22.04.3/po/tr/kcalc.po 2022-07-05 06:32:42.000000000 +0200 +++ new/kcalc-22.08.0/po/tr/kcalc.po 2022-08-12 02:04:57.000000000 +0200 @@ -67,13 +67,13 @@ #: colors.ui:105 #, kde-format msgid "Background" -msgstr "A&rka Plan:" +msgstr "A&rka Plan" #. i18n: ectx: property (text), widget (QLabel, textLabel3) #: colors.ui:115 #, kde-format msgid "Foreground" -msgstr "??&n Plan:" +msgstr "??&n Plan" #. i18n: ectx: property (text), widget (QLabel, textLabel5) #: colors.ui:125 @@ -785,7 +785,7 @@ #: kcalc.cpp:1675 #, kde-format msgid "] = " -msgstr "] =" +msgstr "] = " #: kcalc.cpp:1681 kcalc.cpp:1682 #, kde-format @@ -1133,7 +1133,7 @@ #: kcalc.kcfg:156 #, kde-format msgid "Mode with science buttons and optional constants buttons" -msgstr "Bilimsel d????meler ve se??ilebilir sabit de??er d????meleri sunan kip." +msgstr "Bilimsel d????meler ve se??ilebilir sabit de??er d????meleri sunan kip" #. i18n: ectx: label, entry (CalculatorMode), group (General) #: kcalc.kcfg:159 @@ -1146,7 +1146,7 @@ #, kde-format msgid "Mode with additional statistics buttons and optional constants buttons" msgstr "" -"Ek istatistiksel d????meler ve se??ilebilir sabit de??er d????meleri sunan kip." +"Ek istatistiksel d????meler ve se??ilebilir sabit de??er d????meleri sunan kip" #. i18n: ectx: whatsthis, entry (CalculatorMode), group (General) #: kcalc.kcfg:164 @@ -1191,7 +1191,7 @@ #: kcalc.kcfg:191 #, kde-format msgid "Binary figures will be separated by a whitespace after every Xth digit." -msgstr "??kili fig??rler her X'nci rakamdan sonra bo??lukla ayr??lacakt??r" +msgstr "??kili fig??rler her X'nci rakamdan sonra bo??lukla ayr??lacakt??r." #. i18n: ectx: whatsthis, entry (BinaryGrouping), group (Grouping) #: kcalc.kcfg:196 @@ -2188,40 +2188,3 @@ #, kde-format msgid "Avogadro's Number" msgstr "Avogadro Say??s??" - -#~ msgctxt "Sine" -#~ msgid "Sin" -#~ msgstr "Sin" - -#~ msgctxt "Hyperbolic sine" -#~ msgid "Sinh" -#~ msgstr "Sinh" - -#~ msgctxt "Cosine" -#~ msgid "Cos" -#~ msgstr "Cos" - -#~ msgctxt "Hyperbolic cosine" -#~ msgid "Cosh" -#~ msgstr "Cosh" - -#~ msgctxt "Tangent" -#~ msgid "Tan" -#~ msgstr "Tan" - -#~ msgctxt "Hyperbolic tangent" -#~ msgid "Tanh" -#~ msgstr "Tanh" - -#~ msgctxt "Natural log" -#~ msgid "Ln" -#~ msgstr "Ln" - -#~ msgid "Deg" -#~ msgstr "Derece" - -#~ msgid "Rad" -#~ msgstr "Radyan" - -#~ msgid "&Oct" -#~ msgstr "&Sekizlik" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/po/zh_CN/kcalc.po new/kcalc-22.08.0/po/zh_CN/kcalc.po --- old/kcalc-22.04.3/po/zh_CN/kcalc.po 2022-07-05 06:32:42.000000000 +0200 +++ new/kcalc-22.08.0/po/zh_CN/kcalc.po 2022-08-12 02:04:57.000000000 +0200 @@ -1,20 +1,9 @@ -# translation of kcalc.po to ???????????? -# -# Updated by He Qiangqiang <[email protected]>, 2002. -# Xiong Jiang <[email protected]>, 2002. -# Funda Wang <[email protected]>, 2003. -# Ni Hui <[email protected]>, 2008, 2010, 2012. -# Lie_Ex <[email protected]>, 2007,2008,2009. -# Yichao Yu <[email protected]>, 2012. -# Feng Chao <[email protected]>, 2014. -# Weng Xuetian <[email protected]>, 2015. -# Xuetian Weng <[email protected]>, 2015. msgid "" msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-02-02 00:47+0000\n" -"PO-Revision-Date: 2022-07-02 11:03\n" +"PO-Revision-Date: 2022-08-07 13:32\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -270,13 +259,13 @@ #: general.ui:160 #, kde-format msgid "Whether to beep on error" -msgstr "?????????????????????" +msgstr "?????????????????????????????????" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_Beep) #: general.ui:163 #, kde-format msgid "&Beep on error" -msgstr "???????????????(&B)" +msgstr "???????????????????????????(&B)" #. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_CaptionResult) #: general.ui:173 @@ -1059,7 +1048,7 @@ #: kcalc.kcfg:124 #, kde-format msgid "Whether to beep on error." -msgstr "????????????????????????" +msgstr "????????????????????????????????????" #. i18n: ectx: label, entry (CaptionResult), group (General) #: kcalc.kcfg:128 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalc-22.04.3/po/zh_TW/kcalc.po new/kcalc-22.08.0/po/zh_TW/kcalc.po --- old/kcalc-22.04.3/po/zh_TW/kcalc.po 2022-07-05 06:32:42.000000000 +0200 +++ new/kcalc-22.08.0/po/zh_TW/kcalc.po 2022-08-12 02:04:57.000000000 +0200 @@ -1347,7 +1347,7 @@ #: kcalc.ui:114 #, kde-format msgid "He&x" -msgstr "????????????(&X)" +msgstr "????????????(&X)" #. i18n: ectx: property (text), widget (KSqueezedTextLabel, hexDisplay) #. i18n: ectx: property (text), widget (KSqueezedTextLabel, decDisplay) @@ -1362,19 +1362,19 @@ #: kcalc.ui:147 #, kde-format msgid "Switch base to decimal." -msgstr "?????????????????????" +msgstr "?????????????????????" #. i18n: ectx: property (text), widget (QRadioButton, decRadio) #: kcalc.ui:150 #, kde-format msgid "&Dec" -msgstr "?????????(&D)" +msgstr "?????????(&D)" #. i18n: ectx: property (toolTip), widget (QRadioButton, octRadio) #: kcalc.ui:183 #, kde-format msgid "Switch base to octal." -msgstr "?????????????????????" +msgstr "?????????????????????" #. i18n: ectx: property (text), widget (QRadioButton, octRadio) #: kcalc.ui:186 @@ -1386,13 +1386,13 @@ #: kcalc.ui:219 #, kde-format msgid "Switch base to binary." -msgstr "?????????????????????" +msgstr "?????????????????????" #. i18n: ectx: property (text), widget (QRadioButton, binRadio) #: kcalc.ui:222 #, kde-format msgid "&Bin" -msgstr "?????????(&B)" +msgstr "?????????(&B)" #. i18n: ectx: property (toolTip), widget (KCalcButton, pbCSt) #: kcalc.ui:300 @@ -2221,4 +2221,4 @@ #~ msgstr "??????" #~ msgid "&Oct" -#~ msgstr "?????????(&O)" +#~ msgstr "?????????(&O)"
