diff --git a/0001-Display-prompts-for-complex-functions.patch b/0001-Display-prompts-for-complex-functions.patch deleted file mode 100644 index 1032cc7a29676d03167fb2b046d0925035aacf9b..0000000000000000000000000000000000000000 --- a/0001-Display-prompts-for-complex-functions.patch +++ /dev/null @@ -1,88 +0,0 @@ -From 86db492a5defc403e169575bd700553957014c5e Mon Sep 17 00:00:00 2001 -From: huayadong -Date: Sat, 7 Dec 2024 08:46:29 +0800 -Subject: [PATCH] Display prompts for complex functions - ---- - src/programmer/programkeyboary.cpp | 5 +++++ - src/scientificmodel.cpp | 30 ++++++++++++++++++++++++++++++ - 2 files changed, 35 insertions(+) - -diff --git a/src/programmer/programkeyboary.cpp b/src/programmer/programkeyboary.cpp -index b11004b..8a06480 100644 ---- a/src/programmer/programkeyboary.cpp -+++ b/src/programmer/programkeyboary.cpp -@@ -83,6 +83,11 @@ void ProgramKeyboary::initLayout() - m_layout->addWidget(m_btnMap.find(QString("0")).value(), 5, 5, 1, 1); - m_layout->addWidget(m_btnMap.find(QString("Equal")).value(), 5, 6, 1, 1); - -+ m_btnMap.find(QString("Rsh")).value()->setToolTip(tr("Move X 1 bit to the right")); -+ m_btnMap.find(QString("Lsh")).value()->setToolTip(tr("Move X 1 bit to the left")); -+ m_btnMap.find(QString("XY")).value()->setToolTip(tr("Move X to the right by y bits")); -+ m_btnMap.find(QString("YX")).value()->setToolTip(tr("Move X to the left by y bits")); -+ - m_layout->setHorizontalSpacing(2); - m_layout->setVerticalSpacing(2); - m_layout->setMargin(0); -diff --git a/src/scientificmodel.cpp b/src/scientificmodel.cpp -index 6b1a1b1..077a741 100755 ---- a/src/scientificmodel.cpp -+++ b/src/scientificmodel.cpp -@@ -193,6 +193,7 @@ void ScientificModel::setWidgetUi() - QStringList btnNameList = btnList.split(","); - int index = 0; - -+ btnClear->setToolTip(tr("Clear")); - btnClear->setText(btnNameList[index++]); - btnDiv->setText(btnNameList[index++]); - btnMulti->setText(btnNameList[index++]); -@@ -264,6 +265,29 @@ void ScientificModel::setWidgetUi() - btnExp->setText(btnNameList[index++]); - btnLn->setText(btnNameList[index++]); - -+ btnInd->setToolTip(tr("Change some keys to interleaving functions") ); -+ btnUndo->setToolTip(tr("/") ); -+ -+ btnReci->setToolTip(tr("Calculate the reciprocal of the displayed value") ); -+ btnXPower2->setToolTip(tr("Square the displayed value") ); -+ btnXPower3->setToolTip(tr("Calculate the cubic value of the displayed value") ); -+ btnYPowerX->setToolTip(tr("Calculate the displayed value power of the next input value") ); -+ -+ btnFac->setToolTip(tr("Calculate the factorial of the displayed value") ); -+ btnXSquare2->setToolTip(tr("Square root of the displayed square root") ); -+ btnXSquare3->setToolTip(tr("Cubic representation of the displayed value") ); -+ btnYSquareX->setToolTip(tr(" Calculate the displayed value to the y-th power") ); -+ -+ btnSin->setToolTip(tr("Calculate the sine value of the displayed value") ); -+ btnCos->setToolTip(tr("Calculate the cosine value of the displayed value") ); -+ btnTan->setToolTip(tr("Calculate the tangent value of the displayed value") ); -+ btnLog->setToolTip(tr("Calculate the index value based on the displayed value") ); -+ -+ btnRad->setToolTip(tr("Switch between degrees and arcs (click to switch)") ); -+ btnPi->setToolTip(tr("Input pi (3.141596...)") ); -+ btnExp->setToolTip(tr("Enter e (the value of e is e ≈ 2.71828 18284 59...)") ); -+ btnLn->setToolTip(tr("Calculate the natural logarithm of the displayed value") ); -+ - QString btnIconStr = "btn2nd,btnAns,btnLbra,btnRbra,btnReci,btnXPower2,btnXPower3,btnYPowerX,btnFac,btnXSquare2," - "btnXSquare3,btnYSquareX,btnSin,btnCos,btnTan,btnLog,btnRad,btnPi,btnE,btnLn"; - QStringList btnIconList = btnIconStr.split(","); -@@ -985,10 +1009,16 @@ void ScientificModel::changeBtnSinDisplay() - btnSin->setText("asin"); - btnCos->setText("acos"); - btnTan->setText("atan"); -+ btnSin->setToolTip(tr("Calculate the arcsine value of the displayed value") ); -+ btnCos->setToolTip(tr("Calculate the arccosine value of the displayed value") ); -+ btnTan->setToolTip(tr("Calculate the arctangent value of the displayed value") ); - } else { - btnSin->setText("sin"); - btnCos->setText("cos"); - btnTan->setText("tan"); -+ btnSin->setToolTip(tr("Calculate the sine value of the displayed value") ); -+ btnCos->setToolTip(tr("Calculate the cosine value of the displayed value") ); -+ btnTan->setToolTip(tr("Calculate the tangent value of the displayed value") ); - } - - // 更新三角函数图片 --- -2.46.0 - diff --git a/0001-Fix-the-version-showing-none-in-about-dialog.patch b/0001-Fix-the-version-showing-none-in-about-dialog.patch deleted file mode 100644 index abe694c64a293ab0ab711fbd737cced2a48f275d..0000000000000000000000000000000000000000 --- a/0001-Fix-the-version-showing-none-in-about-dialog.patch +++ /dev/null @@ -1,72 +0,0 @@ -From c16a752694ed5e34382199e0b4175a73c2c6ab5e Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?=E4=BE=AF=E7=BA=A2=E5=8B=8B?= -Date: Mon, 27 May 2024 14:22:23 +0800 -Subject: [PATCH] Fix the version showing "none" in about dialog -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Signed-off-by: 侯红勋 ---- - src/menumodule/menumodule.cpp | 31 ++++++++++++------------ - translations/generate_translations_qm.sh | 4 +-- - 2 files changed, 17 insertions(+), 18 deletions(-) - -diff --git a/src/menumodule/menumodule.cpp b/src/menumodule/menumodule.cpp -index 230ad47..765e855 100755 ---- a/src/menumodule/menumodule.cpp -+++ b/src/menumodule/menumodule.cpp -@@ -127,22 +127,21 @@ void menuModule::helpAction() - - QString menuModule::getVersion() - { -- QString version; -- QString command = "dpkg -l kylin-calculator | grep kylin-calculator"; -- QProcess process; -- QStringList args; -- args << "-c" << command; -- process.start("bash", args); -- process.waitForFinished(); -- process.waitForReadyRead(); -- version = process.readAll(); -- QStringList fields = version.split(QRegularExpression("[ \t]+")); -- if (fields.size() >= 3) -- version = fields.at(2); -- else -- version = "none"; -- -- return version; -+ QProcess v_p; -+ v_p.start("rpm", QStringList() << "-q" << "kylin-calculator"); -+ -+ if (!v_p.waitForFinished()) -+ return "none"; -+ -+ QByteArray ba = v_p.readAllStandardOutput(); -+ -+ QRegularExpression qe("-([^-]+)-[^-]+\n$"); -+ -+ QRegularExpressionMatch qem = qe.match(ba); -+ if (qem.hasMatch()) { -+ return qem.captured(1); -+ } -+ return "none"; - } - - void menuModule::keyPressEvent(QKeyEvent *event) -diff --git a/translations/generate_translations_qm.sh b/translations/generate_translations_qm.sh -index 62fa6b5..c162798 100755 ---- a/translations/generate_translations_qm.sh -+++ b/translations/generate_translations_qm.sh -@@ -4,5 +4,5 @@ ts_file_list=(`ls translations/*.ts`) - - for ts in "${ts_file_list[@]}" - do -- lrelease "${ts}" --done -\ No newline at end of file -+ lrelease-qt5 "${ts}" -+done --- -2.33.0 - diff --git a/0001-install-schema-files-to-fix-build-error.patch b/0001-install-schema-files-to-fix-build-error.patch deleted file mode 100644 index cdfbd0fa3c5febb46e95ff0f4e792ac6e19e22a9..0000000000000000000000000000000000000000 --- a/0001-install-schema-files-to-fix-build-error.patch +++ /dev/null @@ -1,38 +0,0 @@ -From d5bf83a93dba9b2cf8c14236697b65b084424326 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?=E4=BE=AF=E7=BA=A2=E5=8B=8B?= -Date: Sun, 7 Apr 2024 17:17:46 +0800 -Subject: [PATCH] install schema files to fix build error -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Signed-off-by: 侯红勋 ---- - kylin-calculator.pri | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/kylin-calculator.pri b/kylin-calculator.pri -index ac08009..86d9857 100644 ---- a/kylin-calculator.pri -+++ b/kylin-calculator.pri -@@ -108,6 +108,9 @@ guide.path = /usr/share/kylin-user-guide/data/guide/ - lib.files = $$PWD/libkylin-calculator.so - lib.path = /opt/small-plugin/children/bin - -+schemes.files += $$PWD/data/org.kylin-calculator-data.gschema.xml $$PWD/data/org.ukui.log4qt.kylin-calculator.gschema.xml -+schemes.path = /usr/share/glib-2.0/schemas/ -+ - desktop.files += $$PWD/kylin-calculator.desktop - desktop.path = /usr/share/applications/ - -@@ -117,6 +120,7 @@ translationsFiles.path = /usr/share/kylin-calculator/translations/ - INSTALLS += \ - target \ - lib \ -+ schemes \ - desktop \ - translationsFiles \ - guide \ --- -2.33.0 - diff --git a/kylin-calculator-1.2.0.0-Multi-language-translation-support.patch b/kylin-calculator-1.2.0.0-Multi-language-translation-support.patch deleted file mode 100644 index 8ed60738fa3a9d281f8c6ed1f1899e67f0e90d57..0000000000000000000000000000000000000000 --- a/kylin-calculator-1.2.0.0-Multi-language-translation-support.patch +++ /dev/null @@ -1,4338 +0,0 @@ -From 0d679914322d1d0fdb5a938c942f5428f993cdcb Mon Sep 17 00:00:00 2001 -From: huayadong -Date: Wed, 20 Nov 2024 00:29:49 +0800 -Subject: [PATCH] Multi language translation support - ---- - kylin-calculator.desktop | 16 + - kylin-calculator.pri | 12 +- - main.cpp | 24 +- - translations/kylin-calculator_de.ts | 714 +++++++++++++++++++++++++ - translations/kylin-calculator_es.ts | 714 +++++++++++++++++++++++++ - translations/kylin-calculator_fr.ts | 714 +++++++++++++++++++++++++ - translations/kylin-calculator_kk_KZ.ts | 289 ++++++++++ - translations/kylin-calculator_ky_KG.ts | 289 ++++++++++ - translations/kylin-calculator_mn.ts | 714 +++++++++++++++++++++++++ - translations/kylin-calculator_ug_CN.ts | 289 ++++++++++ - translations/kylin-calculator_zh_CN.ts | 187 +++---- - 11 files changed, 3867 insertions(+), 95 deletions(-) - create mode 100644 translations/kylin-calculator_de.ts - create mode 100644 translations/kylin-calculator_es.ts - create mode 100644 translations/kylin-calculator_fr.ts - create mode 100644 translations/kylin-calculator_kk_KZ.ts - create mode 100644 translations/kylin-calculator_ky_KG.ts - create mode 100644 translations/kylin-calculator_mn.ts - create mode 100644 translations/kylin-calculator_ug_CN.ts - -diff --git a/kylin-calculator.desktop b/kylin-calculator.desktop -index f0ebe29..8e1ee6d 100644 ---- a/kylin-calculator.desktop -+++ b/kylin-calculator.desktop -@@ -3,10 +3,26 @@ Name=Calculator - Name[zh_CN]=计算器 - Name[bo_CN]=རྩིས་ཆས། - Name[zh_HK]=計算器 -+Name[kk]=Калькулятор -+Name[ky]=Калькулятор -+Name[de]=Rechner -+Name[es]=Calculadora -+Name[fr]=Calculatrice -+Name[ug]=ھېسابلىغۇچ -+Name[mn]=ᠪᠣᠳᠣᠭᠤᠷ -+Name[ky]=རྩིས་རྒྱག་འཕྲུལ་ཆས། - GenericName[bo_CN]=རྩིས་ཆས། - GenericName=Calculator - GenericName[zh_CN]=计算器 - GenericName[zh_HK]=計算器 -+GenericName[kk]=Калькулятор -+GenericName[ky]=Калькулятор -+GenericName[de]=Rechner -+GenericName[es]=Calculadora -+GenericName[fr]=Calculatrice -+GenericName[ug]=ھېسابلىغۇچ -+GenericName[mn]=ᠪᠣᠳᠣᠭᠤᠷ -+GenericName[ky]=རྩིས་རྒྱག་འཕྲུལ་ཆས། - Keywords=calculator - Exec=/usr/bin/kylin-calculator %u - Icon=kylin-calculator -diff --git a/kylin-calculator.pri b/kylin-calculator.pri -index 86d9857..02299fe 100644 ---- a/kylin-calculator.pri -+++ b/kylin-calculator.pri -@@ -92,7 +92,15 @@ RESOURCES += \ - $$PWD/image.qrc - - TRANSLATIONS += $$PWD/translations/kylin-calculator_zh_CN.ts \ -- $$PWD/translations/kylin-calculator_bo_CN.ts -+ $$PWD/translations/kylin-calculator_bo_CN.ts \ -+ $$PWD/translations/kylin-calculator_zh_HK.ts \ -+ $$PWD/translations/kylin-calculator_kk_KZ.ts \ -+ $$PWD/translations/kylin-calculator_ky_KG.ts \ -+ $$PWD/translations/kylin-calculator_mn.ts \ -+ $$PWD/translations/kylin-calculator_fr.ts \ -+ $$PWD/translations/kylin-calculator_de.ts \ -+ $$PWD/translations/kylin-calculator_es.ts \ -+ $$PWD/translations/kylin-calculator_ug_CN.ts - QM_FILES_INSTALL_PATH = /usr/share/kylin-calculator/translations/ - - DISTFILES += \ -@@ -120,7 +128,7 @@ translationsFiles.path = /usr/share/kylin-calculator/translations/ - INSTALLS += \ - target \ - lib \ -- schemes \ -+ schemes \ - desktop \ - translationsFiles \ - guide \ -diff --git a/main.cpp b/main.cpp -index 8d523cd..f89795d 100644 ---- a/main.cpp -+++ b/main.cpp -@@ -55,7 +55,29 @@ int main(int argc, char *argv[]) - a.installTranslator(&trans); - } - } -- -+ /* -+ else if (locale == "ug_CN") { -+ if (trans.load(":/translations/gui_ug_CN.qm")) { -+ a.installTranslator(&trans); -+ } -+ } else if (locale == "zh_HK") { -+ if (trans.load(":/translations/gui_zh_HK.qm")) { -+ a.installTranslator(&trans); -+ } -+ } else if (locale == "kk_KZ") { -+ if (trans.load(":/translations/gui_kk_KZ.qm")) { -+ a.installTranslator(&trans); -+ } -+ } else if (locale == "ky_KG") { -+ if (trans.load(":/translations/gui_ky_KG.qm")) { -+ a.installTranslator(&trans); -+ } -+ } else if (locale == "mn") { -+ if (trans.load(":/translations/gui_mn.qm")) { -+ a.installTranslator(&trans); -+ } -+ } -+*/ - /* 实例 */ - LogicCenter::getInstance(); - -diff --git a/translations/kylin-calculator_de.ts b/translations/kylin-calculator_de.ts -new file mode 100644 -index 0000000..aa0a49e ---- /dev/null -+++ b/translations/kylin-calculator_de.ts -@@ -0,0 +1,714 @@ -+ -+ -+ -+ -+ Calc -+ -+ -+ The expression is empty! -+ Der Ausdruck ist leer! -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ Expression error! -+ Ausdrucksfehler! -+ -+ -+ -+ -+ Missing left parenthesis! -+ Linke Klammer fehlt! -+ -+ -+ -+ The value is too large! -+ Der Wert ist zu groß! -+ -+ -+ -+ Miss operand! -+ Fräulein Operandin! -+ -+ -+ -+ -+ Operator undefined! -+ Operator undefiniert! -+ -+ -+ -+ Divisor cannot be 0! -+ Der Divisor darf nicht 0 sein! -+ -+ -+ -+ -+ Right operand error! -+ Richtiger Operandenfehler! -+ -+ -+ -+ FuncList -+ -+ -+ Calculator -+ Rechner -+ -+ -+ -+ standard -+ Norm -+ -+ -+ -+ scientific -+ wissenschaftlich -+ -+ -+ -+ Unit converter -+ Einheiten-Umrechner -+ -+ -+ -+ exchange rate -+ Wechselkurs -+ -+ -+ -+ IntelModeList -+ -+ -+ standard -+ Norm -+ -+ -+ -+ scientific -+ wissenschaftlich -+ -+ -+ -+ MainWindow -+ -+ -+ Calculator -+ Rechner -+ -+ -+ -+ -+ -+ standard -+ Norm -+ -+ -+ -+ calculator -+ Rechner -+ -+ -+ -+ Copy -+ Kopieren -+ -+ -+ -+ Paste -+ Kleister -+ -+ -+ -+ input too long -+ Eingabe zu lang -+ -+ -+ -+ -+ -+ scientific -+ wissenschaftlich -+ -+ -+ -+ exchange rate -+ Wechselkurs -+ -+ -+ -+ -+ Error! -+ Fehler! -+ -+ -+ -+ -+ Input error! -+ Eingabefehler! -+ -+ -+ -+ ProgramDisplay -+ -+ -+ -+ input too long! -+ Eingabe zu lang! -+ -+ -+ -+ ProgramModel -+ -+ -+ -+ -+ Input error! -+ Eingabefehler! -+ -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ HideBinary -+ HideBinary -+ -+ -+ -+ QObject -+ -+ Calculator -+ 计算器 -+ -+ -+ -+ TitleBar -+ -+ -+ Standard -+ Norm -+ -+ -+ -+ Scientific -+ Wissenschaftlich -+ -+ -+ -+ -+ -+ standard -+ Norm -+ -+ -+ -+ -+ scientific -+ wissenschaftlich -+ -+ -+ -+ Exchange Rate -+ Wechselkurs -+ -+ -+ -+ Programmer -+ Programmierer -+ -+ -+ -+ StayTop -+ StayTop -+ -+ -+ -+ Restore -+ Wiederherstellen -+ -+ -+ -+ -+ Minimize -+ Minimieren -+ -+ -+ -+ -+ -+ Maximize -+ Maximieren -+ -+ -+ -+ -+ Close -+ Schließen -+ -+ -+ -+ ToolBar -+ -+ -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ -+ HideBinary -+ HideBinary -+ -+ -+ -+ ToolModelOutput -+ -+ -+ Rate update -+ Raten-Update -+ -+ -+ -+ -+ Chinese Yuan -+ Chinesischer Yuan -+ -+ -+ -+ -+ US Dollar -+ US-Dollar -+ -+ -+ -+ UAE Dirham -+ VAE-Dirham -+ -+ -+ -+ Argentinian peso -+ Argentinischer Peso -+ -+ -+ -+ Australian Dollar -+ Australischer Dollar -+ -+ -+ -+ Bulgarian Lev -+ Bulgarischer Lew -+ -+ -+ -+ Bahraini Dinar -+ Bahrainischer Dinar -+ -+ -+ -+ Brunei Dollar -+ Brunei-Dollar -+ -+ -+ -+ Brazilian Real -+ Brasilianischer Real -+ -+ -+ -+ Bahaman Dollar -+ Bahama-Dollar -+ -+ -+ -+ Botswana Pula -+ Botswana Pula -+ -+ -+ -+ Canadian Dollar -+ Kanadischer Dollar -+ -+ -+ -+ CFA Franc -+ CFA-Franc -+ -+ -+ -+ Swiss Franc -+ Schweizer Franken -+ -+ -+ -+ Chilean Peso -+ Chilenischer Peso -+ -+ -+ -+ Colombian Peso -+ Kolumbianischer Peso -+ -+ -+ -+ Czech Koruna -+ Tschechische Krone -+ -+ -+ -+ Danish Krone -+ Dänische Krone -+ -+ -+ -+ Dominican peso -+ Dominikanischer Peso -+ -+ -+ -+ Algerian Dinar -+ Algerischer Dinar -+ -+ -+ -+ Estonian Kroon -+ Estnische Krone -+ -+ -+ -+ Egyptian pound -+ Ägyptisches Pfund -+ -+ -+ -+ Euro -+ Euro -+ -+ -+ -+ Fijian dollar -+ Fidschi-Dollar -+ -+ -+ -+ Pound Sterling -+ Pfund Sterling -+ -+ -+ -+ Guatemalan Quetzal -+ Guatemaltekischer Quetzal -+ -+ -+ -+ Hong Kong Dollar -+ Hongkong-Dollar -+ -+ -+ -+ Croatian Kuna -+ Kroatische Kuna -+ -+ -+ -+ Hungarian Forint -+ Ungarischer Forint -+ -+ -+ -+ Indonesian Rupiah -+ Indonesische Rupiah -+ -+ -+ -+ Israeli New Shekel -+ Israelischer Neuer Schekel -+ -+ -+ -+ Indian Rupee -+ Indische Rupie -+ -+ -+ -+ Iranian Rial -+ Iranischer Rial -+ -+ -+ -+ Icelandic Krona -+ Isländische Krone -+ -+ -+ -+ Japanese Yen -+ Japanischer Yen -+ -+ -+ -+ South Korean Won -+ Südkoreanischer Won -+ -+ -+ -+ Kuwaiti Dinar -+ Kuwaitischer Dinar -+ -+ -+ -+ Kazakhstani Tenge -+ Kasachischer Tenge -+ -+ -+ -+ Sri Lankan Rupee -+ Sri-Lanka-Rupie -+ -+ -+ -+ Lithuanian Litas -+ Litauischer Litas -+ -+ -+ -+ Latvian Lats -+ Lettische Lats -+ -+ -+ -+ Libyan Dinar -+ Libyscher Dinar -+ -+ -+ -+ Mauritian Rupee -+ Mauritius-Rupie -+ -+ -+ -+ Maldivian Rupee -+ Maledivische Rupie -+ -+ -+ -+ Mexican Peso -+ Mexikanischer Peso -+ -+ -+ -+ Malaysian Ringgit -+ Malaysischer Ringgit -+ -+ -+ -+ Norwegian Krone -+ Norwegische Krone -+ -+ -+ -+ Nepalese Rupee -+ Nepalesische Rupie -+ -+ -+ -+ New Zealand Dollar -+ Neuseeland-Dollar -+ -+ -+ -+ Omani Rial -+ Omanischer Rial -+ -+ -+ -+ Panamanian balbos -+ Panamaische Balbos -+ -+ -+ -+ Peruvian Nuevo Sol -+ Peruanischer Nuevo Sol -+ -+ -+ -+ Philippine Peso -+ Philippinischer Peso -+ -+ -+ -+ Pakistani Rupee -+ Pakistanische Rupie -+ -+ -+ -+ Polish Zloty -+ Polnischer Zloty -+ -+ -+ -+ Paraguayan Guaran -+ Paraguayischer Guaran -+ -+ -+ -+ Qatari Riyal -+ Katarischer Riyal -+ -+ -+ -+ New Romanian Leu -+ Neue rumänische Leu -+ -+ -+ -+ Russian Rouble -+ Russischer Rubel -+ -+ -+ -+ Saudi Riyal -+ Saudischer Rial -+ -+ -+ -+ Swedish Krona -+ Schwedische Krone -+ -+ -+ -+ Singapore Dollar -+ Singapur-Dollar -+ -+ -+ -+ Thai Baht -+ Thailändische Baht -+ -+ -+ -+ Tunisian Dinar -+ Tunesischer Dinar -+ -+ -+ -+ New Turkish Lira -+ Neue Türkische Lira -+ -+ -+ -+ T&T Dollar (TTD) -+ T&T Dollar (TTD) -+ -+ -+ -+ Taiwan Dollar -+ Taiwan-Dollar -+ -+ -+ -+ Ukrainian Hryvnia -+ Ukrainische Hrywnja -+ -+ -+ -+ Uruguayan Peso -+ Uruguayischer Peso -+ -+ -+ -+ Venezuelan Bolívar -+ Venezolanischer Bolívar -+ -+ -+ -+ South African Rand -+ Südafrikanischer Rand -+ -+ -+ -+ Error! -+ Fehler! -+ -+ -+ -+ menuModule -+ -+ -+ Options -+ Optionen -+ -+ -+ -+ -+ Standard -+ Norm -+ -+ -+ -+ -+ Scientific -+ Wissenschaftlich -+ -+ -+ -+ -+ Exchange Rate -+ Wechselkurs -+ -+ -+ -+ -+ Programmer -+ Programmierer -+ -+ -+ -+ Theme -+ Thema -+ -+ -+ -+ -+ Help -+ Hilfe -+ -+ -+ -+ -+ About -+ Über -+ -+ -+ -+ -+ Quit -+ Verlassen -+ -+ -+ -+ Version: -+ Version: -+ -+ -+ -+ Calculator is a lightweight calculator based on Qt5, which provides standard calculation, scientific calculation and exchange rate conversion. -+ Calculator ist ein leichtgewichtiger Rechner, der auf Qt5 basiert und Standardberechnungen, wissenschaftliche Berechnungen und Wechselkursumrechnungen bietet. -+ -+ -+ -+ Calculator -+ Rechner -+ -+ -+ -diff --git a/translations/kylin-calculator_es.ts b/translations/kylin-calculator_es.ts -new file mode 100644 -index 0000000..adce5c1 ---- /dev/null -+++ b/translations/kylin-calculator_es.ts -@@ -0,0 +1,714 @@ -+ -+ -+ -+ -+ Calc -+ -+ -+ The expression is empty! -+ ¡La expresión está vacía! -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ Expression error! -+ ¡Error de expresión! -+ -+ -+ -+ -+ Missing left parenthesis! -+ ¡Falta el paréntesis izquierdo! -+ -+ -+ -+ The value is too large! -+ ¡El valor es demasiado grande! -+ -+ -+ -+ Miss operand! -+ ¡Señorita operando! -+ -+ -+ -+ -+ Operator undefined! -+ ¡Operador indefinido! -+ -+ -+ -+ Divisor cannot be 0! -+ ¡El divisor no puede ser 0! -+ -+ -+ -+ -+ Right operand error! -+ ¡Error de operando correcto! -+ -+ -+ -+ FuncList -+ -+ -+ Calculator -+ Calculadora -+ -+ -+ -+ standard -+ estándar -+ -+ -+ -+ scientific -+ científico -+ -+ -+ -+ Unit converter -+ Convertidor de unidades -+ -+ -+ -+ exchange rate -+ tipo de cambio -+ -+ -+ -+ IntelModeList -+ -+ -+ standard -+ estándar -+ -+ -+ -+ scientific -+ científico -+ -+ -+ -+ MainWindow -+ -+ -+ Calculator -+ Calculadora -+ -+ -+ -+ -+ -+ standard -+ estándar -+ -+ -+ -+ calculator -+ calculadora -+ -+ -+ -+ Copy -+ Copiar -+ -+ -+ -+ Paste -+ Pegar -+ -+ -+ -+ input too long -+ Entrada demasiado larga -+ -+ -+ -+ -+ -+ scientific -+ científico -+ -+ -+ -+ exchange rate -+ tipo de cambio -+ -+ -+ -+ -+ Error! -+ ¡Error! -+ -+ -+ -+ -+ Input error! -+ ¡Error de entrada! -+ -+ -+ -+ ProgramDisplay -+ -+ -+ -+ input too long! -+ ¡Entrada demasiado larga! -+ -+ -+ -+ ProgramModel -+ -+ -+ -+ -+ Input error! -+ ¡Error de entrada! -+ -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ HideBinary -+ HideBinary (en inglés) -+ -+ -+ -+ QObject -+ -+ Calculator -+ 计算器 -+ -+ -+ -+ TitleBar -+ -+ -+ Standard -+ Estándar -+ -+ -+ -+ Scientific -+ Científico -+ -+ -+ -+ -+ -+ standard -+ estándar -+ -+ -+ -+ -+ scientific -+ científico -+ -+ -+ -+ Exchange Rate -+ Tipo de cambio -+ -+ -+ -+ Programmer -+ Programador -+ -+ -+ -+ StayTop -+ StayTop -+ -+ -+ -+ Restore -+ Restaurar -+ -+ -+ -+ -+ Minimize -+ Minimizar -+ -+ -+ -+ -+ -+ Maximize -+ Maximizar -+ -+ -+ -+ -+ Close -+ Cerrar -+ -+ -+ -+ ToolBar -+ -+ -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ -+ HideBinary -+ HideBinary (en inglés) -+ -+ -+ -+ ToolModelOutput -+ -+ -+ Rate update -+ Actualización de tarifas -+ -+ -+ -+ -+ Chinese Yuan -+ Yuan chino -+ -+ -+ -+ -+ US Dollar -+ Dólar de EE.UU -+ -+ -+ -+ UAE Dirham -+ Dírham de los Emiratos Árabes Unidos -+ -+ -+ -+ Argentinian peso -+ Peso argentino -+ -+ -+ -+ Australian Dollar -+ Dólar australiano -+ -+ -+ -+ Bulgarian Lev -+ Lev búlgaro -+ -+ -+ -+ Bahraini Dinar -+ Dinar bahreiní -+ -+ -+ -+ Brunei Dollar -+ Dólar de Brunéi -+ -+ -+ -+ Brazilian Real -+ Real brasileño -+ -+ -+ -+ Bahaman Dollar -+ Dólar de las Bahamas -+ -+ -+ -+ Botswana Pula -+ Botswana Pula -+ -+ -+ -+ Canadian Dollar -+ Dólar canadiense -+ -+ -+ -+ CFA Franc -+ Franco CFA -+ -+ -+ -+ Swiss Franc -+ Franco suizo -+ -+ -+ -+ Chilean Peso -+ Peso Chileno -+ -+ -+ -+ Colombian Peso -+ Peso Colombiano -+ -+ -+ -+ Czech Koruna -+ Corona checa -+ -+ -+ -+ Danish Krone -+ Corona danesa -+ -+ -+ -+ Dominican peso -+ Peso dominicano -+ -+ -+ -+ Algerian Dinar -+ Dinar argelino -+ -+ -+ -+ Estonian Kroon -+ Coronas estonias -+ -+ -+ -+ Egyptian pound -+ Libra egipcia -+ -+ -+ -+ Euro -+ Euro -+ -+ -+ -+ Fijian dollar -+ Dólar fiyiano -+ -+ -+ -+ Pound Sterling -+ Libra esterlina -+ -+ -+ -+ Guatemalan Quetzal -+ Quetzal guatemalteco -+ -+ -+ -+ Hong Kong Dollar -+ Dólar de Hong Kong -+ -+ -+ -+ Croatian Kuna -+ Kuna croata -+ -+ -+ -+ Hungarian Forint -+ Florín húngaro -+ -+ -+ -+ Indonesian Rupiah -+ Rupia indonesia -+ -+ -+ -+ Israeli New Shekel -+ Nuevo Shekel israelí -+ -+ -+ -+ Indian Rupee -+ Rupia india -+ -+ -+ -+ Iranian Rial -+ Rial iraní -+ -+ -+ -+ Icelandic Krona -+ Corona islandesa -+ -+ -+ -+ Japanese Yen -+ Yen japonés -+ -+ -+ -+ South Korean Won -+ Won surcoreano -+ -+ -+ -+ Kuwaiti Dinar -+ Dinar kuwaití -+ -+ -+ -+ Kazakhstani Tenge -+ Tenge kazajo -+ -+ -+ -+ Sri Lankan Rupee -+ Rupia de Sri Lanka -+ -+ -+ -+ Lithuanian Litas -+ Litas lituanas -+ -+ -+ -+ Latvian Lats -+ Lats letones -+ -+ -+ -+ Libyan Dinar -+ Dinar libio -+ -+ -+ -+ Mauritian Rupee -+ Rupia mauriciana -+ -+ -+ -+ Maldivian Rupee -+ Rupia de Maldivas -+ -+ -+ -+ Mexican Peso -+ Peso Mexicano -+ -+ -+ -+ Malaysian Ringgit -+ Ringgit malayo -+ -+ -+ -+ Norwegian Krone -+ Corona noruega -+ -+ -+ -+ Nepalese Rupee -+ Rupia nepalí -+ -+ -+ -+ New Zealand Dollar -+ Dólar neozelandés -+ -+ -+ -+ Omani Rial -+ Rial omaní -+ -+ -+ -+ Panamanian balbos -+ Balbos panameños -+ -+ -+ -+ Peruvian Nuevo Sol -+ Nuevo Sol Peruano -+ -+ -+ -+ Philippine Peso -+ Peso filipino -+ -+ -+ -+ Pakistani Rupee -+ Rupia pakistaní -+ -+ -+ -+ Polish Zloty -+ Zloty polaco -+ -+ -+ -+ Paraguayan Guaran -+ Guaran paraguayo -+ -+ -+ -+ Qatari Riyal -+ Riyal catarí -+ -+ -+ -+ New Romanian Leu -+ Nuevo Leu rumano -+ -+ -+ -+ Russian Rouble -+ Rublo ruso -+ -+ -+ -+ Saudi Riyal -+ Riyal saudí -+ -+ -+ -+ Swedish Krona -+ Corona sueca -+ -+ -+ -+ Singapore Dollar -+ Dólar de Singapur -+ -+ -+ -+ Thai Baht -+ Baht tailandés -+ -+ -+ -+ Tunisian Dinar -+ Dinar tunecino -+ -+ -+ -+ New Turkish Lira -+ Nueva lira turca -+ -+ -+ -+ T&T Dollar (TTD) -+ Dólar T&T (TTD) -+ -+ -+ -+ Taiwan Dollar -+ Dólar taiwanés -+ -+ -+ -+ Ukrainian Hryvnia -+ Grivna ucraniana -+ -+ -+ -+ Uruguayan Peso -+ Peso Uruguayo -+ -+ -+ -+ Venezuelan Bolívar -+ Bolívar venezolano -+ -+ -+ -+ South African Rand -+ Rand sudafricano -+ -+ -+ -+ Error! -+ ¡Error! -+ -+ -+ -+ menuModule -+ -+ -+ Options -+ Opciones -+ -+ -+ -+ -+ Standard -+ Estándar -+ -+ -+ -+ -+ Scientific -+ Científico -+ -+ -+ -+ -+ Exchange Rate -+ Tipo de cambio -+ -+ -+ -+ -+ Programmer -+ Programador -+ -+ -+ -+ Theme -+ Tema -+ -+ -+ -+ -+ Help -+ Ayuda -+ -+ -+ -+ -+ About -+ Acerca de -+ -+ -+ -+ -+ Quit -+ Renunciar -+ -+ -+ -+ Version: -+ Versión: -+ -+ -+ -+ Calculator is a lightweight calculator based on Qt5, which provides standard calculation, scientific calculation and exchange rate conversion. -+ Calculator es una calculadora ligera basada en Qt5, que proporciona cálculo estándar, cálculo científico y conversión de tipo de cambio. -+ -+ -+ -+ Calculator -+ Calculadora -+ -+ -+ -diff --git a/translations/kylin-calculator_fr.ts b/translations/kylin-calculator_fr.ts -new file mode 100644 -index 0000000..0b4bb66 ---- /dev/null -+++ b/translations/kylin-calculator_fr.ts -@@ -0,0 +1,714 @@ -+ -+ -+ -+ -+ Calc -+ -+ -+ The expression is empty! -+ L’expression est vide ! -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ Expression error! -+ Erreur d’expression ! -+ -+ -+ -+ -+ Missing left parenthesis! -+ Parenthèse gauche manquante ! -+ -+ -+ -+ The value is too large! -+ La valeur est trop importante ! -+ -+ -+ -+ Miss operand! -+ Miss opérande ! -+ -+ -+ -+ -+ Operator undefined! -+ Opérateur indéfini ! -+ -+ -+ -+ Divisor cannot be 0! -+ Le diviseur ne peut pas être égal à 0 ! -+ -+ -+ -+ -+ Right operand error! -+ Erreur d’opérande droit ! -+ -+ -+ -+ FuncList -+ -+ -+ Calculator -+ Calculatrice -+ -+ -+ -+ standard -+ standard -+ -+ -+ -+ scientific -+ scientifique -+ -+ -+ -+ Unit converter -+ Convertisseur d’unités -+ -+ -+ -+ exchange rate -+ taux de change -+ -+ -+ -+ IntelModeList -+ -+ -+ standard -+ standard -+ -+ -+ -+ scientific -+ scientifique -+ -+ -+ -+ MainWindow -+ -+ -+ Calculator -+ Calculatrice -+ -+ -+ -+ -+ -+ standard -+ standard -+ -+ -+ -+ calculator -+ calculatrice -+ -+ -+ -+ Copy -+ Copier -+ -+ -+ -+ Paste -+ Pâte -+ -+ -+ -+ input too long -+ entrée trop longue -+ -+ -+ -+ -+ -+ scientific -+ scientifique -+ -+ -+ -+ exchange rate -+ taux de change -+ -+ -+ -+ -+ Error! -+ Erreur! -+ -+ -+ -+ -+ Input error! -+ Erreur de saisie ! -+ -+ -+ -+ ProgramDisplay -+ -+ -+ -+ input too long! -+ Entrée trop longue ! -+ -+ -+ -+ ProgramModel -+ -+ -+ -+ -+ Input error! -+ Erreur de saisie ! -+ -+ -+ -+ ShowBinary -+ ShowBinary (Binaire) -+ -+ -+ -+ HideBinary -+ MasquerBinaire -+ -+ -+ -+ QObject -+ -+ Calculator -+ 计算器 -+ -+ -+ -+ TitleBar -+ -+ -+ Standard -+ Standard -+ -+ -+ -+ Scientific -+ Scientifique -+ -+ -+ -+ -+ -+ standard -+ standard -+ -+ -+ -+ -+ scientific -+ scientifique -+ -+ -+ -+ Exchange Rate -+ Taux de change -+ -+ -+ -+ Programmer -+ Programmeur -+ -+ -+ -+ StayTop -+ StayTop (en anglais seulement) -+ -+ -+ -+ Restore -+ Restaurer -+ -+ -+ -+ -+ Minimize -+ Minimiser -+ -+ -+ -+ -+ -+ Maximize -+ Maximiser -+ -+ -+ -+ -+ Close -+ Fermer -+ -+ -+ -+ ToolBar -+ -+ -+ -+ -+ ShowBinary -+ ShowBinary (Binaire) -+ -+ -+ -+ -+ HideBinary -+ MasquerBinaire -+ -+ -+ -+ ToolModelOutput -+ -+ -+ Rate update -+ Mise à jour des tarifs -+ -+ -+ -+ -+ Chinese Yuan -+ Yuan chinois -+ -+ -+ -+ -+ US Dollar -+ Dollar -+ -+ -+ -+ UAE Dirham -+ Dirham des Émirats arabes unis -+ -+ -+ -+ Argentinian peso -+ Peso argentin -+ -+ -+ -+ Australian Dollar -+ Dollar australien -+ -+ -+ -+ Bulgarian Lev -+ Lev bulgare -+ -+ -+ -+ Bahraini Dinar -+ Dinar bahreïni -+ -+ -+ -+ Brunei Dollar -+ Brunei Dollar -+ -+ -+ -+ Brazilian Real -+ Réal brésilien -+ -+ -+ -+ Bahaman Dollar -+ Dollar des Bahamas -+ -+ -+ -+ Botswana Pula -+ Botswana Pula -+ -+ -+ -+ Canadian Dollar -+ Dollar canadien -+ -+ -+ -+ CFA Franc -+ Franc CFA -+ -+ -+ -+ Swiss Franc -+ Franc suisse -+ -+ -+ -+ Chilean Peso -+ Peso chilien -+ -+ -+ -+ Colombian Peso -+ Peso colombien -+ -+ -+ -+ Czech Koruna -+ Couronne tchèque -+ -+ -+ -+ Danish Krone -+ Couronne danoise -+ -+ -+ -+ Dominican peso -+ Peso dominicain -+ -+ -+ -+ Algerian Dinar -+ Dinar algérien -+ -+ -+ -+ Estonian Kroon -+ Couronne estonienne -+ -+ -+ -+ Egyptian pound -+ Livre égyptienne -+ -+ -+ -+ Euro -+ Euro -+ -+ -+ -+ Fijian dollar -+ Dollar fidjien -+ -+ -+ -+ Pound Sterling -+ Livre sterling -+ -+ -+ -+ Guatemalan Quetzal -+ Quetzal guatémaltèque -+ -+ -+ -+ Hong Kong Dollar -+ Hong Kong Dollar -+ -+ -+ -+ Croatian Kuna -+ Kuna croate -+ -+ -+ -+ Hungarian Forint -+ Forint hongrois -+ -+ -+ -+ Indonesian Rupiah -+ Roupie indonésienne -+ -+ -+ -+ Israeli New Shekel -+ Nouveau shekel israélien -+ -+ -+ -+ Indian Rupee -+ Roupie indienne -+ -+ -+ -+ Iranian Rial -+ Rial iranien -+ -+ -+ -+ Icelandic Krona -+ Couronne islandaise -+ -+ -+ -+ Japanese Yen -+ Yen japonais -+ -+ -+ -+ South Korean Won -+ Won sud-coréen -+ -+ -+ -+ Kuwaiti Dinar -+ Dinar koweïtien -+ -+ -+ -+ Kazakhstani Tenge -+ Tenge kazakh -+ -+ -+ -+ Sri Lankan Rupee -+ Roupie sri-lankaise -+ -+ -+ -+ Lithuanian Litas -+ Litas lituanien -+ -+ -+ -+ Latvian Lats -+ Lats lettons -+ -+ -+ -+ Libyan Dinar -+ Dinar libyen -+ -+ -+ -+ Mauritian Rupee -+ Roupie mauricienne -+ -+ -+ -+ Maldivian Rupee -+ Roupie des Maldives -+ -+ -+ -+ Mexican Peso -+ Peso mexicain -+ -+ -+ -+ Malaysian Ringgit -+ Ringgit malaisien -+ -+ -+ -+ Norwegian Krone -+ Couronne norvégienne -+ -+ -+ -+ Nepalese Rupee -+ Roupie népalaise -+ -+ -+ -+ New Zealand Dollar -+ Dollar néo-zélandais -+ -+ -+ -+ Omani Rial -+ Rial omanais -+ -+ -+ -+ Panamanian balbos -+ Balbos panaméens -+ -+ -+ -+ Peruvian Nuevo Sol -+ Nuevo Sol péruvien -+ -+ -+ -+ Philippine Peso -+ Peso philippin -+ -+ -+ -+ Pakistani Rupee -+ Roupie pakistanaise -+ -+ -+ -+ Polish Zloty -+ Zloty polonais -+ -+ -+ -+ Paraguayan Guaran -+ Guaran paraguayen -+ -+ -+ -+ Qatari Riyal -+ Rial qatari -+ -+ -+ -+ New Romanian Leu -+ Nouveau Leu roumain -+ -+ -+ -+ Russian Rouble -+ Rouble russe -+ -+ -+ -+ Saudi Riyal -+ Rial saoudien -+ -+ -+ -+ Swedish Krona -+ Couronne suédoise -+ -+ -+ -+ Singapore Dollar -+ Dollar de Singapour -+ -+ -+ -+ Thai Baht -+ Baht thaïlandais -+ -+ -+ -+ Tunisian Dinar -+ Dinar tunisien -+ -+ -+ -+ New Turkish Lira -+ Nouvelle livre turque -+ -+ -+ -+ T&T Dollar (TTD) -+ Dollar T&T (TTD) -+ -+ -+ -+ Taiwan Dollar -+ Dollar de Taïwan -+ -+ -+ -+ Ukrainian Hryvnia -+ Hryvnia ukrainienne -+ -+ -+ -+ Uruguayan Peso -+ Peso uruguayen -+ -+ -+ -+ Venezuelan Bolívar -+ Bolívar vénézuélien -+ -+ -+ -+ South African Rand -+ Rand sud-africain -+ -+ -+ -+ Error! -+ Erreur! -+ -+ -+ -+ menuModule -+ -+ -+ Options -+ Options -+ -+ -+ -+ -+ Standard -+ Standard -+ -+ -+ -+ -+ Scientific -+ Scientifique -+ -+ -+ -+ -+ Exchange Rate -+ Taux de change -+ -+ -+ -+ -+ Programmer -+ Programmeur -+ -+ -+ -+ Theme -+ Thème -+ -+ -+ -+ -+ Help -+ Aide -+ -+ -+ -+ -+ About -+ Environ -+ -+ -+ -+ -+ Quit -+ Démissionner -+ -+ -+ -+ Version: -+ Version: -+ -+ -+ -+ Calculator is a lightweight calculator based on Qt5, which provides standard calculation, scientific calculation and exchange rate conversion. -+ Calculator est une calculatrice légère basée sur Qt5, qui fournit un calcul standard, un calcul scientifique et une conversion de taux de change. -+ -+ -+ -+ Calculator -+ Calculatrice -+ -+ -+ -diff --git a/translations/kylin-calculator_kk_KZ.ts b/translations/kylin-calculator_kk_KZ.ts -new file mode 100644 -index 0000000..f2acf79 ---- /dev/null -+++ b/translations/kylin-calculator_kk_KZ.ts -@@ -0,0 +1,289 @@ -+ -+ -+ -+ -+ menuModule -+ -+ Auto -+ Авто -+ -+ -+ Dark -+ Қараңғы -+ -+ -+ Help -+ Анықтама -+ -+ -+ Menu -+ Мәзір -+ -+ -+ Quit -+ Шығу -+ -+ -+ About -+ Шамамен -+ -+ -+ Light -+ Жарық -+ -+ -+ Theme -+ Тақырып -+ -+ -+ Exchange Rate -+ Айырбас бағамы -+ -+ -+ Calculator is a lightweight calculator based on Qt5, which provides standard calculation, scientific calculation and exchange rate conversion. -+ Калькулятор - стандартты есептеуді, ғылыми есептеуді және айырбас бағамын түрлендіруді қамтамасыз ететін Qt5 негізіндегі жеңілдетілген калькулятор. -+ -+ -+ Service & Support: -+ Қызмет және қолдау: -+ -+ -+ Version: -+ Нұсқасы: -+ -+ -+ Standard -+ Стандарт -+ -+ -+ Calculator -+ Калькулятор -+ -+ -+ Scientific -+ Ғылыми -+ -+ -+ Programmer -+ Бағдарламашы -+ -+ -+ -+ MainWindow -+ -+ Copy -+ Көшіру -+ -+ -+ Paste -+ Қою -+ -+ -+ input too long -+ енгізу тым ұзақ -+ -+ -+ exchange rate -+ айырбас бағамы -+ -+ -+ Input error! -+ Енгізу қатесі! -+ -+ -+ Error! -+ Қате! -+ -+ -+ standard -+ стандартты -+ -+ -+ calculator -+ калькулятор -+ -+ -+ Calculator -+ Калькулятор -+ -+ -+ scientific -+ ғылыми -+ -+ -+ -+ Calc -+ -+ Divisor cannot be 0! -+ Бөлінуші 0 бола алмайды! -+ -+ -+ The expression is empty! -+ Өрнек бос! -+ -+ -+ Missing left parenthesis! -+ Сол жақ паренхез жоқ! -+ -+ -+ Miss operand! -+ Операндты жіберіп алдым! -+ -+ -+ Expression error! -+ Өрнек қатесі! -+ -+ -+ The value is too large! -+ Мәні тым үлкен! -+ -+ -+ Operator undefined! -+ Оператор анықталмаған! -+ -+ -+ Right operand error! -+ Дұрыс жұмыс қатесі! -+ -+ -+ -+ TitleBar -+ -+ Close -+ Жабу -+ -+ -+ Minimize -+ Кішірейту -+ -+ -+ Exchange Rate -+ Айырбас бағамы -+ -+ -+ Maximize -+ Барынша көбейту -+ -+ -+ Standard -+ Стандарт -+ -+ -+ standard -+ стандартты -+ -+ -+ StayTop -+ StayTop -+ -+ -+ scientific -+ ғылыми -+ -+ -+ Scientific -+ Ғылыми -+ -+ -+ Programmer -+ Бағдарламашы -+ -+ -+ -+ FuncList -+ -+ Unit converter -+ Бірлік түрлендіргіші -+ -+ -+ exchange rate -+ айырбас бағамы -+ -+ -+ standard -+ стандартты -+ -+ -+ Calculator -+ Калькулятор -+ -+ -+ scientific -+ ғылыми -+ -+ -+ -+ ProgramModel -+ -+ Input error! -+ Енгізу қатесі! -+ -+ -+ HideBinary -+ HideBinari -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ ToolModelOutput -+ -+ US Dollar -+ АҚШ доллары -+ -+ -+ Error! -+ Қате! -+ -+ -+ Rate update -+ Мөлшерлемені жаңарту -+ -+ -+ Chinese Yuan -+ Қытай Юань -+ -+ -+ -+ UnitListWidget -+ -+ cancel -+ Болдырмау -+ -+ -+ currency -+ валюта -+ -+ -+ -+ ProgramDisplay -+ -+ input too long! -+ енгізу тым ұзақ! -+ -+ -+ -+ ToolBar -+ -+ HideBinary -+ HideBinari -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ IntelModeList -+ -+ standard -+ стандартты -+ -+ -+ scientific -+ ғылыми -+ -+ -+ -diff --git a/translations/kylin-calculator_ky_KG.ts b/translations/kylin-calculator_ky_KG.ts -new file mode 100644 -index 0000000..7c446d3 ---- /dev/null -+++ b/translations/kylin-calculator_ky_KG.ts -@@ -0,0 +1,289 @@ -+ -+ -+ -+ -+ menuModule -+ -+ Auto -+ Авто -+ -+ -+ Dark -+ Караңгы -+ -+ -+ Help -+ Жардам -+ -+ -+ Menu -+ Меню -+ -+ -+ Quit -+ Чыгуу -+ -+ -+ About -+ Жөнүндө -+ -+ -+ Light -+ Жарык -+ -+ -+ Theme -+ Тема -+ -+ -+ Exchange Rate -+ Алмашуу курсу -+ -+ -+ Calculator is a lightweight calculator based on Qt5, which provides standard calculation, scientific calculation and exchange rate conversion. -+ Калькулятор - стандарттык эсептөөнү, илимий эсептөөнү жана алмашуу курсун конверсиялоону камсыз кылган Qt5 негизинде жеңил калькулятор. -+ -+ -+ Service & Support: -+ Кызмат &amp: -+ -+ -+ Version: -+ Версиясы: -+ -+ -+ Standard -+ Стандарт -+ -+ -+ Calculator -+ Калькулятор -+ -+ -+ Scientific -+ Илимий -+ -+ -+ Programmer -+ Программчы -+ -+ -+ -+ MainWindow -+ -+ Copy -+ Көчүрмө -+ -+ -+ Paste -+ Паста -+ -+ -+ input too long -+ киргизүү өтө узак -+ -+ -+ exchange rate -+ алмашуу курсу -+ -+ -+ Input error! -+ Киргизүү катасы! -+ -+ -+ Error! -+ Ката! -+ -+ -+ standard -+ стандарт -+ -+ -+ calculator -+ калькулятор -+ -+ -+ Calculator -+ Калькулятор -+ -+ -+ scientific -+ илимий -+ -+ -+ -+ Calc -+ -+ Divisor cannot be 0! -+ Бөлүнүүчү 0 болушу мүмкүн эмес! -+ -+ -+ The expression is empty! -+ Сөз айкашы бош! -+ -+ -+ Missing left parenthesis! -+ Жок сол парентез! -+ -+ -+ Miss operand! -+ Мисс операндири! -+ -+ -+ Expression error! -+ Экспрессия катасы! -+ -+ -+ The value is too large! -+ Наркы өтө чоң! -+ -+ -+ Operator undefined! -+ Оператор аныкталбаган! -+ -+ -+ Right operand error! -+ Туура операндин катасы! -+ -+ -+ -+ TitleBar -+ -+ Close -+ Жабуу -+ -+ -+ Minimize -+ Минималдуу -+ -+ -+ Exchange Rate -+ Алмашуу курсу -+ -+ -+ Maximize -+ Максималдуу -+ -+ -+ Standard -+ Стандарт -+ -+ -+ standard -+ стандарт -+ -+ -+ StayTop -+ StayTop -+ -+ -+ scientific -+ илимий -+ -+ -+ Scientific -+ Илимий -+ -+ -+ Programmer -+ Программчы -+ -+ -+ -+ FuncList -+ -+ Unit converter -+ Бирдик конвертер -+ -+ -+ exchange rate -+ алмашуу курсу -+ -+ -+ standard -+ стандарт -+ -+ -+ Calculator -+ Калькулятор -+ -+ -+ scientific -+ илимий -+ -+ -+ -+ ProgramModel -+ -+ Input error! -+ Киргизүү катасы! -+ -+ -+ HideBinary -+ HideBinary -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ ToolModelOutput -+ -+ US Dollar -+ АКШ доллары -+ -+ -+ Error! -+ Ката! -+ -+ -+ Rate update -+ Ченди жаңылоо -+ -+ -+ Chinese Yuan -+ Кытай юань -+ -+ -+ -+ UnitListWidget -+ -+ cancel -+ Жокко чыгаруу -+ -+ -+ currency -+ валюта -+ -+ -+ -+ ProgramDisplay -+ -+ input too long! -+ киргизүү өтө узак! -+ -+ -+ -+ ToolBar -+ -+ HideBinary -+ HideBinary -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ IntelModeList -+ -+ standard -+ стандарт -+ -+ -+ scientific -+ илимий -+ -+ -+ -diff --git a/translations/kylin-calculator_mn.ts b/translations/kylin-calculator_mn.ts -new file mode 100644 -index 0000000..cb2ccfe ---- /dev/null -+++ b/translations/kylin-calculator_mn.ts -@@ -0,0 +1,714 @@ -+ -+ -+ -+ -+ Calc -+ -+ -+ The expression is empty! -+ ᠢᠯᠡᠷᠬᠡᠢᠯᠡᠯ ᠨᠢ ᠬᠣᠭᠣᠰᠣᠨ ! -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ Expression error! -+ ᠢᠯᠡᠷᠬᠡᠢᠯᠡᠯ ᠲᠠᠰᠢᠶᠠᠷᠠᠯ᠎ᠲᠠᠢ ! -+ -+ -+ -+ -+ Missing left parenthesis! -+ ᠵᠡᠭᠦᠨ ᠬᠠᠭᠠᠯᠲᠠ ᠳᠤᠲᠠᠭᠤ ! -+ -+ -+ -+ The value is too large! -+ ᠲᠣᠭ᠎ᠠ ᠬᠡᠮᠵᠢᠭᠳᠡᠯ ᠬᠡᠲᠦᠷᠬᠡᠢ ᠶᠡᠬᠡ ! -+ -+ -+ -+ Miss operand! -+ ᠠᠵᠢᠯᠯᠠᠬᠤ ᠲᠣᠭ᠎ᠠ ᠳᠤᠲᠠᠭᠳᠠᠨ᠎ᠠ ! -+ -+ -+ -+ -+ Operator undefined! -+ ᠵᠢᠯᠣᠭᠣᠳᠬᠤ ᠲᠡᠮᠳᠡᠭ᠎ᠢ᠋ ᠲᠣᠳᠣᠷᠬᠠᠢᠯᠠᠭᠰᠠᠨ ᠦᠭᠡᠢ ! -+ -+ -+ -+ Divisor cannot be 0! -+ ᠬᠤᠪᠢᠶᠠᠭᠴᠢ ᠲᠣᠭ᠎ᠠ ᠨᠢ 0 ᠪᠠᠢᠵᠤ ᠪᠣᠯᠬᠤ ᠦᠭᠡᠢ ! -+ -+ -+ -+ -+ Right operand error! -+ ᠪᠠᠷᠠᠭᠤᠨ ᠠᠵᠢᠯᠯᠠᠬᠤᠢ ᠲᠣᠭ᠎ᠠ ᠲᠠᠰᠢᠶᠠᠷᠠᠯ ! -+ -+ -+ -+ FuncList -+ -+ -+ Calculator -+ ᠪᠣᠳᠣᠭᠤᠷ -+ -+ -+ -+ standard -+ ᠪᠠᠷᠢᠮᠵᠢᠶᠠᠲᠤ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ scientific -+ ᠰᠢᠨᠵᠢᠯᠡᠬᠦ ᠤᠬᠠᠭᠠᠨ᠎ᠤ᠋ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ Unit converter -+ ᠰᠣᠯᠢᠨ ᠪᠣᠳᠣᠭᠤᠷ -+ -+ -+ -+ exchange rate -+ ᠭᠤᠪᠢᠭᠤᠯᠭ᠎ᠠ᠎ᠶ᠋ᠢᠨ ᠨᠣᠷᠮ᠎ᠠ -+ -+ -+ -+ IntelModeList -+ -+ -+ standard -+ ᠪᠠᠷᠢᠮᠵᠢᠶᠠᠲᠤ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ scientific -+ ᠰᠢᠨᠵᠢᠯᠡᠬᠦ ᠤᠬᠠᠭᠠᠨ᠎ᠤ᠋ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ MainWindow -+ -+ -+ Calculator -+ ᠪᠣᠳᠣᠭᠤᠷ -+ -+ -+ -+ -+ -+ standard -+ ᠪᠠᠷᠢᠮᠵᠢᠶᠠᠲᠤ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ calculator -+ ᠪᠣᠳᠣᠭᠤᠷ -+ -+ -+ -+ Copy -+ ᠺᠣᠫᠢᠳᠠᠬᠤ -+ -+ -+ -+ Paste -+ ᠨᠠᠭᠠᠬᠤ -+ -+ -+ -+ input too long -+ ᠣᠷᠣᠭᠤᠯᠤᠯᠲᠠ ᠬᠡᠳᠦ ᠤᠷᠲᠤ -+ -+ -+ -+ -+ -+ scientific -+ ᠰᠢᠨᠵᠢᠯᠡᠬᠦ ᠤᠬᠠᠭᠠᠨ᠎ᠤ᠋ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ exchange rate -+ ᠭᠤᠪᠢᠭᠤᠯᠭ᠎ᠠ᠎ᠶ᠋ᠢᠨ ᠨᠣᠷᠮ᠎ᠠ -+ -+ -+ -+ -+ Error! -+ ᠲᠠᠰᠢᠶᠠᠷᠠᠯ ! -+ -+ -+ -+ -+ Input error! -+ ᠣᠷᠣᠭᠤᠯᠬᠤ ᠲᠠᠰᠢᠶᠠᠷᠠᠯ ! -+ -+ -+ -+ ProgramDisplay -+ -+ -+ -+ input too long! -+ ᠣᠷᠣᠭᠤᠯᠤᠯᠲᠠ ᠨᠢ ᠬᠡᠳᠦ ᠤᠷᠲᠤ ! -+ -+ -+ -+ ProgramModel -+ -+ -+ -+ -+ Input error! -+ ᠣᠷᠣᠭᠤᠯᠬᠤ ᠲᠠᠰᠢᠶᠠᠷᠠᠯ ! -+ -+ -+ -+ ShowBinary -+ ᠦᠵᠡᠭᠦᠯᠬᠦ ᠬᠣᠶᠠᠷ᠎ᠢ᠋ᠶ᠋ᠠᠷ ᠲᠠᠪᠰᠢᠬᠤ ᠳᠦᠷᠢᠮ -+ -+ -+ -+ HideBinary -+ ᠨᠢᠭᠤᠭᠳᠠᠮᠠᠯ ᠬᠣᠶᠠᠷ᠎ᠢ᠋ᠶ᠋ᠠᠷ ᠲᠠᠪᠰᠢᠬᠤ ᠳᠦᠷᠢᠮ -+ -+ -+ -+ QObject -+ -+ Calculator -+ 计算器 -+ -+ -+ -+ TitleBar -+ -+ -+ Standard -+ ᠪᠣᠳᠣᠭᠤᠷ — ᠪᠠᠷᠢᠮᠵᠢᠶ᠎ᠠ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ Scientific -+ ᠪᠣᠳᠣᠭᠤᠷ ᠰᠢᠨᠵᠢᠯᠡᠬᠦ ᠤᠬᠠᠭᠠᠨ᠎ᠤ᠋ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ -+ -+ standard -+ ᠪᠠᠷᠢᠮᠵᠢᠶᠠᠲᠤ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ -+ scientific -+ ᠰᠢᠨᠵᠢᠯᠡᠬᠦ ᠤᠬᠠᠭᠠᠨ᠎ᠤ᠋ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ Exchange Rate -+ ᠪᠣᠳᠣᠭᠤᠷ — ᠭᠤᠪᠢᠭᠤᠯᠭ᠎ᠠ᠎ᠶ᠋ᠢᠨ ᠨᠣᠷᠮ᠎ᠠ -+ -+ -+ -+ Programmer -+ ᠪᠣᠳᠣᠭᠤᠷ — ᠫᠷᠦᠭᠷᠠᠮᠴᠢ᠎ᠶ᠋ᠢᠨ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ StayTop -+ ᠣᠷᠣᠢ᠎ᠳ᠋ᠤ᠌ ᠲᠠᠯᠪᠢᠬᠤ -+ -+ -+ -+ Restore -+ ᠠᠩᠭᠢᠵᠢᠷᠠᠭᠤᠯᠤᠯ -+ -+ -+ -+ -+ Minimize -+ ᠬᠠᠮᠤᠭ᠎ᠤ᠋ᠨ ᠪᠠᠭᠠᠴᠢᠯᠠᠯ -+ -+ -+ -+ -+ -+ Maximize -+ ᠬᠠᠮᠤᠭ᠎ᠤ᠋ᠨ ᠶᠡᠭᠡᠴᠢᠯᠡᠯ -+ -+ -+ -+ -+ Close -+ ᠬᠠᠭᠠᠬᠤ ᠂ ᠬᠠᠭᠠᠬᠤ -+ -+ -+ -+ ToolBar -+ -+ -+ -+ -+ ShowBinary -+ ᠦᠵᠡᠭᠦᠯᠬᠦ ᠬᠣᠶᠠᠷ᠎ᠢ᠋ᠶ᠋ᠠᠷ ᠲᠠᠪᠰᠢᠬᠤ ᠳᠦᠷᠢᠮ -+ -+ -+ -+ -+ HideBinary -+ ᠨᠢᠭᠤᠭᠳᠠᠮᠠᠯ ᠬᠣᠶᠠᠷ᠎ᠢ᠋ᠶ᠋ᠠᠷ ᠲᠠᠪᠰᠢᠬᠤ ᠳᠦᠷᠢᠮ -+ -+ -+ -+ ToolModelOutput -+ -+ -+ Rate update -+ ᠭᠤᠪᠢᠭᠤᠯᠭ᠎ᠠ᠎ᠶ᠋ᠢᠨ ᠨᠣᠷᠮ᠎ᠠ᠎ᠶ᠋ᠢᠨ ᠰᠢᠨᠡᠳᠬᠡᠯ -+ -+ -+ -+ -+ Chinese Yuan -+ ᠠᠷᠠᠳ᠎ᠤ᠋ᠨ ᠵᠣᠭᠣᠰ -+ -+ -+ -+ -+ US Dollar -+ ᠳ᠋ᠣᠯᠯᠠᠷ -+ -+ -+ -+ UAE Dirham -+ ᠠᠷᠠᠪ᠎ᠤ᠋ᠨ ᠬᠣᠯᠪᠣᠭᠠᠲᠤ ᠠᠬᠠᠮᠠᠳᠲᠤ ᠤᠯᠤᠰ᠎ᠤ᠋ᠨ ᠳ᠋ᠢᠯᠠᠮ -+ -+ -+ -+ Argentinian peso -+ ᠠᠷᠭᠸᠨ᠋ᠲ᠋ᠢᠨ᠎ᠤ᠋ ᠫᠧᠰᠤ᠋ -+ -+ -+ -+ Australian Dollar -+ ᠠᠦ᠋ᠰᠲ᠋ᠷᠠᠯᠢᠶ᠎ᠠ ᠵᠣᠭᠣᠰ -+ -+ -+ -+ Bulgarian Lev -+ ᠪᠣᠯᠭᠠᠷᠢᠶ᠎ᠠ ᠷᠸᠸᠹ -+ -+ -+ -+ Bahraini Dinar -+ ᠪᠠᠭᠠᠷᠢᠨ ᠳ᠋ᠢᠨᠠᠷ -+ -+ -+ -+ Brunei Dollar -+ ᠪᠷᠦᠨ᠋ᠸᠢ ᠶᠤᠸᠠᠨ -+ -+ -+ -+ Brazilian Real -+ ᠪᠠᠰᠢᠯᠧᠶᠠᠷ -+ -+ -+ -+ Bahaman Dollar -+ ᠪᠠᠬᠠᠮᠠᠮᠠ ᠳ᠋ᠣᠯᠯᠠᠷ -+ -+ -+ -+ Botswana Pula -+ ᠪᠤᠼᠸᠠᠨᠠᠫᠦ᠋ᠯᠠ -+ -+ -+ -+ Canadian Dollar -+ ᠺᠠᠨᠠᠳᠠ᠎ᠶ᠋ᠢᠨ ᠶᠤᠸᠠᠨ -+ -+ -+ -+ CFA Franc -+ ᠳᠤᠮᠳᠠᠳᠤ ᠠᠹᠷᠢᠺᠠ᠎ᠶ᠋ᠢᠨ ᠹᠷᠠᠩᠺ -+ -+ -+ -+ Swiss Franc -+ ᠰᠸᠢᠰ᠎ᠦ᠋ᠨ ᠹᠷᠠᠩᠺ -+ -+ -+ -+ Chilean Peso -+ ᠴᠢᠯᠢ ᠪᠢ ᠰᠦᠸᠧ -+ -+ -+ -+ Colombian Peso -+ ᠺᠣᠯᠣᠮᠪᠢᠶ᠎ᠠ ᠫᠧᠰᠤ᠋ -+ -+ -+ -+ Czech Koruna -+ ᠴᠧᠺ ᠺᠯᠠᠩ -+ -+ -+ -+ Danish Krone -+ ᠳ᠋ᠠᠨᠮᠠᠷᠺ ᠺᠷᠤᠨᠠ -+ -+ -+ -+ Dominican peso -+ ᠳᠤᠮᠢᠨᠢᠺᠠ ᠫᠧᠰᠤ᠋ -+ -+ -+ -+ Algerian Dinar -+ ᠠᠯᠵᠧᠷᠢᠶ᠎ᠠ ᠳ᠋ᠢᠨᠠᠷ -+ -+ -+ -+ Estonian Kroon -+ ᠡᠧᠰᠲ᠋ᠤᠨᠢᠶ᠎ᠠ ᠺᠷᠤᠨᠠ -+ -+ -+ -+ Egyptian pound -+ ᠶᠧᠵᠢᠫᠲ᠎ᠦ᠋ᠨ ᠫᠦᠨᠳ᠋ -+ -+ -+ -+ Euro -+ ᠧᠦ᠋ᠷᠣᠫᠠ ᠵᠣᠭᠣᠰ -+ -+ -+ -+ Fijian dollar -+ ᠹᠧᠢ ᠵᠢᠢ ᠶᠤᠸᠠᠨ -+ -+ -+ -+ Pound Sterling -+ ᠫᠦᠨᠳ᠋ -+ -+ -+ -+ Guatemalan Quetzal -+ ᠭᠤᠸᠠᠲ᠋ᠸᠮᠠᠯᠠᠭᠲ᠋ᠠᠢ ᠴᠠᠯᠠᠭᠠᠷ -+ -+ -+ -+ Hong Kong Dollar -+ ᠭᠠᠷᠠᠮ᠎ᠤ᠋ᠨ ᠵᠣᠭᠣᠰ -+ -+ -+ -+ Croatian Kuna -+ ᠺᠷᠤᠲ᠋ᠢᠶ᠎ᠠ ᠺᠤᠨᠠ -+ -+ -+ -+ Hungarian Forint -+ ᠬᠠᠩᠭᠠᠷᠢ᠎ᠶ᠋ᠢᠨ ᠹᠦ ᠯᠢᠨ -+ -+ -+ -+ Indonesian Rupiah -+ ᠢᠨᠳᠣᠨᠧᠽᠢ ᠷᠦᠫᠠ -+ -+ -+ -+ Israeli New Shekel -+ ᠢᠰᠷᠸᠯ ᠰᠢᠨ᠎ᠡ ᠰᠢᠺᠧᠷ -+ -+ -+ -+ Indian Rupee -+ ᠡᠨᠡᠳᠬᠡᠭ᠎ᠦ᠋ᠨ ᠷᠦᠪᠪᠢ -+ -+ -+ -+ Iranian Rial -+ ᠢᠷᠡᠨ ᠷᠢᠶᠠᠯ -+ -+ -+ -+ Icelandic Krona -+ ᠠᠢᠰᠯᠠᠨᠳ᠋ ᠺᠯᠠᠩ -+ -+ -+ -+ Japanese Yen -+ ᠶᠠᠫᠣᠨ ᠵᠣᠭᠣᠰ -+ -+ -+ -+ South Korean Won -+ ᠬᠠᠨ ᠶᠤᠸᠠᠨ -+ -+ -+ -+ Kuwaiti Dinar -+ ᠺᠦᠸᠠᠶᠢᠲ ᠳ᠋ᠢᠨᠠᠷ -+ -+ -+ -+ Kazakhstani Tenge -+ ᠺᠠᠽᠠᠭ ᠲᠠᠨ ᠲᠡᠭᠷᠢ -+ -+ -+ -+ Sri Lankan Rupee -+ ᠰᠷᠢ ᠯᠠᠨᠺᠠ ᠷᠦᠫᠧ -+ -+ -+ -+ Lithuanian Litas -+ ᠯᠢᠲ᠋ᠣ᠎ᠠ ᠯᠢᠲ᠋ᠣ -+ -+ -+ -+ Latvian Lats -+ ᠯᠠᠲ᠋ᠧᠢᠶ᠎ᠠ ᠯᠠᠲ᠋ᠧᠷ -+ -+ -+ -+ Libyan Dinar -+ ᠯᠢᠪᠢᠶ᠎ᠠ ᠳ᠋ᠢᠨᠠᠷ -+ -+ -+ -+ Mauritian Rupee -+ ᠮᠠᠦ᠋ᠷᠢᠲ᠋ᠢᠦ᠋ᠰ ᠷᠦᠫᠧ -+ -+ -+ -+ Maldivian Rupee -+ ᠮᠠᠯᠳᠠᠢᠹ ᠷᠦᠫᠧ -+ -+ -+ -+ Mexican Peso -+ ᠮᠧᠺᠰᠢᠺᠦ ᠫᠧᠰᠤ᠋ -+ -+ -+ -+ Malaysian Ringgit -+ ᠮᠠᠯᠠᠢᠰᠢᠶ᠎ᠠ ᠷᠢᠨᠲ᠋ᠧ -+ -+ -+ -+ Norwegian Krone -+ ᠨᠤᠷᠸᠠᠢ ᠺᠸᠷᠦ᠋ᠨ -+ -+ -+ -+ Nepalese Rupee -+ ᠪᠠᠯᠪᠤ ᠷᠦᠫᠧ -+ -+ -+ -+ New Zealand Dollar -+ ᠰᠢᠨ᠎ᠡ ᠽᠢᠯᠠᠨᠳ᠋ ᠳ᠋ᠣᠯᠯᠠᠷ -+ -+ -+ -+ Omani Rial -+ ᠠᠮᠠᠮᠠᠨ ᠷᠢᠶᠠᠯ -+ -+ -+ -+ Panamanian balbos -+ ᠫᠠᠨᠠᠮᠠ ᠫᠣᠢᠶ᠎ᠠ -+ -+ -+ -+ Peruvian Nuevo Sol -+ ᠫᠧᠷᠥ᠋᠎ᠶ᠋ᠢᠨ ᠰᠢᠨ᠎ᠡ ᠰᠤᠷ -+ -+ -+ -+ Philippine Peso -+ ᠹᠢᠯᠢᠫᠢᠨ᠎ᠦ᠌ ᠫᠧᠰᠤ᠋ -+ -+ -+ -+ Pakistani Rupee -+ ᠫᠠᠺᠢᠰᠲ᠋ᠠᠨ᠎ᠤ᠋ ᠷᠦᠫᠧ -+ -+ -+ -+ Polish Zloty -+ ᠫᠣᠯᠠᠨᠼ ᠷᠣᠯᠲ -+ -+ -+ -+ Paraguayan Guaran -+ ᠫᠠᠷᠠᠭᠤᠧ᠋ ᠷᠠᠨᠢ -+ -+ -+ -+ Qatari Riyal -+ ᠺᠠᠲ᠋ᠠᠷᠢᠶ᠎ᠠ (᠎ᠺᠠᠲ᠋ᠠᠷᠢᠶ᠎ᠠ ) -+ -+ -+ -+ New Romanian Leu -+ ᠰᠢᠨ᠎ᠡ ᠷᠤᠮᠠᠨᠢᠶ᠎ᠠ -+ -+ -+ -+ Russian Rouble -+ ᠣᠷᠣᠰ᠎ᠤ᠋ᠨ ᠷᠦᠪᠯᠢ -+ -+ -+ -+ Saudi Riyal -+ ᠰᠠᠦ᠋ᠲ᠋ᠷᠢᠶ᠎ᠠ -+ -+ -+ -+ Swedish Krona -+ ᠰᠸᠧᠳᠧᠨ ᠺᠸᠷᠦ᠋ᠨ -+ -+ -+ -+ Singapore Dollar -+ ᠰᠢᠩᠭᠠᠫᠦᠷ ᠶᠤᠸᠠᠨ -+ -+ -+ -+ Thai Baht -+ ᠲᠠᠢ ᠵᠣ᠌ -+ -+ -+ -+ Tunisian Dinar -+ ᠲᠦᠨᠢᠰ ᠳ᠋ᠢᠨᠠᠷ -+ -+ -+ -+ New Turkish Lira -+ ᠰᠢᠨ᠎ᠡ ᠲᠤᠷᠴᠢ ᠯᠢᠷᠠ -+ -+ -+ -+ T&T Dollar (TTD) -+ ᠲᠷᠢᠨᠢᠳᠠᠳ᠋ ᠪᠠ ᠲᠤᠪᠠᠭᠤ᠋ ᠳ᠋ᠣᠯᠯᠠᠷ -+ -+ -+ -+ Taiwan Dollar -+ ᠲᠠᠢᠸᠠᠨ᠎ᠤ᠋ ᠵᠣᠭᠣᠰ -+ -+ -+ -+ Ukrainian Hryvnia -+ ᠦᠺᠷᠠᠢᠨ ᠭᠷᠢᠹᠨᠠ -+ -+ -+ -+ Uruguayan Peso -+ ᠦᠷᠤᠢᠭᠠᠧᠠᠢᠶᠢᠨ ᠫᠧᠰᠤ᠋ -+ -+ -+ -+ Venezuelan Bolívar -+ ᠸᠧᠨ᠋ᠸᠽᠦ᠋ᠸᠯᠠ ᠪᠤᠯᠢᠸᠠᠷ -+ -+ -+ -+ South African Rand -+ ᠡᠮᠦᠨᠡᠲᠦ ᠠᠹᠷᠢᠺᠠ᠎ᠶ᠋ᠢᠨ ᠷᠠᠨᠳ᠋ -+ -+ -+ -+ Error! -+ ᠲᠠᠰᠢᠶᠠᠷᠠᠯ ! -+ -+ -+ -+ menuModule -+ -+ -+ Options -+ ᠰᠤᠩᠭᠤᠭᠳᠠᠬᠤᠨ -+ -+ -+ -+ -+ Standard -+ ᠪᠠᠷᠢᠮᠵᠢᠶᠠᠲᠤ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ -+ Scientific -+ ᠰᠢᠨᠵᠢᠯᠡᠬᠦ ᠤᠬᠠᠭᠠᠨ᠎ᠤ᠋ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ -+ Exchange Rate -+ ᠭᠤᠪᠢᠭᠤᠯᠭ᠎ᠠ᠎ᠶ᠋ᠢᠨ ᠨᠣᠷᠮ᠎ᠠ -+ -+ -+ -+ -+ Programmer -+ ᠫᠷᠦᠭᠷᠠᠮᠴᠢ᠎ᠶ᠋ᠢᠨ ᠬᠡᠯᠪᠡᠷᠢ -+ -+ -+ -+ Theme -+ ᠭᠣᠣᠯ ᠰᠡᠳᠦᠪ -+ -+ -+ -+ -+ Help -+ ᠬᠠᠪᠰᠤᠷᠬᠤ -+ -+ -+ -+ -+ About -+ ᠲᠤᠬᠠᠢ -+ -+ -+ -+ -+ Quit -+ ᠪᠤᠴᠠᠬᠤ -+ -+ -+ -+ Version: -+ ᠬᠡᠪᠯᠡᠯ ᠄ -+ -+ -+ -+ Calculator is a lightweight calculator based on Qt5, which provides standard calculation, scientific calculation and exchange rate conversion. -+ ᠪᠣᠳᠣᠭᠤᠷ ᠪᠣᠯ qt5᠎ᠤ᠋ ᠨᠡᠭᠡᠭᠡᠬᠦ᠎ᠳ᠋ᠦ᠍ ᠰᠠᠭᠤᠷᠢᠯᠠᠭᠰᠠᠨ ᠨᠢᠭᠡᠨ ᠬᠥᠩᠭᠡᠨ ᠳᠡᠰ᠎ᠦ᠋ᠨ ᠪᠣᠳᠣᠭᠤᠷ ᠪᠣᠯᠤᠨ᠎ᠠ ᠂ ᠪᠠᠷᠢᠮᠵᠢᠶ᠎ᠠ ᠪᠣᠳᠣᠯᠭ᠎ᠠ᠎ᠶ᠋ᠢ ᠬᠠᠩᠭᠠᠵᠤ ᠂ ᠰᠢᠨᠵᠢᠯᠡᠬᠦ ᠤᠬᠠᠭᠠᠨᠴᠢ᠎ᠪᠠᠷ ᠪᠣᠳᠣᠬᠤ ᠪᠠ ᠭᠤᠪᠢᠭᠤᠯᠭ᠎ᠠ᠎ᠶ᠋ᠢᠨ ᠨᠣᠷᠮ᠎ᠠ᠎ᠶ᠋ᠢ ᠰᠣᠯᠢᠨ ᠪᠣᠳᠣᠨ᠎ᠠ ᠃ -+ -+ -+ -+ Calculator -+ ᠪᠣᠳᠣᠭᠤᠷ -+ -+ -+ -diff --git a/translations/kylin-calculator_ug_CN.ts b/translations/kylin-calculator_ug_CN.ts -new file mode 100644 -index 0000000..e299ccc ---- /dev/null -+++ b/translations/kylin-calculator_ug_CN.ts -@@ -0,0 +1,289 @@ -+ -+ -+ -+ -+ menuModule -+ -+ Auto -+ ئاپتۇماتىك -+ -+ -+ Dark -+ قاراڭغۇلۇق -+ -+ -+ Help -+ ياردەم -+ -+ -+ Menu -+ تىزىملىك -+ -+ -+ Quit -+ چېكىنىش -+ -+ -+ About -+ ھەققىدە -+ -+ -+ Light -+ نۇر -+ -+ -+ Theme -+ ئۇسلۇب -+ -+ -+ Exchange Rate -+ پېرېۋوت نىسبىتى -+ -+ -+ Calculator is a lightweight calculator based on Qt5, which provides standard calculation, scientific calculation and exchange rate conversion. -+ ھېسابلىغۇچ Qt5 ئاساسىدىكى يېنىك ھېسابلىغۇچ بولۇپ، ئۆلچەملىك ھېسابلاش، ئىلمىي ھېسابلاش ۋە پېرېۋوت نىسبىتىنى ئايلاندۇرۇشنى تەمىنلەيدۇ. -+ -+ -+ Service & Support: -+ مۇلازىمەت > قوللاش: -+ -+ -+ Version: -+ نەشرى: -+ -+ -+ Standard -+ ئۆلچەم -+ -+ -+ Calculator -+ ھېسابلىغۇچ -+ -+ -+ Scientific -+ ئىلمىي تەتقىقات -+ -+ -+ Programmer -+ پروگراممېر -+ -+ -+ -+ MainWindow -+ -+ Copy -+ كۆچۈرۈش -+ -+ -+ Paste -+ چاپلاش -+ -+ -+ input too long -+ خەت كىرگۈزۈش بەك ئۇزۇن -+ -+ -+ exchange rate -+ پېرېۋوت نىسبىتى -+ -+ -+ Input error! -+ كىرگۈزۈش خاتالىقى! -+ -+ -+ Error! -+ خاتالىق! -+ -+ -+ standard -+ ئۆلچەم -+ -+ -+ calculator -+ ھېسابلىغۇچ -+ -+ -+ Calculator -+ ھېسابلىغۇچ -+ -+ -+ scientific -+ ئىلمىي -+ -+ -+ -+ Calc -+ -+ Divisor cannot be 0! -+ دىسنېيور 0 بولالمايدۇ! -+ -+ -+ The expression is empty! -+ چىراي ئىپادىسى قۇرۇق! -+ -+ -+ Missing left parenthesis! -+ سول قادام يوقاپ كەتتى! -+ -+ -+ Miss operand! -+ ئوپېرا خانقىز! -+ -+ -+ Expression error! -+ چىراي ئىپادىسى خاتالىقى! -+ -+ -+ The value is too large! -+ قىممىتى بەك چوڭ ئىكەن! -+ -+ -+ Operator undefined! -+ تىجارەتچىنىڭ بېكىتىلمىگەن! -+ -+ -+ Right operand error! -+ توغرا ئوپېرا خاتالىقى! -+ -+ -+ -+ TitleBar -+ -+ Close -+ ياپ -+ -+ -+ Minimize -+ كىچىكلىتىش -+ -+ -+ Exchange Rate -+ پېرېۋوت نىسبىتى -+ -+ -+ Maximize -+ ئەڭ چوڭ چەككە -+ -+ -+ Standard -+ ئۆلچەم -+ -+ -+ standard -+ ئۆلچەم -+ -+ -+ StayTop -+ StayTop -+ -+ -+ scientific -+ ئىلمىي -+ -+ -+ Scientific -+ ئىلمىي تەتقىقات -+ -+ -+ Programmer -+ پروگراممېر -+ -+ -+ -+ FuncList -+ -+ Unit converter -+ بىرلىك ئايلاندۇرغۇچ -+ -+ -+ exchange rate -+ پېرېۋوت نىسبىتى -+ -+ -+ standard -+ ئۆلچەم -+ -+ -+ Calculator -+ ھېسابلىغۇچ -+ -+ -+ scientific -+ ئىلمىي -+ -+ -+ -+ ProgramModel -+ -+ Input error! -+ كىرگۈزۈش خاتالىقى! -+ -+ -+ HideBinary -+ HideBinary -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ ToolModelOutput -+ -+ US Dollar -+ ئامېرىكا دوللىرى -+ -+ -+ Error! -+ خاتالىق! -+ -+ -+ Rate update -+ نىسبىتى يېڭىلاش -+ -+ -+ Chinese Yuan -+ خەنزۇچە يۈەن -+ -+ -+ -+ UnitListWidget -+ -+ cancel -+ ئەمەلدىن قالدۇرۇش -+ -+ -+ currency -+ پۇل -+ -+ -+ -+ ProgramDisplay -+ -+ input too long! -+ بەك ئۇزۇن خەت كىرگۈزۈڭ! -+ -+ -+ -+ ToolBar -+ -+ HideBinary -+ HideBinary -+ -+ -+ ShowBinary -+ ShowBinary -+ -+ -+ -+ IntelModeList -+ -+ standard -+ ئۆلچەم -+ -+ -+ scientific -+ ئىلمىي -+ -+ -+ -diff --git a/translations/kylin-calculator_zh_CN.ts b/translations/kylin-calculator_zh_CN.ts -index 65bd684..8057f2e 100644 ---- a/translations/kylin-calculator_zh_CN.ts -+++ b/translations/kylin-calculator_zh_CN.ts -@@ -4,52 +4,52 @@ - - Calc - -- -+ - The expression is empty! - 表达式为空! - - -- -+ -+ - -- -- -- -- -- -- -+ -+ -+ -+ -+ - Expression error! - 表达式错误! - - -- -- -+ -+ - Missing left parenthesis! - 缺少左括号! - - -- -+ - The value is too large! - 数值过大! - - -- -+ - Miss operand! - 缺少操作数! - - -- -- -+ -+ - Operator undefined! - 未定义操作符! - - -- -+ - Divisor cannot be 0! - 除数不能为0! - - -- -- -+ -+ - Right operand error! - 右操作数错误! - -@@ -102,57 +102,57 @@ - - MainWindow - -- -+ - Calculator - 计算器 - - -- -- -- -+ -+ -+ - standard - 标准 - - -- -+ - calculator - 计算器 - - -- -+ - Copy - 复制 - - -- -+ - Paste - 粘贴 - - -- -+ - input too long - 输入过长 - - -- -- -- -+ -+ -+ - scientific - 科学 - - -- -+ - exchange rate - 汇率 - - -- -- -+ -+ - Error! - 错误! - - -- -+ - Input error! - 输入错误! - -@@ -169,13 +169,13 @@ - - ProgramModel - -- -- -+ -+ - Input error! - 输入错误! - - -- -+ - ShowBinary - 显示二进制 - -@@ -184,7 +184,7 @@ - 显示二进制 - - -- -+ - HideBinary - 隐藏二进制 - -@@ -196,12 +196,12 @@ - 功能列表 - - -- -+ - Standard - 计算器—标准 - - -- -+ - Scientific - 计算器—科学 - -@@ -210,15 +210,15 @@ - 标准 - - -- -- -- -+ -+ -+ - standard - 标准 - - -- -- -+ -+ - scientific - 科学 - -@@ -227,41 +227,41 @@ - 科学 - - -- -+ - Exchange Rate - 计算器—汇率 - - -- -+ - Programmer - 计算器—程序员 - - -- -+ - StayTop - 置顶 - - -- -+ - Restore - 还原 - - -- -- -+ -+ - Minimize - 最小化 - - -- -- -- -+ -+ -+ - Maximize - 最大化 - - -- -- -+ -+ - Close - 关闭 - -@@ -274,14 +274,14 @@ - - - -- -- -+ -+ - ShowBinary - 显示二进制 - - -- -- -+ -+ - HideBinary - 隐藏二进制 - -@@ -289,22 +289,22 @@ - - ToolModelOutput - -- -+ - Rate update - 汇率更新 - - -- -+ - Chinese Yuan - 人民币 - - -- -+ - US Dollar - 美元 - - -- -+ - Error! - 错误! - -@@ -312,12 +312,14 @@ - - UnitListWidget - -+ - currency -- 货币 -+ 货币 - - -+ - cancel -- 取消 -+ 取消 - - - search -@@ -327,93 +329,94 @@ - - menuModule - -+ - Menu -- 菜单 -- -- -- -- Options -- 选项 -+ 菜单 - - -- -- -+ -+ - Standard - 标准 - - -- -- -+ -+ - Scientific - 科学 - - -- -- -+ -+ - Exchange Rate - 汇率 - - -- -- -+ -+ - Programmer - 程序员 - - -- -+ - Theme - 主题 - - -- -- -+ -+ - Help - 帮助 - - -- -- -+ -+ - About - 关于 - - -- -- -+ -+ - Quit - 退出 - - -+ - Auto -- 自动 -+ 自动 - - -+ - Light -- 浅色 -+ 浅色 - - -+ - Dark -- 深色 -+ 深色 - - -- -+ - Version: - 版本号: - - -- -+ - Calculator is a lightweight calculator based on Qt5, which provides standard calculation, scientific calculation and exchange rate conversion. - 计算器是一款基于qt5开发的轻量级计算器,提供标准计算,科学计算和汇率换算。 - - -+ -+ - Service & Support: -- 服务与支持团队: -+ 服务与支持团队: - - - Support: support@kylinos.cn - 支持:support@kylinos.cn - - -- -+ - Calculator - 计算器 - --- -2.46.0 - diff --git a/kylin-calculator-1.2.0.0.tar.gz b/kylin-calculator-1.2.0.0.tar.gz index 0cc847620d7fee97dadb8c9d8b90a889a2e835f6..30846fe3eb8ba9c87c754f2a20c4fdaa2c32b4a9 100644 Binary files a/kylin-calculator-1.2.0.0.tar.gz and b/kylin-calculator-1.2.0.0.tar.gz differ diff --git a/kylin-calculator.spec b/kylin-calculator.spec index b5791dc811c6d117f0f247b74802422c08debcfa..a9db4441b3e8e499b8242275816c61de3dafefa5 100644 --- a/kylin-calculator.spec +++ b/kylin-calculator.spec @@ -1,91 +1,62 @@ -Name: kylin-calculator -Version: 1.2.0.0 -Release: 5 -Summary: Calculator tool for UKUI -License: LGPL-3.0-or-later and GPL-3.0-or-later -URL: http://www.ukui.org -Source0: %{name}-%{version}.tar.gz -Patch01: 0001-install-schema-files-to-fix-build-error.patch -Patch02: 0001-Fix-the-version-showing-none-in-about-dialog.patch -Patch03: kylin-calculator-1.2.0.0-Multi-language-translation-support.patch -Patch04: 0001-Display-prompts-for-complex-functions.patch - -BuildRequires: qt5-qtbase-devel -BuildRequires: qtchooser -BuildRequires: qt5-qtscript-devel -BuildRequires: qt5-qttools-devel -BuildRequires: kf5-kwindowsystem-devel -BuildRequires: pkgconf -BuildRequires: gsl-devel -BuildRequires: qt5-qtx11extras-devel -BuildRequires: gsettings-qt-devel -BuildRequires: ukui-interface -BuildRequires: gmp-devel -BuildRequires: opencv -BuildRequires: libkysdk-kabase-devel -BuildRequires: libkysdk-sysinfo-devel -BuildRequires: libkysdk-alm-devel -BuildRequires: libkysdk-ukenv-devel -BuildRequires: libkysdk-diagnostics-devel -BuildRequires: libkysdk-waylandhelper-devel -BuildRequires: libkysdk-qtwidgets-devel - -# Requires: NetworkManager +Summary: Calculator tool for UKUI +Name: kylin-calculator +Version: 1.2.0.0 +Release: 6 +License: GPL-3+ and LGPL-3+ +URL: https://github.com/ubuntukylin/kylin-calculator +Source0: %{name}-%{version}.tar.gz + +BuildRequires: qt5-qtbase-devel +BuildRequires: qtchooser +BuildRequires: qt5-qtscript-devel +BuildRequires: qt5-qttools-devel +BuildRequires: kf5-kwindowsystem-devel +BuildRequires: pkgconf +BuildRequires: gsl-devel +BuildRequires: qt5-qtx11extras-devel +BuildRequires: gsettings-qt-devel +BuildRequires: gmp-devel +BuildRequires: libkysdk-applications-devel +BuildRequires: libkysdk-base-devel +BuildRequires: libkysdk-system-devel + %description -Calculator is a lightweight calculator based on -QT5 development, can provide scientific calculation -and exchange rate conversion and other calculation -modes, with simple to use, friendly interface -and other advantages. + Calculator is a lightweight calculator based on QT5 development, can provide scientific calculation and exchange rate conversion and other calculation modes, with simple to use, friendly interface and other advantages. %prep %autosetup -n %{name}-%{version} -p1 + %build -%{qmake_qt5} %{_qt5_qmake_flags} CONFIG+=enable-by-default kylin-calculator.pro +%{qmake_qt5} kylin-calculator-intel-plug.pro +%{make_build} +%{qmake_qt5} kylin-calculator.pro %{make_build} %install -rm -rf $RPM_BUILD_ROOT make INSTALL_ROOT=%{buildroot} install -mkdir -p %{buildroot}/usr/share/doc/kylin-calculator/ -mkdir -p %{buildroot}/usr/share/man/man1/ -mkdir -p %{buildroot}/usr/share/pixmaps/ -cp image/calc.png %{buildroot}/usr/share/pixmaps/ -cp debian/copyright %{buildroot}/usr/share/doc/kylin-calculator/ -gzip -c debian/changelog > %{buildroot}/usr/share/doc/kylin-calculator/changelog.gz -gzip -c man/kylin-calculator.1 > %{buildroot}/usr/share/man/man1/kylin-calculator.1.gz -%clean -rm -rf $RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT%{_datadir}/man/man1/ +gzip -c man/kylin-calculator.1 > $RPM_BUILD_ROOT%{_datadir}/man/man1/kylin-calculator.1.gz %files +%license debian/copyright +%doc debian/changelog +/opt/small-plugin/children/bin/libkylin-calculator.so %{_bindir}/kylin-calculator %{_datadir}/applications/kylin-calculator.desktop -%{_datadir}/doc/kylin-calculator/changelog.gz -%{_datadir}/doc/kylin-calculator/copyright +%{_datadir}/kylin-calculator/* +%{_datadir}/kylin-user-guide/* %{_datadir}/man/man1/kylin-calculator.1.gz -%{_datadir}/pixmaps/calc.png -%{_datadir}/glib-2.0/schemas/org.kylin-calculator-data.gschema.xml -%{_datadir}/glib-2.0/schemas/org.ukui.log4qt.kylin-calculator.gschema.xml -%{_datadir}/kylin-calculator/translations/kylin-calculator_zh_CN.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_zh_HK.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_bo_CN.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_kk.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_ky.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_ug.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_de.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_es.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_fr.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_kk_KZ.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_ky_KG.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_mn.qm -%{_datadir}/kylin-calculator/translations/kylin-calculator_ug_CN.qm -%{_datadir}/kylin-user-guide/data/guide/kylin-calculator/* + + %changelog +* Thu Aug 14 2025 douyan - 1.2.0.0-6 +- update to upstream version 1.2.0.0-ok6.15 + * Mon Dec 9 2024 huayadong - 1.2.0.0-5 - Type:update - CVE: