[Bug 65348] Feature Request: Need an 'Add external file to project' menu item.

Amilcar do Carmo Lucas amilcar at ida.ing.tu-bs.de
Tue Oct 28 15:37:06 UTC 2003


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
     
http://bugs.kde.org/show_bug.cgi?id=65348     




------- Additional Comments From amilcar at ida.ing.tu-bs.de  2003-10-28 15:36 -------
Subject: kdevelop/buildtools

CVS commit by aclu: 

Usability fix

CCMAIL: 65348 at bugs.kde.org


  M +2 -2      ant/antprojectpart.cpp   1.19
  M +2 -2      custommakefiles/customprojectpart.cpp   1.65


--- kdevelop/buildtools/ant/antprojectpart.cpp  #1.18:1.19
@@ -554,5 +554,5 @@ void AntProjectPart::contextMenu(QPopupM
   if (inProject)
   {
-    int id = popup->insertItem( i18n("Remove From Project: %1").arg(popupstr),
+    int id = popup->insertItem( i18n("Remove %1 from project").arg(popupstr),
                        this, SLOT(slotRemoveFromProject()) );
     popup->setWhatsThis(id, i18n("<b>Remove from project</b><p>Removes current file from the project."));
@@ -560,5 +560,5 @@ void AntProjectPart::contextMenu(QPopupM
   else
   {
-    int id = popup->insertItem( i18n("Add to Project: %1").arg(popupstr),
+    int id = popup->insertItem( i18n("Add %1 to project").arg(popupstr),
                        this, SLOT(slotAddToProject()) );
     popup->setWhatsThis(id, i18n("<b>Add to project</b><p>Adds current file from the project."));

--- kdevelop/buildtools/custommakefiles/customprojectpart.cpp  #1.64:1.65
@@ -183,5 +183,5 @@ void CustomProjectPart::contextMenu(QPop
     if (inProject)
     {
-        int id = popup->insertItem( i18n("Remove From Project: %1").arg(popupstr),
+        int id = popup->insertItem( i18n("Remove %1 from project").arg(popupstr),
                            this, SLOT(slotRemoveFromProject()) );
         popup->setWhatsThis(id, i18n("<b>Remove from project</b><p>Removes current file from the list of files in project. "
@@ -190,5 +190,5 @@ void CustomProjectPart::contextMenu(QPop
     else
     {
-        int id = popup->insertItem( i18n("Add to Project: %1").arg(popupstr),
+        int id = popup->insertItem( i18n("Add %1 to project").arg(popupstr),
                            this, SLOT(slotAddToProject()) );
         popup->setWhatsThis(id, i18n("<b>Add to project</b><p>Adds current file to the list of files in project. "




More information about the KDevelop-devel mailing list