From 5124a5e7b659650ff9d355675d625cfea32a64ea Mon Sep 17 00:00:00 2001 From: asc Date: Thu, 21 Apr 2016 14:07:05 +0100 Subject: [PATCH 01/25] Update links in the README --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 32a9993..347934f 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,10 @@ # Papocchio + A free-hand draw application for [Sailfish OS](https://sailfishos.org). -[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=ascarpino&url=https://gitlab.com/ascarpino/harbour-Papocchio&title=Papocchio&language=&tags=jolla&category=software) +[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=ilpianista&url=https://gitlab.com/ilpianista/harbour-Papocchio&title=Papocchio&language=&tags=jolla&category=software) -Translations via [Transifex](https://www.transifex.com/organization/ascarpino-harbour/dashboard/harbour-Papocchio), thank you! +Translations via [Transifex](https://www.transifex.com/ilpianista-harbour/harbour-Papocchio/dashboard/), thank you! [Build status](https://build.merproject.org/package/live_build_log/home:ilpianista/harbour-papocchio/sailfish_latest_armv7hl/armv8el) From aa83c8519d95c92810f8dd5e8006cfc5f7a97163 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Thu, 2 Jun 2016 18:43:05 +0200 Subject: [PATCH 02/25] Set Organization Domain --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index b02052b..afca492 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Andrea Scarpino + Copyright (C) 2014-2016 Andrea Scarpino All rights reserved. This program is free software: you can redistribute it and/or modify @@ -28,6 +28,7 @@ int main(int argc, char *argv[]) QScopedPointer view(SailfishApp::createView()); QCoreApplication::setApplicationName(QStringLiteral("Papocchio")); + QCoreApplication::setOrganizationDomain(QStringLiteral("it.andreascarpino")); view->setSource(SailfishApp::pathTo("qml/Papocchio.qml")); From eee60e98212a77559d31f2f9be3d27b9a846fb73 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Fri, 3 Jun 2016 20:16:53 +0200 Subject: [PATCH 03/25] Fix application name following harbour policies --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index afca492..17e9c3c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -27,8 +27,8 @@ int main(int argc, char *argv[]) QScopedPointer app(SailfishApp::application(argc, argv)); QScopedPointer view(SailfishApp::createView()); - QCoreApplication::setApplicationName(QStringLiteral("Papocchio")); - QCoreApplication::setOrganizationDomain(QStringLiteral("it.andreascarpino")); + QCoreApplication::setApplicationName(QStringLiteral("harbour-papocchio")); + QCoreApplication::setOrganizationDomain(QStringLiteral("andreascarpino.it")); view->setSource(SailfishApp::pathTo("qml/Papocchio.qml")); @@ -53,7 +53,7 @@ int main(int argc, char *argv[]) QString papocchioDir() { const QDir papocchioDir(QStandardPaths::writableLocation(QStandardPaths::PicturesLocation) - + QDir::separator() + QCoreApplication::applicationName()); + + QDir::separator() + "Papocchio"); if (!papocchioDir.exists()) { if (!papocchioDir.mkpath(papocchioDir.absolutePath())) { From 18a2e9ae84efb65a1dc25cca09e60e7e5f5fe393 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Fri, 3 Jun 2016 22:59:10 +0200 Subject: [PATCH 04/25] Disable gestures (fixes #7) --- Papocchio.pro | 1 - qml/pages/MainPage.qml | 67 +++++++++++++++++----------- rpm/harbour-papocchio.changes | 4 ++ rpm/harbour-papocchio.spec | 2 +- rpm/harbour-papocchio.yaml | 2 +- src/main.cpp | 6 +++ translations/harbour-lyrics-it.ts | 30 +++++++++++++ translations/harbour-papocchio-cs.ts | 17 ++++--- translations/harbour-papocchio.ts | 7 ++- 9 files changed, 102 insertions(+), 34 deletions(-) create mode 100644 translations/harbour-lyrics-it.ts diff --git a/Papocchio.pro b/Papocchio.pro index 60b9e97..93460ec 100644 --- a/Papocchio.pro +++ b/Papocchio.pro @@ -7,7 +7,6 @@ SOURCES += \ OTHER_FILES += \ qml/cover/CoverPage.qml \ - translations/*.ts \ qml/pages/MainPage.qml \ qml/Papocchio.qml \ harbour-papocchio.desktop \ diff --git a/qml/pages/MainPage.qml b/qml/pages/MainPage.qml index 73f25d6..f930115 100644 --- a/qml/pages/MainPage.qml +++ b/qml/pages/MainPage.qml @@ -31,22 +31,21 @@ Page { Row { id: menu - spacing: Theme.paddingSmall + spacing: Theme.paddingMedium width: parent.width // Workaround: we don't want the Slider animation to resize this! height: Theme.itemSizeMedium - IconTextSwitch { + IconButton { id: edit - checked: true icon.source: "image://theme/icon-s-edit" anchors.verticalCenter: parent.verticalCenter - width: 120 + width: 50 // default value for the rubber property real prevLineWidth: defaultRubberSize; - onCheckedChanged: { + onClicked: { if (canvas.strokeStyle == defaultStrokeColor) { icon.source = "image://theme/icon-camera-focus" canvas.strokeStyle = defaultFillColor; @@ -62,30 +61,11 @@ Page { } } - Slider { - id: size - minimumValue: 1 - maximumValue: 30 - stepSize: 1 - value: defaultStrokeSize - valueText: value - width: parent.width - edit.width - save.width - clearBtn.width - - anchors.verticalCenter: parent.verticalCenter - - // Don't waste space - leftMargin: 0 - rightMargin: 0 - - onValueChanged: { - valueText = canvas.lineWidth = value; - } - } - IconButton { id: save icon.source: "image://theme/icon-m-image" anchors.verticalCenter: parent.verticalCenter + width: 50 function pictureName() { var dateTime = new Date(); @@ -103,10 +83,30 @@ Page { } } + Slider { + id: size + minimumValue: 1 + maximumValue: 30 + stepSize: 1 + value: defaultStrokeSize + valueText: value + width: parent.width - edit.width - save.width - clearBtn.width - quit.width - (Theme.paddingMedium * 4) + anchors.verticalCenter: parent.verticalCenter + + // Don't waste space + leftMargin: 0 + rightMargin: 0 + + onValueChanged: { + valueText = canvas.lineWidth = value; + } + } + IconButton { id: clearBtn icon.source: "image://theme/icon-m-clear" anchors.verticalCenter: parent.verticalCenter + width: 50 onClicked: { remorseClear.execute(menu, qsTr("Clearing the canvas..."), function() { @@ -118,6 +118,23 @@ Page { id: remorseClear } } + + IconButton { + id: quit + icon.source: "image://theme/icon-m-close" + anchors.verticalCenter: parent.verticalCenter + width: 50 + + onClicked: { + remorseQuit.execute(menu, qsTr("Quitting..."), function() { + Qt.quit(); + }, 1000); + } + + RemorseItem { + id: remorseQuit + } + } } Rectangle { diff --git a/rpm/harbour-papocchio.changes b/rpm/harbour-papocchio.changes index 52deca4..a60ebe9 100644 --- a/rpm/harbour-papocchio.changes +++ b/rpm/harbour-papocchio.changes @@ -1,3 +1,7 @@ +* Fri Jun 03 2016 Andrea Scarpino 1.3-1 +- Disable gestures. +- Add Czech translation. + * Sat Sep 12 2015 Andrea Scarpino 1.2-1 - Add Italian translation. - Set clearing remorse action timeout to 3s. diff --git a/rpm/harbour-papocchio.spec b/rpm/harbour-papocchio.spec index c8cbd3d..e56f66d 100644 --- a/rpm/harbour-papocchio.spec +++ b/rpm/harbour-papocchio.spec @@ -13,7 +13,7 @@ Name: harbour-papocchio %{!?qtc_make:%define qtc_make make} %{?qtc_builddir:%define _builddir %qtc_builddir} Summary: Paint using your finger -Version: 1.2 +Version: 1.3 Release: 1 Group: Qt/Qt License: GPLv3 diff --git a/rpm/harbour-papocchio.yaml b/rpm/harbour-papocchio.yaml index 2904b97..e217902 100644 --- a/rpm/harbour-papocchio.yaml +++ b/rpm/harbour-papocchio.yaml @@ -1,6 +1,6 @@ Name: harbour-papocchio Summary: Paint using your finger -Version: 1.2 +Version: 1.3 Release: 1 # The contents of the Group field should be one of the groups listed here: # http://gitorious.org/meego-developer-tools/spectacle/blobs/master/data/GROUPS diff --git a/src/main.cpp b/src/main.cpp index 17e9c3c..4808116 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -38,6 +38,12 @@ int main(int argc, char *argv[]) view->setPersistentOpenGLContext(true); view->setPersistentSceneGraph(true); + // Disable swipe gestures in proper way + view->setFlags(view->flags()|Qt::WindowOverridesSystemGestures); + + // Make Qt.quit() work from QML + QObject::connect(view->engine(), &QQmlEngine::quit, app.data(), &QCoreApplication::quit); + view->rootContext()->setContextProperty("papocchioDir", papocchioDir()); view->show(); diff --git a/translations/harbour-lyrics-it.ts b/translations/harbour-lyrics-it.ts new file mode 100644 index 0000000..a742209 --- /dev/null +++ b/translations/harbour-lyrics-it.ts @@ -0,0 +1,30 @@ + + + + + CoverPage + + + Draw! + + + + + MainPage + + + Saving the canvas... + + + + + Clearing the canvas... + + + + + Quitting... + + + + diff --git a/translations/harbour-papocchio-cs.ts b/translations/harbour-papocchio-cs.ts index 409c33b..442d9a9 100644 --- a/translations/harbour-papocchio-cs.ts +++ b/translations/harbour-papocchio-cs.ts @@ -1,4 +1,6 @@ - + + + CoverPage @@ -10,14 +12,19 @@ MainPage - + Saving the canvas... - Ukládá se plátno... + Clearing the canvas... - Vyprazdňuje se plátno... + + + + + Quitting... + - \ No newline at end of file + diff --git a/translations/harbour-papocchio.ts b/translations/harbour-papocchio.ts index 54d2c92..a742209 100644 --- a/translations/harbour-papocchio.ts +++ b/translations/harbour-papocchio.ts @@ -12,7 +12,7 @@ MainPage - + Saving the canvas... @@ -21,5 +21,10 @@ Clearing the canvas... + + + Quitting... + + From a7d8627f045d5cb4e1f709ab14894b88c8b83adc Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Sat, 4 Jun 2016 12:47:19 +0200 Subject: [PATCH 05/25] Update flattr url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 347934f..fede26b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A free-hand draw application for [Sailfish OS](https://sailfishos.org). -[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=ilpianista&url=https://gitlab.com/ilpianista/harbour-Papocchio&title=Papocchio&language=&tags=jolla&category=software) +[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=ilpianista&url=https://git.merproject.org/ilpianista/harbour-Papocchio&title=Papocchio&language=&tags=jolla&category=software) Translations via [Transifex](https://www.transifex.com/ilpianista-harbour/harbour-Papocchio/dashboard/), thank you! From ee48be5499e5c3bc388bcd8675293bdd206eca2c Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Thu, 7 Jul 2016 20:34:12 +0200 Subject: [PATCH 06/25] Add Serbian and Dutch translation --- Papocchio.pro | 6 ++++-- translations/harbour-papocchio-it.ts | 21 ++++++++++++--------- translations/harbour-papocchio-nl.ts | 28 ++++++++++++++++++++++++++++ translations/harbour-papocchio-sr.ts | 28 ++++++++++++++++++++++++++++ 4 files changed, 72 insertions(+), 11 deletions(-) create mode 100644 translations/harbour-papocchio-nl.ts create mode 100644 translations/harbour-papocchio-sr.ts diff --git a/Papocchio.pro b/Papocchio.pro index 93460ec..e050669 100644 --- a/Papocchio.pro +++ b/Papocchio.pro @@ -16,5 +16,7 @@ OTHER_FILES += \ translations/*.ts CONFIG += sailfishapp_i18n -TRANSLATIONS += translations/harbour-lyrics-it.ts \ - translations/harbour-papocchio-cs.ts +TRANSLATIONS += translations/harbour-lyrics-cs.ts \ + translations/harbour-papocchio-it.ts \ + translations/harbour-papocchio-nl.ts \ + translations/harbour-papocchio-sr.ts diff --git a/translations/harbour-papocchio-it.ts b/translations/harbour-papocchio-it.ts index 60d128b..8730db1 100644 --- a/translations/harbour-papocchio-it.ts +++ b/translations/harbour-papocchio-it.ts @@ -1,10 +1,8 @@ - - - + CoverPage - + Draw! Disegna! @@ -12,14 +10,19 @@ MainPage - + Saving the canvas... - Sto salvando l'immagine... + Sto salvando l'immagine... - + Clearing the canvas... - Sto cancellando l'immagine... + Sto cancellando l'immagine... + + + + Quitting... + Sto uscendo... - + \ No newline at end of file diff --git a/translations/harbour-papocchio-nl.ts b/translations/harbour-papocchio-nl.ts new file mode 100644 index 0000000..479080d --- /dev/null +++ b/translations/harbour-papocchio-nl.ts @@ -0,0 +1,28 @@ + + + CoverPage + + + Draw! + Tekenen! + + + + MainPage + + + Saving the canvas... + Opslaan canvas... + + + + Clearing the canvas... + Leegmaken canvas... + + + + Quitting... + Afsluiten... + + + \ No newline at end of file diff --git a/translations/harbour-papocchio-sr.ts b/translations/harbour-papocchio-sr.ts new file mode 100644 index 0000000..8159c16 --- /dev/null +++ b/translations/harbour-papocchio-sr.ts @@ -0,0 +1,28 @@ + + + CoverPage + + + Draw! + Једнако! + + + + MainPage + + + Saving the canvas... + Чување платна... + + + + Clearing the canvas... + Брисање платна... + + + + Quitting... + Одустајање... + + + \ No newline at end of file From 0b11d1c673c341c9ddb76b8b1cb6ba4b4df5596e Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Wed, 13 Jul 2016 00:16:43 +0200 Subject: [PATCH 07/25] Release 1.3.1 --- rpm/harbour-papocchio.changes | 3 +++ rpm/harbour-papocchio.spec | 2 +- rpm/harbour-papocchio.yaml | 4 ++-- translations/harbour-papocchio-it.ts | 6 ++++-- translations/harbour-papocchio-nl.ts | 6 ++++-- translations/harbour-papocchio-sr.ts | 6 ++++-- 6 files changed, 18 insertions(+), 9 deletions(-) diff --git a/rpm/harbour-papocchio.changes b/rpm/harbour-papocchio.changes index a60ebe9..40a6bad 100644 --- a/rpm/harbour-papocchio.changes +++ b/rpm/harbour-papocchio.changes @@ -1,3 +1,6 @@ +* Wed Jul 13 2016 Andrea Scarpino 1.3.1-1 +* Add Serbian and Dutch translations. + * Fri Jun 03 2016 Andrea Scarpino 1.3-1 - Disable gestures. - Add Czech translation. diff --git a/rpm/harbour-papocchio.spec b/rpm/harbour-papocchio.spec index e56f66d..97db892 100644 --- a/rpm/harbour-papocchio.spec +++ b/rpm/harbour-papocchio.spec @@ -13,7 +13,7 @@ Name: harbour-papocchio %{!?qtc_make:%define qtc_make make} %{?qtc_builddir:%define _builddir %qtc_builddir} Summary: Paint using your finger -Version: 1.3 +Version: 1.3.1 Release: 1 Group: Qt/Qt License: GPLv3 diff --git a/rpm/harbour-papocchio.yaml b/rpm/harbour-papocchio.yaml index e217902..0a27269 100644 --- a/rpm/harbour-papocchio.yaml +++ b/rpm/harbour-papocchio.yaml @@ -1,6 +1,6 @@ Name: harbour-papocchio Summary: Paint using your finger -Version: 1.3 +Version: 1.3.1 Release: 1 # The contents of the Group field should be one of the groups listed here: # http://gitorious.org/meego-developer-tools/spectacle/blobs/master/data/GROUPS @@ -32,7 +32,7 @@ PkgConfigBR: # Runtime dependencies which are not automatically detected Requires: - - sailfishsilica-qt5 >= 0.10.9 + - sailfishsilica-qt5 >= 0.10.9 # All installed files Files: diff --git a/translations/harbour-papocchio-it.ts b/translations/harbour-papocchio-it.ts index 8730db1..7413897 100644 --- a/translations/harbour-papocchio-it.ts +++ b/translations/harbour-papocchio-it.ts @@ -1,4 +1,6 @@ - + + + CoverPage @@ -25,4 +27,4 @@ Sto uscendo... - \ No newline at end of file + diff --git a/translations/harbour-papocchio-nl.ts b/translations/harbour-papocchio-nl.ts index 479080d..428e4de 100644 --- a/translations/harbour-papocchio-nl.ts +++ b/translations/harbour-papocchio-nl.ts @@ -1,4 +1,6 @@ - + + + CoverPage @@ -25,4 +27,4 @@ Afsluiten... - \ No newline at end of file + diff --git a/translations/harbour-papocchio-sr.ts b/translations/harbour-papocchio-sr.ts index 8159c16..3cbbb2c 100644 --- a/translations/harbour-papocchio-sr.ts +++ b/translations/harbour-papocchio-sr.ts @@ -1,4 +1,6 @@ - + + + CoverPage @@ -25,4 +27,4 @@ Одустајање... - \ No newline at end of file + From 081dd95579f3d96fa9e9b8c8891a129bef4ad7df Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Thu, 21 Jul 2016 20:37:00 +0200 Subject: [PATCH 08/25] Restore Czech translation --- translations/harbour-lyrics-it.ts | 30 ---------------------------- translations/harbour-papocchio-cs.ts | 12 +++++------ 2 files changed, 5 insertions(+), 37 deletions(-) delete mode 100644 translations/harbour-lyrics-it.ts diff --git a/translations/harbour-lyrics-it.ts b/translations/harbour-lyrics-it.ts deleted file mode 100644 index a742209..0000000 --- a/translations/harbour-lyrics-it.ts +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CoverPage - - - Draw! - - - - - MainPage - - - Saving the canvas... - - - - - Clearing the canvas... - - - - - Quitting... - - - - diff --git a/translations/harbour-papocchio-cs.ts b/translations/harbour-papocchio-cs.ts index 442d9a9..208a8ae 100644 --- a/translations/harbour-papocchio-cs.ts +++ b/translations/harbour-papocchio-cs.ts @@ -1,6 +1,4 @@ - - - + CoverPage @@ -14,17 +12,17 @@ Saving the canvas... - + Ukládá se plátno... Clearing the canvas... - + Vyprazdňuje se plátno... Quitting... - + - + \ No newline at end of file From 75c710bce6ed94a656e8ae5eedd4e5815cf88d56 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Thu, 21 Jul 2016 21:40:03 +0200 Subject: [PATCH 09/25] Release 1.4 --- Papocchio.pro | 2 +- rpm/harbour-papocchio.changes | 5 ++++- rpm/harbour-papocchio.spec | 2 +- rpm/harbour-papocchio.yaml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Papocchio.pro b/Papocchio.pro index e050669..a32ed2c 100644 --- a/Papocchio.pro +++ b/Papocchio.pro @@ -16,7 +16,7 @@ OTHER_FILES += \ translations/*.ts CONFIG += sailfishapp_i18n -TRANSLATIONS += translations/harbour-lyrics-cs.ts \ +TRANSLATIONS += translations/harbour-papocchio-cs.ts \ translations/harbour-papocchio-it.ts \ translations/harbour-papocchio-nl.ts \ translations/harbour-papocchio-sr.ts diff --git a/rpm/harbour-papocchio.changes b/rpm/harbour-papocchio.changes index 40a6bad..295d725 100644 --- a/rpm/harbour-papocchio.changes +++ b/rpm/harbour-papocchio.changes @@ -1,5 +1,8 @@ +* Thu Jul 21 2016 Andrea Scarpino 1.4-1 +- Restore Czech translation. + * Wed Jul 13 2016 Andrea Scarpino 1.3.1-1 -* Add Serbian and Dutch translations. +- Add Serbian and Dutch translations. * Fri Jun 03 2016 Andrea Scarpino 1.3-1 - Disable gestures. diff --git a/rpm/harbour-papocchio.spec b/rpm/harbour-papocchio.spec index 97db892..9815dad 100644 --- a/rpm/harbour-papocchio.spec +++ b/rpm/harbour-papocchio.spec @@ -13,7 +13,7 @@ Name: harbour-papocchio %{!?qtc_make:%define qtc_make make} %{?qtc_builddir:%define _builddir %qtc_builddir} Summary: Paint using your finger -Version: 1.3.1 +Version: 1.4 Release: 1 Group: Qt/Qt License: GPLv3 diff --git a/rpm/harbour-papocchio.yaml b/rpm/harbour-papocchio.yaml index 0a27269..90aa3bb 100644 --- a/rpm/harbour-papocchio.yaml +++ b/rpm/harbour-papocchio.yaml @@ -1,6 +1,6 @@ Name: harbour-papocchio Summary: Paint using your finger -Version: 1.3.1 +Version: 1.4 Release: 1 # The contents of the Group field should be one of the groups listed here: # http://gitorious.org/meego-developer-tools/spectacle/blobs/master/data/GROUPS From f05881ce416c97cafb61bd098c358d85bb372f7a Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Mon, 8 Aug 2016 19:50:55 +0200 Subject: [PATCH 10/25] Add Swedish translation --- Papocchio.pro | 6 ++++-- translations/harbour-papocchio-it.ts | 6 ++---- translations/harbour-papocchio-nl.ts | 6 ++---- translations/harbour-papocchio-sr.ts | 6 ++---- translations/harbour-papocchio-sv.ts | 28 ++++++++++++++++++++++++++++ 5 files changed, 38 insertions(+), 14 deletions(-) create mode 100644 translations/harbour-papocchio-sv.ts diff --git a/Papocchio.pro b/Papocchio.pro index a32ed2c..e736e56 100644 --- a/Papocchio.pro +++ b/Papocchio.pro @@ -16,7 +16,9 @@ OTHER_FILES += \ translations/*.ts CONFIG += sailfishapp_i18n -TRANSLATIONS += translations/harbour-papocchio-cs.ts \ +TRANSLATIONS += \ + translations/harbour-papocchio-cs.ts \ translations/harbour-papocchio-it.ts \ translations/harbour-papocchio-nl.ts \ - translations/harbour-papocchio-sr.ts + translations/harbour-papocchio-sr.ts \ + translations/harbour-papocchio-sv.ts diff --git a/translations/harbour-papocchio-it.ts b/translations/harbour-papocchio-it.ts index 7413897..8730db1 100644 --- a/translations/harbour-papocchio-it.ts +++ b/translations/harbour-papocchio-it.ts @@ -1,6 +1,4 @@ - - - + CoverPage @@ -27,4 +25,4 @@ Sto uscendo... - + \ No newline at end of file diff --git a/translations/harbour-papocchio-nl.ts b/translations/harbour-papocchio-nl.ts index 428e4de..479080d 100644 --- a/translations/harbour-papocchio-nl.ts +++ b/translations/harbour-papocchio-nl.ts @@ -1,6 +1,4 @@ - - - + CoverPage @@ -27,4 +25,4 @@ Afsluiten... - + \ No newline at end of file diff --git a/translations/harbour-papocchio-sr.ts b/translations/harbour-papocchio-sr.ts index 3cbbb2c..8159c16 100644 --- a/translations/harbour-papocchio-sr.ts +++ b/translations/harbour-papocchio-sr.ts @@ -1,6 +1,4 @@ - - - + CoverPage @@ -27,4 +25,4 @@ Одустајање... - + \ No newline at end of file diff --git a/translations/harbour-papocchio-sv.ts b/translations/harbour-papocchio-sv.ts new file mode 100644 index 0000000..62ef087 --- /dev/null +++ b/translations/harbour-papocchio-sv.ts @@ -0,0 +1,28 @@ + + + CoverPage + + + Draw! + Rita! + + + + MainPage + + + Saving the canvas... + Sparar bilden... + + + + Clearing the canvas... + Rensar ytan... + + + + Quitting... + Avslutar... + + + \ No newline at end of file From a08c58adc0b8945660bc1f248fe2474b9abf5c6f Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Thu, 13 Oct 2016 20:34:15 +0200 Subject: [PATCH 11/25] Update Dutch translation --- translations/harbour-papocchio-nl.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/translations/harbour-papocchio-nl.ts b/translations/harbour-papocchio-nl.ts index 479080d..c12d568 100644 --- a/translations/harbour-papocchio-nl.ts +++ b/translations/harbour-papocchio-nl.ts @@ -4,7 +4,7 @@ Draw! - Tekenen! + Teken! @@ -12,12 +12,12 @@ Saving the canvas... - Opslaan canvas... + Canvas wordt opgeslagen... Clearing the canvas... - Leegmaken canvas... + Canvas wordt leeggemaakt... From 131f0d3a593c56594bb5494500a043657c8e621a Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Mon, 1 May 2017 01:48:37 +0200 Subject: [PATCH 12/25] Donations link --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fede26b..0dc6bb5 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,19 @@ A free-hand draw application for [Sailfish OS](https://sailfishos.org). [![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=ilpianista&url=https://git.merproject.org/ilpianista/harbour-Papocchio&title=Papocchio&language=&tags=jolla&category=software) -Translations via [Transifex](https://www.transifex.com/ilpianista-harbour/harbour-Papocchio/dashboard/), thank you! - [Build status](https://build.merproject.org/package/live_build_log/home:ilpianista/harbour-papocchio/sailfish_latest_armv7hl/armv8el) +## Translations + +Translations via [Transifex](https://www.transifex.com/ilpianista-harbour/harbour-Papocchio/dashboard/), thank you! + ## Icon The icon has been taken from [ICONSDB](http://www.iconsdb.com/royal-blue-icons/edit-5-icon.html). + +## Donate + +Donations via either [PayPal](https://www.paypal.me/andreascarpino) or [Bitcoins](bitcoin://1Ph3hFEoQaD4PK6MhL3kBNNh9FZFBfisEH) are always welcomed, thank you! + +## License + +MIT From bf2f81f0b1b4c0d6c2b337dae99886dd1c886e2e Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Thu, 26 Oct 2017 23:28:16 +0200 Subject: [PATCH 13/25] Replace triple dots by ellipsis --- qml/pages/MainPage.qml | 6 +++--- translations/harbour-papocchio-cs.ts | 10 +++++----- translations/harbour-papocchio-it.ts | 12 ++++++------ translations/harbour-papocchio-nl.ts | 12 ++++++------ translations/harbour-papocchio-sr.ts | 12 ++++++------ translations/harbour-papocchio-sv.ts | 12 ++++++------ translations/harbour-papocchio.ts | 6 +++--- 7 files changed, 35 insertions(+), 35 deletions(-) diff --git a/qml/pages/MainPage.qml b/qml/pages/MainPage.qml index f930115..63b474a 100644 --- a/qml/pages/MainPage.qml +++ b/qml/pages/MainPage.qml @@ -73,7 +73,7 @@ Page { } onClicked: { - remorseSave.execute(menu, qsTr("Saving the canvas..."), function() { + remorseSave.execute(menu, qsTr("Saving the canvas…"), function() { canvas.save(papocchioDir + pictureName()); }, 3000); } @@ -109,7 +109,7 @@ Page { width: 50 onClicked: { - remorseClear.execute(menu, qsTr("Clearing the canvas..."), function() { + remorseClear.execute(menu, qsTr("Clearing the canvas…"), function() { canvas.clear(); }, 3000); } @@ -126,7 +126,7 @@ Page { width: 50 onClicked: { - remorseQuit.execute(menu, qsTr("Quitting..."), function() { + remorseQuit.execute(menu, qsTr("Quitting…"), function() { Qt.quit(); }, 1000); } diff --git a/translations/harbour-papocchio-cs.ts b/translations/harbour-papocchio-cs.ts index 208a8ae..e47a7d2 100644 --- a/translations/harbour-papocchio-cs.ts +++ b/translations/harbour-papocchio-cs.ts @@ -11,17 +11,17 @@ MainPage - Saving the canvas... - Ukládá se plátno... + Saving the canvas… + Ukládá se plátno… - Clearing the canvas... - Vyprazdňuje se plátno... + Clearing the canvas… + Vyprazdňuje se plátno… - Quitting... + Quitting… diff --git a/translations/harbour-papocchio-it.ts b/translations/harbour-papocchio-it.ts index 8730db1..e9cdd46 100644 --- a/translations/harbour-papocchio-it.ts +++ b/translations/harbour-papocchio-it.ts @@ -11,18 +11,18 @@ MainPage - Saving the canvas... - Sto salvando l'immagine... + Saving the canvas… + Sto salvando l'immagine… - Clearing the canvas... - Sto cancellando l'immagine... + Clearing the canvas… + Sto cancellando l'immagine… - Quitting... - Sto uscendo... + Quitting… + Sto uscendo… \ No newline at end of file diff --git a/translations/harbour-papocchio-nl.ts b/translations/harbour-papocchio-nl.ts index c12d568..fa57efa 100644 --- a/translations/harbour-papocchio-nl.ts +++ b/translations/harbour-papocchio-nl.ts @@ -11,18 +11,18 @@ MainPage - Saving the canvas... - Canvas wordt opgeslagen... + Saving the canvas… + Canvas wordt opgeslagen… - Clearing the canvas... - Canvas wordt leeggemaakt... + Clearing the canvas… + Canvas wordt leeggemaakt… - Quitting... - Afsluiten... + Quitting… + Afsluiten… \ No newline at end of file diff --git a/translations/harbour-papocchio-sr.ts b/translations/harbour-papocchio-sr.ts index 8159c16..c83c254 100644 --- a/translations/harbour-papocchio-sr.ts +++ b/translations/harbour-papocchio-sr.ts @@ -11,18 +11,18 @@ MainPage - Saving the canvas... - Чување платна... + Saving the canvas… + Чување платна… - Clearing the canvas... - Брисање платна... + Clearing the canvas… + Брисање платна… - Quitting... - Одустајање... + Quitting… + Одустајање… \ No newline at end of file diff --git a/translations/harbour-papocchio-sv.ts b/translations/harbour-papocchio-sv.ts index 62ef087..9bde9b8 100644 --- a/translations/harbour-papocchio-sv.ts +++ b/translations/harbour-papocchio-sv.ts @@ -11,18 +11,18 @@ MainPage - Saving the canvas... - Sparar bilden... + Saving the canvas… + Sparar bilden… - Clearing the canvas... - Rensar ytan... + Clearing the canvas… + Rensar ytan… - Quitting... - Avslutar... + Quitting… + Avslutar… \ No newline at end of file diff --git a/translations/harbour-papocchio.ts b/translations/harbour-papocchio.ts index a742209..e3327ea 100644 --- a/translations/harbour-papocchio.ts +++ b/translations/harbour-papocchio.ts @@ -13,17 +13,17 @@ MainPage - Saving the canvas... + Saving the canvas… - Clearing the canvas... + Clearing the canvas… - Quitting... + Quitting… From 360e1f0532f5bc39c38a48ee353e11fe64ea2be6 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Fri, 8 Dec 2017 19:17:23 +0100 Subject: [PATCH 14/25] Add liberapay, drop flattr and paypal --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 0dc6bb5..6c58291 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ A free-hand draw application for [Sailfish OS](https://sailfishos.org). -[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=ilpianista&url=https://git.merproject.org/ilpianista/harbour-Papocchio&title=Papocchio&language=&tags=jolla&category=software) - [Build status](https://build.merproject.org/package/live_build_log/home:ilpianista/harbour-papocchio/sailfish_latest_armv7hl/armv8el) ## Translations @@ -15,7 +13,7 @@ The icon has been taken from [ICONSDB](http://www.iconsdb.com/royal-blue-icons/e ## Donate -Donations via either [PayPal](https://www.paypal.me/andreascarpino) or [Bitcoins](bitcoin://1Ph3hFEoQaD4PK6MhL3kBNNh9FZFBfisEH) are always welcomed, thank you! +Donations via [Liberapay](https://liberapay.com/ilpianista) or Bitcoin (1Ph3hFEoQaD4PK6MhL3kBNNh9FZFBfisEH) are always welcomed, _thank you_! ## License From cd8ea5f1a7e53b172d0962f836e6ff5d330ad159 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Fri, 8 Dec 2017 21:19:05 +0100 Subject: [PATCH 15/25] Update translations --- Papocchio.pro | 5 +++++ translations/harbour-papocchio-de.ts | 28 +++++++++++++++++++++++++ translations/harbour-papocchio-el.ts | 28 +++++++++++++++++++++++++ translations/harbour-papocchio-hu.ts | 28 +++++++++++++++++++++++++ translations/harbour-papocchio-nb_NO.ts | 28 +++++++++++++++++++++++++ translations/harbour-papocchio-ru_RU.ts | 28 +++++++++++++++++++++++++ 6 files changed, 145 insertions(+) create mode 100644 translations/harbour-papocchio-de.ts create mode 100644 translations/harbour-papocchio-el.ts create mode 100644 translations/harbour-papocchio-hu.ts create mode 100644 translations/harbour-papocchio-nb_NO.ts create mode 100644 translations/harbour-papocchio-ru_RU.ts diff --git a/Papocchio.pro b/Papocchio.pro index e736e56..bee5fd0 100644 --- a/Papocchio.pro +++ b/Papocchio.pro @@ -18,7 +18,12 @@ OTHER_FILES += \ CONFIG += sailfishapp_i18n TRANSLATIONS += \ translations/harbour-papocchio-cs.ts \ + translations/harbour-papocchio-de.ts \ + translations/harbour-papocchio-el.ts \ + translations/harbour-papocchio-hu.ts \ translations/harbour-papocchio-it.ts \ + translations/harbour-papocchio-nb_NO.ts \ translations/harbour-papocchio-nl.ts \ + translations/harbour-papocchio-ru_RU.ts \ translations/harbour-papocchio-sr.ts \ translations/harbour-papocchio-sv.ts diff --git a/translations/harbour-papocchio-de.ts b/translations/harbour-papocchio-de.ts new file mode 100644 index 0000000..f6223ee --- /dev/null +++ b/translations/harbour-papocchio-de.ts @@ -0,0 +1,28 @@ + + + CoverPage + + + Draw! + + + + + MainPage + + + Saving the canvas… + + + + + Clearing the canvas… + + + + + Quitting… + + + + \ No newline at end of file diff --git a/translations/harbour-papocchio-el.ts b/translations/harbour-papocchio-el.ts new file mode 100644 index 0000000..fbdb345 --- /dev/null +++ b/translations/harbour-papocchio-el.ts @@ -0,0 +1,28 @@ + + + CoverPage + + + Draw! + + + + + MainPage + + + Saving the canvas… + + + + + Clearing the canvas… + + + + + Quitting… + + + + \ No newline at end of file diff --git a/translations/harbour-papocchio-hu.ts b/translations/harbour-papocchio-hu.ts new file mode 100644 index 0000000..ebe840b --- /dev/null +++ b/translations/harbour-papocchio-hu.ts @@ -0,0 +1,28 @@ + + + CoverPage + + + Draw! + Rajzolhatsz! + + + + MainPage + + + Saving the canvas… + + + + + Clearing the canvas… + + + + + Quitting… + + + + \ No newline at end of file diff --git a/translations/harbour-papocchio-nb_NO.ts b/translations/harbour-papocchio-nb_NO.ts new file mode 100644 index 0000000..7c5a18f --- /dev/null +++ b/translations/harbour-papocchio-nb_NO.ts @@ -0,0 +1,28 @@ + + + CoverPage + + + Draw! + Tegn! + + + + MainPage + + + Saving the canvas… + + + + + Clearing the canvas… + + + + + Quitting… + + + + \ No newline at end of file diff --git a/translations/harbour-papocchio-ru_RU.ts b/translations/harbour-papocchio-ru_RU.ts new file mode 100644 index 0000000..b0b0302 --- /dev/null +++ b/translations/harbour-papocchio-ru_RU.ts @@ -0,0 +1,28 @@ + + + CoverPage + + + Draw! + + + + + MainPage + + + Saving the canvas… + + + + + Clearing the canvas… + + + + + Quitting… + + + + \ No newline at end of file From 0ccb116ee23b70b1be91af8300f3020315a0586f Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Wed, 20 Dec 2017 18:43:23 +0100 Subject: [PATCH 16/25] Moved translations to weblate --- .tx/config | 9 --------- README.md | 4 +++- 2 files changed, 3 insertions(+), 10 deletions(-) delete mode 100644 .tx/config diff --git a/.tx/config b/.tx/config deleted file mode 100644 index 8117547..0000000 --- a/.tx/config +++ /dev/null @@ -1,9 +0,0 @@ -[main] -host = https://www.transifex.com - -[harbour-Papocchio.harbour-papocchiots] -file_filter = translations/harbour-papocchio-.ts -source_file = translations/harbour-papocchio.ts -source_lang = en -type = QT - diff --git a/README.md b/README.md index 6c58291..9a06e5b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ A free-hand draw application for [Sailfish OS](https://sailfishos.org). ## Translations -Translations via [Transifex](https://www.transifex.com/ilpianista-harbour/harbour-Papocchio/dashboard/), thank you! +[![Translation status](https://hosted.weblate.org/widgets/harbour-papocchio/-/svg-badge.svg)](https://hosted.weblate.org/engage/harbour-papocchio/?utm_source=widget) + +Translations via [Weblate](https://hosted.weblate.org/projects/harbour-papocchio/), thank you! ## Icon The icon has been taken from [ICONSDB](http://www.iconsdb.com/royal-blue-icons/edit-5-icon.html). From 0d32b533b0f657ca978863dc2cd4c84f2f5a8021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allan=20Nordh=C3=B8y?= Date: Thu, 21 Dec 2017 07:52:59 +0000 Subject: [PATCH 17/25] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegian?= =?UTF-8?q?=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 100.0% (4 of 4 strings) Translation: Harbour Papocchio/Translations Translate-URL: https://hosted.weblate.org/projects/harbour-papocchio/translations/nb_NO/ --- translations/harbour-papocchio-nb_NO.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/translations/harbour-papocchio-nb_NO.ts b/translations/harbour-papocchio-nb_NO.ts index 7c5a18f..7f8abef 100644 --- a/translations/harbour-papocchio-nb_NO.ts +++ b/translations/harbour-papocchio-nb_NO.ts @@ -1,4 +1,6 @@ - + + + CoverPage @@ -12,17 +14,17 @@ Saving the canvas… - + Lagrer lerretet… Clearing the canvas… - + Tømmer lerretet… Quitting… - + Avslutter… - \ No newline at end of file + From 6c13fa0856fbb33ab172eb64bbb8c6b31b52d573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristjan=20R=C3=A4ts?= Date: Sun, 11 Feb 2018 11:54:19 +0000 Subject: [PATCH 18/25] Added translation using Weblate (Estonian) --- translations/harbour-papocchio-et.ts | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 translations/harbour-papocchio-et.ts diff --git a/translations/harbour-papocchio-et.ts b/translations/harbour-papocchio-et.ts new file mode 100644 index 0000000..da2b99a --- /dev/null +++ b/translations/harbour-papocchio-et.ts @@ -0,0 +1,30 @@ + + + + + CoverPage + + + Draw! + + + + + MainPage + + + Saving the canvas… + + + + + Clearing the canvas… + + + + + Quitting… + + + + From 4f8ac7678b368b394639e28ca2442ee53b0d38b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristjan=20R=C3=A4ts?= Date: Sun, 11 Feb 2018 11:55:38 +0000 Subject: [PATCH 19/25] Translated using Weblate (Estonian) Currently translated at 100.0% (4 of 4 strings) Translation: Harbour Papocchio/Translations Translate-URL: https://hosted.weblate.org/projects/harbour-papocchio/translations/et/ --- translations/harbour-papocchio-et.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/translations/harbour-papocchio-et.ts b/translations/harbour-papocchio-et.ts index da2b99a..674facd 100644 --- a/translations/harbour-papocchio-et.ts +++ b/translations/harbour-papocchio-et.ts @@ -6,7 +6,7 @@ Draw! - + Joonista! @@ -14,17 +14,17 @@ Saving the canvas… - + Lõuendit salvestatakse… Clearing the canvas… - + Lõuendit puhastatakse… Quitting… - + Väljumine… From 770b7615f76c6bd0c54b6c7bf663c119a54657c0 Mon Sep 17 00:00:00 2001 From: Heimen Stoffels Date: Tue, 20 Feb 2018 16:59:53 +0000 Subject: [PATCH 20/25] Translated using Weblate (Dutch) Currently translated at 100.0% (4 of 4 strings) Translation: Harbour Papocchio/Translations Translate-URL: https://hosted.weblate.org/projects/harbour-papocchio/translations/nl/ --- translations/harbour-papocchio-nl.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/translations/harbour-papocchio-nl.ts b/translations/harbour-papocchio-nl.ts index fa57efa..c55089a 100644 --- a/translations/harbour-papocchio-nl.ts +++ b/translations/harbour-papocchio-nl.ts @@ -1,4 +1,6 @@ - + + + CoverPage @@ -12,17 +14,17 @@ Saving the canvas… - Canvas wordt opgeslagen… + Bezig met opslaan van canvas… Clearing the canvas… - Canvas wordt leeggemaakt… + Bezig met wissen van canvas… Quitting… - Afsluiten… + Bezig met afsluiten… - \ No newline at end of file + From 7f3fb185ffa494dd2fbade70dd6b26a0942feaff Mon Sep 17 00:00:00 2001 From: Nathan Follens Date: Sat, 28 Apr 2018 16:02:07 +0000 Subject: [PATCH 21/25] Added translation using Weblate (Flemish) --- translations/harbour-papocchio-nl_BE.ts | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 translations/harbour-papocchio-nl_BE.ts diff --git a/translations/harbour-papocchio-nl_BE.ts b/translations/harbour-papocchio-nl_BE.ts new file mode 100644 index 0000000..a19d3ec --- /dev/null +++ b/translations/harbour-papocchio-nl_BE.ts @@ -0,0 +1,30 @@ + + + + + CoverPage + + + Draw! + + + + + MainPage + + + Saving the canvas… + + + + + Clearing the canvas… + + + + + Quitting… + + + + From 0cc7489522b78511c11d2470fb84b9f6341b0c65 Mon Sep 17 00:00:00 2001 From: Nathan Follens Date: Sat, 28 Apr 2018 16:02:29 +0000 Subject: [PATCH 22/25] Translated using Weblate (Flemish) Currently translated at 100.0% (4 of 4 strings) Translation: Harbour Papocchio/Translations Translate-URL: https://hosted.weblate.org/projects/harbour-papocchio/translations/nl_BE/ --- translations/harbour-papocchio-nl_BE.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/translations/harbour-papocchio-nl_BE.ts b/translations/harbour-papocchio-nl_BE.ts index a19d3ec..99da4f2 100644 --- a/translations/harbour-papocchio-nl_BE.ts +++ b/translations/harbour-papocchio-nl_BE.ts @@ -6,7 +6,7 @@ Draw! - + Tekend! @@ -14,17 +14,17 @@ Saving the canvas… - + Bezig met opslaan van canvas… Clearing the canvas… - + Bezig met wissen van canvas… Quitting… - + Bezig met afsluiten… From 7a8b0cd8a6757829bd5406eec3b3db4623756151 Mon Sep 17 00:00:00 2001 From: Nathan Follens Date: Wed, 20 Jun 2018 16:58:13 +0000 Subject: [PATCH 23/25] Translated using Weblate (Flemish) Currently translated at 100.0% (4 of 4 strings) Translation: Harbour Papocchio/Translations Translate-URL: https://hosted.weblate.org/projects/harbour-papocchio/translations/nl_BE/ --- translations/harbour-papocchio-nl_BE.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/harbour-papocchio-nl_BE.ts b/translations/harbour-papocchio-nl_BE.ts index 99da4f2..17810f6 100644 --- a/translations/harbour-papocchio-nl_BE.ts +++ b/translations/harbour-papocchio-nl_BE.ts @@ -6,7 +6,7 @@ Draw! - Tekend! + Tekent! From b26b8fac1f562397f9c079d72c17e8c633f847ee Mon Sep 17 00:00:00 2001 From: ssantos Date: Tue, 4 Dec 2018 19:07:01 +0000 Subject: [PATCH 24/25] Translated using Weblate (German) Currently translated at 100.0% (4 of 4 strings) Translation: Harbour Papocchio/Translations Translate-URL: https://hosted.weblate.org/projects/harbour-papocchio/translations/de/ --- translations/harbour-papocchio-de.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/translations/harbour-papocchio-de.ts b/translations/harbour-papocchio-de.ts index f6223ee..586998e 100644 --- a/translations/harbour-papocchio-de.ts +++ b/translations/harbour-papocchio-de.ts @@ -1,10 +1,12 @@ - + + + CoverPage Draw! - + Zeichnen! @@ -12,17 +14,17 @@ Saving the canvas… - + Speichern der Leinwand..… Clearing the canvas… - + Löschen der Leinwand… Quitting… - + Beenden… - \ No newline at end of file + From a9fbf124dc4c44828c0146b769add0d04174f8d3 Mon Sep 17 00:00:00 2001 From: Louies Date: Sun, 27 Jan 2019 16:34:06 +0000 Subject: [PATCH 25/25] Added translation using Weblate (Chinese (Traditional)) --- translations/harbour-papocchio-zh_Hant.ts | 30 +++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 translations/harbour-papocchio-zh_Hant.ts diff --git a/translations/harbour-papocchio-zh_Hant.ts b/translations/harbour-papocchio-zh_Hant.ts new file mode 100644 index 0000000..ee5de89 --- /dev/null +++ b/translations/harbour-papocchio-zh_Hant.ts @@ -0,0 +1,30 @@ + + + + + CoverPage + + + Draw! + + + + + MainPage + + + Saving the canvas… + + + + + Clearing the canvas… + + + + + Quitting… + + + +