Michele Calgaro 10 years ago
commit 0ffe0dfb29

@ -56,7 +56,7 @@ AdaProjectPart::AdaProjectPart(TQObject *parent, const char *name, const TQStrin
action = new TDEAction( i18n("&Build Project"), "make_tdevelop", Key_F8, action = new TDEAction( i18n("&Build Project"), "make_tdevelop", Key_F8,
this, TQT_SLOT(slotBuild()), this, TQT_SLOT(slotBuild()),
actionCollection(), "build_build" ); actionCollection(), "build_build" );
action = new TDEAction( i18n("Execute Program"), "exec", 0, action = new TDEAction( i18n("Execute Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()), this, TQT_SLOT(slotExecute()),
actionCollection(), "build_execute" ); actionCollection(), "build_execute" );

@ -222,7 +222,7 @@ void AutoDetailsView::initActions()
buildTargetAction->setEnabled( false ); buildTargetAction->setEnabled( false );
TQToolTip::add( m_button5, tr2i18n( "Execute Target...")); TQToolTip::add( m_button5, tr2i18n( "Execute Target..."));
executeTargetAction = new AutoToolsAction( i18n( "Execute Target..." ), "exec", 0, executeTargetAction = new AutoToolsAction( i18n( "Execute Target..." ), "application-x-executable", 0,
TQT_TQOBJECT(this), TQT_SLOT( slotExecuteTarget() ), actions, TQT_TQOBJECT(this), TQT_SLOT( slotExecuteTarget() ), actions,
"execute target" ); "execute target" );
executeTargetAction->setWhatsThis(i18n("<b>Execute target</b><p>Executes the target " executeTargetAction->setWhatsThis(i18n("<b>Execute target</b><p>Executes the target "

@ -102,7 +102,7 @@ TargetItem::TargetItem( TQListView *lv, bool group, const TQString &text )
: ProjectItem( Target, lv, text ) : ProjectItem( Target, lv, text )
{ {
sources.setAutoDelete( true ); sources.setAutoDelete( true );
setPixmap( 0, group ? SmallIcon( "tar" ) : SmallIcon( "binary" ) ); setPixmap( 0, group ? SmallIcon( "application-x-tar" ) : SmallIcon( "application-octet-stream" ) );
} }
@ -115,7 +115,7 @@ FileItem::FileItem( TQListView *lv, const TQString &text, bool set_is_subst )
{ {
if(!is_subst) if(!is_subst)
{ {
setPixmap( 0, SmallIcon( "document" ) ); setPixmap( 0, SmallIcon( "text-x-generic" ) );
} }
else else
{ {

@ -213,7 +213,7 @@ AutoProjectPart::AutoProjectPart(TQObject *parent, const char *name, const TQStr
TQDomDocument &dom = *projectDom(); TQDomDocument &dom = *projectDom();
if (!DomUtil::readBoolEntry(dom, "/kdevautoproject/run/disable_default")) { if (!DomUtil::readBoolEntry(dom, "/kdevautoproject/run/disable_default")) {
//ok we handle the execute in this kpart //ok we handle the execute in this kpart
action = new TDEAction( i18n("Execute Program"), "exec", SHIFT+Key_F9, action = new TDEAction( i18n("Execute Program"), "application-x-executable", SHIFT+Key_F9,
this, TQT_SLOT(slotExecute()), this, TQT_SLOT(slotExecute()),
actionCollection(), "build_execute" ); actionCollection(), "build_execute" );
action->setToolTip(i18n("Execute program")); action->setToolTip(i18n("Execute program"));

@ -91,7 +91,7 @@ GenericName[uz@cyrillic]=Automake лойиҳаси
GenericName[zh_CN]=Automake 工程 GenericName[zh_CN]=Automake 工程
GenericName[zh_TW]=Automake 專案 GenericName[zh_TW]=Automake 專案
X-TDE-ServiceTypes=TDevelop/Project X-TDE-ServiceTypes=TDevelop/Project
Icon=make Icon=text-x-text-x-makefile
X-TDE-Library=libkdevautoproject X-TDE-Library=libkdevautoproject
X-TDevelop-Version=5 X-TDevelop-Version=5
X-TDevelop-Args= X-TDevelop-Args=

@ -86,7 +86,7 @@ GenericName[tr]=TDE Automake Projesi
GenericName[zh_CN]=TDE Automake 工程 GenericName[zh_CN]=TDE Automake 工程
GenericName[zh_TW]=TDE Automake 專案 GenericName[zh_TW]=TDE Automake 專案
X-TDE-ServiceTypes=TDevelop/Project X-TDE-ServiceTypes=TDevelop/Project
Icon=make Icon=text-x-text-x-makefile
X-TDE-Library=libkdevautoproject X-TDE-Library=libkdevautoproject
X-TDevelop-Version=5 X-TDevelop-Version=5
X-TDevelop-Args=kde X-TDevelop-Args=kde

@ -160,7 +160,7 @@ void KFileDnDDetailView::startDrag(){
} }
TQPixmap pixmap; TQPixmap pixmap;
if( urls.count() > 1 ){ if( urls.count() > 1 ){
pixmap = DesktopIcon( "tdemultiple", 16 ); pixmap = DesktopIcon( "application-vnd.tde.tdemultiple", 16 );
} }
if( pixmap.isNull() ) if( pixmap.isNull() )
pixmap = currentFileItem()->pixmap( 16 ); pixmap = currentFileItem()->pixmap( 16 );

@ -149,7 +149,7 @@ TQDragObject* KFileDnDIconView::dragObject() {
} }
TQPixmap pixmap; TQPixmap pixmap;
if( urls.count() > 1 ) if( urls.count() > 1 )
pixmap = DesktopIcon( "tdemultiple", iconSize() ); pixmap = DesktopIcon( "application-vnd.tde.tdemultiple", iconSize() );
if( pixmap.isNull() ) if( pixmap.isNull() )
pixmap = currentFileItem()->pixmap( iconSize() ); pixmap = currentFileItem()->pixmap( iconSize() );
TQPoint hotspot; TQPoint hotspot;

@ -137,7 +137,7 @@ CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const
"Environment variables and make arguments can be specified " "Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Build Options</b> tab." ) ); "in the project settings dialog, <b>Build Options</b> tab." ) );
action = new TDEAction( i18n( "Execute Program" ), "exec", 0, action = new TDEAction( i18n( "Execute Program" ), "application-x-executable", 0,
this, TQT_SLOT( slotExecute() ), this, TQT_SLOT( slotExecute() ),
actionCollection(), "build_execute" ); actionCollection(), "build_execute" );
action->setToolTip( i18n( "Execute program" ) ); action->setToolTip( i18n( "Execute program" ) );
@ -193,14 +193,14 @@ CustomProjectPart::~CustomProjectPart()
void CustomProjectPart::projectConfigWidget( KDialogBase *dlg ) void CustomProjectPart::projectConfigWidget( KDialogBase *dlg )
{ {
TQVBox *vbox; TQVBox *vbox;
vbox = dlg->addVBoxPage( i18n( "Custom Manager" ), i18n( "Custom Manager" ), BarIcon( "make", TDEIcon::SizeMedium ) ); vbox = dlg->addVBoxPage( i18n( "Custom Manager" ), i18n( "Custom Manager" ), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ) );
CustomManagerWidget *w0 = new CustomManagerWidget( this, vbox ); CustomManagerWidget *w0 = new CustomManagerWidget( this, vbox );
connect( dlg, TQT_SIGNAL( okClicked() ), w0, TQT_SLOT( accept() ) ); connect( dlg, TQT_SIGNAL( okClicked() ), w0, TQT_SLOT( accept() ) );
vbox = dlg->addVBoxPage( i18n( "Run Options" ), i18n( "Run Options" ), BarIcon( "make", TDEIcon::SizeMedium ) ); vbox = dlg->addVBoxPage( i18n( "Run Options" ), i18n( "Run Options" ), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ) );
RunOptionsWidget *w1 = new RunOptionsWidget( *projectDom(), "/kdevcustomproject", buildDirectory(), vbox ); RunOptionsWidget *w1 = new RunOptionsWidget( *projectDom(), "/kdevcustomproject", buildDirectory(), vbox );
connect( dlg, TQT_SIGNAL( okClicked() ), w1, TQT_SLOT( accept() ) ); connect( dlg, TQT_SIGNAL( okClicked() ), w1, TQT_SLOT( accept() ) );
vbox = dlg->addVBoxPage( i18n( "Build Options" ), i18n( "Build Options" ), BarIcon( "make", TDEIcon::SizeMedium ) ); vbox = dlg->addVBoxPage( i18n( "Build Options" ), i18n( "Build Options" ), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ) );
TQTabWidget *buildtab = new TQTabWidget( vbox ); TQTabWidget *buildtab = new TQTabWidget( vbox );
CustomBuildOptionsWidget *w2 = new CustomBuildOptionsWidget( *projectDom(), buildtab ); CustomBuildOptionsWidget *w2 = new CustomBuildOptionsWidget( *projectDom(), buildtab );

@ -65,7 +65,7 @@ PascalProjectPart::PascalProjectPart(TQObject *parent, const char *name, const T
action->setToolTip(i18n("Build project")); action->setToolTip(i18n("Build project"));
action->setWhatsThis(i18n("<b>Build project</b><p>Runs the compiler on a main source file of the project. " action->setWhatsThis(i18n("<b>Build project</b><p>Runs the compiler on a main source file of the project. "
"The compiler and the main source file can be set in project settings, <b>Pascal Compiler</b> tab.")); "The compiler and the main source file can be set in project settings, <b>Pascal Compiler</b> tab."));
action = new TDEAction( i18n("Execute Program"), "exec", 0, action = new TDEAction( i18n("Execute Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()), this, TQT_SLOT(slotExecute()),
actionCollection(), "build_execute" ); actionCollection(), "build_execute" );
action->setToolTip(i18n("Execute program")); action->setToolTip(i18n("Execute program"));
@ -400,7 +400,7 @@ void PascalProjectPart::projectConfigWidget( KDialogBase * dlg )
connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) ); connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) );
connect( dlg, TQT_SIGNAL(okClicked()), this, TQT_SLOT(loadProjectConfig()) ); connect( dlg, TQT_SIGNAL(okClicked()), this, TQT_SLOT(loadProjectConfig()) );
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "make", TDEIcon::SizeMedium )); vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
RunOptionsWidget *w3 = new RunOptionsWidget(*projectDom(), "/kdevpascalproject", buildDirectory(), vbox); RunOptionsWidget *w3 = new RunOptionsWidget(*projectDom(), "/kdevpascalproject", buildDirectory(), vbox);
connect( dlg, TQT_SIGNAL(okClicked()), w3, TQT_SLOT(accept()) ); connect( dlg, TQT_SIGNAL(okClicked()), w3, TQT_SLOT(accept()) );

@ -50,7 +50,7 @@ GroupItem::GroupItem( TQListView *lv, GroupType type, const TQString &text, QMak
this->owner = spitem; this->owner = spitem;
groupType = type; groupType = type;
// files.setAutoDelete( true ); // files.setAutoDelete( true );
setPixmap( 0, SmallIcon( "tar" ) ); setPixmap( 0, SmallIcon( "application-x-tar" ) );
} }
GroupItem::GroupType GroupItem::groupTypeForExtension( const TQString &ext ) GroupItem::GroupType GroupItem::groupTypeForExtension( const TQString &ext )
@ -298,7 +298,7 @@ FileItem::FileItem( TQListView *lv, const TQString &text )
// if excluded is set the file is excluded in the subproject/project. // if excluded is set the file is excluded in the subproject/project.
// by default excluded is set to false, thus file is included // by default excluded is set to false, thus file is included
// excluded = exclude; // excluded = exclude;
setPixmap( 0, SmallIcon( "document" ) ); setPixmap( 0, SmallIcon( "text-x-generic" ) );
} }

