From 1ac7285c7970edbf06fa0c6172f668f76640d8a6 Mon Sep 17 00:00:00 2001 From: Anthony Bilinski Date: Wed, 9 Mar 2022 03:35:47 -0800 Subject: [PATCH] refactor(widget): Make RemoveFriendDialog generic for Chats --- CMakeLists.txt | 6 ++-- ...ovefrienddialog.ui => removechatdialog.ui} | 8 ++--- ...efrienddialog.cpp => removechatdialog.cpp} | 14 +++++---- ...emovefrienddialog.h => removechatdialog.h} | 8 ++--- src/widget/widget.cpp | 5 ++-- translations/ar.ts | 30 +++++++++---------- translations/be.ts | 30 +++++++++---------- translations/bg.ts | 30 +++++++++---------- translations/cs.ts | 30 +++++++++---------- translations/da.ts | 14 ++++----- translations/de.ts | 30 +++++++++---------- translations/el.ts | 30 +++++++++---------- translations/eo.ts | 12 ++++---- translations/es.ts | 30 +++++++++---------- translations/et.ts | 30 +++++++++---------- translations/fa.ts | 30 +++++++++---------- translations/fi.ts | 30 +++++++++---------- translations/fr.ts | 30 +++++++++---------- translations/gl.ts | 30 +++++++++---------- translations/he.ts | 12 ++++---- translations/hr.ts | 30 +++++++++---------- translations/hu.ts | 30 +++++++++---------- translations/is.ts | 12 ++++---- translations/it.ts | 30 +++++++++---------- translations/ja.ts | 30 +++++++++---------- translations/kn.ts | 12 ++++---- translations/ko.ts | 12 ++++---- translations/lt.ts | 30 +++++++++---------- translations/lv.ts | 30 +++++++++---------- translations/mk.ts | 30 +++++++++---------- translations/nl.ts | 30 +++++++++---------- translations/nl_BE.ts | 30 +++++++++---------- translations/no_nb.ts | 30 +++++++++---------- translations/pl.ts | 30 +++++++++---------- translations/pt.ts | 30 +++++++++---------- translations/pt_BR.ts | 30 +++++++++---------- translations/ro.ts | 30 +++++++++---------- translations/ru.ts | 30 +++++++++---------- translations/si.ts | 12 ++++---- translations/sk.ts | 30 +++++++++---------- translations/sl.ts | 8 ++--- translations/sq.ts | 12 ++++---- translations/sr.ts | 30 +++++++++---------- translations/sr_Latn.ts | 30 +++++++++---------- translations/sv.ts | 30 +++++++++---------- translations/sw.ts | 12 ++++---- translations/ta.ts | 8 ++--- translations/tr.ts | 30 +++++++++---------- translations/ug.ts | 30 +++++++++---------- translations/uk.ts | 18 +++++------ translations/ur.ts | 12 ++++---- translations/zh_CN.ts | 30 +++++++++---------- translations/zh_TW.ts | 14 ++++----- 53 files changed, 617 insertions(+), 614 deletions(-) rename src/widget/form/{removefrienddialog.ui => removechatdialog.ui} (92%) rename src/widget/tool/{removefrienddialog.cpp => removechatdialog.cpp} (84%) rename src/widget/tool/{removefrienddialog.h => removechatdialog.h} (86%) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd592f9b4..103128c7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -137,7 +137,7 @@ qt5_wrap_ui(${PROJECT_NAME}_FORMS src/widget/about/aboutfriendform.ui src/widget/form/loadhistorydialog.ui src/widget/form/profileform.ui - src/widget/form/removefrienddialog.ui + src/widget/form/removechatdialog.ui src/widget/form/searchsettingsform.ui src/widget/form/setpassworddialog.ui src/widget/form/settings/aboutsettings.ui @@ -490,8 +490,8 @@ set(${PROJECT_NAME}_SOURCES src/widget/tool/profileimporter.h src/widget/tool/recursivesignalblocker.cpp src/widget/tool/recursivesignalblocker.h - src/widget/tool/removefrienddialog.cpp - src/widget/tool/removefrienddialog.h + src/widget/tool/removechatdialog.cpp + src/widget/tool/removechatdialog.h src/widget/tool/screengrabberchooserrectitem.cpp src/widget/tool/screengrabberchooserrectitem.h src/widget/tool/screengrabberoverlayitem.cpp diff --git a/src/widget/form/removefrienddialog.ui b/src/widget/form/removechatdialog.ui similarity index 92% rename from src/widget/form/removefrienddialog.ui rename to src/widget/form/removechatdialog.ui index 3b5058436..4d3a9e47d 100644 --- a/src/widget/form/removefrienddialog.ui +++ b/src/widget/form/removechatdialog.ui @@ -1,7 +1,7 @@ - RemoveFriendDialog - + RemoveChatDialog + 0 @@ -60,7 +60,7 @@ buttonBox accepted() - RemoveFriendDialog + RemoveChatDialog accept() @@ -76,7 +76,7 @@ buttonBox rejected() - RemoveFriendDialog + RemoveChatDialog reject() diff --git a/src/widget/tool/removefrienddialog.cpp b/src/widget/tool/removechatdialog.cpp similarity index 84% rename from src/widget/tool/removefrienddialog.cpp rename to src/widget/tool/removechatdialog.cpp index f87220de7..1af5dc6dc 100644 --- a/src/widget/tool/removefrienddialog.cpp +++ b/src/widget/tool/removechatdialog.cpp @@ -17,17 +17,19 @@ along with qTox. If not, see . */ -#include "removefrienddialog.h" +#include "removechatdialog.h" +#include "src/model/chat.h" + #include -RemoveFriendDialog::RemoveFriendDialog(QWidget* parent, const Friend* f) +RemoveChatDialog::RemoveChatDialog(QWidget* parent, const Chat& contact) : QDialog(parent) { setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setAttribute(Qt::WA_QuitOnClose, false); ui.setupUi(this); - QString name = f->getDisplayedName().toHtmlEscaped(); + QString name = contact.getDisplayedName().toHtmlEscaped(); QString text = tr("Are you sure you want to remove %1 from your contacts list?") .arg(QString("%1").arg(name)); @@ -37,12 +39,12 @@ RemoveFriendDialog::RemoveFriendDialog(QWidget* parent, const Friend* f) removeButton->setText(tr("Remove")); cancelButton->setDefault(true); adjustSize(); - connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &RemoveFriendDialog::onAccepted); - connect(ui.buttonBox, &QDialogButtonBox::rejected, this, &RemoveFriendDialog::close); + connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &RemoveChatDialog::onAccepted); + connect(ui.buttonBox, &QDialogButtonBox::rejected, this, &RemoveChatDialog::close); setFocus(); } -void RemoveFriendDialog::onAccepted() +void RemoveChatDialog::onAccepted() { _accepted = true; close(); diff --git a/src/widget/tool/removefrienddialog.h b/src/widget/tool/removechatdialog.h similarity index 86% rename from src/widget/tool/removefrienddialog.h rename to src/widget/tool/removechatdialog.h index bfb9a8eba..b5016fe0a 100644 --- a/src/widget/tool/removefrienddialog.h +++ b/src/widget/tool/removechatdialog.h @@ -20,16 +20,16 @@ #pragma once -#include "ui_removefrienddialog.h" +#include "ui_removechatdialog.h" #include "src/model/friend.h" #include -class RemoveFriendDialog : public QDialog +class RemoveChatDialog : public QDialog { Q_OBJECT public: - explicit RemoveFriendDialog(QWidget* parent, const Friend* f); + explicit RemoveChatDialog(QWidget* parent, const Chat& contact); inline bool removeHistory() { @@ -45,6 +45,6 @@ public slots: void onAccepted(); protected: - Ui_RemoveFriendDialog ui; + Ui_RemoveChatDialog ui; bool _accepted = false; }; diff --git a/src/widget/widget.cpp b/src/widget/widget.cpp index eaa442b56..fc3e2e985 100644 --- a/src/widget/widget.cpp +++ b/src/widget/widget.cpp @@ -79,7 +79,7 @@ #include "src/widget/style.h" #include "src/widget/translator.h" #include "src/widget/tool/imessageboxmanager.h" -#include "tool/removefrienddialog.h" +#include "tool/removechatdialog.h" #include "src/persistence/smileypack.h" bool toxActivateEventHandler(const QByteArray& data, void* userData) @@ -1742,8 +1742,9 @@ void Widget::updateFriendActivity(const Friend& frnd) void Widget::removeFriend(Friend* f, bool fake) { + assert(f); if (!fake) { - RemoveFriendDialog ask(this, f); + RemoveChatDialog ask(this, *f); ask.exec(); if (!ask.accepted()) { diff --git a/translations/ar.ts b/translations/ar.ts index f92cd1d21..cd0f0b69c 100644 --- a/translations/ar.ts +++ b/translations/ar.ts @@ -2499,26 +2499,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - ازالة صديق - - - Also remove chat history - ايضا حذف سجل المحادثة - - - Remove - ازالة - - - Are you sure you want to remove %1 from your contacts list? - هل انت متأكد من ازالة %1 من جهات الاتصال ؟ + ازالة صديق Remove all chat history with the friend if set - ازالة تاريخ جمبيع المحادثات مع الصديق اذا وجد + ازالة تاريخ جمبيع المحادثات مع الصديق اذا وجد + + + Also remove chat history + ايضا حذف سجل المحادثة + + + Are you sure you want to remove %1 from your contacts list? + هل انت متأكد من ازالة %1 من جهات الاتصال ؟ + + + Remove + ازالة diff --git a/translations/be.ts b/translations/be.ts index 1797c3806..8331a896a 100644 --- a/translations/be.ts +++ b/translations/be.ts @@ -2495,26 +2495,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Выдаліць сябра - - - Also remove chat history - Таксама выдаліць гісторыю чату - - - Remove - Выдаліць - - - Are you sure you want to remove %1 from your contacts list? - Вы сапраўды хочаце выдаліць %1 з вашага спісу кантактаў? + Выдаліць сябра Remove all chat history with the friend if set - Выдаліць усю гісторыю чату з сябрам, калі зададзена + Выдаліць усю гісторыю чату з сябрам, калі зададзена + + + Also remove chat history + Таксама выдаліць гісторыю чату + + + Are you sure you want to remove %1 from your contacts list? + Вы сапраўды хочаце выдаліць %1 з вашага спісу кантактаў? + + + Remove + Выдаліць diff --git a/translations/bg.ts b/translations/bg.ts index 25bd21c13..16c452703 100644 --- a/translations/bg.ts +++ b/translations/bg.ts @@ -2496,26 +2496,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Премахване на приятеля - - - Also remove chat history - Също да се премахне хронологията на разговора - - - Remove - Премахване - - - Are you sure you want to remove %1 from your contacts list? - Сигурни ли сте, че искате да премахнете %1 от вашия лист с контакти? + Премахване на контакт Remove all chat history with the friend if set - Премахнете цялата история на чатовете с приятел, ако е зададено + Премахнете цялата история на чатовете с приятел, ако е зададено + + + Also remove chat history + Също да се премахне хронологията на разговора + + + Are you sure you want to remove %1 from your contacts list? + Сигурни ли сте, че искате да премахнете %1 от вашия лист с контакти? + + + Remove + Премахни diff --git a/translations/cs.ts b/translations/cs.ts index e583e59d1..af082ae14 100644 --- a/translations/cs.ts +++ b/translations/cs.ts @@ -2499,26 +2499,26 @@ ID zahrnuje kód NoSpam (modře) a kontrolní součet (šedě). - RemoveFriendDialog + RemoveChatDialog Remove friend - Odebrat kontakt - - - Also remove chat history - Také odstranit historii chatu - - - Remove - Odstranit - - - Are you sure you want to remove %1 from your contacts list? - Opravdu chcete odebrat %1 ze seznamu kontaktů? + Odebrat kontakt Remove all chat history with the friend if set - Odstranit celou historii chatu u vybraného kontaktu + Odstranit celou historii chatu u vybraného kontaktu + + + Also remove chat history + Také odstranit historii chatu + + + Are you sure you want to remove %1 from your contacts list? + Opravdu chcete odebrat %1 ze seznamu kontaktů? + + + Remove + Odstranit diff --git a/translations/da.ts b/translations/da.ts index b6fa3f640..bb9cab08a 100644 --- a/translations/da.ts +++ b/translations/da.ts @@ -2479,26 +2479,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - Fjern - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set - + Remove + Fjern diff --git a/translations/de.ts b/translations/de.ts index 7ad8aa7b1..6f93932b1 100644 --- a/translations/de.ts +++ b/translations/de.ts @@ -2504,26 +2504,26 @@ Diese ID enthält den NoSpam-Code (in blau) und die Prüfsumme (in grau). - RemoveFriendDialog + RemoveChatDialog Remove friend - Kontakt löschen - - - Also remove chat history - Gesprächsverlauf ebenfalls löschen - - - Remove - Löschen - - - Are you sure you want to remove %1 from your contacts list? - Bist du dir sicher, dass du %1 aus deiner Kontaktliste entfernen möchtest? + Freund entfernen Remove all chat history with the friend if set - Löscht den gesamten Chatverlauf mit diesem Freund, wenn aktiviert + Löscht den gesamten Chatverlauf mit diesem Freund, wenn aktiviert + + + Also remove chat history + Gesprächsverlauf ebenfalls löschen + + + Are you sure you want to remove %1 from your contacts list? + Bist du dir sicher, dass du %1 aus deiner Kontaktliste entfernen möchtest? + + + Remove + Löschen diff --git a/translations/el.ts b/translations/el.ts index ea0929e34..632a8fcff 100644 --- a/translations/el.ts +++ b/translations/el.ts @@ -2483,26 +2483,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Κατάργηση φίλου - - - Also remove chat history - Επίσης να καταργηθεί το ιστορικό συνομιλιών - - - Remove - Αφαίρεση - - - Are you sure you want to remove %1 from your contacts list? - Είστε βέβαιοι ότι θέλετε να καταργήσετε τον/ην %1 από τη λίστα επαφών σας; + Κατάργηση φίλου Remove all chat history with the friend if set - Κατάργηση όλου του ιστορικού συνομιλίας με το φίλο, εάν είναι ορισμένο + Κατάργηση όλου του ιστορικού συνομιλίας με το φίλο, εάν είναι ορισμένο + + + Also remove chat history + Επίσης να καταργηθεί το ιστορικό συνομιλιών + + + Are you sure you want to remove %1 from your contacts list? + Είστε βέβαιοι ότι θέλετε να καταργήσετε τον/ην %1 από τη λίστα επαφών σας; + + + Remove + Αφαίρεση diff --git a/translations/eo.ts b/translations/eo.ts index 37436ce20..a95ae959f 100644 --- a/translations/eo.ts +++ b/translations/eo.ts @@ -2471,25 +2471,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/es.ts b/translations/es.ts index 814c77bb8..fc50656d2 100644 --- a/translations/es.ts +++ b/translations/es.ts @@ -2496,26 +2496,26 @@ Este ID incluye el código NoSpam (en azul), y la suma de comprobación (en gris - RemoveFriendDialog + RemoveChatDialog Remove friend - Eliminar amigo - - - Also remove chat history - Eliminar también el historial del chat - - - Remove - Eliminar - - - Are you sure you want to remove %1 from your contacts list? - ¿Estás seguro de que deseas eliminar a %1 de tu lista de contactos? + Suprimir amigo Remove all chat history with the friend if set - Eliminar todo el historial del chat con el amigo si está establecido + Eliminar todo el historial del chat con el amigo si está establecido + + + Also remove chat history + Eliminar también el historial del chat + + + Are you sure you want to remove %1 from your contacts list? + ¿Estás seguro de que deseas eliminar a %1 de tu lista de contactos? + + + Remove + Eliminar diff --git a/translations/et.ts b/translations/et.ts index c8c1f6a1b..d9e2f7038 100644 --- a/translations/et.ts +++ b/translations/et.ts @@ -2498,26 +2498,26 @@ See ID sisaldab NoSpam koodi (sinine) ja kontrollsumma (hall). - RemoveFriendDialog + RemoveChatDialog Remove friend - Eemalda sõber - - - Also remove chat history - Kustuta ka vestluste ajalugu - - - Remove - Eemalda - - - Are you sure you want to remove %1 from your contacts list? - Oled kindel, et soovid %1 oma kontaktide nimekirjast eemaldada? + Eemalda sõber Remove all chat history with the friend if set - Kui määratud, siis eemalda sõbraga seotud vestluste ajalugu + Kui määratud, siis eemalda sõbraga seotud vestluste ajalugu + + + Also remove chat history + Kustuta ka vestluste ajalugu + + + Are you sure you want to remove %1 from your contacts list? + Oled kindel, et soovid %1 oma kontaktide nimekirjast eemaldada? + + + Remove + Eemalda diff --git a/translations/fa.ts b/translations/fa.ts index 4288f9568..c5620987a 100644 --- a/translations/fa.ts +++ b/translations/fa.ts @@ -2487,26 +2487,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - حذف دوست - - - Also remove chat history - همچنین سابقه گفت‌و‌گو را حذف کن - - - Remove - حذف - - - Are you sure you want to remove %1 from your contacts list? - آیا برای حذف %1 از لیست مخاطبین خود اطمینان دارید؟ + حذف دوست Remove all chat history with the friend if set - در صورت وجود تمام سابقه گفت‌و‌گو با دوست را حذف کن + در صورت وجود تمام سابقه گفت‌و‌گو با دوست را حذف کن + + + Also remove chat history + همچنین سابقه گفت‌و‌گو را حذف کن + + + Are you sure you want to remove %1 from your contacts list? + آیا برای حذف %1 از لیست مخاطبین خود اطمینان دارید؟ + + + Remove + حذف diff --git a/translations/fi.ts b/translations/fi.ts index ce94d663f..250f693e9 100644 --- a/translations/fi.ts +++ b/translations/fi.ts @@ -2495,26 +2495,26 @@ Tämä ID sisältää spammin estävän koodin(joka on sinisellä), ja tarkistus - RemoveFriendDialog + RemoveChatDialog Remove friend - Poista kontakti - - - Also remove chat history - Poista myös keskusteluhistoria - - - Remove - Poista - - - Are you sure you want to remove %1 from your contacts list? - Oletko varma, että haluat poistaa kontaktin %1 kontaktilistastasi? + Poista kontakti Remove all chat history with the friend if set - Poistaa kaiken chat-historian kontaktilta jos valittu + Poistaa kaiken chat-historian kontaktilta jos valittu + + + Also remove chat history + Poista myös keskusteluhistoria + + + Are you sure you want to remove %1 from your contacts list? + Oletko varma, että haluat poistaa kontaktin %1 kontaktilistastasi? + + + Remove + Poista diff --git a/translations/fr.ts b/translations/fr.ts index b7b9aa184..cede4a429 100644 --- a/translations/fr.ts +++ b/translations/fr.ts @@ -2495,26 +2495,26 @@ Cet identifiant comprend le code NoSpam (en bleu) et la somme de contrôle (en g - RemoveFriendDialog + RemoveChatDialog Remove friend - Supprimer ce contact - - - Also remove chat history - Supprimer également l'historique de discussions - - - Remove - Supprimer - - - Are you sure you want to remove %1 from your contacts list? - Êtes-vous sûr(e) de vouloir supprimer %1 de votre liste de contacts ? + Supprimer ce contact Remove all chat history with the friend if set - Si activé, efface tout l'historique de discussions avec ce contact + Si activé, efface tout l'historique de discussions avec ce contact + + + Also remove chat history + Supprimer également l'historique de discussions + + + Are you sure you want to remove %1 from your contacts list? + Êtes-vous sûr(e) de vouloir supprimer %1 de votre liste de contacts ? + + + Remove + Supprimer diff --git a/translations/gl.ts b/translations/gl.ts index e4350f372..1ac1d62ec 100644 --- a/translations/gl.ts +++ b/translations/gl.ts @@ -2491,26 +2491,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Eliminar contacto - - - Also remove chat history - Elimina tamén o historial de charla - - - Remove - Eliminar - - - Are you sure you want to remove %1 from your contacts list? - Ten a certeza de que quere eliminar %1 da súa lista de contactos? + Eliminar contacto Remove all chat history with the friend if set - Se está definido, elimina todo o historial de charla co contacto + Se está definido, elimina todo o historial de charla co contacto + + + Also remove chat history + Elimina tamén o historial de charla + + + Are you sure you want to remove %1 from your contacts list? + Ten a certeza de que quere eliminar %1 da súa lista de contactos? + + + Remove + Eliminar diff --git a/translations/he.ts b/translations/he.ts index bb331728d..71d745313 100644 --- a/translations/he.ts +++ b/translations/he.ts @@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/hr.ts b/translations/hr.ts index 5f672348e..f0230f2f4 100644 --- a/translations/hr.ts +++ b/translations/hr.ts @@ -2487,26 +2487,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Ukloni prijatelja - - - Also remove chat history - Također ukloni i povijest čavrljanja - - - Remove - Ukloni - - - Are you sure you want to remove %1 from your contacts list? - Zaista želiš ukloniti „%1” iz kontakata? + Ukloni prijatelja Remove all chat history with the friend if set - Ukloni povijest čavrljanja s prijateljima, ako je postavljeno + Ukloni povijest čavrljanja s prijateljima, ako je postavljeno + + + Also remove chat history + Također ukloni i povijest čavrljanja + + + Are you sure you want to remove %1 from your contacts list? + Zaista želiš ukloniti „%1” iz kontakata? + + + Remove + Ukloni diff --git a/translations/hu.ts b/translations/hu.ts index e4ad6f32f..1f2441fd1 100644 --- a/translations/hu.ts +++ b/translations/hu.ts @@ -2479,26 +2479,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Partner eltávolítása - - - Also remove chat history - Az előzményeket is távolítsa el - - - Remove - Eltávolít - - - Are you sure you want to remove %1 from your contacts list? - Biztosan eltávolítja %1 partnert a partnerlistájáról? + Partner eltávolítása Remove all chat history with the friend if set - Eltávolít minden chat előzményt a partnerével, ha ez be van állítva + Eltávolít minden chat előzményt a partnerével, ha ez be van állítva + + + Also remove chat history + Az előzményeket is távolítsa el + + + Are you sure you want to remove %1 from your contacts list? + Biztosan eltávolítja %1 partnert a partnerlistájáról? + + + Remove + Törlés diff --git a/translations/is.ts b/translations/is.ts index 5408cd1ae..36bd5ea91 100644 --- a/translations/is.ts +++ b/translations/is.ts @@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/it.ts b/translations/it.ts index 731fc4428..d473ba451 100644 --- a/translations/it.ts +++ b/translations/it.ts @@ -2492,26 +2492,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Rimuovi contatto - - - Also remove chat history - Rimuovi anche la cronologia chat - - - Remove - Rimuovi - - - Are you sure you want to remove %1 from your contacts list? - Sei sicuro di voler rimuovere %1 dalla tua lista contatti? + Rimuovere l'amico Remove all chat history with the friend if set - Rimuove tutta la cronologia della chat con l'amico se impostata + Rimuove tutta la cronologia della chat con l'amico se impostata + + + Also remove chat history + Rimuovi anche la cronologia chat + + + Are you sure you want to remove %1 from your contacts list? + Sei sicuro di voler rimuovere %1 dalla tua lista contatti? + + + Remove + Rimuovi diff --git a/translations/ja.ts b/translations/ja.ts index 8762432d1..608b30ead 100644 --- a/translations/ja.ts +++ b/translations/ja.ts @@ -2478,26 +2478,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - 友達を削除 - - - Also remove chat history - チャット履歴も消去 - - - Remove - 削除 - - - Are you sure you want to remove %1 from your contacts list? - %1 を連絡先リストから削除してもよろしいですか? + 友達を削除 Remove all chat history with the friend if set - 設定した場合、友達とのチャット履歴をすべて削除します + 設定した場合、友達とのチャット履歴をすべて削除します + + + Also remove chat history + チャット履歴も消去 + + + Are you sure you want to remove %1 from your contacts list? + %1 を連絡先リストから削除してもよろしいですか? + + + Remove + 削除 diff --git a/translations/kn.ts b/translations/kn.ts index 0a2c0f490..7ed2adad4 100644 --- a/translations/kn.ts +++ b/translations/kn.ts @@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/ko.ts b/translations/ko.ts index 3a1430d44..2f7a3c43f 100644 --- a/translations/ko.ts +++ b/translations/ko.ts @@ -2477,25 +2477,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/lt.ts b/translations/lt.ts index de01d4ef0..e5c4eb266 100644 --- a/translations/lt.ts +++ b/translations/lt.ts @@ -2501,26 +2501,26 @@ Pasidalinkite ja su draugais, kad pradėtumėte kalbėtis. - RemoveFriendDialog + RemoveChatDialog Remove friend - Šalinti kontaktą - - - Also remove chat history - Išvalyti pokalbių žurnalą - - - Remove - Pašalinti - - - Are you sure you want to remove %1 from your contacts list? - Ar tikrai norite pašalinti %1 iš savo kontaktų sąrašo? + Šalinti kontaktą Remove all chat history with the friend if set - Jei nustatyta, šalinti visą pokalbių su kontaktu istoriją + Jei nustatyta, šalinti visą pokalbių su kontaktu istoriją + + + Also remove chat history + Išvalyti pokalbių žurnalą + + + Are you sure you want to remove %1 from your contacts list? + Ar tikrai norite pašalinti %1 iš savo kontaktų sąrašo? + + + Remove + Pašalinti diff --git a/translations/lv.ts b/translations/lv.ts index 6f682de27..eb0f6c87a 100644 --- a/translations/lv.ts +++ b/translations/lv.ts @@ -2502,26 +2502,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Dzēst draugu - - - Also remove chat history - Arī noņemt tērzēšanas vēsturi - - - Remove - Dzēst - - - Are you sure you want to remove %1 from your contacts list? - Vai Jūs tiešām vēlaties dzēst %1 no kontaktpersonu saraksta? + Noņemt draugu Remove all chat history with the friend if set - Dzēš visu tērzēšanas vēsturi ar draugu, ja tiek iestatīts + Dzēš visu tērzēšanas vēsturi ar draugu, ja tiek iestatīts + + + Also remove chat history + Arī noņemt tērzēšanas vēsturi + + + Are you sure you want to remove %1 from your contacts list? + Vai Jūs tiešām vēlaties dzēst %1 no kontaktpersonu saraksta? + + + Remove + Dzēst diff --git a/translations/mk.ts b/translations/mk.ts index 8509a6d6a..82a9e0e87 100644 --- a/translations/mk.ts +++ b/translations/mk.ts @@ -2495,26 +2495,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Отстрани пријател - - - Also remove chat history - Исто така отстрани ја чет историјата - - - Remove - Отстрани - - - Are you sure you want to remove %1 from your contacts list? - Дали сте сигурни дека сакате да го отстаните %1 од вашата листа на контакти? + Отстрани пријател Remove all chat history with the friend if set - Отстанете ја целата чет историја со пријателот ако е така поставено + Отстанете ја целата чет историја со пријателот ако е така поставено + + + Also remove chat history + Исто така отстрани ја чет историјата + + + Are you sure you want to remove %1 from your contacts list? + Дали сте сигурни дека сакате да го отстаните %1 од вашата листа на контакти? + + + Remove + Отстрани diff --git a/translations/nl.ts b/translations/nl.ts index 3fc4dbfa5..3724b5be0 100644 --- a/translations/nl.ts +++ b/translations/nl.ts @@ -2483,26 +2483,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Vriend verwijderen - - - Also remove chat history - Gespreksgeschiedenis ook verwijderen - - - Remove - Verwijderen - - - Are you sure you want to remove %1 from your contacts list? - Weet je zeker dat je %1 uit je contactenlijst wil verwijderen? + Vriend verwijderen Remove all chat history with the friend if set - Indien ingesteld alle gespreksgeschiedenis met de vriend verwijderen + Indien ingesteld alle gespreksgeschiedenis met de vriend verwijderen + + + Also remove chat history + Gespreksgeschiedenis ook verwijderen + + + Are you sure you want to remove %1 from your contacts list? + Weet je zeker dat je %1 uit je contactenlijst wil verwijderen? + + + Remove + Verwijderen diff --git a/translations/nl_BE.ts b/translations/nl_BE.ts index 1cbe9541f..34869ffbb 100644 --- a/translations/nl_BE.ts +++ b/translations/nl_BE.ts @@ -2491,26 +2491,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Vriend verwijderen - - - Also remove chat history - Gespreksgeschiedenis ook verwijderen - - - Remove - Verwijderen - - - Are you sure you want to remove %1 from your contacts list? - Zijt ge zeker dat ge %1 uit uw contactenlijst wilt verwijderen? + Vriend verwijderen Remove all chat history with the friend if set - Indien ingesteld alle gespreksgeschiedenis met de vriend verwijderen + Indien ingesteld alle gespreksgeschiedenis met de vriend verwijderen + + + Also remove chat history + Gespreksgeschiedenis ook verwijderen + + + Are you sure you want to remove %1 from your contacts list? + Zijt ge zeker dat ge %1 uit uw contactenlijst wilt verwijderen? + + + Remove + Verwijderen diff --git a/translations/no_nb.ts b/translations/no_nb.ts index a431f937f..77bbf4c17 100644 --- a/translations/no_nb.ts +++ b/translations/no_nb.ts @@ -2485,26 +2485,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Fjern venn - - - Also remove chat history - Fjern sludrehistorikk også - - - Remove - Fjern - - - Are you sure you want to remove %1 from your contacts list? - Er du sikker på at du vil fjerne %1 fra din kontaktliste? + Fjern venn Remove all chat history with the friend if set - Fjern all samtalehistorikk mellom deg vennen din hvis valgt + Fjern all samtalehistorikk mellom deg vennen din hvis valgt + + + Also remove chat history + Fjern sludrehistorikk også + + + Are you sure you want to remove %1 from your contacts list? + Er du sikker på at du vil fjerne %1 fra din kontaktliste? + + + Remove + Fjern diff --git a/translations/pl.ts b/translations/pl.ts index 2b62a2aa4..40c1829d7 100644 --- a/translations/pl.ts +++ b/translations/pl.ts @@ -2521,26 +2521,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Usuń kontakt - - - Also remove chat history - Usuń także historię rozmów - - - Remove - Usuń - - - Are you sure you want to remove %1 from your contacts list? - Czy na pewno chcesz usunąć %1 z twojej listy kontaktów? + Usuń kontakt Remove all chat history with the friend if set - Jeśli zaznaczone, usuń całą historię rozmów ze znajomym + Jeśli zaznaczone, usuń całą historię rozmów ze znajomym + + + Also remove chat history + Usuń także historię rozmów + + + Are you sure you want to remove %1 from your contacts list? + Czy na pewno chcesz usunąć %1 z twojej listy kontaktów? + + + Remove + Usuń diff --git a/translations/pt.ts b/translations/pt.ts index 92242e886..038cfa5bc 100644 --- a/translations/pt.ts +++ b/translations/pt.ts @@ -2495,26 +2495,26 @@ Este ID inclui o código NoSpam (em azul) e o checkum (em cinzento). - RemoveFriendDialog + RemoveChatDialog Remove friend - Remover contacto - - - Also remove chat history - Remover também o histórico de conversas - - - Remove - Remover - - - Are you sure you want to remove %1 from your contacts list? - Tem a certeza que quer remover %1 da sua lista de contactos? + Remover contacto Remove all chat history with the friend if set - Se definido, remove todo o histórico de conversas com o contacto + Se definido, remove todo o histórico de conversas com o contacto + + + Also remove chat history + Remover também o histórico de conversas + + + Are you sure you want to remove %1 from your contacts list? + Tem a certeza que quer remover %1 da sua lista de contactos? + + + Remove + Remover diff --git a/translations/pt_BR.ts b/translations/pt_BR.ts index d6044293f..f8533b456 100644 --- a/translations/pt_BR.ts +++ b/translations/pt_BR.ts @@ -2503,26 +2503,26 @@ Este ID inclui o código NoSpam (em azul) e o checkum (em cinza). - RemoveFriendDialog + RemoveChatDialog Remove friend - Remover contato - - - Also remove chat history - Também remover histórico de bate-papo - - - Remove - Remover - - - Are you sure you want to remove %1 from your contacts list? - Tem certeza de que deseja remover %1 da sua lista de contatos? + Remover contato Remove all chat history with the friend if set - Se marcado, remove todo o histórico de bate-papo com o amigo + Se marcado, remove todo o histórico de bate-papo com o amigo + + + Also remove chat history + Também remover histórico de bate-papo + + + Are you sure you want to remove %1 from your contacts list? + Tem certeza de que deseja remover %1 da sua lista de contatos? + + + Remove + Remover diff --git a/translations/ro.ts b/translations/ro.ts index 6f96b887f..4c94a0251 100644 --- a/translations/ro.ts +++ b/translations/ro.ts @@ -2507,26 +2507,26 @@ Acest ID include codul NoSpam (în albastru) și suma de control (în gri). - RemoveFriendDialog + RemoveChatDialog Remove friend - Ștergeți prieten - - - Also remove chat history - De asemenea, eliminați istoricul discuțiilor - - - Remove - Eliminați - - - Are you sure you want to remove %1 from your contacts list? - Sunteți sigur că vreți să eliminați %1 Din lista persoanelor de contact? + Ștergeți prieten Remove all chat history with the friend if set - Eliminați tot istoricul discuțiilor cu prietenul dacă este setat + Eliminați tot istoricul discuțiilor cu prietenul dacă este setat + + + Also remove chat history + De asemenea, eliminați istoricul discuțiilor + + + Are you sure you want to remove %1 from your contacts list? + Sunteți sigur că vreți să eliminați %1 Din lista persoanelor de contact? + + + Remove + Eliminați diff --git a/translations/ru.ts b/translations/ru.ts index 99a538ead..adfadad42 100644 --- a/translations/ru.ts +++ b/translations/ru.ts @@ -2505,26 +2505,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Удалить друга - - - Also remove chat history - Также удалить историю переписки - - - Remove - Удалить - - - Are you sure you want to remove %1 from your contacts list? - Вы уверены, что хотите удалить %1 из вашего списка контактов? + Удалить друга Remove all chat history with the friend if set - Удаляет всю историю переписки с другом если установлен + Удаляет всю историю переписки с другом если установлен + + + Also remove chat history + Также удалить историю переписки + + + Are you sure you want to remove %1 from your contacts list? + Вы уверены, что хотите удалить %1 из вашего списка контактов? + + + Remove + Удалить diff --git a/translations/si.ts b/translations/si.ts index 61cfd4aa5..dd404b132 100644 --- a/translations/si.ts +++ b/translations/si.ts @@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/sk.ts b/translations/sk.ts index fd3a7a138..941dd5356 100644 --- a/translations/sk.ts +++ b/translations/sk.ts @@ -2507,26 +2507,26 @@ Toto ID obsahuje kód NoSpam (modrou) a kontrolný súčet (šedou). - RemoveFriendDialog + RemoveChatDialog Remove friend - Odstrániť priateľa - - - Also remove chat history - Odstrániť aj históriu chatu - - - Remove - Odstrániť - - - Are you sure you want to remove %1 from your contacts list? - Naozaj chcete odstrániť %1 zo zoznamu kontaktov? + Odstrániť priateľa Remove all chat history with the friend if set - Ak je zaškrtnuté, vymazať celú chatovú históriu s daným priateľom + Ak je zaškrtnuté, vymazať celú chatovú históriu s daným priateľom + + + Also remove chat history + Odstrániť aj históriu chatu + + + Are you sure you want to remove %1 from your contacts list? + Naozaj chcete odstrániť %1 zo zoznamu kontaktov? + + + Remove + Odstrániť diff --git a/translations/sl.ts b/translations/sl.ts index 726d93077..9d47ee9b8 100644 --- a/translations/sl.ts +++ b/translations/sl.ts @@ -2489,17 +2489,17 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend Odstrani stik - Also remove chat history + Remove all chat history with the friend if set - Remove + Also remove chat history @@ -2507,7 +2507,7 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - Remove all chat history with the friend if set + Remove diff --git a/translations/sq.ts b/translations/sq.ts index ace800ad9..6af270245 100644 --- a/translations/sq.ts +++ b/translations/sq.ts @@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/sr.ts b/translations/sr.ts index 5927955c4..8991ee29f 100644 --- a/translations/sr.ts +++ b/translations/sr.ts @@ -2495,26 +2495,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Уклони пријатеља - - - Also remove chat history - Такође уклони историјат ћаскања - - - Remove - Уклони - - - Are you sure you want to remove %1 from your contacts list? - Да ли сигурно желите да уклоните „%1“ са списка контаката? + Уклони пријатеља Remove all chat history with the friend if set - Уклониће цео историјат ћаскања заједно са пријатељем ако је постављено + Уклониће цео историјат ћаскања заједно са пријатељем ако је постављено + + + Also remove chat history + Такође уклони историјат ћаскања + + + Are you sure you want to remove %1 from your contacts list? + Да ли сигурно желите да уклоните „%1“ са списка контаката? + + + Remove + Уклони diff --git a/translations/sr_Latn.ts b/translations/sr_Latn.ts index e7db57043..8979e4404 100644 --- a/translations/sr_Latn.ts +++ b/translations/sr_Latn.ts @@ -2496,26 +2496,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - Ukloni prijatelja - - - Also remove chat history - Takođe ukloni istorijat ćaskanja - - - Remove - Ukloni - - - Are you sure you want to remove %1 from your contacts list? - Sigurno želite a uklonite „%1“ iz spiska kontakata? + Ukloni prijatelja Remove all chat history with the friend if set - Ako je zadato, uklanja ceo istorijat ćaskanja zajedno sa prijateljem + Ako je zadato, uklanja ceo istorijat ćaskanja zajedno sa prijateljem + + + Also remove chat history + Takođe ukloni istorijat ćaskanja + + + Are you sure you want to remove %1 from your contacts list? + Sigurno želite a uklonite „%1“ iz spiska kontakata? + + + Remove + Ukloni diff --git a/translations/sv.ts b/translations/sv.ts index efbf2121b..362e15724 100644 --- a/translations/sv.ts +++ b/translations/sv.ts @@ -2495,26 +2495,26 @@ ID:t innehåller NoSpam-koden (i blått) och kontrollsumman (i grått). - RemoveFriendDialog + RemoveChatDialog Remove friend - Ta bort vän - - - Also remove chat history - Ta också bort chatthistorik - - - Remove - Ta bort - - - Are you sure you want to remove %1 from your contacts list? - Är du säker du vill ta bort %1 från kontaktlistan? + Ta bort vän Remove all chat history with the friend if set - Ta bort all chatthistorik med vännen om den är inställd + Ta bort all chatthistorik med vännen om den är inställd + + + Also remove chat history + Ta också bort chatthistorik + + + Are you sure you want to remove %1 from your contacts list? + Är du säker du vill ta bort %1 från kontaktlistan? + + + Remove + Ta bort diff --git a/translations/sw.ts b/translations/sw.ts index 15cc64bec..f3330fb79 100644 --- a/translations/sw.ts +++ b/translations/sw.ts @@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/ta.ts b/translations/ta.ts index 8fc70f45c..ec9565819 100644 --- a/translations/ta.ts +++ b/translations/ta.ts @@ -2485,17 +2485,17 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend தோழரை நீக்கு - Also remove chat history + Remove all chat history with the friend if set - Remove + Also remove chat history @@ -2503,7 +2503,7 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - Remove all chat history with the friend if set + Remove diff --git a/translations/tr.ts b/translations/tr.ts index a10cfa6f4..35f61994d 100644 --- a/translations/tr.ts +++ b/translations/tr.ts @@ -2495,26 +2495,26 @@ Bu kimlik NoSpam kodunu (mavi) ve sağlama toplamını (gri) içerir. - RemoveFriendDialog + RemoveChatDialog Remove friend - Arkadaşı kaldır - - - Also remove chat history - Sohbet geçmişini de sil - - - Remove - Kaldır - - - Are you sure you want to remove %1 from your contacts list? - %1 kişisini kişiler listenizden kaldırmak istediğinize emin misiniz? + Arkadaşı kaldır Remove all chat history with the friend if set - Ayarlıysa arkadaşla olan tüm sohbet geçmişini kaldırır + Ayarlıysa arkadaşla olan tüm sohbet geçmişini kaldırır + + + Also remove chat history + Sohbet geçmişini de sil + + + Are you sure you want to remove %1 from your contacts list? + %1 kişisini kişiler listenizden kaldırmak istediğinize emin misiniz? + + + Remove + Kaldır diff --git a/translations/ug.ts b/translations/ug.ts index dd92252db..9d09ee35d 100644 --- a/translations/ug.ts +++ b/translations/ug.ts @@ -2491,26 +2491,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - دوست ئۆچۈرۈش - - - Also remove chat history - سۆھبەت خاتىرىسىنىمۇ بىرگە ئۆچۈرۈش - - - Remove - ئۆچۈرۈش - - - Are you sure you want to remove %1 from your contacts list? - ئالاقىداشلار تىزىملىكىدىن %1 نى ئۆچۈرەمسىز؟ + دوست ئۆچۈرۈش Remove all chat history with the friend if set - بۇنى تەڭشىسىڭىز بۇ دوستىڭىزنىڭ بارلىق سۆھبەت خاتىرىسىمۇ ئۆچۈپ كىتىدۇ + بۇنى تەڭشىسىڭىز بۇ دوستىڭىزنىڭ بارلىق سۆھبەت خاتىرىسىمۇ ئۆچۈپ كىتىدۇ + + + Also remove chat history + سۆھبەت خاتىرىسىنىمۇ بىرگە ئۆچۈرۈش + + + Are you sure you want to remove %1 from your contacts list? + ئالاقىداشلار تىزىملىكىدىن %1 نى ئۆچۈرەمسىز؟ + + + Remove + ئۆچۈرۈش diff --git a/translations/uk.ts b/translations/uk.ts index 8524e1df2..164840e24 100644 --- a/translations/uk.ts +++ b/translations/uk.ts @@ -2495,26 +2495,26 @@ It's difficult to translate "Tox me maybe" because in Ukrainian n - RemoveFriendDialog + RemoveChatDialog Remove friend - Вилучити з друзів + Вилучити з друзів + + + Remove all chat history with the friend if set + Коли встановлено, видаляти усю історію спілкування з другом Also remove chat history - Також видалити історію переписки - - - Remove - Видалити + Також видалити історію переписки Are you sure you want to remove %1 from your contacts list? Ви дійсно хочете видалити %1 з вашого списку контактів? - Remove all chat history with the friend if set - Коли встановлено, видаляти усю історію спілкування з другом + Remove + Видалити diff --git a/translations/ur.ts b/translations/ur.ts index 52fc758a4..bed36bf98 100644 --- a/translations/ur.ts +++ b/translations/ur.ts @@ -2487,25 +2487,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set + Remove diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts index c2ce4d784..8b3c4e66e 100644 --- a/translations/zh_CN.ts +++ b/translations/zh_CN.ts @@ -2491,26 +2491,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend - 删除好友 - - - Also remove chat history - 同时删除聊天历史记录 - - - Remove - 删除 - - - Are you sure you want to remove %1 from your contacts list? - 您确定想要从联系人名单中删除 %1 吗? + 删除好友 Remove all chat history with the friend if set - 如果设置则删除与该好友的所有聊天历史记录 + 如果设置则删除与该好友的所有聊天历史记录 + + + Also remove chat history + 同时删除聊天历史记录 + + + Are you sure you want to remove %1 from your contacts list? + 您确定想要从联系人名单中删除 %1 吗? + + + Remove + 移除 diff --git a/translations/zh_TW.ts b/translations/zh_TW.ts index fae864958..b28004cc7 100644 --- a/translations/zh_TW.ts +++ b/translations/zh_TW.ts @@ -2479,26 +2479,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray). - RemoveFriendDialog + RemoveChatDialog Remove friend + + Remove all chat history with the friend if set + + Also remove chat history - - Remove - 移除 - Are you sure you want to remove %1 from your contacts list? - Remove all chat history with the friend if set - + Remove + 移除