mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
refactor(widget): Make RemoveFriendDialog generic for Chats
This commit is contained in:
parent
de09bf655e
commit
1ac7285c79
|
@ -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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>RemoveFriendDialog</class>
|
||||
<widget class="QDialog" name="RemoveFriendDialog">
|
||||
<class>RemoveChatDialog</class>
|
||||
<widget class="QDialog" name="RemoveChatDialog">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
|
@ -60,7 +60,7 @@
|
|||
<connection>
|
||||
<sender>buttonBox</sender>
|
||||
<signal>accepted()</signal>
|
||||
<receiver>RemoveFriendDialog</receiver>
|
||||
<receiver>RemoveChatDialog</receiver>
|
||||
<slot>accept()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
|
@ -76,7 +76,7 @@
|
|||
<connection>
|
||||
<sender>buttonBox</sender>
|
||||
<signal>rejected()</signal>
|
||||
<receiver>RemoveFriendDialog</receiver>
|
||||
<receiver>RemoveChatDialog</receiver>
|
||||
<slot>reject()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
|
@ -17,17 +17,19 @@
|
|||
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "removefrienddialog.h"
|
||||
#include "removechatdialog.h"
|
||||
#include "src/model/chat.h"
|
||||
|
||||
#include <QPushButton>
|
||||
|
||||
|
||||
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("<b>%1</b>").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();
|
|
@ -20,16 +20,16 @@
|
|||
#pragma once
|
||||
|
||||
|
||||
#include "ui_removefrienddialog.h"
|
||||
#include "ui_removechatdialog.h"
|
||||
#include "src/model/friend.h"
|
||||
#include <QDialog>
|
||||
|
||||
|
||||
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;
|
||||
};
|
|
@ -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()) {
|
||||
|
|
30
translations/ar.ts
vendored
30
translations/ar.ts
vendored
|
@ -2499,26 +2499,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>ازالة صديق</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>ايضا حذف سجل المحادثة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>ازالة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>هل انت متأكد من ازالة %1 من جهات الاتصال ؟</translation>
|
||||
<translation type="unfinished">ازالة صديق</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>ازالة تاريخ جمبيع المحادثات مع الصديق اذا وجد</translation>
|
||||
<translation type="unfinished">ازالة تاريخ جمبيع المحادثات مع الصديق اذا وجد</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">ايضا حذف سجل المحادثة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">هل انت متأكد من ازالة %1 من جهات الاتصال ؟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">ازالة</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/be.ts
vendored
30
translations/be.ts
vendored
|
@ -2495,26 +2495,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Выдаліць сябра</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Таксама выдаліць гісторыю чату</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Выдаліць</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Вы сапраўды хочаце выдаліць %1 з вашага спісу кантактаў?</translation>
|
||||
<translation type="unfinished">Выдаліць сябра</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Выдаліць усю гісторыю чату з сябрам, калі зададзена</translation>
|
||||
<translation type="unfinished">Выдаліць усю гісторыю чату з сябрам, калі зададзена</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Таксама выдаліць гісторыю чату</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Вы сапраўды хочаце выдаліць %1 з вашага спісу кантактаў?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Выдаліць</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/bg.ts
vendored
30
translations/bg.ts
vendored
|
@ -2496,26 +2496,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Премахване на приятеля</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Също да се премахне хронологията на разговора</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Премахване</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Сигурни ли сте, че искате да премахнете %1 от вашия лист с контакти?</translation>
|
||||
<translation type="unfinished">Премахване на контакт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Премахнете цялата история на чатовете с приятел, ако е зададено</translation>
|
||||
<translation type="unfinished">Премахнете цялата история на чатовете с приятел, ако е зададено</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Също да се премахне хронологията на разговора</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Сигурни ли сте, че искате да премахнете %1 от вашия лист с контакти?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Премахни</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/cs.ts
vendored
30
translations/cs.ts
vendored
|
@ -2499,26 +2499,26 @@ ID zahrnuje kód NoSpam (modře) a kontrolní součet (šedě).</translation>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Odebrat kontakt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Také odstranit historii chatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Odstranit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Opravdu chcete odebrat %1 ze seznamu kontaktů?</translation>
|
||||
<translation type="unfinished">Odebrat kontakt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Odstranit celou historii chatu u vybraného kontaktu</translation>
|
||||
<translation type="unfinished">Odstranit celou historii chatu u vybraného kontaktu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Také odstranit historii chatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Opravdu chcete odebrat %1 ze seznamu kontaktů?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Odstranit</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
14
translations/da.ts
vendored
14
translations/da.ts
vendored
|
@ -2479,26 +2479,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Fjern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Fjern</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/de.ts
vendored
30
translations/de.ts
vendored
|
@ -2504,26 +2504,26 @@ Diese ID enthält den NoSpam-Code (in blau) und die Prüfsumme (in grau).</trans
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Kontakt löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Gesprächsverlauf ebenfalls löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Bist du dir sicher, dass du %1 aus deiner Kontaktliste entfernen möchtest?</translation>
|
||||
<translation type="unfinished">Freund entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Löscht den gesamten Chatverlauf mit diesem Freund, wenn aktiviert</translation>
|
||||
<translation type="unfinished">Löscht den gesamten Chatverlauf mit diesem Freund, wenn aktiviert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Gesprächsverlauf ebenfalls löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Bist du dir sicher, dass du %1 aus deiner Kontaktliste entfernen möchtest?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Löschen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/el.ts
vendored
30
translations/el.ts
vendored
|
@ -2483,26 +2483,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Κατάργηση φίλου</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Επίσης να καταργηθεί το ιστορικό συνομιλιών</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Αφαίρεση</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Είστε βέβαιοι ότι θέλετε να καταργήσετε τον/ην %1 από τη λίστα επαφών σας;</translation>
|
||||
<translation type="unfinished">Κατάργηση φίλου</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Κατάργηση όλου του ιστορικού συνομιλίας με το φίλο, εάν είναι ορισμένο</translation>
|
||||
<translation type="unfinished">Κατάργηση όλου του ιστορικού συνομιλίας με το φίλο, εάν είναι ορισμένο</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Επίσης να καταργηθεί το ιστορικό συνομιλιών</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Είστε βέβαιοι ότι θέλετε να καταργήσετε τον/ην %1 από τη λίστα επαφών σας;</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Αφαίρεση</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
12
translations/eo.ts
vendored
12
translations/eo.ts
vendored
|
@ -2471,25 +2471,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
30
translations/es.ts
vendored
30
translations/es.ts
vendored
|
@ -2496,26 +2496,26 @@ Este ID incluye el código NoSpam (en azul), y la suma de comprobación (en gris
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Eliminar amigo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Eliminar también el historial del chat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>¿Estás seguro de que deseas eliminar a %1 de tu lista de contactos?</translation>
|
||||
<translation type="unfinished">Suprimir amigo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Eliminar todo el historial del chat con el amigo si está establecido</translation>
|
||||
<translation type="unfinished">Eliminar todo el historial del chat con el amigo si está establecido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Eliminar también el historial del chat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">¿Estás seguro de que deseas eliminar a %1 de tu lista de contactos?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Eliminar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/et.ts
vendored
30
translations/et.ts
vendored
|
@ -2498,26 +2498,26 @@ See ID sisaldab NoSpam koodi (sinine) ja kontrollsumma (hall).</translation>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Eemalda sõber</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Kustuta ka vestluste ajalugu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Eemalda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Oled kindel, et soovid %1 oma kontaktide nimekirjast eemaldada?</translation>
|
||||
<translation type="unfinished">Eemalda sõber</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Kui määratud, siis eemalda sõbraga seotud vestluste ajalugu</translation>
|
||||
<translation type="unfinished">Kui määratud, siis eemalda sõbraga seotud vestluste ajalugu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Kustuta ka vestluste ajalugu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Oled kindel, et soovid %1 oma kontaktide nimekirjast eemaldada?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Eemalda</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/fa.ts
vendored
30
translations/fa.ts
vendored
|
@ -2487,26 +2487,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>حذف دوست</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>همچنین سابقه گفتوگو را حذف کن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>حذف</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>آیا برای حذف %1 از لیست مخاطبین خود اطمینان دارید؟</translation>
|
||||
<translation type="unfinished">حذف دوست</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>در صورت وجود تمام سابقه گفتوگو با دوست را حذف کن</translation>
|
||||
<translation type="unfinished">در صورت وجود تمام سابقه گفتوگو با دوست را حذف کن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">همچنین سابقه گفتوگو را حذف کن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">آیا برای حذف %1 از لیست مخاطبین خود اطمینان دارید؟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">حذف</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/fi.ts
vendored
30
translations/fi.ts
vendored
|
@ -2495,26 +2495,26 @@ Tämä ID sisältää spammin estävän koodin(joka on sinisellä), ja tarkistus
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Poista kontakti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Poista myös keskusteluhistoria</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Poista</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Oletko varma, että haluat poistaa kontaktin %1 kontaktilistastasi?</translation>
|
||||
<translation type="unfinished">Poista kontakti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Poistaa kaiken chat-historian kontaktilta jos valittu</translation>
|
||||
<translation type="unfinished">Poistaa kaiken chat-historian kontaktilta jos valittu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Poista myös keskusteluhistoria</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Oletko varma, että haluat poistaa kontaktin %1 kontaktilistastasi?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Poista</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/fr.ts
vendored
30
translations/fr.ts
vendored
|
@ -2495,26 +2495,26 @@ Cet identifiant comprend le code NoSpam (en bleu) et la somme de contrôle (en g
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Supprimer ce contact</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Supprimer également l'historique de discussions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Êtes-vous sûr(e) de vouloir supprimer %1 de votre liste de contacts ?</translation>
|
||||
<translation type="unfinished">Supprimer ce contact</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Si activé, efface tout l'historique de discussions avec ce contact</translation>
|
||||
<translation type="unfinished">Si activé, efface tout l'historique de discussions avec ce contact</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Supprimer également l'historique de discussions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Êtes-vous sûr(e) de vouloir supprimer %1 de votre liste de contacts ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Supprimer</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/gl.ts
vendored
30
translations/gl.ts
vendored
|
@ -2491,26 +2491,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Eliminar contacto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Elimina tamén o historial de charla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Eliminar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Ten a certeza de que quere eliminar %1 da súa lista de contactos?</translation>
|
||||
<translation type="unfinished">Eliminar contacto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Se está definido, elimina todo o historial de charla co contacto</translation>
|
||||
<translation type="unfinished">Se está definido, elimina todo o historial de charla co contacto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Elimina tamén o historial de charla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Ten a certeza de que quere eliminar %1 da súa lista de contactos?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Eliminar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
12
translations/he.ts
vendored
12
translations/he.ts
vendored
|
@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
30
translations/hr.ts
vendored
30
translations/hr.ts
vendored
|
@ -2487,26 +2487,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Ukloni prijatelja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Također ukloni i povijest čavrljanja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Ukloni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Zaista želiš ukloniti „%1” iz kontakata?</translation>
|
||||
<translation type="unfinished">Ukloni prijatelja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Ukloni povijest čavrljanja s prijateljima, ako je postavljeno</translation>
|
||||
<translation type="unfinished">Ukloni povijest čavrljanja s prijateljima, ako je postavljeno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Također ukloni i povijest čavrljanja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Zaista želiš ukloniti „%1” iz kontakata?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Ukloni</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/hu.ts
vendored
30
translations/hu.ts
vendored
|
@ -2479,26 +2479,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Partner eltávolítása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Az előzményeket is távolítsa el</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Eltávolít</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Biztosan eltávolítja %1 partnert a partnerlistájáról?</translation>
|
||||
<translation type="unfinished">Partner eltávolítása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Eltávolít minden chat előzményt a partnerével, ha ez be van állítva</translation>
|
||||
<translation type="unfinished">Eltávolít minden chat előzményt a partnerével, ha ez be van állítva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Az előzményeket is távolítsa el</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Biztosan eltávolítja %1 partnert a partnerlistájáról?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Törlés</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
12
translations/is.ts
vendored
12
translations/is.ts
vendored
|
@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
30
translations/it.ts
vendored
30
translations/it.ts
vendored
|
@ -2492,26 +2492,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Rimuovi contatto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Rimuovi anche la cronologia chat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Rimuovi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Sei sicuro di voler rimuovere %1 dalla tua lista contatti?</translation>
|
||||
<translation type="unfinished">Rimuovere l'amico</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Rimuove tutta la cronologia della chat con l'amico se impostata</translation>
|
||||
<translation type="unfinished">Rimuove tutta la cronologia della chat con l'amico se impostata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Rimuovi anche la cronologia chat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Sei sicuro di voler rimuovere %1 dalla tua lista contatti?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Rimuovi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/ja.ts
vendored
30
translations/ja.ts
vendored
|
@ -2478,26 +2478,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>友達を削除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>チャット履歴も消去</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>削除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>%1 を連絡先リストから削除してもよろしいですか?</translation>
|
||||
<translation type="unfinished">友達を削除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>設定した場合、友達とのチャット履歴をすべて削除します</translation>
|
||||
<translation type="unfinished">設定した場合、友達とのチャット履歴をすべて削除します</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">チャット履歴も消去</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">%1 を連絡先リストから削除してもよろしいですか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">削除</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
12
translations/kn.ts
vendored
12
translations/kn.ts
vendored
|
@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
12
translations/ko.ts
vendored
12
translations/ko.ts
vendored
|
@ -2477,25 +2477,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
30
translations/lt.ts
vendored
30
translations/lt.ts
vendored
|
@ -2501,26 +2501,26 @@ Pasidalinkite ja su draugais, kad pradėtumėte kalbėtis.
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Šalinti kontaktą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Išvalyti pokalbių žurnalą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Pašalinti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Ar tikrai norite pašalinti %1 iš savo kontaktų sąrašo?</translation>
|
||||
<translation type="unfinished">Šalinti kontaktą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Jei nustatyta, šalinti visą pokalbių su kontaktu istoriją</translation>
|
||||
<translation type="unfinished">Jei nustatyta, šalinti visą pokalbių su kontaktu istoriją</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Išvalyti pokalbių žurnalą</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Ar tikrai norite pašalinti %1 iš savo kontaktų sąrašo?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Pašalinti</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/lv.ts
vendored
30
translations/lv.ts
vendored
|
@ -2502,26 +2502,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Dzēst draugu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Arī noņemt tērzēšanas vēsturi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Dzēst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Vai Jūs tiešām vēlaties dzēst %1 no kontaktpersonu saraksta?</translation>
|
||||
<translation type="unfinished">Noņemt draugu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Dzēš visu tērzēšanas vēsturi ar draugu, ja tiek iestatīts</translation>
|
||||
<translation type="unfinished">Dzēš visu tērzēšanas vēsturi ar draugu, ja tiek iestatīts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Arī noņemt tērzēšanas vēsturi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Vai Jūs tiešām vēlaties dzēst %1 no kontaktpersonu saraksta?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Dzēst</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/mk.ts
vendored
30
translations/mk.ts
vendored
|
@ -2495,26 +2495,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Отстрани пријател</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Исто така отстрани ја чет историјата</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Отстрани</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Дали сте сигурни дека сакате да го отстаните %1 од вашата листа на контакти?</translation>
|
||||
<translation type="unfinished">Отстрани пријател</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Отстанете ја целата чет историја со пријателот ако е така поставено</translation>
|
||||
<translation type="unfinished">Отстанете ја целата чет историја со пријателот ако е така поставено</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Исто така отстрани ја чет историјата</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Дали сте сигурни дека сакате да го отстаните %1 од вашата листа на контакти?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Отстрани</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/nl.ts
vendored
30
translations/nl.ts
vendored
|
@ -2483,26 +2483,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Vriend verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Gespreksgeschiedenis ook verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Weet je zeker dat je %1 uit je contactenlijst wil verwijderen?</translation>
|
||||
<translation type="unfinished">Vriend verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Indien ingesteld alle gespreksgeschiedenis met de vriend verwijderen</translation>
|
||||
<translation type="unfinished">Indien ingesteld alle gespreksgeschiedenis met de vriend verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Gespreksgeschiedenis ook verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Weet je zeker dat je %1 uit je contactenlijst wil verwijderen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Verwijderen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/nl_BE.ts
vendored
30
translations/nl_BE.ts
vendored
|
@ -2491,26 +2491,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Vriend verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Gespreksgeschiedenis ook verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Zijt ge zeker dat ge %1 uit uw contactenlijst wilt verwijderen?</translation>
|
||||
<translation type="unfinished">Vriend verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Indien ingesteld alle gespreksgeschiedenis met de vriend verwijderen</translation>
|
||||
<translation type="unfinished">Indien ingesteld alle gespreksgeschiedenis met de vriend verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Gespreksgeschiedenis ook verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Zijt ge zeker dat ge %1 uit uw contactenlijst wilt verwijderen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Verwijderen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/no_nb.ts
vendored
30
translations/no_nb.ts
vendored
|
@ -2485,26 +2485,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Fjern venn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Fjern sludrehistorikk også</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Fjern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Er du sikker på at du vil fjerne %1 fra din kontaktliste?</translation>
|
||||
<translation type="unfinished">Fjern venn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Fjern all samtalehistorikk mellom deg vennen din hvis valgt</translation>
|
||||
<translation type="unfinished">Fjern all samtalehistorikk mellom deg vennen din hvis valgt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Fjern sludrehistorikk også</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Er du sikker på at du vil fjerne %1 fra din kontaktliste?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Fjern</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/pl.ts
vendored
30
translations/pl.ts
vendored
|
@ -2521,26 +2521,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Usuń kontakt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Usuń także historię rozmów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Usuń</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Czy na pewno chcesz usunąć %1 z twojej listy kontaktów?</translation>
|
||||
<translation type="unfinished">Usuń kontakt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Jeśli zaznaczone, usuń całą historię rozmów ze znajomym</translation>
|
||||
<translation type="unfinished">Jeśli zaznaczone, usuń całą historię rozmów ze znajomym</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Usuń także historię rozmów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Czy na pewno chcesz usunąć %1 z twojej listy kontaktów?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Usuń</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/pt.ts
vendored
30
translations/pt.ts
vendored
|
@ -2495,26 +2495,26 @@ Este ID inclui o código NoSpam (em azul) e o checkum (em cinzento).</translatio
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Remover contacto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Remover também o histórico de conversas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Tem a certeza que quer remover %1 da sua lista de contactos?</translation>
|
||||
<translation type="unfinished">Remover contacto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Se definido, remove todo o histórico de conversas com o contacto</translation>
|
||||
<translation type="unfinished">Se definido, remove todo o histórico de conversas com o contacto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Remover também o histórico de conversas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Tem a certeza que quer remover %1 da sua lista de contactos?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Remover</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/pt_BR.ts
vendored
30
translations/pt_BR.ts
vendored
|
@ -2503,26 +2503,26 @@ Este ID inclui o código NoSpam (em azul) e o checkum (em cinza).</translation>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Remover contato</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Também remover histórico de bate-papo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Tem certeza de que deseja remover %1 da sua lista de contatos?</translation>
|
||||
<translation type="unfinished">Remover contato</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Se marcado, remove todo o histórico de bate-papo com o amigo</translation>
|
||||
<translation type="unfinished">Se marcado, remove todo o histórico de bate-papo com o amigo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Também remover histórico de bate-papo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Tem certeza de que deseja remover %1 da sua lista de contatos?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Remover</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/ro.ts
vendored
30
translations/ro.ts
vendored
|
@ -2507,26 +2507,26 @@ Acest ID include codul NoSpam (în albastru) și suma de control (în gri).</tra
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Ștergeți prieten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>De asemenea, eliminați istoricul discuțiilor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Eliminați</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Sunteți sigur că vreți să eliminați %1 Din lista persoanelor de contact?</translation>
|
||||
<translation type="unfinished">Ștergeți prieten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Eliminați tot istoricul discuțiilor cu prietenul dacă este setat</translation>
|
||||
<translation type="unfinished">Eliminați tot istoricul discuțiilor cu prietenul dacă este setat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">De asemenea, eliminați istoricul discuțiilor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Sunteți sigur că vreți să eliminați %1 Din lista persoanelor de contact?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Eliminați</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/ru.ts
vendored
30
translations/ru.ts
vendored
|
@ -2505,26 +2505,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Удалить друга</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Также удалить историю переписки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Удалить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Вы уверены, что хотите удалить %1 из вашего списка контактов?</translation>
|
||||
<translation type="unfinished">Удалить друга</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Удаляет всю историю переписки с другом если установлен</translation>
|
||||
<translation type="unfinished">Удаляет всю историю переписки с другом если установлен</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Также удалить историю переписки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Вы уверены, что хотите удалить %1 из вашего списка контактов?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Удалить</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
12
translations/si.ts
vendored
12
translations/si.ts
vendored
|
@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
30
translations/sk.ts
vendored
30
translations/sk.ts
vendored
|
@ -2507,26 +2507,26 @@ Toto ID obsahuje kód NoSpam (modrou) a kontrolný súčet (šedou).</translatio
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Odstrániť priateľa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Odstrániť aj históriu chatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Odstrániť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Naozaj chcete odstrániť %1 zo zoznamu kontaktov?</translation>
|
||||
<translation type="unfinished">Odstrániť priateľa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Ak je zaškrtnuté, vymazať celú chatovú históriu s daným priateľom</translation>
|
||||
<translation type="unfinished">Ak je zaškrtnuté, vymazať celú chatovú históriu s daným priateľom</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Odstrániť aj históriu chatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Naozaj chcete odstrániť %1 zo zoznamu kontaktov?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Odstrániť</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
8
translations/sl.ts
vendored
8
translations/sl.ts
vendored
|
@ -2489,17 +2489,17 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished">Odstrani stik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2507,7 +2507,7 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
12
translations/sq.ts
vendored
12
translations/sq.ts
vendored
|
@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
30
translations/sr.ts
vendored
30
translations/sr.ts
vendored
|
@ -2495,26 +2495,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Уклони пријатеља</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Такође уклони историјат ћаскања</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Уклони</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Да ли сигурно желите да уклоните „%1“ са списка контаката?</translation>
|
||||
<translation type="unfinished">Уклони пријатеља</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Уклониће цео историјат ћаскања заједно са пријатељем ако је постављено</translation>
|
||||
<translation type="unfinished">Уклониће цео историјат ћаскања заједно са пријатељем ако је постављено</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Такође уклони историјат ћаскања</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Да ли сигурно желите да уклоните „%1“ са списка контаката?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Уклони</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/sr_Latn.ts
vendored
30
translations/sr_Latn.ts
vendored
|
@ -2496,26 +2496,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Ukloni prijatelja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Takođe ukloni istorijat ćaskanja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Ukloni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Sigurno želite a uklonite „%1“ iz spiska kontakata?</translation>
|
||||
<translation type="unfinished">Ukloni prijatelja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Ako je zadato, uklanja ceo istorijat ćaskanja zajedno sa prijateljem</translation>
|
||||
<translation type="unfinished">Ako je zadato, uklanja ceo istorijat ćaskanja zajedno sa prijateljem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Takođe ukloni istorijat ćaskanja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Sigurno želite a uklonite „%1“ iz spiska kontakata?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Ukloni</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/sv.ts
vendored
30
translations/sv.ts
vendored
|
@ -2495,26 +2495,26 @@ ID:t innehåller NoSpam-koden (i blått) och kontrollsumman (i grått).</transla
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Ta bort vän</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Ta också bort chatthistorik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Ta bort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>Är du säker du vill ta bort %1 från kontaktlistan?</translation>
|
||||
<translation type="unfinished">Ta bort vän</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Ta bort all chatthistorik med vännen om den är inställd</translation>
|
||||
<translation type="unfinished">Ta bort all chatthistorik med vännen om den är inställd</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Ta också bort chatthistorik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Är du säker du vill ta bort %1 från kontaktlistan?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Ta bort</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
12
translations/sw.ts
vendored
12
translations/sw.ts
vendored
|
@ -2479,25 +2479,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
8
translations/ta.ts
vendored
8
translations/ta.ts
vendored
|
@ -2485,17 +2485,17 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished">தோழரை நீக்கு</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2503,7 +2503,7 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
30
translations/tr.ts
vendored
30
translations/tr.ts
vendored
|
@ -2495,26 +2495,26 @@ Bu kimlik NoSpam kodunu (mavi) ve sağlama toplamını (gri) içerir.</translati
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Arkadaşı kaldır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Sohbet geçmişini de sil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Kaldır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>%1 kişisini kişiler listenizden kaldırmak istediğinize emin misiniz?</translation>
|
||||
<translation type="unfinished">Arkadaşı kaldır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Ayarlıysa arkadaşla olan tüm sohbet geçmişini kaldırır</translation>
|
||||
<translation type="unfinished">Ayarlıysa arkadaşla olan tüm sohbet geçmişini kaldırır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">Sohbet geçmişini de sil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">%1 kişisini kişiler listenizden kaldırmak istediğinize emin misiniz?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Kaldır</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
30
translations/ug.ts
vendored
30
translations/ug.ts
vendored
|
@ -2491,26 +2491,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>دوست ئۆچۈرۈش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>سۆھبەت خاتىرىسىنىمۇ بىرگە ئۆچۈرۈش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>ئۆچۈرۈش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>ئالاقىداشلار تىزىملىكىدىن %1 نى ئۆچۈرەمسىز؟</translation>
|
||||
<translation type="unfinished">دوست ئۆچۈرۈش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>بۇنى تەڭشىسىڭىز بۇ دوستىڭىزنىڭ بارلىق سۆھبەت خاتىرىسىمۇ ئۆچۈپ كىتىدۇ</translation>
|
||||
<translation type="unfinished">بۇنى تەڭشىسىڭىز بۇ دوستىڭىزنىڭ بارلىق سۆھبەت خاتىرىسىمۇ ئۆچۈپ كىتىدۇ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">سۆھبەت خاتىرىسىنىمۇ بىرگە ئۆچۈرۈش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">ئالاقىداشلار تىزىملىكىدىن %1 نى ئۆچۈرەمسىز؟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">ئۆچۈرۈش</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
18
translations/uk.ts
vendored
18
translations/uk.ts
vendored
|
@ -2495,26 +2495,26 @@ It's difficult to translate "Tox me maybe" because in Ukrainian n
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>Вилучити з друзів</translation>
|
||||
<translation type="unfinished">Вилучити з друзів</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished">Коли встановлено, видаляти усю історію спілкування з другом</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>Також видалити історію переписки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Видалити</translation>
|
||||
<translation type="unfinished">Також видалити історію переписки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">Ви дійсно хочете видалити %1 з вашого списку контактів?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>Коли встановлено, видаляти усю історію спілкування з другом</translation>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Видалити</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
12
translations/ur.ts
vendored
12
translations/ur.ts
vendored
|
@ -2487,25 +2487,25 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
30
translations/zh_CN.ts
vendored
30
translations/zh_CN.ts
vendored
|
@ -2491,26 +2491,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation>删除好友</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation>同时删除聊天历史记录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation>您确定想要从联系人名单中删除 %1 吗?</translation>
|
||||
<translation type="unfinished">删除好友</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation>如果设置则删除与该好友的所有聊天历史记录</translation>
|
||||
<translation type="unfinished">如果设置则删除与该好友的所有聊天历史记录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished">同时删除聊天历史记录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished">您确定想要从联系人名单中删除 %1 吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">移除</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
14
translations/zh_TW.ts
vendored
14
translations/zh_TW.ts
vendored
|
@ -2479,26 +2479,26 @@ This ID includes the NoSpam code (in blue), and the checksum (in gray).</source>
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RemoveFriendDialog</name>
|
||||
<name>RemoveChatDialog</name>
|
||||
<message>
|
||||
<source>Remove friend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Also remove chat history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">移除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to remove %1 from your contacts list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove all chat history with the friend if set</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">移除</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
Loading…
Reference in New Issue
Block a user