@ -140,7 +140,7 @@ TrollProjectPart::TrollProjectPart(TQObject *parent, const char *name, const TQS
"project directory.<br>Environment variables and make arguments can be specified " "project directory.<br>Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Make Options</b> tab.")); "in the project settings dialog, <b>Make Options</b> tab."));
action = new TDEAction( i18n("Execute Main Program"), "exec", SHIFT+Key_F9, action = new TDEAction( i18n("Execute Main Program"), "application-x-executable", SHIFT+Key_F9,
this, TQT_SLOT(slotBuildAndExecuteProject()), this, TQT_SLOT(slotBuildAndExecuteProject()),
actionCollection(), "build_execute_project" ); actionCollection(), "build_execute_project" );
action->setToolTip(i18n("Execute main program")); action->setToolTip(i18n("Execute main program"));
@ -191,7 +191,7 @@ TrollProjectPart::TrollProjectPart(TQObject *parent, const char *name, const TQS
"Environment variables and make arguments can be specified " "Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Make Options</b> tab.")); "in the project settings dialog, <b>Make Options</b> tab."));
action = new TDEAction( i18n("Execute Subproject"), "exec", 0, action = new TDEAction( i18n("Execute Subproject"), "application-x-executable", 0,
this, TQT_SLOT(slotBuildAndExecuteTarget()), this, TQT_SLOT(slotBuildAndExecuteTarget()),
actionCollection(), "build_execute_target" ); actionCollection(), "build_execute_target" );
action->setToolTip(i18n("Execute subproject")); action->setToolTip(i18n("Execute subproject"));
@ -270,13 +270,13 @@ TQString TrollProjectPart::makeEnvironment()
void TrollProjectPart::projectConfigWidget(KDialogBase *dlg) void TrollProjectPart::projectConfigWidget(KDialogBase *dlg)
{ {
TQVBox *vbox; TQVBox *vbox;
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "make", TDEIcon::SizeMedium )); vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
RunOptionsWidget *optdlg = new RunOptionsWidget(*projectDom(), "/kdevtrollproject", buildDirectory(), vbox); RunOptionsWidget *optdlg = new RunOptionsWidget(*projectDom(), "/kdevtrollproject", buildDirectory(), vbox);
vbox = dlg->addVBoxPage(i18n("Make Options"), i18n("Make Options"), BarIcon( "make", TDEIcon::SizeMedium )); vbox = dlg->addVBoxPage(i18n("Make Options"), i18n("Make Options"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
MakeOptionsWidget *w4 = new MakeOptionsWidget(*projectDom(), "/kdevtrollproject", vbox); MakeOptionsWidget *w4 = new MakeOptionsWidget(*projectDom(), "/kdevtrollproject", vbox);
vbox = dlg->addVBoxPage(i18n("TQMake Manager"), i18n("TQMake Manager"), BarIcon( "make", TDEIcon::SizeMedium )); vbox = dlg->addVBoxPage(i18n("TQMake Manager"), i18n("TQMake Manager"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
QMakeOptionsWidget *qm = new QMakeOptionsWidget( projectDirectory(), *projectDom(), "/kdevtrollproject", vbox); QMakeOptionsWidget *qm = new QMakeOptionsWidget( projectDirectory(), *projectDom(), "/kdevtrollproject", vbox);

@ -137,7 +137,7 @@ TrollProjectWidget::TrollProjectWidget( TrollProjectPart *part )
// run // run
executeProjectButton = new TQToolButton ( projectTools, "Run button" ); executeProjectButton = new TQToolButton ( projectTools, "Run button" );
executeProjectButton->setPixmap ( SmallIcon ( "exec" ) ); executeProjectButton->setPixmap ( SmallIcon ( "application-x-executable" ) );
executeProjectButton->setSizePolicy ( TQSizePolicy ( ( TQSizePolicy::SizeType ) 0, ( TQSizePolicy::SizeType ) 0, 0, 0, executeProjectButton->sizePolicy().hasHeightForWidth() ) ); executeProjectButton->setSizePolicy ( TQSizePolicy ( ( TQSizePolicy::SizeType ) 0, ( TQSizePolicy::SizeType ) 0, 0, 0, executeProjectButton->sizePolicy().hasHeightForWidth() ) );
executeProjectButton->setEnabled ( true ); executeProjectButton->setEnabled ( true );
TQToolTip::add( executeProjectButton, i18n( "Execute main program" ) ); TQToolTip::add( executeProjectButton, i18n( "Execute main program" ) );
@ -255,7 +255,7 @@ TrollProjectWidget::TrollProjectWidget( TrollProjectPart *part )
// run // run
executeTargetButton = new TQToolButton ( fileTools, "Run sp button" ); executeTargetButton = new TQToolButton ( fileTools, "Run sp button" );
executeTargetButton->setPixmap ( SmallIcon ( "exec" ) ); executeTargetButton->setPixmap ( SmallIcon ( "application-x-executable" ) );
executeTargetButton->setSizePolicy ( TQSizePolicy ( ( TQSizePolicy::SizeType ) 0, ( TQSizePolicy::SizeType ) 0, 0, 0, executeTargetButton->sizePolicy().hasHeightForWidth() ) ); executeTargetButton->setSizePolicy ( TQSizePolicy ( ( TQSizePolicy::SizeType ) 0, ( TQSizePolicy::SizeType ) 0, 0, 0, executeTargetButton->sizePolicy().hasHeightForWidth() ) );
executeTargetButton->setEnabled ( true ); executeTargetButton->setEnabled ( true );
TQToolTip::add( executeTargetButton, i18n( "Execute subproject" ) ); TQToolTip::add( executeTargetButton, i18n( "Execute subproject" ) );

@ -30,7 +30,7 @@ VisualBoyAdvancePart::VisualBoyAdvancePart(TQObject *parent, const char *name, c
setXMLFile("kdevpart_visualboyadvance.rc"); setXMLFile("kdevpart_visualboyadvance.rc");
TDEAction *action; TDEAction *action;
action = new TDEAction( i18n("Execute Program"), "exec", Key_F9, action = new TDEAction( i18n("Execute Program"), "application-x-executable", Key_F9,
this, TQT_SLOT(slotExecute()), this, TQT_SLOT(slotExecute()),
actionCollection(), "build_execute" ); actionCollection(), "build_execute" );
@ -68,7 +68,7 @@ void VisualBoyAdvancePart::slotExecute(){
void VisualBoyAdvancePart::projectConfigWidget(KDialogBase *dlg){ void VisualBoyAdvancePart::projectConfigWidget(KDialogBase *dlg){
TQVBox *vbox; TQVBox *vbox;
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "make", TDEIcon::SizeMedium )); vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
VBAConfigWidget* w = new VBAConfigWidget(this,vbox); VBAConfigWidget* w = new VBAConfigWidget(this,vbox);
connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) ); connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) );
} }

