Update XDG information in support of bug report 892.

pull/21/head
Darrell Anderson 12 years ago
parent 66914d2878
commit 8297901467

@ -103,5 +103,5 @@ Comment[uz]=TDE учун RSS янгиликларни ўқувчи
Comment[zh_CN]=TDE RSS 新闻收集器 Comment[zh_CN]=TDE RSS 新闻收集器
Comment[zh_TW]=TDE 的 RSS 收集器 Comment[zh_TW]=TDE 的 RSS 收集器
Terminal=false Terminal=false
Categories=Qt;KDE;Network;News; Categories=Qt;TDE;Network;News;
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique

@ -237,7 +237,7 @@ Part::Part( TQWidget *parentWidget, const char * /*widgetName*/,
void Part::loadPlugins() void Part::loadPlugins()
{ {
// "[X-KDE-akregator-plugintype] == 'storage'" // "[X-TDE-akregator-plugintype] == 'storage'"
KTrader::OfferList offers = PluginManager::query(); KTrader::OfferList offers = PluginManager::query();
for( KTrader::OfferList::ConstIterator it = offers.begin(), end = offers.end(); it != end; ++it ) for( KTrader::OfferList::ConstIterator it = offers.begin(), end = offers.end(); it != end; ++it )

@ -8,6 +8,6 @@ Name[pt_BR]=Componente do aKregator
Name[sv]=aKregator-delprogram Name[sv]=aKregator-delprogram
Name[ta]=aKregatorபகுதி Name[ta]=aKregatorபகுதி
ServiceTypes=KParts/ReadOnlyPart ServiceTypes=KParts/ReadOnlyPart
X-KDE-Library=libakregatorpart X-TDE-Library=libakregatorpart
Type=Service Type=Service
Icon=akregator Icon=akregator

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=Akregator/Plugin X-TDE-ServiceType=Akregator/Plugin
Comment=Plugin for Akregator Comment=Plugin for Akregator
Comment[af]=Inprop module vir Akregator Comment[af]=Inprop module vir Akregator
Comment[be]=Утулка для Akregator Comment[be]=Утулка для Akregator
@ -54,31 +54,31 @@ Comment[zh_TW]=Akregator 外掛程式
# Type of plugin, e.g. "storage". # Type of plugin, e.g. "storage".
[PropertyDef::X-KDE-akregator-plugintype] [PropertyDef::X-TDE-akregator-plugintype]
Type=TQString Type=TQString
# Internal name for identification, not translated. # Internal name for identification, not translated.
[PropertyDef::X-KDE-akregator-name] [PropertyDef::X-TDE-akregator-name]
Type=TQString Type=TQString
# List of authors. # List of authors.
[PropertyDef::X-KDE-akregator-authors] [PropertyDef::X-TDE-akregator-authors]
Type=TQStringList Type=TQStringList
# List of author's email addresses. # List of author's email addresses.
[PropertyDef::X-KDE-akregator-email] [PropertyDef::X-TDE-akregator-email]
Type=TQStringList Type=TQStringList
# Priority of the plugin. When KTrader returns multiple offers, the one with the highest rank is chosen. # Priority of the plugin. When KTrader returns multiple offers, the one with the highest rank is chosen.
# Range: 0 (disabled) - 255 (highest) # Range: 0 (disabled) - 255 (highest)
[PropertyDef::X-KDE-akregator-rank] [PropertyDef::X-TDE-akregator-rank]
Type=int Type=int
# Version of the plugin. # Version of the plugin.
[PropertyDef::X-KDE-akregator-version] [PropertyDef::X-TDE-akregator-version]
Type=int Type=int
# Version of the framework this plugin is compatible with. # Version of the framework this plugin is compatible with.
# Must be bumped after making incompatible changes. # Must be bumped after making incompatible changes.
[PropertyDef::X-KDE-akregator-framework-version] [PropertyDef::X-TDE-akregator-framework-version]
Type=int Type=int

@ -43,7 +43,7 @@ Name[tr]=Metakit depolama arka ucu
Name[uk]=Програма зберігання Metakit Name[uk]=Програма зберігання Metakit
Name[zh_CN]=Metakit 存储后端 Name[zh_CN]=Metakit 存储后端
Name[zh_TW]=Metakit 儲存後端介面 Name[zh_TW]=Metakit 儲存後端介面
X-KDE-Library=libakregator_mk4storage_plugin X-TDE-Library=libakregator_mk4storage_plugin
Comment=Plugin for Akregator Comment=Plugin for Akregator
Comment[af]=Inprop module vir Akregator Comment[af]=Inprop module vir Akregator
Comment[be]=Утулка для Akregator Comment[be]=Утулка для Akregator
@ -96,11 +96,11 @@ Comment[zh_CN]=Akregator 插件
Comment[zh_TW]=Akregator 外掛程式 Comment[zh_TW]=Akregator 外掛程式
ServiceTypes=Akregator/Plugin ServiceTypes=Akregator/Plugin
X-KDE-akregator-plugintype=storage X-TDE-akregator-plugintype=storage
X-KDE-akregator-name=metakit X-TDE-akregator-name=metakit
X-KDE-akregator-authors=Frank Osterfeld X-TDE-akregator-authors=Frank Osterfeld
X-KDE-akregator-email=frank.osterfeld@kdemail.net X-TDE-akregator-email=frank.osterfeld@kdemail.net
X-KDE-akregator-rank=255 X-TDE-akregator-rank=255
X-KDE-akregator-version=1 X-TDE-akregator-version=1
X-KDE-akregator-framework-version=1 X-TDE-akregator-framework-version=1

@ -44,12 +44,12 @@ PluginManager::query( const TQString& constraint )
{ {
// Add versioning constraint // Add versioning constraint
TQString TQString
str = "[X-KDE-akregator-framework-version] == "; str = "[X-TDE-akregator-framework-version] == ";
str += TQString::number( FrameworkVersion ); str += TQString::number( FrameworkVersion );
str += " and "; str += " and ";
if (!constraint.stripWhiteSpace().isEmpty()) if (!constraint.stripWhiteSpace().isEmpty())
str += constraint + " and "; str += constraint + " and ";
str += "[X-KDE-akregator-rank] > 0"; str += "[X-TDE-akregator-rank] > 0";
kdDebug() << "Plugin trader constraint: " << str << endl; kdDebug() << "Plugin trader constraint: " << str << endl;
@ -71,7 +71,7 @@ PluginManager::createFromQuery( const TQString &constraint )
int rank = 0; int rank = 0;
uint current = 0; uint current = 0;
for ( uint i = 0; i < offers.count(); i++ ) { for ( uint i = 0; i < offers.count(); i++ ) {
if ( offers[i]->property( "X-KDE-akregator-rank" ).toInt() > rank ) if ( offers[i]->property( "X-TDE-akregator-rank" ).toInt() > rank )
current = i; current = i;
} }
@ -169,10 +169,10 @@ PluginManager::showAbout( const TQString &constraint )
str += body.arg( i18n( "Name" ), s->name() ); str += body.arg( i18n( "Name" ), s->name() );
str += body.arg( i18n( "Library" ), s->library() ); str += body.arg( i18n( "Library" ), s->library() );
str += body.arg( i18n( "Authors" ), s->property( "X-KDE-akregator-authors" ).toStringList().join( "\n" ) ); str += body.arg( i18n( "Authors" ), s->property( "X-TDE-akregator-authors" ).toStringList().join( "\n" ) );
str += body.arg( i18n( "Email" ), s->property( "X-KDE-akregator-email" ).toStringList().join( "\n" ) ); str += body.arg( i18n( "Email" ), s->property( "X-TDE-akregator-email" ).toStringList().join( "\n" ) );
str += body.arg( i18n( "Version" ), s->property( "X-KDE-akregator-version" ).toString() ); str += body.arg( i18n( "Version" ), s->property( "X-TDE-akregator-version" ).toString() );
str += body.arg( i18n( "Framework Version" ), s->property( "X-KDE-akregator-framework-version" ).toString() ); str += body.arg( i18n( "Framework Version" ), s->property( "X-TDE-akregator-framework-version" ).toString() );
str += "</table></body></html>"; str += "</table></body></html>";
@ -189,12 +189,12 @@ PluginManager::dump( const KService::Ptr service )
<< "name : " << service->name() << endl << "name : " << service->name() << endl
<< "library : " << service->library() << endl << "library : " << service->library() << endl
<< "desktopEntryPath : " << service->desktopEntryPath() << endl << "desktopEntryPath : " << service->desktopEntryPath() << endl
<< "X-KDE-akregator-plugintype : " << service->property( "X-KDE-akregator-plugintype" ).toString() << endl << "X-TDE-akregator-plugintype : " << service->property( "X-TDE-akregator-plugintype" ).toString() << endl
<< "X-KDE-akregator-name : " << service->property( "X-KDE-akregator-name" ).toString() << endl << "X-TDE-akregator-name : " << service->property( "X-TDE-akregator-name" ).toString() << endl
<< "X-KDE-akregator-authors : " << service->property( "X-KDE-akregator-authors" ).toStringList() << endl << "X-TDE-akregator-authors : " << service->property( "X-TDE-akregator-authors" ).toStringList() << endl
<< "X-KDE-akregator-rank : " << service->property( "X-KDE-akregator-rank" ).toString() << endl << "X-TDE-akregator-rank : " << service->property( "X-TDE-akregator-rank" ).toString() << endl
<< "X-KDE-akregator-version : " << service->property( "X-KDE-akregator-version" ).toString() << endl << "X-TDE-akregator-version : " << service->property( "X-TDE-akregator-version" ).toString() << endl
<< "X-KDE-akregator-framework-version: " << service->property( "X-KDE-akregator-framework-version" ).toString() << "X-TDE-akregator-framework-version: " << service->property( "X-TDE-akregator-framework-version" ).toString()
<< endl; << endl;
} }

@ -4,13 +4,13 @@ Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
DocPath=kleopatra/configuration-appearance.html DocPath=kleopatra/configuration-appearance.html
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kleopatra X-TDE-Library=kleopatra
X-KDE-FactoryName=kleopatra_config_appear X-TDE-FactoryName=kleopatra_config_appear
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kleopatra X-TDE-ParentApp=kleopatra
X-KDE-ParentComponents=kleopatra X-TDE-ParentComponents=kleopatra
X-KDE-CfgDlgHierarchy=Kleopatra X-TDE-CfgDlgHierarchy=Kleopatra
Name=Appearance Name=Appearance
Name[ar]=المظهر Name[ar]=المظهر

@ -4,13 +4,13 @@ Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
DocPath=kleopatra/configuration.html#configuration-directory-services DocPath=kleopatra/configuration.html#configuration-directory-services
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kleopatra X-TDE-Library=kleopatra
X-KDE-FactoryName=kleopatra_config_dirserv X-TDE-FactoryName=kleopatra_config_dirserv
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kleopatra X-TDE-ParentApp=kleopatra
X-KDE-ParentComponents=kleopatra X-TDE-ParentComponents=kleopatra
X-KDE-CfgDlgHierarchy=Kleopatra X-TDE-CfgDlgHierarchy=Kleopatra
Name=Directory Services Name=Directory Services
Name[ar]=خدمات الدليل Name[ar]=خدمات الدليل

@ -4,13 +4,13 @@ Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
DocPath=kleopatra/configuration-dn-order.html DocPath=kleopatra/configuration-dn-order.html
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kleopatra X-TDE-Library=kleopatra
X-KDE-FactoryName=kleopatra_config_dnorder X-TDE-FactoryName=kleopatra_config_dnorder
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kleopatra X-TDE-ParentApp=kleopatra
X-KDE-ParentComponents=kleopatra X-TDE-ParentComponents=kleopatra
X-KDE-CfgDlgHierarchy=Kleopatra X-TDE-CfgDlgHierarchy=Kleopatra
Name=DN-Attribute Order Name=DN-Attribute Order
Name[bg]=Подредба Name[bg]=Подредба

@ -10,4 +10,4 @@ Exec=kleopatra --import-certificate %u
NoDisplay=true NoDisplay=true
MimeType=application/pkcs7-mime;application/x-x509-ca-cert;application/x-pkcs12; MimeType=application/pkcs7-mime;application/x-x509-ca-cert;application/x-pkcs12;
X-KDE-StartupNotify=true X-TDE-StartupNotify=true

@ -3967,14 +3967,14 @@ Internet Calendaring and Scheduling Core Object Specification
(iCalendar)</ulink>. This is the standard format used by all tdepim (iCalendar)</ulink>. This is the standard format used by all tdepim
applications. &kalarm; uses certain non-standard properties in the applications. &kalarm; uses certain non-standard properties in the
Alarm component, in conformance with RFC2445: Alarm component, in conformance with RFC2445:
<literal>X-KDE-KALARM-NEXTRECUR</literal>, <literal>X-TDE-KALARM-NEXTRECUR</literal>,
<literal>X-KDE-KALARM-REPEAT</literal>, <literal>X-TDE-KALARM-REPEAT</literal>,
<literal>X-KDE-KALARM-TYPE</literal>, <literal>X-TDE-KALARM-TYPE</literal>,
<literal>X-KDE-KALARM-NEXTREPEAT</literal>, <literal>X-TDE-KALARM-NEXTREPEAT</literal>,
<literal>X-KDE-KALARM-FONTCOLOR</literal>, <literal>X-TDE-KALARM-FONTCOLOR</literal>,
<literal>X-KDE-KALARM-VOLUME</literal>, <literal>X-TDE-KALARM-VOLUME</literal>,
<literal>X-KDE-KALARM-SPEAK</literal>, <literal>X-TDE-KALARM-SPEAK</literal>,
<literal>X-KDE-KALARM-EMAILID</literal>.</para> <literal>X-TDE-KALARM-EMAILID</literal>.</para>
</answer> </answer>
</qandaentry> </qandaentry>

@ -6,5 +6,5 @@ Type=Application
Comment=Tool to update the old distribution lists to the new ones. Comment=Tool to update the old distribution lists to the new ones.
Terminal=false Terminal=false
NoDisplay=true NoDisplay=true
X-KDE-autostart-condition=kabcdistlistupdaterrc:Startup:EnableAutostart:true X-TDE-autostart-condition=kabcdistlistupdaterrc:Startup:EnableAutostart:true
OnlyShowIn=TDE; OnlyShowIn=TDE;

@ -76,7 +76,7 @@ void ContactEditorWidgetManager::reload()
mFactories.clear(); mFactories.clear();
kdDebug(5720) << "ContactEditorWidgetManager::reload()" << endl; kdDebug(5720) << "ContactEditorWidgetManager::reload()" << endl;
const KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/ContactEditorWidget", const KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/ContactEditorWidget",
TQString( "[X-KDE-KAddressBook-CEWPluginVersion] == %1" ).arg( KAB_CEW_PLUGIN_VERSION ) ); TQString( "[X-TDE-KAddressBook-CEWPluginVersion] == %1" ).arg( KAB_CEW_PLUGIN_VERSION ) );
KTrader::OfferList::ConstIterator it; KTrader::OfferList::ConstIterator it;
for ( it = plugins.begin(); it != plugins.end(); ++it ) { for ( it = plugins.begin(); it != plugins.end(); ++it ) {

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=DCOP/AddressBook X-TDE-ServiceType=DCOP/AddressBook
Comment=Address Book with a DCOP interface Comment=Address Book with a DCOP interface
Comment[af]=Adres boek met 'n DCOP koppelvlak Comment[af]=Adres boek met 'n DCOP koppelvlak
Comment[ar]=دفتر عناوين مع واجهة DCOP Comment[ar]=دفتر عناوين مع واجهة DCOP

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_cryptosettings X-TDE-Library=libkaddrbk_cryptosettings
Name=Crypto Preferences Name=Crypto Preferences
Name[af]=Kripto Voorkeure Name[af]=Kripto Voorkeure
Name[be]=Перавагі крыптаграфіі Name[be]=Перавагі крыптаграфіі
@ -52,4 +52,4 @@ Name[zh_CN]=加密首选项
Name[zh_TW]=加密設定 Name[zh_TW]=加密設定
Type=Service Type=Service
ServiceTypes=KAddressBook/ContactEditorWidget ServiceTypes=KAddressBook/ContactEditorWidget
X-KDE-KAddressBook-CEWPluginVersion=1 X-TDE-KAddressBook-CEWPluginVersion=1

@ -97,5 +97,5 @@ Comment[uk]=Редактор адрес миттєвого зв'язку
Comment[zh_CN]=即时通讯地址编辑器 Comment[zh_CN]=即时通讯地址编辑器
Comment[zh_TW]=即時通訊位址編輯器 Comment[zh_TW]=即時通訊位址編輯器
ServiceTypes=KAddressBook/ContactEditorWidget ServiceTypes=KAddressBook/ContactEditorWidget
X-KDE-Library=libkaddrbk_instantmessaging X-TDE-Library=libkaddrbk_instantmessaging
X-KDE-KAddressBook-CEWPluginVersion=1 X-TDE-KAddressBook-CEWPluginVersion=1

@ -242,7 +242,7 @@ void IMEditorWidget::storeContact( KABC::Addressee *addr )
++addressIt; ++addressIt;
} }
TQString addrBookField = (*protocolIt)->property( "X-KDE-InstantMessagingKABCField" ).toString(); TQString addrBookField = (*protocolIt)->property( "X-TDE-InstantMessagingKABCField" ).toString();
if ( !lst.isEmpty() ) if ( !lst.isEmpty() )
addr->insertCustom( addrBookField, TQString::fromLatin1( "All" ), lst.join( TQChar( 0xE000 ) ) ); addr->insertCustom( addrBookField, TQString::fromLatin1( "All" ), lst.join( TQChar( 0xE000 ) ) );
else else
@ -466,7 +466,7 @@ KPluginInfo * IMEditorWidget::protocolFromString( const TQString &fieldValue ) c
TQValueList<KPluginInfo *>::ConstIterator it; TQValueList<KPluginInfo *>::ConstIterator it;
KPluginInfo * protocol = 0; KPluginInfo * protocol = 0;
for ( it = mProtocols.begin(); it != mProtocols.end(); ++it ) { for ( it = mProtocols.begin(); it != mProtocols.end(); ++it ) {
if ( (*it)->property( "X-KDE-InstantMessagingKABCField" ).toString() == fieldValue ) { if ( (*it)->property( "X-TDE-InstantMessagingKABCField" ).toString() == fieldValue ) {
protocol = *it; protocol = *it;
break; break;
} }

@ -1,7 +1,7 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=KABC/IMProtocol X-TDE-ServiceType=KABC/IMProtocol
X-KDE-KAddressBook-CEWVersion=1 X-TDE-KAddressBook-CEWVersion=1
Name=KAddressbook Instant Messaging Protocol Name=KAddressbook Instant Messaging Protocol
Name[af]=KAddressbook kits boodskap protokol Name[af]=KAddressbook kits boodskap protokol
Name[bg]=Протокол за мигновени съобщения за адресника Name[bg]=Протокол за мигновени съобщения за адресника
@ -51,6 +51,6 @@ Name[tr]=KAddressbook Hızlı Mesajlaşma Protokolü
Name[uk]=Протокол миттєвого зв'язку KAddressbook Name[uk]=Протокол миттєвого зв'язку KAddressbook
Name[zh_CN]=KAddressbook 即时通讯协议 Name[zh_CN]=KAddressbook 即时通讯协议
Name[zh_TW]=KAddressbook 即時通訊協定 Name[zh_TW]=KAddressbook 即時通訊協定
[PropertyDef::X-KDE-InstantMessagingKABCField] [PropertyDef::X-TDE-InstantMessagingKABCField]
Type=TQString Type=TQString

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=aim_protocol Icon=aim_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/aim X-TDE-InstantMessagingKABCField=messaging/aim
Comment=AIM Protocol Comment=AIM Protocol
Comment[ar]=ميفاق AIM Comment[ar]=ميفاق AIM
Comment[be]=Пратакол AIM Comment[be]=Пратакол AIM

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=gadu_protocol Icon=gadu_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/gadu X-TDE-InstantMessagingKABCField=messaging/gadu
Comment=Gadu-Gadu Protocol Comment=Gadu-Gadu Protocol
Comment[af]=Gadu-Gadu protokol Comment[af]=Gadu-Gadu protokol
Comment[ar]=ميفاق Gadu-Gadu Comment[ar]=ميفاق Gadu-Gadu

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=groupwise_protocol Icon=groupwise_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/groupwise X-TDE-InstantMessagingKABCField=messaging/groupwise
Comment=Novell GroupWise Messenger Comment=Novell GroupWise Messenger
Comment[af]=Novell GroupWise boodskappe Comment[af]=Novell GroupWise boodskappe
Comment[bg]=Месинджър Novell GroupWise Comment[bg]=Месинджър Novell GroupWise

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=icq_protocol Icon=icq_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/icq X-TDE-InstantMessagingKABCField=messaging/icq
Comment=ICQ Protocol Comment=ICQ Protocol
Comment[af]=ICQ protokol Comment[af]=ICQ protokol
Comment[be]=Пратакол ICQ Comment[be]=Пратакол ICQ

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=irc_protocol Icon=irc_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/irc X-TDE-InstantMessagingKABCField=messaging/irc
Comment=Internet Relay Chat Comment=Internet Relay Chat
Comment[bg]=Протокол IRC Comment[bg]=Протокол IRC
Comment[fa]=گپ بازپخش اینترنت Comment[fa]=گپ بازپخش اینترنت

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=jabber_protocol Icon=jabber_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/xmpp X-TDE-InstantMessagingKABCField=messaging/xmpp
Comment=Jabber Protocol Comment=Jabber Protocol
Comment[af]=Jabber protokol Comment[af]=Jabber protokol
Comment[ar]=ميفاق Jabber Comment[ar]=ميفاق Jabber

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=meanwhile_protocol Icon=meanwhile_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/meanwhile X-TDE-InstantMessagingKABCField=messaging/meanwhile
Comment=Meanwhile Protocol Comment=Meanwhile Protocol
Comment[af]=Meanwhile protokol Comment[af]=Meanwhile protokol
Comment[ar]=ميفاق Meanwhile Comment[ar]=ميفاق Meanwhile

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=msn_protocol Icon=msn_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/msn X-TDE-InstantMessagingKABCField=messaging/msn
Comment=MSN Messenger Comment=MSN Messenger
Comment[af]=MSN boodskapper Comment[af]=MSN boodskapper
Comment[bg]=Протокол MSN Comment[bg]=Протокол MSN

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=skype_protocol Icon=skype_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/skype X-TDE-InstantMessagingKABCField=messaging/skype
Comment=Skype Internet Telephony Comment=Skype Internet Telephony
Comment[af]=Skype Internet Telefoon Comment[af]=Skype Internet Telefoon
Comment[bg]=Интернет телефония чрез Skype Comment[bg]=Интернет телефония чрез Skype

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=sms_protocol Icon=sms_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/sms X-TDE-InstantMessagingKABCField=messaging/sms
Comment=SMS Protocol Comment=SMS Protocol
Comment[af]=SMS protokol Comment[af]=SMS protokol
Comment[be]=Пратакол SMS Comment[be]=Пратакол SMS

@ -2,7 +2,7 @@
Type=Service Type=Service
Icon=yahoo_protocol Icon=yahoo_protocol
ServiceTypes=KABC/IMProtocol,KPluginInfo ServiceTypes=KABC/IMProtocol,KPluginInfo
X-KDE-InstantMessagingKABCField=messaging/yahoo X-TDE-InstantMessagingKABCField=messaging/yahoo
Comment=Yahoo Protocol Comment=Yahoo Protocol
Comment[af]=Yahoo protokol Comment[af]=Yahoo protokol
Comment[ar]=ميفاق Yahoo Comment[ar]=ميفاق Yahoo

@ -217,7 +217,7 @@ void ExtensionManager::createExtensionWidgets()
// load the other extensions // load the other extensions
const KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/Extension", const KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/Extension",
TQString( "[X-KDE-KAddressBook-ExtensionPluginVersion] == %1" ).arg( KAB_EXTENSIONWIDGET_PLUGIN_VERSION ) ); TQString( "[X-TDE-KAddressBook-ExtensionPluginVersion] == %1" ).arg( KAB_EXTENSIONWIDGET_PLUGIN_VERSION ) );
KTrader::OfferList::ConstIterator it; KTrader::OfferList::ConstIterator it;
for ( it = plugins.begin(); it != plugins.end(); ++it ) { for ( it = plugins.begin(); it != plugins.end(); ++it ) {

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_distributionlist X-TDE-Library=libkaddrbk_distributionlist
Name=KAB Distribution List Plugin Name=KAB Distribution List Plugin
Name[af]=KAB verspreiding lys inprop module Name[af]=KAB verspreiding lys inprop module
Name[ar]=ملحق قائمة توزيع KAB Name[ar]=ملحق قائمة توزيع KAB
@ -109,4 +109,4 @@ Comment[zh_CN]=管理分发列表的插件
Comment[zh_TW]=管理分配清單外掛程式 Comment[zh_TW]=管理分配清單外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/Extension ServiceTypes=KAddressBook/Extension
X-KDE-KAddressBook-ExtensionPluginVersion=1 X-TDE-KAddressBook-ExtensionPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_distributionlistng X-TDE-Library=libkaddrbk_distributionlistng
Name=KAB Distribution List Next Generation Plugin Name=KAB Distribution List Next Generation Plugin
Name[bg]=Приставка от следващо поколение за списъка за разпращане на KAB Name[bg]=Приставка от следващо поколение за списъка за разпращане на KAB
Name[ca]=Endollable de la propera generació de la llista de distribució KAB Name[ca]=Endollable de la propera generació de la llista de distribució KAB
@ -75,4 +75,4 @@ Comment[zh_CN]=管理分发列表的插件
Comment[zh_TW]=管理分配清單外掛程式 Comment[zh_TW]=管理分配清單外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/Extension ServiceTypes=KAddressBook/Extension
X-KDE-KAddressBook-ExtensionPluginVersion=1 X-TDE-KAddressBook-ExtensionPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_resourceselection X-TDE-Library=libkaddrbk_resourceselection
Name=Address Book Management Plugin Name=Address Book Management Plugin
Name[af]=Adres boek bestuur inprop module Name[af]=Adres boek bestuur inprop module
Name[be]=Дапаўненне "Кіраванне адраснамі кнігамі" Name[be]=Дапаўненне "Кіраванне адраснамі кнігамі"
@ -105,4 +105,4 @@ Comment[zh_CN]=管理地址簿的插件
Comment[zh_TW]=管理通訊錄外掛程式 Comment[zh_TW]=管理通訊錄外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/Extension ServiceTypes=KAddressBook/Extension
X-KDE-KAddressBook-ExtensionPluginVersion=1 X-TDE-KAddressBook-ExtensionPluginVersion=1

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=KAddressBook/ContactEditorWidget X-TDE-ServiceType=KAddressBook/ContactEditorWidget
Comment=KAddressBook Contact Editor Widget Plugin Comment=KAddressBook Contact Editor Widget Plugin
Comment[af]=KAddressBook kontak redigeerder inprop module Comment[af]=KAddressBook kontak redigeerder inprop module
Comment[bg]=Приставка за редактиране на контактите от адресника Comment[bg]=Приставка за редактиране на контактите от адресника
@ -50,5 +50,5 @@ Comment[uk]=Втулок редагування контактів адресн
Comment[zh_CN]=KAddressBook 联系人编辑部件插件 Comment[zh_CN]=KAddressBook 联系人编辑部件插件
Comment[zh_TW]=KAddressBook 聯絡人編輯器外掛程式 Comment[zh_TW]=KAddressBook 聯絡人編輯器外掛程式
[PropertyDef::X-KDE-KAddressBook-CEWPluginVersion] [PropertyDef::X-TDE-KAddressBook-CEWPluginVersion]
Type=int Type=int

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=KAddressBook/Extension X-TDE-ServiceType=KAddressBook/Extension
Comment=KAddressBook Extension Plugin Comment=KAddressBook Extension Plugin
Comment[af]=KAddressBook uitbrei inprop module Comment[af]=KAddressBook uitbrei inprop module
Comment[be]=Дапаўненне K Адраснай кнігі "Пашырэнне" Comment[be]=Дапаўненне K Адраснай кнігі "Пашырэнне"
@ -54,5 +54,5 @@ Comment[uk]=Втулок розширення адресної книги KAddre
Comment[zh_CN]=KAddressBook 扩展插件 Comment[zh_CN]=KAddressBook 扩展插件
Comment[zh_TW]=KAddressBook 延伸外掛程式 Comment[zh_TW]=KAddressBook 延伸外掛程式
[PropertyDef::X-KDE-KAddressBook-ExtensionPluginVersion] [PropertyDef::X-TDE-KAddressBook-ExtensionPluginVersion]
Type=int Type=int

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=KAddressBook/XXPort X-TDE-ServiceType=KAddressBook/XXPort
Comment=KAddressBook Import/Export Plugin Comment=KAddressBook Import/Export Plugin
Comment[af]=KAddressBook Invoer/Uitvoer inprop module Comment[af]=KAddressBook Invoer/Uitvoer inprop module
Comment[be]=Дапаўненне K Адраснай кнігі "Імпарт/Экспарт" Comment[be]=Дапаўненне K Адраснай кнігі "Імпарт/Экспарт"
@ -55,6 +55,6 @@ Comment[uz]=Манзиллар дафтари учун импорт/экспор
Comment[zh_CN]=KAddressBook 导入/导出插件 Comment[zh_CN]=KAddressBook 导入/导出插件
Comment[zh_TW]=KAddressBook 匯入/匯出外掛程式 Comment[zh_TW]=KAddressBook 匯入/匯出外掛程式
[PropertyDef::X-KDE-KAddressBook-XXPortPluginVersion] [PropertyDef::X-TDE-KAddressBook-XXPortPluginVersion]
Type=int Type=int

@ -72,10 +72,10 @@ Icon=kaddressbook
Type=Application Type=Application
DocPath=kaddressbook/index.html DocPath=kaddressbook/index.html
Terminal=false Terminal=false
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
X-DCOP-ServiceName=kaddressbook X-DCOP-ServiceName=kaddressbook
MimeType=text/x-vcard;text/x-ldif; MimeType=text/x-vcard;text/x-ldif;
ServiceTypes=KParts/ReadOnlyPart,Browser/View,DCOP/AddressBook ServiceTypes=KParts/ReadOnlyPart,Browser/View,DCOP/AddressBook
X-KDE-Library=libkaddressbookpart X-TDE-Library=libkaddressbookpart
Categories=Qt;KDE;Office;ContactManagement; Categories=Qt;TDE;Office;ContactManagement;

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=KAddressBook/View X-TDE-ServiceType=KAddressBook/View
Comment=KAddressBook View Plugin Comment=KAddressBook View Plugin
Comment[af]=KAddressBook besigtig inprop module Comment[af]=KAddressBook besigtig inprop module
Comment[be]=Дапаўненне K Адраснай кнігі "Выгляд" Comment[be]=Дапаўненне K Адраснай кнігі "Выгляд"
@ -55,5 +55,5 @@ Comment[uk]=Втулок перегляду адресної книги KAddress
Comment[zh_CN]=KAddressBook 查看插件 Comment[zh_CN]=KAddressBook 查看插件
Comment[zh_TW]=KAddressBook 檢視外掛程式 Comment[zh_TW]=KAddressBook 檢視外掛程式
[PropertyDef::X-KDE-KAddressBook-ViewPluginVersion] [PropertyDef::X-TDE-KAddressBook-ViewPluginVersion]
Type=int Type=int

@ -4,13 +4,13 @@ Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
DocPath=kaddressbook/preferences.html DocPath=kaddressbook/preferences.html
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kabconfig X-TDE-Library=kabconfig
X-KDE-FactoryName=kabconfig X-TDE-FactoryName=kabconfig
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kaddressbook X-TDE-ParentApp=kaddressbook
X-KDE-ParentComponents=kaddressbook,kontact_kaddressbookplugin X-TDE-ParentComponents=kaddressbook,kontact_kaddressbookplugin
X-KDE-CfgDlgHierarchy=KAB X-TDE-CfgDlgHierarchy=KAB
Name=General Name=General
Name[af]=Algemeen Name[af]=Algemeen

@ -4,12 +4,12 @@ Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
DocPath=kaddressbook/preferences.html DocPath=kaddressbook/preferences.html
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kabcustomfields X-TDE-Library=kabcustomfields
X-KDE-FactoryName=kabcustomfields X-TDE-FactoryName=kabcustomfields
X-KDE-ParentApp=kaddressbook X-TDE-ParentApp=kaddressbook
X-KDE-ParentComponents=kaddressbook,kontact_kaddressbookplugin X-TDE-ParentComponents=kaddressbook,kontact_kaddressbookplugin
X-KDE-CfgDlgHierarchy=KAB X-TDE-CfgDlgHierarchy=KAB
Name=Custom Pages Name=Custom Pages
Name[af]=Pasmaak Blaaie Name[af]=Pasmaak Blaaie

@ -4,12 +4,12 @@ Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
DocPath=kaddressbook/preferences.html#preferences-ldap-lookup DocPath=kaddressbook/preferences.html#preferences-ldap-lookup
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kabldapconfig X-TDE-Library=kabldapconfig
X-KDE-FactoryName=kabldapconfig X-TDE-FactoryName=kabldapconfig
X-KDE-ParentApp=kaddressbook X-TDE-ParentApp=kaddressbook
X-KDE-ParentComponents=kaddressbook,kontact_kaddressbookplugin X-TDE-ParentComponents=kaddressbook,kontact_kaddressbookplugin
X-KDE-CfgDlgHierarchy=KAB X-TDE-CfgDlgHierarchy=KAB
Name=LDAP Lookup Name=LDAP Lookup
Name[af]=LDAP Opkyk Name[af]=LDAP Opkyk

@ -52,5 +52,5 @@ Name[zh_CN]=电子名片文件
Name[zh_TW]=電子名片檔 Name[zh_TW]=電子名片檔
ServiceTypes=ThumbCreator ServiceTypes=ThumbCreator
MimeTypes=text/x-vcard,text/x-ldif MimeTypes=text/x-vcard,text/x-ldif
X-KDE-Library=ldifvcardthumbnail X-TDE-Library=ldifvcardthumbnail
CacheThumbnail=false CacheThumbnail=false

@ -387,7 +387,7 @@ void ViewManager::scrollDown()
void ViewManager::createViewFactories() void ViewManager::createViewFactories()
{ {
const KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/View", const KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/View",
TQString( "[X-KDE-KAddressBook-ViewPluginVersion] == %1" ).arg( KAB_VIEW_PLUGIN_VERSION ) ); TQString( "[X-TDE-KAddressBook-ViewPluginVersion] == %1" ).arg( KAB_VIEW_PLUGIN_VERSION ) );
KTrader::OfferList::ConstIterator it; KTrader::OfferList::ConstIterator it;
for ( it = plugins.begin(); it != plugins.end(); ++it ) { for ( it = plugins.begin(); it != plugins.end(); ++it ) {
if ( !(*it)->hasServiceType( "KAddressBook/View" ) ) if ( !(*it)->hasServiceType( "KAddressBook/View" ) )

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_cardview X-TDE-Library=libkaddrbk_cardview
Name=Card View Name=Card View
Name[af]=Kaard Aansig Name[af]=Kaard Aansig
Name[ar]=عرض البظاقة Name[ar]=عرض البظاقة
@ -58,4 +58,4 @@ Name[zh_CN]=卡片视图
Name[zh_TW]=卡片檢視 Name[zh_TW]=卡片檢視
Type=Service Type=Service
ServiceTypes=KAddressBook/View ServiceTypes=KAddressBook/View
X-KDE-KAddressBook-ViewPluginVersion=1 X-TDE-KAddressBook-ViewPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_iconview X-TDE-Library=libkaddrbk_iconview
Name=Icon View Name=Icon View
Name[af]=Ikoon Aansig Name[af]=Ikoon Aansig
Name[ar]=عرض الأيقونات Name[ar]=عرض الأيقونات
@ -71,4 +71,4 @@ Name[zh_TW]=圖示檢視
Name[zu]=Umboniso we Icon Name[zu]=Umboniso we Icon
Type=Service Type=Service
ServiceTypes=KAddressBook/View ServiceTypes=KAddressBook/View
X-KDE-KAddressBook-ViewPluginVersion=1 X-TDE-KAddressBook-ViewPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_tableview X-TDE-Library=libkaddrbk_tableview
Name=Table View Name=Table View
Name[af]=Tabel Aansig Name[af]=Tabel Aansig
Name[ar]=عرض الجدول Name[ar]=عرض الجدول
@ -59,4 +59,4 @@ Name[zh_CN]=表格视图
Name[zh_TW]=表格檢視 Name[zh_TW]=表格檢視
Type=Service Type=Service
ServiceTypes=KAddressBook/View ServiceTypes=KAddressBook/View
X-KDE-KAddressBook-ViewPluginVersion=1 X-TDE-KAddressBook-ViewPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_bookmark_xxport X-TDE-Library=libkaddrbk_bookmark_xxport
Name=KAB Bookmark XXPort Plugin Name=KAB Bookmark XXPort Plugin
Name[af]=KAB boekmerk XXPort inprop module Name[af]=KAB boekmerk XXPort inprop module
Name[be]=Дапаўненне KAB "Экспарт у закладкі" Name[be]=Дапаўненне KAB "Экспарт у закладкі"
@ -98,4 +98,4 @@ Comment[zh_CN]=将联系人的网址导出为书签的插件
Comment[zh_TW]=匯出聯絡人的網頁成書籤的外掛程式 Comment[zh_TW]=匯出聯絡人的網頁成書籤的外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_csv_xxport X-TDE-Library=libkaddrbk_csv_xxport
Name=KAB CSV XXPort Plugin Name=KAB CSV XXPort Plugin
Name[af]=KAB CSV XXPort inprop module Name[af]=KAB CSV XXPort inprop module
Name[be]=Дапаўненне KAB "Імпарт/Экспарт CSV" Name[be]=Дапаўненне KAB "Імпарт/Экспарт CSV"
@ -97,4 +97,4 @@ Comment[zh_CN]=导入和导出 CSV 格式联系人的插件
Comment[zh_TW]=以 CSV 格式匯入與匯出聯絡人外掛程式 Comment[zh_TW]=以 CSV 格式匯入與匯出聯絡人外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_eudora_xxport X-TDE-Library=libkaddrbk_eudora_xxport
Name=KAB Eudora XXPort Plugin Name=KAB Eudora XXPort Plugin
Name[af]=KAB Eudora XXPort inprop module Name[af]=KAB Eudora XXPort inprop module
Name[be]=Дапаўненне KAB "Імпарт/Экспарт Eudora" Name[be]=Дапаўненне KAB "Імпарт/Экспарт Eudora"
@ -99,4 +99,4 @@ Comment[zh_CN]=导入和导出 Eudora 联系人的插件
Comment[zh_TW]=匯入與匯出 Eudora 聯絡人的外掛程式 Comment[zh_TW]=匯入與匯出 Eudora 聯絡人的外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_gnokii_xxport X-TDE-Library=libkaddrbk_gnokii_xxport
Name=KAB Mobile Phone XXPort Plugin Name=KAB Mobile Phone XXPort Plugin
Name[af]=KAB selfoon XXPort inprop module Name[af]=KAB selfoon XXPort inprop module
Name[bg]=Приставка за XXPort на мобилен телефон на KAB Name[bg]=Приставка за XXPort на мобилен телефон на KAB
@ -98,4 +98,4 @@ Comment[zh_CN]=导入和导出地址簿项的移动电话插件
Comment[zh_TW]=匯入與匯出通訊錄的手機外掛程式 Comment[zh_TW]=匯入與匯出通訊錄的手機外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_kde2_xxport X-TDE-Library=libkaddrbk_kde2_xxport
Name=KAB KDE2 XXPort Plugin Name=KAB KDE2 XXPort Plugin
Name[af]=KAB KDE2 XXPort inprop module Name[af]=KAB KDE2 XXPort inprop module
Name[be]=Дапаўненне KAB "Імпарт/Экспарт KDE2" Name[be]=Дапаўненне KAB "Імпарт/Экспарт KDE2"
@ -100,4 +100,4 @@ Comment[zh_CN]=导入旧的 KDE 2 地址簿的插件
Comment[zh_TW]=匯入舊的 KDE2 通訊錄的外掛程式 Comment[zh_TW]=匯入舊的 KDE2 通訊錄的外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_ldif_xxport X-TDE-Library=libkaddrbk_ldif_xxport
Name=KAB LDIF XXPort Plugin Name=KAB LDIF XXPort Plugin
Name[af]=KAB LDIF XXPort inprop module Name[af]=KAB LDIF XXPort inprop module
Name[be]=Дапаўненне KAB "Імпарт LDIF" Name[be]=Дапаўненне KAB "Імпарт LDIF"
@ -100,4 +100,4 @@ Comment[zh_CN]=导入和导出 Netscape 和 Mozilla LDIF 格式联系人的插
Comment[zh_TW]=匯入與匯出 Netscape 與 Mozilla LDIF 格式聯絡人的外掛程式 Comment[zh_TW]=匯入與匯出 Netscape 與 Mozilla LDIF 格式聯絡人的外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_opera_xxport X-TDE-Library=libkaddrbk_opera_xxport
Name=KAB Opera XXPort Plugin Name=KAB Opera XXPort Plugin
Name[af]=KAB Opera XXPort inprop module Name[af]=KAB Opera XXPort inprop module
Name[be]=Дапаўненне KAB "Імпарт Opera" Name[be]=Дапаўненне KAB "Імпарт Opera"
@ -98,4 +98,4 @@ Comment[zh_CN]=导入 Opera 联系人的插件
Comment[zh_TW]=匯入 Opera 聯絡人的外掛程式 Comment[zh_TW]=匯入 Opera 聯絡人的外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_pab_xxport X-TDE-Library=libkaddrbk_pab_xxport
Name=KAB MS Exchange Personal Addressbook XXPort Plugin Name=KAB MS Exchange Personal Addressbook XXPort Plugin
Name[af]=KAB MS Exchange adresboek XXPort inprop module Name[af]=KAB MS Exchange adresboek XXPort inprop module
Name[be]=Дапаўненне KAB "Імпарт пэрсанальнай адраснай кнігі MS Exchange" Name[be]=Дапаўненне KAB "Імпарт пэрсанальнай адраснай кнігі MS Exchange"
@ -98,4 +98,4 @@ Comment[zh_CN]=导入 MS Exchange 个人地址簿的插件
Comment[zh_TW]=匯入 MS Exchange Personal 通訊錄的外掛程式 Comment[zh_TW]=匯入 MS Exchange Personal 通訊錄的外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkaddrbk_vcard_xxport X-TDE-Library=libkaddrbk_vcard_xxport
Name=KAB vCard XXPort Plugin Name=KAB vCard XXPort Plugin
Name[af]=KAB vCard XXPort inprop module Name[af]=KAB vCard XXPort inprop module
Name[be]=Дапаўненне KAB "Імпарт/Экспарт vCard" Name[be]=Дапаўненне KAB "Імпарт/Экспарт vCard"
@ -100,4 +100,4 @@ Comment[zh_CN]=导入和导出 vCard 格式联系人的插件
Comment[zh_TW]=匯入與匯出 vCard 格式聯絡人的外掛程式 Comment[zh_TW]=匯入與匯出 vCard 格式聯絡人的外掛程式
Type=Service Type=Service
ServiceTypes=KAddressBook/XXPort ServiceTypes=KAddressBook/XXPort
X-KDE-KAddressBook-XXPortPluginVersion=1 X-TDE-KAddressBook-XXPortPluginVersion=1

@ -121,7 +121,7 @@ void XXPortManager::loadPlugins()
mXXPortObjects.clear(); mXXPortObjects.clear();
const KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/XXPort", const KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/XXPort",
TQString( "[X-KDE-KAddressBook-XXPortPluginVersion] == %1" ).arg( KAB_XXPORT_PLUGIN_VERSION ) ); TQString( "[X-TDE-KAddressBook-XXPortPluginVersion] == %1" ).arg( KAB_XXPORT_PLUGIN_VERSION ) );
KTrader::OfferList::ConstIterator it; KTrader::OfferList::ConstIterator it;
for ( it = plugins.begin(); it != plugins.end(); ++it ) { for ( it = plugins.begin(); it != plugins.end(); ++it ) {
if ( !(*it)->hasServiceType( "KAddressBook/XXPort" ) ) if ( !(*it)->hasServiceType( "KAddressBook/XXPort" ) )

@ -48,12 +48,12 @@ TQString KAEvent::calVersionString() { return TQString::fromLatin1("1.5.0"); }
int KAEvent::calVersion() { return KAlarm::Version(1,5,0); } int KAEvent::calVersion() { return KAlarm::Version(1,5,0); }
// Custom calendar properties. // Custom calendar properties.
// Note that all custom property names are prefixed with X-KDE-KALARM- in the calendar file. // Note that all custom property names are prefixed with X-TDE-KALARM- in the calendar file.
// - Event properties // - Event properties
static const TQCString NEXT_RECUR_PROPERTY("NEXTRECUR"); // X-KDE-KALARM-NEXTRECUR property static const TQCString NEXT_RECUR_PROPERTY("NEXTRECUR"); // X-TDE-KALARM-NEXTRECUR property
static const TQCString REPEAT_PROPERTY("REPEAT"); // X-KDE-KALARM-REPEAT property static const TQCString REPEAT_PROPERTY("REPEAT"); // X-TDE-KALARM-REPEAT property
// - General alarm properties // - General alarm properties
static const TQCString TYPE_PROPERTY("TYPE"); // X-KDE-KALARM-TYPE property static const TQCString TYPE_PROPERTY("TYPE"); // X-TDE-KALARM-TYPE property
static const TQString FILE_TYPE = TQString::fromLatin1("FILE"); static const TQString FILE_TYPE = TQString::fromLatin1("FILE");
static const TQString AT_LOGIN_TYPE = TQString::fromLatin1("LOGIN"); static const TQString AT_LOGIN_TYPE = TQString::fromLatin1("LOGIN");
static const TQString REMINDER_TYPE = TQString::fromLatin1("REMINDER"); static const TQString REMINDER_TYPE = TQString::fromLatin1("REMINDER");
@ -64,14 +64,14 @@ static const TQString DATE_DEFERRAL_TYPE = TQString::fromLatin1("DATE_DE
static const TQString DISPLAYING_TYPE = TQString::fromLatin1("DISPLAYING"); // used only in displaying calendar static const TQString DISPLAYING_TYPE = TQString::fromLatin1("DISPLAYING"); // used only in displaying calendar
static const TQString PRE_ACTION_TYPE = TQString::fromLatin1("PRE"); static const TQString PRE_ACTION_TYPE = TQString::fromLatin1("PRE");
static const TQString POST_ACTION_TYPE = TQString::fromLatin1("POST"); static const TQString POST_ACTION_TYPE = TQString::fromLatin1("POST");
static const TQCString NEXT_REPEAT_PROPERTY("NEXTREPEAT"); // X-KDE-KALARM-NEXTREPEAT property static const TQCString NEXT_REPEAT_PROPERTY("NEXTREPEAT"); // X-TDE-KALARM-NEXTREPEAT property
// - Display alarm properties // - Display alarm properties
static const TQCString FONT_COLOUR_PROPERTY("FONTCOLOR"); // X-KDE-KALARM-FONTCOLOR property static const TQCString FONT_COLOUR_PROPERTY("FONTCOLOR"); // X-TDE-KALARM-FONTCOLOR property
// - Email alarm properties // - Email alarm properties
static const TQCString EMAIL_ID_PROPERTY("EMAILID"); // X-KDE-KALARM-EMAILID property static const TQCString EMAIL_ID_PROPERTY("EMAILID"); // X-TDE-KALARM-EMAILID property
// - Audio alarm properties // - Audio alarm properties
static const TQCString VOLUME_PROPERTY("VOLUME"); // X-KDE-KALARM-VOLUME property static const TQCString VOLUME_PROPERTY("VOLUME"); // X-TDE-KALARM-VOLUME property
static const TQCString SPEAK_PROPERTY("SPEAK"); // X-KDE-KALARM-SPEAK property static const TQCString SPEAK_PROPERTY("SPEAK"); // X-TDE-KALARM-SPEAK property
// Event categories // Event categories
static const TQString DATE_ONLY_CATEGORY = TQString::fromLatin1("DATE"); static const TQString DATE_ONLY_CATEGORY = TQString::fromLatin1("DATE");
@ -1065,7 +1065,7 @@ bool KAEvent::updateKCalEvent(Event& ev, bool checkUid, bool original, bool canc
if (!mMainExpired || original) if (!mMainExpired || original)
{ {
/* The alarm offset must always be zero for the main alarm. To determine /* The alarm offset must always be zero for the main alarm. To determine
* which recurrence is due, the property X-KDE-KALARM_NEXTRECUR is used. * which recurrence is due, the property X-TDE-KALARM_NEXTRECUR is used.
* If the alarm offset was non-zero, exception dates and rules would not * If the alarm offset was non-zero, exception dates and rules would not
* work since they apply to the event time, not the alarm time. * work since they apply to the event time, not the alarm time.
*/ */
@ -1216,7 +1216,7 @@ bool KAEvent::updateKCalEvent(Event& ev, bool checkUid, bool original, bool canc
/****************************************************************************** /******************************************************************************
* Create a new alarm for a libkcal event, and initialise it according to the * Create a new alarm for a libkcal event, and initialise it according to the
* alarm action. If 'types' is non-null, it is appended to the X-KDE-KALARM-TYPE * alarm action. If 'types' is non-null, it is appended to the X-TDE-KALARM-TYPE
* property value list. * property value list.
*/ */
Alarm* KAEvent::initKCalAlarm(Event& event, const DateTime& dt, const TQStringList& types, KAAlarm::Type type) const Alarm* KAEvent::initKCalAlarm(Event& event, const DateTime& dt, const TQStringList& types, KAAlarm::Type type) const
@ -2650,7 +2650,7 @@ void KAEvent::convertKCalEvents(KCal::Calendar& calendar, int version, bool adju
static const TQString EXEC_IN_XTERM_CAT = TQString::fromLatin1("XTERM"); static const TQString EXEC_IN_XTERM_CAT = TQString::fromLatin1("XTERM");
// KAlarm pre-1.4.22 properties // KAlarm pre-1.4.22 properties
static const TQCString KMAIL_ID_PROPERTY("KMAILID"); // X-KDE-KALARM-KMAILID property static const TQCString KMAIL_ID_PROPERTY("KMAILID"); // X-TDE-KALARM-KMAILID property
if (version >= calVersion()) if (version >= calVersion())
return; return;
@ -2691,7 +2691,7 @@ void KAEvent::convertKCalEvents(KCal::Calendar& calendar, int version, bool adju
{ {
/* /*
* It's a KAlarm pre-0.9 calendar file. * It's a KAlarm pre-0.9 calendar file.
* All alarms were of type DISPLAY. Instead of the X-KDE-KALARM-TYPE * All alarms were of type DISPLAY. Instead of the X-TDE-KALARM-TYPE
* alarm property, characteristics were stored as a prefix to the * alarm property, characteristics were stored as a prefix to the
* alarm DESCRIPTION property, as follows: * alarm DESCRIPTION property, as follows:
* SETQNO;[FLAGS];TYPE:TEXT * SETQNO;[FLAGS];TYPE:TEXT
@ -2815,7 +2815,7 @@ void KAEvent::convertKCalEvents(KCal::Calendar& calendar, int version, bool adju
* Set the DTEND time to the DTSTART time. * Set the DTEND time to the DTSTART time.
* Convert all alarm times to DTSTART offsets. * Convert all alarm times to DTSTART offsets.
* For display alarms, convert the first unlabelled category to an * For display alarms, convert the first unlabelled category to an
* X-KDE-KALARM-FONTCOLOUR property. * X-TDE-KALARM-FONTCOLOUR property.
* Convert BEEP category into an audio alarm with no audio file. * Convert BEEP category into an audio alarm with no audio file.
*/ */
if (uidStatus(event->uid()) == EXPIRED) if (uidStatus(event->uid()) == EXPIRED)
@ -2948,7 +2948,7 @@ void KAEvent::convertKCalEvents(KCal::Calendar& calendar, int version, bool adju
/* /*
* It's a KAlarm pre-1.4.14 calendar file. * It's a KAlarm pre-1.4.14 calendar file.
* For recurring events, convert the main alarm offset to an absolute * For recurring events, convert the main alarm offset to an absolute
* time in the X-KDE-KALARM-NEXTRECUR property, and convert main * time in the X-TDE-KALARM-NEXTRECUR property, and convert main
* alarm offsets to zero and deferral alarm offsets to be relative to * alarm offsets to zero and deferral alarm offsets to be relative to
* the next recurrence. * the next recurrence.
*/ */

@ -69,6 +69,6 @@ GenericName[zh_CN]=个人日程提醒
GenericName[zh_TW]=個人鬧鐘排程程式 GenericName[zh_TW]=個人鬧鐘排程程式
Terminal=false Terminal=false
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
Categories=Qt;KDE;Utility;X-KDE-Utilities-PIM;Office;Calendar; Categories=Qt;TDE;Utility;X-TDE-Utilities-PIM;Office;Calendar;
OnlyShowIn=TDE; OnlyShowIn=TDE;

@ -68,5 +68,5 @@ Comment[uk]=Персональний планувальник нагадуван
Comment[zh_CN]=个人日程提醒程序:以系统托盘图标启动 Comment[zh_CN]=个人日程提醒程序:以系统托盘图标启动
Comment[zh_TW]=警示/提醒訊息排程器:以系統列圖示的方式啟動 Comment[zh_TW]=警示/提醒訊息排程器:以系統列圖示的方式啟動
Terminal=false Terminal=false
X-KDE-autostart-phase=2 X-TDE-autostart-phase=2
X-KDE-autostart-condition=kalarmrc:General:AutostartTrayDummy:false X-TDE-autostart-condition=kalarmrc:General:AutostartTrayDummy:false

@ -95,6 +95,6 @@ Comment[zh_CN]=登录时自动启动 KAlarm 定时守护进程
Comment[zh_TW]=登入時自動啟動 KAlarm 鬧鐘守護程式 Comment[zh_TW]=登入時自動啟動 KAlarm 鬧鐘守護程式
Terminal=false Terminal=false
NoDisplay=true NoDisplay=true
X-KDE-autostart-phase=2 X-TDE-autostart-phase=2
X-KDE-autostart-condition=kalarmdrc:General:Autostart:false X-TDE-autostart-condition=kalarmdrc:General:Autostart:false
X-KDE-StartupNotify=true X-TDE-StartupNotify=true

@ -115,4 +115,4 @@ GenericName[zh_TW]=行動電話工具
GenericName[zu]=Ithuluzi Lamakhala ekhukhwini GenericName[zu]=Ithuluzi Lamakhala ekhukhwini
Terminal=false Terminal=false
X-DCOP-ServiceType=Multi X-DCOP-ServiceType=Multi
Categories=Qt;KDE;Utility;Telephony; Categories=Qt;TDE;Utility;Telephony;

@ -12,5 +12,5 @@ Name[sv]=Karm-delprogram
Name[tr]=karmpart Name[tr]=karmpart
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-tqmoc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-tqmoc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
ServiceTypes=KParts/ReadOnlyPart,KParts/ReadWritePart ServiceTypes=KParts/ReadOnlyPart,KParts/ReadWritePart
X-KDE-Library=libkarmpart X-TDE-Library=libkarmpart
Type=Service Type=Service

@ -1165,7 +1165,7 @@ TQValueList<HistoryEvent> KarmStorage::getHistory(const TQDate& from,
for (event = events.begin(); event != events.end(); ++event) for (event = events.begin(); event != events.end(); ++event)
{ {
// KArm events have the custom property X-KDE-Karm-duration // KArm events have the custom property X-TDE-Karm-duration
if (! processed.contains( (*event)->uid())) if (! processed.contains( (*event)->uid()))
{ {
// If an event spans multiple days, CalendarLocal::rawEventsForDate // If an event spans multiple days, CalendarLocal::rawEventsForDate

@ -169,7 +169,7 @@ class KarmStorage
* *
* In both cases (postive or negative delta), we create a custom iCalendar * In both cases (postive or negative delta), we create a custom iCalendar
* property that stores the delta (in seconds). This property is called * property that stores the delta (in seconds). This property is called
* X-KDE-karm-duration. * X-TDE-karm-duration.
* *
* Note that the KArm UI allows the user to change both the session and * Note that the KArm UI allows the user to change both the session and
* the total task time, and this routine does not account for all posibile * the total task time, and this routine does not account for all posibile

@ -73,6 +73,6 @@ Path=
DocPath=karm/index.html DocPath=karm/index.html
Type=Application Type=Application
Terminal=false Terminal=false
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
X-DCOP-ServiceType=Multi X-DCOP-ServiceType=Multi
Categories=Qt;KDE;X-KDE-Utilities-PIM;Office;Calendar; Categories=Qt;TDE;X-TDE-Utilities-PIM;Office;Calendar;

@ -159,7 +159,7 @@ class TaskView : public KListView
void markTaskAsIncomplete(); void markTaskAsIncomplete();
/** Subtracts time from all active tasks, and does not log event. /** Subtracts time from all active tasks, and does not log event.
* The time is stored in memory and in X-KDE-karm-duration. It is * The time is stored in memory and in X-TDE-karm-duration. It is
* increased automatically every minute to display the right duration. * increased automatically every minute to display the right duration.
*/ */
void extractTime( int minutes ); void extractTime( int minutes );

@ -4,8 +4,8 @@ VERSION:2.0
BEGIN:VTODO BEGIN:VTODO
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER;CN=root:MAILTO: ORGANIZER;CN=root:MAILTO:
X-KDE-karm-totalSessionTime:0 X-TDE-karm-totalSessionTime:0
X-KDE-karm-totalTaskTime:0 X-TDE-karm-totalTaskTime:0
CREATED:20061118T183926Z CREATED:20061118T183926Z
UID:libkcal-1156600660.458 UID:libkcal-1156600660.458
SEQUENCE:0 SEQUENCE:0
@ -19,8 +19,8 @@ END:VTODO
BEGIN:VTODO BEGIN:VTODO
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER;CN=root:MAILTO: ORGANIZER;CN=root:MAILTO:
X-KDE-karm-totalSessionTime:0 X-TDE-karm-totalSessionTime:0
X-KDE-karm-totalTaskTime:0 X-TDE-karm-totalTaskTime:0
CREATED:20061118T183934Z CREATED:20061118T183934Z
UID:libkcal-1923273586.967 UID:libkcal-1923273586.967
SEQUENCE:0 SEQUENCE:0
@ -35,8 +35,8 @@ END:VTODO
BEGIN:VTODO BEGIN:VTODO
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER;CN=root:MAILTO: ORGANIZER;CN=root:MAILTO:
X-KDE-karm-totalSessionTime:90 X-TDE-karm-totalSessionTime:90
X-KDE-karm-totalTaskTime:90 X-TDE-karm-totalTaskTime:90
CREATED:20061118T184032Z CREATED:20061118T184032Z
UID:libkcal-61950406.193 UID:libkcal-61950406.193
SEQUENCE:0 SEQUENCE:0
@ -51,8 +51,8 @@ END:VTODO
BEGIN:VTODO BEGIN:VTODO
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER;CN=root:MAILTO: ORGANIZER;CN=root:MAILTO:
X-KDE-karm-totalSessionTime:184 X-TDE-karm-totalSessionTime:184
X-KDE-karm-totalTaskTime:184 X-TDE-karm-totalTaskTime:184
CREATED:20061118T184044Z CREATED:20061118T184044Z
UID:libkcal-1755408865.833 UID:libkcal-1755408865.833
SEQUENCE:0 SEQUENCE:0
@ -67,8 +67,8 @@ END:VTODO
BEGIN:VTODO BEGIN:VTODO
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER;CN=root:MAILTO: ORGANIZER;CN=root:MAILTO:
X-KDE-karm-totalSessionTime:156 X-TDE-karm-totalSessionTime:156
X-KDE-karm-totalTaskTime:156 X-TDE-karm-totalTaskTime:156
CREATED:20061118T184054Z CREATED:20061118T184054Z
UID:libkcal-1177224330.526 UID:libkcal-1177224330.526
SEQUENCE:0 SEQUENCE:0
@ -82,7 +82,7 @@ END:VTODO
BEGIN:VEVENT BEGIN:VEVENT
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER:MAILTO: ORGANIZER:MAILTO:
X-KDE-karm-duration:9360 X-TDE-karm-duration:9360
CREATED:20061118T184102Z CREATED:20061118T184102Z
UID:libkcal-733807033.405 UID:libkcal-733807033.405
SEQUENCE:0 SEQUENCE:0
@ -100,7 +100,7 @@ END:VEVENT
BEGIN:VEVENT BEGIN:VEVENT
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER:MAILTO: ORGANIZER:MAILTO:
X-KDE-karm-duration:5400 X-TDE-karm-duration:5400
CREATED:20061118T184114Z CREATED:20061118T184114Z
UID:libkcal-552065854.752 UID:libkcal-552065854.752
SEQUENCE:0 SEQUENCE:0
@ -118,7 +118,7 @@ END:VEVENT
BEGIN:VEVENT BEGIN:VEVENT
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER:MAILTO: ORGANIZER:MAILTO:
X-KDE-karm-duration:10920 X-TDE-karm-duration:10920
CREATED:20061118T184125Z CREATED:20061118T184125Z
UID:libkcal-691043213.294 UID:libkcal-691043213.294
SEQUENCE:0 SEQUENCE:0
@ -136,7 +136,7 @@ END:VEVENT
BEGIN:VEVENT BEGIN:VEVENT
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER:MAILTO: ORGANIZER:MAILTO:
X-KDE-karm-duration:2 X-TDE-karm-duration:2
CREATED:20061118T183930Z CREATED:20061118T183930Z
UID:libkcal-251324967.864 UID:libkcal-251324967.864
SEQUENCE:0 SEQUENCE:0
@ -154,7 +154,7 @@ END:VEVENT
BEGIN:VEVENT BEGIN:VEVENT
DTSTAMP:20061125T204432Z DTSTAMP:20061125T204432Z
ORGANIZER:MAILTO: ORGANIZER:MAILTO:
X-KDE-karm-duration:95 X-TDE-karm-duration:95
CREATED:20061118T184306Z CREATED:20061118T184306Z
UID:libkcal-729762004.89 UID:libkcal-729762004.89
SEQUENCE:0 SEQUENCE:0

@ -50,7 +50,7 @@ Name[uk]=Інформація про ICS
Name[zh_CN]=ICS 信息 Name[zh_CN]=ICS 信息
Name[zh_TW]=ICS 資訊 Name[zh_TW]=ICS 資訊
ServiceTypes=KFilePlugin ServiceTypes=KFilePlugin
X-KDE-Library=kfile_ics X-TDE-Library=kfile_ics
MimeType=text/calendar MimeType=text/calendar
PreferredGroups=ICSInfo PreferredGroups=ICSInfo
PreferredItems=Events,Todos,Journals PreferredItems=Events,Todos,Journals

@ -53,7 +53,7 @@ Name[uk]=Інформація про базу даних PalmOS
Name[zh_CN]=PalmOS 数据库信息 Name[zh_CN]=PalmOS 数据库信息
Name[zh_TW]=PalmOS 資料庫資訊 Name[zh_TW]=PalmOS 資料庫資訊
ServiceTypes=KFilePlugin ServiceTypes=KFilePlugin
X-KDE-Library=kfile_palm X-TDE-Library=kfile_palm
MimeType=application/vnd.palm MimeType=application/vnd.palm
PreferredGroups=General PreferredGroups=General
PreferredItems=Name,DBType,TypeID,CreatorID,NrRecords,Size PreferredItems=Name,DBType,TypeID,CreatorID,NrRecords,Size

@ -56,7 +56,7 @@ Name[uk]=Інформація про повідомлення ел. пошти
Name[zh_CN]=电子邮件信息 Name[zh_CN]=电子邮件信息
Name[zh_TW]=電子郵件資訊 Name[zh_TW]=電子郵件資訊
ServiceTypes=KFilePlugin ServiceTypes=KFilePlugin
X-KDE-Library=kfile_rfc822 X-TDE-Library=kfile_rfc822
MimeType=message/rfc822 MimeType=message/rfc822
PreferredGroups=Technical PreferredGroups=Technical
PreferredItems=From,To,Subject,Date,Content-Type PreferredItems=From,To,Subject,Date,Content-Type

@ -59,7 +59,7 @@ Name[zh_CN]=vCard 信息
Name[zh_TW]=vCard 資訊 Name[zh_TW]=vCard 資訊
Name[zu]=Ulwazi lwe-vCard Name[zu]=Ulwazi lwe-vCard
ServiceTypes=KFilePlugin ServiceTypes=KFilePlugin
X-KDE-Library=kfile_vcf X-TDE-Library=kfile_vcf
MimeType=text/x-vcard MimeType=text/x-vcard
PreferredGroups=Technical PreferredGroups=Technical
PreferredItems=Name,Email,Telephone PreferredItems=Name,Email,Telephone

@ -52,9 +52,9 @@ Icon=kitchensync
Type=Application Type=Application
DocPath=kitchensync/index.html DocPath=kitchensync/index.html
Terminal=false Terminal=false
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
X-DCOP-ServiceName=kitchensync X-DCOP-ServiceName=kitchensync
ServiceTypes=KParts/ReadOnlyPart ServiceTypes=KParts/ReadOnlyPart
X-KDE-Library=libkitchensyncpart X-TDE-Library=libkitchensyncpart
Categories=Qt;KDE;Utility;X-KDE-Utilities-PIM; Categories=Qt;TDE;Utility;X-TDE-Utilities-PIM;

@ -84,8 +84,8 @@ GenericName[zh_TW]=收發信軟體
GenericName[zu]=Imeyili Yomthengi GenericName[zu]=Imeyili Yomthengi
Terminal=false Terminal=false
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
X-DCOP-ServiceName=kmail X-DCOP-ServiceName=kmail
ServiceTypes=DCOP/ResourceBackend/IMAP,DCOP/Mailer ServiceTypes=DCOP/ResourceBackend/IMAP,DCOP/Mailer
Categories=Qt;KDE;Network;Office;Email; Categories=Qt;TDE;Network;Office;Email;

@ -80,4 +80,4 @@ Comment[zh_CN]=application/octet-stream 的格式化插件
[Plugin] [Plugin]
Type=application/octet-stream Type=application/octet-stream
X-KDE-Library=libkmail_bodypartformatter_application_octetstream X-TDE-Library=libkmail_bodypartformatter_application_octetstream

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=DCOP/ResourceBackend/IMAP X-TDE-ServiceType=DCOP/ResourceBackend/IMAP
Comment=Mail program with a DCOP interface Comment=Mail program with a DCOP interface
Comment[af]=E-pos program met 'n DCOP koppelvlak Comment[af]=E-pos program met 'n DCOP koppelvlak
Comment[be]=Паштовая праграма з DCOP інтэрфэйсам Comment[be]=Паштовая праграма з DCOP інтэрфэйсам

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=DCOP/Mailer X-TDE-ServiceType=DCOP/Mailer
Comment=Mail program with a DCOP interface Comment=Mail program with a DCOP interface
Comment[af]=E-pos program met 'n DCOP koppelvlak Comment[af]=E-pos program met 'n DCOP koppelvlak
Comment[be]=Паштовая праграма з DCOP інтэрфэйсам Comment[be]=Паштовая праграма з DCOP інтэрфэйсам

@ -3,13 +3,13 @@ Icon=network
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kmail X-TDE-Library=kmail
X-KDE-FactoryName=kmail_config_accounts X-TDE-FactoryName=kmail_config_accounts
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kmail X-TDE-ParentApp=kmail
X-KDE-ParentComponents=kmail,kontact_kmailplugin X-TDE-ParentComponents=kmail,kontact_kmailplugin
X-KDE-CfgDlgHierarchy=KMail X-TDE-CfgDlgHierarchy=KMail
Name=Accounts Name=Accounts
Name[af]=Rekeninge Name[af]=Rekeninge

@ -3,13 +3,13 @@ Icon=looknfeel
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kmail X-TDE-Library=kmail
X-KDE-FactoryName=kmail_config_appearance X-TDE-FactoryName=kmail_config_appearance
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kmail X-TDE-ParentApp=kmail
X-KDE-ParentComponents=kmail,kontact_kmailplugin X-TDE-ParentComponents=kmail,kontact_kmailplugin
X-KDE-CfgDlgHierarchy=KMail X-TDE-CfgDlgHierarchy=KMail
Name=Appearance Name=Appearance
Name[ar]=المظهر Name[ar]=المظهر

@ -3,13 +3,13 @@ Icon=edit
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kmail X-TDE-Library=kmail
X-KDE-FactoryName=kmail_config_composer X-TDE-FactoryName=kmail_config_composer
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kmail X-TDE-ParentApp=kmail
X-KDE-ParentComponents=kmail,kontact_kmailplugin X-TDE-ParentComponents=kmail,kontact_kmailplugin
X-KDE-CfgDlgHierarchy=KMail X-TDE-CfgDlgHierarchy=KMail
Name=Composer Name=Composer
Name[ar]=المحرر Name[ar]=المحرر

@ -3,13 +3,13 @@ Icon=identity
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kmail X-TDE-Library=kmail
X-KDE-FactoryName=kmail_config_identity X-TDE-FactoryName=kmail_config_identity
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kmail X-TDE-ParentApp=kmail
X-KDE-ParentComponents=kmail,kontact_kmailplugin X-TDE-ParentComponents=kmail,kontact_kmailplugin
X-KDE-CfgDlgHierarchy=KMail X-TDE-CfgDlgHierarchy=KMail
Name=Identities Name=Identities
Name[ar]=الهويات Name[ar]=الهويات

@ -3,13 +3,13 @@ Icon=misc
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kmail X-TDE-Library=kmail
X-KDE-FactoryName=kmail_config_misc X-TDE-FactoryName=kmail_config_misc
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kmail X-TDE-ParentApp=kmail
X-KDE-ParentComponents=kmail,kontact_kmailplugin X-TDE-ParentComponents=kmail,kontact_kmailplugin
X-KDE-CfgDlgHierarchy=KMail X-TDE-CfgDlgHierarchy=KMail
Name=Misc Name=Misc
Name[af]=Allerlei Name[af]=Allerlei

@ -3,13 +3,13 @@ Icon=encrypted
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kmail X-TDE-Library=kmail
X-KDE-FactoryName=kmail_config_security X-TDE-FactoryName=kmail_config_security
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kmail X-TDE-ParentApp=kmail
X-KDE-ParentComponents=kmail,kontact_kmailplugin X-TDE-ParentComponents=kmail,kontact_kmailplugin
X-KDE-CfgDlgHierarchy=KMail X-TDE-CfgDlgHierarchy=KMail
Name=Security Name=Security
Name[af]=Sekuriteit Name[af]=Sekuriteit

@ -17,6 +17,6 @@ DocPath=kmail/index.html
NoDisplay=true NoDisplay=true
MimeType=message/rfc822;application/mbox;application/x-mimearchive; MimeType=message/rfc822;application/mbox;application/x-mimearchive;
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
X-DCOP-ServiceName=kmail X-DCOP-ServiceName=kmail

@ -968,9 +968,9 @@ KMFilterActionRemoveHeader::KMFilterActionRemoveHeader()
mParameterList << "" mParameterList << ""
<< "Reply-To" << "Reply-To"
<< "Delivered-To" << "Delivered-To"
<< "X-KDE-PR-Message" << "X-TDE-PR-Message"
<< "X-KDE-PR-Package" << "X-TDE-PR-Package"
<< "X-KDE-PR-Keywords"; << "X-TDE-PR-Keywords";
mParameter = *mParameterList.at(0); mParameter = *mParameterList.at(0);
} }
@ -1041,9 +1041,9 @@ KMFilterActionAddHeader::KMFilterActionAddHeader()
mParameterList << "" mParameterList << ""
<< "Reply-To" << "Reply-To"
<< "Delivered-To" << "Delivered-To"
<< "X-KDE-PR-Message" << "X-TDE-PR-Message"
<< "X-KDE-PR-Package" << "X-TDE-PR-Package"
<< "X-KDE-PR-Keywords"; << "X-TDE-PR-Keywords";
mParameter = *mParameterList.at(0); mParameter = *mParameterList.at(0);
} }
@ -1183,9 +1183,9 @@ KMFilterActionRewriteHeader::KMFilterActionRewriteHeader()
<< "Subject" << "Subject"
<< "Reply-To" << "Reply-To"
<< "Delivered-To" << "Delivered-To"
<< "X-KDE-PR-Message" << "X-TDE-PR-Message"
<< "X-KDE-PR-Package" << "X-TDE-PR-Package"
<< "X-KDE-PR-Keywords"; << "X-TDE-PR-Keywords";
mParameter = *mParameterList.at(0); mParameter = *mParameterList.at(0);
} }

@ -108,5 +108,5 @@ Comment[zh_CN]=此驱动程序支持许多数码相机
Comment[zh_TW]=此驅動程式支援許多數位相機 Comment[zh_TW]=此驅動程式支援許多數位相機
Type=Service Type=Service
ServiceTypes=kdedevice/mobiledevice ServiceTypes=kdedevice/mobiledevice
X-KDE-Library=libkmobile_digicam X-TDE-Library=libkmobile_digicam
Icon=mobile_camera Icon=mobile_camera

@ -102,5 +102,5 @@ Comment[zh_CN]=此驱动程序通过 gammu 库支持许多诺基亚和其它移
Comment[zh_TW]=此驅動程式支援許多 NOKIA 及其他手機,使用 gammu 函式庫 Comment[zh_TW]=此驅動程式支援許多 NOKIA 及其他手機,使用 gammu 函式庫
Type=Service Type=Service
ServiceTypes=kdedevice/mobiledevice ServiceTypes=kdedevice/mobiledevice
X-KDE-Library=libkmobile_gammu X-TDE-Library=libkmobile_gammu
Icon=mobile_phone Icon=mobile_phone

@ -102,5 +102,5 @@ Comment[zh_CN]=此驱动程序通过 gnokii 库支持许多诺基亚和其它移
Comment[zh_TW]=此驅動程式支援許多 NOKIA 及其他手機,使用 gnokii 函式庫 Comment[zh_TW]=此驅動程式支援許多 NOKIA 及其他手機,使用 gnokii 函式庫
Type=Service Type=Service
ServiceTypes=kdedevice/mobiledevice ServiceTypes=kdedevice/mobiledevice
X-KDE-Library=libkmobile_gnokii X-TDE-Library=libkmobile_gnokii
Icon=mobile_phone Icon=mobile_phone

@ -103,5 +103,5 @@ Comment[zh_CN]=移动万能设备
Comment[zh_TW]=行動通訊空殼裝置 Comment[zh_TW]=行動通訊空殼裝置
Type=Service Type=Service
ServiceTypes=kdedevice/mobiledevice ServiceTypes=kdedevice/mobiledevice
X-KDE-Library=libkmobile_skeleton X-TDE-Library=libkmobile_skeleton
Icon=mobile_unknown Icon=mobile_unknown

@ -57,4 +57,4 @@ Type=MimeType
MimeType=inode/addressbook MimeType=inode/addressbook
Patterns= Patterns=
X-KDE-AutoEmbed=true X-TDE-AutoEmbed=true

@ -57,4 +57,4 @@ Type=MimeType
MimeType=inode/calendar MimeType=inode/calendar
Patterns= Patterns=
X-KDE-AutoEmbed=true X-TDE-AutoEmbed=true

@ -61,4 +61,4 @@ Type=MimeType
MimeType=kdedevice/mobiledevice MimeType=kdedevice/mobiledevice
Patterns= Patterns=
X-KDE-AutoEmbed=true X-TDE-AutoEmbed=true

@ -55,4 +55,4 @@ Type=MimeType
MimeType=inode/notes MimeType=inode/notes
Patterns= Patterns=
X-KDE-AutoEmbed=true X-TDE-AutoEmbed=true

@ -125,10 +125,10 @@ Comment[uk]=Менеджер мобільних пристроїв TDE
Comment[zh_CN]=TDE 移动设备管理器 Comment[zh_CN]=TDE 移动设备管理器
Comment[zh_TW]=TDE 行動裝置管理員 Comment[zh_TW]=TDE 行動裝置管理員
X-KDE-StartupNotify=false X-TDE-StartupNotify=false
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
# X-KDE-autostart-after=panel # X-TDE-autostart-after=panel
# X-KDE-Library=kmobile_panelapplet # X-TDE-Library=kmobile_panelapplet
# X-KDE-UniqueApplet=true # X-TDE-UniqueApplet=true
# # X-KDE-autostart-condition=kmobilerc:General:AutoStart:true # # X-TDE-autostart-condition=kmobilerc:General:AutoStart:true
Categories=Qt;KDE;Utility; Categories=Qt;TDE;Utility;

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=kdedevice/mobiledevice X-TDE-ServiceType=kdedevice/mobiledevice
Name=TDE Mobile Device Lowlevel Hardware Driver Name=TDE Mobile Device Lowlevel Hardware Driver
Name[af]=TDE draagbare toestel laevlak hardeware toestel Name[af]=TDE draagbare toestel laevlak hardeware toestel
Name[bs]=TDE hardverski drajver niskog nivoa za mobilne uređaje Name[bs]=TDE hardverski drajver niskog nivoa za mobilne uređaje

@ -79,6 +79,6 @@ GenericName[xh]=Umfundi weendaba
GenericName[zh_CN]=新闻阅读器 GenericName[zh_CN]=新闻阅读器
GenericName[zh_TW]=新聞閱讀器 GenericName[zh_TW]=新聞閱讀器
GenericName[zu]=Umfundi wezindaba GenericName[zu]=Umfundi wezindaba
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
Categories=Qt;KDE;Network;News; Categories=Qt;TDE;Network;News;

@ -3,13 +3,13 @@ Icon=network
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=knode X-TDE-Library=knode
X-KDE-FactoryName=knode_config_accounts X-TDE-FactoryName=knode_config_accounts
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=knode X-TDE-ParentApp=knode
X-KDE-ParentComponents=knode,kontact_knodeplugin X-TDE-ParentComponents=knode,kontact_knodeplugin
X-KDE-CfgDlgHierarchy=KNode X-TDE-CfgDlgHierarchy=KNode
Name=Accounts Name=Accounts
Name[af]=Rekeninge Name[af]=Rekeninge

@ -3,13 +3,13 @@ Icon=looknfeel
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=knode X-TDE-Library=knode
X-KDE-FactoryName=knode_config_appearance X-TDE-FactoryName=knode_config_appearance
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=knode X-TDE-ParentApp=knode
X-KDE-ParentComponents=knode,kontact_knodeplugin X-TDE-ParentComponents=knode,kontact_knodeplugin
X-KDE-CfgDlgHierarchy=KNode X-TDE-CfgDlgHierarchy=KNode
Name=Appearance Name=Appearance
Name[ar]=المظهر Name[ar]=المظهر

@ -3,13 +3,13 @@ Icon=wizard
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=knode X-TDE-Library=knode
X-KDE-FactoryName=knode_config_cleanup X-TDE-FactoryName=knode_config_cleanup
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=knode X-TDE-ParentApp=knode
X-KDE-ParentComponents=knode,kontact_knodeplugin X-TDE-ParentComponents=knode,kontact_knodeplugin
X-KDE-CfgDlgHierarchy=KNode X-TDE-CfgDlgHierarchy=KNode
Name=Cleanup Name=Cleanup
Name[ar]=التنظيف Name[ar]=التنظيف

@ -3,13 +3,13 @@ Icon=identity
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=knode X-TDE-Library=knode
X-KDE-FactoryName=knode_config_identity X-TDE-FactoryName=knode_config_identity
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=knode X-TDE-ParentApp=knode
X-KDE-ParentComponents=knode,kontact_knodeplugin X-TDE-ParentComponents=knode,kontact_knodeplugin
X-KDE-CfgDlgHierarchy=KNode X-TDE-CfgDlgHierarchy=KNode
Name=Identity Name=Identity
Name[af]=Identiteit Name[af]=Identiteit

@ -3,13 +3,13 @@ Icon=mail_forward
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=knode X-TDE-Library=knode
X-KDE-FactoryName=knode_config_post_news X-TDE-FactoryName=knode_config_post_news
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=knode X-TDE-ParentApp=knode
X-KDE-ParentComponents=knode,kontact_knodeplugin X-TDE-ParentComponents=knode,kontact_knodeplugin
X-KDE-CfgDlgHierarchy=KNode X-TDE-CfgDlgHierarchy=KNode
Name=Posting News Name=Posting News
Name[af]=Pos Nuus Name[af]=Pos Nuus

@ -3,13 +3,13 @@ Icon=password
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=knode X-TDE-Library=knode
X-KDE-FactoryName=knode_config_privacy X-TDE-FactoryName=knode_config_privacy
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=knode X-TDE-ParentApp=knode
X-KDE-ParentComponents=knode,kontact_knodeplugin X-TDE-ParentComponents=knode,kontact_knodeplugin
X-KDE-CfgDlgHierarchy=KNode X-TDE-CfgDlgHierarchy=KNode
Name=Signing/Verifying Name=Signing/Verifying
Name[af]=Teken/Bevestig Name[af]=Teken/Bevestig

@ -3,13 +3,13 @@ Icon=mail_get
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=knode X-TDE-Library=knode
X-KDE-FactoryName=knode_config_read_news X-TDE-FactoryName=knode_config_read_news
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=knode X-TDE-ParentApp=knode
X-KDE-ParentComponents=knode,kontact_knodeplugin X-TDE-ParentComponents=knode,kontact_knodeplugin
X-KDE-CfgDlgHierarchy=KNode X-TDE-CfgDlgHierarchy=KNode
Name=Reading News Name=Reading News
Name[af]=Lees Nuus Name[af]=Lees Nuus

@ -85,6 +85,6 @@ Name[ta]=கேகுறிப்புகள்
Name[th]=บันทึกช่วยจำ Name[th]=บันทึกช่วยจำ
Name[zh_TW]=KNotes 便利貼 Name[zh_TW]=KNotes 便利貼
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
Categories=Qt;KDE;Utility;X-KDE-Utilities-Desktop;Office; Categories=Qt;TDE;Utility;X-TDE-Utilities-Desktop;Office;

@ -57,4 +57,4 @@ Name[zh_TW]=備忘錄
Type=Service Type=Service
ServiceTypes=KResources/Manager ServiceTypes=KResources/Manager
X-KDE-ResourceFamily=notes X-TDE-ResourceFamily=notes

@ -51,8 +51,8 @@ Name[tr]=Yerel Dosyadaki Notlar
Name[uk]=Нотатки у локальному файлі Name[uk]=Нотатки у локальному файлі
Name[zh_CN]=本地文件中的便笺 Name[zh_CN]=本地文件中的便笺
Name[zh_TW]=本地檔備忘錄 Name[zh_TW]=本地檔備忘錄
X-KDE-Library=knotes_local X-TDE-Library=knotes_local
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=notes X-TDE-ResourceFamily=notes
X-KDE-ResourceType=file X-TDE-ResourceType=file

@ -26,4 +26,4 @@ Type=Application
DocPath=konsolekalendar/index.html DocPath=konsolekalendar/index.html
Terminal=false Terminal=false
NoDisplay=true NoDisplay=true
Categories=Qt;KDE;Utility; Categories=Qt;TDE;Utility;

@ -65,7 +65,7 @@ See KAddressbookPlugin (plugins/kaddressbook/*) for a working example.
Don't forget to Don't forget to
=============== ===============
* Define the service type, using a "Type=ServiceType" .desktop file, * Define the service type, using a "Type=ServiceType" .desktop file,
with "X-KDE-ServiceType=DCOP/Foo". with "X-TDE-ServiceType=DCOP/Foo".
See e.g. tdepim/kaddressbook/dcopaddressbook.desktop See e.g. tdepim/kaddressbook/dcopaddressbook.desktop
* Add DCOP/Foo to the application's ServiceTypes list, in its .desktop file * Add DCOP/Foo to the application's ServiceTypes list, in its .desktop file

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=Kontact/Plugin X-TDE-ServiceType=Kontact/Plugin
Name=Kontact Plugin Name=Kontact Plugin
Name[af]=Kontact inprop module Name[af]=Kontact inprop module
Name[ar]=قابس Kontact Name[ar]=قابس Kontact
@ -55,15 +55,15 @@ Name[uz]=Kontact учун плагин
Name[zh_CN]=Kontact 插件 Name[zh_CN]=Kontact 插件
Name[zh_TW]=Kontack 外掛程式 Name[zh_TW]=Kontack 外掛程式
[PropertyDef::X-KDE-KontactPluginVersion] [PropertyDef::X-TDE-KontactPluginVersion]
Type=int Type=int
[PropertyDef::X-KDE-KontactPartLibraryName] [PropertyDef::X-TDE-KontactPartLibraryName]
Type=TQString Type=TQString
[PropertyDef::X-KDE-KontactPartExecutableName] [PropertyDef::X-TDE-KontactPartExecutableName]
Type=TQString Type=TQString
[PropertyDef::X-KDE-KontactPartLoadOnStart] [PropertyDef::X-TDE-KontactPartLoadOnStart]
Type=bool Type=bool
[PropertyDef::X-KDE-KontactPluginHasSummary] [PropertyDef::X-TDE-KontactPluginHasSummary]
Type=bool Type=bool
[PropertyDef::X-KDE-KontactPluginHasPart] [PropertyDef::X-TDE-KontactPluginHasPart]
Type=bool Type=bool

@ -3,15 +3,15 @@ Type=Service
Icon=akregator Icon=akregator
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_akregator X-TDE-Library=libkontact_akregator
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libakregatorpart X-TDE-KontactPartLibraryName=libakregatorpart
X-KDE-KontactPartLoadOnStart=false X-TDE-KontactPartLoadOnStart=false
X-KDE-PluginInfo-Name=kontact_akregator X-TDE-PluginInfo-Name=kontact_akregator
X-KDE-PluginInfo-Version=1.0b2 X-TDE-PluginInfo-Version=1.0b2
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Feed Reader Component (Akregator Plugin) Comment=Feed Reader Component (Akregator Plugin)
Comment[bg]=Приставка за Akregator Comment[bg]=Приставка за Akregator

@ -3,14 +3,14 @@ Type=Service
Icon=akregator Icon=akregator
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_akregator X-TDE-Library=libkontact_akregator
X-KDE-KontactPluginVersion=3 X-TDE-KontactPluginVersion=3
X-KDE-KontactPartLibraryName=libakregatorpart X-TDE-KontactPartLibraryName=libakregatorpart
X-KDE-PluginInfo-Name=kontact_akregator X-TDE-PluginInfo-Name=kontact_akregator
X-KDE-PluginInfo-Version=1.0b2 X-TDE-PluginInfo-Version=1.0b2
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Akregator Plugin Comment=Akregator Plugin
Comment[af]=Akregator inprop module Comment[af]=Akregator inprop module

@ -3,17 +3,17 @@ Type=Service
Icon=kontact_contacts Icon=kontact_contacts
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_kaddressbookplugin X-TDE-Library=libkontact_kaddressbookplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libkaddressbookpart X-TDE-KontactPartLibraryName=libkaddressbookpart
X-KDE-KontactPartExecutableName=kaddressbook X-TDE-KontactPartExecutableName=kaddressbook
X-KDE-KontactPluginHasSummary=false X-TDE-KontactPluginHasSummary=false
X-KDE-PluginInfo-Website=http://www.kaddressbook.org/ X-TDE-PluginInfo-Website=http://www.kaddressbook.org/
X-KDE-PluginInfo-Name=kontact_kaddressbookplugin X-TDE-PluginInfo-Name=kontact_kaddressbookplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Contacts Component (KAdressbook Plugin) Comment=Contacts Component (KAdressbook Plugin)
Comment[bg]=Приставка за адресника Comment[bg]=Приставка за адресника

@ -3,14 +3,14 @@ Type=Service
Icon=karm Icon=karm
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_karm X-TDE-Library=libkontact_karm
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libkarmpart X-TDE-KontactPartLibraryName=libkarmpart
X-KDE-PluginInfo-Name=kontact_karm X-TDE-PluginInfo-Name=kontact_karm
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=false X-TDE-PluginInfo-EnabledByDefault=false
Comment=Time Tracker Component (KArm Plugin) Comment=Time Tracker Component (KArm Plugin)
Comment[bg]=Приставка за KArm Comment[bg]=Приставка за KArm

@ -3,14 +3,14 @@ Type=Service
Icon=kitchensync Icon=kitchensync
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_kitchensync X-TDE-Library=libkontact_kitchensync
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libkitchensyncpart X-TDE-KontactPartLibraryName=libkitchensyncpart
X-KDE-PluginInfo-Name=kontact_kitchensync X-TDE-PluginInfo-Name=kontact_kitchensync
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=false X-TDE-PluginInfo-EnabledByDefault=false
Comment=Synchronization Component (Kitchensynk Plugin) Comment=Synchronization Component (Kitchensynk Plugin)
Comment[bg]=Приставка за синхронизация Comment[bg]=Приставка за синхронизация

@ -3,12 +3,12 @@ Icon=kontact_mail
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kmailsummary X-TDE-Library=kmailsummary
X-KDE-FactoryName=kmailsummary X-TDE-FactoryName=kmailsummary
X-KDE-ParentApp=kontact_kmailplugin X-TDE-ParentApp=kontact_kmailplugin
X-KDE-ParentComponents=kontact_kmailplugin X-TDE-ParentComponents=kontact_kmailplugin
X-KDE-CfgDlgHierarchy=KontactSummary X-TDE-CfgDlgHierarchy=KontactSummary
Name=E-Mail Overview Name=E-Mail Overview
Name[bg]=Преглед на пощата Name[bg]=Преглед на пощата

@ -3,18 +3,18 @@ Type=Service
Icon=kontact_mail Icon=kontact_mail
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_kmailplugin X-TDE-Library=libkontact_kmailplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libkmailpart X-TDE-KontactPartLibraryName=libkmailpart
X-KDE-KontactPartExecutableName=kmail X-TDE-KontactPartExecutableName=kmail
X-KDE-KontactPartLoadOnStart=true X-TDE-KontactPartLoadOnStart=true
X-KDE-KontactPluginHasSummary=true X-TDE-KontactPluginHasSummary=true
X-KDE-PluginInfo-Website=http://kmail.kde.org/ X-TDE-PluginInfo-Website=http://kmail.kde.org/
X-KDE-PluginInfo-Name=kontact_kmailplugin X-TDE-PluginInfo-Name=kontact_kmailplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=E-Mail Component (KMail Plugin) Comment=E-Mail Component (KMail Plugin)
Comment[bg]=Модул за е-поща Comment[bg]=Модул за е-поща

@ -3,15 +3,15 @@ Type=Service
Icon=kontact_news Icon=kontact_news
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_knodeplugin X-TDE-Library=libkontact_knodeplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libknodepart X-TDE-KontactPartLibraryName=libknodepart
X-KDE-KontactPartExecutableName=knode X-TDE-KontactPartExecutableName=knode
X-KDE-PluginInfo-Name=kontact_knodeplugin X-TDE-PluginInfo-Name=kontact_knodeplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=false X-TDE-PluginInfo-EnabledByDefault=false
Comment=Newsreader Component (KNode Plugin) Comment=Newsreader Component (KNode Plugin)
Comment[bg]=Приставка за KNode Comment[bg]=Приставка за KNode

@ -3,15 +3,15 @@ Type=Service
Icon=kontact_notes Icon=kontact_notes
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_knotesplugin X-TDE-Library=libkontact_knotesplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPluginHasSummary=true X-TDE-KontactPluginHasSummary=true
X-KDE-PluginInfo-Website=http://pim.kde.org/components/knotes.php X-TDE-PluginInfo-Website=http://pim.kde.org/components/knotes.php
X-KDE-PluginInfo-Name=kontact_knotesplugin X-TDE-PluginInfo-Name=kontact_knotesplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=LGPL X-TDE-PluginInfo-License=LGPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Notes Component (KNotes Plugin) Comment=Notes Component (KNotes Plugin)
Comment[bg]=Приставка за бележки Comment[bg]=Приставка за бележки

@ -3,17 +3,17 @@ Type=Service
Icon=kontact_journal Icon=kontact_journal
ServiceTypes=Kontact/Plugin ServiceTypes=Kontact/Plugin
X-KDE-Library=libkontact_journalplugin X-TDE-Library=libkontact_journalplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libkorganizerpart X-TDE-KontactPartLibraryName=libkorganizerpart
X-KDE-KontactPartExecutableName=korganizer X-TDE-KontactPartExecutableName=korganizer
X-KDE-KontactPluginHasSummary=false X-TDE-KontactPluginHasSummary=false
X-KDE-PluginInfo-Website=http://korganizer.kde.org X-TDE-PluginInfo-Website=http://korganizer.kde.org
X-KDE-PluginInfo-Name=kontact_journalplugin X-TDE-PluginInfo-Name=kontact_journalplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Journal Component (KOrganizer Plugin) Comment=Journal Component (KOrganizer Plugin)
Comment[bg]=Приставка за KOrganizer Comment[bg]=Приставка за KOrganizer

@ -3,12 +3,12 @@ Icon=kontact_date
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korgsummary X-TDE-Library=korgsummary
X-KDE-FactoryName=korgsummary X-TDE-FactoryName=korgsummary
X-KDE-ParentApp=kontact_korganizerplugin,kontact_todoplugin X-TDE-ParentApp=kontact_korganizerplugin,kontact_todoplugin
X-KDE-ParentComponents=kontact_korganizerplugin,kontact_todoplugin X-TDE-ParentComponents=kontact_korganizerplugin,kontact_todoplugin
X-KDE-CfgDlgHierarchy=KontactSummary X-TDE-CfgDlgHierarchy=KontactSummary
Name=Appointment and To-do Overview Name=Appointment and To-do Overview
Name[bg]=Преглед на срещи и задачи Name[bg]=Преглед на срещи и задачи

@ -3,17 +3,17 @@ Type=Service
Icon=kontact_date Icon=kontact_date
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_korganizerplugin X-TDE-Library=libkontact_korganizerplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libkorganizerpart X-TDE-KontactPartLibraryName=libkorganizerpart
X-KDE-KontactPartExecutableName=korganizer X-TDE-KontactPartExecutableName=korganizer
X-KDE-KontactPluginHasSummary=true X-TDE-KontactPluginHasSummary=true
X-KDE-PluginInfo-Website=http://korganizer.kde.org X-TDE-PluginInfo-Website=http://korganizer.kde.org
X-KDE-PluginInfo-Name=kontact_korganizerplugin X-TDE-PluginInfo-Name=kontact_korganizerplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Calendar Component (KOrganizer Plugin) Comment=Calendar Component (KOrganizer Plugin)
Comment[bg]=Приставка за KOrganizer Comment[bg]=Приставка за KOrganizer

@ -3,17 +3,17 @@ Type=Service
Icon=kontact_todo Icon=kontact_todo
ServiceTypes=Kontact/Plugin ServiceTypes=Kontact/Plugin
X-KDE-Library=libkontact_todoplugin X-TDE-Library=libkontact_todoplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPartLibraryName=libkorganizerpart X-TDE-KontactPartLibraryName=libkorganizerpart
X-KDE-KontactPartExecutableName=korganizer X-TDE-KontactPartExecutableName=korganizer
X-KDE-KontactPluginHasSummary=true X-TDE-KontactPluginHasSummary=true
X-KDE-PluginInfo-Website=http://korganizer.kde.org X-TDE-PluginInfo-Website=http://korganizer.kde.org
X-KDE-PluginInfo-Name=kontact_todoplugin X-TDE-PluginInfo-Name=kontact_todoplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=To-do List Component (KOrganizer plugin) Comment=To-do List Component (KOrganizer plugin)
Comment[bg]=Приставка за KOrganizer Comment[bg]=Приставка за KOrganizer

@ -3,17 +3,17 @@ Type=Service
Icon=kpilot Icon=kpilot
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_kpilotplugin X-TDE-Library=libkontact_kpilotplugin
X-KDE-KontactIdentifier=kpilot X-TDE-KontactIdentifier=kpilot
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPluginHasSummary=true X-TDE-KontactPluginHasSummary=true
X-KDE-KontactPluginHasPart=false X-TDE-KontactPluginHasPart=false
X-KDE-PluginInfo-Website=http://www.slac.com/~pilone/kpilot_home/ X-TDE-PluginInfo-Website=http://www.slac.com/~pilone/kpilot_home/
X-KDE-PluginInfo-Name=kontact_kpilotplugin X-TDE-PluginInfo-Name=kontact_kpilotplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Palm Tools Component (KPilot Plugin) Comment=Palm Tools Component (KPilot Plugin)
Comment[bg]=Приставка за KPilot Comment[bg]=Приставка за KPilot

@ -3,12 +3,12 @@ Icon=knode
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kontactknt X-TDE-Library=kontactknt
X-KDE-FactoryName=kontactknt X-TDE-FactoryName=kontactknt
X-KDE-ParentApp=kontact_newstickerplugin X-TDE-ParentApp=kontact_newstickerplugin
X-KDE-ParentComponents=kontact_newstickerplugin X-TDE-ParentComponents=kontact_newstickerplugin
X-KDE-CfgDlgHierarchy=KontactSummary X-TDE-CfgDlgHierarchy=KontactSummary
Name=News Ticker Name=News Ticker
Name[af]=Nuus tikker Name[af]=Nuus tikker

@ -4,15 +4,15 @@ Icon=knewsticker
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
TryExec=rssservice TryExec=rssservice
X-KDE-Library=libkontact_newstickerplugin X-TDE-Library=libkontact_newstickerplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPluginHasSummary=true X-TDE-KontactPluginHasSummary=true
X-KDE-KontactPluginHasPart=false X-TDE-KontactPluginHasPart=false
X-KDE-PluginInfo-Name=kontact_newstickerplugin X-TDE-PluginInfo-Name=kontact_newstickerplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=LGPL X-TDE-PluginInfo-License=LGPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Newsticker Component Comment=Newsticker Component
Comment[bg]=Компонент за новини Comment[bg]=Компонент за новини

@ -3,12 +3,12 @@ Icon=cookie
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=sdsummary X-TDE-Library=sdsummary
X-KDE-FactoryName=sdsummary X-TDE-FactoryName=sdsummary
X-KDE-ParentApp=kontact_specialdatesplugin X-TDE-ParentApp=kontact_specialdatesplugin
X-KDE-ParentComponents=kontact_specialdatesplugin X-TDE-ParentComponents=kontact_specialdatesplugin
X-KDE-CfgDlgHierarchy=KontactSummary X-TDE-CfgDlgHierarchy=KontactSummary
Name=Special Dates Overview Name=Special Dates Overview
Name[bg]=Преглед на специални случаи Name[bg]=Преглед на специални случаи

@ -3,15 +3,15 @@ Type=Service
Icon=cookie Icon=cookie
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_specialdatesplugin X-TDE-Library=libkontact_specialdatesplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPluginHasPart=false X-TDE-KontactPluginHasPart=false
X-KDE-KontactPluginHasSummary=true X-TDE-KontactPluginHasSummary=true
X-KDE-PluginInfo-Name=kontact_specialdatesplugin X-TDE-PluginInfo-Name=kontact_specialdatesplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=GPL X-TDE-PluginInfo-License=GPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Name=Special Dates Name=Special Dates
Name[af]=Spesiale datums Name[af]=Spesiale datums

@ -120,7 +120,7 @@ void KCMKontactSummary::load()
{ {
KTrader::OfferList offers = KTrader::self()->query( KTrader::OfferList offers = KTrader::self()->query(
TQString::fromLatin1( "Kontact/Plugin" ), TQString::fromLatin1( "Kontact/Plugin" ),
TQString( "[X-KDE-KontactPluginVersion] == %1" ).arg( KONTACT_PLUGIN_VERSION ) ); TQString( "[X-TDE-KontactPluginVersion] == %1" ).arg( KONTACT_PLUGIN_VERSION ) );
TQStringList activeSummaries; TQStringList activeSummaries;
@ -150,7 +150,7 @@ void KCMKontactSummary::load()
if ( !(*it)->isPluginEnabled() ) if ( !(*it)->isPluginEnabled() )
continue; continue;
TQVariant var = (*it)->property( "X-KDE-KontactPluginHasSummary" ); TQVariant var = (*it)->property( "X-TDE-KontactPluginHasSummary" );
if ( !var.isValid() ) if ( !var.isValid() )
continue; continue;

@ -3,12 +3,12 @@ Icon=kontact_summary
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kontactsummary X-TDE-Library=kontactsummary
X-KDE-FactoryName=kontactsummary X-TDE-FactoryName=kontactsummary
X-KDE-ParentApp=kontact_summaryplugin X-TDE-ParentApp=kontact_summaryplugin
X-KDE-ParentComponents=kontact_summaryplugin X-TDE-ParentComponents=kontact_summaryplugin
X-KDE-CfgDlgHierarchy=KontactSummary X-TDE-CfgDlgHierarchy=KontactSummary
Name=Summary View Items Name=Summary View Items
Name[bg]=Обобщение Name[bg]=Обобщение

@ -3,13 +3,13 @@ Type=Service
Icon=kontact_summary Icon=kontact_summary
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkontact_summaryplugin X-TDE-Library=libkontact_summaryplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-PluginInfo-Name=kontact_summaryplugin X-TDE-PluginInfo-Name=kontact_summaryplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=LGPL X-TDE-PluginInfo-License=LGPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Summary View Component Comment=Summary View Component
Comment[bg]=Обобщение Comment[bg]=Обобщение

@ -3,12 +3,12 @@ Type=Service
Icon=konsole Icon=konsole
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
X-KDE-Library=libkptestplugin X-TDE-Library=libkptestplugin
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-PluginInfo-Name=kptestplugin X-TDE-PluginInfo-Name=kptestplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-EnabledByDefault=false X-TDE-PluginInfo-EnabledByDefault=false
Comment=Kontact Test Plugin Comment=Kontact Test Plugin
Comment[af]=Kontact toets inprop module Comment[af]=Kontact toets inprop module

@ -4,16 +4,16 @@ Icon=kweather
ServiceTypes=Kontact/Plugin,KPluginInfo ServiceTypes=Kontact/Plugin,KPluginInfo
TryExec=kweatherservice TryExec=kweatherservice
X-KDE-Library=libkontact_weatherplugin X-TDE-Library=libkontact_weatherplugin
X-KDE-KontactIdentifier=weather X-TDE-KontactIdentifier=weather
X-KDE-KontactPluginVersion=6 X-TDE-KontactPluginVersion=6
X-KDE-KontactPluginHasSummary=true X-TDE-KontactPluginHasSummary=true
X-KDE-KontactPluginHasPart=false X-TDE-KontactPluginHasPart=false
X-KDE-PluginInfo-Name=kontact_weatherplugin X-TDE-PluginInfo-Name=kontact_weatherplugin
X-KDE-PluginInfo-Version=0.1 X-TDE-PluginInfo-Version=0.1
X-KDE-PluginInfo-License=LGPL X-TDE-PluginInfo-License=LGPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Comment=Kontact Weather Component Comment=Kontact Weather Component
Comment[bg]=Приставка за метеорологичното време Comment[bg]=Приставка за метеорологичното време

@ -64,6 +64,6 @@ GenericName[uz]=Шахсий маълумот бошқарувчиси
GenericName[zh_CN]=个人信息管理器 GenericName[zh_CN]=个人信息管理器
GenericName[zh_TW]=個人資訊管理者 GenericName[zh_TW]=個人資訊管理者
Terminal=false Terminal=false
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
Categories=Qt;KDE;Office;Network;Email; Categories=Qt;TDE;Office;Network;Email;
DocPath=kontact/index.html DocPath=kontact/index.html

@ -115,20 +115,20 @@ void PluginSelection::readConfig()
{ {
const KTrader::OfferList offers = KTrader::self()->query( const KTrader::OfferList offers = KTrader::self()->query(
TQString::fromLatin1( "Kontact/Plugin" ), TQString::fromLatin1( "Kontact/Plugin" ),
TQString( "[X-KDE-KontactPluginVersion] == %1" ).arg( KONTACT_PLUGIN_VERSION ) ); TQString( "[X-TDE-KontactPluginVersion] == %1" ).arg( KONTACT_PLUGIN_VERSION ) );
int activeComponent = 0; int activeComponent = 0;
mPluginCombo->clear(); mPluginCombo->clear();
for ( KService::List::ConstIterator it = offers.begin(); it != offers.end(); ++it ) { for ( KService::List::ConstIterator it = offers.begin(); it != offers.end(); ++it ) {
KService::Ptr service = *it; KService::Ptr service = *it;
// skip summary only plugins // skip summary only plugins
TQVariant var = service->property( "X-KDE-KontactPluginHasPart" ); TQVariant var = service->property( "X-TDE-KontactPluginHasPart" );
if ( var.isValid() && var.toBool() == false ) if ( var.isValid() && var.toBool() == false )
continue; continue;
mPluginCombo->insertItem( service->name() ); mPluginCombo->insertItem( service->name() );
mPluginList.append( service ); mPluginList.append( service );
if ( service->property("X-KDE-PluginInfo-Name").toString() == mItem->value() ) if ( service->property("X-TDE-PluginInfo-Name").toString() == mItem->value() )
activeComponent = mPluginList.count() - 1; activeComponent = mPluginList.count() - 1;
} }
@ -138,7 +138,7 @@ void PluginSelection::readConfig()
void PluginSelection::writeConfig() void PluginSelection::writeConfig()
{ {
KService::Ptr ptr = *( mPluginList.at( mPluginCombo->currentItem() ) ); KService::Ptr ptr = *( mPluginList.at( mPluginCombo->currentItem() ) );
mItem->setValue( ptr->property("X-KDE-PluginInfo-Name").toString() ); mItem->setValue( ptr->property("X-TDE-PluginInfo-Name").toString() );
} }
TQValueList<TQWidget *> PluginSelection::widgets() const TQValueList<TQWidget *> PluginSelection::widgets() const

@ -4,13 +4,13 @@ Icon=kontact
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=kontact X-TDE-Library=kontact
X-KDE-FactoryName=kontactconfig X-TDE-FactoryName=kontactconfig
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=kontact X-TDE-ParentApp=kontact
X-KDE-ParentComponents=kontact X-TDE-ParentComponents=kontact
X-KDE-Weight=0 X-TDE-Weight=0
Name=Kontact Name=Kontact
Name[be]=Кантакт Name[be]=Кантакт

@ -14,5 +14,5 @@ NoDisplay=true
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
X-DCOP-ServiceName=kontact X-DCOP-ServiceName=kontact
ServiceTypes=DCOP/ResourceBackend/IMAP,DCOP/Mailer ServiceTypes=DCOP/ResourceBackend/IMAP,DCOP/Mailer
X-KDE-StartupNotify=false X-TDE-StartupNotify=false
Categories=Qt;KDE;Office Categories=Qt;TDE;Office

@ -77,11 +77,11 @@ static void listPlugins()
KInstance instance( "kontact" ); // Can't use KontactApp since it's too late for adding cmdline options KInstance instance( "kontact" ); // Can't use KontactApp since it's too late for adding cmdline options
KTrader::OfferList offers = KTrader::self()->query( KTrader::OfferList offers = KTrader::self()->query(
TQString::fromLatin1( "Kontact/Plugin" ), TQString::fromLatin1( "Kontact/Plugin" ),
TQString( "[X-KDE-KontactPluginVersion] == %1" ).arg( KONTACT_PLUGIN_VERSION ) ); TQString( "[X-TDE-KontactPluginVersion] == %1" ).arg( KONTACT_PLUGIN_VERSION ) );
for ( KService::List::Iterator it = offers.begin(); it != offers.end(); ++it ) { for ( KService::List::Iterator it = offers.begin(); it != offers.end(); ++it ) {
KService::Ptr service = (*it); KService::Ptr service = (*it);
// skip summary only plugins // skip summary only plugins
TQVariant var = service->property( "X-KDE-KontactPluginHasPart" ); TQVariant var = service->property( "X-TDE-KontactPluginHasPart" );
if ( var.isValid() && var.toBool() == false ) if ( var.isValid() && var.toBool() == false )
continue; continue;
cout << service->library().remove( "libkontact_" ).latin1() << endl; cout << service->library().remove( "libkontact_" ).latin1() << endl;

@ -125,7 +125,7 @@ void MainWindow::initGUI()
KTrader::OfferList offers = KTrader::self()->query( KTrader::OfferList offers = KTrader::self()->query(
TQString::fromLatin1( "Kontact/Plugin" ), TQString::fromLatin1( "Kontact/Plugin" ),
TQString( "[X-KDE-KontactPluginVersion] == %1" ).arg( KONTACT_PLUGIN_VERSION ) ); TQString( "[X-TDE-KontactPluginVersion] == %1" ).arg( KONTACT_PLUGIN_VERSION ) );
mPluginInfos = KPluginInfo::fromServices( offers, Prefs::self()->config(), "Plugins" ); mPluginInfos = KPluginInfo::fromServices( offers, Prefs::self()->config(), "Plugins" );
KPluginInfo::List::Iterator it; KPluginInfo::List::Iterator it;
@ -138,7 +138,7 @@ void MainWindow::initGUI()
action->setName( (*it)->pluginName().latin1() ); action->setName( (*it)->pluginName().latin1() );
action->setWhatsThis( i18n( "Switch to plugin %1" ).arg( (*it)->name() ) ); action->setWhatsThis( i18n( "Switch to plugin %1" ).arg( (*it)->name() ) );
TQVariant hasPartProp = (*it)->property( "X-KDE-KontactPluginHasPart" ); TQVariant hasPartProp = (*it)->property( "X-TDE-KontactPluginHasPart" );
if ( !hasPartProp.isValid() || hasPartProp.toBool() ) { if ( !hasPartProp.isValid() || hasPartProp.toBool() ) {
mActionPlugins.append( action ); mActionPlugins.append( action );
} }
@ -552,10 +552,10 @@ void MainWindow::loadPlugins()
plugin->setTitle( (*it)->name() ); plugin->setTitle( (*it)->name() );
plugin->setIcon( (*it)->icon() ); plugin->setIcon( (*it)->icon() );
TQVariant libNameProp = (*it)->property( "X-KDE-KontactPartLibraryName" ); TQVariant libNameProp = (*it)->property( "X-TDE-KontactPartLibraryName" );
TQVariant exeNameProp = (*it)->property( "X-KDE-KontactPartExecutableName" ); TQVariant exeNameProp = (*it)->property( "X-TDE-KontactPartExecutableName" );
TQVariant loadOnStart = (*it)->property( "X-KDE-KontactPartLoadOnStart" ); TQVariant loadOnStart = (*it)->property( "X-TDE-KontactPartLoadOnStart" );
TQVariant hasPartProp = (*it)->property( "X-KDE-KontactPluginHasPart" ); TQVariant hasPartProp = (*it)->property( "X-TDE-KontactPluginHasPart" );
if ( !loadOnStart.isNull() && loadOnStart.toBool() ) if ( !loadOnStart.isNull() && loadOnStart.toBool() )
mDelayedPreload.append( plugin ); mDelayedPreload.append( plugin );

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=DCOP/Organizer X-TDE-ServiceType=DCOP/Organizer
Comment=Organizer with a DCOP interface Comment=Organizer with a DCOP interface
Comment[af]=Organiseerder met 'n DCOP koppelvlak Comment[af]=Organiseerder met 'n DCOP koppelvlak
Comment[be]=Арганізатар з DCOP інтэрфэйсам Comment[be]=Арганізатар з DCOP інтэрфэйсам

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=Calendar/Decoration X-TDE-ServiceType=Calendar/Decoration
Comment=Calendar Decoration Plugin Comment=Calendar Decoration Plugin
Comment[af]=Kalender Versiering Inplak Comment[af]=Kalender Versiering Inplak
Comment[bg]=Приставка за декорация на календара Comment[bg]=Приставка за декорация на календара

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=Calendar/Plugin X-TDE-ServiceType=Calendar/Plugin
Comment=Calendar Plugin Comment=Calendar Plugin
Comment[af]=Kalender Inplak Comment[af]=Kalender Inplak
Comment[az]=Təqvim Əlavəsi Comment[az]=Təqvim Əlavəsi
@ -68,5 +68,5 @@ Comment[zh_CN]=日历插件
Comment[zh_TW]=行事曆外掛程式 Comment[zh_TW]=行事曆外掛程式
Comment[zu]=Iplagi Yekhalanda Comment[zu]=Iplagi Yekhalanda
[PropertyDef::X-KDE-KOrganizer-HasSettings] [PropertyDef::X-TDE-KOrganizer-HasSettings]
Type=bool Type=bool

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=KOrganizer/Part X-TDE-ServiceType=KOrganizer/Part
Comment=KOrganizer Part Comment=KOrganizer Part
Comment[af]=Korganizer Deel Comment[af]=Korganizer Deel
Comment[be]=Частка "K Арганізатар" Comment[be]=Частка "K Арганізатар"
@ -58,8 +58,8 @@ Comment[zh_CN]=KOrganizer 部件
Comment[zh_TW]=KOrganizer 組件 Comment[zh_TW]=KOrganizer 組件
Comment[zu]=KUmgqugquzeleli Wengxenye Comment[zu]=KUmgqugquzeleli Wengxenye
[PropertyDef::X-KDE-KOrganizer-HasSettings] [PropertyDef::X-TDE-KOrganizer-HasSettings]
Type=bool Type=bool
[PropertyDef::X-KDE-PluginInterfaceVersion] [PropertyDef::X-TDE-PluginInterfaceVersion]
Type=int Type=int

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=KOrganizer/PrintPlugin X-TDE-ServiceType=KOrganizer/PrintPlugin
Comment=KOrganizer Part Comment=KOrganizer Part
Comment[af]=Korganizer Deel Comment[af]=Korganizer Deel
Comment[be]=Частка "K Арганізатар" Comment[be]=Частка "K Арганізатар"
@ -58,8 +58,8 @@ Comment[zh_CN]=KOrganizer 部件
Comment[zh_TW]=KOrganizer 組件 Comment[zh_TW]=KOrganizer 組件
Comment[zu]=KUmgqugquzeleli Wengxenye Comment[zu]=KUmgqugquzeleli Wengxenye
[PropertyDef::X-KDE-KOrganizer-HasSettings] [PropertyDef::X-TDE-KOrganizer-HasSettings]
Type=bool Type=bool
[PropertyDef::X-KDE-PluginInterfaceVersion] [PropertyDef::X-TDE-PluginInterfaceVersion]
Type=int Type=int

@ -66,7 +66,7 @@ KTrader::OfferList KOCore::availablePlugins( const TQString &type, int version )
{ {
TQString constraint; TQString constraint;
if ( version >= 0 ) { if ( version >= 0 ) {
constraint = TQString("[X-KDE-PluginInterfaceVersion] == %1") constraint = TQString("[X-TDE-PluginInterfaceVersion] == %1")
.arg( TQString::number( version ) ); .arg( TQString::number( version ) );
} }

@ -1196,7 +1196,7 @@ void KOPrefsDialogPlugins::selectionChanged( TQListViewItem *i )
return; return;
} }
TQVariant variant = item->service()->property( "X-KDE-KOrganizer-HasSettings" ); TQVariant variant = item->service()->property( "X-TDE-KOrganizer-HasSettings" );
bool hasSettings = true; bool hasSettings = true;
if ( variant.isValid() ) if ( variant.isValid() )

@ -89,7 +89,7 @@ GenericName[uk]=Демон клієнта нагадування для KOrganiz
GenericName[zh_CN]=KOrganizer 定时守护进程的客户端程序 GenericName[zh_CN]=KOrganizer 定时守护进程的客户端程序
GenericName[zh_TW]=KOrganizr 提醒守護程式客戶端 GenericName[zh_TW]=KOrganizr 提醒守護程式客戶端
Terminal=false Terminal=false
X-KDE-autostart-after=panel X-TDE-autostart-after=panel
X-KDE-autostart-condition=korgacrc:General:Autostart:true X-TDE-autostart-condition=korgacrc:General:Autostart:true
NoDisplay=true NoDisplay=true
OnlyShowIn=TDE; OnlyShowIn=TDE;

@ -139,8 +139,8 @@ GenericName[uz]=Шахсий органайзер
GenericName[zh_CN]=个人日程安排 GenericName[zh_CN]=个人日程安排
GenericName[zh_TW]=個人行程組織軟體 GenericName[zh_TW]=個人行程組織軟體
ServiceTypes=Browser/View,DCOP/Organizer ServiceTypes=Browser/View,DCOP/Organizer
X-KDE-Library=libkorganizerpart X-TDE-Library=libkorganizerpart
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
X-DCOP-ServiceName=korganizer X-DCOP-ServiceName=korganizer
Categories=Qt;KDE;Office;ProjectManagement; Categories=Qt;TDE;Office;ProjectManagement;

@ -3,13 +3,13 @@ Icon=colors
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfigcolors X-TDE-FactoryName=korganizerconfigcolors
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Colors Name=Colors
Name[af]=Kleure Name[af]=Kleure

@ -4,12 +4,12 @@ Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
DocPath=korganizer/preferences.html DocPath=korganizer/preferences.html
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korgdesignerfields X-TDE-FactoryName=korgdesignerfields
X-KDE-ParentApp=kaddressbook X-TDE-ParentApp=kaddressbook
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Custom Pages Name=Custom Pages
Name[af]=Pasmaak Blaaie Name[af]=Pasmaak Blaaie

@ -3,13 +3,13 @@ Icon=fonts
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfigfonts X-TDE-FactoryName=korganizerconfigfonts
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Fonts Name=Fonts
Name[af]=Skrif tipes Name[af]=Skrif tipes

@ -3,13 +3,13 @@ Icon=personal
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfigfreebusy X-TDE-FactoryName=korganizerconfigfreebusy
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Free/Busy Name=Free/Busy
Name[af]=Beskikbaar/Besig Name[af]=Beskikbaar/Besig

@ -3,13 +3,13 @@ Icon=personal
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfiggroupautomation X-TDE-FactoryName=korganizerconfiggroupautomation
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Group Automation Name=Group Automation
Name[af]=Groep outomatisasie Name[af]=Groep outomatisasie

@ -3,13 +3,13 @@ Icon=personal
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfiggroupscheduling X-TDE-FactoryName=korganizerconfiggroupscheduling
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Group Scheduling Name=Group Scheduling
Name[af]=Groep Skedulering Name[af]=Groep Skedulering

@ -3,13 +3,13 @@ Icon=identity
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfigmain X-TDE-FactoryName=korganizerconfigmain
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Personal Name=Personal
Name[af]=Persoonlik Name[af]=Persoonlik

@ -3,13 +3,13 @@ Icon=identity
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfigplugins X-TDE-FactoryName=korganizerconfigplugins
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Plugins Name=Plugins
Name[af]=Inprop modules Name[af]=Inprop modules

@ -3,13 +3,13 @@ Icon=clock
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfigtime X-TDE-FactoryName=korganizerconfigtime
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Time & Date Name=Time & Date
Name[af]=Datum & Tyd Name[af]=Datum & Tyd

@ -3,13 +3,13 @@ Icon=viewmag
Type=Service Type=Service
ServiceTypes=KCModule ServiceTypes=KCModule
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=korganizer X-TDE-Library=korganizer
X-KDE-FactoryName=korganizerconfigviews X-TDE-FactoryName=korganizerconfigviews
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
X-KDE-ParentApp=korganizer X-TDE-ParentApp=korganizer
X-KDE-ParentComponents=korganizer,kontact_korganizerplugin X-TDE-ParentComponents=korganizer,kontact_korganizerplugin
X-KDE-CfgDlgHierarchy=KOrganizer X-TDE-CfgDlgHierarchy=KOrganizer
Name=Views Name=Views
Name[af]=Aansigte Name[af]=Aansigte

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_datenums X-TDE-Library=libkorg_datenums
Name=Date Numbers Plugin for Calendars Name=Date Numbers Plugin for Calendars
Name[af]=Dag nommer inprop module vir kalenders Name[af]=Dag nommer inprop module vir kalenders
Name[ar]=قابس أرقام التاريخ للتقويم Name[ar]=قابس أرقام التاريخ للتقويم
@ -93,5 +93,5 @@ Comment[zh_CN]=此插件可对每天在议事日程视图中上方显示该日
Comment[zh_TW]=對每一天,此外掛程式會顯示這是一年中的第幾天。 Comment[zh_TW]=對每一天,此外掛程式會顯示這是一年中的第幾天。
Type=Service Type=Service
ServiceTypes=Calendar/Plugin,Calendar/Decoration ServiceTypes=Calendar/Plugin,Calendar/Decoration
X-KDE-KOrganizer-HasSettings=true X-TDE-KOrganizer-HasSettings=true
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_exchange X-TDE-Library=libkorg_exchange
Name=Microsoft Exchange 2000 Plugin for KOrganizer Name=Microsoft Exchange 2000 Plugin for KOrganizer
Name[af]=Microsoft Exchange 2000 inprop module vir KOrganizer Name[af]=Microsoft Exchange 2000 inprop module vir KOrganizer
Name[be]=Дапаўненне K Арганізатара "Microsoft Exchange 2000" Name[be]=Дапаўненне K Арганізатара "Microsoft Exchange 2000"
@ -95,5 +95,5 @@ Comment[zh_CN]=此插件允许 KOrganizer 用户与 Microsoft Exchange 2000 群
Comment[zh_TW]=這個外掛程式允許 KOrganizer 使用者與 Microsoft Exchange 2000 群組伺服器一起工作。 Comment[zh_TW]=這個外掛程式允許 KOrganizer 使用者與 Microsoft Exchange 2000 群組伺服器一起工作。
Type=Service Type=Service
ServiceTypes=KOrganizer/Part ServiceTypes=KOrganizer/Part
X-KDE-KOrganizer-HasSettings=false X-TDE-KOrganizer-HasSettings=false
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_hebrew X-TDE-Library=libkorg_hebrew
Name=Jewish Calendar Plugin Name=Jewish Calendar Plugin
Name[af]=Joodse kalender inprop module Name[af]=Joodse kalender inprop module
Name[bg]=Приставка за еврейския календар Name[bg]=Приставка за еврейския календар
@ -95,5 +95,5 @@ Comment[zh_CN]=在 KOrganizer 中显示犹太教日历系统的全部日期。
Comment[zh_TW]=顯示所有猶太行事曆的日期 Comment[zh_TW]=顯示所有猶太行事曆的日期
Type=Service Type=Service
ServiceTypes=Calendar/Plugin,Calendar/Decoration ServiceTypes=Calendar/Plugin,Calendar/Decoration
X-KDE-KOrganizer-HasSettings=true X-TDE-KOrganizer-HasSettings=true
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_journalprint X-TDE-Library=libkorg_journalprint
Name=Journal Print Style Name=Journal Print Style
Name[af]=Joernaal druk styl Name[af]=Joernaal druk styl
Name[bg]=Стил на отпечатване на календар Name[bg]=Стил на отпечатване на календар
@ -89,5 +89,5 @@ Comment[zh_CN]=此插件允许您打印日记项目。
Comment[zh_TW]=此外掛程式讓您印出日誌項目。 Comment[zh_TW]=此外掛程式讓您印出日誌項目。
Type=Service Type=Service
ServiceTypes=Calendar/Plugin,KOrganizer/PrintPlugin ServiceTypes=Calendar/Plugin,KOrganizer/PrintPlugin
X-KDE-KOrganizer-HasSettings=false X-TDE-KOrganizer-HasSettings=false
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_listprint X-TDE-Library=libkorg_listprint
Name=List Print Style Name=List Print Style
Name[af]=Lys druk styl Name[af]=Lys druk styl
Name[bg]=Печат като списък Name[bg]=Печат като списък
@ -89,5 +89,5 @@ Comment[zh_CN]=此插件允许您以列表格式打印事件和待办事宜。
Comment[zh_TW]=此外掛程式允許您以清單格式印出事件與待辦事項。 Comment[zh_TW]=此外掛程式允許您以清單格式印出事件與待辦事項。
Type=Service Type=Service
ServiceTypes=Calendar/Plugin,KOrganizer/PrintPlugin ServiceTypes=Calendar/Plugin,KOrganizer/PrintPlugin
X-KDE-KOrganizer-HasSettings=false X-TDE-KOrganizer-HasSettings=false
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_whatsnextprint X-TDE-Library=libkorg_whatsnextprint
Name=What's Next Print Style Name=What's Next Print Style
Name[af]=Wat is volgende - druk styl Name[af]=Wat is volgende - druk styl
Name[bg]=Стил за отпечатване на "Какво следва" Name[bg]=Стил за отпечатване на "Какво следва"
@ -89,5 +89,5 @@ Comment[zh_CN]=此插件允许您打印所有即将到达的事件和代办事
Comment[zh_TW]=此外掛程式允許您印出即將發生的事件與待辦事項清單。 Comment[zh_TW]=此外掛程式允許您印出即將發生的事件與待辦事項清單。
Type=Service Type=Service
ServiceTypes=Calendar/Plugin,KOrganizer/PrintPlugin ServiceTypes=Calendar/Plugin,KOrganizer/PrintPlugin
X-KDE-KOrganizer-HasSettings=false X-TDE-KOrganizer-HasSettings=false
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_yearlyprint X-TDE-Library=libkorg_yearlyprint
Name=Yearly Print Style Name=Yearly Print Style
Name[af]=Druk styl: Jaarliks Name[af]=Druk styl: Jaarliks
Name[bg]=Стил за отпечатване на годишно разписание Name[bg]=Стил за отпечатване на годишно разписание
@ -78,5 +78,5 @@ Comment[zh_CN]=此插件允许您打印年历。
Comment[zh_TW]=此外掛程式讓您印出年曆。 Comment[zh_TW]=此外掛程式讓您印出年曆。
Type=Service Type=Service
ServiceTypes=Calendar/Plugin,KOrganizer/PrintPlugin ServiceTypes=Calendar/Plugin,KOrganizer/PrintPlugin
X-KDE-KOrganizer-HasSettings=false X-TDE-KOrganizer-HasSettings=false
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_projectview X-TDE-Library=libkorg_projectview
Name=Project View Plugin for KOrganizer Name=Project View Plugin for KOrganizer
Name[af]=Projek Besigtig Inplak vir Korganizer Name[af]=Projek Besigtig Inplak vir Korganizer
Name[az]=KOrganizer Layihə Nümayiş Əlavəsi Name[az]=KOrganizer Layihə Nümayiş Əlavəsi
@ -106,5 +106,5 @@ Comment[zh_CN]=此插件为 KOrganizer 提供了项目规划视图(类似于待
Comment[zh_TW]=此外掛程式提供 KOrganizer 專案計畫檢視。如果您開啟此外掛程式,您可以切換專案檢視與待辦事項清單。 Comment[zh_TW]=此外掛程式提供 KOrganizer 專案計畫檢視。如果您開啟此外掛程式,您可以切換專案檢視與待辦事項清單。
Type=Service Type=Service
ServiceTypes=KOrganizer/Part ServiceTypes=KOrganizer/Part
X-KDE-KOrganizer-HasSettings=false X-TDE-KOrganizer-HasSettings=false
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -1,5 +1,5 @@
[Desktop Entry] [Desktop Entry]
X-KDE-Library=libkorg_timespanview X-TDE-Library=libkorg_timespanview
Name=Timespan View Plugin for KOrganizer Name=Timespan View Plugin for KOrganizer
Name[af]=Tydlyn aansig inprop module vir KOrganizer Name[af]=Tydlyn aansig inprop module vir KOrganizer
Name[bg]=Приставка за разпределението на времето в организатора Name[bg]=Приставка за разпределението на времето в организатора
@ -88,5 +88,5 @@ Comment[zh_CN]=此插件为 KOrganizer 提供了时间跨度视图(类似于待
Comment[zh_TW]=此外掛程式提供時間檢視模式。如果您開啟此外掛程式,您可以切換時間檢視,讓您使用類似甘特圖的圖形來檢視事件。 Comment[zh_TW]=此外掛程式提供時間檢視模式。如果您開啟此外掛程式,您可以切換時間檢視,讓您使用類似甘特圖的圖形來檢視事件。
Type=Service Type=Service
ServiceTypes=KOrganizer/Part ServiceTypes=KOrganizer/Part
X-KDE-KOrganizer-HasSettings=false X-TDE-KOrganizer-HasSettings=false
X-KDE-PluginInterfaceVersion=2 X-TDE-PluginInterfaceVersion=2

@ -73,4 +73,4 @@ Name[ne]=कर्न
Name[ta]=கார்ன் Name[ta]=கார்ன்
Name[zh_TW]=Korn 信件通知 Name[zh_TW]=Korn 信件通知
X-DCOP-ServiceType=Unique X-DCOP-ServiceType=Unique
Categories=Qt;KDE;Office;Email; Categories=Qt;TDE;Office;Email;

@ -54,8 +54,8 @@ Name[tr]=KDE Adres Defterinden Doğum Günleri
Name[uk]=Дні народження з KAddressBook Name[uk]=Дні народження з KAddressBook
Name[zh_CN]=KAddressBook 中的生日 Name[zh_CN]=KAddressBook 中的生日
Name[zh_TW]=自 KaddressBook 匯入生日 Name[zh_TW]=自 KaddressBook 匯入生日
X-KDE-Library=kcal_kabc X-TDE-Library=kcal_kabc
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=birthdays X-TDE-ResourceType=birthdays

@ -42,8 +42,8 @@ Name[tr]=Web Günlüğü gibi, bir Sunucuya yazar
Name[uk]=Журнали як веб-щоденники на сервері Name[uk]=Журнали як веб-щоденники на сервері
Name[zh_CN]=日记作为服务器上的博客日志 Name[zh_CN]=日记作为服务器上的博客日志
Name[zh_TW]=日誌做為伺服器上的部落格 Name[zh_TW]=日誌做為伺服器上的部落格
X-KDE-Library=kcal_blogging X-TDE-Library=kcal_blogging
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=blogging X-TDE-ResourceType=blogging

@ -45,8 +45,8 @@ Name[tr]=CalDAV Sunucusu (ör. Google Calendar)
Name[uk]=Сервер CalDAV (напр., Google Calendar) Name[uk]=Сервер CalDAV (напр., Google Calendar)
Name[zh_CN]=CalDAV 服务器(如 Google Calendar) Name[zh_CN]=CalDAV 服务器(如 Google Calendar)
Name[zh_TW]=CalDAV 伺服器 (如: Google Calendar) Name[zh_TW]=CalDAV 伺服器 (如: Google Calendar)
X-KDE-Library=kcal_caldav X-TDE-Library=kcal_caldav
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=caldav X-TDE-ResourceType=caldav

@ -45,8 +45,8 @@ Name[tr]=CardDAV Sunucusu (ör. Zimbra Contacts)
Name[uk]=Сервер CardDAV (напр., Zimbra Contacts) Name[uk]=Сервер CardDAV (напр., Zimbra Contacts)
Name[zh_CN]=CardDAV 服务器(如 Zimbra Contacts) Name[zh_CN]=CardDAV 服务器(如 Zimbra Contacts)
Name[zh_TW]=CardDAV 伺服器 (如: Zimbra Contacts) Name[zh_TW]=CardDAV 伺服器 (如: Zimbra Contacts)
X-KDE-Library=kabc_carddav X-TDE-Library=kabc_carddav
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=carddav X-TDE-ResourceType=carddav

@ -43,8 +43,8 @@ Name[tr]=eGroupware Sunucusu (XML-RPC ile)
Name[uk]=Сервер eGroupware (через XML-RPC) Name[uk]=Сервер eGroupware (через XML-RPC)
Name[zh_CN]=eGroupware 服务器(通过 XML-RPC) Name[zh_CN]=eGroupware 服务器(通过 XML-RPC)
Name[zh_TW]=eGroupware 伺服器(透過 XML-RPC) Name[zh_TW]=eGroupware 伺服器(透過 XML-RPC)
X-KDE-Library=kabc_xmlrpc X-TDE-Library=kabc_xmlrpc
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=xmlrpc X-TDE-ResourceType=xmlrpc

@ -43,8 +43,8 @@ Name[tr]=eGroupware Sunucusu (XML-RPC ile)
Name[uk]=Сервер eGroupware (через XML-RPC) Name[uk]=Сервер eGroupware (через XML-RPC)
Name[zh_CN]=eGroupware 服务器(通过 XML-RPC) Name[zh_CN]=eGroupware 服务器(通过 XML-RPC)
Name[zh_TW]=eGroupware 伺服器(透過 XML-RPC) Name[zh_TW]=eGroupware 伺服器(透過 XML-RPC)
X-KDE-Library=kcal_xmlrpc X-TDE-Library=kcal_xmlrpc
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=xmlrpc X-TDE-ResourceType=xmlrpc

@ -43,8 +43,8 @@ Name[tr]=eGroupware Sunucusu (XML-RPC ile)
Name[uk]=Сервер eGroupware (через XML-RPC) Name[uk]=Сервер eGroupware (через XML-RPC)
Name[zh_CN]=eGroupware 服务器(通过 XML-RPC) Name[zh_CN]=eGroupware 服务器(通过 XML-RPC)
Name[zh_TW]=eGroupware 伺服器(透過 XML-RPC) Name[zh_TW]=eGroupware 伺服器(透過 XML-RPC)
X-KDE-Library=knotes_xmlrpc X-TDE-Library=knotes_xmlrpc
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=notes X-TDE-ResourceFamily=notes
X-KDE-ResourceType=xmlrpc X-TDE-ResourceType=xmlrpc

@ -1,8 +1,8 @@
[Desktop Entry] [Desktop Entry]
Type=Service Type=Service
X-KDE-Library=resourcecalendarexchange X-TDE-Library=resourcecalendarexchange
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=exchange X-TDE-ResourceType=exchange
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
Name=Exchange 2000 Server Name=Exchange 2000 Server
Name[af]=Exchange 2000 Bediener Name[af]=Exchange 2000 Bediener

@ -34,8 +34,8 @@ Name[ta]=XML பண்பு திட்டம்
Name[tr]=XML Özellik Planı Name[tr]=XML Özellik Planı
Name[zh_CN]=XML 特性计划 Name[zh_CN]=XML 特性计划
Name[zh_TW]=XML 功能計畫 Name[zh_TW]=XML 功能計畫
X-KDE-Library=kcal_resourcefeatureplan X-TDE-Library=kcal_resourcefeatureplan
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=featureplan X-TDE-ResourceType=featureplan

@ -45,8 +45,8 @@ Name[tr]=GroupDAV Sunucusu (ör. OpenGroupware)
Name[uk]=Сервер GroupDAV (напр., OpenGroupware) Name[uk]=Сервер GroupDAV (напр., OpenGroupware)
Name[zh_CN]=GroupDAV 服务器(如 OpenGroupware) Name[zh_CN]=GroupDAV 服务器(如 OpenGroupware)
Name[zh_TW]=GroupDAV 伺服器 (如: OpenGroupware) Name[zh_TW]=GroupDAV 伺服器 (如: OpenGroupware)
X-KDE-Library=kabc_groupdav X-TDE-Library=kabc_groupdav
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=groupdav X-TDE-ResourceType=groupdav

@ -45,8 +45,8 @@ Name[tr]=GroupDAV Sunucusu (ör. OpenGroupware)
Name[uk]=Сервер GroupDAV (напр., OpenGroupware) Name[uk]=Сервер GroupDAV (напр., OpenGroupware)
Name[zh_CN]=GroupDAV 服务器(如 OpenGroupware) Name[zh_CN]=GroupDAV 服务器(如 OpenGroupware)
Name[zh_TW]=GroupDAV 伺服器 (如: OpenGroupware) Name[zh_TW]=GroupDAV 伺服器 (如: OpenGroupware)
X-KDE-Library=kcal_groupdav X-TDE-Library=kcal_groupdav
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=groupdav X-TDE-ResourceType=groupdav

@ -42,8 +42,8 @@ Name[tr]=Grupyazılımı(Groupware) Sunucusu
Name[uk]=Сервер Groupware Name[uk]=Сервер Groupware
Name[zh_CN]=群件服务器 Name[zh_CN]=群件服务器
Name[zh_TW]=群組伺服器 Name[zh_TW]=群組伺服器
X-KDE-Library=kabc_groupware X-TDE-Library=kabc_groupware
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=groupware X-TDE-ResourceType=groupware

@ -42,8 +42,8 @@ Name[tr]=Grupyazılımı(Groupware) Sunucusu
Name[uk]=Сервер Groupware Name[uk]=Сервер Groupware
Name[zh_CN]=群件服务器 Name[zh_CN]=群件服务器
Name[zh_TW]=群組伺服器 Name[zh_TW]=群組伺服器
X-KDE-Library=kcal_groupware X-TDE-Library=kcal_groupware
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=groupware X-TDE-ResourceType=groupware

@ -43,8 +43,8 @@ Name[tr]=Novell GroupWise Sunucusu
Name[uk]=Сервер Novell GroupWise Name[uk]=Сервер Novell GroupWise
Name[zh_CN]=Novell GroupWise 服务器 Name[zh_CN]=Novell GroupWise 服务器
Name[zh_TW]=Novell 群組伺服器 Name[zh_TW]=Novell 群組伺服器
X-KDE-Library=kabc_groupwise X-TDE-Library=kabc_groupwise
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=groupwise X-TDE-ResourceType=groupwise

@ -43,8 +43,8 @@ Name[tr]=Novell GroupWise Sunucusu
Name[uk]=Сервер Novell GroupWise Name[uk]=Сервер Novell GroupWise
Name[zh_CN]=Novell GroupWise 服务器 Name[zh_CN]=Novell GroupWise 服务器
Name[zh_TW]=Novell 群組伺服器 Name[zh_TW]=Novell 群組伺服器
X-KDE-Library=kcal_groupwise X-TDE-Library=kcal_groupwise
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=groupwise X-TDE-ResourceType=groupwise

@ -45,8 +45,8 @@ Name[tr]=KMail Aracılığı ile IMAP Sunucusunda Adres Defteri
Name[uk]=Адресна книга на сервері IMAP через KMail Name[uk]=Адресна книга на сервері IMAP через KMail
Name[zh_CN]=通过 KMail 访问 IMAP 服务器上的地址簿 Name[zh_CN]=通过 KMail 访问 IMAP 服务器上的地址簿
Name[zh_TW]=透過 KMail 取得 IMAP 伺服器上的通訊錄 Name[zh_TW]=透過 KMail 取得 IMAP 伺服器上的通訊錄
X-KDE-Library=kabc_kolab X-TDE-Library=kabc_kolab
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=imap X-TDE-ResourceType=imap

@ -532,7 +532,7 @@ bool Incidence::loadAttribute( TQDomElement& element )
// Unhandled tag - save for later storage // Unhandled tag - save for later storage
//kdDebug() << "Saving unhandled tag " << element.tagName() << endl; //kdDebug() << "Saving unhandled tag " << element.tagName() << endl;
Custom c; Custom c;
c.key = TQCString( "X-KDE-KolabUnhandled-" ) + element.tagName().latin1(); c.key = TQCString( "X-TDE-KolabUnhandled-" ) + element.tagName().latin1();
c.value = element.text(); c.value = element.text();
mCustomList.append( c ); mCustomList.append( c );
} }
@ -574,8 +574,8 @@ void Incidence::saveCustomAttributes( TQDomElement& element ) const
for ( ; it != mCustomList.end(); ++it ) { for ( ; it != mCustomList.end(); ++it ) {
TQString key = (*it).key; TQString key = (*it).key;
Q_ASSERT( !key.isEmpty() ); Q_ASSERT( !key.isEmpty() );
if ( key.startsWith( "X-KDE-KolabUnhandled-" ) ) { if ( key.startsWith( "X-TDE-KolabUnhandled-" ) ) {
key = key.mid( strlen( "X-KDE-KolabUnhandled-" ) ); key = key.mid( strlen( "X-TDE-KolabUnhandled-" ) );
writeString( element, key, (*it).value ); writeString( element, key, (*it).value );
} else { } else {
// Let's use attributes so that other tag-preserving-code doesn't need sub-elements // Let's use attributes so that other tag-preserving-code doesn't need sub-elements

@ -45,8 +45,8 @@ Name[tr]=KMail Aracılığı ile IMAP Sunucusunda Takvim
Name[uk]=Календар на сервері IMAP через KMail Name[uk]=Календар на сервері IMAP через KMail
Name[zh_CN]=通过 KMail 访问 IMAP 服务器上的日历 Name[zh_CN]=通过 KMail 访问 IMAP 服务器上的日历
Name[zh_TW]=透過 KMail 取得 IMAP 伺服器上的行事曆 Name[zh_TW]=透過 KMail 取得 IMAP 伺服器上的行事曆
X-KDE-Library=kcal_kolab X-TDE-Library=kcal_kolab
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=imap X-TDE-ResourceType=imap

@ -45,8 +45,8 @@ Name[tr]=KMail aracılığı ile IMAP Sunucu
Name[uk]=Сервер IMAP через KMail Name[uk]=Сервер IMAP через KMail
Name[zh_CN]=通过 KMail 访问 IMAP 服务器 Name[zh_CN]=通过 KMail 访问 IMAP 服务器
Name[zh_TW]=透過 KMail 取得 IMAP 伺服器 Name[zh_TW]=透過 KMail 取得 IMAP 伺服器
X-KDE-Library=knotes_kolab X-TDE-Library=knotes_kolab
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=notes X-TDE-ResourceFamily=notes
X-KDE-ResourceType=imap X-TDE-ResourceType=imap

@ -44,8 +44,8 @@ Name[tr]=Bir Exchange Sunucusu üzerinde Adres Defteri (deneyimsel)
Name[uk]=Адресна книга на сервері Exchange (експериментальне) Name[uk]=Адресна книга на сервері Exchange (експериментальне)
Name[zh_CN]=Exchange 服务器上的地址簿(试验性) Name[zh_CN]=Exchange 服务器上的地址簿(试验性)
Name[zh_TW]=Exchanger 伺服器的通訊錄(實驗中) Name[zh_TW]=Exchanger 伺服器的通訊錄(實驗中)
X-KDE-Library=kabc_newexchange X-TDE-Library=kabc_newexchange
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=newexchange X-TDE-ResourceType=newexchange

@ -44,8 +44,8 @@ Name[tr]=Bir Exchange Sunucusu üzerinde Takvim (deneyimsel)
Name[uk]=Календар на сервері Exchange (експериментальне) Name[uk]=Календар на сервері Exchange (експериментальне)
Name[zh_CN]=Exchange 服务器上的日历(试验性) Name[zh_CN]=Exchange 服务器上的日历(试验性)
Name[zh_TW]=Exchanger 伺服器上的行事曆(實驗中) Name[zh_TW]=Exchanger 伺服器上的行事曆(實驗中)
X-KDE-Library=kcal_newexchange X-TDE-Library=kcal_newexchange
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=newexchange X-TDE-ResourceType=newexchange

@ -50,8 +50,8 @@ Name[tr]=Uzak Dosyadaki Takvim
Name[uk]=Календар у віддаленому файлі Name[uk]=Календар у віддаленому файлі
Name[zh_CN]=远程文件中的日历 Name[zh_CN]=远程文件中的日历
Name[zh_TW]=遠端檔案的行事曆 Name[zh_TW]=遠端檔案的行事曆
X-KDE-Library=kcal_remote X-TDE-Library=kcal_remote
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=remote X-TDE-ResourceType=remote

@ -23,8 +23,8 @@ Name[sv]=Adressbok på Scalix-server via Kmail
Name[tr]=KMail Aracılığı ile Scalix Sunucusunda Adres Defteri Name[tr]=KMail Aracılığı ile Scalix Sunucusunda Adres Defteri
Name[zh_CN]=通过 KMail 访问 Scalix 服务器上的地址簿 Name[zh_CN]=通过 KMail 访问 Scalix 服务器上的地址簿
Name[zh_TW]=透過 KMail 取得 Scalix 伺服器上的通訊錄 Name[zh_TW]=透過 KMail 取得 Scalix 伺服器上的通訊錄
X-KDE-Library=kabc_scalix X-TDE-Library=kabc_scalix
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=scalix X-TDE-ResourceType=scalix

@ -24,8 +24,8 @@ Name[sv]=Kalender på Scalix-server via Kmail
Name[tr]=KMail Aracılığı ile Scalix Sunucusunda Takvim Name[tr]=KMail Aracılığı ile Scalix Sunucusunda Takvim
Name[zh_CN]=通过 KMail 访问 Scalix 服务器上的日历 Name[zh_CN]=通过 KMail 访问 Scalix 服务器上的日历
Name[zh_TW]=透過 KMail 取得 Scalix 伺服器上的行事曆 Name[zh_TW]=透過 KMail 取得 Scalix 伺服器上的行事曆
X-KDE-Library=kcal_scalix X-TDE-Library=kcal_scalix
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=scalix X-TDE-ResourceType=scalix

@ -23,8 +23,8 @@ Name[sv]=Anteckningar på Scalix-server via Kmail
Name[tr]=KMail Aracılığı ile Scalix Sunucusunda Takvim Name[tr]=KMail Aracılığı ile Scalix Sunucusunda Takvim
Name[zh_CN]=通过 KMail 访问 Scalix 服务器上的日历 Name[zh_CN]=通过 KMail 访问 Scalix 服务器上的日历
Name[zh_TW]=透過 KMail 取得 Scalix 伺服器上的便條 Name[zh_TW]=透過 KMail 取得 Scalix 伺服器上的便條
X-KDE-Library=knotes_scalix X-TDE-Library=knotes_scalix
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=notes X-TDE-ResourceFamily=notes
X-KDE-ResourceType=scalix X-TDE-ResourceType=scalix

@ -39,8 +39,8 @@ Name[tr]=OpenXchange Sunucusu
Name[uk]=Сервер OpenXchange Name[uk]=Сервер OpenXchange
Name[zh_CN]=OpenXchange 服务器 Name[zh_CN]=OpenXchange 服务器
Name[zh_TW]=OpenXchange 伺服器 Name[zh_TW]=OpenXchange 伺服器
X-KDE-Library=kabc_slox X-TDE-Library=kabc_slox
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=ox X-TDE-ResourceType=ox

@ -44,8 +44,8 @@ Name[tr]=SUSE LINUX Openexchange Sunucusu
Name[uk]=Сервер SUSE LINUX Openexchange Name[uk]=Сервер SUSE LINUX Openexchange
Name[zh_CN]=SUSE LINUX Openexchange 服务器 Name[zh_CN]=SUSE LINUX Openexchange 服务器
Name[zh_TW]=SUSE LINUX Openexchange 伺服器 Name[zh_TW]=SUSE LINUX Openexchange 伺服器
X-KDE-Library=kabc_slox X-TDE-Library=kabc_slox
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=contact X-TDE-ResourceFamily=contact
X-KDE-ResourceType=slox X-TDE-ResourceType=slox

@ -39,8 +39,8 @@ Name[tr]=OpenXchange Sunucusu
Name[uk]=Сервер OpenXchange Name[uk]=Сервер OpenXchange
Name[zh_CN]=OpenXchange 服务器 Name[zh_CN]=OpenXchange 服务器
Name[zh_TW]=OpenXchange 伺服器 Name[zh_TW]=OpenXchange 伺服器
X-KDE-Library=kcal_slox X-TDE-Library=kcal_slox
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=ox X-TDE-ResourceType=ox

@ -44,8 +44,8 @@ Name[tr]=SUSE LINUX Openexchange Sunucusu
Name[uk]=Сервер SUSE LINUX Openexchange Name[uk]=Сервер SUSE LINUX Openexchange
Name[zh_CN]=SUSE LINUX Openexchange 服务器 Name[zh_CN]=SUSE LINUX Openexchange 服务器
Name[zh_TW]=SUSE LINUX Openexchange 伺服器 Name[zh_TW]=SUSE LINUX Openexchange 伺服器
X-KDE-Library=kcal_slox X-TDE-Library=kcal_slox
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=slox X-TDE-ResourceType=slox

@ -44,8 +44,8 @@ Name[tr]=TV Programı
Name[uk]=Програма телебачення Name[uk]=Програма телебачення
Name[zh_CN]=电视日程安排 Name[zh_CN]=电视日程安排
Name[zh_TW]=電視時刻表 Name[zh_TW]=電視時刻表
X-KDE-Library=kcal_tvanytime X-TDE-Library=kcal_tvanytime
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=tvschedule X-TDE-ResourceType=tvschedule

@ -104,4 +104,4 @@ Comment[zh_CN]=TNEF 文件的查看/提取器
Comment[zh_TW]=TNEF 檔案檢視器 Comment[zh_TW]=TNEF 檔案檢視器
Terminal=false Terminal=false
MimeType=application/ms-tnef; MimeType=application/ms-tnef;
Categories=Qt;KDE;Office; Categories=Qt;TDE;Office;

@ -41,7 +41,7 @@ The get-method that returns the schedulingID checks if this is set
at all. If not, it returns the UID. And when the incidence is saved in at all. If not, it returns the UID. And when the incidence is saved in
iCal, the schedulingID (i.e. the UID if no SID is there) is saved in iCal, the schedulingID (i.e. the UID if no SID is there) is saved in
the iCal UID field, and if schedulingID is not null, the UID of the the iCal UID field, and if schedulingID is not null, the UID of the
incidence is saved in X-KDE-LIBKCAL-ID. The reason for this is incidence is saved in X-TDE-LIBKCAL-ID. The reason for this is
compatibility with other iCal based applications, because they expect compatibility with other iCal based applications, because they expect
the UID of the invitation to be saved in the iCal UID field. In the the UID of the invitation to be saved in the iCal UID field. In the
Kolab resource XML format, there is a tag <scheduling-id> where it is Kolab resource XML format, there is a tag <scheduling-id> where it is

@ -60,7 +60,7 @@ void CustomProperties::setCustomProperty(const TQCString &app, const TQCString &
{ {
if (value.isNull() || key.isEmpty() || app.isEmpty()) if (value.isNull() || key.isEmpty() || app.isEmpty())
return; return;
TQCString property = "X-KDE-" + app + "-" + key; TQCString property = "X-TDE-" + app + "-" + key;
if (!checkName(property)) if (!checkName(property))
return; return;
mProperties[property] = value; mProperties[property] = value;
@ -69,12 +69,12 @@ void CustomProperties::setCustomProperty(const TQCString &app, const TQCString &
void CustomProperties::removeCustomProperty(const TQCString &app, const TQCString &key) void CustomProperties::removeCustomProperty(const TQCString &app, const TQCString &key)
{ {
removeNonKDECustomProperty(TQCString("X-KDE-" + app + "-" + key)); removeNonKDECustomProperty(TQCString("X-TDE-" + app + "-" + key));
} }
TQString CustomProperties::customProperty(const TQCString &app, const TQCString &key) const TQString CustomProperties::customProperty(const TQCString &app, const TQCString &key) const
{ {
return nonKDECustomProperty(TQCString("X-KDE-" + app + "-" + key)); return nonKDECustomProperty(TQCString("X-TDE-" + app + "-" + key));
} }
void CustomProperties::setNonKDECustomProperty(const TQCString &name, const TQString &value) void CustomProperties::setNonKDECustomProperty(const TQCString &name, const TQString &value)

@ -33,7 +33,7 @@ namespace KCal {
/** /**
This class represents custom calendar properties. This class represents custom calendar properties.
It is used as a base class for classes which represent calendar components. It is used as a base class for classes which represent calendar components.
A custom property name written by libkcal has the form X-KDE-APP-KEY where A custom property name written by libkcal has the form X-TDE-APP-KEY where
APP represents the application name, and KEY distinguishes individual APP represents the application name, and KEY distinguishes individual
properties for the application. properties for the application.
In keeping with RFC2445, property names must be composed only of the In keeping with RFC2445, property names must be composed only of the

@ -60,4 +60,4 @@ Name[zh_TW]=行事曆
Type=Service Type=Service
ServiceTypes=KResources/Manager ServiceTypes=KResources/Manager
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar

@ -52,8 +52,8 @@ Name[tr]=Yerel Dosyadaki Takvim
Name[uk]=Календар у локальному файлі Name[uk]=Календар у локальному файлі
Name[zh_CN]=本地文件中的日历 Name[zh_CN]=本地文件中的日历
Name[zh_TW]=本地檔案中的行事曆 Name[zh_TW]=本地檔案中的行事曆
X-KDE-Library=kcal_local X-TDE-Library=kcal_local
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=file X-TDE-ResourceType=file

@ -52,8 +52,8 @@ Name[tr]=Yerel Dizindeki Takvim
Name[uk]=Календар у локальному каталозі Name[uk]=Календар у локальному каталозі
Name[zh_CN]=本地目录中的日历 Name[zh_CN]=本地目录中的日历
Name[zh_TW]=本地目錄中的行事曆 Name[zh_TW]=本地目錄中的行事曆
X-KDE-Library=kcal_localdir X-TDE-Library=kcal_localdir
Type=Service Type=Service
ServiceTypes=KResources/Plugin ServiceTypes=KResources/Plugin
X-KDE-ResourceFamily=calendar X-TDE-ResourceFamily=calendar
X-KDE-ResourceType=localdir X-TDE-ResourceType=localdir

@ -16,7 +16,7 @@ BEGIN:VALARM
DESCRIPTION:Every 4 days DESCRIPTION:Every 4 days
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -16,7 +16,7 @@ BEGIN:VALARM
DESCRIPTION:Every 3 weeks on Tu\, Sa and Su DESCRIPTION:Every 3 weeks on Tu\, Sa and Su
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -16,7 +16,7 @@ BEGIN:VALARM
DESCRIPTION:Every 4 hours DESCRIPTION:Every 4 hours
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -17,7 +17,7 @@ BEGIN:VALARM
DESCRIPTION:Every 4 hours 3 minutes DESCRIPTION:Every 4 hours 3 minutes
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT4H3M TRIGGER;VALUE=DURATION:PT4H3M
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -16,7 +16,7 @@ BEGIN:VALARM
DESCRIPTION:Every 2 months on the 24th DESCRIPTION:Every 2 months on the 24th
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -15,15 +15,15 @@ BEGIN:VALARM
DESCRIPTION:At login DESCRIPTION:At login
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
BEGIN:VALARM BEGIN:VALARM
DESCRIPTION:At login DESCRIPTION:At login
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:-P9DT35S TRIGGER;VALUE=DURATION:-P9DT35S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
X-KDE-KALARM-TYPE:LOGIN X-TDE-KALARM-TYPE:LOGIN
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -16,7 +16,7 @@ BEGIN:VALARM
DESCRIPTION:every 3 years on the 3. tuesday in may and november DESCRIPTION:every 3 years on the 3. tuesday in may and november
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -16,7 +16,7 @@ BEGIN:VALARM
DESCRIPTION:every 2 months on the 2nd-to-last wednesday DESCRIPTION:every 2 months on the 2nd-to-last wednesday
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -17,7 +17,7 @@ BEGIN:VALARM
DESCRIPTION:Every 4 minutes DESCRIPTION:Every 4 minutes
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT16M TRIGGER;VALUE=DURATION:PT16M
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -16,7 +16,7 @@ BEGIN:VALARM
DESCRIPTION:every 2 years on the 27. of march\, july and november DESCRIPTION:every 2 years on the 27. of march\, july and november
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -16,7 +16,7 @@ BEGIN:VALARM
DESCRIPTION:Every 4 days DESCRIPTION:Every 4 days
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -36,7 +36,7 @@ BEGIN:VALARM
DESCRIPTION:Every 3 weeks on Tu\, Sa and Su DESCRIPTION:Every 3 weeks on Tu\, Sa and Su
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -56,7 +56,7 @@ BEGIN:VALARM
DESCRIPTION:Every 4 hours DESCRIPTION:Every 4 hours
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -77,7 +77,7 @@ BEGIN:VALARM
DESCRIPTION:Every 4 hours 3 minutes DESCRIPTION:Every 4 hours 3 minutes
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT4H3M TRIGGER;VALUE=DURATION:PT4H3M
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -97,7 +97,7 @@ BEGIN:VALARM
DESCRIPTION:Every 2 months on the 24th DESCRIPTION:Every 2 months on the 24th
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -116,15 +116,15 @@ BEGIN:VALARM
DESCRIPTION:At login DESCRIPTION:At login
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
BEGIN:VALARM BEGIN:VALARM
DESCRIPTION:At login DESCRIPTION:At login
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:-P9DT35S TRIGGER;VALUE=DURATION:-P9DT35S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
X-KDE-KALARM-TYPE:LOGIN X-TDE-KALARM-TYPE:LOGIN
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -144,7 +144,7 @@ BEGIN:VALARM
DESCRIPTION:every 3 years on the 3. tuesday in may and november DESCRIPTION:every 3 years on the 3. tuesday in may and november
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -164,7 +164,7 @@ BEGIN:VALARM
DESCRIPTION:every 2 months on the 2nd-to-last wednesday DESCRIPTION:every 2 months on the 2nd-to-last wednesday
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -185,7 +185,7 @@ BEGIN:VALARM
DESCRIPTION:Every 4 minutes DESCRIPTION:Every 4 minutes
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT16M TRIGGER;VALUE=DURATION:PT16M
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT
@ -205,7 +205,7 @@ BEGIN:VALARM
DESCRIPTION:every 2 years on the 27. of march\, july and november DESCRIPTION:every 2 years on the 27. of march\, july and november
ACTION:DISPLAY ACTION:DISPLAY
TRIGGER;VALUE=DURATION:PT0S TRIGGER;VALUE=DURATION:PT0S
X-KDE-KALARM-FONTCOLOR:#ff0000\;#000000\; X-TDE-KALARM-FONTCOLOR:#ff0000\;#000000\;
END:VALARM END:VALARM
END:VEVENT END:VEVENT

@ -37,7 +37,7 @@ int main( int, char ** )
"VERSION:2.0\n" "VERSION:2.0\n"
"BEGIN:VFREEBUSY\n" "BEGIN:VFREEBUSY\n"
"ORGANIZER:MAILTO:test3@kdab.net\n" "ORGANIZER:MAILTO:test3@kdab.net\n"
"X-KDE-Foo:bla\n" "X-TDE-Foo:bla\n"
"DTSTAMP:20071202T152453Z\n" "DTSTAMP:20071202T152453Z\n"
"URL:http://mail.kdab.net/freebusy/test3%40kdab.net.ifb\n" "URL:http://mail.kdab.net/freebusy/test3%40kdab.net.ifb\n"
"DTSTART:19700101T000000Z\n" "DTSTART:19700101T000000Z\n"

@ -4,10 +4,10 @@ Icon=komposer
Type=Application Type=Application
Terminal=false Terminal=false
X-KDE-ModuleType=Library X-TDE-ModuleType=Library
X-KDE-Library=komposer X-TDE-Library=komposer
X-KDE-FactoryName=komposerconfig X-TDE-FactoryName=komposerconfig
X-KDE-HasReadOnlyMode=false X-TDE-HasReadOnlyMode=false
Name=Komposer Name=Komposer
Name[cy]=Kyfansoddydd Name[cy]=Kyfansoddydd

@ -1,7 +1,7 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=Komposer/Editor X-TDE-ServiceType=Komposer/Editor
X-KDE-Derived=Komposer/Plugin X-TDE-Derived=Komposer/Plugin
Comment=Komposer Editor Comment=Komposer Editor
Comment[af]=Komposer Redigeerder Comment[af]=Komposer Redigeerder
Comment[bg]=Писане на форматиран текст Comment[bg]=Писане на форматиран текст

@ -1,7 +1,7 @@
[Desktop Entry] [Desktop Entry]
Type=ServiceType Type=ServiceType
X-KDE-ServiceType=Komposer/Plugin X-TDE-ServiceType=Komposer/Plugin
X-KDE-Derived=KPluginInfo X-TDE-Derived=KPluginInfo
Name=Komposer Plugin Name=Komposer Plugin
Name[af]=Komposer inprop module Name[af]=Komposer inprop module
Name[bg]=Приставка за Komposer Name[bg]=Приставка за Komposer

@ -311,7 +311,7 @@ PluginManager::loadPluginInternal( const TQString &pluginId )
int error = 0; int error = 0;
Plugin *plugin = KParts::ComponentFactory::createInstanceFromQuery<Komposer::Plugin>( Plugin *plugin = KParts::ComponentFactory::createInstanceFromQuery<Komposer::Plugin>(
TQString::fromLatin1( "Komposer/Plugin" ), TQString::fromLatin1( "Komposer/Plugin" ),
TQString::fromLatin1( "[X-KDE-PluginInfo-Name]=='%1'" ).arg( pluginId ), TQString::fromLatin1( "[X-TDE-PluginInfo-Name]=='%1'" ).arg( pluginId ),
this, 0, TQStringList(), &error ); this, 0, TQStringList(), &error );
if ( plugin ) { if ( plugin ) {

@ -69,7 +69,7 @@ namespace Komposer
= TQString() ) const; = TQString() ) const;
/** /**
* @brief Search by plugin name. This is the key used as X-KDE-PluginInfo-Name * @brief Search by plugin name. This is the key used as X-TDE-PluginInfo-Name
* in the .desktop file, e.g. "komposer_attachment" * in the .desktop file, e.g. "komposer_attachment"
* *
* @return The @ref Plugin object found by the search, or a null * @return The @ref Plugin object found by the search, or a null
@ -135,7 +135,7 @@ namespace Komposer
* config file. * config file.
* *
* @param name is the name of the plugin as it is listed in the .desktop * @param name is the name of the plugin as it is listed in the .desktop
* file in the X-KDE-Library field. * file in the X-TDE-Library field.
* *
* Returns false when no appropriate plugin can be found. * Returns false when no appropriate plugin can be found.
*/ */

@ -108,7 +108,7 @@ EditorSelection::readConfig()
if ( !(*it)->hasServiceType( TQString::fromLatin1( "Komposer/Editor" ) ) ) if ( !(*it)->hasServiceType( TQString::fromLatin1( "Komposer/Editor" ) ) )
continue; continue;
TQString name = (*it)->property( "X-KDE-KomposerIdentifier" ).toString(); TQString name = (*it)->property( "X-TDE-KomposerIdentifier" ).toString();
m_editorsCombo->insertItem( name ); m_editorsCombo->insertItem( name );
if ( m_reference.contains( name ) ) if ( m_reference.contains( name ) )
m_editorsCombo->setCurrentItem( i ); m_editorsCombo->setCurrentItem( i );
@ -118,7 +118,7 @@ EditorSelection::readConfig()
void EditorSelection::writeConfig() void EditorSelection::writeConfig()
{ {
m_reference = m_services[ m_editorsCombo->currentText()]-> m_reference = m_services[ m_editorsCombo->currentText()]->
property( "X-KDE-KomposerIdentifier" ).toString(); property( "X-TDE-KomposerIdentifier" ).toString();
} }
void void

@ -3,19 +3,19 @@ Type=Service
Icon=editor Icon=editor
ServiceTypes=Komposer/Editor ServiceTypes=Komposer/Editor
X-KDE-Library=libkomposer_defaulteditor X-TDE-Library=libkomposer_defaulteditor
X-Komposer-Version=1 X-Komposer-Version=1
X-Komposer-Weight=10 X-Komposer-Weight=10
X-KDE-PluginInfo-Author=Zack Rusin X-TDE-PluginInfo-Author=Zack Rusin
X-KDE-PluginInfo-Email=zack@kde.org X-TDE-PluginInfo-Email=zack@kde.org
X-KDE-PluginInfo-Name=komposer_defaulteditor X-TDE-PluginInfo-Name=komposer_defaulteditor
X-KDE-PluginInfo-Version=0.0.1 X-TDE-PluginInfo-Version=0.0.1
X-KDE-PluginInfo-Website=http://www.kde.org X-TDE-PluginInfo-Website=http://www.kde.org
X-KDE-PluginInfo-Category=Editors X-TDE-PluginInfo-Category=Editors
X-KDE-PluginInfo-Depends= X-TDE-PluginInfo-Depends=
X-KDE-PluginInfo-License=LGPL X-TDE-PluginInfo-License=LGPL
X-KDE-PluginInfo-EnabledByDefault=true X-TDE-PluginInfo-EnabledByDefault=true
Name=Komposer Editor Name=Komposer Editor
Name[af]=Komposer Redigeerder Name[af]=Komposer Redigeerder
Name[bg]=Редактор за Komposer Name[bg]=Редактор за Komposer

@ -80,9 +80,9 @@ namespace KPIM {
continue; continue;
} }
const TQString library = config.readEntry( "X-KDE-Library" ); const TQString library = config.readEntry( "X-TDE-Library" );
if ( library.isEmpty() ) { if ( library.isEmpty() ) {
warning() << "missing or empty [Plugin]X-KDE-Library value in \"" warning() << "missing or empty [Plugin]X-TDE-Library value in \""
<< *it << "\" - skipping" << endl; << *it << "\" - skipping" << endl;
continue; continue;
} }

@ -81,4 +81,4 @@ Comment[zh_TW]=text/calendar 格式化外掛程式
[Plugin] [Plugin]
Type=text/calendar Type=text/calendar
X-KDE-Library=libkmail_bodypartformatter_text_calendar X-TDE-Library=libkmail_bodypartformatter_text_calendar

@ -82,4 +82,4 @@ Comment[zh_TW]=text/vCard 格式化外掛程式
[Plugin] [Plugin]
Type=text/x-vcard Type=text/x-vcard
X-KDE-Library=libkmail_bodypartformatter_text_vcard X-TDE-Library=libkmail_bodypartformatter_text_vcard

@ -78,4 +78,4 @@ Comment[zh_CN]=text/x-diff 的格式化插件
Comment[zh_TW]=text/x-diff 格式化外掛程式 Comment[zh_TW]=text/x-diff 格式化外掛程式
[Plugin] [Plugin]
Type=text/x-diff Type=text/x-diff
X-KDE-Library=libkmail_bodypartformatter_text_xdiff X-TDE-Library=libkmail_bodypartformatter_text_xdiff

@ -48,5 +48,5 @@ Exec=groupwarewizard
Type=Application Type=Application
Icon=kontact Icon=kontact
Terminal=false Terminal=false
X-KDE-StartupNotify=true X-TDE-StartupNotify=true
Categories=Qt;KDE;Office; Categories=Qt;TDE;Office;

Loading…
Cancel
Save