summaryrefslogtreecommitdiffstats
path: root/vcs/clearcase
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/clearcase')
-rw-r--r--vcs/clearcase/CMakeLists.txt6
-rw-r--r--vcs/clearcase/clearcasefileinfoprovider.cpp4
-rw-r--r--vcs/clearcase/clearcasefileinfoprovider.h2
-rw-r--r--vcs/clearcase/clearcasemanipulator.cpp2
-rw-r--r--vcs/clearcase/clearcasemanipulator.h2
-rw-r--r--vcs/clearcase/clearcasepart.cpp36
-rw-r--r--vcs/clearcase/clearcasepart.h2
-rw-r--r--vcs/clearcase/commentdlg.cpp4
-rw-r--r--vcs/clearcase/commentdlg.h6
-rw-r--r--vcs/clearcase/integrator/CMakeLists.txt6
-rw-r--r--vcs/clearcase/integrator/ccintegratordlg.h2
-rw-r--r--vcs/clearcase/integrator/clearcaseintegrator.h2
-rw-r--r--vcs/clearcase/integrator/kdevclearcaseintegrator.desktop37
-rw-r--r--vcs/clearcase/kdevclearcase.desktop81
14 files changed, 50 insertions, 142 deletions
diff --git a/vcs/clearcase/CMakeLists.txt b/vcs/clearcase/CMakeLists.txt
index 90d83940..8d9734bd 100644
--- a/vcs/clearcase/CMakeLists.txt
+++ b/vcs/clearcase/CMakeLists.txt
@@ -28,7 +28,11 @@ link_directories(
##### other data ################################
-install( FILES kdevclearcase.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+tde_create_translated_desktop(
+ SOURCE kdevclearcase.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+ PO_DIR tdevelop-desktops
+)
##### libkdevclearcase (module) #################
diff --git a/vcs/clearcase/clearcasefileinfoprovider.cpp b/vcs/clearcase/clearcasefileinfoprovider.cpp
index 1e18f8e1..aa311518 100644
--- a/vcs/clearcase/clearcasefileinfoprovider.cpp
+++ b/vcs/clearcase/clearcasefileinfoprovider.cpp
@@ -13,7 +13,7 @@
#include "clearcasepart.h"
#include "kdevversioncontrol.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqapplication.h>
ClearcaseFileinfoProvider::ClearcaseFileinfoProvider(ClearcasePart *parent)
@@ -21,7 +21,7 @@ ClearcaseFileinfoProvider::ClearcaseFileinfoProvider(ClearcasePart *parent)
{
vcsInfo_ = NULL;
- connect(parent, TQT_SIGNAL(statusReady(const VCSFileInfoMap&, void*)), TQT_SIGNAL(triggerUpdate(const VCSFileInfoMap&, void*)));
+ connect(parent, TQ_SIGNAL(statusReady(const VCSFileInfoMap&, void*)), TQ_SIGNAL(triggerUpdate(const VCSFileInfoMap&, void*)));
kdevVCS_ = parent;
}
diff --git a/vcs/clearcase/clearcasefileinfoprovider.h b/vcs/clearcase/clearcasefileinfoprovider.h
index 0f6f7d06..848f7704 100644
--- a/vcs/clearcase/clearcasefileinfoprovider.h
+++ b/vcs/clearcase/clearcasefileinfoprovider.h
@@ -21,7 +21,7 @@
*/
class ClearcaseFileinfoProvider : public KDevVCSFileInfoProvider
{
- Q_OBJECT
+ TQ_OBJECT
public:
ClearcaseFileinfoProvider(ClearcasePart *parent);
diff --git a/vcs/clearcase/clearcasemanipulator.cpp b/vcs/clearcase/clearcasemanipulator.cpp
index 65f05c4e..54ad4faf 100644
--- a/vcs/clearcase/clearcasemanipulator.cpp
+++ b/vcs/clearcase/clearcasemanipulator.cpp
@@ -12,7 +12,7 @@
#include "config.h"
#include "clearcasemanipulator.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqregexp.h>
#include <tqstring.h>
diff --git a/vcs/clearcase/clearcasemanipulator.h b/vcs/clearcase/clearcasemanipulator.h
index 0cb795e3..276938f8 100644
--- a/vcs/clearcase/clearcasemanipulator.h
+++ b/vcs/clearcase/clearcasemanipulator.h
@@ -14,7 +14,7 @@
#include "kdevversioncontrol.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqregexp.h>
diff --git a/vcs/clearcase/clearcasepart.cpp b/vcs/clearcase/clearcasepart.cpp
index aeb1eea9..a8769127 100644
--- a/vcs/clearcase/clearcasepart.cpp
+++ b/vcs/clearcase/clearcasepart.cpp
@@ -19,7 +19,7 @@
#include <kdebug.h>
#include <kdevgenericfactory.h>
#include <tdelocale.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdemessagebox.h>
#include <tdeapplication.h>
@@ -37,13 +37,13 @@
#include "clearcasemanipulator.h"
-static const KDevPluginInfo data("kdevclearcase");
+static const KDevPluginInfo pluginData("kdevclearcase");
typedef KDevGenericFactory<ClearcasePart> ClearcaseFactory;
-K_EXPORT_COMPONENT_FACTORY( libkdevclearcase, ClearcaseFactory( data ) )
+K_EXPORT_COMPONENT_FACTORY( libkdevclearcase, ClearcaseFactory( pluginData ) )
ClearcasePart::ClearcasePart( TQObject *parent, const char *name, const TQStringList & )
- : KDevVersionControl( &data, parent, name ? name : "ClearcasePart" ),
+ : KDevVersionControl( &pluginData, parent, name ? name : "ClearcasePart" ),
default_checkin(""),
default_checkout(""),
default_uncheckout("-rm"),
@@ -60,8 +60,8 @@ ClearcasePart::ClearcasePart( TQObject *parent, const char *name, const TQString
fileInfoProvider_ = new ClearcaseFileinfoProvider(this);
setInstance(ClearcaseFactory::instance());
- connect( core(), TQT_SIGNAL(contextMenu(TQPopupMenu *, const Context *)),
- this, TQT_SLOT(contextMenu(TQPopupMenu *, const Context *)) );
+ connect( core(), TQ_SIGNAL(contextMenu(TQPopupMenu *, const Context *)),
+ this, TQ_SLOT(contextMenu(TQPopupMenu *, const Context *)) );
}
ClearcasePart::~ClearcasePart()
@@ -88,26 +88,26 @@ void ClearcasePart::contextMenu(TQPopupMenu *popup, const Context *context)
TQString name = fi.fileName();
sub->insertTitle( i18n("Actions for %1").arg(name) );
sub->insertItem( i18n("Checkin"),
- this, TQT_SLOT(slotCheckin()) );
+ this, TQ_SLOT(slotCheckin()) );
sub->insertItem( i18n("Checkout"),
- this, TQT_SLOT(slotCheckout()) );
+ this, TQ_SLOT(slotCheckout()) );
sub->insertItem( i18n("Uncheckout"),
- this, TQT_SLOT(slotUncheckout()) );
+ this, TQ_SLOT(slotUncheckout()) );
sub->insertSeparator();
sub->insertItem( i18n("Create Element"),
- this, TQT_SLOT(slotCreate()) );
+ this, TQ_SLOT(slotCreate()) );
sub->insertItem( i18n("Remove Element"),
- this, TQT_SLOT(slotRemove()) );
+ this, TQ_SLOT(slotRemove()) );
sub->insertSeparator();
sub->insertItem( i18n("History"),
- this, TQT_SLOT(slotListHistory()) );
+ this, TQ_SLOT(slotListHistory()) );
sub->insertSeparator();
sub->insertItem( i18n("Diff"),
- this, TQT_SLOT(slotDiff()) );
+ this, TQ_SLOT(slotDiff()) );
sub->insertSeparator();
sub->insertItem( i18n("List Checkouts"),
- this, TQT_SLOT(slotListCheckouts()) );
+ this, TQ_SLOT(slotListCheckouts()) );
popup->insertItem(i18n("Clearcase"), sub);
@@ -125,7 +125,7 @@ void ClearcasePart::slotCheckin()
dir = fi.dirPath();
name = fi.fileName();
- CcaseCommentDlg dlg(FALSE);
+ CcaseCommentDlg dlg(false);
if (dlg.exec() == TQDialog::Rejected)
return;
@@ -156,7 +156,7 @@ void ClearcasePart::slotCheckout()
dir = fi.dirPath();
name = fi.fileName();
- CcaseCommentDlg dlg(TRUE);
+ CcaseCommentDlg dlg(true);
if (dlg.exec() == TQDialog::Rejected)
return;
@@ -304,8 +304,8 @@ void ClearcasePart::slotDiff()
args << name;
ExecCommand* cmv = new ExecCommand( "cleartool", args, dir, env, this );
- connect( cmv, TQT_SIGNAL(finished( const TQString&, const TQString& )),
- this, TQT_SLOT(slotDiffFinished( const TQString&, const TQString& )) );
+ connect( cmv, TQ_SIGNAL(finished( const TQString&, const TQString& )),
+ this, TQ_SLOT(slotDiffFinished( const TQString&, const TQString& )) );
}
diff --git a/vcs/clearcase/clearcasepart.h b/vcs/clearcase/clearcasepart.h
index be63e674..866e312c 100644
--- a/vcs/clearcase/clearcasepart.h
+++ b/vcs/clearcase/clearcasepart.h
@@ -18,7 +18,7 @@ class Context;
class TQPopupMenu;
class ClearcasePart : public KDevVersionControl {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/vcs/clearcase/commentdlg.cpp b/vcs/clearcase/commentdlg.cpp
index 2f93ab49..f940b77c 100644
--- a/vcs/clearcase/commentdlg.cpp
+++ b/vcs/clearcase/commentdlg.cpp
@@ -46,8 +46,8 @@ CcaseCommentDlg::CcaseCommentDlg(bool bCheckin)
buttonbox->addStretch();
TQPushButton *ok = buttonbox->addButton(KStdGuiItem::ok());
TQPushButton *cancel = buttonbox->addButton(KStdGuiItem::cancel());
- connect(ok, TQT_SIGNAL(clicked()), TQT_SLOT(accept()) );
- connect(cancel, TQT_SIGNAL(clicked()), TQT_SLOT(reject()) );
+ connect(ok, TQ_SIGNAL(clicked()), TQ_SLOT(accept()) );
+ connect(cancel, TQ_SIGNAL(clicked()), TQ_SLOT(reject()) );
ok->setDefault(true);
buttonbox->layout();
layout2->addWidget(buttonbox, 0);
diff --git a/vcs/clearcase/commentdlg.h b/vcs/clearcase/commentdlg.h
index 0ce9d5ce..9c1feb46 100644
--- a/vcs/clearcase/commentdlg.h
+++ b/vcs/clearcase/commentdlg.h
@@ -18,12 +18,12 @@
class CcaseCommentDlg : public TQDialog
{
-Q_OBJECT
+TQ_OBJECT
public:
- CcaseCommentDlg(bool = FALSE);
+ CcaseCommentDlg(bool = false);
TQString logMessage() { return _edit->text(); };
- bool isReserved() { return (_check) ? _check->isChecked() : FALSE; };
+ bool isReserved() { return (_check) ? _check->isChecked() : false; };
private:
TQMultiLineEdit *_edit;
diff --git a/vcs/clearcase/integrator/CMakeLists.txt b/vcs/clearcase/integrator/CMakeLists.txt
index ccc3348f..478a762c 100644
--- a/vcs/clearcase/integrator/CMakeLists.txt
+++ b/vcs/clearcase/integrator/CMakeLists.txt
@@ -26,7 +26,11 @@ link_directories(
##### other data ################################
-install( FILES kdevclearcaseintegrator.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+tde_create_translated_desktop(
+ SOURCE kdevclearcaseintegrator.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+ PO_DIR tdevelop-desktops
+)
##### libclearcaseintegrator (module) ###########
diff --git a/vcs/clearcase/integrator/ccintegratordlg.h b/vcs/clearcase/integrator/ccintegratordlg.h
index f427b2b3..3242d5d4 100644
--- a/vcs/clearcase/integrator/ccintegratordlg.h
+++ b/vcs/clearcase/integrator/ccintegratordlg.h
@@ -24,7 +24,7 @@
#include <kdevvcsintegrator.h>
class CCIntegratorDlg: public CCIntegratorDlgBase, public VCSDialog {
-Q_OBJECT
+TQ_OBJECT
public:
CCIntegratorDlg(TQWidget *parent = 0, const char *name = 0);
diff --git a/vcs/clearcase/integrator/clearcaseintegrator.h b/vcs/clearcase/integrator/clearcaseintegrator.h
index 3859c1f9..ea8616a6 100644
--- a/vcs/clearcase/integrator/clearcaseintegrator.h
+++ b/vcs/clearcase/integrator/clearcaseintegrator.h
@@ -26,7 +26,7 @@
class ClearcaseIntegrator : public KDevVCSIntegrator
{
-Q_OBJECT
+TQ_OBJECT
public:
ClearcaseIntegrator(TQObject* parent, const char* name, const TQStringList args = TQStringList());
diff --git a/vcs/clearcase/integrator/kdevclearcaseintegrator.desktop b/vcs/clearcase/integrator/kdevclearcaseintegrator.desktop
index 51418398..df92219e 100644
--- a/vcs/clearcase/integrator/kdevclearcaseintegrator.desktop
+++ b/vcs/clearcase/integrator/kdevclearcaseintegrator.desktop
@@ -1,40 +1,9 @@
[Desktop Entry]
-Type=Service
Name=KDevClearcaseIntegrator
-Name[da]=TDevelop Clearcase-integration
-Name[nds]=TDevelop-Clearcase-Integreren
-Name[sk]=KDev ClearCase integrácia
-Name[sv]=TDevelop Clearcase-integration
-Name[zh_TW]=TDevelop Clearcase 整合器
+
Comment=Clearcase Project Integration Facility
-Comment[ca]=Faciliat per a la integració amb projectes Clearcase
-Comment[da]=Clearcase projektintegration
-Comment[de]=Clearcase-Integration
-Comment[el]=Λειτουργία ενσωμάτωσης Clearcase στο έργο
-Comment[es]=Facilidad para integración con proyectos Clearcase
-Comment[et]=Clearcase projekti põimimisvahend
-Comment[eu]=Clearcase proiektu-integraziorako tresna
-Comment[fa]=تسهیلات مجتمع‌سازی پروژۀ Clearcase
-Comment[fr]=Fonction d'intégration pour un projet utilisant Clearcase
-Comment[gl]=Utilidade para a integración de proxectos ClearCase
-Comment[hu]=Integrálás Clearcase-projektekkel
-Comment[it]=Funzione di integrazione del progetto ClearCase
-Comment[ja]=Clearcase プロジェクト統合ツール
-Comment[ms]=Kemudahan Integrasi Projek Clearcase
-Comment[nds]=Projektintegreren för Clearcase
-Comment[ne]=क्लेयरकेस परियोजना एकिकरण सुविधा
-Comment[nl]=Clearcase-projectintegratie
-Comment[pl]=Integracja z Clearcase
-Comment[pt]=Integração com Projectos Clearcase
-Comment[pt_BR]=Facilidade de Integração ao Projeto de Clearcase
-Comment[ru]=Интеграция Clearcase
-Comment[sk]=Integrácia ClearCase projektu
-Comment[sr]=Интеграција Clearcase-а у пројекат
-Comment[sr@Latn]=Integracija Clearcase-a u projekat
-Comment[sv]=Funktion för integrering av Clearcase i projekt
-Comment[tr]=Clearcase Proje Bütünleştirilmesi Aracı
-Comment[zh_CN]=Clearcase 工程集成功能
-Comment[zh_TW]=Clearcase 專案整合工具
+
+Type=Service
Exec=blubb
X-TDE-ServiceTypes=TDevelop/VCSIntegrator
X-TDE-Library=libclearcaseintegrator
diff --git a/vcs/clearcase/kdevclearcase.desktop b/vcs/clearcase/kdevclearcase.desktop
index f88cfed3..651994e0 100644
--- a/vcs/clearcase/kdevclearcase.desktop
+++ b/vcs/clearcase/kdevclearcase.desktop
@@ -1,81 +1,12 @@
[Desktop Entry]
-Type=Service
-Exec=blubb
-Comment=A plugin that provides support for Rational ClearCase, a large version control and build management system. http://www.rational.com/products/clearcase/index.jsp
-Comment[ca]=Un connector que proporciona suport per a ClearCase de Rational, un potent sistema de control de versions i gestió de compilacions. http://www.rational.com/products/clearcase/index.jsp
-Comment[da]=Et plugin der sørger for støtte for Rational ClearCase, et stort versionskontrol og byggehåndteringssystem. http://www.rational.com/products/clearcase/index.jsp
-Comment[de]=Eine Komponente, die eine Schnittstelle zu Rational ClearCase zur Verfügung stellt, einem umfangreichen Werkzeug zur Verwaltung von Versionen und Erstellungsvorgängen. http://www.rational.com/products/clearcase/index.jsp
-Comment[el]=Ένα πρόσθετο που προσφέρει υποστήριξη για το Rational ClearCase, ένα μεγάλο σύστημα διαχείρισης ελέγχου εκδόσεων και κατασκευής. http://www.rational.com/products/clearcase/index.jsp
-Comment[es]=Un complemento que proporciona soporte para Rational ClearCase, un potente sistema de control de versiones y administración de compilaciones (http://www.rational.com/products/clearcase/index.jsp)
-Comment[et]=See plugin pakub suure versioonikontrolli ja ehitamise haldamise süsteemi Rational ClearCase toetust. http://www.rational.com/products/clearcase/index.jsp
-Comment[eu]=Rational ClearCase euskarri plugin bat. ClearCase bertsio kontrol eta eraikuntza kudeaketa sistema handi bat da. http://www.rational.com/products/clearcase/index.jsp
-Comment[fa]=وصله‌ای که پشتیبانی برای Rational ClearCase، یک کنترل نسخۀ بزرگ و سیستم مدیریت ساختن فراهم ‌می‌کند. http://www.rational.com/products/clearcase/index.jsp
-Comment[fr]=Un module externe qui offre une prise en charge pour Rational ClearCase, un puissant système de contrôle de versions et de gestion de compilation. http://www.rational.com/products/clearcase/index.jsp
-Comment[gl]=Extensión que proporciona soporte para Rational ClearCase, un gran sistema de control de versións e xestión da compilación. http://www.rational.com/products/clearcase/index.jsp
-Comment[hu]=Bővítőmodul a Rational ClearCase komplex verziókövető rendszerhez. http://www.rational.com/products/clearcase/index.jsp
-Comment[it]=Un plugin che offre il supporto per Rational ClearCase, un sistema molto vasto per il controllo di versione e la compilazione. http://www.rational.com/products/clearcase/index.jsp
-Comment[ja]=大規模なバージョンコントロールやビルド管理システムの合理的な ClearCase の支援を提供するプラグイン。http://www.rational.com/products/clearcase/index.jsp
-Comment[ms]=Plugin yang menyediakan sokongan untuk Rational ClearCase, sistem kawalan versi dan pengurus pembinaan yang besar. http://www.rational.com/products/clearcase/index.jsp
-Comment[nds]=En Moduul, dat Ünnerstütten för "Rational ClearCase" praatstellt, en groot Verschoonkuntrull- un Opstellen-Pleegsysteem. http://www.rational.com/products/clearcase/index.jsp
-Comment[ne]=एउटा प्लगइन जसले र्यासनल क्लेयरकेस, एउटा ठूलो संस्करण नियन्त्रण र निर्माण व्यवस्थापन प्रणालीका लागि समर्थन प्रदान गर्दछ । http://www.rational.com/products/clearcase/index.jsp
-Comment[nl]=Een plugin die ondersteuning biedt voor Rational ClearCase, een omvangrijk versiebeheer en buildmanagement-systeem. Zie http://www.rational.com/products/clearcase/index.jsp
-Comment[pl]=Wtyczka udostępniająca obsługę Rational ClearCase, dużego systemu kontroli wersji i zarządzania budowaniem. http://www.rational.com/products/clearcase/index.jsp
-Comment[pt]=Um 'plugin' que oferece o suporte para o ClearCase da Rational, um sistema grande de controlo de versões e de gestão de compilações. http://www.rational.com/products/clearcase/index.jsp
-Comment[pt_BR]=Um plug-in que fornece suporte para o Rational ClearCase, um grande sistema de controle de versão e gerenciamento de compilação. http://www.rational.com/products/clearcase/index.jsp
-Comment[ru]=Модуль поддержки Rational ClearCase, мощной системы контроля версий и управления проектом. http://www.rational.com/products/clearcase/index.jsp
-Comment[sk]=Modul poskytuje podporu pre Rational ClearCase, riadenie verzií a projektový manažment.
-Comment[sl]=Vstavek, ki omogoča podporo za Rational ClearCase, velik sistem za upravljanje z različicami in grajenjem. http://www.rational.com/products/clearcase/index.jsp
-Comment[sr]=Прикључак који обезбеђује подршку за Rational-ов ClearCase, велики систем за контролу верзија и управљање градњом. http://www.rational.com/products/clearcase/index.jsp
-Comment[sr@Latn]=Priključak koji obezbeđuje podršku za Rational-ov ClearCase, veliki sistem za kontrolu verzija i upravljanje gradnjom. http://www.rational.com/products/clearcase/index.jsp
-Comment[sv]=Ett insticksprogram som stöder Rational ClearCase, ett omfattande versions- och bygghanteringssystem. http://www.rational.com/products/clearcase/index.jsp
-Comment[ta]=சொருகி ரெஷியனல் தெளிவான எழுத்தை ஆதரிக்கும்,கடைசி பதிப்பை இயக்க மற்றும் மேலாளர் அமைப்பை கட்ட.http://www.rational.com/products/clearcase/index.jsp
-Comment[tg]=Модули тарафдори Rational ClearCase, барномаи назораткунандаи калони тафсир ва идоракунии лоиҳаҳо мебошад.http://www.rational.com/products/clearcase/index.jsp
-Comment[tr]=Mantıksal ClearCase, büyük bir kontrol ve yapım yönetim sistemi, için destek sağlayan bir eklenti. http://www.rational.com/products/clearcase/index.jsp
-Comment[zh_CN]=提供 Rational ClearCase 支持,一个大型的版本控制和编译管理系统。http://www.rational.com/products/clearcase/index.jsp
-Comment[zh_TW]=提供支援 Rational ClearCase,大型的版本控制與建立管理系統的外掛程式。http://www.rational.com/products/clearcase/index.jsp
Name=KDevClearCase
-Name[da]=TDevelop ClearCase
-Name[de]=Unterstützung für ClearCase (TDevelop)
-Name[hi]=के-डेव-क्लीयर-केस
-Name[nds]=ClearCase-Ünnerstütten för TDevelop
-Name[sk]=KDev ClearCase
-Name[sv]=TDevelop ClearCase
-Name[ta]=KDevதெளிவானஎழுத்து
-Name[zh_TW]=TDevelop ClearCase
+
GenericName=ClearCase Integration
-GenericName[ca]=Integració amb ClearClase
-GenericName[da]=ClearCase integration
-GenericName[de]=ClearCase-Integration
-GenericName[el]=Ενσωμάτωση ClearCase
-GenericName[es]=Integración con ClearClase
-GenericName[et]=ClearCase'i integratsioon
-GenericName[eu]=ClearCase integrazioa
-GenericName[fa]=مجتمع‌سازی ClearCase
-GenericName[fr]=Intégration de « ClearCase »
-GenericName[ga]=Comhtháthú ClearCase
-GenericName[gl]=Integración de ClearCase
-GenericName[hi]=क्लीयर-केस इंटीग्रेशन
-GenericName[hu]=ClearCase-integráció
-GenericName[it]=Integrazione di ClearCase
-GenericName[ja]=ClearCase 統合
-GenericName[ms]=Intergrasi ClearCase
-GenericName[nds]=ClearCase-Integreren
-GenericName[ne]=क्लेयरकेस एकिकरण
-GenericName[nl]=ClearCase-integratie
-GenericName[pl]=Integracja z ClearCase
-GenericName[pt]=Integração com o ClearCase
-GenericName[pt_BR]=Integração com o ClearCase
-GenericName[ru]=Интеграция ClearCase
-GenericName[sk]=Integrácia ClearCase
-GenericName[sl]=Integracija ClearCase
-GenericName[sr]=Интеграција ClearCase-а
-GenericName[sr@Latn]=Integracija ClearCase-a
-GenericName[sv]=Integrering av ClearCase
-GenericName[ta]=தெளிவான எழுத்து ஒருங்கிணைப்பு
-GenericName[tg]=Интегратсияи ClearCase
-GenericName[tr]=ClearCase Bütünleştirmesi
-GenericName[zh_CN]=ClearCase集成
-GenericName[zh_TW]=ClearCase 整合
+
+Comment=A plugin that provides support for Rational ClearCase, a large version control and build management system. http://www.rational.com/products/clearcase/index.jsp
+
+Type=Service
+Exec=blubb
X-TDE-ServiceTypes=TDevelop/VersionControl
X-TDE-Library=libkdevclearcase
X-TDevelop-Version=5