@ -58,7 +58,7 @@ AdaSupportPart::AdaSupportPart (TQObject *parent, const char *name, const TQStri
d->problemReporter = new ProblemReporter (this); d->problemReporter = new ProblemReporter (this);
// connect (core (), TQT_SIGNAL (configWidget (KDialogBase*)), // connect (core (), TQT_SIGNAL (configWidget (KDialogBase*)),
// d->problemReporter, TQT_SLOT (configWidget (KDialogBase*))); // d->problemReporter, TQT_SLOT (configWidget (KDialogBase*)));
d->problemReporter->setIcon( SmallIcon("info") ); d->problemReporter->setIcon( SmallIcon("application-vnd.tde.info") );
mainWindow( )->embedOutputView( d->problemReporter, i18n("Problems"), i18n("Problem reporter")); mainWindow( )->embedOutputView( d->problemReporter, i18n("Problems"), i18n("Problem reporter"));
TQWhatsThis::add(d->problemReporter, i18n("<b>Problem reporter</b><p>This window shows various \"problems\" in your project. " TQWhatsThis::add(d->problemReporter, i18n("<b>Problem reporter</b><p>This window shows various \"problems\" in your project. "
"It displays errors reported by a language parser.")); "It displays errors reported by a language parser."));

@ -253,7 +253,7 @@ void ProblemReporter::configure()
void ProblemReporter::configWidget( KDialogBase* dlg ) void ProblemReporter::configWidget( KDialogBase* dlg )
{ {
kdDebug() << "ProblemReporter::configWidget()" << endl; kdDebug() << "ProblemReporter::configWidget()" << endl;
TQVBox *vbox = dlg->addVBoxPage(i18n("Ada Parsing"), i18n("Ada Parsing"), BarIcon( "source", TDEIcon::SizeMedium )); TQVBox *vbox = dlg->addVBoxPage(i18n("Ada Parsing"), i18n("Ada Parsing"), BarIcon( "text-x-src", TDEIcon::SizeMedium ));
ConfigureProblemReporter* w = new ConfigureProblemReporter( vbox ); ConfigureProblemReporter* w = new ConfigureProblemReporter( vbox );
connect(dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept())); connect(dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()));
connect(dlg, TQT_SIGNAL(okClicked()), this, TQT_SLOT(configure())); connect(dlg, TQT_SIGNAL(okClicked()), this, TQT_SLOT(configure()));

@ -43,7 +43,7 @@ BashSupportPart::BashSupportPart(TQObject *parent, const char *name, const TQStr
setXMLFile("kdevbashsupport.rc"); setXMLFile("kdevbashsupport.rc");
TDEAction *action; TDEAction *action;
action = new TDEAction( i18n("&Run"), "exec",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" ); action = new TDEAction( i18n("&Run"), "application-x-executable",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
action->setToolTip(i18n("Run")); action->setToolTip(i18n("Run"));
action->setWhatsThis(i18n("<b>Run</b><p>Starts an application.")); action->setWhatsThis(i18n("<b>Run</b><p>Starts an application."));

@ -28,7 +28,7 @@ static const KDevPluginInfo data("kdev%{APPNAMELC}");
setXMLFile("kdevlang_%{APPNAMELC}.rc"); setXMLFile("kdevlang_%{APPNAMELC}.rc");
m_build = new TDEAction( i18n("&Run"), "exec",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" ); m_build = new TDEAction( i18n("&Run"), "application-x-executable",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
kdDebug() << "Creating %{APPNAMELC} Part" << endl; kdDebug() << "Creating %{APPNAMELC} Part" << endl;

@ -1,6 +1,6 @@
[Desktop Entry] [Desktop Entry]
Exec=tdecmshell %{APPNAMELC} Exec=tdecmshell %{APPNAMELC}
Icon=misc Icon=application-vnd.tde.misc
Type=Application Type=Application
X-TDE-ModuleType=Library X-TDE-ModuleType=Library

@ -449,7 +449,7 @@ void CppSupportPart::configWidget( KDialogBase *dlg )
connect( dlg, TQT_SIGNAL( okClicked() ), w, TQT_SLOT( storeConfig() ) ); connect( dlg, TQT_SIGNAL( okClicked() ), w, TQT_SLOT( storeConfig() ) );
vbox = dlg->addVBoxPage(i18n("C++ Parsing"), i18n("C++ Parsing"), vbox = dlg->addVBoxPage(i18n("C++ Parsing"), i18n("C++ Parsing"),
BarIcon( "source_cpp", TDEIcon::SizeMedium) ); BarIcon( "text-x-c++src", TDEIcon::SizeMedium) );
ConfigureProblemReporter* ww = new ConfigureProblemReporter( vbox ); ConfigureProblemReporter* ww = new ConfigureProblemReporter( vbox );
ww->setPart( this ); ww->setPart( this );
connect(dlg, TQT_SIGNAL(okClicked()), ww, TQT_SLOT(accept())); connect(dlg, TQT_SIGNAL(okClicked()), ww, TQT_SLOT(accept()));
@ -581,7 +581,7 @@ void CppSupportPart::embedProblemReporter( bool force )
if ( force || m_backgroundParserConfig->useProblemReporter() ) if ( force || m_backgroundParserConfig->useProblemReporter() )
{ {
m_problemReporter = new ProblemReporter( this, 0, "problemReporterWidget" ); m_problemReporter = new ProblemReporter( this, 0, "problemReporterWidget" );
m_problemReporter->setIcon( SmallIcon( "info" ) ); m_problemReporter->setIcon( SmallIcon( "application-vnd.tde.info" ) );
m_problemReporter->setCaption( i18n( "Problem Reporter" ) ); m_problemReporter->setCaption( i18n( "Problem Reporter" ) );
mainWindow( ) ->embedOutputView( m_problemReporter, i18n( "Problems" ), i18n( "Problem reporter" ) ); mainWindow( ) ->embedOutputView( m_problemReporter, i18n( "Problems" ), i18n( "Problem reporter" ) );
} }

@ -291,7 +291,7 @@ DebuggerPart::DebuggerPart( TQObject *parent, const char *name, const TQStringLi
"<b>Libraries</b>")); "<b>Libraries</b>"));
action = new TDEAction(i18n("Examine Core File..."), "core", 0, action = new TDEAction(i18n("Examine Core File..."), "application-x-core", 0,
this, TQT_SLOT(slotExamineCore()), this, TQT_SLOT(slotExamineCore()),
actionCollection(), "debug_core"); actionCollection(), "debug_core");
action->setToolTip( i18n("Examine core file") ); action->setToolTip( i18n("Examine core file") );

@ -78,7 +78,7 @@ GenericName[tg]=Интеграл ёфтани созгузор
GenericName[tr]=Hata Ayıklayıcı Önucu GenericName[tr]=Hata Ayıklayıcı Önucu
GenericName[zh_CN]=调试器前端 GenericName[zh_CN]=调试器前端
GenericName[zh_TW]=除錯器前端 GenericName[zh_TW]=除錯器前端
Icon=debugger Icon=application-x-debugger
X-TDE-ServiceTypes=TDevelop/Plugin X-TDE-ServiceTypes=TDevelop/Plugin
X-TDE-Library=libkdevdebugger X-TDE-Library=libkdevdebugger
X-TDevelop-Version=5 X-TDevelop-Version=5

@ -79,7 +79,7 @@ GenericName[tr]=C++ Desteği
GenericName[zh_CN]=C++ 支持 GenericName[zh_CN]=C++ 支持
GenericName[zh_TW]=C++ 支援 GenericName[zh_TW]=C++ 支援
X-TDE-ServiceTypes=TDevelop/LanguageSupport X-TDE-ServiceTypes=TDevelop/LanguageSupport
Icon=source_cpp Icon=text-x-text-x-csrcpp
X-TDE-Library=libkdevcppsupport X-TDE-Library=libkdevcppsupport
X-TDevelop-Version=5 X-TDevelop-Version=5
X-TDevelop-Language=C++ X-TDevelop-Language=C++

@ -78,7 +78,7 @@ GenericName[tr]=C Desteği
GenericName[zh_CN]=C 支持 GenericName[zh_CN]=C 支持
GenericName[zh_TW]=C 支援 GenericName[zh_TW]=C 支援
X-TDE-ServiceTypes=TDevelop/LanguageSupport X-TDE-ServiceTypes=TDevelop/LanguageSupport
Icon=source_cpp Icon=text-x-text-x-csrcpp
X-TDE-Library=libkdevcppsupport X-TDE-Library=libkdevcppsupport
X-TDevelop-Version=5 X-TDevelop-Version=5
X-TDevelop-Language=C X-TDevelop-Language=C

@ -62,17 +62,17 @@ CSharpSupportPart::CSharpSupportPart(TQObject *parent, const char *name, const T
TDEAction *action; TDEAction *action;
action = new TDEAction( i18n("Execute Main Program"), "exec", 0, action = new TDEAction( i18n("Execute Main Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()), this, TQT_SLOT(slotExecute()),
actionCollection(), "build_exec" ); actionCollection(), "build_exec" );
action->setToolTip( i18n("Runs the CSharp program") ); action->setToolTip( i18n("Runs the CSharp program") );
action = new TDEAction( i18n("Execute String..."), "exec", 0, action = new TDEAction( i18n("Execute String..."), "application-x-executable", 0,
this, TQT_SLOT(slotExecuteString()), this, TQT_SLOT(slotExecuteString()),
actionCollection(), "build_execstring" ); actionCollection(), "build_execstring" );
action->setToolTip( i18n("Executes a string as CSharp code") ); action->setToolTip( i18n("Executes a string as CSharp code") );
action = new TDEAction( i18n("Start CSharp Interpreter"), "exec", 0, action = new TDEAction( i18n("Start CSharp Interpreter"), "application-x-executable", 0,
this, TQT_SLOT(slotStartInterpreter()), this, TQT_SLOT(slotStartInterpreter()),
actionCollection(), "build_runinterpreter" ); actionCollection(), "build_runinterpreter" );
action->setToolTip( i18n("Starts the CSharp interpreter without a program") ); action->setToolTip( i18n("Starts the CSharp interpreter without a program") );

@ -147,7 +147,7 @@ JavaSupportPart::JavaSupportPart(TQObject *parent, const char *name, const TQStr
this, TQT_SLOT(partRemoved(KParts::Part*))); this, TQT_SLOT(partRemoved(KParts::Part*)));
m_problemReporter = new ProblemReporter( this, 0, "problemReporterWidget" ); m_problemReporter = new ProblemReporter( this, 0, "problemReporterWidget" );
m_problemReporter->setIcon( SmallIcon("info") ); m_problemReporter->setIcon( SmallIcon("application-vnd.tde.info") );
mainWindow( )->embedOutputView( m_problemReporter, i18n("Problems"), i18n("Problem reporter")); mainWindow( )->embedOutputView( m_problemReporter, i18n("Problems"), i18n("Problem reporter"));
connect( core(), TQT_SIGNAL(configWidget(KDialogBase*)), connect( core(), TQT_SIGNAL(configWidget(KDialogBase*)),

@ -53,7 +53,7 @@ KJSProblems::KJSProblems(kjsSupportPart *part, TQWidget *parent, const char *nam
addColumn ("File"); addColumn ("File");
addColumn ("Line #"); addColumn ("Line #");
addColumn ("Problem:"); addColumn ("Problem:");
setIcon( SmallIcon("info") ); setIcon( SmallIcon("application-vnd.tde.info") );
} }
@ -65,7 +65,7 @@ KJSProblems::~KJSProblems()
void KJSProblems::clearItems() void KJSProblems::clearItems()
{ {
clear(); clear();
setIcon( SmallIcon("info") ); setIcon( SmallIcon("application-vnd.tde.info") );
} }
void KJSProblems::addLine(const TQString &file, int lineNo, const TQString &message) void KJSProblems::addLine(const TQString &file, int lineNo, const TQString &message)

@ -69,7 +69,7 @@ kjsSupportPart::kjsSupportPart(TQObject *parent, const char *name, const TQStrin
setXMLFile("kdevkjssupport.rc"); setXMLFile("kdevkjssupport.rc");
m_build = new TDEAction( i18n("&Run"), "exec",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" ); m_build = new TDEAction( i18n("&Run"), "application-x-executable",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
m_build->setStatusText( i18n("Test the active script.") ); m_build->setStatusText( i18n("Test the active script.") );
kdDebug() << "Creating kjssupport Part" << endl; kdDebug() << "Creating kjssupport Part" << endl;

@ -62,17 +62,17 @@ PerlSupportPart::PerlSupportPart(TQObject *parent, const char *name, const TQStr
TDEAction *action; TDEAction *action;
action = new TDEAction( i18n("Execute Main Program"), "exec", 0, action = new TDEAction( i18n("Execute Main Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()), this, TQT_SLOT(slotExecute()),
actionCollection(), "build_exec" ); actionCollection(), "build_exec" );
action->setToolTip( i18n("Runs the Perl program") ); action->setToolTip( i18n("Runs the Perl program") );
action = new TDEAction( i18n("Execute String..."), "exec", 0, action = new TDEAction( i18n("Execute String..."), "application-x-executable", 0,
this, TQT_SLOT(slotExecuteString()), this, TQT_SLOT(slotExecuteString()),
actionCollection(), "build_execstring" ); actionCollection(), "build_execstring" );
action->setToolTip( i18n("Executes a string as Perl code") ); action->setToolTip( i18n("Executes a string as Perl code") );
action = new TDEAction( i18n("Start Perl Interpreter"), "exec", 0, action = new TDEAction( i18n("Start Perl Interpreter"), "application-x-executable", 0,
this, TQT_SLOT(slotStartInterpreter()), this, TQT_SLOT(slotStartInterpreter()),
actionCollection(), "build_runinterpreter" ); actionCollection(), "build_runinterpreter" );
action->setToolTip( i18n("Starts the Perl interpreter without a program") ); action->setToolTip( i18n("Starts the Perl interpreter without a program") );

@ -88,7 +88,7 @@ PHPSupportPart::PHPSupportPart(TQObject *parent, const char *name, const TQStrin
TDEAction *action; TDEAction *action;
action = new TDEAction( i18n("&Run"), "exec",Key_F9, action = new TDEAction( i18n("&Run"), "application-x-executable",Key_F9,
this, TQT_SLOT(slotRun()), this, TQT_SLOT(slotRun()),
actionCollection(), "build_execute" ); actionCollection(), "build_execute" );
action->setToolTip(i18n("Run")); action->setToolTip(i18n("Run"));
@ -101,7 +101,7 @@ PHPSupportPart::PHPSupportPart(TQObject *parent, const char *name, const TQStrin
action->setWhatsThis(i18n("<b>New class</b><p>Runs New Class wizard.")); action->setWhatsThis(i18n("<b>New class</b><p>Runs New Class wizard."));
m_phpErrorView = new PHPErrorView(this, 0, "phpErrorWidget"); m_phpErrorView = new PHPErrorView(this, 0, "phpErrorWidget");
m_phpErrorView->setIcon( SmallIcon("info") ); m_phpErrorView->setIcon( SmallIcon("application-vnd.tde.info") );
TQWhatsThis::add(m_phpErrorView, i18n("<b>PHP problems</b><p>This view shows PHP parser warnings, errors, and fatal errors.")); TQWhatsThis::add(m_phpErrorView, i18n("<b>PHP problems</b><p>This view shows PHP parser warnings, errors, and fatal errors."));
mainWindow()->embedOutputView(m_phpErrorView, i18n("Problems"), i18n("Problems")); mainWindow()->embedOutputView(m_phpErrorView, i18n("Problems"), i18n("Problems"));
@ -208,7 +208,7 @@ void PHPSupportPart::slotConfigStored() {
} }
void PHPSupportPart::projectConfigWidget(KDialogBase *dlg) { void PHPSupportPart::projectConfigWidget(KDialogBase *dlg) {
TQVBox *vbox = dlg->addVBoxPage(i18n( "PHP Specific" ), i18n("PHP Settings"), BarIcon( "source", TDEIcon::SizeMedium )); TQVBox *vbox = dlg->addVBoxPage(i18n( "PHP Specific" ), i18n("PHP Settings"), BarIcon( "text-x-src", TDEIcon::SizeMedium ));
PHPConfigWidget* w = new PHPConfigWidget(configData,vbox, "php config widget"); PHPConfigWidget* w = new PHPConfigWidget(configData,vbox, "php config widget");
connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) ); connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) );
} }

@ -60,19 +60,19 @@ PythonSupportPart::PythonSupportPart(TQObject *parent, const char *name, const T
TDEAction *action; TDEAction *action;
action = new TDEAction( i18n("Execute Program"), "exec", 0, action = new TDEAction( i18n("Execute Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()), this, TQT_SLOT(slotExecute()),
actionCollection(), "build_exec" ); actionCollection(), "build_exec" );
action->setToolTip( i18n("Execute program") ); action->setToolTip( i18n("Execute program") );
action->setWhatsThis(i18n("<b>Execute program</b><p>Runs the Python program.")); action->setWhatsThis(i18n("<b>Execute program</b><p>Runs the Python program."));
action = new TDEAction( i18n("Execute String..."), "exec", 0, action = new TDEAction( i18n("Execute String..."), "application-x-executable", 0,
this, TQT_SLOT(slotExecuteString()), this, TQT_SLOT(slotExecuteString()),
actionCollection(), "build_execstring" ); actionCollection(), "build_execstring" );
action->setToolTip( i18n("Execute string") ); action->setToolTip( i18n("Execute string") );
action->setWhatsThis(i18n("<b>Execute String</b><p>Executes a string as Python code.")); action->setWhatsThis(i18n("<b>Execute String</b><p>Executes a string as Python code."));
action = new TDEAction( i18n("Start Python Interpreter"), "exec", 0, action = new TDEAction( i18n("Start Python Interpreter"), "application-x-executable", 0,
this, TQT_SLOT(slotStartInterpreter()), this, TQT_SLOT(slotStartInterpreter()),
actionCollection(), "build_runinterpreter" ); actionCollection(), "build_runinterpreter" );
action->setToolTip( i18n("Start Python interpreter") ); action->setToolTip( i18n("Start Python interpreter") );

@ -48,14 +48,14 @@ RubySupportPart::RubySupportPart(TQObject *parent, const char *name, const TQStr
setXMLFile("kdevrubysupport.rc"); setXMLFile("kdevrubysupport.rc");
TDEAction *action; TDEAction *action;
action = new TDEAction( i18n("&Run"), "exec", SHIFT + Key_F9, action = new TDEAction( i18n("&Run"), "application-x-executable", SHIFT + Key_F9,
this, TQT_SLOT(slotRun()), this, TQT_SLOT(slotRun()),
actionCollection(), "build_execute" ); actionCollection(), "build_execute" );
action->setToolTip(i18n("Run")); action->setToolTip(i18n("Run"));
action->setWhatsThis(i18n("<b>Run</b><p>Starts an application.")); action->setWhatsThis(i18n("<b>Run</b><p>Starts an application."));
action->setIcon("ruby_run.png"); action->setIcon("ruby_run.png");
action = new TDEAction( i18n("Run Test Under Cursor"), "exec", ALT + Key_F9, action = new TDEAction( i18n("Run Test Under Cursor"), "application-x-executable", ALT + Key_F9,
this, TQT_SLOT(slotRunTestUnderCursor()), this, TQT_SLOT(slotRunTestUnderCursor()),
actionCollection(), "build_execute_test_function" ); actionCollection(), "build_execute_test_function" );
action->setToolTip(i18n("Run Test Under Cursor")); action->setToolTip(i18n("Run Test Under Cursor"));

@ -40,7 +40,7 @@ SQLSupportPart::SQLSupportPart( TQObject *parent, const char *name, const TQStri
setXMLFile( "kdevsqlsupport.rc" ); setXMLFile( "kdevsqlsupport.rc" );
TDEAction *action; TDEAction *action;
action = new TDEAction( i18n( "&Run" ), "exec", Key_F9, this, TQT_SLOT( slotRun() ), actionCollection(), "build_execute" ); action = new TDEAction( i18n( "&Run" ), "application-x-executable", Key_F9, this, TQT_SLOT( slotRun() ), actionCollection(), "build_execute" );
action->setToolTip(i18n("Run")); action->setToolTip(i18n("Run"));
action->setWhatsThis(i18n("<b>Run</b><p>Executes a SQL script.")); action->setWhatsThis(i18n("<b>Run</b><p>Executes a SQL script."));
@ -132,7 +132,7 @@ void SQLSupportPart::loadConfig()
void SQLSupportPart::projectConfigWidget( KDialogBase *dlg ) void SQLSupportPart::projectConfigWidget( KDialogBase *dlg )
{ {
TQVBox *vbox = dlg->addVBoxPage( TQString( "SQL" ), i18n( "Specify Your Database Connections" ), BarIcon("source", TDEIcon::SizeMedium) ); TQVBox *vbox = dlg->addVBoxPage( TQString( "SQL" ), i18n( "Specify Your Database Connections" ), BarIcon("text-x-src", TDEIcon::SizeMedium) );
SqlConfigWidget *w = new SqlConfigWidget( (TQWidget*)vbox, "SQL config widget" ); SqlConfigWidget *w = new SqlConfigWidget( (TQWidget*)vbox, "SQL config widget" );
w->setProjectDom( projectDom() ); w->setProjectDom( projectDom() );
w->loadConfig(); w->loadConfig();

@ -36,7 +36,7 @@ Comment[tr]=Fortran Kaynak Dosyası
Comment[zh_CN]=Fortran 源文件 Comment[zh_CN]=Fortran 源文件
Comment[zh_TW]=Fortran 程式源碼檔 Comment[zh_TW]=Fortran 程式源碼檔
Hidden=false Hidden=false
Icon=source_f Icon=text-x-text-x-fortran
MimeType=text/x-fortran MimeType=text/x-fortran
Patterns=*.f;*.F;*.f77;*.f90;*.f95;*.for;*.ftn;*.fpp Patterns=*.f;*.F;*.f77;*.f90;*.f95;*.for;*.ftn;*.fpp
Type=MimeType Type=MimeType

@ -42,7 +42,7 @@ AbbrevConfigWidget::AbbrevConfigWidget(AbbrevPart *part, TQWidget *parent, const
templ->suffixes, templ->suffixes,
templ->code, templ->code,
templ->code ); templ->code );
it->setPixmap( 0, SmallIcon("template_source")); it->setPixmap( 0, SmallIcon("application-vnd.tde.template_source"));
} }
checkWordCompletion->setChecked( part->autoWordCompletionEnabled() ); checkWordCompletion->setChecked( part->autoWordCompletionEnabled() );
@ -95,7 +95,7 @@ void AbbrevConfigWidget::codeChanged()
if( item ){ if( item ){
item->setText( 3, editCode->text() ); item->setText( 3, editCode->text() );
if (item->text(3) == item->text(4)) if (item->text(3) == item->text(4))
item->setPixmap( 0, SmallIcon("template_source") ); item->setPixmap( 0, SmallIcon("application-vnd.tde.template_source") );
else else
item->setPixmap( 0, SmallIcon("document-save") ); item->setPixmap( 0, SmallIcon("document-save") );
} }

@ -76,7 +76,7 @@ GenericName[tr]=Kısaltma Genişlemesi
GenericName[zh_CN]=缩写扩展 GenericName[zh_CN]=缩写扩展
GenericName[zh_TW]=縮寫擴展 GenericName[zh_TW]=縮寫擴展
X-TDE-ServiceTypes=TDevelop/Plugin X-TDE-ServiceTypes=TDevelop/Plugin
Icon=fontsizeup Icon=font-x-genericsizeup
X-TDE-Library=libkdevabbrev X-TDE-Library=libkdevabbrev
X-TDevelop-Version=5 X-TDevelop-Version=5
X-TDevelop-Scope=Global X-TDevelop-Scope=Global

@ -211,7 +211,7 @@ void BookmarksWidget::createURL( EditorData * data )
{ {
TQListViewItem * file = new BookmarkItem( this, data->url ); TQListViewItem * file = new BookmarkItem( this, data->url );
file->setOpen( true ); file->setOpen( true );
file->setPixmap( 0, SmallIcon( "document" ) ); file->setPixmap( 0, SmallIcon( "text-x-generic" ) );
TQValueListIterator< TQPair<int,TQString> > it = data->marks.begin(); TQValueListIterator< TQPair<int,TQString> > it = data->marks.begin();
while ( it != data->marks.end() ) while ( it != data->marks.end() )

@ -76,7 +76,7 @@ void DocumentationItem::init( )
icon = "contents"; icon = "contents";
break; break;
default: default:
icon = "document"; icon = "text-x-generic";
} }
setPixmap(0, SmallIcon(icon)); setPixmap(0, SmallIcon(icon));

@ -219,7 +219,7 @@ InputString::InputString(const TQString & label,
if (m == StringFile || m == StringDir) { if (m == StringFile || m == StringDir) {
br = new TQPushButton(this); br = new TQPushButton(this);
br->setPixmap(SmallIcon(m==StringFile? "document" : "folder")); br->setPixmap(SmallIcon(m==StringFile? "text-x-generic" : "folder"));
TQToolTip::add(br, m==StringFile? i18n("Browse to a file") : i18n("Browse to a folder")); TQToolTip::add(br, m==StringFile? i18n("Browse to a file") : i18n("Browse to a folder"));
layout->addWidget(br, 0, 2); layout->addWidget(br, 0, 2);
} }
@ -362,7 +362,7 @@ InputStrList::InputStrList(const TQString & label,
if (lm != ListString) { if (lm != ListString) {
if (lm & ListFile) { if (lm & ListFile) {
brFile = new TQPushButton(dw); brFile = new TQPushButton(dw);
brFile->setPixmap(SmallIcon("document")); brFile->setPixmap(SmallIcon("text-x-generic"));
TQToolTip::add(brFile, i18n("Browse to a file")); TQToolTip::add(brFile, i18n("Browse to a file"));
boxlayout->addWidget(brFile); boxlayout->addWidget(brFile);
} }

@ -145,7 +145,7 @@ private:
FileGroupsFileItem::FileGroupsFileItem(TQListViewItem *parent, const TQString &fileName) FileGroupsFileItem::FileGroupsFileItem(TQListViewItem *parent, const TQString &fileName)
: TQListViewItem(parent), fullname(fileName) : TQListViewItem(parent), fullname(fileName)
{ {
setPixmap(0, SmallIcon("document")); setPixmap(0, SmallIcon("text-x-generic"));
TQFileInfo fi(fileName); TQFileInfo fi(fileName);
setText(0, fi.fileName()); setText(0, fi.fileName());
setText(1, "./" + fi.dirPath()); setText(1, "./" + fi.dirPath());

@ -76,7 +76,7 @@ GenericName[tg]=Тирезаи хориҷ кардани гузориш
GenericName[tr]=Uygulama Çıktı Görünümü GenericName[tr]=Uygulama Çıktı Görünümü
GenericName[zh_CN]=应用程序输出查看器 GenericName[zh_CN]=应用程序输出查看器
GenericName[zh_TW]=應用程式輸出檢視 GenericName[zh_TW]=應用程式輸出檢視
Icon=exec Icon=application-x-executable
X-TDE-ServiceTypes=TDevelop/AppFrontend X-TDE-ServiceTypes=TDevelop/AppFrontend
X-TDE-Library=libkdevappview X-TDE-Library=libkdevappview
X-TDevelop-Version=5 X-TDevelop-Version=5

@ -40,7 +40,7 @@ MakeViewPart::MakeViewPart(TQObject *parent, const char *name, const TQStringLis
m_dcop = new KDevMakeFrontendIface(this); m_dcop = new KDevMakeFrontendIface(this);
m_widget = new MakeWidget(this); m_widget = new MakeWidget(this);
m_widget->setIcon( SmallIcon("exec") ); m_widget->setIcon( SmallIcon("application-x-executable") );
m_widget->setCaption(i18n("Messages Output")); m_widget->setCaption(i18n("Messages Output"));
TQWhatsThis::add(m_widget, i18n("<b>Messages output</b><p>" TQWhatsThis::add(m_widget, i18n("<b>Messages output</b><p>"
"The messages window shows the output of the compiler and " "The messages window shows the output of the compiler and "

@ -61,7 +61,7 @@ Comment[sv]=Skriptinsticksprogrammet erbjuder KScript-baserad styrning av progra
Comment[tr]=Betik Yazma eklentisi TDevelop uygulamasına KScript tabanlı betik yazmayı sunar. Comment[tr]=Betik Yazma eklentisi TDevelop uygulamasına KScript tabanlı betik yazmayı sunar.
Comment[zh_CN]=脚本插件可为 TDevelop 应用程序提供基于 KScript 的脚本。 Comment[zh_CN]=脚本插件可为 TDevelop 应用程序提供基于 KScript 的脚本。
Comment[zh_TW]=文稿外掛程式提供 TDevelop 應用程式一個 KScript 基礎的文稿機制。 Comment[zh_TW]=文稿外掛程式提供 TDevelop 應用程式一個 KScript 基礎的文稿機制。
Icon=shellscript Icon=text-x-text-x-script
X-TDE-ServiceTypes=TDevelop/Plugin X-TDE-ServiceTypes=TDevelop/Plugin
X-TDevelop-Plugin-Version=1 X-TDevelop-Plugin-Version=1

@ -35,7 +35,7 @@ Comment[sv]=Funktion för integrering av Subversion i projekt
Comment[tr]=Subversion Proje Bütünleştirme Aracı Comment[tr]=Subversion Proje Bütünleştirme Aracı
Comment[zh_CN]=Subversion 工程集成功能 Comment[zh_CN]=Subversion 工程集成功能
Comment[zh_TW]=Subversion 專案整合工具 Comment[zh_TW]=Subversion 專案整合工具
Icon=misc Icon=application-vnd.tde.misc
Exec=blubb Exec=blubb
X-TDE-ServiceTypes=TDevelop/VCSIntegrator X-TDE-ServiceTypes=TDevelop/VCSIntegrator
X-TDE-Library=libsubversionintegrator X-TDE-Library=libsubversionintegrator

@ -27,7 +27,7 @@ GenericName[pt_BR]=Subversão
GenericName[ru]=Интеграция Subversion GenericName[ru]=Интеграция Subversion
GenericName[ta]=துணை பதிப்பு GenericName[ta]=துணை பதிப்பு
GenericName[tg]=Зер-ривоят GenericName[tg]=Зер-ривоят
Icon=misc Icon=application-vnd.tde.misc
X-TDE-ServiceTypes=TDevelop/VersionControl X-TDE-ServiceTypes=TDevelop/VersionControl
X-TDE-Library=libkdevsubversion X-TDE-Library=libkdevsubversion
X-TDevelop-Version=5 X-TDevelop-Version=5

Loading…
Cancel
Save