From 6fbd1ce482891eb9dc7006fa52fa6ac91ad03629 Mon Sep 17 00:00:00 2001 From: l10n daemon script Date: Wed, 16 Dec 2020 08:48:10 +0100 Subject: [PATCH 1/3] GIT_SILENT made messages (after extraction) --- org.kde.neochat.appdata.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/org.kde.neochat.appdata.xml b/org.kde.neochat.appdata.xml index 802018d15..b94d1fddf 100644 --- a/org.kde.neochat.appdata.xml +++ b/org.kde.neochat.appdata.xml @@ -10,6 +10,7 @@ Neochat Neochat Neochat + Neochat Neochat Neochat Neochat @@ -26,6 +27,7 @@ Un client per al Matrix, el protocol de comunicacions descentralitzat A client for matrix, the decentralised communication protocol Un cliente para Matrix, el protocolo de comunicaciones descentralizado + Matrix, deszentralizatutako komunikazio protokolorako bezero bat Un client pour « Matrix », le protocole décentralisé de communications. Kliens a matrixhoz, a decentralizált kommunikációs protokollhoz Un client per matrix, il protocollo di comunicazione decentralizzato @@ -42,6 +44,7 @@

Un client per al Matrix, el protocol de comunicacions descentralitzat.

A client for matrix, the decentralised communication protocol.

Un cliente para Matrix, el protocolo de comunicaciones descentralizado.

+

Matrix, deszentralizatutako komunikazio protokolorako bezero bat.

Un client « Matrix », le protocole décentralisé de communications.

Kliens a matrixhoz, a decentralizált kommunikációs protokollhoz.

Un client per matrix, il protocollo di comunicazione decentralizzato.

@@ -64,6 +67,7 @@ La comunitat KDE The KDE Community La comunidad KDE + KDE komunitatea La communauté de KDE A KDE Közösség La comunità KDE From 6ff31f1714ae82fad012e16fa00a22fc6e93d845 Mon Sep 17 00:00:00 2001 From: l10n daemon script Date: Wed, 16 Dec 2020 10:13:41 +0100 Subject: [PATCH 2/3] SVN_SILENT made messages (.desktop file) - always resolve ours In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop" --- neochat.notifyrc | 4 ++++ org.kde.neochat.desktop | 3 +++ 2 files changed, 7 insertions(+) diff --git a/neochat.notifyrc b/neochat.notifyrc index 69a236e75..91bc613a1 100644 --- a/neochat.notifyrc +++ b/neochat.notifyrc @@ -6,6 +6,7 @@ Name[ca@valencia]=Neochat Name[da]=Neochat Name[en_GB]=Neochat Name[es]=Neochat +Name[eu]=Neochat Name[fr]=Neochat Name[hu]=Neochat Name[it]=Neochat @@ -23,6 +24,7 @@ Comment[ca]=Client de MI per al protocol Matrix Comment[ca@valencia]=Client de MI per al protocol Matrix Comment[en_GB]=IM client for the Matrix protocol Comment[es]=Cliente de MI para el protocolo Matrix +Comment[eu]=Matrix protokolorako bat-bateko mezularitza bezeroa Comment[fr]=Client « IM » pour le protocole « Matrix » Comment[hu]=Azonnali üzenetküldő kliens a Matrix protokollhoz Comment[it]=Client di messaggistica istantanea per il protocollo Matrix @@ -40,6 +42,7 @@ Name[ca]=Missatge nou Name[ca@valencia]=Missatge nou Name[en_GB]=New message Name[es]=Nuevo mensaje +Name[eu]=Mezu berria Name[fr]=Nouveau message Name[hu]=Új üzenet Name[it]=Nuovo messaggio @@ -56,6 +59,7 @@ Comment[ca]=Hi ha un missatge nou Comment[ca@valencia]=Hi ha un missatge nou Comment[en_GB]=There is a new message Comment[es]=Hay un mensaje nuevo +Comment[eu]=Mezu berri bat dago Comment[fr]=Il y a un nouveau message Comment[hu]=Új üzenet érkezett Comment[it]=È presente un nuovo messaggio diff --git a/org.kde.neochat.desktop b/org.kde.neochat.desktop index c20d0d283..acbd806d5 100644 --- a/org.kde.neochat.desktop +++ b/org.kde.neochat.desktop @@ -5,6 +5,7 @@ Name[ca@valencia]=Neochat Name[da]=Neochat Name[en_GB]=Neochat Name[es]=Neochat +Name[eu]=Neochat Name[fr]=Neochat Name[hu]=Neochat Name[it]=Neochat @@ -21,6 +22,7 @@ GenericName[ca]=Client del Matrix GenericName[ca@valencia]=Client del Matrix GenericName[en_GB]=Matrix Client GenericName[es]=Cliente para Matrix +GenericName[eu]=Matrix bezeroa GenericName[fr]=Client « Matrix » GenericName[hu]=Matrix kliens GenericName[it]=Client Matrix @@ -37,6 +39,7 @@ Comment[ca]=Client per al protocol Matrix Comment[ca@valencia]=Client per al protocol Matrix Comment[en_GB]=Client for the Matrix protocol Comment[es]=Cliente para el protocolo Matrix +Comment[eu]=Matrix protokolorako bezeroa Comment[fr]=Client pour le protocole « Matrix » Comment[hu]=Kliens a Matrix protokollhoz Comment[it]=Client per il protocollo Matrix From 80d428ff2c34077db2a0edb7698ca5cb8108041a Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Wed, 16 Dec 2020 22:19:38 +0100 Subject: [PATCH 3/3] Fix sidebar and autocompletion not listing all members This was because of lazy loadingn, now force the active room to be fully loaded. --- src/messageeventmodel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/messageeventmodel.cpp b/src/messageeventmodel.cpp index b72d32959..6637c51b0 100644 --- a/src/messageeventmodel.cpp +++ b/src/messageeventmodel.cpp @@ -88,6 +88,7 @@ void MessageEventModel::setRoom(NeoChatRoom *room) m_currentRoom = room; if (room) { + room->setDisplayed(); lastReadEventId = room->readMarkerEventId(); using namespace Quotient;