[Bug 71464] Naming consistency for "grep"
Amilcar do Carmo Lucas
amilcar at ida.ing.tu-bs.de
Sat Jun 26 20:05:08 UTC 2004
------- 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=71464
amilcar ida ing tu-bs de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From amilcar ida ing tu-bs de 2004-06-26 20:04 -------
CVS commit by aclu:
Make the naming of the "Find in files" dialogs/menus consistent thoughout KDevelop.
CCMAIL: 71464-done bugs kde org
M +1 -1 grepdlg.cpp 1.27
M +4 -4 grepviewpart.cpp 1.39
M +1 -1 grepviewwidget.cpp 1.34
--- kdevelop/parts/grepview/grepdlg.cpp #1.26:1.27
@ -73,5 +73,5 @ GrepDialog::GrepDialog( GrepViewPart * p
: QDialog(parent, name, false), m_part( part )
{
- setCaption(i18n("Search in Files"));
+ setCaption(i18n("Find in files"));
config = GrepViewFactory::instance()->config();
--- kdevelop/parts/grepview/grepviewpart.cpp #1.38:1.39
@ -52,5 +52,5 @ GrepViewPart::GrepViewPart( QObject *par
m_widget->setIcon(SmallIcon("find"));
m_widget->setCaption(i18n("Grep Output"));
- QWhatsThis::add(m_widget, i18n("<b>Grep</b><p>"
+ QWhatsThis::add(m_widget, i18n("<b>Find in files</b><p>"
"This window contains the output of a grep "
"command. Clicking on an item in the list "
@ -59,5 +59,5 @ GrepViewPart::GrepViewPart( QObject *par
"with the match."));
- mainWindow()->embedOutputView(m_widget, i18n("Grep"), i18n("Output of the grep command"));
+ mainWindow()->embedOutputView(m_widget, i18n("Find in files"), i18n("Output of the grep command"));
KAction *action;
@ -68,5 +68,5 @ GrepViewPart::GrepViewPart( QObject *par
action->setToolTip( i18n("Search for expressions over several files") );
action->setWhatsThis( i18n("<b>Find in files</b><p>"
- "Opens the 'Search in Files' dialog. There you "
+ "Opens the 'Find in files' dialog. There you "
"can enter a regular expression which is then "
"searched for within all files in the directories "
@ -119,5 +119,5 @ void GrepViewPart::contextMenu(QPopupMen
int id = popup->insertItem( i18n("Grep: %1").arg(squeezed),
this, SLOT(slotContextGrep()) );
- popup->setWhatsThis(id, i18n("<b>Grep</b><p>Opens the search in files dialog "
+ popup->setWhatsThis(id, i18n("<b>Grep</b><p>Opens the find in files dialog "
"and sets the pattern to a text under the cursor."));
popup->insertSeparator();
--- kdevelop/parts/grepview/grepviewwidget.cpp #1.33:1.34
@ -307,5 +307,5 @ void GrepViewWidget::popupMenu(QListBoxI
if(KAction *findAction = m_part->actionCollection()->action("edit_grep")) {
KPopupMenu rmbMenu;
- rmbMenu.insertTitle(i18n("Grep"));
+ rmbMenu.insertTitle(i18n("Find in files"));
findAction->plug(&rmbMenu);
rmbMenu.exec(p);
More information about the KDevelop-devel
mailing list