From 79b9bb5abff652d423da7239990545799f55c362 Mon Sep 17 00:00:00 2001 From: Francois Cattin Date: Tue, 15 Jan 2013 15:23:57 +0100 Subject: [PATCH 1/6] initial french translation --- harmattan.qrc | 1 + i18n/qml-translation.fr.ts | 258 +++++++++++++++++++++++++++++++++++++ 2 files changed, 259 insertions(+) create mode 100644 i18n/qml-translation.fr.ts diff --git a/harmattan.qrc b/harmattan.qrc index e420d3c..6b57f11 100644 --- a/harmattan.qrc +++ b/harmattan.qrc @@ -3,5 +3,6 @@ i18n/qml-translation.de.qm i18n/qml-translation.en.qm i18n/qml-translation.es.qm + i18n/qml-translation.fr.qm diff --git a/i18n/qml-translation.fr.ts b/i18n/qml-translation.fr.ts new file mode 100644 index 0000000..a3bddc9 --- /dev/null +++ b/i18n/qml-translation.fr.ts @@ -0,0 +1,258 @@ + + + + + About + + + Version: %1 + Version: %1 + + + + Copyright: %1 + Copyright: %1 + + + + Homepage + Site web + + + + If you encounter bugs or have feature requests, please visit the Issue Tracker + Si vous trouvez des bugs ou désirez de nouvelles fonctionnalités, visitez l'Issue Tracker + + + + Issue Tracker + Issue Tracker + + + + License + Licence + + + + AboutItem + + + About + A propos + + + + Categories + + + + Unread: %1 + %1 non lu(s) + + + + No categories have unread items + Aucune catégorie sans article non-lu + + + + No categories to display + Aucune catégorie + + + + Tiny Tiny RSS Reader + Tiny Tiny RSS Reader + + + + Constants + + + Archived articles + Articles archivés + + + + Starred articles + Articles étoilés + + + + Published articles + Articles publiés + + + + Fresh articles + Articles récents + + + + All articles + Tous les articles + + + + Recently read + Récemment lu + + + + Labels + Etiquettes + + + + Special + Spécial + + + + All Feeds + Tous les flux + + + + Uncategorized + Sans catégorie + + + + ErrorDialog + + + OK + OK + + + + FeedItem + + + Open in Web Browser + Ouvrir dans le navigateur + + + + Mark read + Marquer comme lu + + + + Mark Unread + Marquer comme non-lu + + + + FeedItems + + + No items in feed + Pas d'article dans le flux + + + + No unread items in feed + Pas d'article non-lu dans le flux + + + + Unstar + Enlever l'étoile + + + + Star + Etoiler + + + + Unpublish + Dépublier + + + + Publish + Publier + + + + Mark read + Marquer comme lu + + + + Mark Unread + Marquer comme non-lu + + + + Open in Web Browser + Ouvrir dans le navigateur + + + + Feeds + + + Unread: %1 + Non-lu: %1 + + + + No feeds in category + Pas de flux dans la catégorie + + + + Category has no unread items + La catégorie n'a pas d'article non-lu + + + + MainPage + + + Server: + Serveur: + + + + Username: + Nom d'utilisateur: + + + + Password: + Mot de passe: + + + + Login + Login + + + + SimplePopup + + + OK + OK + + + + ToggleShowAllItem + + + Show Unread Only + Montrer les non-lus seulement + + + + Show All + Montrer tout + + + From 6ff29eb8731450baa25e5d77e38dc1b5618b7f63 Mon Sep 17 00:00:00 2001 From: Hauke Schade Date: Wed, 16 Jan 2013 17:43:07 +0100 Subject: [PATCH 2/6] added a link to a privacy policy, this closes #22 --- qml/ttrss/About.qml | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/qml/ttrss/About.qml b/qml/ttrss/About.qml index da93004..acdfe9d 100644 --- a/qml/ttrss/About.qml +++ b/qml/ttrss/About.qml @@ -130,17 +130,10 @@ Page { Qt.openUrlExternally(constant.issueTrackerUrl) } } - Button { - width: parent.width - text: qsTr("License") - onClicked: { - popup.open(); - } - } } SimplePopup { - id: popup + id: license text: "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -155,6 +148,17 @@ Page { along with this program. If not, see http://www.gnu.org/licenses/." } + SimplePopup { + id: privacypolicy + text: "ttrss will collect the login information you give at startup and nothing more. + Your login data is stored in a configuration file on your device and nowhere else. + ttrss will only use it to establish connections to the available services and/or servers. + The login data is not given to any third party and is not used for any other purpose than the functions of ttrss. +

