Merge branch 'master' into patch-34
This commit is contained in:
commit
54f4ce2dfe
20 changed files with 93 additions and 234 deletions
|
@ -28,6 +28,16 @@ Column {
|
|||
|
||||
property var sponsoredMessageData;
|
||||
|
||||
Connections {
|
||||
target: tdLibWrapper
|
||||
onMessageLinkInfoReceived: {
|
||||
if (sponsoredMessageData.link.url === url) {
|
||||
messageOverlayLoader.overlayMessage = messageLinkInfo.message;
|
||||
messageOverlayLoader.active = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Component.onCompleted: {
|
||||
if (sponsoredMessageData) {
|
||||
if (typeof sponsoredMessageData.link === "undefined") {
|
||||
|
@ -35,10 +45,10 @@ Column {
|
|||
sponsoredMessageButton.advertisesChannel = true;
|
||||
} else if (sponsoredMessageData.link['@type'] === "internalLinkTypeMessage") {
|
||||
sponsoredMessageButton.text = qsTr("Go to Message");
|
||||
sponsoredMessageButton.enabled = false;
|
||||
sponsoredMessageButton.advertisesMessage = true;
|
||||
} else {
|
||||
sponsoredMessageButton.text = qsTr("Start Bot");
|
||||
sponsoredMessageButton.enabled = false;
|
||||
sponsoredMessageButton.advertisesBot = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -46,12 +56,21 @@ Column {
|
|||
Button {
|
||||
id: sponsoredMessageButton
|
||||
property bool advertisesChannel: false;
|
||||
property bool advertisesMessage: false;
|
||||
property bool advertisesBot: false;
|
||||
anchors {
|
||||
horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
onClicked: {
|
||||
if (advertisesChannel) {
|
||||
tdLibWrapper.createSupergroupChat(sponsoredMessageData.sponsor_chat_id, "openDirectly");
|
||||
tdLibWrapper.createSupergroupChat(tdLibWrapper.getChat(sponsoredMessageData.sponsor_chat_id).type.supergroup_id, "openDirectly");
|
||||
}
|
||||
if (advertisesMessage) {
|
||||
tdLibWrapper.getMessageLinkInfo(sponsoredMessageData.link.url);
|
||||
}
|
||||
if (advertisesBot) {
|
||||
tdLibWrapper.createPrivateChat(tdLibWrapper.getUserInformationByName(sponsoredMessageData.link.bot_username).id, "openAndSendStartToBot:" + sponsoredMessageData.link.start_parameter);
|
||||
//tdLibWrapper.sendBotStartMessage(tdLibWrapper.getUserInformationByName(sponsoredMessageData.link.bot_username).id, sponsoredMessageData.sponsor_chat_id, sponsoredMessageData.link.start_parameter, "");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,9 +47,9 @@ function getMessageText(message, simple, currentUserId, ignoreEntities) {
|
|||
return enhanceMessageText(message.content.text, ignoreEntities);
|
||||
}
|
||||
case 'messageSticker':
|
||||
return simple ? qsTr("Sticker: %1").arg(message.content.sticker.emoji) : "";
|
||||
return simple ? message.content.sticker.emoji : ""
|
||||
case 'messageAnimatedEmoji':
|
||||
return simple ? qsTr("Animated Emoji: %1").arg(message.content.animated_emoji.sticker.emoji) : "";
|
||||
return simple ? message.content.animated_emoji.sticker.emoji : ""
|
||||
case 'messagePhoto':
|
||||
if (message.content.caption.text !== "") {
|
||||
return simple ? qsTr("Picture: %1").arg(message.content.caption.text) : enhanceMessageText(message.content.caption, ignoreEntities)
|
||||
|
|
|
@ -37,6 +37,30 @@
|
|||
#define DEBUG_MODULE FernschreiberUtils
|
||||
#include "debuglog.h"
|
||||
|
||||
namespace {
|
||||
const QString _TYPE("@type");
|
||||
const QString TEXT("text");
|
||||
const QString EMOJI("emoji");
|
||||
const QString ANIMATED_EMOJI("animated_emoji");
|
||||
const QString STICKER("sticker");
|
||||
const QString USER_ID("user_id");
|
||||
|
||||
const QString MESSAGE_SENDER_TYPE_USER("messageSenderUser");
|
||||
|
||||
const QString MESSAGE_CONTENT_TYPE_TEXT("messageText");
|
||||
const QString MESSAGE_CONTENT_TYPE_STICKER("messageSticker");
|
||||
const QString MESSAGE_CONTENT_TYPE_ANIMATED_EMOJI("messageAnimatedEmoji");
|
||||
const QString MESSAGE_CONTENT_TYPE_PHOTO("messagePhoto");
|
||||
const QString MESSAGE_CONTENT_TYPE_VIDEO("messageVideo");
|
||||
const QString MESSAGE_CONTENT_TYPE_VIDEO_NOTE("messageVideoNote");
|
||||
const QString MESSAGE_CONTENT_TYPE_ANIMATION("messageAnimation");
|
||||
const QString MESSAGE_CONTENT_TYPE_AUDIO("messageAudio");
|
||||
const QString MESSAGE_CONTENT_TYPE_VOICE_NOTE("messageVoiceNote");
|
||||
const QString MESSAGE_CONTENT_TYPE_DOCUMENT("messageDocument");
|
||||
const QString MESSAGE_CONTENT_TYPE_LOCATION("messageLocation");
|
||||
const QString MESSAGE_CONTENT_TYPE_VENUE("messageVenue");
|
||||
}
|
||||
|
||||
FernschreiberUtils::FernschreiberUtils(QObject *parent) : QObject(parent)
|
||||
{
|
||||
LOG("Initializing audio recorder...");
|
||||
|
@ -83,44 +107,45 @@ QString FernschreiberUtils::getMessageShortText(TDLibWrapper *tdLibWrapper, cons
|
|||
return QString();
|
||||
}
|
||||
|
||||
const bool myself = !isChannel && (messageSender.value("@type").toString() == "messageSenderUser" && messageSender.value("user_id").toLongLong() == currentUserId);
|
||||
const QString contentType(messageContent.value(_TYPE).toString());
|
||||
const QString messageSenderType(messageSender.value(_TYPE).toString());
|
||||
const qlonglong messageSenderUserId = messageSender.value(USER_ID).toLongLong();
|
||||
const bool myself = !isChannel && (messageSenderType == MESSAGE_SENDER_TYPE_USER && messageSenderUserId == currentUserId);
|
||||
|
||||
QString contentType = messageContent.value("@type").toString();
|
||||
|
||||
if (contentType == "messageText") {
|
||||
return messageContent.value("text").toMap().value("text").toString();
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_TEXT) {
|
||||
return messageContent.value(TEXT).toMap().value(TEXT).toString();
|
||||
}
|
||||
if (contentType == "messageSticker") {
|
||||
return tr("Sticker: %1").arg(messageContent.value("sticker").toMap().value("emoji").toString());
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_STICKER) {
|
||||
return messageContent.value(STICKER).toMap().value(EMOJI).toString();
|
||||
}
|
||||
if (contentType == "messageAnimatedEmoji") {
|
||||
return tr("Animated Emoji: %1").arg(messageContent.value("animated_emoji").toMap().value("sticker").toMap().value("emoji").toString());
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_ANIMATED_EMOJI) {
|
||||
return messageContent.value(ANIMATED_EMOJI).toMap().value(STICKER).toMap().value(EMOJI).toString();
|
||||
}
|
||||
if (contentType == "messagePhoto") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_PHOTO) {
|
||||
return myself ? tr("sent a picture", "myself") : tr("sent a picture");
|
||||
}
|
||||
if (contentType == "messageVideo") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_VIDEO) {
|
||||
return myself ? tr("sent a video", "myself") : tr("sent a video");
|
||||
}
|
||||
if (contentType == "messageVideoNote") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_VIDEO_NOTE) {
|
||||
return myself ? tr("sent a video note", "myself") : tr("sent a video note");
|
||||
}
|
||||
if (contentType == "messageAnimation") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_ANIMATION) {
|
||||
return myself ? tr("sent an animation", "myself") : tr("sent an animation");
|
||||
}
|
||||
if (contentType == "messageAudio") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_AUDIO) {
|
||||
return myself ? tr("sent an audio", "myself") : tr("sent an audio");
|
||||
}
|
||||
if (contentType == "messageVoiceNote") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_VOICE_NOTE) {
|
||||
return myself ? tr("sent a voice note", "myself") : tr("sent a voice note");
|
||||
}
|
||||
if (contentType == "messageDocument") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_DOCUMENT) {
|
||||
return myself ? tr("sent a document", "myself") : tr("sent a document");
|
||||
}
|
||||
if (contentType == "messageLocation") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_LOCATION) {
|
||||
return myself ? tr("sent a location", "myself") : tr("sent a location");
|
||||
}
|
||||
if (contentType == "messageVenue") {
|
||||
if (contentType == MESSAGE_CONTENT_TYPE_VENUE) {
|
||||
return myself ? tr("sent a venue", "myself") : tr("sent a venue");
|
||||
}
|
||||
if (contentType == "messageContactRegistered") {
|
||||
|
@ -130,7 +155,7 @@ QString FernschreiberUtils::getMessageShortText(TDLibWrapper *tdLibWrapper, cons
|
|||
return myself ? tr("joined this chat", "myself") : tr("joined this chat");
|
||||
}
|
||||
if (contentType == "messageChatAddMembers") {
|
||||
if (messageSender.value("@type").toString() == "messageSenderUser" && messageSender.value("user_id").toLongLong() == messageContent.value("member_user_ids").toList().at(0).toLongLong()) {
|
||||
if (messageSenderType == MESSAGE_SENDER_TYPE_USER && messageSenderUserId == messageContent.value("member_user_ids").toList().at(0).toLongLong()) {
|
||||
return myself ? tr("were added to this chat", "myself") : tr("was added to this chat");
|
||||
} else {
|
||||
QVariantList memberUserIds = messageContent.value("member_user_ids").toList();
|
||||
|
@ -145,7 +170,7 @@ QString FernschreiberUtils::getMessageShortText(TDLibWrapper *tdLibWrapper, cons
|
|||
}
|
||||
}
|
||||
if (contentType == "messageChatDeleteMember") {
|
||||
if (messageSender.value("@type").toString() == "messageSenderUser" && messageSender.value("user_id").toLongLong() == messageContent.value("user_id").toLongLong()) {
|
||||
if (messageSenderType == MESSAGE_SENDER_TYPE_USER && messageSenderUserId == messageContent.value("user_id").toLongLong()) {
|
||||
return myself ? tr("left this chat", "myself") : tr("left this chat");
|
||||
} else {
|
||||
return myself ? tr("have removed %1 from the chat", "myself").arg(getUserName(tdLibWrapper->getUserInformation(messageContent.value("user_id").toString()))) : tr("has removed %1 from the chat").arg(getUserName(tdLibWrapper->getUserInformation(messageContent.value("user_id").toString())));
|
||||
|
@ -176,7 +201,7 @@ QString FernschreiberUtils::getMessageShortText(TDLibWrapper *tdLibWrapper, cons
|
|||
return myself ? tr("upgraded this group to a supergroup", "myself") : tr("upgraded this group to a supergroup");
|
||||
}
|
||||
if (contentType == "messageCustomServiceAction") {
|
||||
return messageContent.value("text").toString();
|
||||
return messageContent.value(TEXT).toString();
|
||||
}
|
||||
if (contentType == "messagePinMessage") {
|
||||
return myself ? tr("changed the pinned message", "myself") : tr("changed the pinned message");
|
||||
|
|
|
@ -104,6 +104,7 @@ TDLibReceiver::TDLibReceiver(void *tdLibClient, QObject *parent) : QThread(paren
|
|||
handlers.insert("sponsoredMessages", &TDLibReceiver::processSponsoredMessages);
|
||||
handlers.insert("updateNewMessage", &TDLibReceiver::processUpdateNewMessage);
|
||||
handlers.insert("message", &TDLibReceiver::processMessage);
|
||||
handlers.insert("messageLinkInfo", &TDLibReceiver::processMessageLinkInfo);
|
||||
handlers.insert("updateMessageSendSucceeded", &TDLibReceiver::processMessageSendSucceeded);
|
||||
handlers.insert("updateActiveNotifications", &TDLibReceiver::processUpdateActiveNotifications);
|
||||
handlers.insert("updateNotificationGroup", &TDLibReceiver::processUpdateNotificationGroup);
|
||||
|
@ -380,6 +381,13 @@ void TDLibReceiver::processMessage(const QVariantMap &receivedInformation)
|
|||
emit messageInformation(chatId, messageId, receivedInformation);
|
||||
}
|
||||
|
||||
void TDLibReceiver::processMessageLinkInfo(const QVariantMap &receivedInformation)
|
||||
{
|
||||
const QString url = receivedInformation.value(EXTRA).toString();
|
||||
LOG("Received message link info " << url);
|
||||
emit messageLinkInfoReceived(url, receivedInformation);
|
||||
}
|
||||
|
||||
void TDLibReceiver::processMessageSendSucceeded(const QVariantMap &receivedInformation)
|
||||
{
|
||||
const qlonglong oldMessageId = receivedInformation.value(OLD_MESSAGE_ID).toLongLong();
|
||||
|
|
|
@ -56,6 +56,7 @@ signals:
|
|||
void superGroupUpdated(qlonglong groupId, const QVariantMap &groupInformation);
|
||||
void chatOnlineMemberCountUpdated(const QString &chatId, int onlineMemberCount);
|
||||
void messagesReceived(const QVariantList &messages, int totalCount);
|
||||
void messageLinkInfoReceived(const QString &url, const QVariantMap &messageLinkInfo);
|
||||
void sponsoredMessagesReceived(qlonglong chatId, const QVariantList &messages);
|
||||
void newMessageReceived(qlonglong chatId, const QVariantMap &message);
|
||||
void messageInformation(qlonglong chatId, qlonglong messageId, const QVariantMap &message);
|
||||
|
@ -134,6 +135,7 @@ private:
|
|||
void processSponsoredMessages(const QVariantMap &receivedInformation);
|
||||
void processUpdateNewMessage(const QVariantMap &receivedInformation);
|
||||
void processMessage(const QVariantMap &receivedInformation);
|
||||
void processMessageLinkInfo(const QVariantMap &receivedInformation);
|
||||
void processMessageSendSucceeded(const QVariantMap &receivedInformation);
|
||||
void processUpdateActiveNotifications(const QVariantMap &receivedInformation);
|
||||
void processUpdateNotificationGroup(const QVariantMap &receivedInformation);
|
||||
|
|
|
@ -119,6 +119,7 @@ void TDLibWrapper::initializeTDLibReciever() {
|
|||
connect(this->tdLibReceiver, SIGNAL(chatOnlineMemberCountUpdated(QString, int)), this, SIGNAL(chatOnlineMemberCountUpdated(QString, int)));
|
||||
connect(this->tdLibReceiver, SIGNAL(messagesReceived(QVariantList, int)), this, SIGNAL(messagesReceived(QVariantList, int)));
|
||||
connect(this->tdLibReceiver, SIGNAL(sponsoredMessagesReceived(qlonglong, QVariantList)), this, SLOT(handleSponsoredMess(qlonglong, QVariantList)));
|
||||
connect(this->tdLibReceiver, SIGNAL(messageLinkInfoReceived(QString, QVariantMap)), this, SIGNAL(messageLinkInfoReceived(QString, QVariantMap)));
|
||||
connect(this->tdLibReceiver, SIGNAL(newMessageReceived(qlonglong, QVariantMap)), this, SIGNAL(newMessageReceived(qlonglong, QVariantMap)));
|
||||
connect(this->tdLibReceiver, SIGNAL(messageInformation(qlonglong, qlonglong, QVariantMap)), this, SLOT(handleMessageInformation(qlonglong, qlonglong, QVariantMap)));
|
||||
connect(this->tdLibReceiver, SIGNAL(messageSendSucceeded(qlonglong, qlonglong, QVariantMap)), this, SIGNAL(messageSendSucceeded(qlonglong, qlonglong, QVariantMap)));
|
||||
|
@ -646,6 +647,16 @@ void TDLibWrapper::getMessage(qlonglong chatId, qlonglong messageId)
|
|||
this->sendRequest(requestObject);
|
||||
}
|
||||
|
||||
void TDLibWrapper::getMessageLinkInfo(const QString &url)
|
||||
{
|
||||
LOG("Retrieving message link info" << url);
|
||||
QVariantMap requestObject;
|
||||
requestObject.insert(_TYPE, "getMessageLinkInfo");
|
||||
requestObject.insert("url", url);
|
||||
requestObject.insert(_EXTRA, url);
|
||||
this->sendRequest(requestObject);
|
||||
}
|
||||
|
||||
void TDLibWrapper::getCallbackQueryAnswer(const QString &chatId, const QString &messageId, const QVariantMap &payload)
|
||||
{
|
||||
LOG("Getting Callback Query Answer" << chatId << messageId);
|
||||
|
|
|
@ -171,6 +171,7 @@ public:
|
|||
Q_INVOKABLE void sendPollMessage(const QString &chatId, const QString &question, const QVariantList &options, bool anonymous, int correctOption, bool multiple, const QString &explanation, const QString &replyToMessageId = "0");
|
||||
Q_INVOKABLE void forwardMessages(const QString &chatId, const QString &fromChatId, const QVariantList &messageIds, bool sendCopy, bool removeCaption);
|
||||
Q_INVOKABLE void getMessage(qlonglong chatId, qlonglong messageId);
|
||||
Q_INVOKABLE void getMessageLinkInfo(const QString &url);
|
||||
Q_INVOKABLE void getCallbackQueryAnswer(const QString &chatId, const QString &messageId, const QVariantMap &payload);
|
||||
Q_INVOKABLE void getChatPinnedMessage(qlonglong chatId);
|
||||
Q_INVOKABLE void getChatSponsoredMessages(qlonglong chatId);
|
||||
|
@ -263,6 +264,7 @@ signals:
|
|||
void chatOnlineMemberCountUpdated(const QString &chatId, int onlineMemberCount);
|
||||
void messagesReceived(const QVariantList &messages, int totalCount);
|
||||
void sponsoredMessagesReceived(qlonglong chatId, const QVariantList &messages);
|
||||
void messageLinkInfoReceived(const QString &url, const QVariantMap &messageLinkInfo);
|
||||
void newMessageReceived(qlonglong chatId, const QVariantMap &message);
|
||||
void copyToDownloadsSuccessful(const QString &fileName, const QString &filePath);
|
||||
void copyToDownloadsError(const QString &fileName, const QString &filePath);
|
||||
|
|
|
@ -730,10 +730,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>hat diesen Chat verlassen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Sticker: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -934,10 +930,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>hat eine Videonachricht geschickt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Animiertes Emoji: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1893,10 +1885,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Bild: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Sticker: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Audio: %1</translation>
|
||||
|
@ -2290,9 +2278,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>hat ein Spiel gesendet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Animiertes Emoji: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -732,10 +732,6 @@ messages</numerusform>
|
|||
<source>left this chat</source>
|
||||
<translation>left this chat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Sticker: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -936,10 +932,6 @@ messages</numerusform>
|
|||
<source>sent a video note</source>
|
||||
<translation>sent a video note</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Animated Emoji: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1895,10 +1887,6 @@ messages</numerusform>
|
|||
<source>Picture: %1</source>
|
||||
<translation>Picture: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Sticker: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Audio: %1</translation>
|
||||
|
@ -2292,9 +2280,5 @@ messages</numerusform>
|
|||
<source>sent a game</source>
|
||||
<translation>sent a game</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Animated Emoji: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -730,10 +730,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>dejó esta conversación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Pegatina: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -934,10 +930,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>envió una nota de video</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Emoticono animado: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1893,10 +1885,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Imagen: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Pegatina: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Audio: %1</translation>
|
||||
|
@ -2290,9 +2278,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>envió un juego</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Emoticono animado: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -646,10 +646,6 @@
|
|||
</context>
|
||||
<context>
|
||||
<name>FernschreiberUtils</name>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Tarra: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a picture</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -935,10 +931,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>lähetti videoviestin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1894,10 +1886,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Kuva: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Tarra: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Äänite: %1</translation>
|
||||
|
@ -2291,9 +2279,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>lähetti pelin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -730,10 +730,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>a quitté cette conversation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Autocollant : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -934,10 +930,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>a envoyé une note vidéo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1893,10 +1885,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Image : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Autocollant : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Audio : %1</translation>
|
||||
|
@ -2290,9 +2278,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>a envoyé un jeu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -718,10 +718,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation type="unfinished">kilépett a csevegésből</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation type="unfinished">Matrica: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -920,10 +916,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1866,10 +1858,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Kép: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Matrica: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Audió: %1</translation>
|
||||
|
@ -2262,9 +2250,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -730,10 +730,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>ha lasciato questa chat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Sticker: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -934,10 +930,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>ha inviato un videomessaggio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1893,10 +1885,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Foto: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Sticker: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Audio: %1</translation>
|
||||
|
@ -2290,9 +2278,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>ha inviato un gioco</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -742,10 +742,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>opuścił ten czat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Naklejka: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -948,10 +944,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>wysłał notatkę video</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Animowane Emoji: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1920,10 +1912,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Obraz: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Naklejka: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Dźwięk: %1</translation>
|
||||
|
@ -2318,9 +2306,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>wysłał grę</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Animowane Emoji: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -745,10 +745,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>покунул(а) чат</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Стикер: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -951,10 +947,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>отправил(а) видео заметку</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1923,10 +1915,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Картинка: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Стикер: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Аудио: %1</translation>
|
||||
|
@ -2321,9 +2309,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>отправил(а) игру</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -742,10 +742,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>opustil tento čet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Nálepka: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -948,10 +944,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>poslal video-poznámku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1920,10 +1912,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Obrázok: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Nálepka: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Zvuk: %1</translation>
|
||||
|
@ -2318,9 +2306,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>poslal hru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -730,10 +730,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>lämnade denna chatt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Dekal: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -934,10 +930,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>skickade ett videomeddelande</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Animerad emoji: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1893,10 +1885,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Bild: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Dekal: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Ljud: %1</translation>
|
||||
|
@ -2290,9 +2278,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>skickade ett spel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation>Animerad emoji: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -719,10 +719,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>离开此对话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>表情贴图: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -921,10 +917,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation>发送视频消息</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1867,10 +1859,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>图片: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>表情贴图: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>音频: %1</translation>
|
||||
|
@ -2263,9 +2251,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation>发送游戏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -730,10 +730,6 @@
|
|||
<source>left this chat</source>
|
||||
<translation>left this chat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Sticker: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sent a voice note</source>
|
||||
<comment>myself</comment>
|
||||
|
@ -934,10 +930,6 @@
|
|||
<source>sent a video note</source>
|
||||
<translation type="unfinished">sent a video note</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImagePage</name>
|
||||
|
@ -1893,10 +1885,6 @@
|
|||
<source>Picture: %1</source>
|
||||
<translation>Picture: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sticker: %1</source>
|
||||
<translation>Sticker: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Audio: %1</source>
|
||||
<translation>Audio: %1</translation>
|
||||
|
@ -2290,9 +2278,5 @@
|
|||
<source>sent a game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Animated Emoji: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
Loading…
Reference in a new issue