diff --git a/.gitignore b/.gitignore index 04ef584..d2dd984 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ *.pro.user *.pro.user.* rpm/harbour-sailotp.spec +rpm/harbour-sailotp.spec.* i18n/*.qm diff --git a/README.md b/README.md index e4fc753..c7acef5 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,9 @@ The qrencode library is used for QRCode-encoding existing tokens for export to o The following people have contributed to translating SailOTP: + * Finnish: Johan Heikkilä (hevanaa) + * French: Romain Tartière (smortex) + * Russian: moorchegue * Swedish: Åke Engelbrektson (eson57) * English: Stefan Brand (seiichiro0185) * German: Stefan Brand (seiichiro0185) diff --git a/harbour-sailotp.pro b/harbour-sailotp.pro index ed97b7b..d0f0f9a 100644 --- a/harbour-sailotp.pro +++ b/harbour-sailotp.pro @@ -49,6 +49,7 @@ lupdate_only { i18n/en.ts \ i18n/fi.ts \ i18n/fr.ts \ + i18n/ru.ts \ i18n/sv.ts } diff --git a/qml/pages/About.qml b/qml/pages/About.qml index ebb504b..551ef08 100644 --- a/qml/pages/About.qml +++ b/qml/pages/About.qml @@ -114,7 +114,7 @@ Page { font.pixelSize: Theme.fontSizeSmall horizontalAlignment: TextEdit.Center readOnly: true - text: qsTr("Translators:")+"\n\nSwedish: Åke Engelbrektson\nFrench: Romain Tartière\nEnglish: Stefan Brand\nGerman: Stefan Brand\nFinnish: Johan Heikkilä" + text: qsTr("Translators:")+"\n\nSwedish: Åke Engelbrektson\nFrench: Romain Tartière\nFinnish: Johan Heikkilä\nRussian: moorchegue\nEnglish: Stefan Brand\nGerman: Stefan Brand" color: "white" } }