From 35a4f221d8384dd2ce975dd2c79c316b5d937fe7 Mon Sep 17 00:00:00 2001 From: molan-git Date: Thu, 7 May 2020 16:42:07 +0200 Subject: [PATCH 1/7] Added topMargin padding --- qml/images/tooter.svg | 71 +++++++++++++++++-------------- qml/pages/Conversation.qml | 1 + translations/harbour-tooter-it.ts | 14 +++--- 3 files changed, 46 insertions(+), 40 deletions(-) diff --git a/qml/images/tooter.svg b/qml/images/tooter.svg index 62c8550..705b6fa 100644 --- a/qml/images/tooter.svg +++ b/qml/images/tooter.svg @@ -1,33 +1,38 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/qml/pages/Conversation.qml b/qml/pages/Conversation.qml index 5da692c..767955e 100644 --- a/qml/pages/Conversation.qml +++ b/qml/pages/Conversation.qml @@ -390,6 +390,7 @@ Page { + (pressed ? Theme.highlightColor : Theme.primaryColor) anchors { top: toot.bottom + topMargin: -Theme.paddingSmall * 2 right: parent.right rightMargin: Theme.paddingSmall } diff --git a/translations/harbour-tooter-it.ts b/translations/harbour-tooter-it.ts index 7f50712..7ef928a 100644 --- a/translations/harbour-tooter-it.ts +++ b/translations/harbour-tooter-it.ts @@ -43,37 +43,37 @@ A cosa stai pensando? - + Delete Elimina - + Public Pubblico - + Unlisted Non elencato - + Followers-only Solo ai seguaci - + Direct Diretto - + Emojis Emojis - + Tap to insert Tap per inserire From 37d74229a3e26e7fc4264f1d9bd5ccf90f230b73 Mon Sep 17 00:00:00 2001 From: molan-git Date: Thu, 7 May 2020 16:58:06 +0200 Subject: [PATCH 2/7] Update Conversation.qml --- qml/pages/Conversation.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/pages/Conversation.qml b/qml/pages/Conversation.qml index 02e8e5c..3fed799 100644 --- a/qml/pages/Conversation.qml +++ b/qml/pages/Conversation.qml @@ -393,7 +393,7 @@ Page { + (pressed ? Theme.highlightColor : Theme.primaryColor) anchors { top: toot.bottom - topMargin: -Theme.paddingSmall * 2 + topMargin: -Theme.paddingSmall * 1.5 right: parent.right rightMargin: Theme.paddingSmall } From f8b12cc95be804b7b5b7e8b5eb50b55d369fa1d8 Mon Sep 17 00:00:00 2001 From: molan-git <59296158+molan-git@users.noreply.github.com> Date: Thu, 7 May 2020 17:07:28 +0200 Subject: [PATCH 3/7] Revert icon --- qml/images/tooter.svg | 71 ++++++++++++++++++++----------------------- 1 file changed, 33 insertions(+), 38 deletions(-) diff --git a/qml/images/tooter.svg b/qml/images/tooter.svg index 705b6fa..62c8550 100644 --- a/qml/images/tooter.svg +++ b/qml/images/tooter.svg @@ -1,38 +1,33 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + From f82bf51ad64c44184d265b1d01fd37f746a53d69 Mon Sep 17 00:00:00 2001 From: molan-git <59296158+molan-git@users.noreply.github.com> Date: Fri, 8 May 2020 10:11:49 +0200 Subject: [PATCH 4/7] Text.RichText for lblContent Toots are now displayed with proper text style (paragraph spacing) --- qml/pages/components/VisualContainer.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/pages/components/VisualContainer.qml b/qml/pages/components/VisualContainer.qml index a7bc245..072f816 100644 --- a/qml/pages/components/VisualContainer.qml +++ b/qml/pages/components/VisualContainer.qml @@ -145,7 +145,7 @@ BackgroundItem { text: content.replace(new RegExp(" Date: Fri, 8 May 2020 10:17:10 +0200 Subject: [PATCH 5/7] Text.RichText for lblContent Toots are now displayed with proper text style (paragraph spacing) --- qml/pages/components/Toot.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/pages/components/Toot.qml b/qml/pages/components/Toot.qml index 7809e7a..5999e40 100644 --- a/qml/pages/components/Toot.qml +++ b/qml/pages/components/Toot.qml @@ -170,7 +170,7 @@ BackgroundItem { } text: content - textFormat: Text.StyledText + textFormat: Text.RichText linkColor : Theme.highlightColor wrapMode: Text.Wrap maximumLineCount: 6 From c4820adaf2ca38ef8052368cacd420b32f7c1236 Mon Sep 17 00:00:00 2001 From: molan-git <59296158+molan-git@users.noreply.github.com> Date: Mon, 11 May 2020 09:05:45 +0200 Subject: [PATCH 6/7] Fix playerIcons Show pause button when playingState Show play button when pausingState --- qml/pages/components/ImageFullScreen.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qml/pages/components/ImageFullScreen.qml b/qml/pages/components/ImageFullScreen.qml index 37b9eaa..dba23a8 100644 --- a/qml/pages/components/ImageFullScreen.qml +++ b/qml/pages/components/ImageFullScreen.qml @@ -57,10 +57,10 @@ Page { console.log(playbackState) switch (playbackState){ case MediaPlayer.PlayingState: - playerIcon.icon.source = "image://theme/icon-m-play" + playerIcon.icon.source = "image://theme/icon-m-pause" return; case MediaPlayer.PausedState: - playerIcon.icon.source = "image://theme/icon-m-pause" + playerIcon.icon.source = "image://theme/icon-m-play" return; case MediaPlayer.StoppedState: playerIcon.icon.source = "image://theme/icon-m-stop" From 705933c4afe241c17d219ef16c80a6aed714c076 Mon Sep 17 00:00:00 2001 From: molan-git Date: Mon, 11 May 2020 09:48:52 +0200 Subject: [PATCH 7/7] Update locales es, fr --- translations/harbour-tooter-es.ts | 8 ++++---- translations/harbour-tooter-fr.ts | 22 +++++++++++----------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/translations/harbour-tooter-es.ts b/translations/harbour-tooter-es.ts index a226c0c..fe77cd8 100644 --- a/translations/harbour-tooter-es.ts +++ b/translations/harbour-tooter-es.ts @@ -40,7 +40,7 @@ Write your warning here - Escribe aquí tu aviso + Escribe aquí tu advertencia Public @@ -60,7 +60,7 @@ What's on your mind? - ¿Qué tienes en mente? + ¿En qué estás pensando? @@ -85,7 +85,7 @@ Instance - Instancia> + Instancia Enter a valid Mastodon instance URL @@ -221,7 +221,7 @@ Open Profile in Browser - Abrir perfil en navegador + Abrir perfil en el navegador diff --git a/translations/harbour-tooter-fr.ts b/translations/harbour-tooter-fr.ts index 520174c..341f2a4 100644 --- a/translations/harbour-tooter-fr.ts +++ b/translations/harbour-tooter-fr.ts @@ -40,7 +40,7 @@ Write your warning here - Avertissement du contenu + Rédigez votre alerte ici Public @@ -81,7 +81,7 @@ LoginPage Login - Login + Connexion Instance @@ -93,7 +93,7 @@ Mastodon is a free, open-source social network. A decentralized alternative to commercial platforms, it avoids the risks of a single company monopolizing your communication. Pick a server that you trust — whichever you choose, you can interact with everyone else. Anyone can run their own Mastodon instance and participate in the social network seamlessly. - Mastodon est un réseau libre et open source. Il s’agit d'une alternative aux plateformes commerciales, pour éviter qu'une seule entreprise monopolise vos communications. Choisissez un serveur dans lequel vous avez confiance - quelque que soit votre choix vous pourrez interagir avec d’autres personnes. Tout le monde peut monter sa propre instance Mastodon et participer rendre le réseau plus robuste. + Mastodon est un réseau libre et open source : une alternative décentralisée aux plateformes commerciales, afin d’éviter le contrôle monopolistique de vos communications par une entreprise. Choisissez un serveur dans lequel vous avez confiance - quelque que soit votre choix vous pourrez interagir avec tous les utilisateurs du réseau Mastodon. Tout le monde peut monter sa propre instance Mastodon et ainsi contribuer à la croissance du réseau. Reload @@ -116,7 +116,7 @@ Search - Chercher + Rechercher @user or #term @@ -173,7 +173,7 @@ Follow request sent! - Demande de suivi envoyée ! + Demande d’abonnement envoyée ! Following @@ -232,7 +232,7 @@ Remove Account - Enlever compte + Déconnecter votre compte Add Account @@ -244,7 +244,7 @@ Authorize this app to access your Mastodon account - Autoriser cette application d'utiliser votre compte + Autoriser l’accès à votre compte pour cette application Disable this option if you want to preserve your data connection @@ -280,7 +280,7 @@ Added README file - Ajouté fichier README + Fichier README ajouté Load images in toots @@ -292,7 +292,7 @@ Use Transifex to help with app translation to your language - Utiliser Transifex pour aider avec les traductions de l'application + Utiliser Transifex pour aider à traduire cette application Development and translations @@ -326,11 +326,11 @@ Unfavorite - Défavoriser + Retirer des favoris Favorite - Ajouter au favoris + Ajouter aux favoris