From 722ce1efbac31c61b1d4b13f7e075c9f311e3e73 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 2 Mar 2014 20:05:33 +0100 Subject: Finish renaming tdevelop components --- parts/grepview/CMakeLists.txt | 10 ++--- parts/grepview/Makefile.am | 16 +++---- parts/grepview/grepdlg.cpp | 2 +- parts/grepview/grepviewpart.cpp | 28 ++++++------ parts/grepview/grepviewpart.h | 10 ++--- parts/grepview/grepviewwidget.cpp | 16 +++---- parts/grepview/grepviewwidget.h | 4 +- parts/grepview/kdevgrepview.desktop | 86 ------------------------------------- parts/grepview/kdevgrepview.rc | 9 ---- parts/grepview/tdevgrepview.desktop | 86 +++++++++++++++++++++++++++++++++++++ parts/grepview/tdevgrepview.rc | 9 ++++ 11 files changed, 138 insertions(+), 138 deletions(-) delete mode 100644 parts/grepview/kdevgrepview.desktop delete mode 100644 parts/grepview/kdevgrepview.rc create mode 100644 parts/grepview/tdevgrepview.desktop create mode 100644 parts/grepview/tdevgrepview.rc (limited to 'parts/grepview') diff --git a/parts/grepview/CMakeLists.txt b/parts/grepview/CMakeLists.txt index 5ad23e4f..96d4042b 100644 --- a/parts/grepview/CMakeLists.txt +++ b/parts/grepview/CMakeLists.txt @@ -27,16 +27,16 @@ link_directories( ##### other data ################################ -install( FILES kdevgrepview.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) -install( FILES kdevgrepview.rc DESTINATION ${DATA_INSTALL_DIR}/kdevgrepview ) +install( FILES tdevgrepview.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) +install( FILES tdevgrepview.rc DESTINATION ${DATA_INSTALL_DIR}/tdevgrepview ) -##### libkdevgrepview (module) ################## +##### libtdevgrepview (module) ################## -tde_add_kpart( libkdevgrepview AUTOMOC +tde_add_kpart( libtdevgrepview AUTOMOC SOURCES grepviewpart.cpp grepviewwidget.cpp grepdlg.cpp LINK - kdevwidgets-shared tdevelop-shared + tdevwidgets-shared tdevelop-shared DESTINATION ${PLUGIN_INSTALL_DIR} ) diff --git a/parts/grepview/Makefile.am b/parts/grepview/Makefile.am index dc5f5fed..8ae4725c 100644 --- a/parts/grepview/Makefile.am +++ b/parts/grepview/Makefile.am @@ -3,17 +3,17 @@ INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/util \ -I$(top_srcdir)/lib/widgets $(all_includes) -kde_module_LTLIBRARIES = libkdevgrepview.la -libkdevgrepview_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -libkdevgrepview_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ - $(top_builddir)/lib/widgets/libkdevwidgets.la $(LIB_TDEHTML) +kde_module_LTLIBRARIES = libtdevgrepview.la +libtdevgrepview_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) +libtdevgrepview_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ + $(top_builddir)/lib/widgets/libtdevwidgets.la $(LIB_TDEHTML) -libkdevgrepview_la_SOURCES = grepviewpart.cpp grepviewwidget.cpp grepdlg.cpp +libtdevgrepview_la_SOURCES = grepviewpart.cpp grepviewwidget.cpp grepdlg.cpp METASOURCES = AUTO servicedir = $(kde_servicesdir) -service_DATA = kdevgrepview.desktop +service_DATA = tdevgrepview.desktop -rcdir = $(kde_datadir)/kdevgrepview -rc_DATA = kdevgrepview.rc +rcdir = $(kde_datadir)/tdevgrepview +rc_DATA = tdevgrepview.rc diff --git a/parts/grepview/grepdlg.cpp b/parts/grepview/grepdlg.cpp index 6333805f..8e8b0eb3 100644 --- a/parts/grepview/grepdlg.cpp +++ b/parts/grepview/grepdlg.cpp @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #include "grepviewpart.h" diff --git a/parts/grepview/grepviewpart.cpp b/parts/grepview/grepviewpart.cpp index 92f4ebb6..9d6b08c5 100644 --- a/parts/grepview/grepviewpart.cpp +++ b/parts/grepview/grepviewpart.cpp @@ -23,26 +23,26 @@ #include #include -#include "kdevcore.h" -#include "kdevpartcontroller.h" -#include "kdevmainwindow.h" -#include "kdevplugininfo.h" -#include "kdeveditorutil.h" +#include "tdevcore.h" +#include "tdevpartcontroller.h" +#include "tdevmainwindow.h" +#include "tdevplugininfo.h" +#include "tdeveditorutil.h" #include "grepviewwidget.h" -static const KDevPluginInfo data("kdevgrepview"); +static const TDevPluginInfo data("tdevgrepview"); -K_EXPORT_COMPONENT_FACTORY(libkdevgrepview, GrepViewFactory(data)) +K_EXPORT_COMPONENT_FACTORY(libtdevgrepview, GrepViewFactory(data)) GrepViewPart::GrepViewPart( TQObject *parent, const char *name, const TQStringList & ) - : KDevPlugin( &data, parent, name ? name : "GrepViewPart" ) + : TDevPlugin( &data, parent, name ? name : "GrepViewPart" ) { setInstance(GrepViewFactory::instance()); - setXMLFile("kdevgrepview.rc"); + setXMLFile("tdevgrepview.rc"); - connect( core(), TQT_SIGNAL(stopButtonClicked(KDevPlugin*)), - this, TQT_SLOT(stopButtonClicked(KDevPlugin*)) ); + connect( core(), TQT_SIGNAL(stopButtonClicked(TDevPlugin*)), + this, TQT_SLOT(stopButtonClicked(TDevPlugin*)) ); connect( core(), TQT_SIGNAL(projectOpened()), this, TQT_SLOT(projectOpened()) ); connect( core(), TQT_SIGNAL(projectClosed()), this, TQT_SLOT(projectClosed()) ); connect( core(), TQT_SIGNAL(contextMenu(TQPopupMenu *, const Context *)), @@ -83,7 +83,7 @@ GrepViewPart::~GrepViewPart() } -void GrepViewPart::stopButtonClicked(KDevPlugin* which) +void GrepViewPart::stopButtonClicked(TDevPlugin* which) { if ( which != 0 && which != this ) return; @@ -129,10 +129,10 @@ void GrepViewPart::slotGrep() { if ( !m_widget->isRunning() ) { - TQString contextString = KDevEditorUtil::currentSelection( dynamic_cast( partController()->activePart() ) ); + TQString contextString = TDevEditorUtil::currentSelection( dynamic_cast( partController()->activePart() ) ); if ( contextString.isEmpty() ) { - contextString = KDevEditorUtil::currentWord( dynamic_cast( partController()->activePart() ) ); + contextString = TDevEditorUtil::currentWord( dynamic_cast( partController()->activePart() ) ); } m_widget->showDialogWithPattern( contextString ); } diff --git a/parts/grepview/grepviewpart.h b/parts/grepview/grepviewpart.h index 4ebd7638..68c4a574 100644 --- a/parts/grepview/grepviewpart.h +++ b/parts/grepview/grepviewpart.h @@ -13,8 +13,8 @@ #define _GREPVIEWPART_H_ #include -#include -#include "kdevplugin.h" +#include +#include "tdevplugin.h" class KDialogBase; class TQPopupMenu; @@ -22,7 +22,7 @@ class Context; class GrepViewWidget; -class GrepViewPart : public KDevPlugin +class GrepViewPart : public TDevPlugin { Q_OBJECT @@ -32,7 +32,7 @@ public: ~GrepViewPart(); private slots: - void stopButtonClicked(KDevPlugin *which); + void stopButtonClicked(TDevPlugin *which); void projectOpened(); void projectClosed(); void contextMenu(TQPopupMenu *popup, const Context *context); @@ -46,6 +46,6 @@ private: friend class GrepViewWidget; }; -typedef KDevGenericFactory GrepViewFactory; +typedef TDevGenericFactory GrepViewFactory; #endif diff --git a/parts/grepview/grepviewwidget.cpp b/parts/grepview/grepviewwidget.cpp index 1d709dff..edcdaa7c 100644 --- a/parts/grepview/grepviewwidget.cpp +++ b/parts/grepview/grepviewwidget.cpp @@ -27,10 +27,10 @@ #include using namespace KTextEditor; -#include "kdevcore.h" -#include "kdevproject.h" -#include "kdevmainwindow.h" -#include "kdevpartcontroller.h" +#include "tdevcore.h" +#include "tdevproject.h" +#include "tdevmainwindow.h" +#include "tdevpartcontroller.h" #include "grepdlg.h" #include "grepviewpart.h" @@ -181,7 +181,7 @@ void GrepViewWidget::showDialog() } } // Determine if we have a list of project files - KDevProject *openProject = m_part->project(); + TDevProject *openProject = m_part->project(); if (openProject) { grepdlg->setEnableProjectBox(!openProject->allFiles().isEmpty()); @@ -225,7 +225,7 @@ void GrepViewWidget::showDialogWithPattern(TQString pattern) grepdlg->setPattern( pattern ); // Determine if we have a list of project files - KDevProject *openProject = m_part->project(); + TDevProject *openProject = m_part->project(); if (openProject) { grepdlg->setEnableProjectBox(!openProject->allFiles().isEmpty()); @@ -255,7 +255,7 @@ void GrepViewWidget::searchActivated() if (grepdlg->useProjectFilesFlag()) { - KDevProject *openProject = m_part->project(); + TDevProject *openProject = m_part->project(); if (openProject) { TQString tmpFilePath; @@ -430,7 +430,7 @@ void GrepViewProcessWidget::insertStdoutLine(const TQCString &line) } -void GrepViewWidget::projectChanged(KDevProject *project) +void GrepViewWidget::projectChanged(TDevProject *project) { TQString dir = project? project->projectDirectory() : TQDir::homeDirPath(); grepdlg->setDirectory(dir); diff --git a/parts/grepview/grepviewwidget.h b/parts/grepview/grepviewwidget.h index 3bf803b5..0f05c136 100644 --- a/parts/grepview/grepviewwidget.h +++ b/parts/grepview/grepviewwidget.h @@ -18,7 +18,7 @@ class GrepDialog; class GrepViewPart; -class KDevProject; +class TDevProject; class KTabWidget; class TQHBoxLayout; class TQToolButton; @@ -66,7 +66,7 @@ public: GrepViewWidget(GrepViewPart *part); ~GrepViewWidget(); - void projectChanged(KDevProject *project); + void projectChanged(TDevProject *project); void killJob( int signo = SIGTERM ); bool isRunning() const; diff --git a/parts/grepview/kdevgrepview.desktop b/parts/grepview/kdevgrepview.desktop deleted file mode 100644 index 0521c804..00000000 --- a/parts/grepview/kdevgrepview.desktop +++ /dev/null @@ -1,86 +0,0 @@ -[Desktop Entry] -Type=Service -Exec=blubb -Comment=Integrates "find|grep" in TDevelop - allows fast searching of multiple files using patterns or regular expressions. -Comment[ca]=Integra "find|grep" en el TDevelop, permetent la recerca ràpida de diversos fitxers emprant patrons o expressions regulars. -Comment[da]=Integrerer "find|grep" i TDevelop - tillader hurtig søgning i flere filer ved brug af mønstre eller regulære udtryk. -Comment[de]=Integration von "find|grep" in TDevelop. - Ermöglicht das schnelle Durchsuchen mehrere Dateien mit Hilfe von Suchmustern und regulären Ausdrücken. -Comment[el]=Ενσωματώνει τα "find|grep" στο TDevelop - επιτρέπει τη γρήγορη αναζήτηση σε πολλά αρχεία χρησιμοποιώντας μοτίβα ή κανονικές εκφράσεις. -Comment[es]=Integra «find|grep» en TDevelop, permitiendo la búsqueda rápida de varios archivos utilizando patrones o expresiones regulares. -Comment[et]=Integreerib TDevelopi programmi "Find|grep", mis lubab mustreid või regulaaravaldisi kasutades kiiresti paljudes failides teksti otsida. -Comment[eu]="find|grep" TDevelop-en txertatzen du - fitxategi anitzetan eredu edo espresio erregularrak erabiliz bilaketa azkarrak egiteko aukera ematen du. -Comment[fa]=«find|grep» را در TDevelop مجتمع‌سازی می‌کند. اجازۀ جستجوی سریع پرونده‌های چندگانه را با استفاده از الگوها یا عبارتهای منظم می‌دهد. -Comment[fr]=Intègre « find|grep » dans TDevelop - permet d'effectuer une recherche rapide dans des fichiers multiples en utilisant des motifs ou des expressions rationnelles. -Comment[gl]=Integra "find|grep" en TDevelop - permite a procura rápida de varios ficheiros usando patróns ou expresións regulares. -Comment[hu]=A "find|grep" programok integrálása a TDevelopba - lehetővé teszi szövegek fájlokban való gyors keresését minták és reguláris kifejezések felhasználásával -Comment[it]=Integra "find|grep" in TDevelop - permette la ricerca rapida di file multipli utilizzando motivi o espressioni regolari. -Comment[ja]="find|grep" を TDevelop 内に統合し、正規表現やパターンを用いて素早く複数のファイルを検索することを可能にします。 -Comment[ms]=Menggabungkan "find|grep" dalam TDevelop - membenarkan carian pantas beberapa fail menggunakan corak atau regular expression. -Comment[nds]=Buut "find|grep" na TDevelop in. - Stellt gau Dörsöken vun mehr Dateien mit Söökmustern oder reguleer Utdrück praat. -Comment[ne]=केडीई विकासमा "find|grep" एकीकरण गर्दछ - जसले नियमित अभिव्यक्ति वा बाँन्की प्रयोग गरेर बहुविध फाइलको छिटो खोजी गर्न अनुमति दिन्छ । -Comment[nl]=Integreert "find|grep" in TDevelop - snel zoeken door verschillende bestanden naar patronen of reguliere expressies. -Comment[pl]=Integracja "find|grep" z TDevelop - pozwala na szybie wyszukiwanie wielu plików przy użyciu wzorców i wyrażeń regularnych. -Comment[pt]=Integra o "find|grep" no TDevelop - permite a procura rápida em vários ficheiros usando padrões ou expressões regulares. -Comment[pt_BR]=Integra o "find/grep" no TDevelop - permite busca rápida de múltiplos arquivos usando padrões e expressões regulares. -Comment[ru]=Интегрирует "find|grep" в TDevelop - позволяет производить быстрый поиск по нескольким файлам с использованием шаблонов или регулярных выражений. -Comment[sk]=Integruje "find|grep" do Kdevelop - umožní rýchle vyhľadávanie rôznych súborov pomocou vzorov alebo regulárnych výrazov. -Comment[sr]=Интегрише „find|grep“ у TDevelop — омогућава брзо претраживање више фајлова коришћењем облика имена или регуларних израза. -Comment[sr@Latn]=Integriše „find|grep“ u TDevelop — omogućava brzo pretraživanje više fajlova korišćenjem oblika imena ili regularnih izraza. -Comment[sv]=Integrerar "find | grep" med TDevelop - tillåter snabb sökning i flera filer med mönster eller reguljära uttryck. -Comment[ta]=TDevelopபில் "find|grep" ஒருங்கினை-வடிவங்கள் அல்லது வழக்கமான தொடர்களை பயன்படுத்தி பல்வகை கோப்பினை மிக வேகமாய் தேடலாம். -Comment[tg]=Интегралёбии "find|grep" дар TDevelop - бо истифодаи қолиб ё инки баёни ботартиб имкон медиҳад бо якчанд файлҳо ковтуковро барпо намоед. -Comment[tr]=TDevelop'a "find|grep"i yerleştirir - desen veya düzenli ifadeler kullanılara çoklu dosyalarda hızlı arama sağlar. -Comment[zh_CN]=在 TDevelop 中集成“查找|grep” - 可以使用模式或正则表达式在多个文件中快速查找。 -Comment[zh_TW]=在 TDevelop 中整合 "find|grep" - 允許使用特定樣式或正規表式示來快速搜尋多個檔案內容。 -Name=KDevGrepView -Name[da]=TDevelop Grep-visning -Name[de]=Grep-Ansicht (TDevelop) -Name[hi]=के-डेव-ग्रेप-व्यू -Name[nds]=TDevelop-Grepkieker -Name[pl]=KDevWidokGrep -Name[sk]=KDev pohľad na grep -Name[sv]=TDevelop grep-visning -Name[ta]=KDevGrep காட்சி -Name[tg]=Намоиши KDevGrep -Name[tr]=KDevGrepView -Name[zh_TW]=TDevelop Grep 檢視 -GenericName=Grep Frontend -GenericName[ca]=Entorn per a grep -GenericName[da]=Grep-grænseflade -GenericName[de]=Grep-Ansicht -GenericName[el]=Πρόγραμμα Grep -GenericName[es]=Entorno para grep -GenericName[et]=Programmi grep kasutajaliides -GenericName[eu]=Grep interfazea -GenericName[fa]=پایانۀ Grep -GenericName[fr]=Interface pour Grep -GenericName[ga]=Comhéadan Grep -GenericName[gl]=Frontal para Grep -GenericName[hi]=ग्रेप फ्रन्टएण्ड -GenericName[hu]=Grafikus felület a Grep-hez -GenericName[it]=Interfaccia a "grep" -GenericName[ja]=Grep フロントエンド -GenericName[ms]=Frontend Grep -GenericName[nds]=Grep-Böversiet -GenericName[ne]=ग्रिप फ्रन्टइन्ड -GenericName[nl]=Grep-frontend -GenericName[pl]=Interfejs do grepa -GenericName[pt]=Interface do Grep -GenericName[pt_BR]=Frontend do Grep -GenericName[ru]=Интеграция Grep -GenericName[sk]=Grep rozhranie -GenericName[sl]=Vmesnik za Grep -GenericName[sr]=Кориснички интерфејс за grep -GenericName[sr@Latn]=Korisnički interfejs za grep -GenericName[sv]=Gränssnitt till grep -GenericName[ta]=Grep முன் பகுதி -GenericName[tg]=Интегратсияи Grep -GenericName[tr]=Grep Önucu -GenericName[zh_CN]=Grep 前端 -GenericName[zh_TW]=Grep 前端介面 -Icon=find -ServiceTypes=TDevelop/Plugin -X-TDE-Library=libkdevgrepview -X-TDevelop-Version=5 -X-TDevelop-Scope=Global -X-TDevelop-Properties=FileSearch diff --git a/parts/grepview/kdevgrepview.rc b/parts/grepview/kdevgrepview.rc deleted file mode 100644 index 80b20389..00000000 --- a/parts/grepview/kdevgrepview.rc +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/parts/grepview/tdevgrepview.desktop b/parts/grepview/tdevgrepview.desktop new file mode 100644 index 00000000..c7b98916 --- /dev/null +++ b/parts/grepview/tdevgrepview.desktop @@ -0,0 +1,86 @@ +[Desktop Entry] +Type=Service +Exec=blubb +Comment=Integrates "find|grep" in TDevelop - allows fast searching of multiple files using patterns or regular expressions. +Comment[ca]=Integra "find|grep" en el TDevelop, permetent la recerca ràpida de diversos fitxers emprant patrons o expressions regulars. +Comment[da]=Integrerer "find|grep" i TDevelop - tillader hurtig søgning i flere filer ved brug af mønstre eller regulære udtryk. +Comment[de]=Integration von "find|grep" in TDevelop. - Ermöglicht das schnelle Durchsuchen mehrere Dateien mit Hilfe von Suchmustern und regulären Ausdrücken. +Comment[el]=Ενσωματώνει τα "find|grep" στο TDevelop - επιτρέπει τη γρήγορη αναζήτηση σε πολλά αρχεία χρησιμοποιώντας μοτίβα ή κανονικές εκφράσεις. +Comment[es]=Integra «find|grep» en TDevelop, permitiendo la búsqueda rápida de varios archivos utilizando patrones o expresiones regulares. +Comment[et]=Integreerib TDevelopi programmi "Find|grep", mis lubab mustreid või regulaaravaldisi kasutades kiiresti paljudes failides teksti otsida. +Comment[eu]="find|grep" TDevelop-en txertatzen du - fitxategi anitzetan eredu edo espresio erregularrak erabiliz bilaketa azkarrak egiteko aukera ematen du. +Comment[fa]=«find|grep» را در TDevelop مجتمع‌سازی می‌کند. اجازۀ جستجوی سریع پرونده‌های چندگانه را با استفاده از الگوها یا عبارتهای منظم می‌دهد. +Comment[fr]=Intègre « find|grep » dans TDevelop - permet d'effectuer une recherche rapide dans des fichiers multiples en utilisant des motifs ou des expressions rationnelles. +Comment[gl]=Integra "find|grep" en TDevelop - permite a procura rápida de varios ficheiros usando patróns ou expresións regulares. +Comment[hu]=A "find|grep" programok integrálása a TDevelopba - lehetővé teszi szövegek fájlokban való gyors keresését minták és reguláris kifejezések felhasználásával +Comment[it]=Integra "find|grep" in TDevelop - permette la ricerca rapida di file multipli utilizzando motivi o espressioni regolari. +Comment[ja]="find|grep" を TDevelop 内に統合し、正規表現やパターンを用いて素早く複数のファイルを検索することを可能にします。 +Comment[ms]=Menggabungkan "find|grep" dalam TDevelop - membenarkan carian pantas beberapa fail menggunakan corak atau regular expression. +Comment[nds]=Buut "find|grep" na TDevelop in. - Stellt gau Dörsöken vun mehr Dateien mit Söökmustern oder reguleer Utdrück praat. +Comment[ne]=केडीई विकासमा "find|grep" एकीकरण गर्दछ - जसले नियमित अभिव्यक्ति वा बाँन्की प्रयोग गरेर बहुविध फाइलको छिटो खोजी गर्न अनुमति दिन्छ । +Comment[nl]=Integreert "find|grep" in TDevelop - snel zoeken door verschillende bestanden naar patronen of reguliere expressies. +Comment[pl]=Integracja "find|grep" z TDevelop - pozwala na szybie wyszukiwanie wielu plików przy użyciu wzorców i wyrażeń regularnych. +Comment[pt]=Integra o "find|grep" no TDevelop - permite a procura rápida em vários ficheiros usando padrões ou expressões regulares. +Comment[pt_BR]=Integra o "find/grep" no TDevelop - permite busca rápida de múltiplos arquivos usando padrões e expressões regulares. +Comment[ru]=Интегрирует "find|grep" в TDevelop - позволяет производить быстрый поиск по нескольким файлам с использованием шаблонов или регулярных выражений. +Comment[sk]=Integruje "find|grep" do Kdevelop - umožní rýchle vyhľadávanie rôznych súborov pomocou vzorov alebo regulárnych výrazov. +Comment[sr]=Интегрише „find|grep“ у TDevelop — омогућава брзо претраживање више фајлова коришћењем облика имена или регуларних израза. +Comment[sr@Latn]=Integriše „find|grep“ u TDevelop — omogućava brzo pretraživanje više fajlova korišćenjem oblika imena ili regularnih izraza. +Comment[sv]=Integrerar "find | grep" med TDevelop - tillåter snabb sökning i flera filer med mönster eller reguljära uttryck. +Comment[ta]=TDevelopபில் "find|grep" ஒருங்கினை-வடிவங்கள் அல்லது வழக்கமான தொடர்களை பயன்படுத்தி பல்வகை கோப்பினை மிக வேகமாய் தேடலாம். +Comment[tg]=Интегралёбии "find|grep" дар TDevelop - бо истифодаи қолиб ё инки баёни ботартиб имкон медиҳад бо якчанд файлҳо ковтуковро барпо намоед. +Comment[tr]=TDevelop'a "find|grep"i yerleştirir - desen veya düzenli ifadeler kullanılara çoklu dosyalarda hızlı arama sağlar. +Comment[zh_CN]=在 TDevelop 中集成“查找|grep” - 可以使用模式或正则表达式在多个文件中快速查找。 +Comment[zh_TW]=在 TDevelop 中整合 "find|grep" - 允許使用特定樣式或正規表式示來快速搜尋多個檔案內容。 +Name=KDevGrepView +Name[da]=TDevelop Grep-visning +Name[de]=Grep-Ansicht (TDevelop) +Name[hi]=के-डेव-ग्रेप-व्यू +Name[nds]=TDevelop-Grepkieker +Name[pl]=KDevWidokGrep +Name[sk]=KDev pohľad na grep +Name[sv]=TDevelop grep-visning +Name[ta]=KDevGrep காட்சி +Name[tg]=Намоиши KDevGrep +Name[tr]=KDevGrepView +Name[zh_TW]=TDevelop Grep 檢視 +GenericName=Grep Frontend +GenericName[ca]=Entorn per a grep +GenericName[da]=Grep-grænseflade +GenericName[de]=Grep-Ansicht +GenericName[el]=Πρόγραμμα Grep +GenericName[es]=Entorno para grep +GenericName[et]=Programmi grep kasutajaliides +GenericName[eu]=Grep interfazea +GenericName[fa]=پایانۀ Grep +GenericName[fr]=Interface pour Grep +GenericName[ga]=Comhéadan Grep +GenericName[gl]=Frontal para Grep +GenericName[hi]=ग्रेप फ्रन्टएण्ड +GenericName[hu]=Grafikus felület a Grep-hez +GenericName[it]=Interfaccia a "grep" +GenericName[ja]=Grep フロントエンド +GenericName[ms]=Frontend Grep +GenericName[nds]=Grep-Böversiet +GenericName[ne]=ग्रिप फ्रन्टइन्ड +GenericName[nl]=Grep-frontend +GenericName[pl]=Interfejs do grepa +GenericName[pt]=Interface do Grep +GenericName[pt_BR]=Frontend do Grep +GenericName[ru]=Интеграция Grep +GenericName[sk]=Grep rozhranie +GenericName[sl]=Vmesnik za Grep +GenericName[sr]=Кориснички интерфејс за grep +GenericName[sr@Latn]=Korisnički interfejs za grep +GenericName[sv]=Gränssnitt till grep +GenericName[ta]=Grep முன் பகுதி +GenericName[tg]=Интегратсияи Grep +GenericName[tr]=Grep Önucu +GenericName[zh_CN]=Grep 前端 +GenericName[zh_TW]=Grep 前端介面 +Icon=find +ServiceTypes=TDevelop/Plugin +X-TDE-Library=libtdevgrepview +X-TDevelop-Version=5 +X-TDevelop-Scope=Global +X-TDevelop-Properties=FileSearch diff --git a/parts/grepview/tdevgrepview.rc b/parts/grepview/tdevgrepview.rc new file mode 100644 index 00000000..80b20389 --- /dev/null +++ b/parts/grepview/tdevgrepview.rc @@ -0,0 +1,9 @@ + + + + + + + + + -- cgit v1.2.1