From 95f065fd5bf9e8ec9c7144ed5e6b059625e8080a Mon Sep 17 00:00:00 2001 From: molan-git Date: Fri, 3 Jul 2020 10:45:30 +0200 Subject: [PATCH] ui improvements / landscape support --- qml/pages/ConversationPage.qml | 78 +++----- qml/pages/LoginPage.qml | 4 +- qml/pages/MainPage.qml | 4 +- qml/pages/ProfilePage.qml | 9 +- qml/pages/components/EmojiSelect.qml | 235 ++++++++++++++++------- qml/pages/components/InfoBanner.qml | 3 +- qml/pages/components/ItemUser.qml | 4 +- qml/pages/components/MediaFullScreen.qml | 8 +- qml/pages/components/MiniHeader.qml | 2 +- qml/pages/components/MiniStatus.qml | 4 +- qml/pages/components/MyList.qml | 2 +- qml/pages/components/MyMedia.qml | 13 +- qml/pages/components/ProfileHeader.qml | 6 +- qml/pages/components/VisualContainer.qml | 4 +- translations/harbour-tooter-de.ts | 47 ++--- translations/harbour-tooter-el.ts | 35 ++-- translations/harbour-tooter-es.ts | 1 + translations/harbour-tooter-fr.ts | 45 ++--- translations/harbour-tooter-it.ts | 47 ++--- translations/harbour-tooter-nl.ts | 1 + translations/harbour-tooter-nl_BE.ts | 1 + translations/harbour-tooter-oc.ts | 1 + translations/harbour-tooter-pl.ts | 1 + translations/harbour-tooter-ru.ts | 1 + translations/harbour-tooter-sr.ts | 1 + translations/harbour-tooter-sv.ts | 1 + translations/harbour-tooter-zh_CN.ts | 1 + translations/harbour-tooter.ts | 1 + 28 files changed, 327 insertions(+), 233 deletions(-) diff --git a/qml/pages/ConversationPage.qml b/qml/pages/ConversationPage.qml index a3c68ba..8c82fd8 100644 --- a/qml/pages/ConversationPage.qml +++ b/qml/pages/ConversationPage.qml @@ -26,10 +26,7 @@ Page { allowedOrientations: Orientation.All onSuggestedUserChanged: { console.log(suggestedUser) - suggestedModel = Qt.createQmlObject( - 'import QtQuick 2.0; ListModel { }', - Qt.application, 'InternalQmlObject' - ) + suggestedModel = Qt.createQmlObject( 'import QtQuick 2.0; ListModel { }', Qt.application, 'InternalQmlObject' ) predictionList.visible = false if (suggestedUser.length > 0) { var msg = { @@ -58,9 +55,7 @@ Page { WorkerScript { id: worker source: "../lib/Worker.js" - onMessage: { - console.log(JSON.stringify(messageObject)) - } + onMessage: { console.log(JSON.stringify(messageObject)) } } SilicaListView { @@ -85,8 +80,7 @@ Page { text: Format.formatDate(section, Formatter.DateMedium) } } - delegate: VisualContainer { - } + delegate: VisualContainer {} onCountChanged: { if (mdl) for (var i = 0; i < mdl.count; i++) { @@ -121,11 +115,8 @@ Page { //: "Reply" will show the Toot text entry Panel. "Hide Reply" closes it. Alternative: Use "Close Reply" text: !panel.open ? qsTr("Reply") : qsTr("Hide Reply") visible: type == "reply" - onClicked: if (!panel.open) { - panel.open = true - } else panel.open = false + onClicked: !panel.open ? panel.open = true : panel.open = false } - } } @@ -137,20 +128,16 @@ Page { anchors { left: panel.left right: panel.right - bottom: if (panel.open == true) { - panel.top - } else { - hiddenPanel.top - } + bottom: panel.open == true ? panel.top : hiddenPanel.top } SilicaListView { - rotation: 180 + id: predictionResults + rotation: 180 // shows best matching result on the bottom anchors.fill: parent model: suggestedModel clip: true quickScroll: false - VerticalScrollDecorator {} delegate: ItemUser { rotation: 180 onClicked: { @@ -166,7 +153,6 @@ Page { + model.account_acct + ' ' + textOperations.text.substring(textOperations.selectionEnd).trim() - toot.cursorPosition = toot.text.indexOf('@' + model.account_acct) } } @@ -175,21 +161,20 @@ Page { positionViewAtBeginning(suggestedModel.count - 1, ListView.Beginning) } } + + VerticalScrollDecorator {} } } DockedPanel { id: panel width: parent.width - height: progressBar.height + toot.height + (mediaModel.count ? uploadedImages.height : 0) - + btnContentWarning.height + Theme.paddingMedium - + (warningContent.visible ? warningContent.height : 0) + height: progressBar.height + toot.height + (mediaModel.count ? uploadedImages.height : 0) + btnContentWarning.height + Theme.paddingMedium + (warningContent.visible ? warningContent.height : 0) dock: Dock.Bottom open: true - animationDuration: 300 - Rectangle { + id: progressBarBg width: parent.width height: progressBar.height color: Theme.highlightBackgroundColor @@ -220,17 +205,18 @@ Page { autoScrollEnabled: true labelVisible: false font.pixelSize: Theme.fontSizeSmall + //: placeholderText in Toot content warning panel placeholderText: qsTr("Write your warning here") placeholderColor: palette.highlightColor color: palette.highlightColor horizontalAlignment: Text.AlignLeft + EnterKey.onClicked: {} anchors { top: parent.top topMargin: Theme.paddingMedium left: parent.left right: parent.right } - EnterKey.onClicked: {} } TextInput { @@ -270,7 +256,6 @@ Page { textOperations.select( textOperations.selectionStart ? textOperations.selectionStart - 1 : 0, textOperations.selectionEnd) - //console.log(textOperations.text.substr(textOperations.selectionStart, textOperations.selectionEnd)) console.log(toot.text.length) suggestedUser = "" if (textOperations.selectedText.charAt(0) === "@") { @@ -317,8 +302,6 @@ Page { RemorseItem { id: remorse cancelText: "" - - } Image { @@ -362,22 +345,20 @@ Page { IconButton { id: btnContentWarning + icon.source: "image://theme/icon-s-warning?" + ( pressed ? Theme.highlightColor : (warningContent.visible ? Theme.secondaryHighlightColor : Theme.primaryColor) ) + onClicked: warningContent.visible = !warningContent.visible anchors { top: toot.bottom topMargin: -Theme.paddingSmall * 1.5 left: parent.left leftMargin: Theme.paddingMedium } - icon.source: "image://theme/icon-s-warning?" - + (pressed ? Theme.highlightColor : (warningContent.visible ? Theme.secondaryHighlightColor : Theme.primaryColor)) - onClicked: warningContent.visible = !warningContent.visible } IconButton { id: btnAddImage enabled: mediaModel.count < 4 - icon.source: "image://theme/icon-s-attach?" - + (pressed ? Theme.highlightColor : (warningContent.visible ? Theme.secondaryHighlightColor : Theme.primaryColor)) + icon.source: "image://theme/icon-s-attach?" + ( pressed ? Theme.highlightColor : (warningContent.visible ? Theme.secondaryHighlightColor : Theme.primaryColor) ) anchors { top: toot.bottom topMargin: -Theme.paddingSmall * 1.5 @@ -387,7 +368,7 @@ Page { onClicked: { btnAddImage.enabled = false var once = true - var imagePicker = pageStack.push("Sailfish.Pickers.ImagePickerPage", {"allowedOrientations": Orientation.All}) + var imagePicker = pageStack.push("Sailfish.Pickers.ImagePickerPage", { "allowedOrientations": Orientation.All }) imagePicker.selectedContentChanged.connect(function () { var imagePath = imagePicker.selectedContent console.log(imagePath) @@ -420,12 +401,6 @@ Page { ComboBox { id: privacy - anchors { - top: toot.bottom - topMargin: -Theme.paddingSmall * 1.5 - left: btnAddImage.right - right: btnSend.left - } menu: ContextMenu { MenuItem { text: qsTr("Public") @@ -440,12 +415,17 @@ Page { text: qsTr("Direct") } } + anchors { + top: toot.bottom + topMargin: -Theme.paddingSmall * 1.5 + left: btnAddImage.right + right: btnSend.left + } } IconButton { id: btnSend - icon.source: "image://theme/icon-m-send?" - + (pressed ? Theme.highlightColor : Theme.primaryColor) + icon.source: "image://theme/icon-m-send?" + (pressed ? Theme.highlightColor : Theme.primaryColor) enabled: toot.text !== "" && toot.text.length < tootMaxChar && uploadProgress.width == 0 anchors { top: toot.bottom @@ -492,8 +472,10 @@ Page { id: uploadProgress color: Theme.highlightBackgroundColor height: Theme.itemSizeSmall * 0.05 - anchors.bottom: parent.bottom - anchors.left: parent.left + anchors { + bottom: parent.bottom + left: parent.left + } } } @@ -563,9 +545,9 @@ Page { color: Theme.highlightBackgroundColor opacity: 0.2 anchors { + top: parent.top left: parent.left right: parent.right - top: parent.top } } @@ -576,8 +558,8 @@ Page { color: Theme.highlightBackgroundColor opacity: 0.7 anchors { - left: parent.left top: parent.top + left: parent.left } } diff --git a/qml/pages/LoginPage.qml b/qml/pages/LoginPage.qml index 288e4d8..5227d13 100644 --- a/qml/pages/LoginPage.qml +++ b/qml/pages/LoginPage.qml @@ -81,10 +81,10 @@ Page { wrapMode: Text.WordWrap width: parent.width anchors { - left: parent.left - right: parent.right topMargin: Theme.paddingMedium + left: parent.left leftMargin: Theme.horizontalPageMargin + right: parent.right rightMargin: Theme.horizontalPageMargin } } diff --git a/qml/pages/MainPage.qml b/qml/pages/MainPage.qml index 7d460a0..0ce3be1 100644 --- a/qml/pages/MainPage.qml +++ b/qml/pages/MainPage.qml @@ -135,7 +135,7 @@ Page { mdl: ListModel {} width: parent.width height: parent.height - onOpenDrawer: infoPanel.open = setDrawer + onOpenDrawer: isPortrait ? infoPanel.open = setDrawer : infoPanel.open = true anchors.fill: parent currentIndex: -1 // otherwise currentItem will steal focus header: Item { @@ -234,6 +234,7 @@ Page { itemWidth: isTablet ? Math.round(parent.width) : parent.width itemHeight: height clip: true + model: visualModel onCurrentIndexChanged: { navigation.slideshowIndexChanged(currentIndex) } @@ -243,7 +244,6 @@ Page { rightMargin: isPortrait ? 0 : infoPanel.visibleSize bottomMargin: isPortrait ? infoPanel.visibleSize : 0 } - model: visualModel Component.onCompleted: { } } diff --git a/qml/pages/ProfilePage.qml b/qml/pages/ProfilePage.qml index 6956187..efb5b21 100644 --- a/qml/pages/ProfilePage.qml +++ b/qml/pages/ProfilePage.qml @@ -182,7 +182,7 @@ Page { id: txtNote text: note textFormat: Text.StyledText - color: Theme.highlightColor + color: Theme.secondaryHighlightColor font.pixelSize: Theme.fontSizeExtraSmall linkColor: Theme.secondaryColor wrapMode: Text.Wrap @@ -256,7 +256,7 @@ Page { //: Will show as: "115 Statuses" qsTr("Statuses") font.pixelSize: Theme.fontSizeExtraSmall - color: Theme.primaryColor + color: pressed ? Theme.highlightColor : Theme.primaryColor wrapMode: Text.Wrap MouseArea { @@ -305,7 +305,6 @@ Page { 'conf' : Logic.conf }; worker.sendMessage(msg); - // to-do: create notification banner "Follow request sent!" } } @@ -344,8 +343,8 @@ Page { 'params' : [], 'action' : "accounts/" + user_id + (blocking ? '/unblock':'/block'), 'conf' : Logic.conf - }; - worker.sendMessage(msg); + } + worker.sendMessage(msg) } } } diff --git a/qml/pages/components/EmojiSelect.qml b/qml/pages/components/EmojiSelect.qml index 1353f15..5580d37 100644 --- a/qml/pages/components/EmojiSelect.qml +++ b/qml/pages/components/EmojiSelect.qml @@ -4,7 +4,6 @@ import Sailfish.Silica 1.0 Dialog { id: emojiDialog - anchors.top: parent.top allowedOrientations: Orientation.All canAccept: false //selector.currentIndex >= 0 onAcceptPendingChanged: { @@ -13,6 +12,7 @@ Dialog { // acceptDestinationInstance.category = selector.value } } + anchors.top: parent.top Column { id: emojiColumn @@ -20,6 +20,8 @@ Dialog { width: parent.width height: parent.height + VerticalScrollDecorator { flickable: gridView} + SilicaGridView { id: gridView header: PageHeader { @@ -31,71 +33,170 @@ Dialog { width: parent.width height: parent.height model: ListModel { - ListElement { section: "smileys"; glyph: "๐Ÿ˜" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜‚" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ƒ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜„" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜…" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜†" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜‰" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜Š" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜‹" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜Ž" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜Œ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜˜" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜’" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜“" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜”" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜–" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜š" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜œ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ž" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ " } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ก" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ข" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ฃ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ค" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ฅ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜จ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ฉ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ช" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ซ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ญ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ฐ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ฑ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ฒ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ณ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ต" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ท" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ธ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜น" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜บ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ป" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ผ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ฝ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜พ" } - ListElement { section: "smileys"; glyph: "๐Ÿ˜ฟ" } - ListElement { section: "smileys"; glyph: "๐Ÿ™€" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜„" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ƒ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜€" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜Š" } + ListElement { section: "Smileys"; glyph: "โ˜บ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜‰" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜˜" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜š" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜—" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜™" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜œ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜›" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ณ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜”" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜Œ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜’" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ž" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฃ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ข" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜‚" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ญ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ช" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฅ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฐ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜…" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฉ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ซ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜จ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฑ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ " } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ก" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ค" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜–" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜†" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜‹" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ท" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜Ž" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ด" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ต" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฒ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜Ÿ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฆ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ง" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ˆ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ‘ฟ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฎ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฌ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜•" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ฏ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜ถ" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜‡" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜" } + ListElement { section: "Smileys"; glyph: "๐Ÿ˜‘" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™…" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™†" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™‡" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™ˆ" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™‰" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™Š" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™‹" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™Ž" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ‘" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ‘Ž" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™Œ" } - ListElement { section: "People and Fantasy"; glyph: "โœŠ" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ’ช" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ‘‰" } - ListElement { section: "People and Fantasy"; glyph: "๐Ÿ™" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ˜บ" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ˜ธ" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ˜ป" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ˜ฝ" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ˜ผ" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ™€" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ˜ฟ" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ˜น" } + ListElement { section: "Cat Faces"; glyph: "๐Ÿ˜พ" } + + ListElement { section: "Other Faces"; glyph: "๐Ÿ‘น" } + ListElement { section: "Other Faces"; glyph: "๐Ÿ‘บ" } + ListElement { section: "Other Faces"; glyph: "๐Ÿ™ˆ" } + ListElement { section: "Other Faces"; glyph: "๐Ÿ™‰" } + ListElement { section: "Other Faces"; glyph: "๐Ÿ™Š" } + ListElement { section: "Other Faces"; glyph: "๐Ÿ’€" } + ListElement { section: "Other Faces"; glyph: "๐Ÿ‘ฝ" } + + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ”ฅ" } + ListElement { section: "Misc Emoji"; glyph: "โœจ" } + ListElement { section: "Misc Emoji"; glyph: "๐ŸŒŸ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ’ซ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ’ฅ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ’ข" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ’ฆ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ’ง" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ’ค" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ’จ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘‚" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘€" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘ƒ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘…" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘„" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘Ž" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘Œ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘Š" } + ListElement { section: "Misc Emoji"; glyph: "โœŠ" } + ListElement { section: "Misc Emoji"; glyph: "โœŒ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘‹" } + ListElement { section: "Misc Emoji"; glyph: "โœ‹" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘†" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘‡" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘‰" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘ˆ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ™Œ" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ™" } + ListElement { section: "Misc Emoji"; glyph: "โ˜" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ‘" } + ListElement { section: "Misc Emoji"; glyph: "๐Ÿ’ช" } + + ListElement { section: "Animals Emoji"; glyph: "๐Ÿถ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿบ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฑ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿญ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿน" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฐ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿธ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฏ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿจ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ˜" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿผ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿง" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฆ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿค" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฅ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฃ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ”" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿข" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ›" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿœ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿž" } + ListElement { section: "Animals Emoji"; glyph: "๐ŸŒ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ™" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿš" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ " } + ListElement { section: "Animals Emoji"; glyph: "๐ŸŸ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฌ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿณ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ‹" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ„" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ€" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿƒ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ…" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ‡" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ‰" } + ListElement { section: "Animals Emoji"; glyph: "๐ŸŽ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ“" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ•" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ–" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ‚" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฒ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿก" } + ListElement { section: "Animals Emoji"; glyph: "๐ŸŠ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿซ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿช" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿ†" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿˆ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿฉ" } + ListElement { section: "Animals Emoji"; glyph: "๐Ÿพ" } ListElement { section: "Transport and Map"; glyph: "๐Ÿš€" } ListElement { section: "Transport and Map"; glyph: "๐Ÿšƒ" } @@ -151,9 +252,10 @@ Dialog { Label { text: glyph font.pixelSize: Theme.fontSizeLarge - color: (highlighted ? Theme.secondaryHighlightColor : Theme.secondaryColor) + color: highlighted ? Theme.secondaryHighlightColor : Theme.secondaryColor anchors.centerIn: parent } + onClicked: { var cursorPosition = toot.cursorPosition toot.text = toot.text.substring( @@ -164,7 +266,6 @@ Dialog { emojiDialog.accept() } } - VerticalScrollDecorator { flickable: listEmojis } } } } diff --git a/qml/pages/components/InfoBanner.qml b/qml/pages/components/InfoBanner.qml index 048a43f..e740634 100644 --- a/qml/pages/components/InfoBanner.qml +++ b/qml/pages/components/InfoBanner.qml @@ -5,8 +5,9 @@ import Sailfish.Silica 1.0 DockedPanel { id: root dock: Dock.Top - width: parent.width + width: isPortrait ? parent.width : Theme.buttonWidthLarge * 1.5 height: content.height + anchors.horizontalCenter: parent.horizontalCenter Rectangle { id: content diff --git a/qml/pages/components/ItemUser.qml b/qml/pages/components/ItemUser.qml index 4220a76..02913eb 100644 --- a/qml/pages/components/ItemUser.qml +++ b/qml/pages/components/ItemUser.qml @@ -18,7 +18,6 @@ BackgroundItem { anchors.left: parent.left anchors.leftMargin: Theme.horizontalPageMargin - Image { id: img opacity: status === Image.Ready ? 1.0 : 0.0 @@ -56,7 +55,7 @@ BackgroundItem { } Item { - id: userdescription + id: userDescription height: account_acct.height + display_name.height anchors.left: avatar.right anchors.leftMargin: Theme.paddingLarge @@ -72,7 +71,6 @@ BackgroundItem { truncationMode: TruncationMode.Fade width: parent.width - Theme.paddingMedium anchors.top: parent.top - } Label { diff --git a/qml/pages/components/MediaFullScreen.qml b/qml/pages/components/MediaFullScreen.qml index d0f9119..f4adf7d 100644 --- a/qml/pages/components/MediaFullScreen.qml +++ b/qml/pages/components/MediaFullScreen.qml @@ -287,23 +287,23 @@ FullscreenContentPage { IconButton { y: Theme.paddingLarge + icon.source: "image://theme/icon-m-dismiss" + onClicked: pageStack.pop() anchors { right: parent.right rightMargin: Theme.horizontalPageMargin } - icon.source: "image://theme/icon-m-dismiss" - onClicked: pageStack.pop() } IconButton { id: mediaDlBtn + icon.source: "image://theme/icon-m-cloud-download" anchors { right: parent.right rightMargin: Theme.horizontalPageMargin bottom: parent.bottom bottomMargin: Theme.horizontalPageMargin } - icon.source: "image://theme/icon-m-cloud-download" onClicked: { var filename = mediaURL.split("/") FileDownloader.downloadFile(mediaURL, filename[filename.length-1]) @@ -327,7 +327,6 @@ FullscreenContentPage { } else { video.play() hideTimer.start() - } } } @@ -354,7 +353,6 @@ FullscreenContentPage { overlayIcons.active = !overlayIcons.active } } - } VerticalScrollDecorator { flickable: imageFlickable } diff --git a/qml/pages/components/MiniHeader.qml b/qml/pages/components/MiniHeader.qml index 1774e95..3cf3cd3 100644 --- a/qml/pages/components/MiniHeader.qml +++ b/qml/pages/components/MiniHeader.qml @@ -48,9 +48,9 @@ Item { width: parent.width - Theme.paddingMedium truncationMode: TruncationMode.Fade anchors { + top: lblName.bottom left: parent.left leftMargin: Theme.paddingMedium - top: lblName.bottom } } diff --git a/qml/pages/components/MiniStatus.qml b/qml/pages/components/MiniStatus.qml index 946fe98..96170fe 100644 --- a/qml/pages/components/MiniStatus.qml +++ b/qml/pages/components/MiniStatus.qml @@ -5,8 +5,8 @@ import Sailfish.Silica 1.0 Item { id: miniStatus visible: true - height: icon.height+Theme.paddingMedium width: parent.width + height: icon.height+Theme.paddingMedium Icon { id: icon @@ -18,9 +18,9 @@ Item { anchors { top: parent.top topMargin: Theme.paddingMedium - bottomMargin: Theme.paddingMedium left: parent.left leftMargin: Theme.horizontalPageMargin + Theme.iconSizeMedium - width + bottomMargin: Theme.paddingMedium } } diff --git a/qml/pages/components/MyList.qml b/qml/pages/components/MyList.qml index d903ccc..3d96f61 100644 --- a/qml/pages/components/MyList.qml +++ b/qml/pages/components/MyList.qml @@ -188,7 +188,7 @@ SilicaListView { 'model' : model, 'mode' : mode, 'conf' : Logic.conf - }; + } console.log(JSON.stringify(msg)) if (type !== "") diff --git a/qml/pages/components/MyMedia.qml b/qml/pages/components/MyMedia.qml index 32fe464..4e5c980 100644 --- a/qml/pages/components/MyMedia.qml +++ b/qml/pages/components/MyMedia.qml @@ -34,7 +34,7 @@ Item { Image { visible: type == 'audio' - opacity: img.status === Image.Ready ? 0.0 : 1.0 + //opacity: img.status === Image.Ready ? 0.0 : 1.0 Behavior on opacity { FadeAnimator {} } source: "image://theme/icon-m-file-audio?" anchors.centerIn: parent @@ -85,24 +85,25 @@ Item { BusyIndicator { id: mediaLoader + visible: type != 'audio' size: BusyIndicatorSize.Large running: img.status !== Image.Ready opacity: img.status === Image.Ready ? 0.0 : 1.0 - anchors.verticalCenter: parent.verticalCenter - anchors.horizontalCenter: parent.horizontalCenter + anchors { + verticalCenter: parent.verticalCenter + horizontalCenter: parent.horizontalCenter + } } Rectangle { id: mediaWarning color: Theme.highlightDimmerColor visible: typeof status_sensitive != "undefined" && status_sensitive ? true : false - anchors.fill: parent - Image { source: "image://theme/icon-l-attention?"+Theme.highlightColor anchors.centerIn: parent } - + anchors.fill: parent MouseArea { anchors.fill: parent onClicked: parent.visible = false diff --git a/qml/pages/components/ProfileHeader.qml b/qml/pages/components/ProfileHeader.qml index 5cddfbd..7fbb541 100644 --- a/qml/pages/components/ProfileHeader.qml +++ b/qml/pages/components/ProfileHeader.qml @@ -181,8 +181,10 @@ Item { text: qsTr("Bot") font.pixelSize: Theme.fontSizeExtraSmall color: Theme.primaryColor - anchors.horizontalCenter: parent.horizontalCenter - anchors.verticalCenter: parent.verticalCenter + anchors { + horizontalCenter: parent.horizontalCenter + verticalCenter: parent.verticalCenter + } } } } diff --git a/qml/pages/components/VisualContainer.qml b/qml/pages/components/VisualContainer.qml index 57cacb3..54c2e0d 100644 --- a/qml/pages/components/VisualContainer.qml +++ b/qml/pages/components/VisualContainer.qml @@ -198,7 +198,6 @@ BackgroundItem { console.log(link) console.log(JSON.stringify(test)) console.log(JSON.stringify(test.length)) - if (test.length === 5 && (test[3] === "tags" || test[3] === "tag") ) { pageStack.pop(pageStack.find(function(page) { var check = page.isFirstPage === true; @@ -341,8 +340,8 @@ BackgroundItem { width: Theme.iconSizeSmall height: width anchors { - leftMargin: Theme.horizontalPageMargin left: parent.left + leftMargin: Theme.horizontalPageMargin verticalCenter: parent.verticalCenter } } @@ -389,7 +388,6 @@ BackgroundItem { } } - MenuItem { id: mnuMention visible: model.type === "follow" diff --git a/translations/harbour-tooter-de.ts b/translations/harbour-tooter-de.ts index a85cd34..f0adf3f 100644 --- a/translations/harbour-tooter-de.ts +++ b/translations/harbour-tooter-de.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel Inhaltswarnung @@ -77,11 +78,11 @@ EmojiSelect Emojis - + Emojis Tap to insert - + Tippen um einzufรผgen @@ -118,38 +119,38 @@ MainPage Home - + Home Notifications - + Benachrichtigungen Local - + Lokal Federated - + Fรถderiert Search - + Suche @user or #term - + @Benutzer oder #Ausdruck New Toot - Neuer Toot + Neuer Toot MediaFullScreen Error loading - + Ladefehler @@ -191,7 +192,7 @@ Open in Browser - Im Browser รถffnen + Im Browser รถffnen @@ -214,61 +215,61 @@ About If there's no good translation for "About", use "Details" (in details about profile). - + Details Followers Will show as: "35 Followers" - + Folgende Following Will show as: "23 Following" - + Folgt Statuses Will show as: "115 Statuses" - + Beitrรคge Mention - Erwรคhnen + Erwรคhnen Unfollow Is a button. Keep it as short as possible. - + Entfolgen Requested Is a button. Keep it as short as possible. - + Angefragt Follow Is a button. Keep it as short as possible. - + Folgen Unmute Is a button. Keep it as short as possible. - + Nicht stumm Mute Is a button. Keep it as short as possible. - + Stumm schalten Unblock Is a button. Keep it as short as possible. - + Zulassen Block Is a button. Keep it as short as possible. - + Blockieren diff --git a/translations/harbour-tooter-el.ts b/translations/harbour-tooter-el.ts index 5be46c0..25a224e 100644 --- a/translations/harbour-tooter-el.ts +++ b/translations/harbour-tooter-el.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel @@ -118,15 +119,15 @@ MainPage Home - + ฮŸฮนฮบฮฟฯƒฮตฮปฮฏฮดฮฑ Notifications - + ฮ•ฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮตฮนฯ‚ Local - + ฮคฮฟฯ€ฮนฮบฯŒฯ‚ Federated @@ -134,15 +135,15 @@ Search - + ฮ‘ฮฝฮฑฮถฮฎฯ„ฮทฯƒฮท @user or #term - + @ฯ‡ฯฮฎฯƒฯ„ฮท ฮฎ #ฯŒฯฮฟฯ‚ New Toot - ฮฮญฮฟฯ‚ + ฮฮญฮฟฯ‚ @@ -187,7 +188,7 @@ Reload - ฮ•ฯ€ฮฑฮฝฮฑฯ†ฯŒฯฯ„ฯ‰ฯƒฮท + ฮฆฯŒฯฯ„ฯ‰ฯƒฮท ฯ€ฮตฯฮนฯƒฯƒฮฟฯ„ฮญฯฯ‰ฮฝ Open in Browser @@ -219,26 +220,26 @@ Followers Will show as: "35 Followers" - + ฮฃฮฑฯ‚ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฟฯฮฝ Following Will show as: "23 Following" - + ฮฃฮต ฯ€ฮฑฯฮฑฮบฮฟฮปฮฟฯฮธฮทฯƒฮท Statuses Will show as: "115 Statuses" - + ฮšฮฑฯ„ฮฌฯƒฯ„ฮฑฯƒฮท Mention - + ฮฆฯฮฑฮณฮฎ Unfollow Is a button. Keep it as short as possible. - + ฮ‘ฮฝฮฑฮฏฯฮตฯƒฮท ฯ€ฮฑฯฮฑฮบฮฟฮปฮฟฯฮธฮทฯƒฮทฯ‚ Requested @@ -248,22 +249,22 @@ Follow Is a button. Keep it as short as possible. - + ฮ ฮฑฯฮฑฮบฮฟฮปฮฟฯฮธฮทฯƒฮท Unmute Is a button. Keep it as short as possible. - + ฮ‘ฮฝฮฑฮฏฯฮตฯƒฮท ฯƒฮฏฮณฮฑฯƒฮทฯ‚ Mute Is a button. Keep it as short as possible. - + ฮฃฮฏฮณฮฑฯƒฮท Unblock Is a button. Keep it as short as possible. - + ฮ‘ฮฝฮฑฮฏฯฮตฯƒฮท ฯ†ฯฮฑฮณฮฎฯ‚ Block @@ -376,7 +377,7 @@ Mention - + ฮฆฯฮฑฮณฮฎ Conversation diff --git a/translations/harbour-tooter-es.ts b/translations/harbour-tooter-es.ts index fc84ce7..6973817 100644 --- a/translations/harbour-tooter-es.ts +++ b/translations/harbour-tooter-es.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel Escribe aquรญ tu advertencia diff --git a/translations/harbour-tooter-fr.ts b/translations/harbour-tooter-fr.ts index 3135fb6..aa50e34 100644 --- a/translations/harbour-tooter-fr.ts +++ b/translations/harbour-tooter-fr.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel Rรฉdigez votre alerte ici @@ -77,11 +78,11 @@ EmojiSelect Emojis - + Emojis Tap to insert - + Appuyez pour insรฉrer @@ -118,27 +119,27 @@ MainPage Home - + Accueil Notifications - + Notifications Local - + Fil public local Federated - + Fil public global Search - + Rechercher @user or #term - + @personne ou #terme New Toot @@ -149,7 +150,7 @@ MediaFullScreen Error loading - + Erreur au chargement @@ -191,7 +192,7 @@ Open in Browser - Ouvrir dans le navigateur + Ouvrir dans le navigateur @@ -214,61 +215,61 @@ About If there's no good translation for "About", use "Details" (in details about profile). - + Dรฉtails Followers Will show as: "35 Followers" - + Abonnรฉ(e)s Following Will show as: "23 Following" - + Abonnements Statuses Will show as: "115 Statuses" - + Pouets Mention - Mentionner + Mentionner Unfollow Is a button. Keep it as short as possible. - + Ne plus suivre Requested Is a button. Keep it as short as possible. - + Demandรฉ Follow Is a button. Keep it as short as possible. - + Suivre Unmute Is a button. Keep it as short as possible. - + Dรฉmasquer Mute Is a button. Keep it as short as possible. - + Masquer Unblock Is a button. Keep it as short as possible. - + Dรฉbloquer Block Is a button. Keep it as short as possible. - + Bloquer diff --git a/translations/harbour-tooter-it.ts b/translations/harbour-tooter-it.ts index 93cb7c3..4e12a4d 100644 --- a/translations/harbour-tooter-it.ts +++ b/translations/harbour-tooter-it.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel Contenuto avviso @@ -77,11 +78,11 @@ EmojiSelect Emojis - + Emojis Tap to insert - + Tap per inserire @@ -118,38 +119,38 @@ MainPage Home - + Home Notifications - + Notifiche Local - + Locale Federated - + Federazione Search - + Cerca @user or #term - + @utente o #terme New Toot - Nuovo Toot + Nuovo Toot MediaFullScreen Error loading - + Errore durante caricamento @@ -191,7 +192,7 @@ Open in Browser - Aprire nel browser + Aprire nel browser @@ -214,61 +215,61 @@ About If there's no good translation for "About", use "Details" (in details about profile). - + Dettagli Followers Will show as: "35 Followers" - + Seguaci Following Will show as: "23 Following" - + Segue Statuses Will show as: "115 Statuses" - + Toots Mention - Menzionare + Menzionare Unfollow Is a button. Keep it as short as possible. - + Smetti di seguire Requested Is a button. Keep it as short as possible. - + Richiesto Follow Is a button. Keep it as short as possible. - + Segui Unmute Is a button. Keep it as short as possible. - + Non silenziare Mute Is a button. Keep it as short as possible. - + Silenzia Unblock Is a button. Keep it as short as possible. - + Sblocca Block Is a button. Keep it as short as possible. - + Blocca diff --git a/translations/harbour-tooter-nl.ts b/translations/harbour-tooter-nl.ts index 83c891a..9e6e937 100644 --- a/translations/harbour-tooter-nl.ts +++ b/translations/harbour-tooter-nl.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel Waarschuwingstekst diff --git a/translations/harbour-tooter-nl_BE.ts b/translations/harbour-tooter-nl_BE.ts index f0e21c0..20dccf8 100644 --- a/translations/harbour-tooter-nl_BE.ts +++ b/translations/harbour-tooter-nl_BE.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel diff --git a/translations/harbour-tooter-oc.ts b/translations/harbour-tooter-oc.ts index 6599ff6..8eb237f 100644 --- a/translations/harbour-tooter-oc.ts +++ b/translations/harbour-tooter-oc.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel diff --git a/translations/harbour-tooter-pl.ts b/translations/harbour-tooter-pl.ts index be3604d..41e4364 100644 --- a/translations/harbour-tooter-pl.ts +++ b/translations/harbour-tooter-pl.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel diff --git a/translations/harbour-tooter-ru.ts b/translations/harbour-tooter-ru.ts index a9224f4..495b13c 100644 --- a/translations/harbour-tooter-ru.ts +++ b/translations/harbour-tooter-ru.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel ะขะตะบัั‚ ะฟั€ะตะดัƒะฟั€ะตะถะดะตะฝะธั diff --git a/translations/harbour-tooter-sr.ts b/translations/harbour-tooter-sr.ts index 1a0f511..5cc6c90 100644 --- a/translations/harbour-tooter-sr.ts +++ b/translations/harbour-tooter-sr.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel diff --git a/translations/harbour-tooter-sv.ts b/translations/harbour-tooter-sv.ts index 7e3b76b..da2e70c 100644 --- a/translations/harbour-tooter-sv.ts +++ b/translations/harbour-tooter-sv.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel diff --git a/translations/harbour-tooter-zh_CN.ts b/translations/harbour-tooter-zh_CN.ts index 062036b..f82ed64 100644 --- a/translations/harbour-tooter-zh_CN.ts +++ b/translations/harbour-tooter-zh_CN.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel ๅœจๆญค็ผ–ๅ†™ไฝ ็š„่ญฆๅ‘Šไฟกๆฏ diff --git a/translations/harbour-tooter.ts b/translations/harbour-tooter.ts index 8e242a8..09af8b4 100644 --- a/translations/harbour-tooter.ts +++ b/translations/harbour-tooter.ts @@ -29,6 +29,7 @@ Write your warning here + placeholderText in Toot content warning panel Write your warning here