Merge branch 'master' into clipboard

This commit is contained in:
Sebastian Wolf 2020-11-01 19:12:52 +01:00 committed by GitHub
commit e26cd3d9d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 226 additions and 329 deletions

View file

@ -10,7 +10,7 @@ Fernschreiber wouldn't be the same without all the people helping in making it b
### Code (Features, Bugfixes, Optimizations etc.)
- Chat list model, TDLib receiver, project dependencies: [Slava Monich](https://github.com/monich)
- Chat info page, location support, app initialization/registration with Telegram, project dependencies: [jgibbon](https://github.com/jgibbon)
- Chat info page, performance improvements to chat page, location support, app initialization/registration with Telegram, project dependencies: [jgibbon](https://github.com/jgibbon)
### Logo/Icon
- Designed by [Matteo](https://github.com/iamnomeutente)

View file

@ -24,15 +24,18 @@ import "../js/functions.js" as Functions
Item {
id: audioMessageComponent
property variant audioData;
property ListItem messageListItem
property variant rawMessage: messageListItem.myMessage
property variant audioData: ( rawMessage.content['@type'] === "messageVoiceNote" ) ? rawMessage.content.voice_note : ( ( rawMessage.content['@type'] === "messageAudio" ) ? rawMessage.content.audio : "");
property string audioUrl;
property int previewFileId;
property int audioFileId;
property bool onScreen;
property bool onScreen: messageListItem.page.status === PageStatus.Active
property string audioType : "voiceNote";
width: parent.width
height: parent.height
height: width / 2
function getTimeString(rawSeconds) {
var minutes = Math.floor( rawSeconds / 60 );

View file

@ -26,7 +26,10 @@ Item {
width: parent.width
height: Theme.itemSizeLarge
property variant documentData;
property ListItem messageListItem
property variant rawMessage: messageListItem.myMessage
property variant documentData: rawMessage.content.document
property bool openRequested: false;
Component.onCompleted: {

View file

@ -24,9 +24,14 @@ Item {
id: imagePreviewItem
property variant photoData;
property ListItem messageListItem
property variant rawMessage: messageListItem.myMessage
property variant photoData: rawMessage.content.photo;
property variant pictureFileInformation;
width: parent.width
height: width * 2 / 3
Component.onCompleted: {
updatePicture();
}

View file

@ -23,9 +23,16 @@ import Sailfish.Silica 1.0
Item {
id: imagePreviewItem
property variant locationData;
property int chatId;
property ListItem messageListItem
property variant rawMessage: messageListItem.myMessage
property variant locationData : ( rawMessage.content['@type'] === "messageLocation" ) ? rawMessage.content.location : ( ( rawMessage.content['@type'] === "messageVenue" ) ? rawMessage.content.venue.location : "" )
property string chatId: messageListItem.page.chatInformation.id
property variant pictureFileInformation;
width: parent.width
height: width / 2
Component.onCompleted: {
updatePicture();

View file

@ -27,13 +27,16 @@ import "../js/twemoji.js" as Emoji
Item {
id: pollMessageComponent
property string chatId
property var message:({})
property bool isOwnMessage
property string messageId: message.id
property bool canEdit: message.can_be_edited
property var pollData: message.content.poll
property ListItem messageListItem
property variant rawMessage: messageListItem.myMessage
property string chatId: messageListItem.page.chatInformation.id
property bool isOwnMessage: messageListItem.isOwnMessage
property string messageId: rawMessage.id
property bool canEdit: rawMessage.can_be_edited
property var pollData: rawMessage.content.poll
property var chosenPollData:({})
property var chosenIndexes: []
property bool hasAnswered: {
@ -43,7 +46,7 @@ Item {
}
property bool canAnswer: !hasAnswered && !pollData.is_closed
property bool isQuiz: pollData.type['@type'] === "pollTypeQuiz"
property Item messageItem
width: parent.width
height: pollColumn.height
opacity: 0
Behavior on opacity { FadeAnimation {} }
@ -286,9 +289,9 @@ Item {
Component.onCompleted: {
opacity = 1;
if(messageItem && messageItem.menu ) { // workaround to add menu entries
closePollMenuItemComponent.createObject(messageItem.menu._contentColumn);
resetAnswerMenuItemComponent.createObject(messageItem.menu._contentColumn);
if(messageListItem && messageListItem.menu ) { // workaround to add menu entries
closePollMenuItemComponent.createObject(messageListItem.menu._contentColumn);
resetAnswerMenuItemComponent.createObject(messageListItem.menu._contentColumn);
}
}
}

View file

@ -20,7 +20,11 @@ import QtQuick 2.5
import Sailfish.Silica 1.0
Item {
property variant stickerData;
property ListItem messageListItem
property variant rawMessage: messageListItem.myMessage
property variant stickerData: rawMessage.content.sticker;
property int usedFileId;
width: stickerData.width

View file

@ -24,17 +24,20 @@ import "../js/functions.js" as Functions
Item {
id: videoMessageComponent
property variant videoData;
property ListItem messageListItem
property variant rawMessage: messageListItem.myMessage
property variant videoData: ( rawMessage.content['@type'] === "messageVideo" ) ? rawMessage.content.video : ( ( rawMessage.content['@type'] === "messageAnimation" ) ? rawMessage.content.animation : "")
property string videoUrl;
property int previewFileId;
property int videoFileId;
property bool fullscreen : false;
property bool onScreen;
property bool onScreen: messageListItem.page.status === PageStatus.Active;
property string videoType : "video";
property bool playRequested: false;
width: parent.width
height: parent.height
height: Functions.getVideoHeight(width, videoData)
Timer {
id: screensaverTimer

View file

@ -225,8 +225,6 @@ Page {
chatPage.isInitialized = true;
}
break;
// case PageStatus.Deactivating:
// tdLibWrapper.closeChat(chatInformation.id);
}
}
@ -314,6 +312,10 @@ Page {
chatView.lastReadSentIndex = lastReadSentIndex;
chatViewCooldownTimer.start();
}
onNotificationSettingsUpdated: {
chatInformation = chatModel.getChatInformation();
muteChatMenuItem.text = chatInformation.notification_settings.mute_for > 0 ? qsTr("Unmute Chat") : qsTr("Mute Chat");
}
}
Timer {
@ -348,9 +350,9 @@ Page {
SilicaFlickable {
id: chatContainer
contentHeight: parent.height
contentWidth: parent.width
anchors.fill: parent
contentHeight: height
contentWidth: width
PullDownMenu {
visible: chatInformation.id !== chatPage.myUserId && !stickerPickerLoader.active
@ -369,13 +371,6 @@ Page {
}
}
Connections {
target: chatModel
onNotificationSettingsUpdated: {
chatInformation = chatModel.getChatInformation();
muteChatMenuItem.text = chatInformation.notification_settings.mute_for > 0 ? qsTr("Unmute Chat") : qsTr("Mute Chat");
}
}
BackgroundItem {
id: headerMouseArea
height: headerRow.height
@ -463,16 +458,6 @@ Page {
previousHeight = height;
}
Timer {
id: chatViewLoadingTimer
interval: 100
repeat: false
running: false
onTriggered: {
chatPage.loading = false;
}
}
Timer {
id: chatViewCooldownTimer
interval: 2000
@ -484,6 +469,7 @@ Page {
}
}
SilicaListView {
id: chatView
@ -519,25 +505,48 @@ Page {
}
model: chatModel
delegate: ListItem {
property variant contentComponentNames: ({
messageSticker: "StickerPreview",
messagePhoto: "ImagePreview",
messageVideo: "VideoPreview",
messageAnimation: "VideoPreview",
messageAudio: "AudioPreview",
messageVoiceNote: "AudioPreview",
messageDocument: "DocumentPreview",
messageLocation: "LocationPreview",
messageVenue: "LocationPreview",
messagePoll: "PollPreview"
})
function getContentComponentHeight(componentName, content, parentWidth) {
switch(componentName) {
case "StickerPreview": return content.sticker.height;
case "ImagePreview":
case "LocationPreview":
return parentWidth * 0.66666666; // 2 / 3;
case "VideoPreview":
return Functions.getVideoHeight(parentWidth, ( content['@type'] === "messageVideo" ) ? content.video : content.animation);
case "AudioPreview":
return parentWidth / 2;
case "DocumentPreview":
return Theme.itemSizeSmall;
case "PollPreview":
return Theme.itemSizeSmall * (4 + content.poll.options);
}
}
delegate: ListItem {
id: messageListItem
contentHeight: messageBackground.height + Theme.paddingMedium
contentWidth: parent.width
property variant myMessage: display
property variant userInformation: tdLibWrapper.getUserInformation(display.sender_user_id)
property bool isOwnMessage: chatPage.myUserId === display.sender_user_id
property bool isForwarded: typeof display.forward_info !== "undefined"
property bool containsImage: display.content['@type'] === "messagePhoto"
property bool containsSticker: display.content['@type'] === "messageSticker"
property bool containsWebPage: typeof display.content.web_page !== "undefined"
property bool containsVideo: (( display.content['@type'] === "messageVideo" ) || ( display.content['@type'] === "messageAnimation" ));
property bool containsAudio: (( display.content['@type'] === "messageVoiceNote" ) || ( display.content['@type'] === "messageAudio" ));
property bool containsDocument: ( display.content['@type'] === "messageDocument" )
property bool containsLocation: ( display.content['@type'] === "messageLocation" || ( display.content['@type'] === "messageVenue" ))
property bool containsPoll: display.content['@type'] === "messagePoll"
property Page page: chatPage
property bool isOwnMessage: chatPage.myUserId === display.sender_user_id
property string extraContentComponentName: typeof display.content !== "undefined"
&& chatView.contentComponentNames.hasOwnProperty(display.content['@type']) ?
chatView.contentComponentNames[display.content['@type']] : ""
menu: ContextMenu {
MenuItem {
onClicked: {
@ -557,13 +566,15 @@ Page {
}
MenuItem {
onClicked: {
Clipboard.text = messageText.text
Clipboard.text = Functions.getMessageText(display, false, false);
}
text: qsTr("Copy Message to Clipboard")
}
MenuItem {
onClicked: {
deleteMessageRemorseItem.execute(messageListItem, qsTr("Deleting message"), function() { tdLibWrapper.deleteMessages(chatInformation.id, [ display.id ]); } );
var chatId = chatInformation.id;
var messageId = display.id;
Remorse.itemAction(messageListItem, qsTr("Message deleted"), function() { tdLibWrapper.deleteMessages(chatId, [ messageId]); })
}
text: qsTr("Delete Message")
visible: display.can_be_deleted_for_all_users || (display.can_be_deleted_only_for_self && display.chat_id === chatPage.myUserId)
@ -580,6 +591,32 @@ Page {
messageBackground.color = index > ( chatView.count - chatInformation.unreadCount - 1 ) ? Theme.secondaryHighlightColor : Theme.secondaryColor;
messageBackground.opacity = index > ( chatView.count - chatInformation.unreadCount - 1 ) ? 0.5 : 0.2;
}
onLastReadSentMessageUpdated: {
console.log("[ChatModel] Messages in this chat were read, new last read: " + lastReadSentIndex + ", updating description for index " + index + ", status: " + (index <= lastReadSentIndex));
messageDateText.text = getMessageStatusText(display, index, lastReadSentIndex);
}
onMessageUpdated: {
if (index === modelIndex) {
console.log("[ChatModel] This message was updated, index " + index + ", updating content...");
messageDateText.text = getMessageStatusText(display, index, chatView.lastReadSentIndex);
messageText.text = Emoji.emojify(Functions.getMessageText(display, false, messageListItem.isOwnMessage), messageText.font.pixelSize);
if(locationPreviewLoader.active && locationPreviewLoader.status === Loader.Ready) {
locationPreviewLoader.item.locationData = display.content.location;
locationPreviewLoader.item.updatePicture()
}
}
}
}
Connections {
target: tdLibWrapper
onReceivedMessage: {
if (messageId === display.reply_to_message_id.toString()) {
messageInReplyToRow.inReplyToMessage = message;
messageInReplyToRow.visible = true;
}
}
}
Component.onCompleted: {
@ -593,22 +630,21 @@ Page {
running: false
onTriggered: {
if (typeof display.content !== "undefined") {
webPagePreviewLoader.active = messageListItem.containsWebPage;
imagePreviewLoader.active = messageListItem.containsImage;
stickerPreviewLoader.active = messageListItem.containsSticker;
videoPreviewLoader.active = messageListItem.containsVideo;
audioPreviewLoader.active = messageListItem.containsAudio;
documentPreviewLoader.active = messageListItem.containsDocument;
locationPreviewLoader.active = messageListItem.containsLocation;
pollPreviewLoader.active = messageListItem.containsPoll;
forwardedInformationLoader.active = messageListItem.isForwarded;
if(messageListItem.extraContentComponentName !== "") {
extraContentLoader.setSource(
"../components/" +messageListItem.extraContentComponentName +".qml",
{
messageListItem: messageListItem
})
} else {
if(typeof display.content.web_page !== "undefined") { // only in messageText
webPagePreviewLoader.active = true;
}
}
}
}
}
RemorseItem {
id: deleteMessageRemorseItem
}
Row {
id: messageTextRow
@ -617,18 +653,6 @@ Page {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
Component {
id: profileThumbnailComponent
ProfileThumbnail {
id: messagePictureThumbnail
photoData: (typeof messageListItem.userInformation.profile_photo !== "undefined") ? messageListItem.userInformation.profile_photo.small : ""
replacementStringHint: userText.text
width: visible ? Theme.itemSizeSmall : 0
height: visible ? Theme.itemSizeSmall : 0
visible: ( chatPage.isBasicGroup || chatPage.isSuperGroup ) && !chatPage.isChannel
}
}
Loader {
id: profileThumbnailLoader
active: (( chatPage.isBasicGroup || chatPage.isSuperGroup ) && !chatPage.isChannel)
@ -637,7 +661,16 @@ Page {
height: active ? Theme.itemSizeSmall : 0
anchors.bottom: parent.bottom
anchors.bottomMargin: Theme.paddingSmall
sourceComponent: profileThumbnailComponent
sourceComponent: Component {
ProfileThumbnail {
id: messagePictureThumbnail
photoData: (typeof messageListItem.userInformation.profile_photo !== "undefined") ? messageListItem.userInformation.profile_photo.small : ""
replacementStringHint: userText.text
width: visible ? Theme.itemSizeSmall : 0
height: visible ? Theme.itemSizeSmall : 0
visible: ( chatPage.isBasicGroup || chatPage.isSuperGroup ) && !chatPage.isChannel
}
}
}
Item {
@ -660,7 +693,7 @@ Page {
color: index > ( chatView.count - chatInformation.unread_count - 1 ) ? Theme.secondaryHighlightColor : Theme.secondaryColor
radius: parent.width / 50
opacity: index > ( chatView.count - chatInformation.unread_count - 1 ) ? 0.5 : 0.2
visible: appSettings.showStickersAsImages || !messageListItem.containsSticker
visible: appSettings.showStickersAsImages || display.content['@type'] !== "messageSticker"
}
Column {
@ -677,15 +710,6 @@ Page {
}
}
Connections {
target: tdLibWrapper
onReceivedMessage: {
if (messageId === display.reply_to_message_id.toString()) {
messageInReplyToRow.inReplyToMessage = message;
messageInReplyToRow.visible = true;
}
}
}
Text {
id: userText
@ -710,10 +734,10 @@ Page {
Loader {
id: forwardedInformationLoader
active: false
active: typeof display.forward_info !== "undefined"
asynchronous: true
width: parent.width
height: messageListItem.isForwarded ? ( item ? item.height : Theme.itemSizeExtraSmall ) : 0
// height: active ? ( item ? item.height : Theme.itemSizeExtraSmall ) : 0
sourceComponent: Component {
Row {
id: forwardedMessageInformationRow
@ -823,128 +847,12 @@ Page {
}
}
}
Loader {
id: imagePreviewLoader
active: false
asynchronous: true
id: extraContentLoader
width: parent.width
height: messageListItem.containsImage ? (item ? item.height : (parent.width * 2 / 3)) : 0
sourceComponent: Component {
id: imagePreviewComponent
ImagePreview {
id: messageImagePreview
photoData: messageListItem.containsImage ? display.content.photo : ""
width: parent.width
height: parent.width * 2 / 3
}
}
}
Loader
{
id: stickerPreviewLoader
active: false
asynchronous: true
x: messageListItem.isOwnMessage ? (parent.width - width) : 0
width: (appSettings.showStickersAsImages || !item) ? parent.width : item.width
height: messageListItem.containsSticker ? display.content.sticker.height : 0
sourceComponent: Component {
id: stickerPreviewComponent
StickerPreview {
id: messageStickerPreview
stickerData: messageListItem.containsSticker ? display.content.sticker : ""
}
}
}
Loader {
id: videoPreviewLoader
active: false
asynchronous: true
width: parent.width
height: messageListItem.containsVideo ? Functions.getVideoHeight(width, ( display.content['@type'] === "messageVideo" ) ? display.content.video : display.content.animation) : 0
sourceComponent: Component {
id: videoPreviewComponent
VideoPreview {
id: messageVideoPreview
videoData: ( display.content['@type'] === "messageVideo" ) ? display.content.video : ( ( display.content['@type'] === "messageAnimation" ) ? display.content.animation : "")
width: parent.width
height: Functions.getVideoHeight(width, ( display.content['@type'] === "messageVideo" ) ? display.content.video : display.content.animation)
onScreen: chatPage.status === PageStatus.Active
}
}
}
Loader {
id: audioPreviewLoader
active: false
asynchronous: true
width: parent.width
height: messageListItem.containsAudio ? (parent.width / 2) : 0
sourceComponent: Component {
id: audioPreviewComponent
AudioPreview {
id: messageAudioPreview
audioData: ( display.content['@type'] === "messageVoiceNote" ) ? display.content.voice_note : ( ( display.content['@type'] === "messageAudio" ) ? display.content.audio : "")
width: parent.width
height: parent.width / 2
onScreen: chatPage.status === PageStatus.Active
}
}
}
Loader {
id: documentPreviewLoader
active: false
asynchronous: true
width: parent.width
height: messageListItem.containsDocument ? (item ? item.height : Theme.itemSizeSmall) : 0
sourceComponent: Component {
id: documentPreviewComponent
DocumentPreview {
id: messageDocumentPreview
documentData: messageListItem.containsDocument ? display.content.document : ""
}
}
}
Loader {
id: locationPreviewLoader
active: false
asynchronous: true
width: parent.width
height: messageListItem.containsLocation ? (item ? item.height : (parent.width * 2 / 3)) : 0
sourceComponent: Component {
id: locationPreviewComponent
LocationPreview {
id: messageLocationPreview
width: parent.width
height: parent.width * 2 / 3
chatId: display.id
locationData: ( display.content['@type'] === "messageLocation" ) ? display.content.location : ( ( display.content['@type'] === "messageVenue" ) ? display.content.venue.location : "" )
}
}
}
Loader {
id: pollPreviewLoader
active: false
asynchronous: true
width: parent.width
// height: messageListItem.containsLocation ? (item ? item.height : (parent.width * 2 / 3)) : 0
sourceComponent: Component {
id: pollPreviewComponent
PollPreview {
id: messageLocationPreview
width: parent.width
chatId: chatInformation.id
isOwnMessage: messageListItem.isOwnMessage
message: display
messageItem: messageListItem
}
}
property int heightPreset: messageListItem.extraContentComponentName !== "" ? chatView.getContentComponentHeight(messageListItem.extraContentComponentName, display.content, width) : 0
height: item ? item.height : heightPreset
}
Timer {
@ -957,24 +865,6 @@ Page {
}
}
Connections {
target: chatModel
onLastReadSentMessageUpdated: {
console.log("[ChatModel] Messages in this chat were read, new last read: " + lastReadSentIndex + ", updating description for index " + index + ", status: " + (index <= lastReadSentIndex));
messageDateText.text = getMessageStatusText(display, index, lastReadSentIndex);
}
onMessageUpdated: {
if (index === modelIndex) {
console.log("[ChatModel] This message was updated, index " + index + ", updating content...");
messageDateText.text = getMessageStatusText(display, index, chatView.lastReadSentIndex);
messageText.text = Emoji.emojify(Functions.getMessageText(display, false, messageListItem.isOwnMessage), messageText.font.pixelSize);
if(locationPreviewLoader.active && locationPreviewLoader.status === Loader.Ready) {
locationPreviewLoader.item.locationData = display.content.location;
locationPreviewLoader.item.updatePicture()
}
}
}
}
Text {
width: parent.width
@ -1009,7 +899,7 @@ Page {
anchors.verticalCenter: parent.verticalCenter
opacity: chatPage.loading ? 1 : 0
Behavior on opacity { NumberAnimation {} }
Behavior on opacity { FadeAnimation {} }
visible: chatPage.loading
InfoLabel {
@ -1072,6 +962,7 @@ Page {
Column {
id: newMessageColumn
spacing: Theme.paddingSmall
width: parent.width - ( 2 * Theme.horizontalPageMargin )
anchors.horizontalCenter: parent.horizontalCenter
visible: !chatPage.isChannel
@ -1079,48 +970,6 @@ Page {
property string replyToMessageId: "0";
property string editMessageId: "0";
Component {
id: imagePickerPage
ImagePickerPage {
onSelectedContentPropertiesChanged: {
attachmentOptionsRow.visible = false;
console.log("Selected photo: " + selectedContentProperties.filePath );
attachmentPreviewRow.fileProperties = selectedContentProperties;
attachmentPreviewRow.isPicture = true;
attachmentPreviewRow.visible = true;
controlSendButton();
}
}
}
Component {
id: videoPickerPage
VideoPickerPage {
onSelectedContentPropertiesChanged: {
attachmentOptionsRow.visible = false;
console.log("Selected video: " + selectedContentProperties.filePath );
attachmentPreviewRow.fileProperties = selectedContentProperties;
attachmentPreviewRow.isVideo = true;
attachmentPreviewRow.visible = true;
controlSendButton();
}
}
}
Component {
id: documentPickerPage
DocumentPickerPage {
onSelectedContentPropertiesChanged: {
attachmentOptionsRow.visible = false;
console.log("Selected document: " + selectedContentProperties.filePath );
attachmentPreviewRow.fileProperties = selectedContentProperties;
attachmentPreviewRow.isDocument = true;
attachmentPreviewRow.visible = true;
controlSendButton();
}
}
}
InReplyToRow {
onInReplyToMessageChanged: {
if (inReplyToMessage) {
@ -1140,7 +989,6 @@ Page {
id: newMessageInReplyToRow
myUserId: chatPage.myUserId
anchors.horizontalCenter: parent.horizontalCenter
visible: false
}
@ -1155,21 +1003,45 @@ Page {
id: imageAttachmentButton
icon.source: "image://theme/icon-m-image"
onClicked: {
pageStack.push(imagePickerPage);
var picker = pageStack.push("Sailfish.Pickers.ImagePickerPage");
picker.selectedContentPropertiesChanged.connect(function(){
attachmentOptionsRow.visible = false;
console.log("Selected document: " + picker.selectedContentProperties.filePath );
attachmentPreviewRow.fileProperties = picker.selectedContentProperties;
attachmentPreviewRow.isPicture = true;
attachmentPreviewRow.visible = true;
controlSendButton();
})
}
}
IconButton {
id: videoAttachmentButton
icon.source: "image://theme/icon-m-video"
onClicked: {
pageStack.push(videoPickerPage);
var picker = pageStack.push("Sailfish.Pickers.VideoPickerPage");
picker.selectedContentPropertiesChanged.connect(function(){
attachmentOptionsRow.visible = false;
console.log("Selected video: " + picker.selectedContentProperties.filePath );
attachmentPreviewRow.fileProperties = picker.selectedContentProperties;
attachmentPreviewRow.isVideo = true;
attachmentPreviewRow.visible = true;
controlSendButton();
})
}
}
IconButton {
id: documentAttachmentButton
icon.source: "image://theme/icon-m-document"
onClicked: {
pageStack.push(documentPickerPage);
var picker = pageStack.push("Sailfish.Pickers.DocumentPickerPage");
picker.selectedContentPropertiesChanged.connect(function(){
attachmentOptionsRow.visible = false;
console.log("Selected document: " + picker.selectedContentProperties.filePath );
attachmentPreviewRow.fileProperties = picker.selectedContentProperties;
attachmentPreviewRow.isDocument = true;
attachmentPreviewRow.visible = true;
controlSendButton();
})
}
}
@ -1186,7 +1058,7 @@ Page {
}
}
IconButton {
visible: !chatPage.isPrivateChat &&
visible: !chatPage.isPrivateChat && chatGroupInformation &&
(chatGroupInformation.status["@type"] === "chatMemberStatusCreator"
|| chatGroupInformation.status["@type"] === "chatMemberStatusAdministrator"
|| (chatGroupInformation.status["@type"] === "chatMemberStatusMember" && chatInformation.permissions.can_send_polls))
@ -1228,15 +1100,15 @@ Page {
sourceSize.height: height
fillMode: Thumbnail.PreserveAspectCrop
mimeType: typeof attachmentPreviewRow.fileProperties !== "undefined" ? attachmentPreviewRow.fileProperties.mimeType : ""
source: typeof attachmentPreviewRow.fileProperties !== "undefined" ? attachmentPreviewRow.fileProperties.url : ""
mimeType: typeof attachmentPreviewRow.fileProperties !== "undefined" ? attachmentPreviewRow.fileProperties.mimeType || "" : ""
source: typeof attachmentPreviewRow.fileProperties !== "undefined" ? attachmentPreviewRow.fileProperties.url || "" : ""
visible: attachmentPreviewRow.isPicture || attachmentPreviewRow.isVideo
}
Text {
id: attachmentPreviewText
font.pixelSize: Theme.fontSizeSmall
text: typeof attachmentPreviewRow.fileProperties !== "undefined" ? attachmentPreviewRow.fileProperties.fileName : "";
text: typeof attachmentPreviewRow.fileProperties !== "undefined" ? attachmentPreviewRow.fileProperties.fileName || "" : "";
anchors.verticalCenter: parent.verticalCenter
maximumLineCount: 1
@ -1413,11 +1285,8 @@ Page {
newMessageTextField.focus = false;
}
}
}
}
}
}

View file

@ -285,10 +285,6 @@
<source>edited</source>
<translation>bearbeitet</translation>
</message>
<message>
<source>Deleting message</source>
<translation>Lösche Nachricht</translation>
</message>
<message>
<source>Delete Message</source>
<translation>Nachricht löschen</translation>
@ -305,6 +301,10 @@
<source>This chat is empty.</source>
<translation>Dieser Chat ist leer.</translation>
</message>
<message>
<source>Message deleted</source>
<translation>Nachricht gelöscht</translation>
</message>
</context>
<context>
<name>CoverPage</name>

View file

@ -281,10 +281,6 @@
<source>edited</source>
<translation>editado</translation>
</message>
<message>
<source>Deleting message</source>
<translation>Borrando mensaje</translation>
</message>
<message>
<source>Delete Message</source>
<translation>Borrar</translation>
@ -301,6 +297,10 @@
<source>This chat is empty.</source>
<translation>Esta charla está vacía.</translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>

View file

@ -281,10 +281,6 @@
<source>edited</source>
<translation>muokattu</translation>
</message>
<message>
<source>Deleting message</source>
<translation>Poistetaan viestiä</translation>
</message>
<message>
<source>Delete Message</source>
<translation>Poista viesti</translation>
@ -301,6 +297,10 @@
<source>This chat is empty.</source>
<translation>Tämä keskustelu on tyhjä.</translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>

View file

@ -281,10 +281,6 @@
<source>edited</source>
<translation>Szerkesztett</translation>
</message>
<message>
<source>Deleting message</source>
<translation>Üzenet törlése</translation>
</message>
<message>
<source>Delete Message</source>
<translation>Üzenet törlése</translation>
@ -301,6 +297,10 @@
<source>This chat is empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>

View file

@ -277,10 +277,6 @@
<source>edited</source>
<translation>modificato</translation>
</message>
<message>
<source>Deleting message</source>
<translation>Cancellazione del messaggio</translation>
</message>
<message>
<source>Delete Message</source>
<translation>Cancella messaggio</translation>
@ -301,6 +297,10 @@
<source>Uploading...</source>
<translation>Carica...</translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>
@ -531,7 +531,7 @@
</message>
<message>
<source>sent a venue</source>
<translation>ha inviato la posizione</translation>
<translation>ha inviato un luogo</translation>
</message>
<message>
<source>changed the chat title</source>
@ -1192,19 +1192,19 @@
</message>
<message>
<source>Anonymous Quiz</source>
<translation type="unfinished"></translation>
<translation>Quiz anonimo</translation>
</message>
<message>
<source>Quiz</source>
<translation type="unfinished"></translation>
<translation>Quiz</translation>
</message>
<message>
<source>Anonymous Poll</source>
<translation type="unfinished"></translation>
<translation>Sondaggio anonimo</translation>
</message>
<message>
<source>Poll</source>
<translation type="unfinished"></translation>
<translation>Sondaggio</translation>
</message>
</context>
</TS>

View file

@ -281,10 +281,6 @@
<source>edited</source>
<translation>edytowana</translation>
</message>
<message>
<source>Deleting message</source>
<translation>Usuwanie wiadomości</translation>
</message>
<message>
<source>Delete Message</source>
<translation>Usuń wiadomość</translation>
@ -301,6 +297,10 @@
<source>This chat is empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>

View file

@ -281,10 +281,6 @@
<source>edited</source>
<translation>изменено</translation>
</message>
<message>
<source>Deleting message</source>
<translation>Удаление сообщения</translation>
</message>
<message>
<source>Delete Message</source>
<translation>Удалить</translation>
@ -301,6 +297,10 @@
<source>This chat is empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>

View file

@ -281,10 +281,6 @@
<source>edited</source>
<translation>redigerade</translation>
</message>
<message>
<source>Deleting message</source>
<translation>Tar bort meddelande</translation>
</message>
<message>
<source>Delete Message</source>
<translation>Ta bort meddelandet</translation>
@ -301,6 +297,10 @@
<source>This chat is empty.</source>
<translation>Denna chatt är tom.</translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>

View file

@ -281,10 +281,6 @@
<source>edited</source>
<translation></translation>
</message>
<message>
<source>Deleting message</source>
<translation></translation>
</message>
<message>
<source>Delete Message</source>
<translation></translation>
@ -301,6 +297,10 @@
<source>This chat is empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>

View file

@ -281,10 +281,6 @@
<source>edited</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Deleting message</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Delete Message</source>
<translation type="unfinished"></translation>
@ -301,6 +297,10 @@
<source>This chat is empty.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Message deleted</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>