diff --git a/src/akonadi-contacts/contactviewer.cpp b/src/akonadi-contacts/contactviewer.cpp --- a/src/akonadi-contacts/contactviewer.cpp +++ b/src/akonadi-contacts/contactviewer.cpp @@ -27,7 +27,6 @@ #include "standardcontactformatter.h" #include "textbrowser_p.h" -#include "editor/im/improtocols.h" #include #include #include @@ -72,7 +71,7 @@ { static QPixmap defaultPixmap = QIcon::fromTheme(QStringLiteral("user-identity")).pixmap(QSize(100, 100)); static QPixmap defaultMapPixmap = QIcon::fromTheme(QStringLiteral("map-symbolic")).pixmap(QSize(16, 16)); - static QPixmap defaultSmsPixmap = QIcon::fromTheme(IMProtocols::self()->icon(QStringLiteral("messaging/sms"))).pixmap(QSize(16, 16)); + static QPixmap defaultSmsPixmap = QIcon::fromTheme(KContacts::Impp::serviceIcon(QStringLiteral("sms"))).pixmap(QSize(16, 16)); mParent->setWindowTitle(i18n("Contact %1", mCurrentContact.assembledName())); diff --git a/src/contact-editor/CMakeLists.txt b/src/contact-editor/CMakeLists.txt --- a/src/contact-editor/CMakeLists.txt +++ b/src/contact-editor/CMakeLists.txt @@ -28,7 +28,6 @@ configure_file(config-contact-editor.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-contact-editor.h) -add_subdirectory(editor/im) set(contacteditor_abstractaddresslocation_SRCS @@ -115,8 +114,6 @@ ${contacteditor_editor_utils_SRCS} ${contacteditor_business_editor_SRCS} editor/contacteditorwidget.cpp - editor/im/imaddress.cpp - editor/im/improtocols.cpp editor/widgets/imagewidget.cpp editor/widgets/preferredlineeditwidget.cpp editor/widgets/categorieseditabstractwidget.cpp @@ -226,7 +223,6 @@ ${ContactEditorWidget_HEADERS} ${ContactEditorAddressLocationWidget_HEADERS} ${CMAKE_CURRENT_BINARY_DIR}/contacteditor_export.h - editor/im/improtocols.h DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/contacteditor COMPONENT Devel ) diff --git a/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidget.h b/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidget.h --- a/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidget.h +++ b/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidget.h @@ -25,9 +25,14 @@ #include -#include #include "contacteditor_private_export.h" + class QToolButton; + +namespace KContacts { +class Impp; +} + namespace ContactEditor { class PreferredLineEditWidget; class ContactEditorComboBox; @@ -39,8 +44,8 @@ ~MessagingWidget(); void updateAddRemoveButton(bool addButtonEnabled); - IMAddress imAddress() const; - void setIMAddress(const IMAddress &address); + KContacts::Impp imAddress() const; + void setIMAddress(const KContacts::Impp &address); void setPreferred(bool b); void clearWidget(); void setReadOnly(bool readOnly); diff --git a/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidget.cpp b/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidget.cpp --- a/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidget.cpp +++ b/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidget.cpp @@ -21,12 +21,15 @@ */ #include "messagingwidget.h" -#include "../../im/improtocols.h" #include "../../widgets/contacteditorcombobox.h" +#include + +#include + #include #include #include -#include +#include using namespace ContactEditor; MessagingWidget::MessagingWidget(QWidget *parent) @@ -49,10 +52,10 @@ "Select...")); layout->addWidget(mProtocolCombo); - const QStringList protocols = IMProtocols::self()->protocols(); + const auto protocols = KContacts::Impp::serviceTypes(); for (const QString &protocol : protocols) { - mProtocolCombo->addItem(QIcon::fromTheme(IMProtocols::self()->icon(protocol)), - IMProtocols::self()->name(protocol), + mProtocolCombo->addItem(QIcon::fromTheme(KContacts::Impp::serviceIcon(protocol)), + KContacts::Impp::serviceLabel(protocol), protocol); } @@ -80,22 +83,30 @@ Q_EMIT preferredChanged(this); } -void MessagingWidget::setIMAddress(const IMAddress &address) +void MessagingWidget::setIMAddress(const KContacts::Impp &address) { - mProtocolCombo->setCurrentIndex( - IMProtocols::self()->protocols().indexOf(address.protocol()) + 1); - mMessagingEdit->setText(address.name()); + const int idx = mProtocolCombo->findData(address.serviceType()); + if (idx >= 0) { + mProtocolCombo->setCurrentIndex(idx); + } + mMessagingEdit->setText(address.address().path()); + mMessagingEdit->setPreferred(address.isPreferred()); } void MessagingWidget::setPreferred(bool b) { mMessagingEdit->setPreferred(b); } -IMAddress MessagingWidget::imAddress() const +KContacts::Impp MessagingWidget::imAddress() const { - return IMAddress(mProtocolCombo->itemData(mProtocolCombo->currentIndex()).toString(), - mMessagingEdit->text().trimmed(), false); + QUrl uri; + uri.setScheme(mProtocolCombo->currentData().toString()); + uri.setPath(mMessagingEdit->text().trimmed()); + KContacts::Impp addr; + addr.setAddress(uri); + addr.setPreferred(mMessagingEdit->preferred()); + return addr; } void MessagingWidget::updateAddRemoveButton(bool addButtonEnabled) diff --git a/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidgetlister.cpp b/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidgetlister.cpp --- a/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidgetlister.cpp +++ b/src/contact-editor/editor/generalinfoeditor/messaging/messagingwidgetlister.cpp @@ -22,8 +22,6 @@ #include "messagingwidgetlister.h" #include "messagingwidget.h" -#include "../../im/imaddress.h" -#include "../../im/improtocols.h" #include "../../utils/utils.h" #include @@ -42,25 +40,7 @@ void MessagingWidgetLister::loadContact(const KContacts::Addressee &contact) { - IMAddress::List imaddresses; - const QStringList customs = contact.customs(); - - for (const QString &custom : customs) { - QString app, name, value; - ContactEditor::Utils::splitCustomField(custom, app, name, value); - - if (app.startsWith(QLatin1String("messaging/"))) { - if (name == QLatin1String("All")) { - const QString protocol = app; - const QStringList names = value.split(QChar(0xE000), QString::SkipEmptyParts); - - for (const QString &name : names) { - //TODO preferred support ? - imaddresses << IMAddress(protocol, name, false); - } - } - } - } + const auto imaddresses = contact.imppList(); if (imaddresses.isEmpty()) { setNumberOfShownWidgetsTo(1); } else { @@ -73,41 +53,17 @@ w->setIMAddress(imaddresses.at(i)); } } - //TODO add real support for IM vcard4 } void MessagingWidgetLister::storeContact(KContacts::Addressee &contact) const { - IMAddress::List imaddresses; + KContacts::Impp::List imaddresses; const QList widgetList = widgets(); for (QWidget *widget : widgetList) { MessagingWidget *w = qobject_cast(widget); imaddresses << w->imAddress(); } - // create a map with protocol as key and list of names for that protocol as value - QMap protocolMap; - - // fill map with all known protocols - const QStringList lstProtocols = IMProtocols::self()->protocols(); - for (const QString &protocol : lstProtocols) { - protocolMap.insert(protocol, QStringList()); - } - - // add the configured addresses - for (const IMAddress &address : qAsConst(imaddresses)) { - protocolMap[address.protocol()].append(address.name()); - } - - // iterate over this list and modify the contact according - QMap::const_iterator it = protocolMap.cbegin(); - const QMap::const_iterator itEnd = protocolMap.cend(); - for (; it != itEnd; ++it) { - if (!it.value().isEmpty()) { - contact.insertCustom(it.key(), QStringLiteral("All"), it.value().join(QString(0xE000))); - } else { - contact.removeCustom(it.key(), QStringLiteral("All")); - } - } + contact.setImppList(imaddresses); } void MessagingWidgetLister::setReadOnly(bool readOnly) diff --git a/src/contact-editor/editor/im/CMakeLists.txt b/src/contact-editor/editor/im/CMakeLists.txt deleted file mode 100644 --- a/src/contact-editor/editor/im/CMakeLists.txt +++ /dev/null @@ -1,3 +0,0 @@ -add_subdirectory( protocols ) - -install( FILES kaddressbookimprotocol.desktop DESTINATION ${KDE_INSTALL_KSERVICETYPES5DIR}) diff --git a/src/contact-editor/editor/im/imaddress.h b/src/contact-editor/editor/im/imaddress.h deleted file mode 100644 --- a/src/contact-editor/editor/im/imaddress.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - This file is part of Contact Editor. - - Copyright (c) 2010 Tobias Koenig - - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public License as published by - the Free Software Foundation; either version 2 of the License, or (at your - option) any later version. - - This library is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public - License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to the - Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. -*/ - -#ifndef IMADDRESS_H -#define IMADDRESS_H - -#include -#include -#include "contacteditor_private_export.h" - -class CONTACTEDITOR_TESTS_EXPORT IMAddress -{ -public: - typedef QVector List; - - IMAddress(); - IMAddress(const QString &protocol, const QString &name, bool preferred); - - void setProtocol(const QString &protocol); - Q_REQUIRED_RESULT QString protocol() const; - - void setName(const QString &name); - Q_REQUIRED_RESULT QString name() const; - - void setPreferred(bool preferred); - Q_REQUIRED_RESULT bool preferred() const; - -private: - QString mProtocol; - QString mName; - bool mPreferred; -}; - -#endif // IMADDRESS_H diff --git a/src/contact-editor/editor/im/imaddress.cpp b/src/contact-editor/editor/im/imaddress.cpp deleted file mode 100644 --- a/src/contact-editor/editor/im/imaddress.cpp +++ /dev/null @@ -1,64 +0,0 @@ -/* - This file is part of Contact Editor. - - Copyright (c) 2010 Tobias Koenig - - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public License as published by - the Free Software Foundation; either version 2 of the License, or (at your - option) any later version. - - This library is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public - License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to the - Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. -*/ -#include "imaddress.h" - -IMAddress::IMAddress() - : mProtocol(QStringLiteral("messaging/aim")) - , mPreferred(false) -{ -} - -IMAddress::IMAddress(const QString &protocol, const QString &name, bool preferred) - : mProtocol(protocol) - , mName(name) - , mPreferred(preferred) -{ -} - -void IMAddress::setProtocol(const QString &protocol) -{ - mProtocol = protocol; -} - -QString IMAddress::protocol() const -{ - return mProtocol; -} - -void IMAddress::setName(const QString &name) -{ - mName = name; -} - -QString IMAddress::name() const -{ - return mName; -} - -void IMAddress::setPreferred(bool preferred) -{ - mPreferred = preferred; -} - -bool IMAddress::preferred() const -{ - return mPreferred; -} diff --git a/src/contact-editor/editor/im/improtocols.h b/src/contact-editor/editor/im/improtocols.h deleted file mode 100644 --- a/src/contact-editor/editor/im/improtocols.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - This file is part of Contact Editor. - - Copyright (c) 2010 Tobias Koenig - - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public License as published by - the Free Software Foundation; either version 2 of the License, or (at your - option) any later version. - - This library is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public - License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to the - Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. -*/ - -#ifndef CONTACTEDITOR_CONTACT_IMPROTOCOLS_H -#define CONTACTEDITOR_CONTACT_IMPROTOCOLS_H - -#include - -#include "contacteditor_export.h" - -class IMProtocolInfo -{ -public: - IMProtocolInfo(); - - IMProtocolInfo(const QString &name, const QString &icon); - - Q_REQUIRED_RESULT QString icon() const; - void setIcon(const QString &icon); - Q_REQUIRED_RESULT QString name() const; - void setName(const QString &name); -private: - QString mName; - QString mIcon; -}; - -class CONTACTEDITOR_EXPORT IMProtocols -{ -public: - ~IMProtocols(); - - static IMProtocols *self(); - - /** - * Returns the protocol identifiers in a sorted order. - */ - Q_REQUIRED_RESULT QStringList protocols() const; - - Q_REQUIRED_RESULT QString name(const QString &protocol) const; - Q_REQUIRED_RESULT QString icon(const QString &protocol) const; - -private: - Q_DISABLE_COPY(IMProtocols) - IMProtocols(); - - static IMProtocols *mSelf; - - QMap mPluginInfos; - QStringList mSortedProtocols; -}; - -#endif diff --git a/src/contact-editor/editor/im/improtocols.cpp b/src/contact-editor/editor/im/improtocols.cpp deleted file mode 100644 --- a/src/contact-editor/editor/im/improtocols.cpp +++ /dev/null @@ -1,113 +0,0 @@ -/* - This file is part of Contact Editor. - - Copyright (c) 2010 Tobias Koenig - - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public License as published by - the Free Software Foundation; either version 2 of the License, or (at your - option) any later version. - - This library is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public - License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to the - Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. -*/ - -#include "improtocols.h" - -#include -#include -#include -IMProtocols *IMProtocols::mSelf = nullptr; - -IMProtocols::IMProtocols() -{ - const KService::List list = KServiceTypeTrader::self()->query(QStringLiteral("KContacts/IMProtocol")); - KService::List::ConstIterator it = list.constBegin(); - KService::List::ConstIterator lastItem = list.constEnd(); - QMap sortingMap; - for (; it != lastItem; ++it) { - IMProtocolInfo info((*it)->name(), (*it)->icon()); - const QString propertyName = (*it)->property(QStringLiteral("X-KDE-InstantMessagingKABCField")).toString(); - mPluginInfos.insert(propertyName, info); - sortingMap.insert((*it)->name(), propertyName); - } - - QMap::const_iterator sortedIt = sortingMap.cbegin(); - const QMap::const_iterator sortedItEnd = sortingMap.cend(); - for (; sortedIt != sortedItEnd; ++sortedIt) { - mSortedProtocols.append(sortedIt.value()); - } -} - -IMProtocols::~IMProtocols() -{ -} - -IMProtocols *IMProtocols::self() -{ - if (!mSelf) { - mSelf = new IMProtocols; - } - - return mSelf; -} - -QStringList IMProtocols::protocols() const -{ - return mSortedProtocols; -} - -QString IMProtocols::name(const QString &protocol) const -{ - if (!mPluginInfos.contains(protocol)) { - return QString(); - } - - return mPluginInfos.value(protocol).name(); -} - -QString IMProtocols::icon(const QString &protocol) const -{ - if (!mPluginInfos.contains(protocol)) { - return QString(); - } - - return mPluginInfos.value(protocol).icon(); -} - -IMProtocolInfo::IMProtocolInfo() -{ -} - -IMProtocolInfo::IMProtocolInfo(const QString &name, const QString &icon) - : mName(name) - , mIcon(icon) -{ -} - -QString IMProtocolInfo::name() const -{ - return mName; -} - -void IMProtocolInfo::setName(const QString &name) -{ - mName = name; -} - -QString IMProtocolInfo::icon() const -{ - return mIcon; -} - -void IMProtocolInfo::setIcon(const QString &icon) -{ - mIcon = icon; -} diff --git a/src/contact-editor/editor/im/kaddressbookimprotocol.desktop b/src/contact-editor/editor/im/kaddressbookimprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/kaddressbookimprotocol.desktop +++ /dev/null @@ -1,56 +0,0 @@ -[Desktop Entry] -Type=ServiceType -X-KDE-ServiceType=KContacts/IMProtocol -X-KDE-KAddressBook-CEWVersion=1 -Name=KAddressbook Instant Messaging Protocol -Name[ar]=ميفاق «دفتر عناوينك» للتراسل الفوريّ -Name[bs]=Protokol brzih poruka K adresara -Name[ca]=Protocol de missatgeria instantània del KAddressbook -Name[ca@valencia]=Protocol de missatgeria instantània del KAddressbook -Name[cs]=KAddressbook pro IM protokol -Name[da]=KAddressbook instant messaging-protokol -Name[de]=Instant-Messaging-Protokoll im KDE-Adressbuch -Name[el]=Πρωτόκολλο στιγμιαίων μηνυμάτων KAddressbook -Name[en_GB]=KAddressbook Instant Messaging Protocol -Name[eo]=KAddressbook Rapidmesaĝila Protokolo -Name[es]=Protocolo de mensajería instantánea de KAddressbook -Name[et]=KDE aadressiraamatu kiirsuhtlusprotokoll -Name[fi]=KAddressbookin pikaviestinyhteyskäytäntö -Name[fr]=Protocole de messagerie instantanée KAddressBook -Name[ga]=Prótacal Teachtaireachtaí Meandaracha KAddressbook -Name[gl]=Protocolo de mensaxería instantánea do KAddressbook -Name[he]=פרוטוקול מסרים מידיים של פנקס הכתובות -Name[hu]=KAddressbook azonnali üzenetküldő protokoll -Name[ia]=Protocollo de messageria instantanee de KAddressbook -Name[it]=Protocollo di messaggistica istantanea di KAddressbook -Name[kk]=KAddressbook-тың лезде хабарласу протоколы -Name[km]=ពិធីការ​ផ្ញើ​សារ​បន្ទាន់​របស់ KAddressbook -Name[ko]=KAddressbook 인스턴트 메시징 프로토콜 -Name[lt]=KAdresų knygelės momentinių pranešimų protokolas -Name[mr]=के-एड्रेस-बूक त्वरित संदेश शिष्टाचार -Name[nb]=KAdressbook lynmeldingsprotokoll -Name[nds]=KAddressbook-Kortnarichten-Protokoll -Name[nl]=KAddressbook Instant Messaging-protocol -Name[nn]=Lynmeldingsprotokoll for KDE-adresseboka -Name[pl]=Protokół komunikatora internetowego KAddressbook -Name[pt]=Protocolo de Mensagens Instantâneas do KAddressbook -Name[pt_BR]=Protocolo de Mensagens Instantâneas do KAddressbook -Name[ro]=Protocol de mesagerie instantanee a cărții de adrese -Name[ru]=Протокол обмена мгновенными сообщениями KAddressBook -Name[sk]=Protokol KAddressbook Instant Messaging -Name[sl]=Protokol hipnega sporočanja za KAddressBook -Name[sr]=Брзогласнички протокол К‑адресара -Name[sr@ijekavian]=Брзогласнички протокол К‑адресара -Name[sr@ijekavianlatin]=Brzoglasnički protokol K‑adresara -Name[sr@latin]=Brzoglasnički protokol K‑adresara -Name[sv]=Addressbokens direktmeddelandeprotokoll -Name[th]=โพรโทคอลข้อความด่วนทันใจของสมุดที่อยู่-K -Name[tr]=KAddressbook Anlık Mesajlaşma Protokolü -Name[uk]=Протокол миттєвого обміну повідомленнями KAddressbook -Name[wa]=Protocole di messaedjreye sol moumint di KAddressbook -Name[x-test]=xxKAddressbook Instant Messaging Protocolxx -Name[zh_CN]=KAddressbook 即时通讯协议 -Name[zh_TW]=KAddressbook 即時通訊協定 -[PropertyDef::X-KDE-InstantMessagingKABCField] -Type=QString - diff --git a/src/contact-editor/editor/im/protocols/CMakeLists.txt b/src/contact-editor/editor/im/protocols/CMakeLists.txt deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ - -install( FILES icqprotocol.desktop - aimprotocol.desktop - ircprotocol.desktop - smsprotocol.desktop - gaduprotocol.desktop - jabberprotocol.desktop - yahooprotocol.desktop - msnprotocol.desktop - groupwiseprotocol.desktop - meanwhileprotocol.desktop - skypeprotocol.desktop - googletalkprotocol.desktop - facebookprotocol.desktop - twitterprotocol.desktop - qqprotocol.desktop - DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/akonadi/contact ) diff --git a/src/contact-editor/editor/im/protocols/aimprotocol.desktop b/src/contact-editor/editor/im/protocols/aimprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/aimprotocol.desktop +++ /dev/null @@ -1,108 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-aim -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/aim -X-KDE-InstantMessagingKContactField=aim -Comment=AIM Protocol -Comment[ar]=ميفاق AIM -Comment[bs]=AIM Protokol -Comment[ca]=Protocol AIM -Comment[ca@valencia]=Protocol AIM -Comment[cs]=Protokol AIM -Comment[da]=AIM-protokollen -Comment[de]=AIM-Protokoll -Comment[el]=Πρωτόκολλο AIM -Comment[en_GB]=AIM Protocol -Comment[eo]=AIM-Protokolo -Comment[es]=Protocolo AIM -Comment[et]=AIM protokoll -Comment[fi]=AIM-yhteyskäytäntö -Comment[fr]=Protocole AIM -Comment[ga]=Prótacal AIM -Comment[gl]=Protocolo de AIM -Comment[he]=פרוקוטול AIM -Comment[hu]=AIM protokoll -Comment[ia]=Protocollo AIM -Comment[it]=Protocollo AIM -Comment[ja]=AIM プロトコル -Comment[kk]=AIM протоколы -Comment[km]=ពិធីការ​ AIM ​​ -Comment[ko]=AIM 프로토콜 -Comment[lt]=AIM protokolas -Comment[mr]=AIM शिष्टाचार -Comment[nb]=AIM-protokoll -Comment[nds]=AIM-Protokoll -Comment[nl]=AIM-protocol -Comment[nn]=AIM-protokoll -Comment[pl]=Protokół AIM -Comment[pt]=Protocolo AIM -Comment[pt_BR]=Protocolo do AIM -Comment[ro]=Protocol AIM -Comment[ru]=Протокол обмена сообщениями AIM -Comment[sk]=Protokol AIM -Comment[sl]=Protokol AIM -Comment[sr]=Протокол АИМ -Comment[sr@ijekavian]=Протокол АИМ -Comment[sr@ijekavianlatin]=Protokol AIM -Comment[sr@latin]=Protokol AIM -Comment[sv]=AIM-protokoll -Comment[th]=โพรโทคอล AIM -Comment[tr]=AIM Protokolü -Comment[uk]=Протокол AIM -Comment[wa]=Protocole AIM -Comment[x-test]=xxAIM Protocolxx -Comment[zh_CN]=AIM 协议 -Comment[zh_TW]=AIM 協定 -Name=AIM -Name[ar]=AIM -Name[bs]=AIM -Name[ca]=AIM -Name[ca@valencia]=AIM -Name[cs]=AIM -Name[da]=AIM -Name[de]=AIM -Name[el]=AIM -Name[en_GB]=AIM -Name[eo]=AIM -Name[es]=AIM -Name[et]=AIM -Name[fi]=AIM -Name[fr]=AIM -Name[ga]=AIM -Name[gl]=AIM -Name[he]=AIM -Name[hu]=AIM -Name[ia]=AIM -Name[it]=AIM -Name[ja]=AIM -Name[kk]=AIM -Name[km]=AIM​ -Name[ko]=AIM -Name[lt]=AIM -Name[mr]=AIM -Name[nb]=AIM -Name[nds]=AIM -Name[nl]=AIM -Name[nn]=AIM -Name[pl]=AIM -Name[pt]=AIM -Name[pt_BR]=AIM -Name[ro]=AIM -Name[ru]=AIM -Name[sk]=AIM -Name[sl]=AIM -Name[sr]=АИМ -Name[sr@ijekavian]=АИМ -Name[sr@ijekavianlatin]=AIM -Name[sr@latin]=AIM -Name[sv]=AIM -Name[th]=AIM -Name[tr]=AIM -Name[ug]=AIM -Name[uk]=AIM -Name[wa]=AIM -Name[x-test]=xxAIMxx -Name[zh_CN]=AIM -Name[zh_TW]=AIM - diff --git a/src/contact-editor/editor/im/protocols/facebookprotocol.desktop b/src/contact-editor/editor/im/protocols/facebookprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/facebookprotocol.desktop +++ /dev/null @@ -1,72 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-facebook -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKContactField=facebook -X-KDE-InstantMessagingKABCField=messaging/facebook -Comment=Facebook Protocol -Comment[ar]=ميفاق فيسبوك -Comment[ca]=Protocol Facebook -Comment[ca@valencia]=Protocol Facebook -Comment[cs]=Protokol Facebook -Comment[da]=Facebook-protokol -Comment[de]=Facebook-Protokoll -Comment[en_GB]=Facebook Protocol -Comment[es]=Protocolo Facebook -Comment[et]=Facebooki protokoll -Comment[fi]=Facebook-yhteyskäytäntö -Comment[fr]=Protocole Facebook -Comment[gl]=Protocolo de Facebook -Comment[it]=Protocollo di Facebook -Comment[ko]=Facebook 프로토콜 -Comment[nl]=Facebook-protocol -Comment[pl]=Protokół Facebooka -Comment[pt]=Protocolo do Facebook -Comment[pt_BR]=Protocolo do Facebook -Comment[ru]=Протокол Facebook -Comment[sk]=Protokol Facebook -Comment[sl]=Protokol Facebook -Comment[sr]=Протокол Фејсбука -Comment[sr@ijekavian]=Протокол Фејсбука -Comment[sr@ijekavianlatin]=Protokol Facebooka -Comment[sr@latin]=Protokol Facebooka -Comment[sv]=Facebook-protokoll -Comment[tr]=Facebook Protokolü -Comment[uk]=Протокол Facebook -Comment[x-test]=xxFacebook Protocolxx -Comment[zh_CN]=Facebook 协议 -Comment[zh_TW]=Facebook 協定 -Name=Facebook -Name[ar]=فيسبوك -Name[ca]=Facebook -Name[ca@valencia]=Facebook -Name[cs]=Facebook -Name[da]=Facebook -Name[de]=Facebook -Name[en_GB]=Facebook -Name[es]=Facebook -Name[et]=Facebook -Name[fi]=Facebook -Name[fr]=Facebook -Name[gl]=Facebook -Name[it]=Facebook -Name[ko]=Facebook -Name[nl]=Facebook -Name[nn]=Facebook -Name[pl]=Facebook -Name[pt]=Facebook -Name[pt_BR]=Facebook -Name[ru]=Facebook -Name[sk]=Facebook -Name[sl]=Facebook -Name[sr]=Фејсбук -Name[sr@ijekavian]=Фејсбук -Name[sr@ijekavianlatin]=Facebook -Name[sr@latin]=Facebook -Name[sv]=Facebook -Name[tr]=Facebook -Name[uk]=Facebook -Name[x-test]=xxFacebookxx -Name[zh_CN]=Facebook -Name[zh_TW]=Facebook - diff --git a/src/contact-editor/editor/im/protocols/gaduprotocol.desktop b/src/contact-editor/editor/im/protocols/gaduprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/gaduprotocol.desktop +++ /dev/null @@ -1,108 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-gadugadu -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/gadu -X-KDE-InstantMessagingKContactField=gadugadu -Comment=Gadu-Gadu Protocol -Comment[ar]=ميفاق غادو-غادو -Comment[bs]=Gadu-Gadu Protokol -Comment[ca]=Protocol Gadu-Gadu -Comment[ca@valencia]=Protocol Gadu-Gadu -Comment[cs]=Protokol Gadu-Gadu -Comment[da]=Gadu-Gadu-protokollen -Comment[de]=Gadu-Gadu-Protokoll -Comment[el]=Πρωτόκολλο Gadu-Gadu -Comment[en_GB]=Gadu-Gadu Protocol -Comment[eo]=Gadu-Gadu Protokolo -Comment[es]=Protocolo Gadu-Gadu -Comment[et]=Gadu-Gadu protokoll -Comment[fi]=Gadu-Gadu-yhteyskäytäntö -Comment[fr]=Protocole Gadu-Gadu -Comment[ga]=Prótacal Gadu-Gadu -Comment[gl]=Protocolo de Gadu-Gadu -Comment[he]=פרוטוקול Gadu-Gadu -Comment[hu]=Gadu-Gadu protokoll -Comment[ia]=Protocollo Gadu-Gadu -Comment[it]=Protocollo Gadu-Gadu -Comment[ja]=Gadu-Gadu プロトコル -Comment[kk]=Gadu-Gadu протоколы -Comment[km]=ពិធីការ​ Gadu-Gadu -Comment[ko]=Gadu-Gadu 프로토콜 -Comment[lt]=Gadu-Gadu protokolas -Comment[mr]=गडु-गडु शिष्टाचार -Comment[nb]=Gadu-Gadu-protokoll -Comment[nds]=Gadu-Gadu-Protokoll -Comment[nl]=Gadu-Gadu-protocol -Comment[nn]=Gadu-Gadu-protokoll -Comment[pl]=Protokół Gadu-Gadu -Comment[pt]=Protocolo Gadu-Gadu -Comment[pt_BR]=Protocolo do Gadu-Gadu -Comment[ro]=Protocol Gadu-Gadu -Comment[ru]=Протокол обмена сообщениями Gadu-Gadu -Comment[sk]=Protokol Gadu-Gadu -Comment[sl]=Protokol Gadu-Gadu -Comment[sr]=Протокол гаду‑гаду -Comment[sr@ijekavian]=Протокол гаду‑гаду -Comment[sr@ijekavianlatin]=Protokol Gadu‑Gadu -Comment[sr@latin]=Protokol Gadu‑Gadu -Comment[sv]=Gadu-Gadu protokoll -Comment[th]=โพรโทคอล Gadu-Gadu -Comment[tr]=Gadu-Gadu Protokolü -Comment[uk]=Протокол Gadu-Gadu -Comment[wa]=Protocole Gadu-gadu -Comment[x-test]=xxGadu-Gadu Protocolxx -Comment[zh_CN]=Gadu-Gadu 协议 -Comment[zh_TW]=Gadu-Gadu 協定 -Name=Gadu-Gadu -Name[ar]=غادو-غادو -Name[bs]=Gadu-Gadu -Name[ca]=Gadu-Gadu -Name[ca@valencia]=Gadu-Gadu -Name[cs]=Gadu-Gadu -Name[da]=Gadu-Gadu -Name[de]=Gadu-Gadu -Name[el]=Gadu-Gadu -Name[en_GB]=Gadu-Gadu -Name[eo]=Gadu-Gadu -Name[es]=Gadu-Gadu -Name[et]=Gadu-Gadu -Name[fi]=Gadu-Gadu -Name[fr]=Gadu-Gadu -Name[ga]=Gadu-Gadu -Name[gl]=Gadu-Gadu -Name[he]=Gadu-Gadu -Name[hu]=Gadu-Gadu -Name[ia]=Gadu-Gadu -Name[it]=Gadu-Gadu -Name[ja]=Gadu-Gadu -Name[kk]=Gadu-Gadu -Name[km]=Gadu-Gadu -Name[ko]=Gadu-Gadu -Name[lt]=Gadu-Gadu -Name[mr]=गडु-गडु -Name[nb]=Gadu-Gadu -Name[nds]=Gadu-Gadu -Name[nl]=Gadu-Gadu -Name[nn]=Gadu-Gadu -Name[pl]=Gadu-Gadu -Name[pt]=Gadu-Gadu -Name[pt_BR]=Gadu-Gadu -Name[ro]=Gadu-Gadu -Name[ru]=Gadu-Gadu -Name[sk]=Gadu-Gadu -Name[sl]=Gadu-Gadu -Name[sr]=Гаду‑гаду -Name[sr@ijekavian]=Гаду‑гаду -Name[sr@ijekavianlatin]=Gadu‑Gadu -Name[sr@latin]=Gadu‑Gadu -Name[sv]=Gadu-Gadu -Name[th]=Gadu-Gadu -Name[tr]=Gadu-Gadu -Name[ug]=گادۇ-گادۇ(Gadu-Gadu) -Name[uk]=Gadu-Gadu -Name[wa]=Gadu-Gadu -Name[x-test]=xxGadu-Gaduxx -Name[zh_CN]=Gadu-Gadu -Name[zh_TW]=Gadu-Gadu - diff --git a/src/contact-editor/editor/im/protocols/googletalkprotocol.desktop b/src/contact-editor/editor/im/protocols/googletalkprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/googletalkprotocol.desktop +++ /dev/null @@ -1,90 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-google -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/googletalk -X-KDE-InstantMessagingKContactField=googletalk -Comment=Google Talk -Comment[ar]=غوغل توك -Comment[bs]=Google Talk -Comment[ca]=Google Talk -Comment[ca@valencia]=Google Talk -Comment[cs]=Google Talk -Comment[da]=Google Talk -Comment[de]=Google Talk -Comment[el]=Google Talk -Comment[en_GB]=Google Talk -Comment[es]=Google Talk -Comment[et]=Google Talk -Comment[fi]=Google Talk -Comment[fr]=Google Talk -Comment[gl]=Google Talk -Comment[hu]=Google Talk -Comment[ia]=Google Talk -Comment[it]=Google Talk -Comment[kk]=Google Talk -Comment[ko]=Google 토크 -Comment[lt]=Google Talk -Comment[nb]=Google Talk -Comment[nds]=GoogleTalk -Comment[nl]=Google Talk -Comment[pl]=Google Talk -Comment[pt]=Google Talk -Comment[pt_BR]=Google Talk -Comment[ro]=Google Talk -Comment[ru]=Google Talk -Comment[sk]=Google Talk -Comment[sl]=Google Talk -Comment[sr]=Гугл‑разговор -Comment[sr@ijekavian]=Гугл‑разговор -Comment[sr@ijekavianlatin]=Google-razgovor -Comment[sr@latin]=Google-razgovor -Comment[sv]=Google Talk -Comment[tr]=Google Talk -Comment[ug]=گۇگىل سۆھبەت(Google Talk) -Comment[uk]=Google Talk -Comment[x-test]=xxGoogle Talkxx -Comment[zh_CN]=Google Talk -Comment[zh_TW]=Google Talk -Name=Google Talk -Name[ar]=غوغل توك -Name[bs]=Google Talk -Name[ca]=Google Talk -Name[ca@valencia]=Google Talk -Name[cs]=Google Talk -Name[da]=Google Talk -Name[de]=Google Talk -Name[el]=Google Talk -Name[en_GB]=Google Talk -Name[es]=Google Talk -Name[et]=Google Talk -Name[fi]=Google Talk -Name[fr]=Google Talk -Name[gl]=Google Talk -Name[hu]=Google Talk -Name[ia]=Google Talk -Name[it]=Google Talk -Name[kk]=Google Talk -Name[ko]=Google 토크 -Name[lt]=Google Talk -Name[nb]=Google Talk -Name[nds]=GoogleTalk -Name[nl]=Google Talk -Name[pl]=Google Talk -Name[pt]=Google Talk -Name[pt_BR]=Google Talk -Name[ro]=Google Talk -Name[ru]=Google Talk -Name[sk]=Google Talk -Name[sl]=Google Talk -Name[sr]=Гугл‑разговор -Name[sr@ijekavian]=Гугл‑разговор -Name[sr@ijekavianlatin]=Google-razgovor -Name[sr@latin]=Google-razgovor -Name[sv]=Google Talk -Name[tr]=Google Talk -Name[ug]=گۇگىل سۆھبەت(Google Talk) -Name[uk]=Google Talk -Name[x-test]=xxGoogle Talkxx -Name[zh_CN]=Google Talk -Name[zh_TW]=Google Talk diff --git a/src/contact-editor/editor/im/protocols/groupwiseprotocol.desktop b/src/contact-editor/editor/im/protocols/groupwiseprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/groupwiseprotocol.desktop +++ /dev/null @@ -1,108 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-groupwise -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/groupwise - -Comment=Novell GroupWise Messenger -Comment[ar]=مرسال نوڤل GroupWise -Comment[bs]=Novell GroupWise mesendžer -Comment[ca]=Novell GroupWise Messenger -Comment[ca@valencia]=Novell GroupWise Messenger -Comment[cs]=Novell GroupWise komunikátor -Comment[da]=Novell GroupWise Messenger -Comment[de]=Novell-GroupWise-Nachrichtendienst -Comment[el]=Αποστολέας μηνυμάτων Novell GroupWise -Comment[en_GB]=Novell GroupWise Messenger -Comment[eo]=Novell GroupWise mesaĝilo -Comment[es]=Mensajería de Novell GroupWise -Comment[et]=Novell GroupWise Messenger -Comment[fi]=Novell Groupwise -pikaviestin -Comment[fr]=Messagerie « GroupWise Novell » -Comment[ga]=Teachtaire Novell GroupWise -Comment[gl]=Mensaxeiro GroupWise da Novell -Comment[he]=פרוטוקול GroupWise של נובל -Comment[hu]=Novell GroupWise üzenetküldő -Comment[ia]=Messagero de GroupWise de Novell -Comment[it]=Novell GroupWise Messenger -Comment[kk]=Novell GroupWise хабарласуы -Comment[km]=កម្មវិធី​ផ្ញើសារ​របស់ Novell GroupWise -Comment[ko]=Novell GroupWise 메신저 -Comment[lt]=Novell GroupWise žinučių klientas -Comment[mr]=नोव्हेल ग्रुपवाइज संदेशवाहक -Comment[nb]=Novell GroupWise meldingsprogram -Comment[nds]=Novell-GroupWise-Kortnarichtenmaker -Comment[nl]=Protocol voor Novell GroupWise Messenger -Comment[nn]=Lynmeldingstenesta Novell GroupWise -Comment[pl]=Komunikator Novell GroupWise -Comment[pt]=Novell GroupWise Messenger -Comment[pt_BR]=Mensageiro do GroupWise da Novell -Comment[ro]=Mesagerul Novell GroupWise -Comment[ru]=Протокол обмена сообщениями Novell GroupWise -Comment[sk]=Novell GroupWise Messenger -Comment[sl]=Novell GroupWise Messenger -Comment[sr]=Новелов Групвајз месенџер -Comment[sr@ijekavian]=Новелов Групвајз месенџер -Comment[sr@ijekavianlatin]=Novellov GroupWise Messenger -Comment[sr@latin]=Novellov GroupWise Messenger -Comment[sv]=Novell GroupWise-meddelandeklient -Comment[th]=ข้อความด่วนทันใจ GroupWise ของโนเวลล์ -Comment[tr]=Novell GroupWise Messenger -Comment[ug]=Novell GroupWise مۇڭداشقۇسى -Comment[uk]=Програма обміну повідомленнями Novell GroupWise -Comment[wa]=Messaedjî Novell GroupWise -Comment[x-test]=xxNovell GroupWise Messengerxx -Comment[zh_CN]=Novell GroupWise Messenger -Comment[zh_TW]=Novell GroupWise 即時訊息 -Name=GroupWise -Name[ar]=GroupWise -Name[bs]=GroupWise -Name[ca]=GroupWise -Name[ca@valencia]=GroupWise -Name[cs]=GroupWise -Name[da]=GroupWise -Name[de]=GroupWise -Name[el]=GroupWise -Name[en_GB]=GroupWise -Name[eo]=GroupWise -Name[es]=GroupWise -Name[et]=GroupWise -Name[fi]=GroupWise -Name[fr]=GroupWise -Name[ga]=GroupWise -Name[gl]=GroupWise -Name[he]=GroupWise -Name[hu]=GroupWise -Name[ia]=GroupWise -Name[it]=GroupWise -Name[ja]=GroupWise -Name[kk]=GroupWise -Name[km]=GroupWise​ -Name[ko]=GroupWise -Name[lt]=GroupWise -Name[mr]=नोव्हेल ग्रुपवाइज -Name[nb]=GroupWise -Name[nds]=GroupWise -Name[nl]=GroupWise -Name[nn]=GroupWise -Name[pl]=GroupWise -Name[pt]=GroupWise -Name[pt_BR]=GroupWise -Name[ro]=GroupWise -Name[ru]=GroupWise -Name[sk]=GroupWise -Name[sl]=GroupWise -Name[sr]=Групвајз -Name[sr@ijekavian]=Групвајз -Name[sr@ijekavianlatin]=GroupWise -Name[sr@latin]=GroupWise -Name[sv]=GroupWise -Name[th]=GroupWise -Name[tr]=GroupWise -Name[ug]=GroupWise -Name[uk]=GroupWise -Name[wa]=GroupWise -Name[x-test]=xxGroupWisexx -Name[zh_CN]=GroupWise -Name[zh_TW]=GroupWise - diff --git a/src/contact-editor/editor/im/protocols/icqprotocol.desktop b/src/contact-editor/editor/im/protocols/icqprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/icqprotocol.desktop +++ /dev/null @@ -1,108 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-icq -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/icq -X-KDE-InstantMessagingKContactField=icq -Comment=ICQ Protocol -Comment[ar]=ميفاق ICQ -Comment[bs]=ICQ Protokol -Comment[ca]=Protocol ICQ -Comment[ca@valencia]=Protocol ICQ -Comment[cs]=Protokol ICQ -Comment[da]=ICQ-protokollen -Comment[de]=ICQ-Protokoll -Comment[el]=Πρωτόκολλο ICQ -Comment[en_GB]=ICQ Protocol -Comment[eo]=ICQ Protokolo -Comment[es]=Protocolo ICQ -Comment[et]=ICQ protokoll -Comment[fi]=ICQ-yhteyskäytäntö -Comment[fr]=Protocole ICQ -Comment[ga]=Prótacal ICQ -Comment[gl]=Protocolo de ICQ -Comment[he]=פרוטוקול ICQ -Comment[hu]=ICQ protokoll -Comment[ia]=Protocollo ICQ -Comment[it]=Protocollo ICQ -Comment[ja]=ICQ プロトコル -Comment[kk]=ICQ протоколыl -Comment[km]=ពិធីការ​ ICQ -Comment[ko]=ICQ 프로토콜 -Comment[lt]=ICQ protokolas -Comment[mr]=ICQ शिष्टाचार -Comment[nb]=ICQ-protokoll -Comment[nds]=ICQ-Protokoll -Comment[nl]=ICQ-protocol -Comment[nn]=ICQ-protokoll -Comment[pl]=Protokół ICQ -Comment[pt]=Protocolo ICQ -Comment[pt_BR]=Protocolo do ICQ -Comment[ro]=Protocol ICQ -Comment[ru]=Протокол обмена сообщениями ICQ -Comment[sk]=Protokol ICQ -Comment[sl]=Protokol ICQ -Comment[sr]=Протокол ајсикју -Comment[sr@ijekavian]=Протокол ајсикју -Comment[sr@ijekavianlatin]=Protokol ICQ -Comment[sr@latin]=Protokol ICQ -Comment[sv]=ICQ-protokoll -Comment[th]=โพรโทคอล ICQ -Comment[tr]=ICQ Protokolü -Comment[uk]=Протокол ICQ -Comment[wa]=Protocole ICQ -Comment[x-test]=xxICQ Protocolxx -Comment[zh_CN]=ICQ 协议 -Comment[zh_TW]=ICQ 協定 -Name=ICQ -Name[ar]=ICQ -Name[bs]=ICQ -Name[ca]=ICQ -Name[ca@valencia]=ICQ -Name[cs]=ICQ -Name[da]=ICQ -Name[de]=ICQ -Name[el]=ICQ -Name[en_GB]=ICQ -Name[eo]=ICQ -Name[es]=ICQ -Name[et]=ICQ -Name[fi]=ICQ -Name[fr]=ICQ -Name[ga]=ICQ -Name[gl]=ICQ -Name[he]=ICQ -Name[hu]=ICQ -Name[ia]=ICQ -Name[it]=ICQ -Name[ja]=ICQ -Name[kk]=ICQ -Name[km]=ICQ -Name[ko]=ICQ -Name[lt]=ICQ -Name[mr]=ICQ -Name[nb]=ICQ -Name[nds]=ICQ -Name[nl]=ICQ -Name[nn]=ICQ -Name[pl]=ICQ -Name[pt]=ICQ -Name[pt_BR]=ICQ -Name[ro]=ICQ -Name[ru]=ICQ -Name[sk]=ICQ -Name[sl]=ICQ -Name[sr]=ајсикју -Name[sr@ijekavian]=ајсикју -Name[sr@ijekavianlatin]=ICQ -Name[sr@latin]=ICQ -Name[sv]=ICQ -Name[th]=ICQ -Name[tr]=ICQ -Name[ug]=ICQ -Name[uk]=ICQ -Name[wa]=ICQ -Name[x-test]=xxICQxx -Name[zh_CN]=ICQ -Name[zh_TW]=ICQ - diff --git a/src/contact-editor/editor/im/protocols/ircprotocol.desktop b/src/contact-editor/editor/im/protocols/ircprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/ircprotocol.desktop +++ /dev/null @@ -1,106 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-irc -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/irc -Comment=Internet Relay Chat -Comment[ar]=المحادثة المنقولة بالشابكة -Comment[bs]=Ćaskanje putem Interneta -Comment[ca]=Internet Relay Chat -Comment[ca@valencia]=Internet Relay Chat -Comment[cs]=Internet Relay Chat -Comment[da]=Internet Relay Chat -Comment[de]=Internet Relay Chat -Comment[el]=Διαδικτυακή συνομιλία -Comment[en_GB]=Internet Relay Chat -Comment[eo]=Interreta plusenda babilado -Comment[es]=Internet Relay Chat -Comment[et]=Rühmadiskussioon internetis -Comment[fi]=Internet Relay Chat -Comment[fr]=Internet Relay Chat -Comment[ga]=Internet Relay Chat -Comment[gl]=Conversas por internet (IRC) -Comment[he]=Internet Relay Chat -Comment[hu]=Internet Relay Chat -Comment[ia]=Internet Relay Chat (IRC) -Comment[it]=Internet Relay Chat -Comment[ja]=インターネットリレーチャット -Comment[kk]=Internet Relay Chat -Comment[km]=ជជែកកំសាន្ត​បញ្ជូន​តាម​អ៊ីនធឺណិត​ -Comment[ko]=인터넷 릴레이 채팅 -Comment[lt]=Internetu vykstantys pokalbiai (IRC) -Comment[nb]=Internet Relay Chat -Comment[nds]=Klöönsnack (Internet Relay Chat) -Comment[nl]=Internet Relay Chat -Comment[nn]=Internet Relay Chat -Comment[pl]=Internet Relay Chat -Comment[pt]=Internet Relay Chat -Comment[pt_BR]=Bate-papo via Internet (IRC) -Comment[ro]=Internet Relay Chat -Comment[ru]=Internet Relay Chat -Comment[sk]=Internet Relay Chat -Comment[sl]=Internet Relay Chat -Comment[sr]=Ћаскање путем Интернета -Comment[sr@ijekavian]=Ћаскање путем Интернета -Comment[sr@ijekavianlatin]=Ćaskanje putem Interneta -Comment[sr@latin]=Ćaskanje putem Interneta -Comment[sv]=Internet Relay Chat -Comment[tr]=Internet Relay Chat -Comment[ug]=ئىنتېرنېت ئۇلاپ تارقىتىش سۆھبىتى(IRC) -Comment[uk]=Internet Relay Chat -Comment[wa]=Internet Relay Chat -Comment[x-test]=xxInternet Relay Chatxx -Comment[zh_CN]=IRC -Comment[zh_TW]=IRC -Name=IRC -Name[ar]=آي​آر​سي -Name[bs]=IRC -Name[ca]=IRC -Name[ca@valencia]=IRC -Name[cs]=IRC -Name[da]=IRC -Name[de]=IRC -Name[el]=IRC -Name[en_GB]=IRC -Name[eo]=IRC -Name[es]=IRC -Name[et]=IRC -Name[fi]=IRC -Name[fr]=IRC -Name[ga]=IRC -Name[gl]=IRC -Name[he]=IRC -Name[hu]=IRC -Name[ia]=IRC -Name[it]=IRC -Name[ja]=IRC -Name[kk]=IRC -Name[km]=IRC​ -Name[ko]=IRC -Name[lt]=IRC -Name[mr]=IRC -Name[nb]=IRC -Name[nds]=IRC -Name[nl]=IRC -Name[nn]=IRC -Name[pl]=IRC -Name[pt]=IRC -Name[pt_BR]=IRC -Name[ro]=IRC -Name[ru]=IRC -Name[sk]=IRC -Name[sl]=IRC -Name[sr]=ИРЦ -Name[sr@ijekavian]=ИРЦ -Name[sr@ijekavianlatin]=IRC -Name[sr@latin]=IRC -Name[sv]=IRC -Name[th]=IRC -Name[tr]=IRC -Name[ug]=IRC -Name[uk]=IRC -Name[wa]=IRC -Name[x-test]=xxIRCxx -Name[zh_CN]=IRC -Name[zh_TW]=IRC - diff --git a/src/contact-editor/editor/im/protocols/jabberprotocol.desktop b/src/contact-editor/editor/im/protocols/jabberprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/jabberprotocol.desktop +++ /dev/null @@ -1,108 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-jabber -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/xmpp -X-KDE-InstantMessagingKContactField=jabber -Comment=Jabber Protocol -Comment[ar]=ميفاق جابر -Comment[bs]=Jabber Protokol -Comment[ca]=Protocol Jabber -Comment[ca@valencia]=Protocol Jabber -Comment[cs]=Protokol Jabber -Comment[da]=Jabber-protokollen -Comment[de]=Jabber-Protokoll -Comment[el]=Πρωτόκολλο Jabber -Comment[en_GB]=Jabber Protocol -Comment[eo]=Jabber Protokolo -Comment[es]=Protocolo Jabber -Comment[et]=Jabberi protokoll -Comment[fi]=Jabber-yhteyskäytäntö -Comment[fr]=Protocole Jabber -Comment[ga]=Prótacal Jabber -Comment[gl]=Protocolo de Jabber -Comment[he]=פרוטוקול Jabber -Comment[hu]=Jabber protokoll -Comment[ia]=Protocollo Jabber -Comment[it]=Protocollo Jabber -Comment[ja]=Jabber プロトコル -Comment[kk]=Jabber протоколы -Comment[km]=ពិធី​​ការ​ Jabber -Comment[ko]=Jabber 프로토콜 -Comment[lt]=Jabber protokolas -Comment[mr]=जेबर शिष्टाचार -Comment[nb]=Jabber-protokoll -Comment[nds]=Jabber-Protokoll -Comment[nl]=Jabber-protocol -Comment[nn]=Jabber-protokoll -Comment[pl]=Protokół Jabber -Comment[pt]=Protocolo Jabber -Comment[pt_BR]=Protocolo do Jabber -Comment[ro]=Protocol Jabber -Comment[ru]=Протокол обмена сообщениями Jabber -Comment[sk]=Protokol Jabber -Comment[sl]=Protokol Jabber -Comment[sr]=Протокол џабер -Comment[sr@ijekavian]=Протокол џабер -Comment[sr@ijekavianlatin]=Protokol Jabber -Comment[sr@latin]=Protokol Jabber -Comment[sv]=Jabber-protokoll -Comment[th]=โพรโทคอล Jabber -Comment[tr]=Jabber Protocolü -Comment[uk]=Протокол Jabber -Comment[wa]=Protocole Jabber -Comment[x-test]=xxJabber Protocolxx -Comment[zh_CN]=Jabber 协议 -Comment[zh_TW]=Jabber 協定 -Name=Jabber -Name[ar]=جابر -Name[bs]=Jabber -Name[ca]=Jabber -Name[ca@valencia]=Jabber -Name[cs]=Jabber -Name[da]=Jabber -Name[de]=Jabber -Name[el]=Jabber -Name[en_GB]=Jabber -Name[eo]=Jabber -Name[es]=Jabber -Name[et]=Jabber -Name[fi]=Jabber -Name[fr]=Jabber -Name[ga]=Jabber -Name[gl]=Jabber -Name[he]=Jabber -Name[hu]=Jabber -Name[ia]=Jabber -Name[it]=Jabber -Name[ja]=Jabber -Name[kk]=Jabber -Name[km]=Jabber -Name[ko]=Jabber -Name[lt]=Jabber -Name[mr]=जेबर -Name[nb]=Jabber -Name[nds]=Jabber -Name[nl]=Jabber -Name[nn]=Jabber -Name[pl]=Jabber -Name[pt]=Jabber -Name[pt_BR]=Jabber -Name[ro]=Jabber -Name[ru]=Jabber -Name[sk]=Jabber -Name[sl]=Jabber -Name[sr]=Џабер -Name[sr@ijekavian]=Џабер -Name[sr@ijekavianlatin]=Jabber -Name[sr@latin]=Jabber -Name[sv]=Jabber -Name[th]=Jabber -Name[tr]=Jabber -Name[ug]=Jabber -Name[uk]=Jabber -Name[wa]=Jabber -Name[x-test]=xxJabberxx -Name[zh_CN]=Jabber -Name[zh_TW]=Jabber - diff --git a/src/contact-editor/editor/im/protocols/meanwhileprotocol.desktop b/src/contact-editor/editor/im/protocols/meanwhileprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/meanwhileprotocol.desktop +++ /dev/null @@ -1,107 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-meanwhile -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/meanwhile -Comment=Meanwhile Protocol -Comment[ar]=ميفاق Meanwhile -Comment[bs]=Meanwhile Protokol -Comment[ca]=Protocol Meanwhile -Comment[ca@valencia]=Protocol Meanwhile -Comment[cs]=Protokol Meanwhile -Comment[da]=Meanwhile-protokollen -Comment[de]=Meanwhile-Protokoll -Comment[el]=Πρωτόκολλο Meanwhile -Comment[en_GB]=Meanwhile Protocol -Comment[eo]=Meanwhile Protokolo -Comment[es]=Protocolo Meanwhile -Comment[et]=Meanwhile'i protokoll -Comment[fi]=Meanwhile-yhteyskäytäntö -Comment[fr]=Protocole Meanwhile -Comment[ga]=Prótacal Meanwhile -Comment[gl]=Protocolo de Meanwhile -Comment[he]=פרוטוקול Meanwhile -Comment[hu]=Meanwhile protokoll -Comment[ia]=Protocollo Meanwhile -Comment[it]=Protocollo Meanwhile -Comment[ja]=Meanwhile プロトコル -Comment[kk]=Meanwhile протоколы -Comment[km]=ពិធីការ​ Meanwhile -Comment[ko]=Meanwhile 프로토콜 -Comment[lt]=Meanwhile protokolas -Comment[mr]=मीनव्हाइल शिष्टाचार -Comment[nb]=Meanwhile-protokoll -Comment[nds]=Meanwhile-Protokoll -Comment[nl]=Meanwhile-protocol -Comment[nn]=Meanwhile-protokoll -Comment[pl]=Protokół Meanwhile -Comment[pt]=Protocolo Meanwhile -Comment[pt_BR]=Protocolo do Meanwhile -Comment[ro]=Protocol Meanwhile -Comment[ru]=Протокол обмена сообщениями Meanwhile -Comment[sk]=Protokol Meanwhile -Comment[sl]=Protokol Meanwhile -Comment[sr]=Протокол минвајл -Comment[sr@ijekavian]=Протокол минвајл -Comment[sr@ijekavianlatin]=Protokol Meanwhile -Comment[sr@latin]=Protokol Meanwhile -Comment[sv]=Meanwhile-protokoll -Comment[th]=โพรโทคอล Meanwhile -Comment[tr]=Meanwhile Protokolü -Comment[uk]=Протокол Meanwhile -Comment[wa]=Protocole Meanwhile -Comment[x-test]=xxMeanwhile Protocolxx -Comment[zh_CN]=Meanwhile 协议 -Comment[zh_TW]=Meanwhile 協定 -Name=Meanwhile -Name[ar]=Meanwhile -Name[bs]=Meanwhile -Name[ca]=Meanwhile -Name[ca@valencia]=Meanwhile -Name[cs]=Meanwhile -Name[da]=Meanwhile -Name[de]=Meanwhile -Name[el]=Meanwhile -Name[en_GB]=Meanwhile -Name[eo]=Meanwhile -Name[es]=Meanwhile -Name[et]=Meanwhile -Name[fi]=Meanwhile -Name[fr]=Meanwhile -Name[ga]=Meanwhile -Name[gl]=Meanwhile -Name[he]=Meanwhile -Name[hu]=Meanwhile -Name[ia]=Meanwhile -Name[it]=Meanwhile -Name[ja]=Meanwhile -Name[kk]=Meanwhile -Name[km]=Meanwhile -Name[ko]=Meanwhile -Name[lt]=Meanwhile -Name[mr]=मीनव्हाइल -Name[nb]=Meanwhile -Name[nds]=Meanwhile -Name[nl]=Meanwhile -Name[nn]=Meanwhile -Name[pl]=Meanwhile -Name[pt]=Meanwhile -Name[pt_BR]=Meanwhile -Name[ro]=Meanwhile -Name[ru]=Meanwhile -Name[sk]=Meanwhile -Name[sl]=Meanwhile -Name[sr]=Минвајл -Name[sr@ijekavian]=Минвајл -Name[sr@ijekavianlatin]=Meanwhile -Name[sr@latin]=Meanwhile -Name[sv]=Meanwhile -Name[th]=Meanwhile -Name[tr]=Meanwhile -Name[ug]=Meanwhile -Name[uk]=Meanwhile -Name[wa]=Meanwhile -Name[x-test]=xxMeanwhilexx -Name[zh_CN]=Meanwhile -Name[zh_TW]=Meanwhile - diff --git a/src/contact-editor/editor/im/protocols/msnprotocol.desktop b/src/contact-editor/editor/im/protocols/msnprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/msnprotocol.desktop +++ /dev/null @@ -1,107 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-msn -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/msn -X-KDE-InstantMessagingKContactField=msn -Comment=MSN Messenger -Comment[ar]=مرسال MSN -Comment[bs]=MSN Mesendžer -Comment[ca]=MSN Messenger -Comment[ca@valencia]=MSN Messenger -Comment[cs]=MSN Messenger -Comment[da]=MSN Messenger -Comment[de]=MSN-Nachrichtendienst -Comment[el]=Αποστολέας μηνυμάτων MSN -Comment[en_GB]=MSN Messenger -Comment[eo]=MSN Mesaĝilo -Comment[es]=MSN Messenger -Comment[et]=MSN Messenger -Comment[fi]=MSN Messenger -Comment[fr]=Messagerie MSN -Comment[ga]=MSN Messenger -Comment[gl]=Mensaxeiro MSN -Comment[he]=פרוטוקול MSN -Comment[hu]=MSN Messenger -Comment[ia]=Messaggero MSN -Comment[it]=MSN Messenger -Comment[ja]=MSN メッセンジャー -Comment[kk]=MSN хабарласуы -Comment[km]=កម្មវិធី​ផ្ញើសារ MSN -Comment[ko]=MSN 메신저 -Comment[lt]=MSN žinučių klientas -Comment[mr]=एमएसएन संदेशवाहक -Comment[nb]=MSN Messenger -Comment[nds]=MSN-Kortnarichtenmaker -Comment[nl]=MSN Messenger -Comment[nn]=MSN Messenger -Comment[pl]=MSN Messenger -Comment[pt]=MSN Messenger -Comment[pt_BR]=MSN Messenger -Comment[ro]=Mesagerul MSN -Comment[ru]=Протокол обмена сообщениями MSN -Comment[sk]=MSN Messenger -Comment[sl]=MSN Messenger -Comment[sr]=МСН месенџер -Comment[sr@ijekavian]=МСН месенџер -Comment[sr@ijekavianlatin]=MSN Messenger -Comment[sr@latin]=MSN Messenger -Comment[sv]=MSN Messenger -Comment[tr]=MSN Messenger -Comment[ug]=MSN Messenger -Comment[uk]=MSN Messenger -Comment[wa]=MSN Messenger -Comment[x-test]=xxMSN Messengerxx -Comment[zh_CN]=MSN Messenger -Comment[zh_TW]=MSN -Name=MSN Messenger -Name[ar]=مرسال MSN -Name[bs]=MSN Mesendžer -Name[ca]=MSN Messenger -Name[ca@valencia]=MSN Messenger -Name[cs]=MSN Messenger -Name[da]=MSN Messenger -Name[de]=MSN Messenger -Name[el]=Αποστολέας μηνυμάτων MSN -Name[en_GB]=MSN Messenger -Name[eo]=MSN mesaĝilo -Name[es]=MSN Messenger -Name[et]=MSN Messenger -Name[fi]=MSN Messenger -Name[fr]=Messagerie MSN -Name[ga]=MSN Messenger -Name[gl]=MSN Messenger -Name[he]=MSN Messenger -Name[hu]=MSN Messenger -Name[ia]=Messaggero MSN -Name[it]=MSN Messenger -Name[ja]=MSN メッセンジャー -Name[kk]=MSN Messenger -Name[km]=កម្មវិធី​ផ្ញើសារ MSN -Name[ko]=MSN 메신저 -Name[lt]=MSN žinučių klientas -Name[mr]=एमएसएन संदेशवाहक -Name[nb]=MSN Messenger -Name[nds]=MSN-Kortnarichtenmaker -Name[nl]=MSN Messenger -Name[nn]=MSN Messenger -Name[pl]=MSN Messenger -Name[pt]=MSN Messenger -Name[pt_BR]=MSN Messenger -Name[ro]=Mesagerul MSN -Name[ru]=MSN -Name[sk]=MSN Messenger -Name[sl]=MSN Messenger -Name[sr]=МСН месенџер -Name[sr@ijekavian]=МСН месенџер -Name[sr@ijekavianlatin]=MSN Messenger -Name[sr@latin]=MSN Messenger -Name[sv]=MSN Messenger -Name[tr]=MSN Messenger -Name[ug]=MSN Messenger -Name[uk]=MSN Messenger -Name[wa]=MSN Messenger -Name[x-test]=xxMSN Messengerxx -Name[zh_CN]=MSN Messenger -Name[zh_TW]=MSN - diff --git a/src/contact-editor/editor/im/protocols/qqprotocol.desktop b/src/contact-editor/editor/im/protocols/qqprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/qqprotocol.desktop +++ /dev/null @@ -1,42 +0,0 @@ -[Desktop Entry] -Type=Service -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/qq -Comment=Tencent QQ Messaging -Comment[ca]=Missatgeria Tencent QQ -Comment[ca@valencia]=Missatgeria Tencent QQ -Comment[en_GB]=Tencent QQ Messaging -Comment[es]=Mensajería QQ de Tencent -Comment[fi]=Tencent QQ -pikaviestintä -Comment[fr]=Messagerie QQ de Tencent -Comment[gl]=Mensaxaría de Tencent QQ -Comment[it]=Messaggistica Tencent QQ -Comment[ko]=Tencent QQ 메시징 -Comment[nl]=Tencent QQ-messaging -Comment[pl]=Wiadomości Tencent QQ -Comment[pt]=Mensagens do Tencent QQ -Comment[pt_BR]=Mensageiro Tencent QQ -Comment[sv]=Tencent QQ-meddelandeklient -Comment[uk]=Обмін повідомленнями Tencent QQ -Comment[x-test]=xxTencent QQ Messagingxx -Comment[zh_TW]=騰訊 QQ 通訊軟體 -Name=QQ -Name[ca]=QQ -Name[ca@valencia]=QQ -Name[cs]=QQ -Name[en_GB]=QQ -Name[es]=QQ -Name[fi]=QQ -Name[fr]=QQ -Name[gl]=QQ -Name[it]=QQ -Name[ko]=QQ -Name[nl]=QQ -Name[pl]=QQ -Name[pt]=QQ -Name[pt_BR]=QQ -Name[sv]=QQ -Name[uk]=QQ -Name[x-test]=xxQQxx -Name[zh_TW]=QQ - diff --git a/src/contact-editor/editor/im/protocols/skypeprotocol.desktop b/src/contact-editor/editor/im/protocols/skypeprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/skypeprotocol.desktop +++ /dev/null @@ -1,106 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-skype -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/skype -X-KDE-InstantMessagingKContactField=skype -Comment=Skype Internet Telephony -Comment[ar]=سكايپ للإرسال الهاتفي عبر الشابكة -Comment[bs]=Skype (Skajp) internet tehnologija -Comment[ca]=Telefonia d'Internet Skype -Comment[ca@valencia]=Telefonia d'Internet Skype -Comment[cs]=Internetová telefonie Skype -Comment[da]=Internettelefoni med Skype -Comment[de]=Skype-Internettelefonie -Comment[el]=Διαδικτυακή τηλεφωνία Skype -Comment[en_GB]=Skype Internet Telephony -Comment[eo]=Skype Interreta Telefonado -Comment[es]=Telefonía por Internet de Skype -Comment[et]=Internetitelefon Skype -Comment[fi]=Skype-internetpuhelin -Comment[fr]=Téléphonie Internet Skype -Comment[ga]=Teileafónaíocht Idirlín Skype -Comment[gl]=Telefonía por internet de Skype -Comment[he]=טלפוניית אינטרנט של Skype -Comment[hu]=Skype internetes telefon -Comment[ia]=Telephonia Internet de Skype -Comment[it]=Telefonia su Internet di Skype -Comment[ja]=Skype インターネット電話 -Comment[kk]=Skype Интернет телефоны -Comment[km]=ទូរស័ព្ទ​តាម​អ៊ីនធឺណិត​ ​Skype​ -Comment[ko]=Skype 인터넷 전화 -Comment[lt]=Skype interneto telefonija -Comment[mr]=स्काइप इंटरनेट टेलिफोनी -Comment[nb]=Skype IP-telefoni -Comment[nds]=Internet-Telefoneren mit Skype -Comment[nl]=Skype internet-telefonie -Comment[nn]=Skype Internett-telefoni -Comment[pl]=Internetowa telefonia Skype -Comment[pt]=Telefonia Internet Skype -Comment[pt_BR]=Telefonia Internet Skype -Comment[ro]=Telefonie prin internet Skype -Comment[ru]=Интернет-телефония Skype -Comment[sk]=Skype Internet Telephony -Comment[sl]=Internetna telefonija Skype -Comment[sr]=Скајп, интернет телефонија -Comment[sr@ijekavian]=Скајп, интернет телефонија -Comment[sr@ijekavianlatin]=Skype, internet telefonija -Comment[sr@latin]=Skype, internet telefonija -Comment[sv]=Skype Internettelefoni -Comment[tr]=Skype Internet Telefonu -Comment[uk]=Інтернет-телефонія Skype -Comment[wa]=Telefoneye sol Daegntoele Skype -Comment[x-test]=xxSkype Internet Telephonyxx -Comment[zh_CN]=Skype 互联网电话 -Comment[zh_TW]=Skype 網路電話 -Name=Skype -Name[ar]=سكايپ -Name[bs]=Skype (Skajp) -Name[ca]=Skype -Name[ca@valencia]=Skype -Name[cs]=Skype -Name[da]=Skype -Name[de]=Skype -Name[el]=Skype -Name[en_GB]=Skype -Name[eo]=kype -Name[es]=Skype -Name[et]=Skype -Name[fi]=Skype -Name[fr]=Skype -Name[ga]=Skype -Name[gl]=Skype -Name[he]=Skype -Name[hu]=Skype -Name[ia]=Skype -Name[it]=Skype -Name[ja]=Skype -Name[kk]=Skype -Name[km]=Skype -Name[ko]=Skype -Name[lt]=Skype -Name[mr]=स्काइप -Name[nb]=Skype -Name[nds]=Skype -Name[nl]=Skype -Name[nn]=Skype -Name[pl]=Skype -Name[pt]=Skype -Name[pt_BR]=Skype -Name[ro]=Skype -Name[ru]=Skype -Name[sk]=Skype -Name[sl]=Skype -Name[sr]=Скајп -Name[sr@ijekavian]=Скајп -Name[sr@ijekavianlatin]=Skype -Name[sr@latin]=Skype -Name[sv]=Skype -Name[th]=Skype -Name[tr]=Skype -Name[ug]=Skype -Name[uk]=Skype -Name[wa]=Skype -Name[x-test]=xxSkypexx -Name[zh_CN]=Skype -Name[zh_TW]=Skype diff --git a/src/contact-editor/editor/im/protocols/smsprotocol.desktop b/src/contact-editor/editor/im/protocols/smsprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/smsprotocol.desktop +++ /dev/null @@ -1,107 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-sms -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/sms -Comment=SMS Protocol -Comment[ar]=ميفاق SMS -Comment[bs]=SMS Protokol -Comment[ca]=Protocol SMS -Comment[ca@valencia]=Protocol SMS -Comment[cs]=SMS protokol -Comment[da]=SMS-protokol -Comment[de]=SMS-Protokoll -Comment[el]=Πρωτόκολλο SMS -Comment[en_GB]=SMS Protocol -Comment[eo]=SMS Protokolo -Comment[es]=Protocolo SMS -Comment[et]=SMS protokoll -Comment[fi]=Tekstiviestiyhteyskäytäntö -Comment[fr]=Protocole SMS -Comment[ga]=Prótacal SMS -Comment[gl]=Protocolo de SMS -Comment[he]=פרוטוקול מסרונים -Comment[hu]=SMS protokoll -Comment[ia]=Protocollo SMS -Comment[it]=Protocollo SMS -Comment[ja]=SMS プロトコル -Comment[kk]=SMS протоколы -Comment[km]=ពិធីការ​ SMS ​​ -Comment[ko]=SMS 프로토콜 -Comment[lt]=SMS protokolas -Comment[mr]=एसएमएस शिष्टाचार -Comment[nb]=SMS Protokoll -Comment[nds]=SMS-Protokoll -Comment[nl]=SMS-protocol -Comment[nn]=SMS-protokoll -Comment[pl]=Protokół SMS -Comment[pt]=Protocolo SMS -Comment[pt_BR]=Protocolo SMS -Comment[ro]=Protocol SMS -Comment[ru]=Протокол SMS -Comment[sk]=Protokol SMS -Comment[sl]=Protokol SMS -Comment[sr]=Протокол СМС -Comment[sr@ijekavian]=Протокол СМС -Comment[sr@ijekavianlatin]=Protokol SMS -Comment[sr@latin]=Protokol SMS -Comment[sv]=SMS-protokoll -Comment[th]=โพรโทคอล SMS -Comment[tr]=SMS Protokolü -Comment[uk]=Протокол SMS -Comment[wa]=Protocole SMS -Comment[x-test]=xxSMS Protocolxx -Comment[zh_CN]=短消息协议 -Comment[zh_TW]=SMS 協定 -Name=SMS -Name[ar]=SMS -Name[bs]=SMS -Name[ca]=SMS -Name[ca@valencia]=SMS -Name[cs]=SMS -Name[da]=SMS -Name[de]=SMS -Name[el]=SMS -Name[en_GB]=SMS -Name[eo]=SMS -Name[es]=SMS -Name[et]=SMS -Name[fi]=Tekstiviesti -Name[fr]=SMS -Name[ga]=SMS -Name[gl]=SMS -Name[he]=מסרון -Name[hu]=SMS -Name[ia]=SMS -Name[it]=SMS -Name[ja]=SMS -Name[kk]=SMS -Name[km]=SMS -Name[ko]=SMS -Name[lt]=SMS -Name[mr]=एसएमएस -Name[nb]=SMS -Name[nds]=SMS -Name[nl]=SMS -Name[nn]=SMS -Name[pl]=SMS -Name[pt]=SMS -Name[pt_BR]=SMS -Name[ro]=SMS -Name[ru]=SMS -Name[sk]=SMS -Name[sl]=SMS -Name[sr]=СМС -Name[sr@ijekavian]=СМС -Name[sr@ijekavianlatin]=SMS -Name[sr@latin]=SMS -Name[sv]=SMS -Name[th]=SMS -Name[tr]=SMS -Name[ug]=SMS -Name[uk]=SMS -Name[wa]=SMS -Name[x-test]=xxSMSxx -Name[zh_CN]=SMS -Name[zh_TW]=SMS - diff --git a/src/contact-editor/editor/im/protocols/twitterprotocol.desktop b/src/contact-editor/editor/im/protocols/twitterprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/twitterprotocol.desktop +++ /dev/null @@ -1,73 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-twitter -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKContactField=twitter -X-KDE-InstantMessagingKABCField=messaging/twitter -Comment=Twitter Protocol -Comment[ar]=ميفاق تويتر -Comment[ca]=Protocol Twitter -Comment[ca@valencia]=Protocol Twitter -Comment[cs]=Protokol Twitter -Comment[da]=Twitter-protokollen -Comment[de]=Twitter-Protokoll -Comment[en_GB]=Twitter Protocol -Comment[es]=Protocolo Twitter -Comment[et]=Twitteri protokoll -Comment[fi]=Twitter-yhteyskäytäntö -Comment[fr]=Protocole Twitter -Comment[gl]=Protocolo de Twitter -Comment[it]=Protocollo di Twitter -Comment[ko]=트위터 프로토콜 -Comment[nl]=Twitter-protocol -Comment[pl]=Protokół Twittera -Comment[pt]=Protocolo do Twitter -Comment[pt_BR]=Protocolo do Twitter -Comment[ru]=Протокол Twitter -Comment[sk]=Protokol Twitter -Comment[sl]=Protokol Twitter -Comment[sr]=Протокол Твитера -Comment[sr@ijekavian]=Протокол Твитера -Comment[sr@ijekavianlatin]=Protokol Twittera -Comment[sr@latin]=Protokol Twittera -Comment[sv]=Twitter-protokoll -Comment[tr]=Twitter Protokolü -Comment[uk]=Протокол Twitter -Comment[x-test]=xxTwitter Protocolxx -Comment[zh_CN]=Twitter 协议 -Comment[zh_TW]=Twitter 協定 -Name=Twitter -Name[ar]=تويتر -Name[ca]=Twitter -Name[ca@valencia]=Twitter -Name[cs]=Twitter -Name[da]=Twitter -Name[de]=Twitter -Name[en_GB]=Twitter -Name[es]=Twitter -Name[et]=Twitter -Name[fi]=Twitter -Name[fr]=Twitter -Name[gl]=Twitter -Name[it]=Twitter -Name[ko]=트위터 -Name[nb]=Twitter -Name[nl]=Twitter -Name[nn]=Twitter -Name[pl]=Twitter -Name[pt]=Twitter -Name[pt_BR]=Twitter -Name[ru]=Twitter -Name[sk]=Twitter -Name[sl]=Twitter -Name[sr]=Твитер -Name[sr@ijekavian]=Твитер -Name[sr@ijekavianlatin]=Twitter -Name[sr@latin]=Twitter -Name[sv]=Twitter -Name[tr]=Twitter -Name[uk]=Twitter -Name[x-test]=xxTwitterxx -Name[zh_CN]=Twitter -Name[zh_TW]=Twitter - diff --git a/src/contact-editor/editor/im/protocols/yahooprotocol.desktop b/src/contact-editor/editor/im/protocols/yahooprotocol.desktop deleted file mode 100644 --- a/src/contact-editor/editor/im/protocols/yahooprotocol.desktop +++ /dev/null @@ -1,108 +0,0 @@ -[Desktop Entry] -Type=Service -Icon=im-yahoo -X-KDE-ServiceTypes=KContacts/IMProtocol,KPluginInfo -X-KDE-InstantMessagingKABCField=messaging/yahoo -X-KDE-InstantMessagingKContactField=yahoo -Comment=Yahoo Protocol -Comment[ar]=ميفاق ياهو -Comment[bs]=Yahoo Protokol -Comment[ca]=Protocol Yahoo -Comment[ca@valencia]=Protocol Yahoo -Comment[cs]=Protokol Yahoo -Comment[da]=Yahoo-protokollen -Comment[de]=Yahoo-Protokoll -Comment[el]=Πρωτόκολλο Yahoo -Comment[en_GB]=Yahoo Protocol -Comment[eo]=Yahoo Protokolo -Comment[es]=Protocolo Yahoo -Comment[et]=Yahoo protokoll -Comment[fi]=Yahoo-yhteyskäytäntö -Comment[fr]=Protocole Yahoo -Comment[ga]=Prótacal Yahoo -Comment[gl]=Protocolo de Yahoo -Comment[he]=פרוטוקול Yahoo -Comment[hu]=Yahoo protokoll -Comment[ia]=Protocollo Yahoo -Comment[it]=Protocollo di Yahoo -Comment[ja]=Yahoo プロトコル -Comment[kk]=Yahoo протоколы -Comment[km]=ពិធីការ​យ៉ាហ៊ូ​ -Comment[ko]=Yahoo 프로토콜 -Comment[lt]=Yahoo protokolas -Comment[mr]=याहू शिष्टाचार -Comment[nb]=Yahoo-protokoll -Comment[nds]=Yahoo-Protokoll -Comment[nl]=Yahoo-protocol -Comment[nn]=Yahoo!-protokoll -Comment[pl]=Protokół Yahoo -Comment[pt]=Protocolo Yahoo -Comment[pt_BR]=Protocolo do Yahoo -Comment[ro]=Protocol Yahoo -Comment[ru]=Протокол Yahoo -Comment[sk]=Protokol Yahoo -Comment[sl]=Protokol Yahoo -Comment[sr]=Протокол Јахуа -Comment[sr@ijekavian]=Протокол Јахуа -Comment[sr@ijekavianlatin]=Protokol Yahooa -Comment[sr@latin]=Protokol Yahooa -Comment[sv]=Yahoo-protokoll -Comment[th]=โพรโทคอล Yahoo -Comment[tr]=Yahoo Protokolü -Comment[uk]=Протокол Yahoo -Comment[wa]=Protocole Yahoo -Comment[x-test]=xxYahoo Protocolxx -Comment[zh_CN]=Yahoo 协议 -Comment[zh_TW]=Yahoo 協定 -Name=Yahoo -Name[ar]=ياهو -Name[bs]=Yahoo -Name[ca]=Yahoo -Name[ca@valencia]=Yahoo -Name[cs]=Yahoo -Name[da]=Yahoo -Name[de]=Yahoo -Name[el]=Yahoo -Name[en_GB]=Yahoo -Name[eo]=Yahoo -Name[es]=Yahoo -Name[et]=Yahoo -Name[fi]=Yahoo -Name[fr]=Yahoo -Name[ga]=Yahoo -Name[gl]=Yahoo -Name[he]=Yahoo -Name[hu]=Yahoo -Name[ia]=Yahoo -Name[it]=Yahoo -Name[ja]=Yahoo -Name[kk]=Yahoo -Name[km]=យ៉ាហ៊ូ​ -Name[ko]=Yahoo -Name[lt]=Yahoo -Name[mr]=याहू -Name[nb]=Yahoo -Name[nds]=Yahoo -Name[nl]=Yahoo -Name[nn]=Yahoo -Name[pl]=Yahoo -Name[pt]=Yahoo -Name[pt_BR]=Yahoo -Name[ro]=Yahoo -Name[ru]=Yahoo -Name[sk]=Yahoo -Name[sl]=Yahoo -Name[sr]=Јаху -Name[sr@ijekavian]=Јаху -Name[sr@ijekavianlatin]=Yahoo -Name[sr@latin]=Yahoo -Name[sv]=Yahoo -Name[th]=Yahoo -Name[tr]=Yahoo -Name[ug]=ياخۇ -Name[uk]=Yahoo -Name[wa]=Yahoo -Name[x-test]=xxYahooxx -Name[zh_CN]=Yahoo -Name[zh_TW]=Yahoo -