+ If you have any questions, concerns, or comments about our privacy policy you may contact us via:
+ cnlpete@cnlpete.de" + } + ToolBarLayout { id: aboutTools @@ -163,6 +167,29 @@ Page { iconId: "toolbar-back"; onClicked: { pageStack.pop(); } } + ToolIcon { + iconId: "toolbar-view-menu" ; + onClicked: (menu.status === DialogStatus.Closed) ? menu.open() : menu.close() + } + } + Menu { + id: menu + visualParent: pageStack + + MenuLayout { + MenuItem { + text: qsTr("License") + onClicked: { + license.open(); + } + } + MenuItem { + text: qsTr("Privacy Policy") + onClicked: { + privacypolicy.open(); + } + } + } } } From 3f94bd6357469f5ad58c1ace4fd79e3787d4a58a Mon Sep 17 00:00:00 2001 From: Hauke Schade Date: Wed, 16 Jan 2013 17:43:29 +0100 Subject: [PATCH 3/6] added 'privacy policy' to translation strings, regards #22 --- i18n/qml-translation.de.ts | 9 +++++++-- i18n/qml-translation.en.ts | 9 +++++++-- i18n/qml-translation.es.ts | 9 +++++++-- i18n/qml-translation.fr.ts | 9 +++++++-- 4 files changed, 28 insertions(+), 8 deletions(-) diff --git a/i18n/qml-translation.de.ts b/i18n/qml-translation.de.ts index 077d5d7..b03f067 100644 --- a/i18n/qml-translation.de.ts +++ b/i18n/qml-translation.de.ts @@ -29,10 +29,15 @@ Issue Tracker - + License Lizenz + + + Privacy Policy + Datenschutzerklärung + AboutItem @@ -237,7 +242,7 @@ SimplePopup - + OK OK diff --git a/i18n/qml-translation.en.ts b/i18n/qml-translation.en.ts index 682aabb..36330e3 100644 --- a/i18n/qml-translation.en.ts +++ b/i18n/qml-translation.en.ts @@ -29,10 +29,15 @@ Issue Tracker - + License License + + + Privacy Policy + Privacy Policy + AboutItem @@ -237,7 +242,7 @@ SimplePopup - + OK OK diff --git a/i18n/qml-translation.es.ts b/i18n/qml-translation.es.ts index fabff11..c47c98e 100644 --- a/i18n/qml-translation.es.ts +++ b/i18n/qml-translation.es.ts @@ -29,10 +29,15 @@ Issue Tracker - + License Licencia + + + Privacy Policy + Declaración de privacidad + AboutItem @@ -237,7 +242,7 @@ SimplePopup - + OK Aceptar diff --git a/i18n/qml-translation.fr.ts b/i18n/qml-translation.fr.ts index a3bddc9..ef09307 100644 --- a/i18n/qml-translation.fr.ts +++ b/i18n/qml-translation.fr.ts @@ -29,10 +29,15 @@ Issue Tracker - + License Licence + + + Privacy Policy + Déclaration de confidentialité + AboutItem @@ -237,7 +242,7 @@ SimplePopup - + OK OK From 6d7ff7a37b1a5c07996a1e63061e01977d59f4cb Mon Sep 17 00:00:00 2001 From: Hauke Schade Date: Wed, 16 Jan 2013 18:06:23 +0100 Subject: [PATCH 4/6] Added a Thanks to: section in the AboutView and added Francois to it :) --- i18n/qml-translation.de.ts | 19 ++++++++++++------- i18n/qml-translation.en.ts | 19 ++++++++++++------- i18n/qml-translation.es.ts | 19 ++++++++++++------- i18n/qml-translation.fr.ts | 19 ++++++++++++------- qml/ttrss/About.qml | 4 +++- 5 files changed, 51 insertions(+), 29 deletions(-) diff --git a/i18n/qml-translation.de.ts b/i18n/qml-translation.de.ts index b03f067..522c05c 100644 --- a/i18n/qml-translation.de.ts +++ b/i18n/qml-translation.de.ts @@ -10,31 +10,36 @@ - Copyright: %1 - Copyright: %1 + Author: %1 + Autor: %1 - + + Thanks to: + Danke an: + + + Homepage Webseite - + If you encounter bugs or have feature requests, please visit the Issue Tracker Wenn dir Fehler auffallen, oder du Verbesserungsvorschläge hast, benutze bitte den - + Issue Tracker Issue Tracker - + License Lizenz - + Privacy Policy Datenschutzerklärung diff --git a/i18n/qml-translation.en.ts b/i18n/qml-translation.en.ts index 36330e3..9726293 100644 --- a/i18n/qml-translation.en.ts +++ b/i18n/qml-translation.en.ts @@ -10,31 +10,36 @@ - Copyright: %1 - Copyright: %1 + Author: %1 + Author: %1 - + + Thanks to: + Thanks to: + + + Homepage Homepage - + If you encounter bugs or have feature requests, please visit the Issue Tracker If you encounter bugs or have feature requests, please visit the Issue Tracker - + Issue Tracker Issue Tracker - + License License - + Privacy Policy Privacy Policy diff --git a/i18n/qml-translation.es.ts b/i18n/qml-translation.es.ts index c47c98e..d0d39cf 100644 --- a/i18n/qml-translation.es.ts +++ b/i18n/qml-translation.es.ts @@ -10,31 +10,36 @@ - Copyright: %1 - Copyright: %1 + Author: %1 + Autor: %1 - + + Thanks to: + Gracias a: + + + Homepage Página web - + If you encounter bugs or have feature requests, please visit the Issue Tracker Si observa errores, o tienes alguna sugerencia, por favor visite el Issue Tracker - + Issue Tracker Issue Tracker - + License Licencia - + Privacy Policy Declaración de privacidad diff --git a/i18n/qml-translation.fr.ts b/i18n/qml-translation.fr.ts index ef09307..5438d13 100644 --- a/i18n/qml-translation.fr.ts +++ b/i18n/qml-translation.fr.ts @@ -10,31 +10,36 @@ - Copyright: %1 - Copyright: %1 + Author: %1 + Auteur: %1 - + + Thanks to: + Merci à: + + + Homepage Site web - + If you encounter bugs or have feature requests, please visit the Issue Tracker Si vous trouvez des bugs ou désirez de nouvelles fonctionnalités, visitez l'Issue Tracker - + Issue Tracker Issue Tracker - + License Licence - + Privacy Policy Déclaration de confidentialité diff --git a/qml/ttrss/About.qml b/qml/ttrss/About.qml index acdfe9d..18e9436 100644 --- a/qml/ttrss/About.qml +++ b/qml/ttrss/About.qml @@ -107,7 +107,9 @@ Page { Label { width: parent.width text: qsTr("Version: %1").arg("0.1.1") + "
" - +qsTr("Copyright: %1").arg("Hauke Schade 2012") + "
" + +qsTr("Author: %1").arg("Hauke Schade 2012") + "
" + +qsTr("Thanks to:") + " " + + "Francois Cattin" onLinkActivated: { Qt.openUrlExternally(link) } From f051b7b83ebb978d82a29ad2f3c2f04566a9f418 Mon Sep 17 00:00:00 2001 From: Hauke Schade Date: Wed, 16 Jan 2013 18:32:39 +0100 Subject: [PATCH 5/6] v0.1.2 :) --- qml/ttrss/About.qml | 2 +- qtc_packaging/debian_harmattan/changelog | 6 ++++++ qtc_packaging/debian_harmattan/control | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/qml/ttrss/About.qml b/qml/ttrss/About.qml index 18e9436..86df52e 100644 --- a/qml/ttrss/About.qml +++ b/qml/ttrss/About.qml @@ -106,7 +106,7 @@ Page { Label { width: parent.width - text: qsTr("Version: %1").arg("0.1.1") + "
" + text: qsTr("Version: %1").arg("0.1.2") + "
" +qsTr("Author: %1").arg("Hauke Schade 2012") + "
" +qsTr("Thanks to:") + " " + "Francois Cattin" diff --git a/qtc_packaging/debian_harmattan/changelog b/qtc_packaging/debian_harmattan/changelog index bb30832..65b301a 100644 --- a/qtc_packaging/debian_harmattan/changelog +++ b/qtc_packaging/debian_harmattan/changelog @@ -1,3 +1,9 @@ +ttrss (0.1.2) unstable; urgency=low + * Added frensh translations + * Added privacy policy + + -- Hauke Schade Wed, 16 Jan 2013 18:29:33 +0100 + ttrss (0.1.1) unstable; urgency=low * A better AboutView * Improved Spanish Translation diff --git a/qtc_packaging/debian_harmattan/control b/qtc_packaging/debian_harmattan/control index 4c9101b..c4a71d6 100644 --- a/qtc_packaging/debian_harmattan/control +++ b/qtc_packaging/debian_harmattan/control @@ -1,5 +1,5 @@ Source: ttrss -Section: user/other +Section: user/internet Priority: optional Maintainer: Hauke Schade Build-Depends: debhelper (>= 5), libqt4-dev From 5e64408c86dcf50388155f746a1b286194874db2 Mon Sep 17 00:00:00 2001 From: Hauke Schade Date: Wed, 16 Jan 2013 18:48:12 +0100 Subject: [PATCH 6/6] fixed a spelling mistake --- qtc_packaging/debian_harmattan/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qtc_packaging/debian_harmattan/changelog b/qtc_packaging/debian_harmattan/changelog index 65b301a..8a1f078 100644 --- a/qtc_packaging/debian_harmattan/changelog +++ b/qtc_packaging/debian_harmattan/changelog @@ -1,5 +1,5 @@ ttrss (0.1.2) unstable; urgency=low - * Added frensh translations + * Added french translations * Added privacy policy -- Hauke Schade Wed, 16 Jan 2013 18:29:33 +0100