From 01915360b4edc4e4c82d2f79457859c649b7b1d2 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Tue, 27 Dec 2022 16:15:49 +0100 Subject: [PATCH 01/13] Fix state reset command --- src/Cache.cpp | 8 +++++++- src/Cache_p.h | 4 +++- src/timeline/TimelineModel.cpp | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/Cache.cpp b/src/Cache.cpp index 5d87f9f2..41b84e11 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp @@ -1669,7 +1669,7 @@ Cache::calculateRoomReadStatus(const std::string &room_id) } void -Cache::updateState(const std::string &room, const mtx::responses::StateEvents &state) +Cache::updateState(const std::string &room, const mtx::responses::StateEvents &state, bool wipe) { auto txn = lmdb::txn::begin(env_); auto statesdb = getStatesDb(txn, room); @@ -1677,6 +1677,12 @@ Cache::updateState(const std::string &room, const mtx::responses::StateEvents &s auto membersdb = getMembersDb(txn, room); auto eventsDb = getEventsDb(txn, room); + if (wipe) { + membersdb.drop(txn); + statesdb.drop(txn); + stateskeydb.drop(txn); + } + saveStateEvents(txn, statesdb, stateskeydb, membersdb, eventsDb, room, state.events); RoomInfo updatedInfo; diff --git a/src/Cache_p.h b/src/Cache_p.h index 6712e48e..40ce6e5c 100644 --- a/src/Cache_p.h +++ b/src/Cache_p.h @@ -118,7 +118,9 @@ public: std::size_t len = 30); size_t memberCount(const std::string &room_id); - void updateState(const std::string &room, const mtx::responses::StateEvents &state); + void updateState(const std::string &room, + const mtx::responses::StateEvents &state, + bool wipe = false); void saveState(const mtx::responses::Sync &res); bool isInitialized(); bool isDatabaseReady() { return databaseReady_ && isInitialized(); } diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index 62dbdae6..46f8e57c 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -496,7 +496,7 @@ TimelineModel::TimelineModel(TimelineViewManager *manager, QString room_id, QObj showEventTimer.callOnTimeout(this, &TimelineModel::scrollTimerEvent); connect(this, &TimelineModel::newState, this, [this](mtx::responses::StateEvents events_) { - cache::client()->updateState(room_id_.toStdString(), events_); + cache::client()->updateState(room_id_.toStdString(), events_, true); this->syncState({std::move(events_.events)}); }); } From 2577c93bb684ec9e2f714ee14d4ee1f30cee7c39 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Tue, 27 Dec 2022 16:19:59 +0100 Subject: [PATCH 02/13] Revert storing members in statesdb for now --- src/Cache_p.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Cache_p.h b/src/Cache_p.h index 40ce6e5c..7b3bf8b0 100644 --- a/src/Cache_p.h +++ b/src/Cache_p.h @@ -410,8 +410,10 @@ private: break; } } - // fallthrough to also store it as state event to eventually migrate away from a - // separate members db. + + // BUG(Nico): Ideally we would fall through and store this in the database, but it seems + // to currently corrupt the db sometimes, so... let's find that bug first! + return; } else if (std::holds_alternative>(event)) { setEncryptedRoom(txn, room_id); return; From 5bf315687ae93d00ba62c8b14cc95c1f6b2a10f5 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 28 Dec 2022 17:39:03 +0100 Subject: [PATCH 03/13] Update english translation properly --- resources/langs/nheko_ca.ts | 20 +++- resources/langs/nheko_cs.ts | 20 +++- resources/langs/nheko_de.ts | 20 +++- resources/langs/nheko_el.ts | 20 +++- resources/langs/nheko_en.ts | 188 ++++++++++++++++--------------- resources/langs/nheko_eo.ts | 20 +++- resources/langs/nheko_es.ts | 20 +++- resources/langs/nheko_et.ts | 20 +++- resources/langs/nheko_fi.ts | 20 +++- resources/langs/nheko_fr.ts | 20 +++- resources/langs/nheko_hu.ts | 20 +++- resources/langs/nheko_id.ts | 20 +++- resources/langs/nheko_ie.ts | 20 +++- resources/langs/nheko_it.ts | 20 +++- resources/langs/nheko_ja.ts | 20 +++- resources/langs/nheko_ml.ts | 20 +++- resources/langs/nheko_nl.ts | 20 +++- resources/langs/nheko_pl.ts | 20 +++- resources/langs/nheko_pt_BR.ts | 20 +++- resources/langs/nheko_pt_PT.ts | 20 +++- resources/langs/nheko_ro.ts | 20 +++- resources/langs/nheko_ru.ts | 20 +++- resources/langs/nheko_si.ts | 20 +++- resources/langs/nheko_sr_Latn.ts | 20 +++- resources/langs/nheko_sv.ts | 20 +++- resources/langs/nheko_vi.ts | 20 +++- resources/langs/nheko_zh_CN.ts | 20 +++- 27 files changed, 490 insertions(+), 218 deletions(-) diff --git a/resources/langs/nheko_ca.ts b/resources/langs/nheko_ca.ts index 9fa2c3d7..1cbc9838 100644 --- a/resources/langs/nheko_ca.ts +++ b/resources/langs/nheko_ca.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3878,7 +3878,7 @@ Reason: %4 - + No preview available @@ -3916,7 +3916,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_cs.ts b/resources/langs/nheko_cs.ts index 3c6bf616..5c84d910 100644 --- a/resources/langs/nheko_cs.ts +++ b/resources/langs/nheko_cs.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2677,7 +2677,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3251,7 +3251,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3887,7 +3887,7 @@ Reason: %4 - + No preview available @@ -3926,7 +3926,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_de.ts b/resources/langs/nheko_de.ts index 6f86d345..fb3ebcae 100644 --- a/resources/langs/nheko_de.ts +++ b/resources/langs/nheko_de.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 und %n anderer Teilnehmer @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored keine Version gespeichert @@ -3248,7 +3248,7 @@ Die Verschlüsselung des Raumes kann nach Aktivierung nicht mehr deaktiviert wer SecretStorage - + Failed to connect to secret storage Verbindung zum kryptografischen Speicher fehlgeschlagen @@ -3882,7 +3882,7 @@ Grund: %4 Kein Raum geöffnet - + No preview available Keine Vorschau verfügbar @@ -3920,7 +3920,17 @@ Grund: %4 Einladung ablehnen - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Zurück zur Raumliste diff --git a/resources/langs/nheko_el.ts b/resources/langs/nheko_el.ts index bda4af75..fd929f16 100644 --- a/resources/langs/nheko_el.ts +++ b/resources/langs/nheko_el.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3878,7 +3878,7 @@ Reason: %4 - + No preview available @@ -3916,7 +3916,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_en.ts b/resources/langs/nheko_en.ts index b919c960..1ffa6022 100644 --- a/resources/langs/nheko_en.ts +++ b/resources/langs/nheko_en.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 and %n other @@ -229,14 +229,16 @@ Confirm logout - + Confirm logout Because of the following reason Nheko wants to drop you to the login page: %1 If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. @@ -430,298 +432,298 @@ You may optionally provide a reason for others to accept your knock: /me <message> - + /me <message> /react <text> - + /react <text> /join (!roomid|#alias) [reason] - + /join (!roomid|#alias) [reason] /knock (!roomid|#alias) [reason] - + /knock (!roomid|#alias) [reason] /part [reason] - + /part [reason] /leave [reason] - + /leave [reason] /invite @userid [reason] - + /invite @userid [reason] /kick @userid [reason] - + /kick @userid [reason] /ban @userid [reason] - + /ban @userid [reason] /unban @userid [reason] - + /unban @userid [reason] /redact ($eventid|@userid) - + /redact ($eventid|@userid) /roomnick <displayname> - + /roomnick <displayname> /shrug [message] - + /shrug [message] /fliptable - + /fliptable /unfliptable - + /unfliptable /sovietflip - + /sovietflip /clear-timeline - + /clear-timeline /reset-state - + /reset-state /rotate-megolm-session - + /rotate-megolm-session /md [message] - + /md [message] /plain [message] - + /plain [message] /rainbow [message] - + /rainbow [message] /rainbowme [message] - + /rainbowme [message] /notice [message] - + /notice [message] /rainbownotice [message] - + /rainbownotice [message] /confetti [message] - + /confetti [message] /rainbowconfetti [message] - + /rainbowconfetti [message] /goto ($eventid|message index|matrix:r/room/e/event) - + /goto ($eventid|message index|matrix:r/room/e/event) /converttodm - + /converttodm /converttoroom - + /converttoroom Send a message expressing an action. - + Send a message expressing an action. Send <text> as a reaction when you’re replying to a message. - + Send <text> as a reaction when you’re replying to a message. Join a room. Reason is optional. - + Join a room. Reason is optional. Ask to join a room. Reason is optional. - + Ask to join a room. Reason is optional. Leave a room. Reason is optional. - + Leave a room. Reason is optional. Invite a user into the current room. Reason is optional. - + Invite a user into the current room. Reason is optional. Kick a user from the current room. Reason is optional. - + Kick a user from the current room. Reason is optional. Ban a user from the current room. Reason is optional. - + Ban a user from the current room. Reason is optional. Unban a user in the current room. Reason is optional. - + Unban a user in the current room. Reason is optional. Redact an event or all locally cached messages of a user. - + Redact an event or all locally cached messages of a user. Change your displayname in this room. - + Change your displayname in this room. ¯\_(ツ)_/¯ with an optional message. - + ¯\_(ツ)_/¯ with an optional message. (╯°□°)╯︵ ┻━┻ - + (╯°□°)╯︵ ┻━┻ ┯━┯╭( º _ º╭) - + ┯━┯╭( º _ º╭) ノ┬─┬ノ ︵ ( \o°o)\ - + ノ┬─┬ノ ︵ ( \o°o)\ Clear the currently cached messages in this room. - + Clear the currently cached messages in this room. Refetch the state in this room. - + Refetch the state in this room. Rotate the current symmetric encryption key. - + Rotate the current symmetric encryption key. Send a markdown formatted message (ignoring the global setting). - + Send a markdown formatted message (ignoring the global setting). Send an unformatted message (ignoring the global setting). - + Send an unformatted message (ignoring the global setting). Send a message in rainbow colors. - + Send a message in rainbow colors. Send /me in rainbow colors. - + Send /me in rainbow colors. Send a bot message. - + Send a bot message. Send a bot message in rainbow colors. - + Send a bot message in rainbow colors. Send a message with confetti. - + Send a message with confetti. Send a message in rainbow colors with confetti. - + Send a message in rainbow colors with confetti. Go to this event or link. - + Go to this event or link. Convert this room to a direct chat. - + Convert this room to a direct chat. Convert this direct chat into a room. - + Convert this direct chat into a room. @@ -1735,12 +1737,12 @@ Example: https://server.my:8787 %1 rejected the call. - + %1 rejected the call. %1 select answer - + %1 select answer @@ -1761,12 +1763,12 @@ Example: https://server.my:8787 This room was replaced for the following reason: %1 - + This room was replaced for the following reason: %1 Go to replacement room - + Go to replacement room @@ -1794,7 +1796,7 @@ Example: https://server.my:8787 Already on a call - + Already on a call @@ -2424,7 +2426,7 @@ Example: https://server.my:8787 Reject a call - + Reject a call @@ -2488,17 +2490,17 @@ Example: https://server.my:8787 Respond - + Respond Send - Send + Send Write a message... - Write a message… + Write a message… @@ -2680,7 +2682,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored no version stored @@ -2705,7 +2707,7 @@ Example: https://server.my:8787 Room settings - + Room settings @@ -3253,7 +3255,7 @@ Please take note that it can't be disabled afterwards. SecretStorage - + Failed to connect to secret storage Failed to connect to secret storage @@ -3887,7 +3889,7 @@ Reason: %4 No room open - + No preview available No preview available @@ -3925,7 +3927,17 @@ Reason: %4 decline invite - + + Hide invite reason + Hide invite reason + + + + Show invite reason + Show invite reason + + + Back to room list Back to room list @@ -3975,7 +3987,7 @@ Reason: %4 Search this room - + Search this room @@ -4010,7 +4022,7 @@ Reason: %4 Enter search query - + Enter search query @@ -4235,7 +4247,7 @@ Reason: %4 Use shift+enter to send and enter to start a new line - + Use shift+enter to send and enter to start a new line @@ -4315,12 +4327,12 @@ Reason: %4 Decrypt notifications - + Decrypt notifications Display fancy effects such as confetti - + Display fancy effects such as confetti @@ -4561,7 +4573,7 @@ When disabled, all messages are sent as a plain text. Invert the behavior of the enter key in the text input, making it send the message when shift+enter is pressed and starting a new line when enter is pressed. - + Invert the behavior of the enter key in the text input, making it send the message when shift+enter is pressed and starting a new line when enter is pressed. @@ -4605,7 +4617,7 @@ OFF - square, ON - circle. Decrypt messages shown in notifications for encrypted chats. - + Decrypt messages shown in notifications for encrypted chats. @@ -4615,7 +4627,7 @@ OFF - square, ON - circle. Some messages can be sent with fancy effects. For example, messages sent with '/confetti' will show confetti on screen. - + Some messages can be sent with fancy effects. For example, messages sent with '/confetti' will show confetti on screen. @@ -5035,12 +5047,12 @@ This setting will take effect upon restart. You sent some confetti - + You sent some confetti %1 sent some confetti - + %1 sent some confetti @@ -5085,12 +5097,12 @@ This setting will take effect upon restart. You rejected a call - + You rejected a call %1 rejected a call - + %1 rejected a call diff --git a/resources/langs/nheko_eo.ts b/resources/langs/nheko_eo.ts index 30e35719..1a338c46 100644 --- a/resources/langs/nheko_eo.ts +++ b/resources/langs/nheko_eo.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2677,7 +2677,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored neniu versio konservita @@ -3249,7 +3249,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage Malsukcesis konektiĝi al sekreta deponejo @@ -3885,7 +3885,7 @@ Kialo: %4 Neniu ĉambro estas malfermita - + No preview available Neniu antaŭrigardo disponeblas @@ -3923,7 +3923,17 @@ Kialo: %4 rifuzi inviton - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Reen al listo de ĉambroj diff --git a/resources/langs/nheko_es.ts b/resources/langs/nheko_es.ts index 404d4108..a2c56a3b 100644 --- a/resources/langs/nheko_es.ts +++ b/resources/langs/nheko_es.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 y %n otro @@ -2677,7 +2677,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored ninguna version guardada @@ -3250,7 +3250,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage Hubo en error al conectarse al almacenamiento secreto @@ -3884,7 +3884,7 @@ Razón: %4 Ninguna sala abierta - + No preview available Vista previa no disponible @@ -3922,7 +3922,17 @@ Razón: %4 rechazar invitación - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list De vuelta a la lista de salas diff --git a/resources/langs/nheko_et.ts b/resources/langs/nheko_et.ts index 0b78496c..93906143 100644 --- a/resources/langs/nheko_et.ts +++ b/resources/langs/nheko_et.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 ja veel %n teine kasutaja @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored salvestatud versiooni ei leidu @@ -3248,7 +3248,7 @@ Palun arvesta, et krüptimist ei saa hiljem enam välja lülitada. SecretStorage - + Failed to connect to secret storage Ühenduse loomine võtmehoidlaga ei õnnestunud @@ -3882,7 +3882,7 @@ Põhjus: %4 Ühtegi jututuba pole avatud - + No preview available Eelvaade pole saadaval @@ -3920,7 +3920,17 @@ Põhjus: %4 lükka kutse tagasi - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Tagasi jututubade loendisse diff --git a/resources/langs/nheko_fi.ts b/resources/langs/nheko_fi.ts index df590bce..f375d2c7 100644 --- a/resources/langs/nheko_fi.ts +++ b/resources/langs/nheko_fi.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 ja %n muu @@ -2679,7 +2679,7 @@ Esimerkki: https://palvelime.ni:8787 RoomInfo - + no version stored ei tallennettua versiota @@ -3252,7 +3252,7 @@ Huomaathan ettei sitä voida poistaa käytöstä myöhemmin. SecretStorage - + Failed to connect to secret storage Salattuun tallennustilaan ei saatu yhteyttä @@ -3886,7 +3886,7 @@ Syy: %4 Yhtäkään huonetta ei ole avattu - + No preview available Esikatselu ei saatavilla @@ -3924,7 +3924,17 @@ Syy: %4 kieltäydy kutsusta - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Takaisin huonelistaan diff --git a/resources/langs/nheko_fr.ts b/resources/langs/nheko_fr.ts index 840e417b..de6c65ad 100644 --- a/resources/langs/nheko_fr.ts +++ b/resources/langs/nheko_fr.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 et %n autre @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored pas de version enregistrée @@ -3248,7 +3248,7 @@ Veuillez noter qu'il ne pourra plus être désactivé par la suite. SecretStorage - + Failed to connect to secret storage Échec de la connexion au stockage des secrets @@ -3882,7 +3882,7 @@ Raison : %4 Aucun salon ouvert - + No preview available Aucune prévisualisation disponible @@ -3920,7 +3920,17 @@ Raison : %4 décliner l'invitation - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Revenir à la liste des salons diff --git a/resources/langs/nheko_hu.ts b/resources/langs/nheko_hu.ts index 3cd297f8..8d3caf70 100644 --- a/resources/langs/nheko_hu.ts +++ b/resources/langs/nheko_hu.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2673,7 +2673,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored nincs tárolva verzió @@ -3243,7 +3243,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3869,7 +3869,7 @@ Reason: %4 Nincs nyitott szoba - + No preview available @@ -3906,7 +3906,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Vissza a szobák listájára diff --git a/resources/langs/nheko_id.ts b/resources/langs/nheko_id.ts index 221de332..ceaeb01c 100644 --- a/resources/langs/nheko_id.ts +++ b/resources/langs/nheko_id.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 dan %n lainnya @@ -2678,7 +2678,7 @@ Contoh: https://server.saya:8787 RoomInfo - + no version stored tidak ada versi yang disimpan @@ -3249,7 +3249,7 @@ Dicatat bahwa ini tidak dapat dinonaktifkan setelah ini. SecretStorage - + Failed to connect to secret storage Gagal menghubungkan ke penyimpanan rahasia @@ -3878,7 +3878,7 @@ Alasan: %4 Tidak ada ruangan yang dibuka - + No preview available Tidak ada tampilan yang tersedia @@ -3915,7 +3915,17 @@ Alasan: %4 tolak undangan - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Kembali ke daftar ruangan diff --git a/resources/langs/nheko_ie.ts b/resources/langs/nheko_ie.ts index 0781951e..1620f3cc 100644 --- a/resources/langs/nheko_ie.ts +++ b/resources/langs/nheko_ie.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3878,7 +3878,7 @@ Reason: %4 - + No preview available @@ -3916,7 +3916,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_it.ts b/resources/langs/nheko_it.ts index 0173bccd..47ad9886 100644 --- a/resources/langs/nheko_it.ts +++ b/resources/langs/nheko_it.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored nessuna versione memorizzata @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3878,7 +3878,7 @@ Reason: %4 Nessuna stanza aperta - + No preview available @@ -3916,7 +3916,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_ja.ts b/resources/langs/nheko_ja.ts index 087e636f..e08b5299 100644 --- a/resources/langs/nheko_ja.ts +++ b/resources/langs/nheko_ja.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2673,7 +2673,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored バージョンが保存されていません @@ -3243,7 +3243,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3869,7 +3869,7 @@ Reason: %4 部屋が開いていません - + No preview available @@ -3906,7 +3906,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_ml.ts b/resources/langs/nheko_ml.ts index f239fee7..6cf6a753 100644 --- a/resources/langs/nheko_ml.ts +++ b/resources/langs/nheko_ml.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3878,7 +3878,7 @@ Reason: %4 - + No preview available @@ -3916,7 +3916,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_nl.ts b/resources/langs/nheko_nl.ts index 64508109..eb741bde 100644 --- a/resources/langs/nheko_nl.ts +++ b/resources/langs/nheko_nl.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 en %n ander @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored geen versie opgeslagen @@ -3248,7 +3248,7 @@ Wees ervan bewust dat het achteraf niet meer uitgeschakeld kan worden. SecretStorage - + Failed to connect to secret storage Verbinden met geheimopslag mislukt @@ -3882,7 +3882,7 @@ Reden: %4 Geen kamer open - + No preview available Geen voorbeeld beschikbaar @@ -3920,7 +3920,17 @@ Reden: %4 wijs uitnodiging af - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Terug naar kamerlijst diff --git a/resources/langs/nheko_pl.ts b/resources/langs/nheko_pl.ts index 0ec4edf9..2791c3cd 100644 --- a/resources/langs/nheko_pl.ts +++ b/resources/langs/nheko_pl.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 i jeszcze %n inny @@ -2678,7 +2678,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored brak zapisanej wersji @@ -3253,7 +3253,7 @@ Zwróć uwagę, iż nie będzie ono mogło zostać wyłączone. SecretStorage - + Failed to connect to secret storage Błąd połączenia do menadżera sekretów @@ -3892,7 +3892,7 @@ Powód: %4 Brak otwartych pokojów - + No preview available Podgląd niedostępny @@ -3931,7 +3931,17 @@ Powód: %4 odrzuć zaproszenie - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Wróc do listy pokoi diff --git a/resources/langs/nheko_pt_BR.ts b/resources/langs/nheko_pt_BR.ts index 219454ef..7d3c6fc5 100644 --- a/resources/langs/nheko_pt_BR.ts +++ b/resources/langs/nheko_pt_BR.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3878,7 +3878,7 @@ Reason: %4 - + No preview available @@ -3916,7 +3916,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_pt_PT.ts b/resources/langs/nheko_pt_PT.ts index 2aee5f15..dbfeb068 100644 --- a/resources/langs/nheko_pt_PT.ts +++ b/resources/langs/nheko_pt_PT.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 e outro %n @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored nenhuma versão guardada @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage Falha ao ligar ao armazenamento secreto @@ -3880,7 +3880,7 @@ Reason: %4 Nenhuma sala aberta - + No preview available Pré-visualização não disponível @@ -3918,7 +3918,17 @@ Reason: %4 recusar convite - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Voltar à lista de salas diff --git a/resources/langs/nheko_ro.ts b/resources/langs/nheko_ro.ts index df76a7c0..1bfa2949 100644 --- a/resources/langs/nheko_ro.ts +++ b/resources/langs/nheko_ro.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2677,7 +2677,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored nicio versiune stocată @@ -3251,7 +3251,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3887,7 +3887,7 @@ Reason: %4 Nicio cameră deschisă - + No preview available @@ -3926,7 +3926,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_ru.ts b/resources/langs/nheko_ru.ts index b29a6bec..a5f3ac37 100644 --- a/resources/langs/nheko_ru.ts +++ b/resources/langs/nheko_ru.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 и ещё %n @@ -2677,7 +2677,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored нет сохраненной версии @@ -3251,7 +3251,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3887,7 +3887,7 @@ Reason: %4 Комната не выбрана - + No preview available @@ -3926,7 +3926,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Вернуться к списку комнат diff --git a/resources/langs/nheko_si.ts b/resources/langs/nheko_si.ts index 99c6d645..8128eb91 100644 --- a/resources/langs/nheko_si.ts +++ b/resources/langs/nheko_si.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3878,7 +3878,7 @@ Reason: %4 - + No preview available @@ -3916,7 +3916,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_sr_Latn.ts b/resources/langs/nheko_sr_Latn.ts index ebd079d2..a94b06a1 100644 --- a/resources/langs/nheko_sr_Latn.ts +++ b/resources/langs/nheko_sr_Latn.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2677,7 +2677,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3251,7 +3251,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3887,7 +3887,7 @@ Reason: %4 - + No preview available @@ -3926,7 +3926,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_sv.ts b/resources/langs/nheko_sv.ts index 6fb14a89..a5fcb931 100644 --- a/resources/langs/nheko_sv.ts +++ b/resources/langs/nheko_sv.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2675,7 +2675,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored ingen version lagrad @@ -3247,7 +3247,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3878,7 +3878,7 @@ Reason: %4 Inget rum öppet - + No preview available @@ -3916,7 +3916,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list Tillbaka till rumlista diff --git a/resources/langs/nheko_vi.ts b/resources/langs/nheko_vi.ts index 6dd6027e..51d6ffce 100644 --- a/resources/langs/nheko_vi.ts +++ b/resources/langs/nheko_vi.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) @@ -2673,7 +2673,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored @@ -3243,7 +3243,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage @@ -3869,7 +3869,7 @@ Reason: %4 - + No preview available @@ -3906,7 +3906,17 @@ Reason: %4 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list diff --git a/resources/langs/nheko_zh_CN.ts b/resources/langs/nheko_zh_CN.ts index 7a241c94..a5da56f1 100644 --- a/resources/langs/nheko_zh_CN.ts +++ b/resources/langs/nheko_zh_CN.ts @@ -130,7 +130,7 @@ Cache - + %1 and %n other(s) %1 和另外 %n 人 @@ -2674,7 +2674,7 @@ Example: https://server.my:8787 RoomInfo - + no version stored 没有存储版本 @@ -3245,7 +3245,7 @@ Example: https://server.my:8787 SecretStorage - + Failed to connect to secret storage 未能连接秘密存储 @@ -3874,7 +3874,7 @@ Reason: %4 未打开聊天室 - + No preview available 预览不可用 @@ -3911,7 +3911,17 @@ Reason: %4 拒绝邀请 - + + Hide invite reason + + + + + Show invite reason + + + + Back to room list 返回聊天室列表 From 9dfe2248d5e33ac48cdff2a18e27caf3b2c98c3f Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 28 Dec 2022 18:42:23 +0100 Subject: [PATCH 04/13] Some german translations --- resources/langs/nheko_ca.ts | 18 +- resources/langs/nheko_cs.ts | 18 +- resources/langs/nheko_de.ts | 275 ++++++++++++++++--------------- resources/langs/nheko_el.ts | 18 +- resources/langs/nheko_en.ts | 22 +-- resources/langs/nheko_eo.ts | 18 +- resources/langs/nheko_es.ts | 18 +- resources/langs/nheko_et.ts | 18 +- resources/langs/nheko_fi.ts | 18 +- resources/langs/nheko_fr.ts | 18 +- resources/langs/nheko_hu.ts | 18 +- resources/langs/nheko_id.ts | 18 +- resources/langs/nheko_ie.ts | 18 +- resources/langs/nheko_it.ts | 18 +- resources/langs/nheko_ja.ts | 18 +- resources/langs/nheko_ml.ts | 18 +- resources/langs/nheko_nl.ts | 18 +- resources/langs/nheko_pl.ts | 18 +- resources/langs/nheko_pt_BR.ts | 18 +- resources/langs/nheko_pt_PT.ts | 18 +- resources/langs/nheko_ro.ts | 18 +- resources/langs/nheko_ru.ts | 18 +- resources/langs/nheko_si.ts | 18 +- resources/langs/nheko_sr_Latn.ts | 18 +- resources/langs/nheko_sv.ts | 18 +- resources/langs/nheko_vi.ts | 18 +- resources/langs/nheko_zh_CN.ts | 18 +- 27 files changed, 376 insertions(+), 371 deletions(-) diff --git a/resources/langs/nheko_ca.ts b/resources/langs/nheko_ca.ts index 1cbc9838..02017193 100644 --- a/resources/langs/nheko_ca.ts +++ b/resources/langs/nheko_ca.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_cs.ts b/resources/langs/nheko_cs.ts index 5c84d910..ecdf1824 100644 --- a/resources/langs/nheko_cs.ts +++ b/resources/langs/nheko_cs.ts @@ -233,14 +233,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -336,7 +329,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_de.ts b/resources/langs/nheko_de.ts index fb3ebcae..b34d0e06 100644 --- a/resources/langs/nheko_de.ts +++ b/resources/langs/nheko_de.ts @@ -229,17 +229,10 @@ Confirm logout - + Abmelden bestätigen - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. Das Datenbankformat auf der Festplatte ist neuer als die von dieser Nhekoversion unterstützte Version. Bitte update Nheko oder lösche die Datenbank. @@ -335,9 +328,18 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Migration des Caches fehlgeschlagen! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + Aus folgendem Grund möchte dich Nheko zurück zur Anmeldeseite schicken: +%1 +Wenn du glaubst,.dass das ein Fehler ist, dann kannst du Nheko schließen und vielleicht deine Schlüssel sichern. Von der Anmeldeseite kannst du dich mit den normalen Methoden anmelden. + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. - + Die Migration der Datenbank auf die aktuelle Version ist fehlgeschlagen. Dies kann verschiedene Gründe haben. Bitte erstelle einen Fehlereport auf https://github.com/Nheko-Reborn/nheko und versuche zwischenzeitlich eine ältere Version zu verwenden. Alternativ kannst du die Datenbank manuell löschen. @@ -371,7 +373,8 @@ If you think this is a mistake, you can close Nheko instead to possibly recover You failed to join %1. You can try to knock so that others can invite you in. Do you want to do so? You may optionally provide a reason for others to accept your knock: - + Du konntest %1 nicht betreten. Du kannst versuchen anzuklopfen, so dass andere Leute dich einladen können. Möchtest du das tun? +Du kannst zusätzlich einen Grund angeben, warum die anderen dein Anklopfen annehmen sollten: @@ -429,298 +432,298 @@ You may optionally provide a reason for others to accept your knock: /me <message> - + /me <Nachricht> /react <text> - + /react <Text> /join (!roomid|#alias) [reason] - + /join (!raumid|#alias) [Grund] /knock (!roomid|#alias) [reason] - + /knock (!raumid|#alias) [Grund] /part [reason] - + /part [Grund] /leave [reason] - + /leave [Grund] /invite @userid [reason] - + /invite @nutzerid [Grund] /kick @userid [reason] - + /kick @nutzerid [Grund] /ban @userid [reason] - + /ban @nutzerid [Grund] /unban @userid [reason] - + /unban @nutzerid [Grund] /redact ($eventid|@userid) - + /redact ($eventid|@nutzerid) /roomnick <displayname> - + /roomnick <Anzeigename> /shrug [message] - + /shrug [Nachricht] /fliptable - + /fliptable /unfliptable - + /unfliptable /sovietflip - + /sovietflip /clear-timeline - + /clear-timeline /reset-state - + /reset-state /rotate-megolm-session - + /rotate-megolm-session /md [message] - + /md [Nachricht] /plain [message] - + /plain [Nachricht] /rainbow [message] - + /rainbow [Nachricht] /rainbowme [message] - + /rainbowme [Nachricht] /notice [message] - + /notice [Nachricht] /rainbownotice [message] - + /rainbownotice [Nachricht] /confetti [message] - + /confetti [Nachricht] /rainbowconfetti [message] - + /rainbowconfetti [Nachricht] /goto ($eventid|message index|matrix:r/room/e/event) - + /goto ($eventid|Nachrichten Index|matrix:r/raumid/e/eventid) /converttodm - + /converttodm /converttoroom - + /converttoroom Send a message expressing an action. - + Sende eine Nachricht, die eine Aktion ausdrückt. Send <text> as a reaction when you’re replying to a message. - + Sende <Text> als Reaktion auf eine Nachricht anstatt als Antwort. Join a room. Reason is optional. - + Raum betreten. Ein Grund ist optional. Ask to join a room. Reason is optional. - + Anfragen einen Raum zu betreten. Ein Grund ist optional. Leave a room. Reason is optional. - + Raum verlassen. Ein Grund ist optional. Invite a user into the current room. Reason is optional. - + Einen Nutzer in diesen Raum einladen. Ein Grund ist optional. Kick a user from the current room. Reason is optional. - + Einen Nutzer aus diesem Raum werfen. Ein Grund ist optional. Ban a user from the current room. Reason is optional. - + Einen Nutzer von diesem Raum verbannen. Ein Grund ist optional. Unban a user in the current room. Reason is optional. - + Verbannung eines Nutzers aufheben. Ein Grund ist optional. Redact an event or all locally cached messages of a user. - + Eine bestimmte Nachricht oder alle lokal geladenen Nachrichten eines Nutzers löschen. Change your displayname in this room. - + Ändere deinen Anzeigenamen in diesem Raum. ¯\_(ツ)_/¯ with an optional message. - + ¯\_(ツ)_/¯ mit einer optionalen Nachricht. (╯°□°)╯︵ ┻━┻ - + (╯°□°)╯︵ ┻━┻ ┯━┯╭( º _ º╭) - + ┯━┯╭( º _ º╭) ノ┬─┬ノ ︵ ( \o°o)\ - + ノ┬─┬ノ ︵ ( \o°o)\ Clear the currently cached messages in this room. - + Lokalen Nachrichtenspeicher für diesen Raum leeren. Refetch the state in this room. - + Raumzustand für diesen Raum vom Server aktualisieren. Rotate the current symmetric encryption key. - + Den symmetrischen Nachrichtenschlüssel wechseln. Send a markdown formatted message (ignoring the global setting). - + Sende diese Nachricht als Markdown (selbst wenn die globale Einstellung Plaintext preferiert). Send an unformatted message (ignoring the global setting). - + Sende diese Nachricht unformatiert (selbst wenn die globale Einstellung Markdown preferiert). Send a message in rainbow colors. - + Sende eine Nachricht in Regenbogenfarben. Send /me in rainbow colors. - + Sende eine /me-Nachricht in Regenbogenfarben. Send a bot message. - + Sende eine Nachricht als wärst du ein Bot. Send a bot message in rainbow colors. - + Sende eine Botnachricht, aber in Regenbogenfarben. Send a message with confetti. - + Sende eine Nachricht mit Konfetti. Send a message in rainbow colors with confetti. - + Sende eine Nachricht in Regenbogenfarben mit Konfetti. Go to this event or link. - + Navigiere zu dieser Nachricht oder diesem Link. Convert this room to a direct chat. - + Verwandel diesen Raum in eine Direktnachricht. Convert this direct chat into a room. - + Verwandle diese Direktnachricht in einen normalen Chatraum. @@ -728,12 +731,12 @@ You may optionally provide a reason for others to accept your knock: Do not show notification counts for this community or tag. - + Zeige keine Benachrichtigungen für diese Gruppe oder Tag an. Hide rooms with this tag or from this community by default. - + Verstecke Räume dieser Gruppe oder dieses Tags standardmäßig. @@ -801,22 +804,22 @@ You may optionally provide a reason for others to accept your knock: Failed to update community: %1 - + Konnte diese Gruppe nicht aktualisieren: %1 Failed to delete room from community: %1 - + Konnte Raum nicht von dieser Gruppe entfernen: %1 Failed to update community for room: %1 - + Konnte Gruppe für den Raum nicht aktualisieren: %1 Failed to remove community from room: %1 - + Konnte Gruppe für den Raum nicht entfernen: %1 @@ -847,7 +850,7 @@ You may optionally provide a reason for others to accept your knock: This room can't be joined directly. You can, however, knock on the room and room members can accept or decline this join request. You can additionally provide a reason for them to let you in below: - + Dieser Raum kann nicht direkt betreten werden. Du kanns aber anklopfen und die Personen in dem Raum können dich dann reinlassen oder auch nicht. Optional kannst du auch einen Grund angeben, warum sie das tun sollten. @@ -933,7 +936,7 @@ You may optionally provide a reason for others to accept your knock: Public rooms can be joined by anyone; private rooms need explicit invites. - + Öffentliche Räume können von jedem betreten werden. Private Räume benötigen eine Einladung. @@ -1665,12 +1668,12 @@ Example: https://server.my:8787 This room was replaced for the following reason: %1 - + Dieser Raum wurde aus folgendem Grund ersetzt: %1 Go to replacement room - + Gehe zum neuen Raum @@ -1720,7 +1723,7 @@ Example: https://server.my:8787 %1 changed the parent communities for this room. - + %1 hat die übergeordneten Gruppen für diesen Raum bearbeitet. @@ -1750,12 +1753,12 @@ Example: https://server.my:8787 %1 rejected the call. - + %1 hat den Anruf abgewiesen. %1 select answer - + %1 hat einen Anruf ausgewählt @@ -1789,7 +1792,7 @@ Example: https://server.my:8787 Already on a call - + Bereits in einem Telefonat @@ -1837,12 +1840,12 @@ Example: https://server.my:8787 Reply in thread - + In Gesprächsfaden antworten New thread - + Neuer Gesprächsfaden @@ -1894,7 +1897,7 @@ Example: https://server.my:8787 &Thread - + &Gesprächsfaden @@ -1909,7 +1912,7 @@ Example: https://server.my:8787 &Read receipts - + &Lesebestätigung @@ -2233,7 +2236,7 @@ Example: https://server.my:8787 Failed to update powerlevel: %1 - Konnte Berechtigungen nicht aktualisieren: %1 + Konnte Berechtigungen nicht aktualisieren: %1 @@ -2389,12 +2392,12 @@ Example: https://server.my:8787 Edit child communities and rooms - + Untergeordnete Gruppen und Räume ändern Change parent communities - + Übergeordnete Gruppen ändern @@ -2419,7 +2422,7 @@ Example: https://server.my:8787 Reject a call - + Anruf abweisen @@ -2440,7 +2443,7 @@ Example: https://server.my:8787 Create a unique profile which allows you to log into several accounts at the same time and start multiple instances of nheko. - + Erstelle ein separates Profil, was mehrere Instanzen von Nheko mit verschiedenen Accounts zur gleichen Zeit ermöglicht. @@ -2458,7 +2461,7 @@ Example: https://server.my:8787 Alias for '--log-level trace'. - + Alias für '--log-level trace'. @@ -2483,17 +2486,17 @@ Example: https://server.my:8787 Respond - + Antworten Send - Senden + Senden Write a message... - Schreibe eine Nachricht… + Schreibe eine Nachricht… @@ -2548,7 +2551,7 @@ Example: https://server.my:8787 A name for this device which will be shown to others when verifying your devices. If nothing is provided a default is used. - + Ein Name für dieses Gerät, der eventuell anderen Nutzern gezeigt wird, wenn du Geräte verifizierst. Ohne Angabe wird ein Standardwert verwendet. @@ -2700,7 +2703,7 @@ Example: https://server.my:8787 Room settings - + Raumeinstellungen @@ -2740,7 +2743,7 @@ Example: https://server.my:8787 Add or remove from community... - + Zu Gruppe hinzufügen oder entfernen... @@ -3036,32 +3039,32 @@ Die Verschlüsselung des Raumes kann nach Aktivierung nicht mehr deaktiviert wer Anyone can join - + Jeder kann beitreten Allow knocking - + Anklopfen erlauben Allow joining via other rooms - + Durch andere Räume betreten Rooms to join via - + Räume die Zutritt erlauben Change the list of rooms users can join this room via. Usually this is the official community of this room. - + Ändere die Liste an Räumen, die den Zutritt erlauben. Normalerweise ist das die offizielle Gruppe dieses Raumes. Allow guests to join - + Erlaube Gästen beizutreten @@ -3076,7 +3079,7 @@ Die Verschlüsselung des Raumes kann nach Aktivierung nicht mehr deaktiviert wer Change what packs are enabled, remove packs, or create new ones - + Ändere welche Packungen aktiv sind, entferne oder erstelle neue Packungen. @@ -3183,7 +3186,7 @@ Die Verschlüsselung des Raumes kann nach Aktivierung nicht mehr deaktiviert wer Please enter the token which has been sent to you: - + Bitte gib das Token ein, dass dir geschickt wurde: @@ -3374,7 +3377,7 @@ Wenn du verifizieren wählst, musst du dein anderes Gerät zur Hand haben. Wenn Add or remove from community - + Zu Gruppe hinzufügen oder entfernen @@ -3827,7 +3830,7 @@ Grund: %4 %1 made this room require an invitation to join. - + %1 hat diesen Raum nur eingeladenen Nutzern zugänglich gemacht. @@ -3871,7 +3874,7 @@ Grund: %4 Part of a thread - + Teil eines Gesprächfadens @@ -3922,12 +3925,12 @@ Grund: %4 Hide invite reason - + Einladungsgrund verstecken Show invite reason - + Einladungsgrund anzeigen @@ -3950,7 +3953,7 @@ Grund: %4 In %1 - + In %1 @@ -3980,7 +3983,7 @@ Grund: %4 Search this room - + Diesen Raum durchsuchen @@ -4015,7 +4018,7 @@ Grund: %4 Enter search query - + Suchanfrage eingeben @@ -4240,7 +4243,7 @@ Grund: %4 Use shift+enter to send and enter to start a new line - + Neuzeile mit Umschalt+Enter einfügen. @@ -4320,12 +4323,12 @@ Grund: %4 Decrypt notifications - + Benachrichtigungen entschlüsseln Display fancy effects such as confetti - + Lustige Chateffekte wie Konfetti anzeigen @@ -4566,7 +4569,7 @@ Wenn deaktiviert werden alle Nachrichten als unformatierter Text gesendet. Invert the behavior of the enter key in the text input, making it send the message when shift+enter is pressed and starting a new line when enter is pressed. - + Erlaubt das invertieren des Verhaltens der Enter taste. Kontrolliert ob Umschalt+Enter eine Neuzeile einfügt oder die Nachricht sendet. @@ -4610,22 +4613,22 @@ AUS - Quadratisch, AN - Kreisförmig. Decrypt messages shown in notifications for encrypted chats. - + Nachrichten in Benachrichtigungen entschlüsseln in verschlüsselten Räumen. Choose where to show the total number of notifications contained within a community or tag. - + Wähle aus ob die Benachrichtigungsanzahl für Gruppen und Tags angezeigt werden oder nicht. Some messages can be sent with fancy effects. For example, messages sent with '/confetti' will show confetti on screen. - + Manche Nachrichten lösen extra Effekte aus. Z.B. erzeugen Nachrichten, die mit /confetti gesendet wurden, einen kleinen Konfettischauer. Automatically replies to key requests from other users if they are verified, even if that device shouldn't have access to those keys otherwise. - + Teilt automatisch Schlüssel für Nachrichten mit verifizierten Nutzern (auf Anfrage), selbst wenn diese sonst keinen Zugriff darauf hätten. @@ -4642,29 +4645,31 @@ Normalerweise animiert das den Taskbaricon oder färbt das Fenster orange ein. Communities sidebar - + Gruppenseitenleiste Show message counts for communities and tags - + Zeige Nachrichtenzahl für Gruppen und Tags Set the max width of messages in the timeline (in pixels). This can help readability on wide screen when Nheko is maximized - + Setze eine maximale Breite für Nachrichten im Chat (in Pixeln). Das kann die Lesbarkeit auf breiten Bildschirmen erhöhen. Show a column containing communities and tags next to the room list. - + Zeige eine Liste mit Gruppen und Tags neben der Raumliste. Display rooms with new messages first. If this is off, the list of rooms will only be sorted by the timestamp of the last message in a room. If this is on, rooms which have active notifications (the small circle with a number in it) will be sorted on top. Rooms that you have muted will still be sorted by timestamp, since you don't seem to consider them as important as the other rooms. - + Zeige Räume mit neuen Nachrichten zuerst an. +Wenn dies aus ist, dann werden Räume nur nach Zeitstempel der letzten Nachricht sortiert. +Wenn dies an ist, dann werden Nachrichten mit aktiven Benachrichtigungen (der kleine Kreis mit der Zahl drin) zuerst angezeigt. Räume, die stummgestellt sind, werden immer noch nach Zeitstempel sortiert, nachdem diese weniger wichtig zu sein scheinen. @@ -4934,7 +4939,7 @@ Diese Einstellung benötigt einen Neustart von Nheko. Open the fallback, follow the steps, and confirm after completing them. - + Öffne die Webseite und folge den Schritten auf dieser. Klicke dann auf Bestätigen. @@ -5037,12 +5042,12 @@ Diese Einstellung benötigt einen Neustart von Nheko. You sent some confetti - + Du hast etwas Konfetti geschicht %1 sent some confetti - + %1 hat etwas Konfetti geschicht @@ -5087,12 +5092,12 @@ Diese Einstellung benötigt einen Neustart von Nheko. You rejected a call - + Du hast einen Anruf abgewiesen %1 rejected a call - + %1 hat einen Anruf abgewiesen diff --git a/resources/langs/nheko_el.ts b/resources/langs/nheko_el.ts index fd929f16..c894cdea 100644 --- a/resources/langs/nheko_el.ts +++ b/resources/langs/nheko_el.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_en.ts b/resources/langs/nheko_en.ts index 1ffa6022..fed69aab 100644 --- a/resources/langs/nheko_en.ts +++ b/resources/langs/nheko_en.ts @@ -232,16 +232,7 @@ Confirm logout - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -337,7 +328,16 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Cache migration failed! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_eo.ts b/resources/langs/nheko_eo.ts index 1a338c46..6b98b9c2 100644 --- a/resources/langs/nheko_eo.ts +++ b/resources/langs/nheko_eo.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. La kaŝmemoro sur via disko pli novas, ol tio, kion povas subteni ĉi tiu versio de Nheko. Bonvolu ĝisdatigi Nhekon aŭ vakigi vian kaŝmemoron. @@ -336,7 +329,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Malsukcesis migrado de kaŝmemoro! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_es.ts b/resources/langs/nheko_es.ts index a2c56a3b..df8e46aa 100644 --- a/resources/langs/nheko_es.ts +++ b/resources/langs/nheko_es.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. La cache en su disco es más reciente de lo que esta versión de Nheko soporta. Por favor actualiza Nheko o limpia la cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Migración de cache fallida! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_et.ts b/resources/langs/nheko_et.ts index 93906143..8e9ac3e5 100644 --- a/resources/langs/nheko_et.ts +++ b/resources/langs/nheko_et.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. Sinu andmekandjale salvestatud puhvri versioon on uuem, kui käesolev Nheko versioon kasutada oskab. Palun tee Nheko uuendus või kustuta puhverdatud andmed. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Puhvri versiooniuuendus ebaõnnestus! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_fi.ts b/resources/langs/nheko_fi.ts index f375d2c7..19ab336d 100644 --- a/resources/langs/nheko_fi.ts +++ b/resources/langs/nheko_fi.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. Levylläsi oleva välimuisti on uudempaa kuin mitä tämä Nhekon versio tukee. Päivitä Nheko tai poista välimuistisi. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Välimuistin siirto epäonnistui! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. Välimuistin siirtäminen nykyiseen versioon epäonnistui. Tähän voi olla eri syitä. Luothan raportin sivulla https://github.com/Nheko-Reborn/nheko ja kokeile sillä välin vanhaa versiota. Voit myös kokeilla käsin välimuistin poistamista. diff --git a/resources/langs/nheko_fr.ts b/resources/langs/nheko_fr.ts index de6c65ad..59f98987 100644 --- a/resources/langs/nheko_fr.ts +++ b/resources/langs/nheko_fr.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. Le cache sur votre disque a été créé avec une version de Nheko plus récente que la vôtre. Veuillez mettre Nheko à jour ou vider votre cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Échec de la migration du cache ! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_hu.ts b/resources/langs/nheko_hu.ts index 8d3caf70..c3b5792b 100644 --- a/resources/langs/nheko_hu.ts +++ b/resources/langs/nheko_hu.ts @@ -231,14 +231,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -334,7 +327,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Gyorsítótár migráció nem sikerült! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_id.ts b/resources/langs/nheko_id.ts index ceaeb01c..aead48d9 100644 --- a/resources/langs/nheko_id.ts +++ b/resources/langs/nheko_id.ts @@ -231,14 +231,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. Tembolok pada diskmu lebih baru daripada versi yang didukung Nheko ini. Harap perbarui Nheko atau bersihkan tembolokmu. @@ -334,7 +327,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Migrasi tembolok gagal! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. Migrasi tembolok ke versi saat ini gagal. Ini dapat memiliki alasan yang berbeda. Silakan buka sebuah masalah di https://github.com/Nheko-Reborn/nheko dan coba menggunakan versi yang lama untuk saat ini. Secara alternatif kamu bisa menghapus tembolok secara manual. diff --git a/resources/langs/nheko_ie.ts b/resources/langs/nheko_ie.ts index 1620f3cc..1a92e70e 100644 --- a/resources/langs/nheko_ie.ts +++ b/resources/langs/nheko_ie.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_it.ts b/resources/langs/nheko_it.ts index 47ad9886..81f0d0e8 100644 --- a/resources/langs/nheko_it.ts +++ b/resources/langs/nheko_it.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Migrazione della cache fallita! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_ja.ts b/resources/langs/nheko_ja.ts index e08b5299..c8c3491f 100644 --- a/resources/langs/nheko_ja.ts +++ b/resources/langs/nheko_ja.ts @@ -231,14 +231,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -334,7 +327,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_ml.ts b/resources/langs/nheko_ml.ts index 6cf6a753..4ccb4749 100644 --- a/resources/langs/nheko_ml.ts +++ b/resources/langs/nheko_ml.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_nl.ts b/resources/langs/nheko_nl.ts index eb741bde..6148b0f2 100644 --- a/resources/langs/nheko_nl.ts +++ b/resources/langs/nheko_nl.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. De opgeslagen gegevens van Nheko zijn nieuwer dan de versie die je nu draait. Update Nheko of verwijder de gegevens. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Migreren van de cache is mislukt! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_pl.ts b/resources/langs/nheko_pl.ts index 2791c3cd..6f96a768 100644 --- a/resources/langs/nheko_pl.ts +++ b/resources/langs/nheko_pl.ts @@ -233,14 +233,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. Pamięć podręczna na twoim dysku jest nowsza niż wspierana przez tę wersję Nheko. Zaktualizuj Nheko lub wyczyść pamięć podręczną. @@ -336,7 +329,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Nie udało się przenieść pamięci podręcznej! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_pt_BR.ts b/resources/langs/nheko_pt_BR.ts index 7d3c6fc5..a1f25fdc 100644 --- a/resources/langs/nheko_pt_BR.ts +++ b/resources/langs/nheko_pt_BR.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Migração do cache falhou! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_pt_PT.ts b/resources/langs/nheko_pt_PT.ts index dbfeb068..c3e9434c 100644 --- a/resources/langs/nheko_pt_PT.ts +++ b/resources/langs/nheko_pt_PT.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. A cache no seu disco é mais recente do que aquela que esta versão do Nheko suporta. Por favor atualize o Nheko ou limpe a sua cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Falha ao migrar a cache! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_ro.ts b/resources/langs/nheko_ro.ts index 1bfa2949..b8664564 100644 --- a/resources/langs/nheko_ro.ts +++ b/resources/langs/nheko_ro.ts @@ -233,14 +233,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -336,7 +329,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Nu s-a putut migra cache-ul! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_ru.ts b/resources/langs/nheko_ru.ts index a5f3ac37..ef982473 100644 --- a/resources/langs/nheko_ru.ts +++ b/resources/langs/nheko_ru.ts @@ -233,14 +233,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. Версия кэша на вашем диске новее той, что поддерживается текущей версией Nheko. Пожалуйста, обновите Nheko или очистите кэш. @@ -336,7 +329,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Миграция кэша не удалась! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_si.ts b/resources/langs/nheko_si.ts index 8128eb91..7c843d94 100644 --- a/resources/langs/nheko_si.ts +++ b/resources/langs/nheko_si.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_sr_Latn.ts b/resources/langs/nheko_sr_Latn.ts index a94b06a1..1072b96a 100644 --- a/resources/langs/nheko_sr_Latn.ts +++ b/resources/langs/nheko_sr_Latn.ts @@ -233,14 +233,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -336,7 +329,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_sv.ts b/resources/langs/nheko_sv.ts index a5fcb931..00a6a731 100644 --- a/resources/langs/nheko_sv.ts +++ b/resources/langs/nheko_sv.ts @@ -232,14 +232,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -335,7 +328,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover Cache-migration misslyckades! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_vi.ts b/resources/langs/nheko_vi.ts index 51d6ffce..efa4d060 100644 --- a/resources/langs/nheko_vi.ts +++ b/resources/langs/nheko_vi.ts @@ -231,14 +231,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. @@ -334,7 +327,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. diff --git a/resources/langs/nheko_zh_CN.ts b/resources/langs/nheko_zh_CN.ts index a5da56f1..c7e1b205 100644 --- a/resources/langs/nheko_zh_CN.ts +++ b/resources/langs/nheko_zh_CN.ts @@ -231,14 +231,7 @@ - - Because of the following reason Nheko wants to drop you to the login page: -%1 -If you think this is a mistake, you can close Nheko instead to possibly recover your encrpytion keys. After you have been dropped to the login page, you can sign in again using your usual methods. - - - - + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. 当前设备中的缓存比Nheko支持的版本更新,请更新Nheko或清理缓存。 @@ -334,7 +327,14 @@ If you think this is a mistake, you can close Nheko instead to possibly recover 缓存迁移失败! - + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. From 79a2efd25a17e54dc38d5bd5e80a4aff48676617 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 28 Dec 2022 20:49:42 +0100 Subject: [PATCH 05/13] Finish german translation --- resources/langs/nheko_de.ts | 44 ++++++++++++++++++++----------------- src/ChatPage.cpp | 2 +- 2 files changed, 25 insertions(+), 21 deletions(-) diff --git a/resources/langs/nheko_de.ts b/resources/langs/nheko_de.ts index b34d0e06..76a540bd 100644 --- a/resources/langs/nheko_de.ts +++ b/resources/langs/nheko_de.ts @@ -1509,7 +1509,10 @@ Du kannst zusätzlich einen Grund angeben, warum die anderen dein Anklopfen anne You can also put your homeserver address there if your server doesn't support .well-known lookup. Example: @user:server.my If Nheko fails to discover your homeserver, it will show you a field to enter the server manually. - + Dein Anmeldename. Eine mxid sollte mit eine @ anfangen gefolgt von der Nutzerid. Nach dem Nutzernamen folgt der servername, getrennt durch ein :. +Wenn dein Server keinen .well-known unterstützt, kannst du auch eine Serveradresse angeben. +Beispiel: @nutzer:mein.server +Wenn Nheko den Server nicht finden kann, wird es dich nach der Serveradresse fragen. @@ -1529,13 +1532,14 @@ If Nheko fails to discover your homeserver, it will show you a field to enter th A name for this device which will be shown to others when verifying your devices. If nothing is provided, a default is used. - + Der Name für dieses Gerät, den andere sehen, wenn sie deine Geräte verifizieren. Wenn nichts angeben ist, wird ein Standardwert verwendet. The address that can be used to contact you homeserver's client API. Example: https://server.my:8787 - + Die Adresse unter der die Client-API deines Heimservers erreicht wird. +Beispiel: https://mein.server:8787 @@ -1593,7 +1597,7 @@ Example: https://server.my:8787 The selected server does not support a version of the Matrix protocol, that this client understands (v1.1 to v1.4). You can't sign in. - + Der ausgewählte Server unterstützt keine der Matrix versionen, die Nheko versteht (v1.1 bis v1.4). Du kannst dich nicht anmelden. @@ -1975,12 +1979,12 @@ Example: https://server.my:8787 To allow other users to see which of your devices actually belong to you, you can verify them. This also allows key backup to work automatically. Verify an unverified device now? (Please make sure you have one of those devices available.) - + Damit andere Nutzer sehen können, welche Geräte wirklich dir gehören, kannst du sie verifizieren. Das aktiviert auch den Onlinespeicher für Nachrichtenschlüssel. Willst du ein unverifiziertes Gerät verifizieren? (Stelle sicher, dass du eines der Geräte in deiner Nähe hast.) To allow other users to see which of your devices actually belong to you, you can verify them. This also allows key backup to work automatically. Verify %1 now? - + Damit andere Nutzer sehen können, welche Geräte wirklich dir gehören, kannst du sie verifizieren. Das aktiviert auch den Onlinespeicher für Nachrichtenschlüssel. Willst du %1 verifizieren? @@ -2193,42 +2197,42 @@ Example: https://server.my:8787 Apply permission changes - + Berechtigungsänderungen anwenden Which of the subcommunities and rooms should these permissions be applied to? - + Auf welche Unterguppen und Räume sollen diese Berechtigungen angewandt werden? Apply permissions recursively - + Berechtigungen rekursiv anwenden Overwrite exisiting modifications in rooms - + Existierende Änderungen in den Räumen überschreiben No permissions to apply the new permissions here - + Keine Berechtigung die Berechtigungen hier zu verändern No changes needed - + Keine Änderungen notwendig Existing modifications to the permissions in this room will be overwritten - + Existierende Änderungen in diesem Raum werden überschrieben Permissions synchronized with community - + Berechtigungen mit der Gruppe synchronisiert @@ -2466,22 +2470,22 @@ Example: https://server.my:8787 Set the global log level, or a comma-separated list of <component>=<level> pairs, or both. For example, to set the default log level to 'warn' but disable logging for the 'ui' component, pass 'warn,ui=off'. levels:{trace,debug,info,warning,error,critical,off} components:{crypto,db,mtx,net,qml,ui} - + Setze das globale loglevel oder eine kommaseparierte liste con <Komponente>=<Level> Paaren oder beides. Z.B. um das Loglevel auf 'warn' zu setzen aber für die 'ui' Komponente zu deaktivieren, kannst du 'warn,ui=off' verwenden. Level: {trace,debug,info,warning,error,critical,off}, Komponenten: {crypto,db,mtx,net,qml,ui} level - + Level Set the log output type. A comma-separated list is allowed. The default is 'file,stderr'. types:{file,stderr,none} - + Definiere wohin geloggt wird. Eine kommaseparierte Liste kann angegeben werden. Standartwert ist 'file,stderr'. Valide Typen: {file,stderr,none} type - + Typ @@ -2611,7 +2615,7 @@ Example: https://server.my:8787 The selected server does not support a version of the Matrix protocol that this client understands (v1.1 to v1.4). You can't register. - + Der ausgewählte Server unterstützt keine der Matrix versionen, die Nheko versteht (v1.1 bis v1.4). Du kannst dich nicht registrieren. @@ -2654,7 +2658,7 @@ Example: https://server.my:8787 Cancel Thread - + Gesprächsfaden abbrechen diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp index 1910ce0b..bcb89a03 100644 --- a/src/ChatPage.cpp +++ b/src/ChatPage.cpp @@ -404,7 +404,7 @@ ChatPage::dropToLoginPage(const QString &msg) nullptr, tr("Confirm logout"), tr("Because of the following reason Nheko wants to drop you to the login page:\n%1\nIf you " - "think this is a mistake, you can close Nheko instead to possibly recover your encrpytion " + "think this is a mistake, you can close Nheko instead to possibly recover your encryption " "keys. After you have been dropped to the login page, you can sign in again using your " "usual methods.") .arg(msg), From 35673b5b52b28f4f07ae0f5ec50a8b1c76d24038 Mon Sep 17 00:00:00 2001 From: Weblate Date: Wed, 28 Dec 2022 20:25:41 +0000 Subject: [PATCH 06/13] Added translation using Weblate (Ukrainian) Co-authored-by: NullPointerException --- resources/langs/nheko_uk.ts | 5100 +++++++++++++++++++++++++++++++++++ 1 file changed, 5100 insertions(+) create mode 100644 resources/langs/nheko_uk.ts diff --git a/resources/langs/nheko_uk.ts b/resources/langs/nheko_uk.ts new file mode 100644 index 00000000..0e4be6ec --- /dev/null +++ b/resources/langs/nheko_uk.ts @@ -0,0 +1,5100 @@ + + + + + ActiveCallBar + + + Calling... + + + + + + Connecting... + + + + + You are screen sharing + + + + + Hide/Show Picture-in-Picture + + + + + Unmute Mic + + + + + Mute Mic + + + + + AliasEditingModel + + + + + + Failed to unpublish alias %1: %2 + + + + + Failed to update aliases: %1 + + + + + AliasEditor + + + Aliases to %1 + + + + + List of aliases to this room. Usually you can only add aliases on your server. You can have one canonical alias and many alternate aliases. + + + + + Primary alias + + + + + Make primary alias + + + + + Advertise as an alias in this room + + + + + Publish in room directory + + + + + Remove this alias + + + + + #new-alias:server.tld + + + + + Add + + + + + AllowedRoomsSettingsDialog + + + Allowed rooms settings + + + + + List of rooms that allow access to this room. Anyone who is in any of those rooms can join this room. + + + + + Parent community + + + + + Other room + + + + + Enter additional rooms not in the list yet... + + + + + Cache + + + %1 and %n other(s) + + + + + + + + + + Empty Room + + + + + CallInvite + + + Video Call + + + + + Voice Call + + + + + No microphone found. + + + + + CallInviteBar + + + Video Call + + + + + Voice Call + + + + + Devices + + + + + Accept + + + + + Unknown microphone: %1 + + + + + Unknown camera: %1 + + + + + Decline + + + + + No microphone found. + + + + + CallManager + + + Entire screen + + + + + ChatPage + + + Failed to invite user: %1 + + + + + + Invited user: %1 + + + + + Confirm logout + + + + + The cache on your disk is newer than this version of Nheko supports. Please update Nheko or clear your cache. + + + + + Failed to open database, logging out! + + + + + Knock on room + + + + + Do you really want to knock on %1? You may optionally provide a reason for others to accept your knock: + + + + + Failed to knock room: %1 + + + + + Room creation failed: Bad Alias + + + + + Room %1 created. + + + + + + Confirm invite + + + + + Do you really want to invite %1 (%2)? + + + + + Failed to invite %1 to %2: %3 + + + + + Kicked user: %1 + + + + + Failed to ban %1 in %2: %3 + + + + + Banned user: %1 + + + + + Confirm unban + + + + + Do you really want to unban %1 (%2)? + + + + + Failed to unban %1 in %2: %3 + + + + + Unbanned user: %1 + + + + + Do you really want to start a private chat with %1? + + + + + Cache migration failed! + + + + + Because of the following reason Nheko wants to drop you to the login page: +%1 +If you think this is a mistake, you can close Nheko instead to possibly recover your encryption keys. After you have been dropped to the login page, you can sign in again using your usual methods. + + + + + Migrating the cache to the current version failed. This can have different reasons. Please open an issue at https://github.com/Nheko-Reborn/nheko and try to use an older version in the meantime. Alternatively you can try deleting the cache manually. + + + + + Incompatible cache version + + + + + Failed to restore OLM account. Please login again. + + + + + + + Failed to restore save data. Please login again. + + + + + Failed to setup encryption keys. Server response: %1 %2. Please try again later. + + + + + + Please try to login again: %1 + + + + + You failed to join %1. You can try to knock so that others can invite you in. Do you want to do so? +You may optionally provide a reason for others to accept your knock: + + + + + Failed to join room: %1 + + + + + Failed to remove invite: %1 + + + + + Room creation failed: %1 + + + + + Failed to leave room: %1 + + + + + Reason for the kick + + + + + Enter reason for kicking %1 (%2) or hit enter for no reason: + + + + + Failed to kick %1 from %2: %3 + + + + + Reason for the ban + + + + + Enter reason for banning %1 (%2) or hit enter for no reason: + + + + + No network connection + + + + + CommandCompleter + + + /me <message> + + + + + /react <text> + + + + + /join (!roomid|#alias) [reason] + + + + + /knock (!roomid|#alias) [reason] + + + + + /part [reason] + + + + + /leave [reason] + + + + + /invite @userid [reason] + + + + + /kick @userid [reason] + + + + + /ban @userid [reason] + + + + + /unban @userid [reason] + + + + + /redact ($eventid|@userid) + + + + + /roomnick <displayname> + + + + + /shrug [message] + + + + + /fliptable + + + + + /unfliptable + + + + + /sovietflip + + + + + /clear-timeline + + + + + /reset-state + + + + + /rotate-megolm-session + + + + + /md [message] + + + + + /plain [message] + + + + + /rainbow [message] + + + + + /rainbowme [message] + + + + + /notice [message] + + + + + /rainbownotice [message] + + + + + /confetti [message] + + + + + /rainbowconfetti [message] + + + + + /goto ($eventid|message index|matrix:r/room/e/event) + + + + + /converttodm + + + + + /converttoroom + + + + + Send a message expressing an action. + + + + + Send <text> as a reaction when you’re replying to a message. + + + + + Join a room. Reason is optional. + + + + + Ask to join a room. Reason is optional. + + + + + + Leave a room. Reason is optional. + + + + + Invite a user into the current room. Reason is optional. + + + + + Kick a user from the current room. Reason is optional. + + + + + Ban a user from the current room. Reason is optional. + + + + + Unban a user in the current room. Reason is optional. + + + + + Redact an event or all locally cached messages of a user. + + + + + Change your displayname in this room. + + + + + ¯\_(ツ)_/¯ with an optional message. + + + + + (╯°□°)╯︵ ┻━┻ + + + + + ┯━┯╭( º _ º╭) + + + + + ノ┬─┬ノ ︵ ( \o°o)\ + + + + + Clear the currently cached messages in this room. + + + + + Refetch the state in this room. + + + + + Rotate the current symmetric encryption key. + + + + + Send a markdown formatted message (ignoring the global setting). + + + + + Send an unformatted message (ignoring the global setting). + + + + + Send a message in rainbow colors. + + + + + Send /me in rainbow colors. + + + + + Send a bot message. + + + + + Send a bot message in rainbow colors. + + + + + Send a message with confetti. + + + + + Send a message in rainbow colors with confetti. + + + + + Go to this event or link. + + + + + Convert this room to a direct chat. + + + + + Convert this direct chat into a room. + + + + + CommunitiesList + + + Do not show notification counts for this community or tag. + + + + + Hide rooms with this tag or from this community by default. + + + + + Expand + + + + + Collapse + + + + + CommunitiesModel + + + All rooms + + + + + Shows all rooms without filtering. + + + + + Direct Chats + + + + + Show direct chats. + + + + + Favourites + + + + + Rooms you have favourited. + + + + + Low Priority + + + + + Rooms with low priority. + + + + + Server Notices + + + + + Messages from your server or administrator. + + + + + Failed to update community: %1 + + + + + Failed to delete room from community: %1 + + + + + Failed to update community for room: %1 + + + + + Failed to remove community from room: %1 + + + + + ConfirmJoinRoomDialog + + + Confirm community join + + + + + Confirm room join + + + + + %n member(s) + + + + + + + + + Do you want to join this room? You can optionally add a reason below: + + + + + This room can't be joined directly. You can, however, knock on the room and room members can accept or decline this join request. You can additionally provide a reason for them to let you in below: + + + + + Knock + + + + + Join + + + + + CreateDirect + + + Create Direct Chat + + + + + User to invite + + + + + @user:server.tld + + + + + Encryption + + + + + CreateRoom + + + Create Room + + + + + Name + + + + + New community + + + + + New Room + + + + + No name + + + + + Topic + + + + + No topic + + + + + Alias + + + + + Public + + + + + Public rooms can be joined by anyone; private rooms need explicit invites. + + + + + Trusted + + + + + All invitees are given the same power level as the creator + + + + + Encryption + + + + + Caution: Encryption cannot be disabled + + + + + CrossSigningSecrets + + + Decrypt secrets + + + + + Enter your recovery key or passphrase to decrypt your secrets: + + + + + Enter your recovery key or passphrase called %1 to decrypt your secrets: + + + + + Decryption failed + + + + + Failed to decrypt secrets with the provided recovery key or passphrase + + + + + DigitVerification + + + Verification Code + + + + + Please verify the following digits. You should see the same numbers on both sides. If they differ, please press 'They do not match!' to abort verification! + + + + + They do not match! + + + + + They match! + + + + + EmojiPicker + + + Search + + + + + People + + + + + Nature + + + + + Food + + + + + Activity + + + + + Travel + + + + + Objects + + + + + Symbols + + + + + Flags + + + + + EmojiVerification + + + Verification Code + + + + + Please verify the following emoji. You should see the same emoji on both sides. If they differ, please press 'They do not match!' to abort verification! + + + + + The displayed emoji might look different in different clients if a different font is used. Similarly they might be translated into different languages. Nonetheless they should depict one of 64 different objects or animals. For example a lion and a cat are different, but a cat is the same even if one client just shows a cat face, while another client shows a full cat body. + + + + + They do not match! + + + + + They match! + + + + + Encrypted + + + There is no key to unlock this message. We requested the key automatically, but you can try requesting it again if you are impatient. + + + + + This message couldn't be decrypted, because we only have a key for newer messages. You can try requesting access to this message. + + + + + There was an internal error reading the decryption key from the database. + + + + + There was an error decrypting this message. + + + + + The message couldn't be parsed. + + + + + The encryption key was reused! Someone is possibly trying to insert false messages into this chat! + + + + + Unknown decryption error + + + + + Request key + + + + + EncryptionIndicator + + + This message is not encrypted! + + + + + Encrypted by a verified device + + + + + Encrypted by an unverified device, but you have trusted that user so far. + + + + + Encrypted by an unverified device or the key is from an untrusted source like the key backup. + + + + + Failed + + + Verification failed + + + + + Other client does not support our verification protocol. + + + + + Key mismatch detected! + + + + + Device verification timed out. + + + + + Other party canceled the verification. + + + + + Verification messages received out of order! + + + + + Unknown verification error. + + + + + Close + + + + + ForwardCompleter + + + Forward Message + + + + + HiddenEvents + + + + Failed to set hidden events: %1 + + + + + HiddenEventsDialog + + + Hidden events for %1 + + + + + Hidden events + + + + + These events will be <b>shown</b> in %1: + + + + + These events will be <b>shown</b> in all rooms: + + + + + User events + + + + + Joins, leaves, avatar and name changes, bans, … + + + + + Power level changes + + + + + Sent when a moderator is added/removed or the permissions of a room are changed. + + + + + Stickers + + + + + ImagePackEditorDialog + + + Editing image pack + + + + + Add images + + + + + Images (*.png *.webp *.gif *.jpg *.jpeg) + + + + + Select images for pack + + + + + Add to pack + + + + + Change the overview image for this pack + + + + + Overview Image (*.png *.webp *.jpg *.jpeg) + + + + + Select overview image for pack + + + + + State key + + + + + Packname + + + + + Attribution + + + + + + Use as Emoji + + + + + + Use as Sticker + + + + + Shortcode + + + + + Body + + + + + Remove from pack + + + + + Remove + + + + + ImagePackSettingsDialog + + + Image pack settings + + + + + Create account pack + + + + + New room pack + + + + + Private pack + + + + + Pack from this room + + + + + Pack from parent community + + + + + Globally enabled pack + + + + + Enable globally + + + + + Enables this pack to be used in all rooms + + + + + Edit + + + + + Close + + + + + InputBar + + + Select a file + + + + + All Files (*) + + + + + Upload of '%1' failed + + + + + InviteDialog + + + Invite users to %1 + + + + + User ID to invite + + + + + @joe:matrix.org + Example user id. The name 'joe' can be localized however you want. + + + + + Add + + + + + Invite + + + + + Cancel + + + + + JoinRoomDialog + + + Join room + + + + + Room ID or alias + + + + + Join + + + + + LeaveRoomDialog + + + Leave room + + + + + Are you sure you want to leave? + + + + + LoginPage + + + Matrix ID + + + + + e.g @joe:matrix.org + + + + + Your login name. A mxid should start with @ followed by the user ID. After the user ID you need to include your server name after a :. +You can also put your homeserver address there if your server doesn't support .well-known lookup. +Example: @user:server.my +If Nheko fails to discover your homeserver, it will show you a field to enter the server manually. + + + + + Password + + + + + Your password. + + + + + Device name + + + + + A name for this device which will be shown to others when verifying your devices. If nothing is provided, a default is used. + + + + + The address that can be used to contact you homeserver's client API. +Example: https://server.my:8787 + + + + + Homeserver address + + + + + server.my:8787 + + + + + LOGIN + + + + + Back + + + + + + + + You have entered an invalid Matrix ID e.g @joe:matrix.org + + + + + Autodiscovery failed. Received malformed response. + + + + + Autodiscovery failed. Unknown error when requesting .well-known. + + + + + The required endpoints were not found. Possibly not a Matrix server. + + + + + Received malformed response. Make sure the homeserver domain is valid. + + + + + An unknown error occured. Make sure the homeserver domain is valid. + + + + + The selected server does not support a version of the Matrix protocol, that this client understands (v1.1 to v1.4). You can't sign in. + + + + + Sign in with Apple + + + + + Continue with Facebook + + + + + Sign in with Google + + + + + Sign in with Twitter + + + + + Login using %1 + + + + + SSO LOGIN + + + + + Empty password + + + + + SSO login failed + + + + + LogoutDialog + + + Log out + + + + + A call is in progress. Log out? + + + + + Are you sure you want to log out? + + + + + MediaUpload + + + + Failed to upload media. Please try again. + + + + + MessageDelegate + + + %1 removed a message + + + + + %1 enabled encryption + + + + + %2 changed the room name to: %1 + + + + + %1 removed the room name + + + + + %2 changed the topic to: %1 + + + + + %1 removed the topic + + + + + %1 changed the room avatar + + + + + %1 changed the pinned messages. + + + + + %1 changed the addresses for this room. + + + + + %1 created and configured room: %2 + + + + + %1 placed a voice call. + + + + + %1 placed a video call. + + + + + %1 placed a call. + + + + + %1 rejected the call. + + + + + %1 select answer + + + + + + %1 is negotiating the call... + + + + + Allow them in + + + + + %1 answered the call. + + + + + This room was replaced for the following reason: %1 + + + + + Go to replacement room + + + + + %1 changed the parent communities for this room. + + + + + %1 ended the call. + + + + + MessageInput + + + Hang up + + + + + Place a call + + + + + Already on a call + + + + + Send a file + + + + + Write a message... + + + + + Stickers + + + + + Emoji + + + + + Send + + + + + You don't have permission to send messages in this room + + + + + MessageView + + + Edit + + + + + React + + + + + Reply in thread + + + + + New thread + + + + + Reply + + + + + Options + + + + + Reason for removal + + + + + Enter reason for removal or hit enter for no reason: + + + + + + &Copy + + + + + + Copy &link location + + + + + Re&act + + + + + Repl&y + + + + + &Edit + + + + + &Thread + + + + + Un&pin + + + + + &Pin + + + + + &Read receipts + + + + + &Forward + + + + + &Mark as read + + + + + View raw message + + + + + View decrypted raw message + + + + + Remo&ve message + + + + + &Save as + + + + + &Open in external program + + + + + Copy link to eve&nt + + + + + &Go to quoted message + + + + + NewVerificationRequest + + + Send Verification Request + + + + + Received Verification Request + + + + + To allow other users to see which of your devices actually belong to you, you can verify them. This also allows key backup to work automatically. Verify an unverified device now? (Please make sure you have one of those devices available.) + + + + + To allow other users to see which of your devices actually belong to you, you can verify them. This also allows key backup to work automatically. Verify %1 now? + + + + + To ensure that no malicious user can eavesdrop on your encrypted communications you can verify the other party. + + + + + %1 has requested to verify their device %2. + + + + + %1 using the device %2 has requested to be verified. + + + + + Your device (%1) has requested to be verified. + + + + + Cancel + + + + + Deny + + + + + Start verification + + + + + Accept + + + + + NotificationWarning + + + You are about to notify the whole room + + + + + NotificationsManager + + + + %1 sent an encrypted message + + + + + %1 replied: %2 + Format a reply in a notification. %1 is the sender, %2 the message + + + + + %1 replied with an encrypted message + + + + + %1 replied to a message + + + + + %1 sent a message + + + + + PlaceCall + + + Place a call to %1? + + + + + No microphone found. + + + + + Voice + + + + + Video + + + + + Screen + + + + + Cancel + + + + + Placeholder + + + unimplemented event: + + + + + PowerLevelEditor + + + Permissions in %1 + + + + + Be careful when editing permissions. You can't lower the permissions of people with a same or higher level than you. Be careful when promoting others. + + + + + Roles + + + + + Users + + + + + Move permissions between roles to change them + + + + + + Administrator (%1) + + + + + + Moderator (%1) + + + + + User (%1) + + + + + + Custom (%1) + + + + + Remove event type + + + + + Add event type + + + + + Add new role + + + + + Add + + + + + Move users up or down to change their permissions + + + + + Remove user + + + + + Add user + + + + + PowerLevelSpacesApplyDialog + + + Apply permission changes + + + + + Which of the subcommunities and rooms should these permissions be applied to? + + + + + Apply permissions recursively + + + + + Overwrite exisiting modifications in rooms + + + + + No permissions to apply the new permissions here + + + + + No changes needed + + + + + Existing modifications to the permissions in this room will be overwritten + + + + + Permissions synchronized with community + + + + + PowerLevels + + + Failed to update powerlevel: %1 + + + + + PowerlevelEditingModels + + + Failed to update powerlevel: %1 + + + + + PowerlevelsTypeListModel + + + Other events + + + + + Other state events + + + + + Remove other users + + + + + Ban other users + + + + + Invite other users + + + + + Redact events sent by others + + + + + Reactions + + + + + Deprecated aliases events + + + + + Change the room avatar + + + + + Change the room addresses + + + + + Send encrypted messages + + + + + Enable encryption + + + + + Change guest access + + + + + Change history visibility + + + + + Change who can join + + + + + Send messages + + + + + Change the room name + + + + + Change the room permissions + + + + + Change the rooms topic + + + + + Change the widgets + + + + + Change the widgets (experimental) + + + + + Redact own events + + + + + Change the pinned events + + + + + Upgrade the room + + + + + Send stickers + + + + + Ban users using policy rules + + + + + Ban rooms using policy rules + + + + + Ban servers using policy rules + + + + + Edit child communities and rooms + + + + + Change parent communities + + + + + Start a call + + + + + Negotiate a call + + + + + Answer a call + + + + + Hang up a call + + + + + Reject a call + + + + + Change the room emotes + + + + + PowerlevelsUserListModel + + + Other users + + + + + QCoreApplication + + + Create a unique profile which allows you to log into several accounts at the same time and start multiple instances of nheko. + + + + + profile + + + + + profile name + + + + + QObject + + + Alias for '--log-level trace'. + + + + + Set the global log level, or a comma-separated list of <component>=<level> pairs, or both. For example, to set the default log level to 'warn' but disable logging for the 'ui' component, pass 'warn,ui=off'. levels:{trace,debug,info,warning,error,critical,off} components:{crypto,db,mtx,net,qml,ui} + + + + + level + + + + + Set the log output type. A comma-separated list is allowed. The default is 'file,stderr'. types:{file,stderr,none} + + + + + type + + + + + Respond + + + + + Send + + + + + Write a message... + + + + + ReadReceipts + + + Read receipts + + + + + ReadReceiptsModel + + + Yesterday, %1 + + + + + RegisterPage + + + Username + + + + + The username must not be empty, and must contain only the characters a-z, 0-9, ., _, =, -, and /. + + + + + + Back + + + + + Password + + + + + Please choose a secure password. The exact requirements for password strength may depend on your server. + + + + + Password confirmation + + + + + A name for this device which will be shown to others when verifying your devices. If nothing is provided a default is used. + + + + + Homeserver + + + + + your.server + + + + + A server that allows registration. Since matrix is decentralized, you need to first find a server you can register on or host your own. + + + + + Your passwords do not match! + + + + + Device name + + + + + REGISTER + + + + + Autodiscovery failed. Received malformed response. + + + + + Autodiscovery failed. Unknown error when requesting .well-known. + + + + + The required endpoints were not found. Possibly not a Matrix server. + + + + + Received malformed response. Make sure the homeserver domain is valid. + + + + + An unknown error occured. Make sure the homeserver domain is valid. + + + + + The selected server does not support a version of the Matrix protocol that this client understands (v1.1 to v1.4). You can't register. + + + + + Server does not support querying registration flows! + + + + + Server does not support registration. + + + + + Invalid username. + + + + + Name already in use. + + + + + Part of the reserved namespace. + + + + + ReplyPopup + + + Close + + + + + Cancel Edit + + + + + Cancel Thread + + + + + RoomDirectory + + + Explore Public Rooms + + + + + Search for public rooms + + + + + Choose custom homeserver + + + + + RoomInfo + + + no version stored + + + + + RoomList + + + New tag + + + + + Enter the tag you want to use: + + + + + Open separately + + + + + Room settings + + + + + Leave room + + + + + Copy room link + + + + + Tag room as: + + + + + Favourite + + + + + Low priority + + + + + Server notice + + + + + Create new tag... + + + + + Add or remove from community... + + + + + Status Message + + + + + Enter your status message: + + + + + Profile settings + + + + + Set status message + + + + + Logout + + + + + Encryption not set up + Cross-signing setup has not run yet. + + + + + Unverified login + The user just signed in with this device and hasn't verified their master key. + + + + + Please verify your other devices + There are unverified devices signed in to this account. + + + + + Close + + + + + Start a new chat + + + + + Join a room + + + + + Create a new room + + + + + Start a direct chat + + + + + Create a new community + + + + + Room directory + + + + + Search rooms (Ctrl+K) + + + + + User settings + + + + + RoomMembers + + + Members of %1 + + + + + %n people in %1 + Summary above list of members + + + + + + + + + Invite more people + + + + + Search... + + + + + Sort by: + + + + + User ID + + + + + Display name + + + + + Power level + + + + + Administrator: %1 + + + + + Moderator: %1 + + + + + User: %1 + + + + + This room is not encrypted! + + + + + This user is verified. + + + + + This user isn't verified, but is still using the same master key from the first time you met. + + + + + This user has unverified devices! + + + + + RoomSettings + + + Room Settings + + + + + Change room avatar. + + + + + Change name of this room + + + + + %n member(s) + + + + + + + + + View members of %1 + + + + + No topic set + + + + + Change topic of this room + + + + + SETTINGS + + + + + Notifications + + + + + Muted + + + + + Mentions only + + + + + All messages + + + + + Encryption + + + + + End-to-End Encryption + + + + + Encryption is currently experimental and things might break unexpectedly. <br> + Please take note that it can't be disabled afterwards. + + + + + Permission + + + + + View and change the permissions in this room + + + + + View and change the addresses/aliases of this room + + + + + Sticker & Emote Settings + + + + + + Change + + + + + Hidden events + + + + + + + Configure + + + + + Anyone can join + + + + + Allow knocking + + + + + Allow joining via other rooms + + + + + Rooms to join via + + + + + Change the list of rooms users can join this room via. Usually this is the official community of this room. + + + + + Allow guests to join + + + + + Apply access rules + + + + + Aliases + + + + + Change what packs are enabled, remove packs, or create new ones + + + + + Select events to hide in this room + + + + + INFO + + + + + Internal ID + + + + + Copied to clipboard + + + + + Room Version + + + + + show less + + + + + show more + + + + + Failed to enable encryption: %1 + + + + + Select an avatar + + + + + All Files (*) + + + + + The selected file is not an image + + + + + Error while reading file: %1 + + + + + + Failed to upload image: %s + + + + + RoomlistModel + + + Pending invite. + + + + + Previewing this room + + + + + No preview available + + + + + Root + + + Please enter your login password to continue: + + + + + Please enter a valid email address to continue: + + + + + Please enter a valid phone number to continue: + + + + + Please enter the token which has been sent to you: + + + + + Wait for the confirmation link to arrive, then continue. + + + + + ScreenShare + + + Share desktop with %1? + + + + + Window: + + + + + Frame rate: + + + + + Include your camera picture-in-picture + + + + + Request remote camera + + + + + + View your callee's camera like a regular video call + + + + + Hide mouse cursor + + + + + Share + + + + + Preview + + + + + Cancel + + + + + SecretStorage + + + Failed to connect to secret storage + + + + + Nheko could not connect to the secure storage to save encryption secrets to. This can have multiple reasons. Check if your D-Bus service is running and you have configured a service like KWallet, Gnome Keyring, KeePassXC or the equivalent for your platform. If you are having trouble, feel free to open an issue here: https://github.com/Nheko-Reborn/nheko/issues + + + + + SelfVerificationCheck + + + This is your recovery key. You will need it to restore access to your encrypted messages and verification keys. Keep this safe. Don't share it with anyone and don't lose it! Do not pass go! Do not collect $200! + + + + + Encryption setup successfully + + + + + Failed to setup encryption: %1 + + + + + Setup Encryption + + + + + Hello and welcome to Matrix! +It seems like you are new. Before you can securely encrypt your messages, we need to setup a few small things. You can either press accept immediately or adjust a few basic options. We also try to explain a few of the basics. You can skip those parts, but they might prove to be helpful! + + + + + Activate Encryption + + + + + It seems like you have encryption already configured for this account. To be able to access your encrypted messages and make this device appear as trusted, you can either verify an existing device or (if you have one) enter your recovery passphrase. Please select one of the options below. +If you choose verify, you need to have the other device available. If you choose "enter passphrase", you will need your recovery key or passphrase. If you click cancel, you can choose to verify yourself at a later point. + + + + + verify + + + + + enter passphrase + + + + + SelfVerificationStatus + + + Failed to create keys for cross-signing! + + + + + Failed to create keys for online key backup! + + + + + Failed to create keys for secure server side secret storage! + + + + + Encryption Setup + + + + + Encryption setup failed: %1 + + + + + Identity key changed. This breaks E2EE, so logging out. + + + + + SingleImagePackModel + + + + Failed to update image pack: %1 + + + + + Failed to delete old image pack: %1 + + + + + + Failed to open image: %1 + + + + + + Failed to upload image: %1 + + + + + SpaceMenuLevel + + + Add or remove from community + + + + + Official community for this room + + + + + Affiliated community for this room + + + + + Listed only for community members + + + + + Listed only for room members + + + + + Not related + + + + + Subcommunities + + + + + StatusIndicator + + + Failed + + + + + Sent + + + + + Received + + + + + Read + + + + + StickerPicker + + + Search + + + + + Success + + + Successful Verification + + + + + Verification successful! Both sides verified their devices! + + + + + Close + + + + + TimelineModel + + + + Message redaction failed: %1 + + + + + + Failed to encrypt event, sending aborted! + + + + + Save image + + + + + Save video + + + + + Save audio + + + + + Save file + + + + + %1 and %2 are typing. + Multiple users are typing. First argument is a comma separated list of potentially multiple users. Second argument is the last user of that list. (If only one user is typing, %1 is empty. You should still use it in your string though to silence Qt warnings.) + + + + + + + + + %1 opened the room to the public. + + + + + %1 allowed to join this room by knocking. + + + + + %1 allowed members of the following rooms to automatically join this room: %2 + + + + + %1 made the room open to guests. + + + + + %1 has closed the room to guest access. + + + + + %1 made the room history world readable. Events may be now read by non-joined people. + + + + + %1 set the room history visible to members from this point on. + + + + + %1 set the room history visible to members since they were invited. + + + + + %1 set the room history visible to members since they joined the room. + + + + + + %1 has changed the room's permissions. + + + + + %1 has changed the room's kick powerlevel from %2 to %3. + + + + + %n member(s) can now kick room members. + + + + + + + + + %1 can now kick room members. + + + + + %1 has changed the room's redact powerlevel from %2 to %3. + + + + + %n member(s) can now redact room messages. + + + + + + + + + %1 can now redact room messages. + + + + + %1 has changed the room's ban powerlevel from %2 to %3. + + + + + %n member(s) can now ban room members. + + + + + + + + + %1 can now ban room members. + + + + + %1 has changed the room's state_default powerlevel from %2 to %3. + + + + + %n member(s) can now send state events. + + + + + + + + + %1 can now send state events. + + + + + %1 has changed the room's invite powerlevel from %2 to %3. + + + + + %1 has changed the room's events_default powerlevel from %2 to %3. New users can now not send any events. + + + + + %1 has changed the room's events_default powerlevel from %2 to %3. New users can now send events that are not otherwise restricted. + + + + + %1 has changed the room's events_default powerlevel from %2 to %3. + + + + + %1 has made %2 an administrator of this room. + + + + + %1 has made %2 a moderator of this room. + + + + + %1 has downgraded %2 to moderator of this room. + + + + + %1 has changed the powerlevel of %2 from %3 to %4. + + + + + %1 allowed only administrators to send "%2". + + + + + %1 allowed only moderators to send "%2". + + + + + %1 allowed everyone to send "%2". + + + + + %1 has changed the powerlevel of event type "%2" from the default to %3. + + + + + %1 has changed the powerlevel of event type "%2" from %3 to %4. + + + + + (empty) + + + + + %1 removed the following images from the pack %2:<br>%3 + + + + + %1 added the following images to the pack %2:<br>%3 + + + + + %1 changed the sticker and emotes in this room. + + + + + %1 disabled the rule to ban users matching %2. + + + + + %1 added a rule to ban users matching %2 for '%3'. + + + + + %1 disabled the rule to ban rooms matching %2. + + + + + %1 added a rule to ban rooms matching %2 for '%3'. + + + + + %1 disabled the rule to ban servers matching %2. + + + + + %1 added a rule to ban servers matching %2 for '%3'. + + + + + Removed by %1 + + + + + %1 (%2) removed this message at %3 + + + + + Removed by %1 because: %2 + + + + + %1 (%2) removed this message at %3 +Reason: %4 + + + + + %2 revoked the invite to %1. + + + + + %2 kicked %1. + + + + + %2 unbanned %1. + + + + + %2 rejected the knock from %1. + + + + + %1 changed their avatar. + + + + + %1 changed some profile info. + + + + + %1 joined. + + + + + %1 joined via authorisation from %2's server. + + + + + %1 rejected their invite. + + + + + %1 left the room. + + + + + Reason: %1 + + + + + %1 redacted their knock. + + + + + You joined this room. + + + + + %1 made this room require an invitation to join. + + + + + %1 invited %2. + + + + + %1 has changed their avatar and changed their display name to %2. + + + + + %1 has changed their display name to %2. + + + + + %1 left after having already left! + This is a leave event after the user already left and shouldn't happen apart from state resets + + + + + %1 banned %2 + + + + + %1 knocked. + + + + + TimelineRow + + + Edited + + + + + Part of a thread + + + + + TimelineView + + + No room open + + + + + No preview available + + + + + Settings + + + + + %n member(s) + + + + + + + + + View members of %1 + + + + + join the conversation + + + + + accept invite + + + + + decline invite + + + + + Hide invite reason + + + + + Show invite reason + + + + + Back to room list + + + + + TopBar + + + Back to room list + + + + + No room selected + + + + + In %1 + + + + + Show room members. + + + + + This room contains only verified devices. + + + + + This room contains verified devices and devices which have never changed their master key. + + + + + This room contains unverified devices! + + + + + Show or hide pinned messages + + + + + Search this room + + + + + Room options + + + + + Invite users + + + + + Members + + + + + Leave room + + + + + Settings + + + + + Unpin + + + + + Enter search query + + + + + TrayIcon + + + Show + + + + + Quit + + + + + UIA + + + No available registration flows! + + + + + + + Registration aborted + + + + + Please enter a valid registration token. + + + + + Invalid token + + + + + UploadBox + + + Upload %n file(s) + + + + + + + + + UserProfile + + + Global User Profile + + + + + Room User Profile + + + + + Change avatar globally. + + + + + Change avatar. Will only apply to this room. + + + + + Change display name globally. + + + + + Change display name. Will only apply to this room. + + + + + Room: %1 + + + + + This is a room-specific profile. The user's name and avatar may be different from their global versions. + + + + + Open the global profile for this user. + + + + + + Verify + + + + + Start a private chat. + + + + + Kick the user. + + + + + Ban the user. + + + + + Refresh device list. + + + + + Sign out this device. + + + + + Change device name. + + + + + Last seen %1 from %2 + + + + + Unverify + + + + + Sign out device %1 + + + + + You signed out this device. + + + + + Select an avatar + + + + + All Files (*) + + + + + The selected file is not an image + + + + + Error while reading file: %1 + + + + + UserSettings + + + + Default + + + + + UserSettingsModel + + + Theme + + + + + Scale factor + + + + + Highlight message on hover + + + + + Large Emoji in timeline + + + + + Minimize to tray + + + + + Start in tray + + + + + Send messages as Markdown + + + + + Use shift+enter to send and enter to start a new line + + + + + Enable message bubbles + + + + + Enable small Avatars + + + + + Play animated images only on hover + + + + + Typing notifications + + + + + Sort rooms by unreads + + + + + Show buttons in timeline + + + + + Limit width of timeline + + + + + Read receipts + + + + + Desktop notifications + + + + + Alert on notification + + + + + Circular Avatars + + + + + Use identicons + + + + + Open images with external program + + + + + Open videos with external program + + + + + Decrypt messages in sidebar + + + + + Decrypt notifications + + + + + Display fancy effects such as confetti + + + + + Privacy Screen + + + + + Privacy screen timeout (in seconds [0 - 3600]) + + + + + Touchscreen mode + + + + + Font size + + + + + Font Family + + + + + Emoji Font Family + + + + + Ringtone + + + + + Microphone + + + + + Camera + + + + + Camera resolution + + + + + Camera frame rate + + + + + Allow fallback call assist server + + + + + Send encrypted messages to verified users only + + + + + Share keys with verified users and devices + + + + + Online Key Backup + + + + + Profile + + + + + User ID + + + + + Accesstoken + + + + + Device ID + + + + + Device Fingerprint + + + + + Homeserver + + + + + Version + + + + + Platform + + + + + GENERAL + + + + + TIMELINE + + + + + SIDEBAR + + + + + TRAY + + + + + NOTIFICATIONS + + + + + CALLS + + + + + ENCRYPTION + + + + + INFO + + + + + Session Keys + + + + + Cross Signing Secrets + + + + + Online backup key + + + + + Self signing key + + + + + User signing key + + + + + Master signing key + + + + + Expose room information via D-Bus + + + + + Default + + + + + Set the notification sound to play when a call invite arrives + + + + + Set timeout (in seconds) for how long after window loses +focus before the screen will be blurred. +Set to 0 to blur immediately after focus loss. Max value of 1 hour (3600 seconds) + + + + + Change the background color of messages when you hover over them. + + + + + Make font size larger if messages with only a few emojis are displayed. + + + + + Keep the application running in the background after closing the client window. + + + + + Start the application in the background without showing the client window. + + + + + Allow using markdown in messages. +When disabled, all messages are sent as a plain text. + + + + + Invert the behavior of the enter key in the text input, making it send the message when shift+enter is pressed and starting a new line when enter is pressed. + + + + + Messages get a bubble background. This also triggers some layout changes (WIP). + + + + + Avatars are resized to fit above the message. + + + + + Plays media like GIFs or WEBPs only when explicitly hovering over them. + + + + + Show who is typing in a room. +This will also enable or disable sending typing notifications to others. + + + + + Show buttons to quickly reply, react or access additional options next to each message. + + + + + Notify about received messages when the client is not currently focused. + + + + + Change the appearance of user avatars in chats. +OFF - square, ON - circle. + + + + + Decrypt messages shown in notifications for encrypted chats. + + + + + Choose where to show the total number of notifications contained within a community or tag. + + + + + Some messages can be sent with fancy effects. For example, messages sent with '/confetti' will show confetti on screen. + + + + + Automatically replies to key requests from other users if they are verified, even if that device shouldn't have access to those keys otherwise. + + + + + The key to verify your own devices. If it is cached, verifying one of your devices will mark it verified for all your other devices and for users that have verified you. + + + + + Show an alert when a message is received. +This usually causes the application icon in the task bar to animate in some fashion. + + + + + Communities sidebar + + + + + Show message counts for communities and tags + + + + + Set the max width of messages in the timeline (in pixels). This can help readability on wide screen when Nheko is maximized + + + + + Show a column containing communities and tags next to the room list. + + + + + Display rooms with new messages first. +If this is off, the list of rooms will only be sorted by the timestamp of the last message in a room. +If this is on, rooms which have active notifications (the small circle with a number in it) will be sorted on top. Rooms that you have muted will still be sorted by timestamp, since you don't seem to consider them as important as the other rooms. + + + + + Show if your message was read. +Status is displayed next to timestamps. +Warning: If your homeserver does not support this, your rooms will never be marked as read! + + + + + Display an identicon instead of a letter when no avatar is set. + + + + + Opens images with an external program when tapping the image. +Note that when this option is ON, opened files are left unencrypted on disk and must be manually deleted. + + + + + Opens videos with an external program when tapping the video. +Note that when this option is ON, opened files are left unencrypted on disk and must be manually deleted. + + + + + Decrypt the messages shown in the sidebar. +Only affects messages in encrypted chats. + + + + + When the window loses focus, the timeline will +be blurred. + + + + + Will prevent text selection in the timeline to make touch scrolling easier. + + + + + Change the scale factor of the whole user interface. + + + + + Will use turn.matrix.org as assist when your home server does not offer one. + + + + + Requires a user to be verified to send encrypted messages to them. This improves safety but makes E2EE more tedious. + + + + + Download message encryption keys from and upload to the encrypted online key backup. + + + + + The key to decrypt online key backups. If it is cached, you can enable online key backup to store encryption keys securely encrypted on the server. + + + + + The key to verify other users. If it is cached, verifying a user will verify all their devices. + + + + + Your most important key. You don't need to have it cached, since not caching it makes it less likely it can be stolen and it is only needed to rotate your other signing keys. + + + + + Allow third-party plugins and applications to load information about rooms you are in via D-Bus. This can have useful applications, but it also could be used for nefarious purposes. Enable at your own risk. + +This setting will take effect upon restart. + + + + + Select a file + + + + + All Files (*) + + + + + Open Sessions File + + + + + + + + + + Error + + + + + + File Password + + + + + Enter the passphrase to decrypt the file: + + + + + + The password cannot be empty + + + + + Enter passphrase to encrypt your session keys: + + + + + File to save the exported session keys + + + + + UserSettingsPage + + + REQUEST + + + + + DOWNLOAD + + + + + CACHED + + + + + NOT CACHED + + + + + Back + + + + + IMPORT + + + + + EXPORT + + + + + VerificationManager + + + No encrypted private chat found with this user. Create an encrypted private chat with this user and try again. + + + + + Waiting + + + Waiting for other party… + + + + + Waiting for other side to accept the verification request. + + + + + Waiting for other side to continue the verification process. + + + + + Waiting for other side to complete the verification process. + + + + + Cancel + + + + + WelcomePage + + + Welcome to nheko! The desktop client for the Matrix protocol. + + + + + Enjoy your stay! + + + + + REGISTER + + + + + LOGIN + + + + + descriptiveTime + + + Yesterday + + + + + dialogs::FallbackAuth + + + Open Fallback in Browser + + + + + Cancel + + + + + Confirm + + + + + Open the fallback, follow the steps, and confirm after completing them. + + + + + dialogs::ReCaptcha + + + Open reCAPTCHA + + + + + Cancel + + + + + Confirm + + + + + Solve the reCAPTCHA and press the confirm button + + + + + message-description sent: + + + You sent an audio clip + + + + + %1 sent an audio clip + + + + + You sent an image + + + + + %1 sent an image + + + + + You sent a file + + + + + %1 sent a file + + + + + You sent a video + + + + + %1 sent a video + + + + + You sent a sticker + + + + + %1 sent a sticker + + + + + You sent a notification + + + + + %1 sent a notification + + + + + + You: %1 + + + + + + %1: %2 + + + + + You sent some confetti + + + + + %1 sent some confetti + + + + + You sent an encrypted message + + + + + %1 sent an encrypted message + + + + + You placed a call + + + + + %1 placed a call + + + + + You answered a call + + + + + %1 answered a call + + + + + You ended a call + + + + + %1 ended a call + + + + + You rejected a call + + + + + %1 rejected a call + + + + + utils + + + Unknown Message Type + + + + From 114fa0868a6fc4ed2762bccde5181d8be5559e4f Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 28 Dec 2022 21:43:43 +0100 Subject: [PATCH 07/13] Skip notifying for your own messages --- src/ChatPage.cpp | 19 ++++++++++++------- src/timeline/TimelineModel.cpp | 5 +++++ 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp index bcb89a03..27019ba3 100644 --- a/src/ChatPage.cpp +++ b/src/ChatPage.cpp @@ -266,6 +266,18 @@ ChatPage::ChatPage(QSharedPointer userSettings, QObject *parent) relatedEvents; for (const auto &event : room.timeline.events) { + auto event_id = mtx::accessors::event_id(event); + + // skip already read events + if (currentReadMarker && + currentReadMarker > cache::getEventIndex(room_id, event_id)) + continue; + + // skip our messages + auto sender = mtx::accessors::sender(event); + if (sender == http::client()->user_id().to_string()) + continue; + mtx::events::collections::TimelineEvent te{event}; std::visit([room_id = room_id](auto &event_) { event_.room_id = room_id; }, te.data); @@ -304,13 +316,6 @@ ChatPage::ChatPage(QSharedPointer userSettings, QObject *parent) actions.end(), mtx::pushrules::actions::Action{ mtx::pushrules::actions::notify{}}) != actions.end()) { - auto event_id = mtx::accessors::event_id(event); - - // skip already read events - if (currentReadMarker && - currentReadMarker > cache::getEventIndex(room_id, event_id)) - continue; - if (!cache::isNotificationSent(event_id)) { // We should only send one notification per event. cache::markSentNotification(event_id); diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index 46f8e57c..b9725ecc 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -747,6 +747,11 @@ TimelineModel::data(const mtx::events::collections::TimelineEvents &event, int r case Notificationlevel: { const auto &push = ChatPage::instance()->pushruleEvaluator(); if (push) { + // skip our messages + auto sender = mtx::accessors::sender(event); + if (sender == http::client()->user_id().to_string()) + return qml_mtx_events::NotificationLevel::Nothing; + const auto &id = event_id(event); std::vector> relatedEvents; From 69c11d45331c153b0ea0676eecf4f42c2fdfad9b Mon Sep 17 00:00:00 2001 From: Joseph Donofry Date: Wed, 28 Dec 2022 18:51:30 -0500 Subject: [PATCH 08/13] Fix send message logic bug introduced with shift+enter setting --- resources/qml/MessageInput.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/MessageInput.qml b/resources/qml/MessageInput.qml index 7f5f63ec..ab6e260f 100644 --- a/resources/qml/MessageInput.qml +++ b/resources/qml/MessageInput.qml @@ -219,7 +219,7 @@ Rectangle { } else if (event.matches(StandardKey.InsertLineSeparator)) { if (popup.opened) popup.close(); - if (Settings.invertEnterKey && !Qt.inputMethod.visible || Qt.platform.os === "windows") { + if (Settings.invertEnterKey && (!Qt.inputMethod.visible || Qt.platform.os === "windows")) { room.input.send(); event.accepted = true; } @@ -234,7 +234,7 @@ Rectangle { return; } } - if (!Settings.invertEnterKey && !Qt.inputMethod.visible || Qt.platform.os === "windows") { + if (!Settings.invertEnterKey && (!Qt.inputMethod.visible || Qt.platform.os === "windows")) { room.input.send(); event.accepted = true; } From 6176ce7c2b2b4ed80f9cca6c5985907af414b57a Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 28 Dec 2022 22:26:33 +0100 Subject: [PATCH 09/13] Limit build jobs on small systems --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 623a7be5..5e0873d9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -204,9 +204,10 @@ build-flatpak-arm64: - flatpak --noninteractive install --user flathub org.kde.Sdk//5.15-22.08 script: - export VERSION=$(git describe) + - if [ "$(grep MemTotal /proc/meminfo | tr -cd '[0-9]')" -lt "6000000" ]; then export EXTRA_FLAGS='--jobs=3'; fi - mkdir -p build-flatpak - cd build-flatpak - - flatpak-builder --user --disable-rofiles-fuse --ccache --repo=repo --default-branch=${CI_COMMIT_REF_NAME//\//_} --subject="Build of Nheko ${VERSION} `date` for arm64" app ../io.github.NhekoReborn.Nheko.yaml + - flatpak-builder --user --disable-rofiles-fuse --ccache $EXTRA_FLAGS --repo=repo --default-branch=${CI_COMMIT_REF_NAME//\//_} --subject="Build of Nheko ${VERSION} `date` for arm64" app ../io.github.NhekoReborn.Nheko.yaml - flatpak build-bundle repo nheko-arm64.flatpak io.github.NhekoReborn.Nheko ${CI_COMMIT_REF_NAME//\//_} after_script: - (cd ./scripts && ./upload-to-flatpak-repo.sh ../build-flatpak/repo) || true From 5f315d8a3cadd8f94b3701e1174b735f09b8c0b7 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 2 Jan 2023 04:21:26 +0100 Subject: [PATCH 10/13] Fix pagination after timeline clear --- src/timeline/TimelineModel.cpp | 3 +++ src/timeline/TimelineModel.h | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index b9725ecc..f3d92e31 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -975,6 +975,9 @@ TimelineModel::addEvents(const mtx::responses::Timeline &timeline) if (timeline.events.empty()) return; + if (timeline.limited) + setPaginationInProgress(false); + events.handleSync(timeline); using namespace mtx::events; diff --git a/src/timeline/TimelineModel.h b/src/timeline/TimelineModel.h index 01d80797..59ad1b37 100644 --- a/src/timeline/TimelineModel.h +++ b/src/timeline/TimelineModel.h @@ -398,7 +398,11 @@ public slots: void setThread(const QString &newThread); void resetThread(); void setDecryptDescription(bool decrypt) { decryptDescription = decrypt; } - void clearTimeline() { events.clearTimeline(); } + void clearTimeline() + { + events.clearTimeline(); + setPaginationInProgress(false); + } void resetState(); void receivedSessionKey(const std::string &session_key) { From 3a6a905429309ba37a611a364ad40987133f93a2 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 2 Jan 2023 04:25:33 +0100 Subject: [PATCH 11/13] A whole new year full of excitement and possibilities! --- resources/qml/Avatar.qml | 1 + resources/qml/ChatPage.qml | 1 + resources/qml/CommunitiesList.qml | 1 + resources/qml/Completer.qml | 1 + resources/qml/ElidedLabel.qml | 1 + resources/qml/EncryptionIndicator.qml | 1 + resources/qml/ForwardCompleter.qml | 1 + resources/qml/ImageButton.qml | 1 + resources/qml/MatrixText.qml | 1 + resources/qml/MatrixTextField.qml | 1 + resources/qml/MessageInput.qml | 1 + resources/qml/MessageView.qml | 1 + resources/qml/NhekoBusyIndicator.qml | 1 + resources/qml/NotificationWarning.qml | 1 + resources/qml/PrivacyScreen.qml | 1 + resources/qml/QuickSwitcher.qml | 1 + resources/qml/Reactions.qml | 1 + resources/qml/ReplyPopup.qml | 1 + resources/qml/RoomList.qml | 1 + resources/qml/Root.qml | 1 + resources/qml/ScrollHelper.qml | 1 + resources/qml/SelfVerificationCheck.qml | 1 + resources/qml/StatusIndicator.qml | 1 + resources/qml/TimelineRow.qml | 1 + resources/qml/TimelineView.qml | 1 + resources/qml/ToggleButton.qml | 1 + resources/qml/TopBar.qml | 1 + resources/qml/TypingIndicator.qml | 1 + resources/qml/UploadBox.qml | 1 + resources/qml/components/AdaptiveLayout.qml | 1 + resources/qml/components/AdaptiveLayoutElement.qml | 1 + resources/qml/components/AvatarListTile.qml | 1 + resources/qml/components/FlatButton.qml | 1 + resources/qml/components/MainWindowDialog.qml | 1 + resources/qml/components/NotificationBubble.qml | 1 + resources/qml/components/ReorderableListview.qml | 1 + resources/qml/components/SpaceMenuLevel.qml | 1 + resources/qml/components/TextButton.qml | 1 + resources/qml/delegates/Encrypted.qml | 1 + resources/qml/delegates/FileMessage.qml | 1 + resources/qml/delegates/ImageMessage.qml | 1 + resources/qml/delegates/MessageDelegate.qml | 1 + resources/qml/delegates/NoticeMessage.qml | 1 + resources/qml/delegates/Pill.qml | 1 + resources/qml/delegates/Placeholder.qml | 1 + resources/qml/delegates/PlayableMediaMessage.qml | 1 + resources/qml/delegates/Redacted.qml | 1 + resources/qml/delegates/Reply.qml | 1 + resources/qml/delegates/TextMessage.qml | 1 + resources/qml/device-verification/DeviceVerification.qml | 1 + resources/qml/device-verification/DigitVerification.qml | 1 + resources/qml/device-verification/EmojiElement.qml | 1 + resources/qml/device-verification/EmojiVerification.qml | 1 + resources/qml/device-verification/Failed.qml | 1 + resources/qml/device-verification/NewVerificationRequest.qml | 1 + resources/qml/device-verification/Success.qml | 1 + resources/qml/device-verification/Waiting.qml | 1 + resources/qml/dialogs/AliasEditor.qml | 1 + resources/qml/dialogs/AllowedRoomsSettingsDialog.qml | 1 + resources/qml/dialogs/ConfirmJoinRoomDialog.qml | 1 + resources/qml/dialogs/CreateDirect.qml | 1 + resources/qml/dialogs/CreateRoom.qml | 1 + resources/qml/dialogs/HiddenEventsDialog.qml | 1 + resources/qml/dialogs/ImageOverlay.qml | 1 + resources/qml/dialogs/ImagePackEditorDialog.qml | 1 + resources/qml/dialogs/ImagePackSettingsDialog.qml | 1 + resources/qml/dialogs/InputDialog.qml | 1 + resources/qml/dialogs/InviteDialog.qml | 1 + resources/qml/dialogs/JoinRoomDialog.qml | 1 + resources/qml/dialogs/LeaveRoomDialog.qml | 1 + resources/qml/dialogs/LogoutDialog.qml | 1 + resources/qml/dialogs/PhoneNumberInputDialog.qml | 1 + resources/qml/dialogs/PowerLevelEditor.qml | 1 + resources/qml/dialogs/PowerLevelSpacesApplyDialog.qml | 1 + resources/qml/dialogs/RawMessageDialog.qml | 1 + resources/qml/dialogs/ReadReceipts.qml | 1 + resources/qml/dialogs/RoomDirectory.qml | 1 + resources/qml/dialogs/RoomMembers.qml | 1 + resources/qml/dialogs/RoomSettings.qml | 1 + resources/qml/dialogs/UserProfile.qml | 1 + resources/qml/emoji/EmojiPicker.qml | 1 + resources/qml/emoji/StickerPicker.qml | 1 + resources/qml/pages/LoginPage.qml | 1 + resources/qml/pages/RegisterPage.qml | 1 + resources/qml/pages/UserSettingsPage.qml | 1 + resources/qml/pages/WelcomePage.qml | 1 + resources/qml/ui/NhekoSlider.qml | 1 + resources/qml/ui/Ripple.qml | 1 + resources/qml/ui/Snackbar.qml | 1 + resources/qml/ui/Spinner.qml | 1 + resources/qml/ui/animations/BlinkAnimation.qml | 1 + resources/qml/ui/media/MediaControls.qml | 1 + resources/qml/voip/ActiveCallBar.qml | 1 + resources/qml/voip/CallDevices.qml | 1 + resources/qml/voip/CallInvite.qml | 1 + resources/qml/voip/CallInviteBar.qml | 1 + resources/qml/voip/DeviceError.qml | 1 + resources/qml/voip/PlaceCall.qml | 1 + resources/qml/voip/ScreenShare.qml | 1 + resources/qml/voip/VideoCall.qml | 1 + src/AliasEditModel.cpp | 1 + src/AliasEditModel.h | 1 + src/AvatarProvider.cpp | 1 + src/AvatarProvider.h | 1 + src/BlurhashProvider.cpp | 1 + src/BlurhashProvider.h | 1 + src/Cache.cpp | 1 + src/Cache.h | 1 + src/CacheCryptoStructs.h | 1 + src/CacheStructs.h | 1 + src/Cache_p.h | 1 + src/ChatPage.cpp | 1 + src/ChatPage.h | 1 + src/Clipboard.cpp | 1 + src/Clipboard.h | 1 + src/ColorImageProvider.cpp | 1 + src/ColorImageProvider.h | 1 + src/CombinedImagePackModel.cpp | 1 + src/CombinedImagePackModel.h | 1 + src/CommandCompleter.cpp | 1 + src/CommandCompleter.h | 1 + src/CompletionModelRoles.h | 1 + src/CompletionProxyModel.cpp | 1 + src/CompletionProxyModel.h | 1 + src/Config.h | 1 + src/EventAccessors.cpp | 1 + src/EventAccessors.h | 1 + src/ImagePackListModel.cpp | 1 + src/ImagePackListModel.h | 1 + src/InviteesModel.cpp | 1 + src/InviteesModel.h | 1 + src/JdenticonProvider.cpp | 1 + src/JdenticonProvider.h | 1 + src/Logging.cpp | 1 + src/Logging.h | 1 + src/LoginPage.cpp | 1 + src/LoginPage.h | 1 + src/MainWindow.cpp | 1 + src/MainWindow.h | 1 + src/MatrixClient.cpp | 1 + src/MatrixClient.h | 1 + src/MemberList.cpp | 1 + src/MemberList.h | 1 + src/MxcImageProvider.cpp | 1 + src/MxcImageProvider.h | 1 + src/PowerlevelsEditModels.cpp | 1 + src/PowerlevelsEditModels.h | 1 + src/ReadReceiptsModel.cpp | 1 + src/ReadReceiptsModel.h | 1 + src/RegisterPage.cpp | 1 + src/RegisterPage.h | 1 + src/RoomDirectoryModel.cpp | 1 + src/RoomDirectoryModel.h | 1 + src/RoomsModel.cpp | 1 + src/RoomsModel.h | 1 + src/SSOHandler.cpp | 1 + src/SSOHandler.h | 1 + src/SingleImagePackModel.cpp | 1 + src/SingleImagePackModel.h | 1 + src/TrayIcon.cpp | 1 + src/TrayIcon.h | 1 + src/UserSettingsPage.cpp | 1 + src/UserSettingsPage.h | 1 + src/UsersModel.cpp | 1 + src/UsersModel.h | 1 + src/Utils.cpp | 1 + src/Utils.h | 1 + src/dbus/NhekoDBusApi.cpp | 1 + src/dbus/NhekoDBusApi.h | 1 + src/dbus/NhekoDBusBackend.cpp | 1 + src/dbus/NhekoDBusBackend.h | 1 + src/dialogs/FallbackAuth.cpp | 1 + src/dialogs/FallbackAuth.h | 1 + src/dialogs/ReCaptcha.cpp | 1 + src/dialogs/ReCaptcha.h | 1 + src/dock/Dock.cpp | 1 + src/dock/Dock.h | 1 + src/emoji/EmojiModel.cpp | 1 + src/emoji/EmojiModel.h | 1 + src/emoji/MacHelper.h | 1 + src/emoji/Provider.cpp | 1 + src/emoji/Provider.h | 1 + src/encryption/DeviceVerificationFlow.cpp | 1 + src/encryption/DeviceVerificationFlow.h | 1 + src/encryption/Olm.cpp | 1 + src/encryption/Olm.h | 1 + src/encryption/SelfVerificationStatus.cpp | 1 + src/encryption/SelfVerificationStatus.h | 1 + src/encryption/VerificationManager.cpp | 1 + src/encryption/VerificationManager.h | 1 + src/main.cpp | 1 + src/notifications/MacNotificationDelegate.h | 1 + src/notifications/Manager.cpp | 1 + src/notifications/Manager.h | 1 + src/notifications/ManagerLinux.cpp | 1 + src/notifications/ManagerMac.cpp | 1 + src/notifications/ManagerWin.cpp | 1 + src/notifications/NotificationManagerProxy.h | 1 + src/timeline/CommunitiesModel.cpp | 1 + src/timeline/CommunitiesModel.h | 1 + src/timeline/DelegateChooser.cpp | 1 + src/timeline/DelegateChooser.h | 1 + src/timeline/EventStore.cpp | 1 + src/timeline/EventStore.h | 1 + src/timeline/InputBar.cpp | 1 + src/timeline/InputBar.h | 1 + src/timeline/Permissions.cpp | 1 + src/timeline/Permissions.h | 1 + src/timeline/PresenceEmitter.cpp | 1 + src/timeline/PresenceEmitter.h | 1 + src/timeline/Reaction.cpp | 1 + src/timeline/Reaction.h | 1 + src/timeline/RoomlistModel.cpp | 1 + src/timeline/RoomlistModel.h | 1 + src/timeline/TimelineFilter.cpp | 1 + src/timeline/TimelineFilter.h | 1 + src/timeline/TimelineModel.cpp | 1 + src/timeline/TimelineModel.h | 1 + src/timeline/TimelineViewManager.cpp | 1 + src/timeline/TimelineViewManager.h | 1 + src/ui/HiddenEvents.cpp | 1 + src/ui/HiddenEvents.h | 1 + src/ui/MxcAnimatedImage.cpp | 1 + src/ui/MxcAnimatedImage.h | 1 + src/ui/MxcMediaProxy.cpp | 1 + src/ui/MxcMediaProxy.h | 1 + src/ui/NhekoCursorShape.cpp | 1 + src/ui/NhekoCursorShape.h | 1 + src/ui/NhekoDropArea.cpp | 1 + src/ui/NhekoDropArea.h | 1 + src/ui/NhekoEventObserver.cpp | 1 + src/ui/NhekoEventObserver.h | 1 + src/ui/NhekoGlobalObject.cpp | 1 + src/ui/NhekoGlobalObject.h | 1 + src/ui/RoomSettings.cpp | 1 + src/ui/RoomSettings.h | 1 + src/ui/RoomSummary.cpp | 1 + src/ui/RoomSummary.h | 1 + src/ui/Theme.cpp | 1 + src/ui/Theme.h | 1 + src/ui/ThemeManager.cpp | 1 + src/ui/ThemeManager.h | 1 + src/ui/UIA.cpp | 1 + src/ui/UIA.h | 1 + src/ui/UserProfile.cpp | 1 + src/ui/UserProfile.h | 1 + src/voip/CallDevices.cpp | 1 + src/voip/CallDevices.h | 1 + src/voip/CallManager.cpp | 1 + src/voip/CallManager.h | 1 + src/voip/WebRTCSession.cpp | 1 + src/voip/WebRTCSession.h | 1 + 252 files changed, 252 insertions(+) diff --git a/resources/qml/Avatar.qml b/resources/qml/Avatar.qml index 2da59370..549b8d17 100644 --- a/resources/qml/Avatar.qml +++ b/resources/qml/Avatar.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ChatPage.qml b/resources/qml/ChatPage.qml index cc62d501..3d76616a 100644 --- a/resources/qml/ChatPage.qml +++ b/resources/qml/ChatPage.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/CommunitiesList.qml b/resources/qml/CommunitiesList.qml index 853302a5..1722cc85 100644 --- a/resources/qml/CommunitiesList.qml +++ b/resources/qml/CommunitiesList.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/Completer.qml b/resources/qml/Completer.qml index abf37486..04ff1495 100644 --- a/resources/qml/Completer.qml +++ b/resources/qml/Completer.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ElidedLabel.qml b/resources/qml/ElidedLabel.qml index 11df479a..4c734cc5 100644 --- a/resources/qml/ElidedLabel.qml +++ b/resources/qml/ElidedLabel.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/EncryptionIndicator.qml b/resources/qml/EncryptionIndicator.qml index 04d4bace..a75bd976 100644 --- a/resources/qml/EncryptionIndicator.qml +++ b/resources/qml/EncryptionIndicator.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ForwardCompleter.qml b/resources/qml/ForwardCompleter.qml index 76d77bfd..765c3a34 100644 --- a/resources/qml/ForwardCompleter.qml +++ b/resources/qml/ForwardCompleter.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ImageButton.qml b/resources/qml/ImageButton.qml index 080bea23..6a5c0782 100644 --- a/resources/qml/ImageButton.qml +++ b/resources/qml/ImageButton.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml index 69eb7cdb..9ce61435 100644 --- a/resources/qml/MatrixText.qml +++ b/resources/qml/MatrixText.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/MatrixTextField.qml b/resources/qml/MatrixTextField.qml index e3632b61..5ebc9728 100644 --- a/resources/qml/MatrixTextField.qml +++ b/resources/qml/MatrixTextField.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/MessageInput.qml b/resources/qml/MessageInput.qml index ab6e260f..59b19d4d 100644 --- a/resources/qml/MessageInput.qml +++ b/resources/qml/MessageInput.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml index a49c046c..ae8eee56 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/NhekoBusyIndicator.qml b/resources/qml/NhekoBusyIndicator.qml index aafe8900..6f6869f4 100644 --- a/resources/qml/NhekoBusyIndicator.qml +++ b/resources/qml/NhekoBusyIndicator.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/NotificationWarning.qml b/resources/qml/NotificationWarning.qml index 285e5a5c..2d0a0975 100644 --- a/resources/qml/NotificationWarning.qml +++ b/resources/qml/NotificationWarning.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/PrivacyScreen.qml b/resources/qml/PrivacyScreen.qml index f91e4a73..bc128302 100644 --- a/resources/qml/PrivacyScreen.qml +++ b/resources/qml/PrivacyScreen.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/QuickSwitcher.qml b/resources/qml/QuickSwitcher.qml index ac5d3aea..77992e69 100644 --- a/resources/qml/QuickSwitcher.qml +++ b/resources/qml/QuickSwitcher.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/Reactions.qml b/resources/qml/Reactions.qml index aae42cb1..94a8408d 100644 --- a/resources/qml/Reactions.qml +++ b/resources/qml/Reactions.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ReplyPopup.qml b/resources/qml/ReplyPopup.qml index 05464e33..3c4922b2 100644 --- a/resources/qml/ReplyPopup.qml +++ b/resources/qml/ReplyPopup.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml index 97639baa..2cfd71f9 100644 --- a/resources/qml/RoomList.qml +++ b/resources/qml/RoomList.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml index 1f079213..5f7d7229 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ScrollHelper.qml b/resources/qml/ScrollHelper.qml index c87b730e..afbc116f 100644 --- a/resources/qml/ScrollHelper.qml +++ b/resources/qml/ScrollHelper.qml @@ -2,6 +2,7 @@ // Copyright (C) 2017 Christian Mollekopf, // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/SelfVerificationCheck.qml b/resources/qml/SelfVerificationCheck.qml index 336b966d..f6954d3b 100644 --- a/resources/qml/SelfVerificationCheck.qml +++ b/resources/qml/SelfVerificationCheck.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/StatusIndicator.qml b/resources/qml/StatusIndicator.qml index e1ed3b29..2276de11 100644 --- a/resources/qml/StatusIndicator.qml +++ b/resources/qml/StatusIndicator.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml index 4814d84f..2ee9ee77 100644 --- a/resources/qml/TimelineRow.qml +++ b/resources/qml/TimelineRow.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index dcbcc87e..b82cba65 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ToggleButton.qml b/resources/qml/ToggleButton.qml index 98950b8a..b24458c6 100644 --- a/resources/qml/ToggleButton.qml +++ b/resources/qml/ToggleButton.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml index cce2c89b..4a52d234 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/TypingIndicator.qml b/resources/qml/TypingIndicator.qml index 0b92b2d2..ac995e3c 100644 --- a/resources/qml/TypingIndicator.qml +++ b/resources/qml/TypingIndicator.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/UploadBox.qml b/resources/qml/UploadBox.qml index ccd59f45..2b20c837 100644 --- a/resources/qml/UploadBox.qml +++ b/resources/qml/UploadBox.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/AdaptiveLayout.qml b/resources/qml/components/AdaptiveLayout.qml index 8e3c0e3d..a2148c06 100644 --- a/resources/qml/components/AdaptiveLayout.qml +++ b/resources/qml/components/AdaptiveLayout.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/AdaptiveLayoutElement.qml b/resources/qml/components/AdaptiveLayoutElement.qml index 666a47cc..68793f07 100644 --- a/resources/qml/components/AdaptiveLayoutElement.qml +++ b/resources/qml/components/AdaptiveLayoutElement.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/AvatarListTile.qml b/resources/qml/components/AvatarListTile.qml index 910e0e47..498dc045 100644 --- a/resources/qml/components/AvatarListTile.qml +++ b/resources/qml/components/AvatarListTile.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/FlatButton.qml b/resources/qml/components/FlatButton.qml index 2c9ea061..bcc4697f 100644 --- a/resources/qml/components/FlatButton.qml +++ b/resources/qml/components/FlatButton.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/MainWindowDialog.qml b/resources/qml/components/MainWindowDialog.qml index def4f96b..76c95038 100644 --- a/resources/qml/components/MainWindowDialog.qml +++ b/resources/qml/components/MainWindowDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/NotificationBubble.qml b/resources/qml/components/NotificationBubble.qml index ca0ae6cb..f1315626 100644 --- a/resources/qml/components/NotificationBubble.qml +++ b/resources/qml/components/NotificationBubble.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/ReorderableListview.qml b/resources/qml/components/ReorderableListview.qml index 7e9ae05d..853ea5f6 100644 --- a/resources/qml/components/ReorderableListview.qml +++ b/resources/qml/components/ReorderableListview.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/SpaceMenuLevel.qml b/resources/qml/components/SpaceMenuLevel.qml index f552978d..1641e727 100644 --- a/resources/qml/components/SpaceMenuLevel.qml +++ b/resources/qml/components/SpaceMenuLevel.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/components/TextButton.qml b/resources/qml/components/TextButton.qml index a37f3aee..f34cbb0e 100644 --- a/resources/qml/components/TextButton.qml +++ b/resources/qml/components/TextButton.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/Encrypted.qml b/resources/qml/delegates/Encrypted.qml index ecc771f5..679f7b49 100644 --- a/resources/qml/delegates/Encrypted.qml +++ b/resources/qml/delegates/Encrypted.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/FileMessage.qml b/resources/qml/delegates/FileMessage.qml index daae8635..5e496db5 100644 --- a/resources/qml/delegates/FileMessage.qml +++ b/resources/qml/delegates/FileMessage.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/ImageMessage.qml b/resources/qml/delegates/ImageMessage.qml index 12e8a465..af69b983 100644 --- a/resources/qml/delegates/ImageMessage.qml +++ b/resources/qml/delegates/ImageMessage.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/MessageDelegate.qml b/resources/qml/delegates/MessageDelegate.qml index c2d49e91..d0569c5a 100644 --- a/resources/qml/delegates/MessageDelegate.qml +++ b/resources/qml/delegates/MessageDelegate.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/NoticeMessage.qml b/resources/qml/delegates/NoticeMessage.qml index 342469db..a1de0465 100644 --- a/resources/qml/delegates/NoticeMessage.qml +++ b/resources/qml/delegates/NoticeMessage.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/Pill.qml b/resources/qml/delegates/Pill.qml index 8b67c346..fd24fb51 100644 --- a/resources/qml/delegates/Pill.qml +++ b/resources/qml/delegates/Pill.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/Placeholder.qml b/resources/qml/delegates/Placeholder.qml index f63e62f5..62fb2d9f 100644 --- a/resources/qml/delegates/Placeholder.qml +++ b/resources/qml/delegates/Placeholder.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/PlayableMediaMessage.qml b/resources/qml/delegates/PlayableMediaMessage.qml index 4828843c..c4c143cc 100644 --- a/resources/qml/delegates/PlayableMediaMessage.qml +++ b/resources/qml/delegates/PlayableMediaMessage.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/Redacted.qml b/resources/qml/delegates/Redacted.qml index dcdb7248..0b208fb9 100644 --- a/resources/qml/delegates/Redacted.qml +++ b/resources/qml/delegates/Redacted.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/Reply.qml b/resources/qml/delegates/Reply.qml index 8962fa52..4b98b78b 100644 --- a/resources/qml/delegates/Reply.qml +++ b/resources/qml/delegates/Reply.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/delegates/TextMessage.qml b/resources/qml/delegates/TextMessage.qml index da1c66da..bbb58736 100644 --- a/resources/qml/delegates/TextMessage.qml +++ b/resources/qml/delegates/TextMessage.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/device-verification/DeviceVerification.qml b/resources/qml/device-verification/DeviceVerification.qml index ead293d2..845516e0 100644 --- a/resources/qml/device-verification/DeviceVerification.qml +++ b/resources/qml/device-verification/DeviceVerification.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/device-verification/DigitVerification.qml b/resources/qml/device-verification/DigitVerification.qml index e1f8f6cf..1e25fa9b 100644 --- a/resources/qml/device-verification/DigitVerification.qml +++ b/resources/qml/device-verification/DigitVerification.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/device-verification/EmojiElement.qml b/resources/qml/device-verification/EmojiElement.qml index d02ede48..20b23e12 100644 --- a/resources/qml/device-verification/EmojiElement.qml +++ b/resources/qml/device-verification/EmojiElement.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/device-verification/EmojiVerification.qml b/resources/qml/device-verification/EmojiVerification.qml index 4b88ef7b..1948f19c 100644 --- a/resources/qml/device-verification/EmojiVerification.qml +++ b/resources/qml/device-verification/EmojiVerification.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/device-verification/Failed.qml b/resources/qml/device-verification/Failed.qml index 77327a75..33d46042 100644 --- a/resources/qml/device-verification/Failed.qml +++ b/resources/qml/device-verification/Failed.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/device-verification/NewVerificationRequest.qml b/resources/qml/device-verification/NewVerificationRequest.qml index 187c3246..98b3fdf3 100644 --- a/resources/qml/device-verification/NewVerificationRequest.qml +++ b/resources/qml/device-verification/NewVerificationRequest.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/device-verification/Success.qml b/resources/qml/device-verification/Success.qml index d9365194..1608e36a 100644 --- a/resources/qml/device-verification/Success.qml +++ b/resources/qml/device-verification/Success.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/device-verification/Waiting.qml b/resources/qml/device-verification/Waiting.qml index 3054b9c3..b5b43a9e 100644 --- a/resources/qml/device-verification/Waiting.qml +++ b/resources/qml/device-verification/Waiting.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/AliasEditor.qml b/resources/qml/dialogs/AliasEditor.qml index 0f7ed332..d1437d68 100644 --- a/resources/qml/dialogs/AliasEditor.qml +++ b/resources/qml/dialogs/AliasEditor.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/AllowedRoomsSettingsDialog.qml b/resources/qml/dialogs/AllowedRoomsSettingsDialog.qml index 80905039..970d8d0f 100644 --- a/resources/qml/dialogs/AllowedRoomsSettingsDialog.qml +++ b/resources/qml/dialogs/AllowedRoomsSettingsDialog.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/ConfirmJoinRoomDialog.qml b/resources/qml/dialogs/ConfirmJoinRoomDialog.qml index a07aadd2..d61a75f7 100644 --- a/resources/qml/dialogs/ConfirmJoinRoomDialog.qml +++ b/resources/qml/dialogs/ConfirmJoinRoomDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/CreateDirect.qml b/resources/qml/dialogs/CreateDirect.qml index 85768cad..69eb38d0 100644 --- a/resources/qml/dialogs/CreateDirect.qml +++ b/resources/qml/dialogs/CreateDirect.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/CreateRoom.qml b/resources/qml/dialogs/CreateRoom.qml index bfc6d797..569886f2 100644 --- a/resources/qml/dialogs/CreateRoom.qml +++ b/resources/qml/dialogs/CreateRoom.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/HiddenEventsDialog.qml b/resources/qml/dialogs/HiddenEventsDialog.qml index 444ce6a1..7e7a9c05 100644 --- a/resources/qml/dialogs/HiddenEventsDialog.qml +++ b/resources/qml/dialogs/HiddenEventsDialog.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/ImageOverlay.qml b/resources/qml/dialogs/ImageOverlay.qml index 70aa3e87..7437a04b 100644 --- a/resources/qml/dialogs/ImageOverlay.qml +++ b/resources/qml/dialogs/ImageOverlay.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/ImagePackEditorDialog.qml b/resources/qml/dialogs/ImagePackEditorDialog.qml index 891d9c3d..c7325b2f 100644 --- a/resources/qml/dialogs/ImagePackEditorDialog.qml +++ b/resources/qml/dialogs/ImagePackEditorDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/ImagePackSettingsDialog.qml b/resources/qml/dialogs/ImagePackSettingsDialog.qml index 2bbcfe54..ce4d554a 100644 --- a/resources/qml/dialogs/ImagePackSettingsDialog.qml +++ b/resources/qml/dialogs/ImagePackSettingsDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/InputDialog.qml b/resources/qml/dialogs/InputDialog.qml index a674c3fb..de079797 100644 --- a/resources/qml/dialogs/InputDialog.qml +++ b/resources/qml/dialogs/InputDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/InviteDialog.qml b/resources/qml/dialogs/InviteDialog.qml index e7dd4e3a..33fd32c4 100644 --- a/resources/qml/dialogs/InviteDialog.qml +++ b/resources/qml/dialogs/InviteDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/JoinRoomDialog.qml b/resources/qml/dialogs/JoinRoomDialog.qml index 0098370d..b6b1af24 100644 --- a/resources/qml/dialogs/JoinRoomDialog.qml +++ b/resources/qml/dialogs/JoinRoomDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/LeaveRoomDialog.qml b/resources/qml/dialogs/LeaveRoomDialog.qml index cb15a74d..969073f7 100644 --- a/resources/qml/dialogs/LeaveRoomDialog.qml +++ b/resources/qml/dialogs/LeaveRoomDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/LogoutDialog.qml b/resources/qml/dialogs/LogoutDialog.qml index fb5b39f6..3e2a20c2 100644 --- a/resources/qml/dialogs/LogoutDialog.qml +++ b/resources/qml/dialogs/LogoutDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/PhoneNumberInputDialog.qml b/resources/qml/dialogs/PhoneNumberInputDialog.qml index 9c36c98f..1fc5e061 100644 --- a/resources/qml/dialogs/PhoneNumberInputDialog.qml +++ b/resources/qml/dialogs/PhoneNumberInputDialog.qml @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2021 Mirian Margiani // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/PowerLevelEditor.qml b/resources/qml/dialogs/PowerLevelEditor.qml index 4c23d9af..a6124102 100644 --- a/resources/qml/dialogs/PowerLevelEditor.qml +++ b/resources/qml/dialogs/PowerLevelEditor.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/PowerLevelSpacesApplyDialog.qml b/resources/qml/dialogs/PowerLevelSpacesApplyDialog.qml index 83af00f7..19a9654a 100644 --- a/resources/qml/dialogs/PowerLevelSpacesApplyDialog.qml +++ b/resources/qml/dialogs/PowerLevelSpacesApplyDialog.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/RawMessageDialog.qml b/resources/qml/dialogs/RawMessageDialog.qml index 774b078b..4801c179 100644 --- a/resources/qml/dialogs/RawMessageDialog.qml +++ b/resources/qml/dialogs/RawMessageDialog.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/ReadReceipts.qml b/resources/qml/dialogs/ReadReceipts.qml index da87996e..27b03e6a 100644 --- a/resources/qml/dialogs/ReadReceipts.qml +++ b/resources/qml/dialogs/ReadReceipts.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/RoomDirectory.qml b/resources/qml/dialogs/RoomDirectory.qml index d143ed43..9f7f6f8f 100644 --- a/resources/qml/dialogs/RoomDirectory.qml +++ b/resources/qml/dialogs/RoomDirectory.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/RoomMembers.qml b/resources/qml/dialogs/RoomMembers.qml index b44eeab3..d1584555 100644 --- a/resources/qml/dialogs/RoomMembers.qml +++ b/resources/qml/dialogs/RoomMembers.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/RoomSettings.qml b/resources/qml/dialogs/RoomSettings.qml index f6c296f8..7b04f55b 100644 --- a/resources/qml/dialogs/RoomSettings.qml +++ b/resources/qml/dialogs/RoomSettings.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/dialogs/UserProfile.qml b/resources/qml/dialogs/UserProfile.qml index e57d4de5..684ada8f 100644 --- a/resources/qml/dialogs/UserProfile.qml +++ b/resources/qml/dialogs/UserProfile.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/emoji/EmojiPicker.qml b/resources/qml/emoji/EmojiPicker.qml index 174ea6ae..fee746f6 100644 --- a/resources/qml/emoji/EmojiPicker.qml +++ b/resources/qml/emoji/EmojiPicker.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/emoji/StickerPicker.qml b/resources/qml/emoji/StickerPicker.qml index d38461a1..db39f791 100644 --- a/resources/qml/emoji/StickerPicker.qml +++ b/resources/qml/emoji/StickerPicker.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/pages/LoginPage.qml b/resources/qml/pages/LoginPage.qml index 8261ca60..cda1d0d0 100644 --- a/resources/qml/pages/LoginPage.qml +++ b/resources/qml/pages/LoginPage.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/pages/RegisterPage.qml b/resources/qml/pages/RegisterPage.qml index 4cdd98c1..69172bd7 100644 --- a/resources/qml/pages/RegisterPage.qml +++ b/resources/qml/pages/RegisterPage.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/pages/UserSettingsPage.qml b/resources/qml/pages/UserSettingsPage.qml index becfc612..f49ed396 100644 --- a/resources/qml/pages/UserSettingsPage.qml +++ b/resources/qml/pages/UserSettingsPage.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/pages/WelcomePage.qml b/resources/qml/pages/WelcomePage.qml index e1ecc31d..914de763 100644 --- a/resources/qml/pages/WelcomePage.qml +++ b/resources/qml/pages/WelcomePage.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ui/NhekoSlider.qml b/resources/qml/ui/NhekoSlider.qml index 623eeb71..a3df54e2 100644 --- a/resources/qml/ui/NhekoSlider.qml +++ b/resources/qml/ui/NhekoSlider.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ui/Ripple.qml b/resources/qml/ui/Ripple.qml index 0619d924..d6803173 100644 --- a/resources/qml/ui/Ripple.qml +++ b/resources/qml/ui/Ripple.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ui/Snackbar.qml b/resources/qml/ui/Snackbar.qml index 80c0d888..256933d9 100644 --- a/resources/qml/ui/Snackbar.qml +++ b/resources/qml/ui/Snackbar.qml @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ui/Spinner.qml b/resources/qml/ui/Spinner.qml index 3681a36b..c386f95c 100644 --- a/resources/qml/ui/Spinner.qml +++ b/resources/qml/ui/Spinner.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ui/animations/BlinkAnimation.qml b/resources/qml/ui/animations/BlinkAnimation.qml index 87e3b135..d8090db8 100644 --- a/resources/qml/ui/animations/BlinkAnimation.qml +++ b/resources/qml/ui/animations/BlinkAnimation.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/ui/media/MediaControls.qml b/resources/qml/ui/media/MediaControls.qml index d73957ee..b4283e9b 100644 --- a/resources/qml/ui/media/MediaControls.qml +++ b/resources/qml/ui/media/MediaControls.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/voip/ActiveCallBar.qml b/resources/qml/voip/ActiveCallBar.qml index a8a65421..6251b939 100644 --- a/resources/qml/voip/ActiveCallBar.qml +++ b/resources/qml/voip/ActiveCallBar.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/voip/CallDevices.qml b/resources/qml/voip/CallDevices.qml index 60db762a..2e2dd5cf 100644 --- a/resources/qml/voip/CallDevices.qml +++ b/resources/qml/voip/CallDevices.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/voip/CallInvite.qml b/resources/qml/voip/CallInvite.qml index beed2e51..84cfdfef 100644 --- a/resources/qml/voip/CallInvite.qml +++ b/resources/qml/voip/CallInvite.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/voip/CallInviteBar.qml b/resources/qml/voip/CallInviteBar.qml index a622ca27..02034305 100644 --- a/resources/qml/voip/CallInviteBar.qml +++ b/resources/qml/voip/CallInviteBar.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/voip/DeviceError.qml b/resources/qml/voip/DeviceError.qml index 3f37612c..9f0c50d8 100644 --- a/resources/qml/voip/DeviceError.qml +++ b/resources/qml/voip/DeviceError.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/voip/PlaceCall.qml b/resources/qml/voip/PlaceCall.qml index 33ad4cfa..c6efbe9e 100644 --- a/resources/qml/voip/PlaceCall.qml +++ b/resources/qml/voip/PlaceCall.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/voip/ScreenShare.qml b/resources/qml/voip/ScreenShare.qml index f27c4485..d08e72de 100644 --- a/resources/qml/voip/ScreenShare.qml +++ b/resources/qml/voip/ScreenShare.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/resources/qml/voip/VideoCall.qml b/resources/qml/voip/VideoCall.qml index 20bb0535..08a94f20 100644 --- a/resources/qml/voip/VideoCall.qml +++ b/resources/qml/voip/VideoCall.qml @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/AliasEditModel.cpp b/src/AliasEditModel.cpp index 3f24a7c5..bb5b9bfe 100644 --- a/src/AliasEditModel.cpp +++ b/src/AliasEditModel.cpp @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/AliasEditModel.h b/src/AliasEditModel.h index 8709e945..6cfc34bc 100644 --- a/src/AliasEditModel.h +++ b/src/AliasEditModel.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/AvatarProvider.cpp b/src/AvatarProvider.cpp index cfa536fe..eb1e7e2a 100644 --- a/src/AvatarProvider.cpp +++ b/src/AvatarProvider.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/AvatarProvider.h b/src/AvatarProvider.h index 0bdb8b7c..e0cf6e52 100644 --- a/src/AvatarProvider.h +++ b/src/AvatarProvider.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/BlurhashProvider.cpp b/src/BlurhashProvider.cpp index 0b06b2d0..f8edc791 100644 --- a/src/BlurhashProvider.cpp +++ b/src/BlurhashProvider.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/BlurhashProvider.h b/src/BlurhashProvider.h index c0826e72..aec6ab7c 100644 --- a/src/BlurhashProvider.h +++ b/src/BlurhashProvider.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Cache.cpp b/src/Cache.cpp index 41b84e11..d018665a 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Cache.h b/src/Cache.h index bb779866..c6a61b8f 100644 --- a/src/Cache.h +++ b/src/Cache.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CacheCryptoStructs.h b/src/CacheCryptoStructs.h index 99e563bd..f1d6184a 100644 --- a/src/CacheCryptoStructs.h +++ b/src/CacheCryptoStructs.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CacheStructs.h b/src/CacheStructs.h index 535807fe..bf8741ea 100644 --- a/src/CacheStructs.h +++ b/src/CacheStructs.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Cache_p.h b/src/Cache_p.h index 7b3bf8b0..69d0240e 100644 --- a/src/Cache_p.h +++ b/src/Cache_p.h @@ -2,6 +2,7 @@ // SPDX-FileCopyrightText: 2019 The nheko authors // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp index 27019ba3..c5d3d012 100644 --- a/src/ChatPage.cpp +++ b/src/ChatPage.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ChatPage.h b/src/ChatPage.h index 4dc219b4..0ac39faa 100644 --- a/src/ChatPage.h +++ b/src/ChatPage.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Clipboard.cpp b/src/Clipboard.cpp index 72a954ce..51f9b225 100644 --- a/src/Clipboard.cpp +++ b/src/Clipboard.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Clipboard.h b/src/Clipboard.h index 568604b0..213a19fa 100644 --- a/src/Clipboard.h +++ b/src/Clipboard.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ColorImageProvider.cpp b/src/ColorImageProvider.cpp index 6a38c46c..70cc334c 100644 --- a/src/ColorImageProvider.cpp +++ b/src/ColorImageProvider.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ColorImageProvider.h b/src/ColorImageProvider.h index c416d7ec..e8812928 100644 --- a/src/ColorImageProvider.h +++ b/src/ColorImageProvider.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CombinedImagePackModel.cpp b/src/CombinedImagePackModel.cpp index 8847fe65..0841ff7d 100644 --- a/src/CombinedImagePackModel.cpp +++ b/src/CombinedImagePackModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CombinedImagePackModel.h b/src/CombinedImagePackModel.h index 49979fca..2ab82857 100644 --- a/src/CombinedImagePackModel.h +++ b/src/CombinedImagePackModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CommandCompleter.cpp b/src/CommandCompleter.cpp index 307defa4..4cc61291 100644 --- a/src/CommandCompleter.cpp +++ b/src/CommandCompleter.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CommandCompleter.h b/src/CommandCompleter.h index 08272a19..24242209 100644 --- a/src/CommandCompleter.h +++ b/src/CommandCompleter.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CompletionModelRoles.h b/src/CompletionModelRoles.h index 96eb1ade..7fd96599 100644 --- a/src/CompletionModelRoles.h +++ b/src/CompletionModelRoles.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CompletionProxyModel.cpp b/src/CompletionProxyModel.cpp index f46a6367..c7018841 100644 --- a/src/CompletionProxyModel.cpp +++ b/src/CompletionProxyModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/CompletionProxyModel.h b/src/CompletionProxyModel.h index 6bf2eb35..4d9c9f0e 100644 --- a/src/CompletionProxyModel.h +++ b/src/CompletionProxyModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Config.h b/src/Config.h index 5a742337..ba9564f0 100644 --- a/src/Config.h +++ b/src/Config.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/EventAccessors.cpp b/src/EventAccessors.cpp index da0eeff2..86ffc8b3 100644 --- a/src/EventAccessors.cpp +++ b/src/EventAccessors.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/EventAccessors.h b/src/EventAccessors.h index 8e130c29..ce262960 100644 --- a/src/EventAccessors.h +++ b/src/EventAccessors.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ImagePackListModel.cpp b/src/ImagePackListModel.cpp index fac8f10f..1360ed3e 100644 --- a/src/ImagePackListModel.cpp +++ b/src/ImagePackListModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ImagePackListModel.h b/src/ImagePackListModel.h index 9190eb8c..5e1985a7 100644 --- a/src/ImagePackListModel.h +++ b/src/ImagePackListModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/InviteesModel.cpp b/src/InviteesModel.cpp index 8e30847c..52dd4e43 100644 --- a/src/InviteesModel.cpp +++ b/src/InviteesModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/InviteesModel.h b/src/InviteesModel.h index 004f37ca..91b89a21 100644 --- a/src/InviteesModel.h +++ b/src/InviteesModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/JdenticonProvider.cpp b/src/JdenticonProvider.cpp index e9a7c883..fada4c3a 100644 --- a/src/JdenticonProvider.cpp +++ b/src/JdenticonProvider.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/JdenticonProvider.h b/src/JdenticonProvider.h index d8fdbb42..b89126fe 100644 --- a/src/JdenticonProvider.h +++ b/src/JdenticonProvider.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Logging.cpp b/src/Logging.cpp index cd72e395..c41d3f82 100644 --- a/src/Logging.cpp +++ b/src/Logging.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Logging.h b/src/Logging.h index 23ff8236..3d52f2d9 100644 --- a/src/Logging.h +++ b/src/Logging.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/LoginPage.cpp b/src/LoginPage.cpp index 567e8c82..d243691c 100644 --- a/src/LoginPage.cpp +++ b/src/LoginPage.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/LoginPage.h b/src/LoginPage.h index 7e9b601c..bca7f9ca 100644 --- a/src/LoginPage.h +++ b/src/LoginPage.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 1d743844..dcb4be49 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/MainWindow.h b/src/MainWindow.h index f567c93e..1664f849 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/MatrixClient.cpp b/src/MatrixClient.cpp index b5ea7609..945a5a73 100644 --- a/src/MatrixClient.cpp +++ b/src/MatrixClient.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/MatrixClient.h b/src/MatrixClient.h index 2de19e2d..4d313e45 100644 --- a/src/MatrixClient.h +++ b/src/MatrixClient.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/MemberList.cpp b/src/MemberList.cpp index 916192c0..e4a3580e 100644 --- a/src/MemberList.cpp +++ b/src/MemberList.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/MemberList.h b/src/MemberList.h index f7d2cac6..6a5091db 100644 --- a/src/MemberList.h +++ b/src/MemberList.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/MxcImageProvider.cpp b/src/MxcImageProvider.cpp index de800e93..33f691da 100644 --- a/src/MxcImageProvider.cpp +++ b/src/MxcImageProvider.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/MxcImageProvider.h b/src/MxcImageProvider.h index d8325219..097a3657 100644 --- a/src/MxcImageProvider.h +++ b/src/MxcImageProvider.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/PowerlevelsEditModels.cpp b/src/PowerlevelsEditModels.cpp index 2c2d4a7f..9a8e12dc 100644 --- a/src/PowerlevelsEditModels.cpp +++ b/src/PowerlevelsEditModels.cpp @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/PowerlevelsEditModels.h b/src/PowerlevelsEditModels.h index d0593f09..bafedabc 100644 --- a/src/PowerlevelsEditModels.h +++ b/src/PowerlevelsEditModels.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ReadReceiptsModel.cpp b/src/ReadReceiptsModel.cpp index f9de970b..7a81690c 100644 --- a/src/ReadReceiptsModel.cpp +++ b/src/ReadReceiptsModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ReadReceiptsModel.h b/src/ReadReceiptsModel.h index 48b1a598..e072b635 100644 --- a/src/ReadReceiptsModel.h +++ b/src/ReadReceiptsModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/RegisterPage.cpp b/src/RegisterPage.cpp index 82302858..0db0427c 100644 --- a/src/RegisterPage.cpp +++ b/src/RegisterPage.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/RegisterPage.h b/src/RegisterPage.h index 9a4e052b..9d81f477 100644 --- a/src/RegisterPage.h +++ b/src/RegisterPage.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/RoomDirectoryModel.cpp b/src/RoomDirectoryModel.cpp index 428b0040..c6d45995 100644 --- a/src/RoomDirectoryModel.cpp +++ b/src/RoomDirectoryModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/RoomDirectoryModel.h b/src/RoomDirectoryModel.h index b0768997..54938561 100644 --- a/src/RoomDirectoryModel.h +++ b/src/RoomDirectoryModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/RoomsModel.cpp b/src/RoomsModel.cpp index 3d13ef8b..476a2d8b 100644 --- a/src/RoomsModel.cpp +++ b/src/RoomsModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/RoomsModel.h b/src/RoomsModel.h index 0b7371db..b2f4e44e 100644 --- a/src/RoomsModel.h +++ b/src/RoomsModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/SSOHandler.cpp b/src/SSOHandler.cpp index 36580ae2..4fed776d 100644 --- a/src/SSOHandler.cpp +++ b/src/SSOHandler.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/SSOHandler.h b/src/SSOHandler.h index 3fd4effd..ab7887ad 100644 --- a/src/SSOHandler.h +++ b/src/SSOHandler.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/SingleImagePackModel.cpp b/src/SingleImagePackModel.cpp index 9d8c3409..40f44fb2 100644 --- a/src/SingleImagePackModel.cpp +++ b/src/SingleImagePackModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/SingleImagePackModel.h b/src/SingleImagePackModel.h index 3040f53e..2f558ece 100644 --- a/src/SingleImagePackModel.h +++ b/src/SingleImagePackModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/TrayIcon.cpp b/src/TrayIcon.cpp index 336da129..1e33ac8d 100644 --- a/src/TrayIcon.cpp +++ b/src/TrayIcon.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/TrayIcon.h b/src/TrayIcon.h index 519f9d14..18bbf9b5 100644 --- a/src/TrayIcon.h +++ b/src/TrayIcon.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/UserSettingsPage.cpp b/src/UserSettingsPage.cpp index 145b3b8f..2bb8a118 100644 --- a/src/UserSettingsPage.cpp +++ b/src/UserSettingsPage.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/UserSettingsPage.h b/src/UserSettingsPage.h index 4d805bb7..37a53ab2 100644 --- a/src/UserSettingsPage.h +++ b/src/UserSettingsPage.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/UsersModel.cpp b/src/UsersModel.cpp index 5d7dd5b7..0399bde6 100644 --- a/src/UsersModel.cpp +++ b/src/UsersModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/UsersModel.h b/src/UsersModel.h index e6d21845..aa71990c 100644 --- a/src/UsersModel.h +++ b/src/UsersModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Utils.cpp b/src/Utils.cpp index b0d84339..8ad84e85 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/Utils.h b/src/Utils.h index 31a1a0de..e6d66f47 100644 --- a/src/Utils.h +++ b/src/Utils.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dbus/NhekoDBusApi.cpp b/src/dbus/NhekoDBusApi.cpp index a58812ef..1f029b9c 100644 --- a/src/dbus/NhekoDBusApi.cpp +++ b/src/dbus/NhekoDBusApi.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2010 David Sansome // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dbus/NhekoDBusApi.h b/src/dbus/NhekoDBusApi.h index baf942b1..0cd64685 100644 --- a/src/dbus/NhekoDBusApi.h +++ b/src/dbus/NhekoDBusApi.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dbus/NhekoDBusBackend.cpp b/src/dbus/NhekoDBusBackend.cpp index a7fa2d74..b5c36e3d 100644 --- a/src/dbus/NhekoDBusBackend.cpp +++ b/src/dbus/NhekoDBusBackend.cpp @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dbus/NhekoDBusBackend.h b/src/dbus/NhekoDBusBackend.h index 83562da2..e923e388 100644 --- a/src/dbus/NhekoDBusBackend.h +++ b/src/dbus/NhekoDBusBackend.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dialogs/FallbackAuth.cpp b/src/dialogs/FallbackAuth.cpp index 5969be0d..9ed04576 100644 --- a/src/dialogs/FallbackAuth.cpp +++ b/src/dialogs/FallbackAuth.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dialogs/FallbackAuth.h b/src/dialogs/FallbackAuth.h index 579d85b0..96418193 100644 --- a/src/dialogs/FallbackAuth.h +++ b/src/dialogs/FallbackAuth.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dialogs/ReCaptcha.cpp b/src/dialogs/ReCaptcha.cpp index 95a1f85f..138d1ee5 100644 --- a/src/dialogs/ReCaptcha.cpp +++ b/src/dialogs/ReCaptcha.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dialogs/ReCaptcha.h b/src/dialogs/ReCaptcha.h index 815b4bf3..7610ef52 100644 --- a/src/dialogs/ReCaptcha.h +++ b/src/dialogs/ReCaptcha.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dock/Dock.cpp b/src/dock/Dock.cpp index 25b65c0c..1629c12c 100644 --- a/src/dock/Dock.cpp +++ b/src/dock/Dock.cpp @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/dock/Dock.h b/src/dock/Dock.h index 33bdeeae..3dcd4593 100644 --- a/src/dock/Dock.h +++ b/src/dock/Dock.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/emoji/EmojiModel.cpp b/src/emoji/EmojiModel.cpp index 5a00c43f..c9e6ffe8 100644 --- a/src/emoji/EmojiModel.cpp +++ b/src/emoji/EmojiModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/emoji/EmojiModel.h b/src/emoji/EmojiModel.h index b33df1c3..5b6cf52f 100644 --- a/src/emoji/EmojiModel.h +++ b/src/emoji/EmojiModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/emoji/MacHelper.h b/src/emoji/MacHelper.h index cc3fd645..8de16c12 100644 --- a/src/emoji/MacHelper.h +++ b/src/emoji/MacHelper.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/emoji/Provider.cpp b/src/emoji/Provider.cpp index 41c254d8..1871a47a 100644 --- a/src/emoji/Provider.cpp +++ b/src/emoji/Provider.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/emoji/Provider.h b/src/emoji/Provider.h index 32544793..07b6375f 100644 --- a/src/emoji/Provider.h +++ b/src/emoji/Provider.h @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/encryption/DeviceVerificationFlow.cpp b/src/encryption/DeviceVerificationFlow.cpp index df5e0c3e..0e9043dd 100644 --- a/src/encryption/DeviceVerificationFlow.cpp +++ b/src/encryption/DeviceVerificationFlow.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/encryption/DeviceVerificationFlow.h b/src/encryption/DeviceVerificationFlow.h index 7a8500c4..d8fea956 100644 --- a/src/encryption/DeviceVerificationFlow.h +++ b/src/encryption/DeviceVerificationFlow.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/encryption/Olm.cpp b/src/encryption/Olm.cpp index a1d311e1..ea30da4c 100644 --- a/src/encryption/Olm.cpp +++ b/src/encryption/Olm.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/encryption/Olm.h b/src/encryption/Olm.h index e48fde67..55f7241d 100644 --- a/src/encryption/Olm.h +++ b/src/encryption/Olm.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/encryption/SelfVerificationStatus.cpp b/src/encryption/SelfVerificationStatus.cpp index fac7f6a2..1f13a541 100644 --- a/src/encryption/SelfVerificationStatus.cpp +++ b/src/encryption/SelfVerificationStatus.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/encryption/SelfVerificationStatus.h b/src/encryption/SelfVerificationStatus.h index e5c1971b..32c40ed4 100644 --- a/src/encryption/SelfVerificationStatus.h +++ b/src/encryption/SelfVerificationStatus.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/encryption/VerificationManager.cpp b/src/encryption/VerificationManager.cpp index bb986665..cd13fed6 100644 --- a/src/encryption/VerificationManager.cpp +++ b/src/encryption/VerificationManager.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/encryption/VerificationManager.h b/src/encryption/VerificationManager.h index a6f3f861..c6ac1841 100644 --- a/src/encryption/VerificationManager.h +++ b/src/encryption/VerificationManager.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/main.cpp b/src/main.cpp index d1b4b769..9973b03b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2017 Konstantinos Sideris // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/notifications/MacNotificationDelegate.h b/src/notifications/MacNotificationDelegate.h index e5bbe23b..68365a86 100644 --- a/src/notifications/MacNotificationDelegate.h +++ b/src/notifications/MacNotificationDelegate.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/notifications/Manager.cpp b/src/notifications/Manager.cpp index ba550530..9fd032cd 100644 --- a/src/notifications/Manager.cpp +++ b/src/notifications/Manager.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/notifications/Manager.h b/src/notifications/Manager.h index 9c992767..bf7af29b 100644 --- a/src/notifications/Manager.h +++ b/src/notifications/Manager.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/notifications/ManagerLinux.cpp b/src/notifications/ManagerLinux.cpp index 225a6533..294df4db 100644 --- a/src/notifications/ManagerLinux.cpp +++ b/src/notifications/ManagerLinux.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2012 Roland Hieber // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/notifications/ManagerMac.cpp b/src/notifications/ManagerMac.cpp index 630080d4..cec87c66 100644 --- a/src/notifications/ManagerMac.cpp +++ b/src/notifications/ManagerMac.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/notifications/ManagerWin.cpp b/src/notifications/ManagerWin.cpp index 2d2dba37..c950b6e4 100644 --- a/src/notifications/ManagerWin.cpp +++ b/src/notifications/ManagerWin.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/notifications/NotificationManagerProxy.h b/src/notifications/NotificationManagerProxy.h index c7a2e234..27f91853 100644 --- a/src/notifications/NotificationManagerProxy.h +++ b/src/notifications/NotificationManagerProxy.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/CommunitiesModel.cpp b/src/timeline/CommunitiesModel.cpp index 96d090f7..9f34c3ff 100644 --- a/src/timeline/CommunitiesModel.cpp +++ b/src/timeline/CommunitiesModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/CommunitiesModel.h b/src/timeline/CommunitiesModel.h index a40b4802..8b9ee911 100644 --- a/src/timeline/CommunitiesModel.h +++ b/src/timeline/CommunitiesModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/DelegateChooser.cpp b/src/timeline/DelegateChooser.cpp index c8ab1511..fde9e08d 100644 --- a/src/timeline/DelegateChooser.cpp +++ b/src/timeline/DelegateChooser.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/DelegateChooser.h b/src/timeline/DelegateChooser.h index d34d13e4..b605837b 100644 --- a/src/timeline/DelegateChooser.h +++ b/src/timeline/DelegateChooser.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/EventStore.cpp b/src/timeline/EventStore.cpp index 65efc0b4..66eed82f 100644 --- a/src/timeline/EventStore.cpp +++ b/src/timeline/EventStore.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/EventStore.h b/src/timeline/EventStore.h index 108fa735..bfca7dbe 100644 --- a/src/timeline/EventStore.h +++ b/src/timeline/EventStore.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp index 94955152..1cec5426 100644 --- a/src/timeline/InputBar.cpp +++ b/src/timeline/InputBar.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/InputBar.h b/src/timeline/InputBar.h index 125591d4..eb261b02 100644 --- a/src/timeline/InputBar.h +++ b/src/timeline/InputBar.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/Permissions.cpp b/src/timeline/Permissions.cpp index 78bb3cf6..a8d8e0ee 100644 --- a/src/timeline/Permissions.cpp +++ b/src/timeline/Permissions.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/Permissions.h b/src/timeline/Permissions.h index 1b3f55e4..bfc2b04a 100644 --- a/src/timeline/Permissions.h +++ b/src/timeline/Permissions.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/PresenceEmitter.cpp b/src/timeline/PresenceEmitter.cpp index 370bbb01..63cadcd1 100644 --- a/src/timeline/PresenceEmitter.cpp +++ b/src/timeline/PresenceEmitter.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/PresenceEmitter.h b/src/timeline/PresenceEmitter.h index c1f07c76..80352a57 100644 --- a/src/timeline/PresenceEmitter.h +++ b/src/timeline/PresenceEmitter.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/Reaction.cpp b/src/timeline/Reaction.cpp index 0047d1e5..0c64d7c6 100644 --- a/src/timeline/Reaction.cpp +++ b/src/timeline/Reaction.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/Reaction.h b/src/timeline/Reaction.h index 9ed3f801..3a83a48b 100644 --- a/src/timeline/Reaction.h +++ b/src/timeline/Reaction.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/RoomlistModel.cpp b/src/timeline/RoomlistModel.cpp index 827cbed1..64eca182 100644 --- a/src/timeline/RoomlistModel.cpp +++ b/src/timeline/RoomlistModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/RoomlistModel.h b/src/timeline/RoomlistModel.h index 0d52102d..81907dff 100644 --- a/src/timeline/RoomlistModel.h +++ b/src/timeline/RoomlistModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/TimelineFilter.cpp b/src/timeline/TimelineFilter.cpp index 9a9df6be..d59d517e 100644 --- a/src/timeline/TimelineFilter.cpp +++ b/src/timeline/TimelineFilter.cpp @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/TimelineFilter.h b/src/timeline/TimelineFilter.h index c35f8da3..9a4d44fe 100644 --- a/src/timeline/TimelineFilter.h +++ b/src/timeline/TimelineFilter.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index f3d92e31..7b50da59 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/TimelineModel.h b/src/timeline/TimelineModel.h index 59ad1b37..cb8aa380 100644 --- a/src/timeline/TimelineModel.h +++ b/src/timeline/TimelineModel.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/TimelineViewManager.cpp b/src/timeline/TimelineViewManager.cpp index 12a247c8..ba586ef9 100644 --- a/src/timeline/TimelineViewManager.cpp +++ b/src/timeline/TimelineViewManager.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/timeline/TimelineViewManager.h b/src/timeline/TimelineViewManager.h index c305fe66..9d8c6844 100644 --- a/src/timeline/TimelineViewManager.h +++ b/src/timeline/TimelineViewManager.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/HiddenEvents.cpp b/src/ui/HiddenEvents.cpp index 4686dfef..06a15e32 100644 --- a/src/ui/HiddenEvents.cpp +++ b/src/ui/HiddenEvents.cpp @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/HiddenEvents.h b/src/ui/HiddenEvents.h index 3c0e0c67..cac7dad6 100644 --- a/src/ui/HiddenEvents.h +++ b/src/ui/HiddenEvents.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/MxcAnimatedImage.cpp b/src/ui/MxcAnimatedImage.cpp index 7f7210e3..f7ac049f 100644 --- a/src/ui/MxcAnimatedImage.cpp +++ b/src/ui/MxcAnimatedImage.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/MxcAnimatedImage.h b/src/ui/MxcAnimatedImage.h index 8891e57e..407888e4 100644 --- a/src/ui/MxcAnimatedImage.h +++ b/src/ui/MxcAnimatedImage.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/MxcMediaProxy.cpp b/src/ui/MxcMediaProxy.cpp index dadd4478..46d7430f 100644 --- a/src/ui/MxcMediaProxy.cpp +++ b/src/ui/MxcMediaProxy.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/MxcMediaProxy.h b/src/ui/MxcMediaProxy.h index 1b6bf34e..b87e97f0 100644 --- a/src/ui/MxcMediaProxy.h +++ b/src/ui/MxcMediaProxy.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/NhekoCursorShape.cpp b/src/ui/NhekoCursorShape.cpp index 1c5918b4..a7ace9a1 100644 --- a/src/ui/NhekoCursorShape.cpp +++ b/src/ui/NhekoCursorShape.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/NhekoCursorShape.h b/src/ui/NhekoCursorShape.h index 1f91d7de..f3a1864f 100644 --- a/src/ui/NhekoCursorShape.h +++ b/src/ui/NhekoCursorShape.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/NhekoDropArea.cpp b/src/ui/NhekoDropArea.cpp index 736f5172..32047e6a 100644 --- a/src/ui/NhekoDropArea.cpp +++ b/src/ui/NhekoDropArea.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/NhekoDropArea.h b/src/ui/NhekoDropArea.h index 70da4451..3d02d52a 100644 --- a/src/ui/NhekoDropArea.h +++ b/src/ui/NhekoDropArea.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/NhekoEventObserver.cpp b/src/ui/NhekoEventObserver.cpp index 5e67cec4..a6d4ca11 100644 --- a/src/ui/NhekoEventObserver.cpp +++ b/src/ui/NhekoEventObserver.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/NhekoEventObserver.h b/src/ui/NhekoEventObserver.h index 6d14f30f..3d43e6d2 100644 --- a/src/ui/NhekoEventObserver.h +++ b/src/ui/NhekoEventObserver.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/NhekoGlobalObject.cpp b/src/ui/NhekoGlobalObject.cpp index 0573d5ee..99921d79 100644 --- a/src/ui/NhekoGlobalObject.cpp +++ b/src/ui/NhekoGlobalObject.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/NhekoGlobalObject.h b/src/ui/NhekoGlobalObject.h index 6ef71bcc..690761a5 100644 --- a/src/ui/NhekoGlobalObject.h +++ b/src/ui/NhekoGlobalObject.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/RoomSettings.cpp b/src/ui/RoomSettings.cpp index 67be0bbb..380ed295 100644 --- a/src/ui/RoomSettings.cpp +++ b/src/ui/RoomSettings.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/RoomSettings.h b/src/ui/RoomSettings.h index 99d27eee..3113d3e3 100644 --- a/src/ui/RoomSettings.h +++ b/src/ui/RoomSettings.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/RoomSummary.cpp b/src/ui/RoomSummary.cpp index 6623da10..3ac04d34 100644 --- a/src/ui/RoomSummary.cpp +++ b/src/ui/RoomSummary.cpp @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/RoomSummary.h b/src/ui/RoomSummary.h index 30d47eb1..f985c634 100644 --- a/src/ui/RoomSummary.h +++ b/src/ui/RoomSummary.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/Theme.cpp b/src/ui/Theme.cpp index 02450230..add2e0f9 100644 --- a/src/ui/Theme.cpp +++ b/src/ui/Theme.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/Theme.h b/src/ui/Theme.h index 140e60b3..1d5742cf 100644 --- a/src/ui/Theme.h +++ b/src/ui/Theme.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/ThemeManager.cpp b/src/ui/ThemeManager.cpp index e275fa90..fb044968 100644 --- a/src/ui/ThemeManager.cpp +++ b/src/ui/ThemeManager.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/ThemeManager.h b/src/ui/ThemeManager.h index 1924611d..a5f93468 100644 --- a/src/ui/ThemeManager.h +++ b/src/ui/ThemeManager.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/UIA.cpp b/src/ui/UIA.cpp index d67d1ba9..53715340 100644 --- a/src/ui/UIA.cpp +++ b/src/ui/UIA.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/UIA.h b/src/ui/UIA.h index 73a58ffe..8499f12b 100644 --- a/src/ui/UIA.h +++ b/src/ui/UIA.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/UserProfile.cpp b/src/ui/UserProfile.cpp index a3bc87de..cbeb1f4f 100644 --- a/src/ui/UserProfile.cpp +++ b/src/ui/UserProfile.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/ui/UserProfile.h b/src/ui/UserProfile.h index facae6ec..206b607a 100644 --- a/src/ui/UserProfile.h +++ b/src/ui/UserProfile.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/voip/CallDevices.cpp b/src/voip/CallDevices.cpp index 49eca6d5..e47b5960 100644 --- a/src/voip/CallDevices.cpp +++ b/src/voip/CallDevices.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/voip/CallDevices.h b/src/voip/CallDevices.h index 8cfcdd1c..951f1ab2 100644 --- a/src/voip/CallDevices.h +++ b/src/voip/CallDevices.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/voip/CallManager.cpp b/src/voip/CallManager.cpp index 1bb1700f..3d795fc1 100644 --- a/src/voip/CallManager.cpp +++ b/src/voip/CallManager.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/voip/CallManager.h b/src/voip/CallManager.h index 3011444f..4716de7f 100644 --- a/src/voip/CallManager.h +++ b/src/voip/CallManager.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/voip/WebRTCSession.cpp b/src/voip/WebRTCSession.cpp index 706a69d9..73e71030 100644 --- a/src/voip/WebRTCSession.cpp +++ b/src/voip/WebRTCSession.cpp @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later diff --git a/src/voip/WebRTCSession.h b/src/voip/WebRTCSession.h index 081611e5..da13e356 100644 --- a/src/voip/WebRTCSession.h +++ b/src/voip/WebRTCSession.h @@ -1,5 +1,6 @@ // SPDX-FileCopyrightText: 2021 Nheko Contributors // SPDX-FileCopyrightText: 2022 Nheko Contributors +// SPDX-FileCopyrightText: 2023 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later From 77d2e31ace0a1b301ab82979e48521d4cdb79bab Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 2 Jan 2023 18:46:29 +0100 Subject: [PATCH 12/13] Maybe fix text selection in raw message dialog --- resources/qml/dialogs/RawMessageDialog.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/dialogs/RawMessageDialog.qml b/resources/qml/dialogs/RawMessageDialog.qml index 4801c179..4189c375 100644 --- a/resources/qml/dialogs/RawMessageDialog.qml +++ b/resources/qml/dialogs/RawMessageDialog.qml @@ -36,6 +36,7 @@ ApplicationWindow { font: Nheko.monospaceFont() color: Nheko.colors.text readOnly: true + selectByMouse: !Settings.mobileMode textFormat: Text.PlainText anchors.fill: parent From 06723a473616229cef43fec9190deb64f1d11bf7 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 2 Jan 2023 18:56:47 +0100 Subject: [PATCH 13/13] Bump mtxclient version --- CMakeLists.txt | 2 +- io.github.NhekoReborn.Nheko.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8658b228..079fdcb9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -595,7 +595,7 @@ if(USE_BUNDLED_MTXCLIENT) FetchContent_Declare( MatrixClient GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git - GIT_TAG d187c63a27710fa87a44ab44d43b7cfa2023132a + GIT_TAG 176242b1d2c68878c0ce610c109d0779fe7fa8fb ) set(BUILD_LIB_EXAMPLES OFF CACHE INTERNAL "") set(BUILD_LIB_TESTS OFF CACHE INTERNAL "") diff --git a/io.github.NhekoReborn.Nheko.yaml b/io.github.NhekoReborn.Nheko.yaml index e8b6e9f2..e90fae86 100644 --- a/io.github.NhekoReborn.Nheko.yaml +++ b/io.github.NhekoReborn.Nheko.yaml @@ -182,7 +182,7 @@ modules: buildsystem: cmake-ninja name: mtxclient sources: - - commit: d187c63a27710fa87a44ab44d43b7cfa2023132a + - commit: 176242b1d2c68878c0ce610c109d0779fe7fa8fb #tag: v0.8.2 type: git url: https://github.com/Nheko-Reborn/mtxclient.git