diff --git a/interfaces/iplugin.h b/interfaces/iplugin.h index b47130eb34..d70ab46952 100644 --- a/interfaces/iplugin.h +++ b/interfaces/iplugin.h @@ -1,256 +1,256 @@ /* This file is part of the KDE project Copyright 1999-2001 Bernd Gehrmann Copyright 2004,2007 Alexander Dymo Copyright 2006 Adam Treat Copyright 2007 Andreas Pakulat This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef IPLUGIN_H #define IPLUGIN_H #include #include #include #include #include #include "interfacesexport.h" class KIconLoader; class QAction; namespace Sublime { class MainWindow; } /** * Current KDevelop plugin interface version. Interfaces declare plugin version * to make sure old source (or binary) incompatible plugins are not loaded. * Increase this if it is necessary that old plugins stop working. */ -#define KDEVELOP_PLUGIN_VERSION 12 +#define KDEVELOP_PLUGIN_VERSION 14 /** * This macro adds an extension interface to register with the extension manager * Call this macro for all interfaces your plugin implements in its constructor */ #define KDEV_USE_EXTENSION_INTERFACE( Extension ) \ addExtension( qobject_interface_iid() ); namespace KDevelop { class ICore; class Context; class ContextMenuExtension; /** * The base class for all KDevelop plugins. * * Plugin is a component which is loaded into KDevelop shell at startup or by * request. Each plugin should have corresponding .desktop file with a * description. The .desktop file template looks like: * @code * [Desktop Entry] * Type=Service * Exec=blubb * Name= * GenericName= * Comment= * Icon= * ServiceTypes=KDevelop/Plugin * X-KDE-Library= * X-KDE-PluginInfo-Name= * X-KDE-PluginInfo-Author= * X-KDE-PluginInfo-Version= * X-KDE-PluginInfo-License= * X-KDE-PluginInfo-Category= * X-KDevelop-Version= * X-KDevelop-Category= * X-KDevelop-Mode=GUI * X-KDevelop-LoadMode= * X-KDevelop-Language= * X-KDevelop-SupportedMimeTypes= * X-KDevelop-Interfaces= * X-KDevelop-IOptional= * X-KDevelop-IRequired= * @endcode * Description of parameters in .desktop file: * - Name is a translatable name of a plugin, it is used in the plugin * selection list (required); * - GenericName is a translatable generic name of a plugin, it should * describe in general what the plugin can do (required); * - Comment is a short description about the plugin (optional); * - Icon is a plugin icon (preferred); * X-KDE-librarythis is the name of the .so file to load for this plugin (required); * - X-KDE-PluginInfo-Name is a non-translatable user-readable plugin * identifier used in KTrader queries (required); * - X-KDE-PluginInfo-Author is a non-translateable name of the plugin * author (optional); * - X-KDE-PluginInfo-Version is version number of the plugin (optional); * - X-KDE-PluginInfo-License is a license (optional). can be: GPL, * LGPL, BSD, Artistic, QPL or Custom. If this property is not set, license is * considered as unknown; * - X-KDE-PluginInfo-Category is used to categorize plugins (optional). can be: * Core, Project Management, Version Control, Utilities, Documentation, * Language Support, Debugging, Other * If this property is not set, "Other" is assumed * - X-KDevelop-Version is the KDevPlatform API version this plugin * works with (required); * - X-KDevelop-Interfaces is a list of extension interfaces that this * plugin implements (optional); * - X-KDevelop-IRequired is a list of extension interfaces that this * plugin depends on (optional); * - X-KDevelop-IOptional is a list of extension interfaces that this * plugin will use if they are available (optional); * - X-KDevelop-Language is the name of the language the plugin provides * support for (optional); * - X-KDevelop-SupportedMimeTypes is a list of mimetypes that the * language-parser in this plugin supports (optional); * - X-KDevelop-Mode is either GUI or NoGUI to indicate whether a plugin can run * with the GUI components loaded or not (required); * - X-KDevelop-Category is a scope of a plugin (see below for * explanation) (required); * - X-KDevelop-LoadMode can be set to AlwaysOn in which case the plugin will * never be unloaded even if requested via the API. (optional); * * Plugin scope can be either: * - Global * - Project * . * Global plugins are plugins which require only the shell to be loaded and do not operate on * the Project interface and/or do not use project wide information.\n * Core plugins are global plugins which offer some important "core" functionality and thus * are not selectable by user in plugin configuration pages.\n * Project plugins require a project to be loaded and are usually loaded/unloaded along with * the project. * If your plugin uses the Project interface and/or operates on project-related * information then this is a project plugin. * * * @sa Core class documentation for information about features available to * plugins from shell applications. */ class KDEVPLATFORMINTERFACES_EXPORT IPlugin: public QObject, public KXMLGUIClient { Q_OBJECT public: /**Constructs a plugin. * @param instance The instance for this plugin. * @param parent The parent object for the plugin. */ IPlugin(const KComponentData &instance, QObject *parent); /**Destructs a plugin.*/ virtual ~IPlugin(); /** * Signal the plugin that it should cleanup since it will be unloaded soon. */ Q_SCRIPTABLE virtual void unload(); /** * Provides access to the global icon loader * @return the plugin's icon loader */ Q_SCRIPTABLE KIconLoader* iconLoader() const; /** * Provides access to the ICore implementation */ Q_SCRIPTABLE ICore *core() const; Q_SCRIPTABLE QStringList extensions() const; template Extension* extension() { if( extensions().contains( qobject_interface_iid() ) ) { return qobject_cast( this ); } return 0; } /** * Ask the plugin for a ContextActionContainer, which contains actions * that will be merged into the context menu. * @param context the context describing where the context menu was requested * @returns a container describing which actions to merge into which context menu part */ virtual ContextMenuExtension contextMenuExtension( KDevelop::Context* context ); /** * Can create a new KXMLGUIClient, and set it up correctly with all the plugins per-window GUI actions. * * The caller owns the created object, including all contained actions. The object is destroyed as soon as * the mainwindow is closed. * * The default implementation calls the convenience function @ref createActionsForMainWindow and uses it to fill a custom KXMLGUIClient. * * Only override this version if you need more specific features of KXMLGUIClient, or other special per-window handling. * * @param window The main window the actions are created for */ virtual KXMLGUIClient* createGUIForMainWindow( Sublime::MainWindow* window ); /** * This function allows allows setting up plugin actions conveniently. Unless createGUIForMainWindow was overridden, * this is called for each new mainwindow, and the plugin should add its actions to @p actions, and write its KXMLGui xml file * into @p xmlFile. * * @param window The main window the actions are created for * @param xmlFile Change this to the xml file that needed for merging the actions into the GUI * @param actions Add your actions here. A new set of actions has to be created for each mainwindow. */ virtual void createActionsForMainWindow( Sublime::MainWindow* window, QString& xmlFile, KActionCollection& actions ); /** * This function is necessary because there is no proper way to signal errors from plugin constructor. * @returns True if the plugin has encountered an error, false otherwise. */ virtual bool hasError() const; /** * Description of the last encountered error, of an empty string if none. */ virtual QString errorDescription() const; public Q_SLOTS: /** * Re-initialize the global icon loader */ void newIconLoader() const; protected: void addExtension( const QString& ); /** * Initialize the XML GUI State. */ virtual void initializeGuiState(); private: Q_PRIVATE_SLOT(d, void _k_guiClientAdded(KXMLGUIClient *)) Q_PRIVATE_SLOT(d, void _k_updateState()) friend class IPluginPrivate; class IPluginPrivate* const d; }; } #endif diff --git a/plugins/appwizard/kdevappwizard.desktop b/plugins/appwizard/kdevappwizard.desktop index 0f99e86ca6..646e53dc2b 100644 --- a/plugins/appwizard/kdevappwizard.desktop +++ b/plugins/appwizard/kdevappwizard.desktop @@ -1,111 +1,111 @@ [Desktop Entry] Type=Service Icon=project-development-new-template Exec=blubb Comment=Application Wizard Comment[bg]=Съветник на приложение Comment[bs]=Čarobnjak aplikacija Comment[ca]=Assistent d'aplicació Comment[ca@valencia]=Assistent d'aplicació Comment[cs]=Průvodce aplikací Comment[da]=Applikationsguide Comment[de]=Anwendungsassistent Comment[el]=Οδηγός εφαρμογής Comment[en_GB]=Application Wizard Comment[es]=Asistente de aplicaciones Comment[et]=Rakenduse nõustaja Comment[fi]=Opastettu sovellustoiminto Comment[fr]=Assistant d'applications Comment[ga]=Treoraí Feidhmchláir Comment[gl]=Asistente para programas Comment[it]=Procedura guidata applicazione Comment[ja]=アプリケーションウィザード Comment[nb]=Programveiviser Comment[nds]=Programm-Hölper Comment[nl]=Programma-assistent Comment[pl]=Asystent programu Comment[pt]=Assistente de Aplicações Comment[pt_BR]=Assistente de aplicativo Comment[ru]=Мастер создания приложений Comment[sl]=Čarovnik za program Comment[sv]=Programguide Comment[tr]=Uygulama Sihirbazı Comment[ug]=ئەمىلى پروگرامما يېتەكچىسى Comment[uk]=Майстер створення програм Comment[x-test]=xxApplication Wizardxx Comment[zh_CN]=应用程序向导 Comment[zh_TW]=應用程式精靈 Name=New Project Wizard Name[bg]=Съветник за нов проект Name[bs]=Čarobnjak novog projekta Name[ca]=Assistent de nou projecte Name[ca@valencia]=Assistent de nou projecte Name[cs]=Průvodce novým projektem Name[da]=Guide til nyt projekt Name[de]=Projekt-Assistent Name[el]=Οδηγός ρύθμισης νέου έργου Name[en_GB]=New Project Wizard Name[es]=Asistente de nuevo proyecto Name[et]=Uue projekti nõustaja Name[fi]=Uuden projektin opastettu toiminto Name[fr]=Assistant de création de nouveau projet Name[gl]=Asistente para proxectos novos Name[it]=Procedura guidata nuovo progetto Name[ja]=新規プロジェクト作成ウィザード Name[nb]=Veiviser for nytt prosjekt Name[nds]=Projekt-Hölper Name[nl]=Nieuwe projectenassistent Name[pl]=Asystent nowego projektu Name[pt]=Assistente de Novos Projectos Name[pt_BR]=Assistente de novo projeto Name[ru]=Мастер создания проекта Name[sl]=Čarovnik za nov projekt Name[sv]=Ny projektguide Name[tr]=Yeni Proje Sihirbazı Name[ug]=يېڭى قۇرۇلۇش يېتەكچىسى Name[uk]=Майстер створення проекту Name[x-test]=xxNew Project Wizardxx Name[zh_CN]=新工程向导 Name[zh_TW]=新增專案精靈 GenericName=Application Wizard GenericName[bg]=Съветник на приложение GenericName[ca]=Assistent d'aplicació GenericName[ca@valencia]=Assistent d'aplicació GenericName[cs]=Průvodce aplikací GenericName[da]=Applikationsguide GenericName[de]=Anwendungsassistent GenericName[el]=Οδηγός εφαρμογής GenericName[en_GB]=Application Wizard GenericName[es]=Asistente de aplicaciones GenericName[et]=Rakenduse nõustaja GenericName[fi]=Opastettu sovellustoiminto GenericName[fr]=Assistant d'applications GenericName[ga]=Treoraí Feidhmchláir GenericName[gl]=Asistente para programas GenericName[it]=Procedura guidata applicazione GenericName[ja]=アプリケーションウィザード GenericName[nb]=Programveiviser GenericName[nds]=Programm-Hölper GenericName[nl]=Programma-assistent GenericName[pl]=Asystent programu GenericName[pt]=Assistente de Aplicações GenericName[pt_BR]=Assistente de aplicativo GenericName[ru]=Мастер создания приложений GenericName[sl]=Čarovnik za program GenericName[sv]=Programguide GenericName[tr]=Uygulama Sihirbazı GenericName[ug]=ئەمىلى پروگرامما يېتەكچىسى GenericName[uk]=Майстер створення програм GenericName[x-test]=xxApplication Wizardxx GenericName[zh_CN]=应用程序向导 GenericName[zh_TW]=應用程式精靈 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevappwizard X-KDE-PluginInfo-Name=kdevappwizard X-KDE-PluginInfo-Author=Alexander Dymo X-KDE-PluginInfo-Version=0.1 X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Core X-KDevelop-Category=Global -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Mode=GUI diff --git a/plugins/classbrowser/kdevclassbrowser.desktop b/plugins/classbrowser/kdevclassbrowser.desktop index d9ef2945b4..66226d7a72 100644 --- a/plugins/classbrowser/kdevclassbrowser.desktop +++ b/plugins/classbrowser/kdevclassbrowser.desktop @@ -1,103 +1,103 @@ [Desktop Entry] Type=Service Icon=code-class Exec=blubb Comment=This plugin provides a browsable model of the currently parsed classes and other items. Comment[bg]=Тази приставка дава модел за разглеждане на вече синтактично изгладени класове и други параграфи. Comment[ca]=Aquest connector proporciona un model navegable de les classes analitzades actualment i altres elements. Comment[ca@valencia]=Este connector proporciona un model navegable de les classes analitzades actualment i altres elements. Comment[da]=Dette plugin tilbyder en model der kan gennemses for de fortolkede klasser og andre elementer. Comment[de]=Dieses Modul bietet eine Liste der aktuell eingelesenen Klassen und anderer Elemente. Comment[el]=Αυτό το πρόσθετο προσφέρει ένα μοντέλο περιήγησης των αναλυμένων κλάσεων και άλλων αντικειμένων. Comment[en_GB]=This plugin provides a browsable model of the currently parsed classes and other items. Comment[es]=Este complemento proporciona un modelo navegable de las clases analizadas actualmente y otros elementos. Comment[et]=See plugin pakub parajasti parsitavate klasside ja teiste elementide sirvitavat mudelit. Comment[fi]=Tämä liitännäinen tarjoaa selattavan mallin nykyisellään jäsennetyistä luokista ja muista kohteista. Comment[fr]=Ce module externe fournit un modèle navigable des classes et autres éléments dont l'analyse syntaxique est en cours. Comment[gl]=Este engadido fornece un modelo navegábel das clases e outros elementos que estean procesados. Comment[it]=Questa estensione fornisce un modello sfogliabile delle classi attualmete analizzate e altri elementi. Comment[nb]=Dette programtillegget gir en modell som det går an å bla i, av de klassene som er tolket og ande elementer. Comment[nds]=Dit Moduul stellt en dörkiekbor Modell vun de opstunns inleesten Klassen un anner Objekten praat. Comment[nl]=Deze plugin levert een model om door te bladeren van de nu ontlede klasse's en andere items. Comment[pl]=Ta wtyczka udostępnia możliwy do przeglądania model przeanalizowanych klas i innych elementów. Comment[pt]=Este 'plugin' oferece um modelo navegável pelas classes e outros itens processados neste momento. Comment[pt_BR]=Esta extensão provê um modelo navegável das classes atualmente analisadas e outros itens. Comment[sl]=Vstavek prinaša model trenutno razčlenjenih razredov in drugih struktur, po katerih je moč brskati. Comment[sv]=Insticksprogrammet tillhandahåller en bläddringsbar modell av klasser och andra objekt som för närvarande har tolkats. Comment[tr]=Bu eklenti ayrıştırılmış sınıflar ve diğer ögeler için göz atmaya uygun bir model sağlar. Comment[ug]=بۇ قىستۇرما نۆۋەتتە تەھىل قىلىنغان تىپ ۋە باشقا تۈرلەرنىڭ كۆرۈنۈشچان مودېلىنى تەمىنلەيدۇ Comment[uk]=За допомогою цього додатка можна створити придатну для перегляду модель класів та інших елементів, над якими ви працюєте. Comment[x-test]=xxThis plugin provides a browsable model of the currently parsed classes and other items.xx Comment[zh_CN]=此插件提供了一个当前已分析类和其它项目的可浏览化视窗模型。 Comment[zh_TW]=此外掛程式提供一個可瀏覽目前已分析的類別與其他項目的模組。 Name=Class Browser Name[bg]=Браузър за класове Name[ca]=Navegador de classes Name[ca@valencia]=Navegador de classes Name[cs]=Prohlížeč tříd Name[da]=Klassebrowser Name[de]=Klassen-Browser Name[el]=Περιηγητής κλάσεων Name[en_GB]=Class Browser Name[es]=Navegador de clases Name[et]=Klassibrauser Name[fi]=Luokkaselain Name[fr]=Navigateur de classes Name[it]=Browser classi Name[ja]=クラスブラウザ Name[nb]=Klasseleser Name[nds]=Klassenkieker Name[nl]=Klassebrowser Name[pl]=Przeglądarka klas Name[pt]=Navegador de Classes Name[pt_BR]=Navegador de Classes Name[sl]=Brskalnik po razredih Name[sv]=Klassbläddrare Name[tr]=Sınıf Tarayıcı Name[ug]=تىپ كۆرگۈ Name[uk]=Переглядач класів Name[x-test]=xxClass Browserxx Name[zh_CN]=类浏览器 Name[zh_TW]=類別瀏覽器 GenericName=Class Browser GenericName[bg]=Браузър за класове GenericName[ca]=Navegador de classes GenericName[ca@valencia]=Navegador de classes GenericName[cs]=Prohlížeč tříd GenericName[da]=Klassebrowser GenericName[de]=Klassen-Browser GenericName[el]=Περιηγητής κλάσεων GenericName[en_GB]=Class Browser GenericName[es]=Navegador de clases GenericName[et]=Klassibrauser GenericName[fi]=Luokkaselain GenericName[fr]=Navigateur de classes GenericName[gl]=Navegador de clases GenericName[it]=Browser classi GenericName[ja]=クラスブラウザ GenericName[lv]=Klašu pārlūks GenericName[nb]=Klasseleser GenericName[nds]=Klassenkieker GenericName[nl]=Klassebrowser GenericName[pa]=ਕਲਾਸ ਬਰਾਊਜ਼ਰ GenericName[pl]=Przeglądarka klas GenericName[pt]=Navegador de Classes GenericName[pt_BR]=Navegador de classes GenericName[ro]=Navigator de clase GenericName[sl]=Brskalnik po razredih GenericName[sv]=Klassbläddrare GenericName[tr]=Sınıf Tarayıcı GenericName[ug]=تىپ كۆرگۈ GenericName[uk]=Переглядач класів GenericName[x-test]=xxClass Browserxx GenericName[zh_CN]=类浏览器 GenericName[zh_TW]=類別瀏覽器 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevclassbrowser -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevclassbrowser X-KDE-PluginInfo-Author=Hamish Rodda X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Core X-KDevelop-Mode=GUI diff --git a/plugins/codeutils/kdevcodeutils.desktop b/plugins/codeutils/kdevcodeutils.desktop index 43d24a93aa..71aeb1aace 100644 --- a/plugins/codeutils/kdevcodeutils.desktop +++ b/plugins/codeutils/kdevcodeutils.desktop @@ -1,90 +1,90 @@ [Desktop Entry] Type=Service Comment=Collection of various utilities that increase productivity while programming. Comment[ca]=Col·lecció de diverses utilitzats que augmenten la productivitat en programació. Comment[ca@valencia]=Col·lecció de diverses utilitzats que augmenten la productivitat en programació. Comment[da]=Samling af diverse værktøjer til at forøge produktiviteten når du programmerer. Comment[de]=Sammlung verschiedener Werkzeuge, die die Produktivität während des Programmierens erhöhen. Comment[el]=Συλλογή διάφορων βοηθητικών προγραμμάτων που αυξάνουν την παραγωγικότητα κατά τον προγραμματισμό Comment[en_GB]=Collection of various utilities that increase productivity while programming. Comment[es]=Colección de diversas utilidades que incrementan la productividad al programar. Comment[et]=Mitmesugused tööriistad, mis suurendavad produktiivsust programmeerimisel. Comment[fi]=Kokoelma sekalaisia työkaluja, jotka lisäävät ohjelmointisi tuottavuutta. Comment[fr]=Collections de divers utilitaires conçus pour accroître la productivité tout en programmant. Comment[it]=Raccolta di varie utilità che aumentano la produttività durante la programmazione. Comment[nb]=En samling av ymse verktøy som øker produktiviteten under programmering. Comment[nds]=Sammeln vun verscheden Hülpprogrammen för Leistentowass bi't Programmeren Comment[nl]=Verzameling van hulpprogramma's die de productiviteit vergroot bij het programmeren Comment[pl]=Kolekcja różnych narzędzi zwiększających produktywność podczas programowania. Comment[pt]=Uma colecção de vários utilitários que aumentam a produtividade enquanto programa. Comment[pt_BR]=Uma coleção de vários utilitários que aumentam a produtividade durante a programação. Comment[sl]=Zbirka raznih pripomočkov, ki povečajo produktivnost med programiranjem. Comment[sv]=Samling av diverse verktyg för att öka produktiviteten vid programmering. Comment[tr]=Programlama sırasında verimliliği arttırmak için çeşitli yardımcı araçlardan oluşan bir koleksiyon. Comment[ug]=پروگرامما ئىشلەش ئۈنۈمىنى يۇقىرى كۆتۈرۈشكە پايدىلىق بولغان ھەر خىل قوراللارنىڭ توپلىمى. Comment[uk]=Збірка різноманітних допоміжних програм, яка підвищує продуктивність програмування. Comment[x-test]=xxCollection of various utilities that increase productivity while programming.xx Comment[zh_CN]=多种提升编程生产力的工具集合。 Comment[zh_TW]=各種可以增加寫程式效率的工具的收藏。 Name=Code Utilities Name[ca]=Utilitats de codi Name[ca@valencia]=Utilitats de codi Name[da]=Kodeværktøjer Name[de]=Quelltext-Werkzeuge Name[el]=Βοηθητικά προγράμματα Name[en_GB]=Code Utilities Name[es]=Utilidades de código fuente Name[et]=Kooditööriistad Name[fi]=Koodityökalut Name[fr]=Utilitaires de code Name[it]=Utilità per il codice Name[ja]=コードユーティリティ Name[nb]=Kodeverktøy Name[nds]=Kode-Warktüüch Name[nl]=Hulpmiddelen bij coderen Name[pl]=Narzędzia kodu Name[pt]=Utilitários de Código Name[pt_BR]=Utilitários de Código Name[sl]=Pripomočki za kodo Name[sv]=Kodverktyg Name[tr]=Kod Araçları Name[ug]=كود قوراللىرى Name[uk]=Допоміжні засоби Name[x-test]=xxCode Utilitiesxx Name[zh_CN]=代码工具 Name[zh_TW]=寫程式實用工具 GenericName=Code Utilities GenericName[ca]=Utilitats de codi GenericName[ca@valencia]=Utilitats de codi GenericName[da]=Kodeværktøjer GenericName[de]=Quelltext-Werkzeuge GenericName[el]=Βοηθητικά προγράμματα GenericName[en_GB]=Code Utilities GenericName[es]=Utilidades de código fuente GenericName[et]=Kooditööriistad GenericName[fi]=Koodityökalut GenericName[fr]=Utilitaires de code GenericName[it]=Utilità per il codice GenericName[ja]=コードユーティリティ GenericName[nb]=Kodeverktøy GenericName[nds]=Kode-Warktüüch GenericName[nl]=Hulpmiddelen bij coderen GenericName[pl]=Narzędzia kodu GenericName[pt]=Utilitários de Código GenericName[pt_BR]=Utilitários de Código GenericName[sl]=Pripomočki za kodo GenericName[sv]=Kodverktyg GenericName[tr]=Kod Araçları GenericName[ug]=كود قوراللىرى GenericName[uk]=Допоміжні засоби GenericName[x-test]=xxCode Utilitiesxx GenericName[zh_CN]=代码工具 GenericName[zh_TW]=寫程式實用工具 Icon=help-hint ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevcodeutils X-KDE-PluginInfo-Name=kdevcodeutils X-KDE-PluginInfo-Category=Utilities -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/plugins/contextbrowser/kdevcontextbrowser.desktop b/plugins/contextbrowser/kdevcontextbrowser.desktop index 0dc4e0f6a2..3a411955d0 100644 --- a/plugins/contextbrowser/kdevcontextbrowser.desktop +++ b/plugins/contextbrowser/kdevcontextbrowser.desktop @@ -1,103 +1,103 @@ [Desktop Entry] Type=Service Icon=code-context Exec=blubb Comment=This plugin shows information about the current language context in a side view, and highlights relevant declarations and uses. Comment[bg]=Този приставка показва информация за текущата езикова настройка погледната отвън и маркира съответните декларации и употреби. Comment[ca]=Aquest connector mostra informació quant al context del llenguatge actual en una vista lateral i ressalta les declaracions i els usos apropiats. Comment[ca@valencia]=Este connector mostra informació quant al context del llenguatge actual en una vista lateral i ressalta les declaracions i els usos apropiats. Comment[da]=Dette plugin viser information om den sprogkontekst i et sidepanel og fremhæver relevante erklæringer og brug. Comment[de]=Dieses Modul zeigt Informationen über den aktuellen Sprachkontext an und hebt die wichtigen Deklarationen und Vorkommen hervor. Comment[el]=Αυτό το πρόσθετο εμφανίζει πληροφορίες σχετικά με την τρέχουσα γλώσσα σε μια πλευρική προβολή, και τονίζει τις σχετικές δηλώσεις και χρήσεις. Comment[en_GB]=This plugin shows information about the current language context in a side view, and highlights relevant declarations and uses. Comment[es]=Este complemento muestra información sobre el contexto del lenguaje actual en una vista lateral, resaltando declaraciones y usos pertinentes. Comment[et]=See plugin pakub külgvaates teavet aktiivse keele konteksti kohta ning tõstab esile asjakohased deklaratsioonid ja kasutused. Comment[fi]=Tämä liitännäinen näyttää tietoja nykyisestä kielikontekstista sivunäkymässä, ja korostaa olennaisia esittelyjä ja käyttöjä. Comment[fr]=Ce module externe affiche des informations sur le contexte du langage actuel dans une vue latérale, et met en surbrillance les déclarations et utilisations pertinentes. Comment[gl]=Este engadido mostra información acerca do contexto da linguaxe actual nunha vista lateral, e realza as declaracións e utilizacións relevantes. Comment[it]=Questa estensione mostra le informazioni sul contesto del linguaggio corrente in una vista laterale, mettendo in evidenza le dichiarazioni e gli usi. Comment[nb]=Dette programtillegget viser informasjon om gjeldende språkkontekst i et sidevindu, og fremhever relevante deklarasjoner og bruk. Comment[nds]=Dit Moduul wiest binnen en Sietpaneel Informatschonen över den aktuellen Spraakkontext un heevt wichtig Deklaratschonen un Bruken rut. Comment[nl]=Deze plugin toont informatie over de huidige taalcontext in een zijvak en accentueert relevante declaraties en gebruik. Comment[pl]=Ta wtyczka pokazuje informacje dotyczące kontekstu bieżącego języka w widoku bocznym, podświetla deklaracja i ich użycia. Comment[pt]=Este 'plugin' mostra informações sobre o contexto actual da linguagem numa visão lateral, realçando as declarações e utilizações relevantes. Comment[pt_BR]=Esta extensão mostra informações sobre a linguagem utilizada no momento, numa visão lateral, e destaca declarações relevantes e seus usos. Comment[sl]=Vstavek prikazuje podatke o trenutnem kontekstu in poudari pomembne deklaracije in uporabe. Comment[sv]=Insticksprogrammet visar information om nuvarande språksammanhang i en sidovy, och markerar relevanta deklarationer och användningar. Comment[tr]=Bu eklenti, yan görünüm içerisinde geçerli dil bağlamında bilgiler gösterir ve uygun bildirimleri ve kullanımları vurgular. Comment[uk]=За допомогою цього додатка можна переглянути у перегляді на бічній панелі відомості про поточний контекст мови, а також підсвітити пов’язані оголошення і випадки використання. Comment[x-test]=xxThis plugin shows information about the current language context in a side view, and highlights relevant declarations and uses.xx Comment[zh_CN]=此插件在侧边视图中显示关于当前语言上下文的信息,并加亮突出相关的声明和调用。 Comment[zh_TW]=此外掛程式顯示關於目前語言的資訊,並將相關的宣告與使用突顯出來。 Name=Code Browser Name[bg]=Браузър за низове Name[ca]=Navegador de codi Name[ca@valencia]=Navegador de codi Name[cs]=Prohlížeč kódu Name[da]=Kodebrowser Name[de]=Quelltext-Browser Name[el]=Περιηγητής κώδικα Name[en_GB]=Code Browser Name[es]=Navegador de código Name[et]=Koodibrauser Name[fi]=Lähdekoodiselain Name[fr]=Navigateur de code Name[gl]=Navegador do código Name[it]=Browser del codice Name[ja]=コードブラウザ Name[nb]=Kodeleser Name[nds]=Kodekieker Name[nl]=Broncode-browser Name[pa]=ਕੋਡ ਬਰਾਊਜ਼ਰ Name[pl]=Przeglądarka kodu Name[pt]=Navegador do Código Name[pt_BR]=Navegador de código Name[ru]=Навигация по коду Name[sl]=Brskalnik po kodi Name[sv]=Kodbläddrare Name[tr]=Kod Tarayıcı Name[ug]=كود كۆرگۈ Name[uk]=Переглядач коду Name[x-test]=xxCode Browserxx Name[zh_CN]=代码浏览器 Name[zh_TW]=源碼瀏覽器 GenericName=Code Navigation Tool GenericName[bg]=Инструмент за управление на низове GenericName[ca]=Eina de navegació de codi GenericName[ca@valencia]=Eina de navegació de codi GenericName[da]=Værktøj til kodenavigation GenericName[de]=Werkzeug zur Quelltextnavigation GenericName[el]=Εργαλείο πλοήγησης κώδικα GenericName[en_GB]=Code Navigation Tool GenericName[es]=Herramienta de navegación por el código GenericName[et]=Koodi liikumistööriist GenericName[fi]=Lähdekoodinavigointityökalu GenericName[fr]=Outil de navigation de code GenericName[gl]=Utilidade de navegación polo código GenericName[it]=Strumento di navigazione del codice GenericName[ja]=コードナビゲーションツール GenericName[nb]=Kodenavigeringsverktøy GenericName[nds]=Kode-Navigatschoon GenericName[nl]=Hulpmiddel voor navigatie door code GenericName[pl]=Narzędzie do nawigacji w kodzie GenericName[pt]=Ferramenta de Navegação do Código GenericName[pt_BR]=Ferramenta de navegação de código GenericName[ru]=Инструмент для навигации по коду GenericName[sl]=Orodje za krmarjenje po kodi GenericName[sv]=Kodnavigeringsverktyg GenericName[tr]=Kod Tarama Eklentisi GenericName[ug]=كود يولباشچى قورالى GenericName[uk]=Інструмент навігації кодом GenericName[x-test]=xxCode Navigation Toolxx GenericName[zh_CN]=代码导航工具 GenericName[zh_TW]=源碼導覽工具 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevcontextbrowser -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevcontextbrowser X-KDE-PluginInfo-Author=David Nolden X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Core X-KDevelop-IRequired=org.kdevelop.IQuickOpen X-KDevelop-Mode=GUI diff --git a/plugins/cvs/kdevcvs.desktop b/plugins/cvs/kdevcvs.desktop index 4888946e75..9da624ad28 100644 --- a/plugins/cvs/kdevcvs.desktop +++ b/plugins/cvs/kdevcvs.desktop @@ -1,111 +1,111 @@ [Desktop Entry] Type=Service Icon=cervisia Exec=blubb Comment=This plugin integrates CVS to KDevelop Comment[bg]=Тaзи приставка вгражда CVS в KDevelop Comment[ca]=Aquest connector integra CVS en KDevelop Comment[ca@valencia]=Este connector integra CVS en KDevelop Comment[da]=Dette plugin integrerer CVS med KDevelop Comment[de]=Dieses Modul integriert CVS in KDevelop. Comment[el]=Το πρόσθετο αυτό ενσωματώνει το CVS στο KDevelop Comment[en_GB]=This plugin integrates CVS to KDevelop Comment[es]=Este complemento integra CVS en KDevelop Comment[et]=See plugin lõimib CVS-i KDeveloppi Comment[fi]=Tämä liitännäinen integroi CVS:n Kdevelopiin Comment[fr]=Ce module externe intègre CVS à KDevelop Comment[gl]=Este engadido integra CVS en KDevelop Comment[it]=Questa estensione integra CVS in KDevelop Comment[ja]=このプラグインは CVS を KDevelop に統合します Comment[lv]=Šis spraudnis integrē CVS iekš KDevelop Comment[nb]=Dette programtillegget integrerer CVS i KDevelop Comment[nds]=Dit Moduul bett CVS na KDevelop in. Comment[nl]=Deze plugin integreert CVS in KDevelop Comment[pl]=Ta wtyczka udostępnia obsługę CVS w KDevelopie Comment[pt]=Este 'plugin' integra o CVS no KDevelop Comment[pt_BR]=Esta extensão integra o CVS ao KDevelop Comment[ro]=Acest modul integrează CVS în KDevelop Comment[ru]=Это расширение добавляет поддержку работы с CVS в KDevelop Comment[sl]=Vstavek v KDevelop integrira CVS Comment[sv]=Insticksprogrammet integrerar CVS i KDevelop Comment[tr]=Bu eklenti CVS uygulamasını KDevelop ile bütünleştirir Comment[ug]=بۇ قىستۇرما CVS نى KDevelop قا يۈرۈشلەشتۈرىدۇ Comment[uk]=За допомогою цього додатка можна інтегрувати CVS до KDevelop Comment[x-test]=xxThis plugin integrates CVS to KDevelopxx Comment[zh_CN]=此插件对 KDevelop 整合 CVS Comment[zh_TW]=此外掛程式將 CVS 整合進 KDevelop 內。 Name=CVS Support Name[bg]=Поддръжка на CVS Name[ca]=Implementació de CVS Name[ca@valencia]=Implementació de CVS Name[cs]=Podpora CVS Name[da]=CVS-understøttelse Name[de]=CVS-Unterstützung Name[el]=Υποστήριξη CVS Name[en_GB]=CVS Support Name[es]=Implementación de CVS Name[et]=CVS-i toetus Name[fi]=CVS-tuki Name[fr]=Prise en charge de CVS Name[ga]=Tacaíocht CVS Name[gl]=Soporte de CVS Name[it]=Supporto CVS Name[ja]=CVS サポート Name[nb]=CVS-støtte Name[nds]=CVS-Ünnerstütten Name[nl]=CVS-ondersteuning Name[pa]=CVS ਸਹਿਯੋਗ Name[pl]=Obsługa CVS Name[pt]=Suporte para CVS Name[pt_BR]=Suporte a CVS Name[ru]=Поддержка CVS Name[sl]=Podpora za CVS Name[sv]=Stöd för CVS Name[tr]=CVS Desteği Name[ug]=CVS قوللىشى Name[uk]=Підтримка CVS Name[x-test]=xxCVS Supportxx Name[zh_CN]=CVS 支持 Name[zh_TW]=CVS 支援 GenericName=Version Control Support GenericName[bg]=Поддръжка на управление на версиите GenericName[ca]=Implementació del control de versions GenericName[ca@valencia]=Implementació del control de versions GenericName[cs]=Podpora správy verzí GenericName[da]=Understøttelse af versionstyring GenericName[de]=Unterstützung für Versionsverwaltungssysteme GenericName[el]=Υποστήριξη Version Control GenericName[en_GB]=Version Control Support GenericName[es]=Implementación de Control de Versiones GenericName[et]=Versioonihalduse toetus GenericName[fi]=Versionhallintatuki GenericName[fr]=Prise en charge du contrôle de versions GenericName[gl]=Soporte de sistemas de versións GenericName[it]=Supporto controllo versione GenericName[ja]=バージョン管理のサポート GenericName[nb]=Støtte for versjonskontroll GenericName[nds]=Verschoonkuntrull-Ünnerstütten GenericName[nl]=Ondersteuning voor versiecontrole GenericName[pl]=Obsługa kontroli wersji GenericName[pt]=Suporte ao Controlo de Versões GenericName[pt_BR]=Suporte a controle de versão GenericName[ru]=Поддержка систем контроля версий GenericName[sl]=Podpora za nadzor različic GenericName[sv]=Stöd för versionskontroll GenericName[tr]=Sürüm Kontrol Desteği GenericName[ug]=نەشر باشقۇرۇش قوللىشى GenericName[uk]=Підтримка керування версіями GenericName[x-test]=xxVersion Control Supportxx GenericName[zh_CN]=版本控制支持 GenericName[zh_TW]=版本控制支援 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevcvs X-KDE-PluginInfo-Name=kdevcvs X-KDE-PluginInfo-Author=Robert Gruber X-KDE-PluginInfo-Version=0.1 X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Version Control -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Interfaces=org.kdevelop.IBasicVersionControl X-KDevelop-Mode=GUI diff --git a/plugins/dashboard/kdevprojectdashboard.desktop b/plugins/dashboard/kdevprojectdashboard.desktop index b6486e8b7f..d33d570a5e 100644 --- a/plugins/dashboard/kdevprojectdashboard.desktop +++ b/plugins/dashboard/kdevprojectdashboard.desktop @@ -1,70 +1,70 @@ [Desktop Entry] Type=Service Icon=dashboard-show Exec=blubb Comment=This plugin shows relevant information of some project when it's invoked Comment[de]=Dieses Modul zeigt wichtige Informationen zu einem Projekt, wenn es aufgerufen wird. Comment[el]=Το πρόσθετο αυτό εμφανίζει σχετικές πληροφορίες κάποιου έργου όταν εκτελείται Comment[es]=Cuando se llama, este complemento muestra información pertinente sobre algunos proyectos Comment[et]=See plugin näitab kasutamise korral asjakohast teavet mingi projekti kohta Comment[fr]=Ce module externe affiche des informations pertinentes sur un projet lorsqu'il est exécuté Comment[it]=Questa estensione mostra le informazioni rilevanti di qualche progetto quando viene invocato Comment[nb]=Dette programtillegget viser informasjon om et prosjekt når det blir kalt opp Comment[nl]=Deze plugin toont relevante informatie over een project wanneer het wordt geactiveerd Comment[pl]=Wtyczka ta pokazuje odpowiednie dla projektu informacje, gdy zostanie on wywołany Comment[pt]=Este 'plugin' mostra alguma informação relevante sobre um projecto quando for invocado Comment[pt_BR]=Este plugin mostra informações relevantes de algum projeto quando ele é invocado Comment[sv]=Det här insticksprogrammet visar relevant information för ett projekt när det anropas Comment[tr]=Bu eklenti çağrıldığında projelere ilişkin uygun bilgileri gösterir Comment[uk]=Цей додаток показує дані щодо певного проекту, якщо його буде викликано Comment[x-test]=xxThis plugin shows relevant information of some project when it's invokedxx Comment[zh_CN]=此插件在打开工程时会显示相关信息 Comment[zh_TW]=這個外掛程式在某些專案被調用時顯示一些有用的資訊 Name=Project Dashboard Name[bg]=Табло проекти Name[cs]=Přístrojová deska projektu Name[de]=Projekt-Dashboard Name[el]=Πίνακας ελέγχου έργου Name[es]=Tablero de mandos del proyecto Name[et]=Projekti vidinavaade Name[fr]=Dashboard de projets Name[nb]=Prosjekt-kontrollpult Name[nl]=Dashboard van het project Name[pl]=Tablica projektu Name[pt]=Quadro do Projecto Name[pt_BR]=Quadro do projeto Name[sv]=Projektinstrumentpanel Name[tr]=Proje Kontrol Paneli Name[uk]=Панель приладів проекту Name[x-test]=xxProject Dashboardxx Name[zh_CN]=工程面板 Name[zh_TW]=專案資訊看板 GenericName=Project Dashboard GenericName[bg]=Табло проекти GenericName[cs]=Přístrojová deska projektu GenericName[de]=Projekt-Dashboard GenericName[el]=Πίνακας ελέγχου έργου GenericName[es]=Tablero de mandos del proyecto GenericName[et]=Projekti vidinavaade GenericName[fr]=Dashboard de projets GenericName[nb]=Prosjekt-kontrollpult GenericName[nl]=Dashboard van het project GenericName[pl]=Tablica projektu GenericName[pt]=Quadro do Projecto GenericName[pt_BR]=Quadro do projeto GenericName[sv]=Projektinstrumentpanel GenericName[tr]=Proje Kontrol Paneli GenericName[uk]=Панель приладів проекту GenericName[x-test]=xxProject Dashboardxx GenericName[zh_CN]=工程面板 GenericName[zh_TW]=專案資訊看板 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevprojectdashboard X-KDE-PluginInfo-Name=kdevprojectdashboard X-KDE-PluginInfo-Author=Aleix Pol X-KDE-PluginInfo-Version=0.1 X-KDE-PluginInfo-License=LGPL -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Category=Core X-KDevelop-Mode=GUI diff --git a/plugins/documentswitcher/kdevdocumentswitcher.desktop b/plugins/documentswitcher/kdevdocumentswitcher.desktop index 0ff15c700e..a8d991cccc 100644 --- a/plugins/documentswitcher/kdevdocumentswitcher.desktop +++ b/plugins/documentswitcher/kdevdocumentswitcher.desktop @@ -1,101 +1,101 @@ [Desktop Entry] Type=Service Icon=document-open-recent Exec=blubb Comment=A most-recently-used document switcher for KDevPlatform. Comment[bg]=Последен използван превключвател на документи за KDevPlatform. Comment[ca]=Un commutador del document usat més recentment per KDevPlatform. Comment[ca@valencia]=Un commutador del document usat més recentment per KDevPlatform. Comment[da]=En dokumentskifter til nyligt anvendte til KDevPlatform. Comment[de]=Ein Umschalter zwischen zuletzt geöffneten Dokumenten. Comment[el]=Ένας εναλλάκτης μεταξύ πρόσφατα χρησιμοποιημένων εγγράφων για το KDevPlatform. Comment[en_GB]=A most-recently-used document switcher for KDevPlatform. Comment[es]=Un cambiador del documento usado más recientemente para KDevPlatform. Comment[et]=KDevPlatformi viimati kasutatud dokumentide vahetaja Comment[fi]=Viimeksi käytetty asiakirjanvaihtaja KDevPlatform-ympäristöön. Comment[fr]=Un commutateur de documents parmi les plus récemment utilisés pour KDevPlatform. Comment[gl]=Un selector entre documentos empregados recentemente para KDevPlatform. Comment[it]=Uno scambia documento utilizzato più di recente per KDevPlatform Comment[nb]=En dokumentbytter for KDevPlatform som behandler sist brukte dokumenter Comment[nds]=En Togrieper op de tolest bruukten Dokmenten för KDevPlatform Comment[nl]=De meest-recent-gebruikte documentwisselaar voor KDevPlatform. Comment[pl]=Przełączanie między ostatnio używanymi dokumentacji w KDevPlatform. Comment[pt]=Um selector dos documentos mais recentes para o KDevPlatform. Comment[pt_BR]=Um seletor dos documentos mais recentes para o KDevPlatform. Comment[ru]=Переключение между наиболее часто используемыми документами в приложениях KDevPlatform. Comment[sl]=Vstavek za preklapljanje med nazadnje uporabljenimi dokumenti. Comment[sv]=Byte till senast använda dokument för KDevelop-plattformen. Comment[tr]=KDevPlatform için yakın zamanda en çok kullanılan belgeleri seçen bir eklenti. Comment[uk]=Перемикач останніх використаних документів для KDevPlatform. Comment[x-test]=xxA most-recently-used document switcher for KDevPlatform.xx Comment[zh_CN]=KDevPlatform 的最近经常使用文档的切换器。 Comment[zh_TW]=KDevPlatform 上切換最近使用的文件的切換器 Name=Most-Recently-Used Document Switcher Name[bg]=Последният използван превключвател на документи Name[ca]=Commutador del document usat més recentment Name[ca@valencia]=Commutador del document usat més recentment Name[da]=Dokumentskifter til nyligt anvendte Name[de]=Zuletzt-Verwendet-Dokumentumschalter Name[el]=Εναλλάκτης μεταξύ πρόσφατα χρησιμοποιημένων εγγράφων Name[en_GB]=Most-Recently-Used Document Switcher Name[es]=Cambiador del documento usado más recientemente Name[et]=Viimati kasutatud dokumentide vahetaja Name[fi]=Viimeksi käytetty asiakirjanvaihtaja Name[fr]=Commutateur de documents parmi les plus récemment utilisés Name[gl]=Selector entre documentos empregados recentemente Name[it]=Scambia documento utilizzato più di recente Name[nb]=Sist-brukte dokumentbytter Name[nds]=Togrieper för de tolest bruukten Dokmenten Name[nl]=Meest-recent-gebruikte documentwisselaar Name[pl]=Przełączanie między ostatnio używanymi dokumentami Name[pt]=Selector dos Documentos Usados Mais Recentemente Name[pt_BR]=Seletor dos Documentos Usados Mais Recentemente Name[ru]=Переключатель между наиболее часто используемыми документами Name[sl]=Preklapljanje med nazadnje uporabljenimi dokumenti Name[sv]=Byte till senast använda dokument Name[tr]=Yakın Zamanda En Çok Kullanılan Belgeleri Seçici Name[uk]=Перемикач нещодавно використаних документів Name[x-test]=xxMost-Recently-Used Document Switcherxx Name[zh_CN]=最近经常使用文档切换器 Name[zh_TW]=最近使用的文件切換器 GenericName=Document Switcher GenericName[bg]=Превключвател на документи GenericName[ca]=Commutador de documents GenericName[ca@valencia]=Commutador de documents GenericName[cs]=Přepínač dokumentů GenericName[da]=Dokumentskifter GenericName[de]=Dokumentumschalter GenericName[el]=Εναλλάκτης εγγράφων GenericName[en_GB]=Document Switcher GenericName[es]=Cambiador de documento GenericName[et]=Dokumendivahetaja GenericName[fi]=Asiakirjavaihtaja GenericName[fr]=Commutateur de documents GenericName[gl]=Selector entre documentos GenericName[it]=Scambia documento GenericName[ja]=文書スイッチャー GenericName[nb]=Dokumentbytter GenericName[nds]=Dokment-Togriep GenericName[nl]=Documentenwisselaar GenericName[pl]=Przełączanie między dokumentami GenericName[pt]=Selector de Documentos GenericName[pt_BR]=Seletor de Documentos GenericName[ru]=Переключатель документов GenericName[sl]=Preklapljanje med dokumenti GenericName[sv]=Dokumentbyte GenericName[tr]=Belge Seçici GenericName[ug]=پۈتۈك ئالماشتۇرغۇچ GenericName[uk]=Інструмент перемикання документів GenericName[x-test]=xxDocument Switcherxx GenericName[zh_CN]=文档切换器 GenericName[zh_TW]=文件切換器 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevdocumentswitcher X-KDE-PluginInfo-Name=kdevdocumentswitcher X-KDE-PluginInfo-Author=Andreas Pakulat X-KDE-PluginInfo-Version=0.1 X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Utilities -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/plugins/documentview/kdevdocumentview.desktop b/plugins/documentview/kdevdocumentview.desktop index f356ff21cd..aa69b58eed 100644 --- a/plugins/documentview/kdevdocumentview.desktop +++ b/plugins/documentview/kdevdocumentview.desktop @@ -1,101 +1,101 @@ [Desktop Entry] Type=Service Icon=document-preview Exec=blubb Comment=This plugin displays a graphical view of all documents currently loaded and separates them by mimetype. Comment[ca]= Aquest connector mostra una visualització gràfica de tots els documents carregats actualment, separats per tipus MIME. Comment[ca@valencia]= Este connector mostra una visualització gràfica de tots els documents carregats actualment, separats per tipus MIME. Comment[da]=Dette plugin viser en grafisk oversigt over alle indlæste dokumenter og adskilder dem efter MIME-type. Comment[de]=Dieses Modul zeigt alle aktuell geladenen Dokumente getrennt nach ihren MIME-Typen an. Comment[el]=Το πρόσθετο αυτό εμφανίζει μια γραφική προβολή όλων των εγγράφων που φορτώνονται και τα διαχωρίζει με βάση το αναγνωριστικό τύπου. Comment[en_GB]=This plugin displays a graphical view of all documents currently loaded and separates them by mimetype. Comment[es]=Este complemento muestra una vista gráfica de todos los documentos cargados actualmente y los separa por su tipo MIME. Comment[et]=See plugin näitab graafiliselt kõiki laaditud dokumente ja eraldab need MIME tüübi alusel. Comment[fi]=Tämä liitännäinen näyttää kaikkien parhaillaan ladattujen asiakirjojen graafisen näkymän ja erottelee ne mime-tyypin perusteella. Comment[fr]=Ce module externe affiche une vue graphique de tous les documents actuellement chargés et les sépare par type MIME. Comment[ga]=Taispeánann an breiseán seo amharc grafach ar gach cáipéis atá luchtaithe faoi láthair, agus dealaíonn sé iad de réir a gcineál MIME. Comment[gl]=Esta extensión mostra unha vista gráfica de todos os documentos agora cargados e sepáraos segundo o seu tipo mime. Comment[it]=Questa estensione mostra una vista grafica di tutti i documenti attualmente caricati e li separa per il tipo MIME. Comment[nb]=Dette programtillegget gir en grafisk visning av alle dokumenter som nå er lastet inn og skiller dem etter mimetype. Comment[nds]=Dit Moduul wiest all opstunns laadt Dokmenten graafsch un sorteert se na MIME-Typ. Comment[nl]=Deze plugin toont een grafische voorstelling van alle nu geladen documenten en scheidt deze door het mimetype. Comment[pl]=Ta wtyczka udostępnia graficzny widok wszystkich obecnie wczytanych dokumentów i dzieli je według typu MIME. Comment[pt]=Este 'plugin' mostra uma vista gráfica sobre todos os documentos carregados de momento e separa-os por tipo MIME. Comment[pt_BR]=Este plugin mostra uma vista gráfica sobre todos os documentos carregados no momento e separa-os por tipo MIME. Comment[sl]=Vstavek prikazuje vse trenutno naložene dokumente in jih ločuje glede na zvrst MIME. Comment[sv]=Insticksprogrammet visar en grafisk vy av alla dokument som för närvarande har laddats och delar upp dem enligt Mime-typ. Comment[tr]=Bu eklenti, o anda yüklenmiş olan tüm belgeleri grafiksel bir görünümde gösterir ve o dosyaları mime tiplerine göre ayırır. Comment[uk]=Цей додаток відображає у графічному вигляді всі відкриті документи і впорядковує їх за типом MIME. Comment[x-test]=xxThis plugin displays a graphical view of all documents currently loaded and separates them by mimetype.xx Comment[zh_CN]=此插件显示当前已装入文档的图形视图并按照 mime 类型分类。 Comment[zh_TW]=這個外掛程式顯示目前載入並依 MIME 型態分類的文件的圖形檢視。 Name=Document View Name[bg]=Изглед за документи Name[ca]=Visor de document Name[ca@valencia]=Visor de document Name[da]=Dokumentvisning Name[de]=Dokumentansicht Name[el]=Προβολή εγγράφου Name[en_GB]=Document View Name[es]=Vista de documento Name[et]=Dokumendivaade Name[fi]=Asiakirjanäkymä Name[fr]=Vue Document Name[ga]=Amharc Cáipéise Name[gl]=Vista do documento Name[it]=Vista documento Name[ja]=文書ビュー Name[nb]=Dokumentvisning Name[nds]=Dokmentenansicht Name[nl]=Document-overzicht Name[pl]=Widok dokumentu Name[pt]=Área de Documentos Name[pt_BR]=Área de Documentos Name[sl]=Prikaz dokumentov Name[sv]=Dokumentvy Name[tr]=Belge Görünümü Name[ug]=پۈتۈك كۆرۈنۈش Name[uk]=Перегляд документів Name[x-test]=xxDocument Viewxx Name[zh_CN]=文档视图 Name[zh_TW]=文件檢視 GenericName=Document Tool GenericName[bg]=Инструмент за документи GenericName[ca]=Eina de document GenericName[ca@valencia]=Eina de document GenericName[da]=Dokumentværktøj GenericName[de]=Dokument-Werkzeug GenericName[el]=Εργαλείο εγγράφου GenericName[en_GB]=Document Tool GenericName[es]=Herramienta de documento GenericName[et]=Dokumendi tööriist GenericName[fi]=Asiakirjatyökalu GenericName[fr]=Outil Document GenericName[ga]=Uirlis Cháipéise GenericName[gl]=Utilidade de documento GenericName[it]=Strumenti documento GenericName[ja]=文書ツール GenericName[nb]=Dokumentverktøy GenericName[nds]=Dokmentenwarktüüch GenericName[nl]=Document-hulpmiddel GenericName[pl]=Narzędzie dokumentu GenericName[pt]=Ferramenta de Documentos GenericName[pt_BR]=Ferramenta de Documentos GenericName[sl]=Orodje za dokumente GenericName[sv]=Dokumentverktyg GenericName[tr]=Belge Aracı GenericName[ug]=پۈتۈك قورالى GenericName[uk]=Інструмент роботи з документами GenericName[x-test]=xxDocument Toolxx GenericName[zh_CN]=文档工具 GenericName[zh_TW]=文件工具 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevdocumentview X-KDE-PluginInfo-Name=kdevdocumentview X-KDE-PluginInfo-Author=Adam Treat X-KDE-PluginInfo-Version=0.1 X-KDE-PluginInfo-License=LGPL X-KDE-PluginInfo-Category=Utilities -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/plugins/execute/kdevexecute.desktop b/plugins/execute/kdevexecute.desktop index c590e6171d..b3353b3477 100644 --- a/plugins/execute/kdevexecute.desktop +++ b/plugins/execute/kdevexecute.desktop @@ -1,103 +1,103 @@ [Desktop Entry] Type=Service Icon=system-run Exec=blubb Comment=This plugin allows running of programs with no instrumentor, ie. natively by the current host. Comment[bg]=Тaзи приставка позволява изпълнение на програмата без основния модул, т.е. локално на текущата машина. Comment[ca]=Aquest connector permet executar programes sense «instrumentor», és a dir, nativament per l'amfitrió actual. Comment[ca@valencia]=Este connector permet executar programes sense «instrumentor», és a dir, nativament per l'amfitrió actual. Comment[da]=Dette plugin tillader kørsel af programmer uden instrumentor dvs. nativt på det nuværende system. Comment[de]=Dieses Modul erlaubt das Ausführen von Programmen im Kontext des Betriebssystems. Comment[el]=Αυτό το πρόσθετο επιτρέπει την εκτέλεση προγραμμάτων χωρίς οργανωτή, πχ. εγγενώς από τον τρέχων υπολογιστή. Comment[en_GB]=This plugin allows running of programs with no instrumentor, ie. natively by the current host. Comment[es]=Este complemento permite ejecutar programas sin instrumentor (es decir, de forma nativa por la máquina actual). Comment[et]=See plugin võimaldab panna programme aktiivses masinas tööle ilma instrumentaatorita, s.t loomulikult. Comment[fi]=Tämä liitännäinen sallii ohjelmien suorittamisen ilman välikappaletta, ts. kotoperäisesti nykyisellä tietokoneella. Comment[fr]=Ce module externe permet le lancement de programmes sans instrumenteur, c'est-à-dire nativement par l'hôte actuel. Comment[gl]=Este engadido permite executar programas sen instrumentador, i.e. de xeito nativo na máquina actual. Comment[it]=Questa estensione permette l'esecuzione dei programmi senza instrumentor, vale a dire nativamente da parte dell'host attuale. Comment[nb]=Dette programtillegget tillater kjøring av programmer uten instrumentering, dvs. lokalt på den gjeldende verten. Comment[nds]=Dit Moduul föhrt Programmen ahn Utstatter ut, d.h. bloots mit den aktuellen Reekner. Comment[nl]=Deze plugin staat het uitvoeren van programma's toe zonder hulpprogramma, dwz. van nature op de huidige host. Comment[pl]=Wtyczka ta pozwala na uruchamianie programów bez instrumentora, np. natywnie przez obecnego hosta. Comment[pt]=Este 'plugin' permite a execução dos programas não-instrumentalizados, i.e. nativamente pela máquina actual. Comment[pt_BR]=Esta extensão permite rodar programas sem orquestrador, ou seja, nativamente pelo computador hospedeiro. Comment[sl]=Vstavek omogoča zaganjanje programov, za katere v KDevelop ni posebnega grafičnega vmesnika. Comment[sv]=Insticksprogrammet tillåter att program utan instrumentering körs, dvs. direkt av nuvarande värddator. Comment[tr]=Bu eklenti, uygulamaları, kullanılan makine üzerinde, hiç bir ek araç kullanmadan doğal hali ile çalıştırmayı sağlar. Comment[uk]=За допомогою цього додатка можна запускати програми безпосередньо на поточному вузлі. Comment[x-test]=xxThis plugin allows running of programs with no instrumentor, ie. natively by the current host.xx Comment[zh_CN]=此插件允许以无操作者方式运行程序,例如,当前主机的原生方式。 Comment[zh_TW]=此外掛程式允許在目前主機上執行程式。 Name=Execute Programs Name[bg]=Изпълняване на програми Name[ca]=Executa programes Name[ca@valencia]=Executa programes Name[cs]=Spustit programy Name[da]=Kør programmer Name[de]=Programme ausführen Name[el]=Εκτέλεση προγραμμάτων Name[en_GB]=Execute Programs Name[es]=Ejecutar programas Name[et]=Programmide täitmine Name[fi]=Suorita ohjelmia Name[fr]=Exécuter des programmes Name[ga]=Rith Ríomhchláir Name[gl]=Executar programas Name[it]=Esegui i programmi Name[ja]=プログラムを実行 Name[nb]=Kjør programmer Name[nds]=Programmen utföhren Name[nl]=Programma's uitvoeren Name[pl]=Wykonaj programy Name[pt]=Execução de Programas Name[pt_BR]=Executar programa Name[ru]=Выполнение команд оболочки Name[sl]=Izvedi programe Name[sv]=Kör program Name[tr]=Uygulamaları Çalıştır Name[ug]=پروگرامما ئىجرا قىلىش Name[uk]=Виконання програм Name[x-test]=xxExecute Programsxx Name[zh_CN]=执行程序 Name[zh_TW]=執行程式 GenericName=Program Execution Support GenericName[bg]=Поддръжка за изпълнение на програми GenericName[ca]=Implementació d'execució de programes GenericName[ca@valencia]=Implementació d'execució de programes GenericName[da]=Understøttelse af kørsel af programmer GenericName[de]=Unterstützung zur Ausführung von Programmen GenericName[el]=Υποστήριξη εκτέλεσης προγραμμάτων GenericName[en_GB]=Program Execution Support GenericName[es]=Implementación de la ejecución de programas GenericName[et]=Programmide täitmise toetus GenericName[fi]=Ohjelman suoritustuki GenericName[fr]=Prise en charge de l'exécution des programmes GenericName[gl]=Soporte de execución de programas GenericName[it]=Supporto esecuzione programmi GenericName[ja]=プログラム実行のサポート GenericName[nb]=Støtte for programkjøring GenericName[nds]=Programmutföhr-Ünnerstütten GenericName[nl]=Ondersteuning voor uitvoeren van programma GenericName[pl]=Obsługa wykonywania programów GenericName[pt]=Suporte à Execução de Programas GenericName[pt_BR]=Suporte a execução de programa GenericName[ru]=Поддержка запуска программ GenericName[sl]=Podpora za izvajanje programov GenericName[sv]=Stöd för körning av program GenericName[tr]=Uygulama Çalıştırma Desteği GenericName[ug]=پروگرامما ئىجرا قىلىشنى قوللاش GenericName[uk]=Підтримка виконання програм GenericName[x-test]=xxProgram Execution Supportxx GenericName[zh_CN]=程序执行支持 GenericName[zh_TW]=執行程式支援 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevexecute -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevexecute X-KDE-PluginInfo-Author=Hamish Rodda X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Core X-KDevelop-Interfaces=org.kdevelop.IExecutePlugin X-KDevelop-Mode=NoGUI diff --git a/plugins/executescript/kdevexecutescript.desktop b/plugins/executescript/kdevexecutescript.desktop index 1b807a5516..05d001ef99 100644 --- a/plugins/executescript/kdevexecutescript.desktop +++ b/plugins/executescript/kdevexecutescript.desktop @@ -1,70 +1,70 @@ [Desktop Entry] Type=Service Exec=blubb Comment=This plugin allows running of scripts. Comment[bg]=Тази приставка позволява изпълнение на скриптове. Comment[de]=Dieses Modul ermöglicht das Ausführen von Skripten. Comment[el]=Το πρόσθετο αυτό επιτρέπει την εκτέλεση σεναρίων. Comment[es]=Este complemento permite ejecutar scripts. Comment[et]=See plugin võimaldab käivitada skripte. Comment[fr]=Ce module externe permet d'exécuter des scripts. Comment[it]=Questa estensione permette l'esecuzione degli script. Comment[nb]=Dette programtillegget tillater skriptkjøring. Comment[nl]=Deze plugin staat het uitvoeren van scripts toe. Comment[pl]=Wtyczka ta pozwala na uruchamianie skryptów. Comment[pt]=Este 'plugin' permite a execução de programas. Comment[pt_BR]=Este plugin permite a execução de programas. Comment[sv]=Insticksprogrammet gör det möjligt att köra skript. Comment[tr]=Bu eklenti betiklerin çalıştırılmasını sağlar. Comment[uk]=За допомогою цього додатка можна запускати скрипти. Comment[x-test]=xxThis plugin allows running of scripts.xx Comment[zh_CN]=此插件负责执行脚本. Comment[zh_TW]=此外掛程式允許執行文稿。 Name=Execute Scripts Name[bg]=Изпълнение на скриптове Name[cs]=Spustit skripty Name[de]=Skripte ausführen Name[el]=Εκτέλεση σεναρίων Name[es]=Ejecutar scripts Name[et]=Skriptide käivitamine Name[fr]=Exécution de scripts Name[it]=Esegui script Name[nb]=Kjør skripter Name[nl]=Scripts uitvoeren Name[pl]=Wykonaj skrypty Name[pt]=Executar Programas Name[pt_BR]=Executar os programas Name[sv]=Kör skript Name[tr]=Betikleri Çalıştır Name[uk]=Виконання скриптів Name[x-test]=xxExecute Scriptsxx Name[zh_CN]=执行脚本 Name[zh_TW]=執行文稿 GenericName=Script Execution Support GenericName[bg]=Поддръжка за изпълнение на скриптове GenericName[de]=Unterstützung zur Ausführung von Skripten GenericName[el]=Υποστήριξη εκτέλεσης σεναρίων GenericName[es]=Implementación de la ejecución de scripts GenericName[et]=Skriptide käivitamise toetus GenericName[fr]=Prise en charge de l'exécution de scripts GenericName[it]=Supporto esecuzione script GenericName[nb]=Støtte for skriptkjøring GenericName[nl]=Ondersteuning voor uitvoeren van scripts GenericName[pl]=Obsługa wykonywania skryptów GenericName[pt]=Suporte à Execução de Programas GenericName[pt_BR]=Suporte à execução de programas GenericName[sv]=Stöd för körning av skript GenericName[tr]=Betik Çalıştırma Desteği GenericName[uk]=Підтримка виконання скриптів GenericName[x-test]=xxScript Execution Supportxx GenericName[zh_CN]=脚本执行支持 GenericName[zh_TW]=執行文稿支援 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevexecutescript -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevexecutescript X-KDE-PluginInfo-Author=Niko Sams X-KDE-PluginInfo-License=GPL X-KDevelop-Interfaces=org.kdevelop.IExecuteScriptPlugin X-KDevelop-Mode=NoGUI diff --git a/plugins/externalscript/kdevexternalscript.desktop b/plugins/externalscript/kdevexternalscript.desktop index 5dedb42618..f84089cc51 100644 --- a/plugins/externalscript/kdevexternalscript.desktop +++ b/plugins/externalscript/kdevexternalscript.desktop @@ -1,98 +1,98 @@ [Desktop Entry] Type=Service Icon=system-run Exec= Comment=Run external scripts or applications to manipulate the editor contents or do other arbitrary actions. Comment[ca]=Executa scripts externs o aplicacions per a manipular el contingut de l'editor o altres accions arbitràries. Comment[ca@valencia]=Executa scripts externs o aplicacions per a manipular el contingut de l'editor o altres accions arbitràries. Comment[da]=Kør eksterne scripts eller programmer til manipulering af editor-indholdet eller foretag andre handlinger. Comment[de]=Führen Sie externe Skripte oder Programme zum Verändern des Editorinhalts oder für beliebige andere Aktionen aus. Comment[el]=Εκτέλεση εξωτερικών σεναρίων ή εφαρμογών για χειρισμό του περιεχομένου ""του κειμενογράφου ή για οποιεσδήποτε άλλες ενέργειες. Comment[en_GB]=Run external scripts or applications to manipulate the editor contents or do other arbitrary actions. Comment[es]=Ejecutar aplicaciones o scripts externos para manipular el contenido del editor o realizar otras acciones. Comment[et]=Välised skriptid või rakendused, mis võimaldavad muuta redaktori sisu või ette võtta mingeid muid toiminguid. Comment[fi]=Suorittaa ulkoisia skriptejä tai sovelluksia editorisisällön manipuloimiseksi tai muiden satunnaisten tehtävien tekemiseksi. Comment[fr]=Lancer des scripts ou des applications externes pour manipuler le contenu de l'éditeur ou effectuer d'autres actions arbitraires. Comment[it]=Eseguire script o applicazioni esterne per manipolare il contenuto dell'editor o per fare altre azioni. Comment[nb]=Kjør eksterne skripter eller programmer for å behandle redigeringsinnholdet eller utføre andre vilkårlige handlinger. Comment[nds]=Utföhren vun extern Skripten oder Programmen för't Ännern vun den Editor-Inholt oder anner Akschonen. Comment[nl]=Externe scripts of programma's uitvoeren om de inhoud van de bewerker te manipuleren of andere acties uit te voeren. Comment[pl]=Uruchamiaj zewnętrzne skrypty lub programy, aby manipulować zawartością edytora lub innymi dowolnymi działaniami. Comment[pt]=Executa programas ou aplicações externa para manipular o conteúdo do editor ou efectua outras acções arbitrárias. Comment[pt_BR]=Execute scripts externos ou aplicativos para manipular os conteúdos do editor ou para fazer outras ações ordinárias. Comment[sl]=Zaganjajte zunanje skripte ali programe, ki upravljajo z vsebino urejevalnika ali pa opravljajo druga poljubna dejanja. Comment[sv]=Kör externa skript eller program för att behandla editorns innehåll eller utför andra godtyckliga åtgärder. Comment[tr]=Düzenleyici içeriğini değiştirmek ve diğer istenilen eylemler için dış betikleri veya uygulamaları çalıştır. Comment[uk]=Запускає зовнішні скрипти або програми для обробки текстових даних редактора або виконання інших потрібних дій. Comment[x-test]=xxRun external scripts or applications to manipulate the editor contents or do other arbitrary actions.xx Comment[zh_CN]=运行外部脚本或应用程序来处理编辑器内容或者执行其它任意动作。 Comment[zh_TW]=執行外部文稿或應用程式來運用編輯器內的內容,或是做各種動作。 Name=External Scripts Name[bg]=Външни скриптове Name[ca]=Scripts externs Name[ca@valencia]=Scripts externs Name[da]=Eksterne scripts Name[de]=Externe Skripte Name[el]=Εξωτερικά σενάρια Name[en_GB]=External Scripts Name[es]=Scripts externos Name[et]=Välised skriptid Name[fi]=Ulkoiset skriptit Name[fr]=Scripts externes Name[it]=Script esterni Name[ja]=外部スクリプト Name[nb]=Eksterne skripter Name[nds]=Extern Skripten Name[nl]=Externe scripts Name[pl]=Zewnętrzne skrypty Name[pt]=Programas Externos Name[pt_BR]=Scripts externos Name[ru]=Внешние сценарии Name[sl]=Zunanji skripti Name[sv]=Externa skript Name[tr]=Dış Betikler Name[ug]=سىرتقى قوليازما پروگرامما Name[uk]=Зовнішні скрипти Name[x-test]=xxExternal Scriptsxx Name[zh_CN]=外部脚本 Name[zh_TW]=外部文稿 GenericName=External Scripts GenericName[bg]=Външни скриптове GenericName[ca]=Scripts externs GenericName[ca@valencia]=Scripts externs GenericName[da]=Eksterne scripts GenericName[de]=Externe Skripte GenericName[el]=Εξωτερικά σενάρια GenericName[en_GB]=External Scripts GenericName[es]=Scripts externos GenericName[et]=Välised skriptid GenericName[fi]=Ulkoiset skriptit GenericName[fr]=Scripts externes GenericName[it]=Script esterni GenericName[ja]=外部スクリプト GenericName[nb]=Eksterne skripter GenericName[nds]=Extern Skripten GenericName[nl]=Externe scripts GenericName[pl]=Zewnętrzne skrypty GenericName[pt]=Programas Externos GenericName[pt_BR]=Scripts externos GenericName[ru]=Внешние сценарии GenericName[sl]=Zunanji skripti GenericName[sv]=Externa skript GenericName[tr]=Dış Betikler GenericName[ug]=سىرتقى قوليازما پروگرامما GenericName[uk]=Зовнішні скрипти GenericName[x-test]=xxExternal Scriptsxx GenericName[zh_CN]=外部脚本 GenericName[zh_TW]=外部文稿 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevexternalscript -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevexternalscript X-KDE-PluginInfo-Author=Milian Wolff X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Utilities X-KDevelop-Interfaces=org.kdevelop.IPlugin X-KDevelop-Mode=GUI X-KDevelop-IRequired=org.kdevelop.IOutputView diff --git a/plugins/filemanager/kdevfilemanager.desktop b/plugins/filemanager/kdevfilemanager.desktop index d5db969ed8..f8419d8281 100644 --- a/plugins/filemanager/kdevfilemanager.desktop +++ b/plugins/filemanager/kdevfilemanager.desktop @@ -1,113 +1,113 @@ [Desktop Entry] Type=Service Icon=system-file-manager Exec=blubb Comment=This plugin brings a filemanager to KDevelop. Comment[bg]=Тaзи приставка вгражда файловия манипулатор към KDevelop. Comment[ca]=Aquest connector proporciona un gestor de fitxers a KDevelop. Comment[ca@valencia]=Este connector proporciona un gestor de fitxers a KDevelop. Comment[da]=Dette plugin bringer filhåndtering til KDevelop. Comment[de]=Dieses Modul integriert einen Datei-Browser in KDevelop. Comment[el]=Αυτό το πρόσθετο ενσωματώνει ένα διαχειριστή αρχείων στο KDevelop Comment[en_GB]=This plugin brings a filemanager to KDevelop. Comment[es]=Este complemento proporciona un gestor de archivos a KDevelop. Comment[et]=See plugin võimaldab kasutada KDevelopis failihaldurit. Comment[fi]=Tämä liitännäinen tuo tiedostohallinnan KDevelop-ympäristöön. Comment[fr]=Ce module externe offre un gestionnaire de fichiers pour KDevelop. Comment[gl]=Este engadido incorpora un xestor de ficheiros no KDevelop. Comment[it]=Questa estensione porta un gestore di file in KDevelop. Comment[ja]=このプラグインはファイルマネージャを KDevelop に統合します Comment[lv]=Šis spraudnis nodrošina failu pārvaldnieka funkcionalitāti iekš KDevelop. Comment[nb]=Dette programtillegget tar inn en filbehandler i KDevelop. Comment[nds]=Dit Moduul stellt en Dateipleger för KDevelop praat. Comment[nl]=Deze plugin brengt een bestandsbeheerder in KDevelop. Comment[pl]=Ta wtyczka udostępnia menadżer plików w KDevelopie. Comment[pt]=Este 'plugin' oferece um gestor de ficheiros para o KDevelop. Comment[pt_BR]=Esta extensão provê um gerenciador de arquivos ao KDevelop. Comment[ru]=Это расширение добавляет диспетчер файлов в KDevelop Comment[sl]=Vstavek v KDevelop prinese upravljalnik datotek. Comment[sv]=Insticksprogrammet ger KDevelop en filhanterare. Comment[tr]=Bu eklenti KDevelop için bir dosya yönetici sağlar. Comment[ug]=بۇ قىستۇرما ھۆججەت باشقۇرغۇنى KDevelop نىڭ ئىچىگە ئېلىپ كىرىدۇ Comment[uk]=За допомогою цього додатка можна отримати доступ до менеджера файлів у KDevelop. Comment[x-test]=xxThis plugin brings a filemanager to KDevelop.xx Comment[zh_CN]=此插件对 KDevelop 整合一个文件管理器。 Comment[zh_TW]=此外掛程式讓 KDevelop 可使用檔案管理員。 Name=KDE File Manager Integration Name[bg]=Интегриране на файлов манипулатор на KDE Name[ca]=Integració del gestor de fitxers del KDE Name[ca@valencia]=Integració del gestor de fitxers del KDE Name[da]=Integration af KDE filhåndtering Name[de]=Integration der KDE-Dateiverwaltung Name[el]=Ενσωμάτωση διαχειριστή αρχείων του KDE Name[en_GB]=KDE File Manager Integration Name[es]=Integración del gestor de archivos de KDE Name[et]=KDE lõimimine failihalduriga Name[fi]=KDE-tiedostohallintaintegrointi Name[fr]=Intégration du gestionnaire de fichiers de KDE Name[gl]=Integración co xestor de ficheiros do KDE Name[it]=Integrazione gestore di file di KDE Name[ja]=KDE のファイルマネージャの統合 Name[nb]=Integrasjon med KDE filbehandler Name[nds]=KDE-Dateiplegerünnerstütten Name[nl]=KDE Bestandsbeheerder-integratie Name[pl]=Integracja menadżera plików KDE Name[pt]=Integração com o Gestor de Ficheiros do KDE Name[pt_BR]=Integração com o gerenciador de arquivos do KDE Name[ru]=Интеграция диспетчера файлов KDE Name[sl]=Integracija KDE-jevega upravljalnika datotek Name[sv]=Integrering med KDE:s filhanterare Name[tr]=KDE Dosya Yöneticisi Bütünleşmesi Name[ug]=KDE ھۆججەت باشقۇرغۇنىڭ يۈرۈشلەشتۈرۈلۇشى Name[uk]=Інтеграція засобу керування файлами KDE Name[x-test]=xxKDE File Manager Integrationxx Name[zh_CN]=KDE 文件管理器整合 Name[zh_TW]=KDE 檔案管理員整合 GenericName=File Manager GenericName[bg]=Файлов манипулатор GenericName[ca]=Gestor de fitxers GenericName[ca@valencia]=Gestor de fitxers GenericName[cs]=Správce souborů GenericName[da]=Filhåndtering GenericName[de]=Dateiverwaltung GenericName[el]=Διαχειριστής αρχείων GenericName[en_GB]=File Manager GenericName[eo]=Dosieradministrilo GenericName[es]=Gestor de archivos GenericName[et]=Failihaldur GenericName[fi]=Tiedostohallinta GenericName[fr]=Gestionnaire de fichiers GenericName[ga]=Bainisteoir Comhad GenericName[gl]=Xestor de ficheiros GenericName[it]=Gestore di file GenericName[ja]=ファイルマネージャ GenericName[lt]=Failų tvarkyklė GenericName[lv]=Failu pārvaldnieks GenericName[ms]=Pengurus Fail GenericName[nb]=Filbehandler GenericName[nds]=Dateipleger GenericName[nl]=Bestandsbeheerder GenericName[pa]=ਫਾਇਲ ਮੈਨੇਜਰ GenericName[pl]=Menadżer plików GenericName[pt]=Gestor de Ficheiros GenericName[pt_BR]=Gerenciador de arquivos GenericName[ro]=Gestionar de fișiere GenericName[ru]=Диспетчер файлов GenericName[sl]=Upravljalnik datotek GenericName[sv]=Filhanterare GenericName[tr]=Dosya Yönetici GenericName[ug]=ھۆججەت باشقۇرغۇ GenericName[uk]=Менеджер файлів GenericName[x-test]=xxFile Managerxx GenericName[zh_CN]=文件管理器 GenericName[zh_TW]=檔案管理員 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevfilemanager X-KDE-PluginInfo-Name=kdevfilemanager X-KDE-PluginInfo-Author=Alexander Dymo X-KDE-PluginInfo-Version=0.1 X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Core -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/plugins/genericprojectmanager/kdevgenericmanager.desktop b/plugins/genericprojectmanager/kdevgenericmanager.desktop index 9e29d46faf..0262a1510b 100644 --- a/plugins/genericprojectmanager/kdevgenericmanager.desktop +++ b/plugins/genericprojectmanager/kdevgenericmanager.desktop @@ -1,109 +1,109 @@ [Desktop Entry] Type=Service Name=Generic Project Manager Name[bg]=Най-общ манипулатор на проект Name[ca]=Gestor de projectes genèric Name[ca@valencia]=Gestor de projectes genèric Name[da]=Håndtering af generisk projekt Name[de]=Allgemeine Projektverwaltung Name[el]=Γενικευμένος διαχειριστής έργου Name[en_GB]=Generic Project Manager Name[es]=Gestor de proyectos genéricos Name[et]=Üldine projektihaldur Name[fi]=Yleinen projektihallinta Name[fr]=Gestionnaire de projets générique Name[gl]=Xestor de proxectos xenérico Name[it]=Gestore progetto generico Name[ja]=一般プロジェクトマネージャ Name[nb]=Generisk prosjektbehandler Name[nds]=Allmeen Projektpleger Name[nl]=Generieke projectenbeheerder Name[pa]=ਆਮ ਪਰੋਜੈਕਟ ਮੈਨੇਜਰ Name[pl]=Menadżer zwykłych projektów Name[pt]=Gestor de Projectos Genérico Name[pt_BR]=Gerenciador de projeto genérico Name[sl]=Splošni upravljalnik projektov Name[sv]=Generell projekthantering Name[tr]=Genel Proje Yönetici Name[ug]=ئادەتتىكى قۇرۇلۇش باشقۇرغۇچ Name[uk]=Звичайний засіб керування проектом Name[x-test]=xxGeneric Project Managerxx Name[zh_CN]=常规工程管理器 Name[zh_TW]=一般專案管理員 GenericName=Project Manager GenericName[bg]=Управление на проекти GenericName[ca]=Gestor de projectes GenericName[ca@valencia]=Gestor de projectes GenericName[cs]=Správce projektů GenericName[da]=Projekthåndtering GenericName[de]=Projektverwaltung GenericName[el]=Διαχειριστής έργου GenericName[en_GB]=Project Manager GenericName[es]=Gestor de proyectos GenericName[et]=Projektihaldur GenericName[fi]=Projektihallinta GenericName[fr]=Gestionnaire de projets GenericName[ga]=Bainisteoir Tionscadail GenericName[gl]=Xestor de proxectos GenericName[it]=Gestore progetto GenericName[ja]=プロジェクトマネージャ GenericName[lv]=Projektu pārvaldnieks GenericName[nb]=Prosjektbehandler GenericName[nds]=Projektpleger GenericName[nl]=Projectbeheerder GenericName[nn]=Prosjekthandsamar GenericName[pa]=ਪਰੋਜੈਕਟ ਮੈਨੇਜਰ GenericName[pl]=Menadżer projektu GenericName[pt]=Gestor de Projectos GenericName[pt_BR]=Gerenciador de Projetos GenericName[ro]=Gestionar de proiecte GenericName[sl]=Upravljalnik projektov GenericName[sv]=Projekthantering GenericName[tr]=Proje Yönetici GenericName[ug]=قۇرۇلۇش باشقۇرغۇچ GenericName[uk]=Керування проектами GenericName[x-test]=xxProject Managerxx GenericName[zh_CN]=工程管理器 GenericName[zh_TW]=專案管理員 Comment=Allow KDevelop to manage generic projects Comment[bg]=Рарешаване на KDevelop обобщено манипулиране на проекти Comment[ca]=Permet a KDevelop gestionar projectes genèrics Comment[ca@valencia]=Permet a KDevelop gestionar projectes genèrics Comment[da]=Lader KDevelop håndtere generiske projekter Comment[de]=Zum Verwalten allgemeiner Projekte in KDevelop Comment[el]=Επιτρέπει στο KDevelop τη διαχείριση γενικευμένων έργων Comment[en_GB]=Allow KDevelop to manage generic projects Comment[es]=Permite que KDevelop gestione proyectos genéricos Comment[et]=Võimaldab KDevelopil hallata üldisi projekte Comment[fi]=Sallii KDevelop-ohjelman hallita yleisiä projekteja Comment[fr]=Permettre à KDevelop de gérer des projets génériques Comment[gl]=Permítelle a KDevelop xestionar proxectos xenéricos Comment[it]=Permette a KDevelop di gestire i progetti generici Comment[ja]=KDevelop で一般的なプロジェクトを管理できるようにします Comment[nb]=La KDevelop behandle generiske prosjekter Comment[nds]=Lett KDevelop allmeen Projekten plegen Comment[nl]=Sta toe dat KDevelop generieke projecten beheert Comment[pl]=Zezwól KDevelopowi na zarządzanie zwykłymi projektami Comment[pt]=Permite ao KDevelop gerir projectos genéricos Comment[pt_BR]=Permite que o KDevelop gerencie projetos genéricos Comment[ro]=Permite KDevelop să gestioneze proiecte generice Comment[sl]=Omogoča, da KDevelop upravlja generične projekte Comment[sv]=Tillåter att KDevelop hanterar generella projekt Comment[tr]=KDevelop uygulamasının genel projeleri yönetmesine izin ver Comment[ug]=KDevelop نىڭ ئادەتتىكى قۇرۇلۇشلارنى باشقۇرۇشىغا ئىجازەت بېرىدۇ Comment[uk]=За допомогою цього додатка можна увімкнути керування загальними проектами у KDevelop Comment[x-test]=xxAllow KDevelop to manage generic projectsxx Comment[zh_CN]=允许 KDevelop 管理常规工程 Comment[zh_TW]=讓 KDevelop 管理一般的專案 Icon=kdevelop ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevgenericmanager X-KDE-PluginInfo-Name=KDevGenericManager X-KDevelop-FileManager=None -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Project X-KDevelop-Interfaces=org.kdevelop.IProjectFileManager,org.kdevelop.IGenericProjectManager X-KDE-PluginInfo-Author=Milian Wolff X-KDE-PluginInfo-Category=Project Management X-KDevelop-Mode=GUI diff --git a/plugins/git/kdevgit.desktop b/plugins/git/kdevgit.desktop index 944fa8bfd7..db8226fb12 100644 --- a/plugins/git/kdevgit.desktop +++ b/plugins/git/kdevgit.desktop @@ -1,112 +1,112 @@ [Desktop Entry] Type=Service Exec=blubb Icon=git Comment=This plugin integrates Git to KDevelop Comment[bg]=Тaзи приставка вгражда Git в KDevelop Comment[ca]=Aquest connector integra Git en KDevelop Comment[ca@valencia]=Este connector integra Git en KDevelop Comment[da]=Dette plugin integrerer Git med KDevelop Comment[de]=Dieses Modul integriert Git in KDevelop. Comment[el]=Αυτό το πρόσθετο ενσωματώνει το Git στο KDevelop Comment[en_GB]=This plugin integrates Git to KDevelop Comment[es]=Este complemento integra Git en KDevelop Comment[et]=See plugin lõimib Giti KDevelopiga Comment[fi]=Tämä liitännäinen integroi Git-ohjelman KDevelop-ympäristöön Comment[fr]=Ce module externe intègre Git dans KDevelop Comment[gl]=Este engadido integra Git en KDevelop Comment[it]=Questa estensione integra Git in KDevelop Comment[ja]=このプラグインは Git を KDevelop に統合します Comment[lv]=Šis spraudnis integrē Git iekš KDevelop Comment[nb]=Dette programtillegget integrerer Git i KDevelop Comment[nds]=Dit Moduul bett Git na KDevelop in Comment[nl]=Deze plugin integreert Git in KDevelop Comment[pl]=Wtyczka ta integruje Git z KDevelop Comment[pt]=Este 'plugin' integra o Git no KDevelop Comment[pt_BR]=Este plug-in integra o Git ao KDevelop Comment[ro]=Acest modul integrează Git în KDevelop Comment[ru]=Это расширение интегрирует Git в KDevelop Comment[sl]=Vstavek v KDevelop integrira Git Comment[sv]=Insticksprogrammet integrerar Git i KDevelop Comment[tr]=Bu eklenti Git uygulamasını KDevelop ile bütünleştirir Comment[ug]=بۇ قىستۇرما Git نى KDevelop قا يۈرۈشلەشتۈرىدۇ Comment[uk]=Цей додаток призначено для забезпечення підтримки Git у KDevelop Comment[x-test]=xxThis plugin integrates Git to KDevelopxx Comment[zh_CN]=此插件对 KDevelop 整合 Git Comment[zh_TW]=此外掛程式將 Git 整合進 KDevelop Name=Git Support Name[bg]=Поддръжка на Git Name[ca]=Implementació de Git Name[ca@valencia]=Implementació de Git Name[cs]=Podpora Git Name[da]=Git-understøttelse Name[de]=Git-Unterstützung Name[el]=Υποστήριξη Git Name[en_GB]=Git Support Name[es]=Implementación de Git Name[et]=Giti toetus Name[fi]=Git-tuki Name[fr]=Prise en charge de Git Name[ga]=Tacaíocht Git Name[gl]=Soporte de GIT Name[it]=Supporto Git Name[ja]=Git サポート Name[nb]=Git-støtte Name[nds]=Git-Ünnerstütten Name[nl]=Git-ondersteuning Name[pa]=Git ਸਹਿਯੋਗ Name[pl]=Obsługa Git Name[pt]=Suporte para o Git Name[pt_BR]=Suporte ao Git Name[ru]=Поддержка Git Name[sl]=Podpora za Git Name[sv]=Stöd för Git Name[tr]=Git Desteği Name[ug]=Git قوللىشى Name[uk]=Підтримка Git Name[x-test]=xxGit Supportxx Name[zh_CN]=Git 支持 Name[zh_TW]=Git 支援 GenericName=Version Control Support GenericName[bg]=Поддръжка на управление на версиите GenericName[ca]=Implementació del control de versions GenericName[ca@valencia]=Implementació del control de versions GenericName[cs]=Podpora správy verzí GenericName[da]=Understøttelse af versionstyring GenericName[de]=Unterstützung für Versionsverwaltungssysteme GenericName[el]=Υποστήριξη Version Control GenericName[en_GB]=Version Control Support GenericName[es]=Implementación de Control de Versiones GenericName[et]=Versioonihalduse toetus GenericName[fi]=Versionhallintatuki GenericName[fr]=Prise en charge du contrôle de versions GenericName[gl]=Soporte de sistemas de versións GenericName[it]=Supporto controllo versione GenericName[ja]=バージョン管理のサポート GenericName[nb]=Støtte for versjonskontroll GenericName[nds]=Verschoonkuntrull-Ünnerstütten GenericName[nl]=Ondersteuning voor versiecontrole GenericName[pl]=Obsługa kontroli wersji GenericName[pt]=Suporte ao Controlo de Versões GenericName[pt_BR]=Suporte a controle de versão GenericName[ru]=Поддержка систем контроля версий GenericName[sl]=Podpora za nadzor različic GenericName[sv]=Stöd för versionskontroll GenericName[tr]=Sürüm Kontrol Desteği GenericName[ug]=نەشر باشقۇرۇش قوللىشى GenericName[uk]=Підтримка керування версіями GenericName[x-test]=xxVersion Control Supportxx GenericName[zh_CN]=版本控制支持 GenericName[zh_TW]=版本控制支援 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevgit X-KDE-PluginInfo-Name=kdevgit X-KDE-PluginInfo-Author=Evgeniy Ivanov X-KDE-PluginInfo-Email=powerfox@kde.ru X-KDE-PluginInfo-Version=0.9 X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Version Control -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Interfaces=org.kdevelop.IBasicVersionControl, org.kdevelop.IDistributedVersionControl X-KDevelop-Mode=GUI diff --git a/plugins/grepview/kdevgrepview.desktop b/plugins/grepview/kdevgrepview.desktop index 03b87d2d53..fec9315289 100644 --- a/plugins/grepview/kdevgrepview.desktop +++ b/plugins/grepview/kdevgrepview.desktop @@ -1,92 +1,92 @@ [Desktop Entry] Type=Service Exec=blubb Comment=Allows fast searching of multiple files using patterns or regular expressions. And allow to replace it too. Comment[de]=Ermöglicht es, Dateien mit Hilfe von Mustern und regulären Ausdrücken zu durchsuchen bzw. Ersetzungen vorzunehmen. Comment[el]=Επιτρέπει γρήγορη αναζήτηση πολλών αρχείων με χρήση προτύπων ή κανονικών εκφράσεων. Επιτρέπει και την αντικατάστασή τους επίσης. Comment[es]=Permite búsquedas rápidas de múltiples archivos usando patrones o expresiones regulares. También permite sustituciones. Comment[et]=Lubab mustreid või regulaaravaldisi kasutades kiiresti paljudes failides teksti otsida, samuti asendada. Comment[fi]=Sallii nopean useiden tiedostojen etsinnän käyttäen malleja tai säännöllisiä lausekkeita. Ja sallii myös korvauksen. Comment[fr]=Permet la recherche rapide de fichiers multiples à l'aide de motifs ou d'expressions rationnelles, et d'effectuer le remplacement aussi. Comment[ga]=Ceadaíonn sé duit il-comhaid a chuardach go tapa le patrúin nó sloinn ionadaíochta. Agus is féidir asáitiú chomh maith. Comment[it]=Consente la ricerca veloce di file multipli usando espressioni regolari o modelli. E consente anche di sostituirli. Comment[nb]=Gjør raskt søk i flere filer mulig ved hjelp av mønstre eller regulære uttrykk. Og kan erstatte også. Comment[nds]=Stellt gau Dörsöken vun mehr Dateien mit Söökmustern oder reguleer Utdrück praat. Utwesseln warrt ok ünnerstütt. Comment[nl]=Staat toe snel te zoeken naar meerdere bestanden met gebruik van patronen of reguliere expressies. En staat ook vervanging toe. Comment[pl]=Pozwala na szybkie znajdowanie wielu plików wykorzystując wzorce lub regularne wyrażenia. Pozwala także na ich zastępowanie. Comment[pt]=Permite pesquisar rapidamente em vários ficheiros, usando padrões ou expressões regulares, permitindo também efectuar substituições. Comment[pt_BR]=Permite pesquisar rapidamente em vários arquivos, usando padrões ou expressões regulares e também realizar substituições. Comment[sv]=Tillåter snabb sökning i flera filer med mönster eller reguljära uttryck, och tillåter dessutom ersättning. Comment[tr]=Desenleri ve düzenli ifadeleri kullanarak, birçok dosyada hızlı bir şekilde arama yapılmasını sağlar. Bul değiştir işlevini de yapar. Comment[ug]=ئەندىزە ياكى مۇنتىزىم ئىپادە ئارقىلىق نۇرغۇن ھۆججەتلەردىن ئىزدەش ۋە ئالماشتۇرۇشقا ئىجازەت بېرىدۇ. Comment[uk]=Надає можливості швидкого пошуку та заміни у декількох файлів на основі шаблонів або формальних виразів. Comment[x-test]=xxAllows fast searching of multiple files using patterns or regular expressions. And allow to replace it too.xx Comment[zh_CN]=可以用模式或正则表达式快速搜索多个文件,还可以替换。 Comment[zh_TW]=允許使用樣式或正規表示式來快速搜尋與取代多個檔案。 Name=Find/Replace In Files Name[bg]=Търсене и заместване във файлове Name[ca]=Cerca i substitució en fitxers Name[ca@valencia]=Cerca i substitució en fitxers Name[cs]=Hledat-nahradit v souborech Name[da]=Find/erstat i filer Name[de]=In Dateien suchen/ersetzen Name[el]=Αναζήτηση/Αντικατάσταση σε αρχεία Name[en_GB]=Find/Replace In Files Name[es]=Buscar/sustituir en archivos Name[et]=Failides otsimine ja asendamine Name[fi]=Etsi ja korvaa tiedostoissa Name[fr]=Chercher / Remplacer dans les fichiers Name[it]=Trova/Sostituisci nei file Name[nb]=Finn/erstatt i filer Name[nds]=Söken un Utwesseln in Dateien Name[nl]=Zoeken/vervangen in bestanden Name[pl]=Znajdź/zastąp w plikach Name[pt]=Procurar/Substituir nos Ficheiros Name[pt_BR]=Procurar/Substituir nos arquivos Name[ru]=Поиск и замена в файлах Name[sv]=Sök eller ersätt i filer Name[tr]=Bu Dosyalarda Bul ve Değiştir Name[ug]=ھۆججەت ئىچىدىن ئىزدەش/ئالماشتۇرۇش Name[uk]=Пошук або заміна у файлах Name[x-test]=xxFind/Replace In Filesxx Name[zh_CN]=在文件中查找/替换 Name[zh_TW]=在檔案中尋找/取代 GenericName=Search Tool GenericName[bg]=Инструмент за търсене GenericName[ca]=Eina de cerca GenericName[ca@valencia]=Eina de cerca GenericName[da]=Søgeværktøj GenericName[de]=Such-Werkzeug GenericName[el]=Εργαλείο αναζήτησης GenericName[en_GB]=Search Tool GenericName[es]=Herramienta de búsqueda GenericName[et]=Otsimise tööriist GenericName[fi]=Etsintätyökalu GenericName[fr]=Outil de recherche GenericName[ga]=Uirlis Chuardaigh GenericName[gl]=Utilidade de procura GenericName[it]=Strumento ricerca GenericName[ja]=検索ツール GenericName[nb]=Søkeverktøy GenericName[nds]=Söökwarktüüch GenericName[nl]=Hulpmiddel voor zoeken GenericName[pl]=Narzędzie znajdywania GenericName[pt]=Ferramenta de Pesquisa GenericName[pt_BR]=Ferramenta de Pesquisa GenericName[ru]=Инструмент поиска GenericName[sl]=Orodje za iskanje GenericName[sv]=Sökverktyg GenericName[tr]=Arama Aracı GenericName[ug]=ئىزدەش قورالى GenericName[uk]=Інструмент пошуку GenericName[x-test]=xxSearch Toolxx GenericName[zh_CN]=搜索工具 GenericName[zh_TW]=搜尋工具 Icon=kfind ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevgrepview X-KDE-PluginInfo-Name=kdevgrepview X-KDE-PluginInfo-Category=Utilities -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/plugins/konsole/kdevkonsoleview.desktop b/plugins/konsole/kdevkonsoleview.desktop index efa8dbee54..7aa4424a7d 100644 --- a/plugins/konsole/kdevkonsoleview.desktop +++ b/plugins/konsole/kdevkonsoleview.desktop @@ -1,99 +1,99 @@ [Desktop Entry] Type=Service Exec=blubb Comment=This plugin provides KDevelop with an embedded konsole for quick and easy command line access. Comment[bg]=Тaзи приставка осигурява на KDevelop вградена конзола за лесен достъп от команден ред. Comment[ca]=Aquest connector proporciona a KDevelop un Konsole incrustat per accedir de manera ràpida i fàcil a la línia d'ordres. Comment[ca@valencia]=Este connector proporciona a KDevelop un Konsole incrustat per accedir de manera ràpida i fàcil a la línia d'ordes. Comment[da]=Dette plugin giver KDevelop en indlejret konsol for hurtig og nem kommandolinje adgang. Comment[de]=Dieses Modul stattet KDevelop mit einer eingebetteten Konsole zum einfachen Zugriff auf die Befehlszeile aus. Comment[el]=Αυτό το πρόσθετο προσφέρει στο KDevelop μια ενσωματωμένη konsole για γρήγορη και εύκολη πρόσβαση σε γραμμή εντολών. Comment[en_GB]=This plugin provides KDevelop with an embedded konsole for quick and easy command line access. Comment[es]=Este complemento proporciona a KDevelop una consola empotrada para acceder rápida y fácilmente a la línea de órdenes. Comment[et]=See plugin pakub KDevelopile põimitud konsooli käsurea kiireks ja lihtsaks kasutamiseks. Comment[fi]=Tämä liitännäinen tarjoaa KDevelop-ohjelmalle upotetun pääteikkunan nopeaan ja helppoon komentorivityöskentelyyn. Comment[fr]=Ce module externe fournit à KDevelop une console intégrée permettant un accès rapide et aisé à la ligne de commande. Comment[gl]=Este engadido fornécelle a KDevelop un konsole integrado para dispor de acceso rápido e sinxelo á liña de ordes. Comment[it]=Questa estensione dota KDevelop di una console integrata per una rapido e facile accesso alla riga di comando. Comment[ja]=コマンドラインに簡単に素早くアクセスできるように KDevelop に組み込み Konsole を提供します Comment[nb]=Dette programtillegget gir KDevelop en innebygget konsole for rask og lett tilgang til kommandolinja. Comment[nds]=Dit Moduul stellt en inbett Konsole för KDevelop praat, wat gau un eenfach Togriep op de Konsool verlöövt. Comment[nl]=Deze plugin biedt KDevelop een ingebed konsole voor snel en gemakkelijk toegang tot commandoregels. Comment[pl]=Ta wtyczka dodaje do KDevelopa wbudowaną konsolę umożliwiając szybki i łatwy dostęp do linii komend. Comment[pt]=Este 'plugin' oferece ao KDevelop uma consola incorporada para um acesso rápido e simples à linha de comandos. Comment[pt_BR]=Esta extensão provê ao KDevelop um terminal embutido para acesso rápido e fácil a linha de comando. Comment[ru]=Это расширение добавляет в KDevelop встроенный терминал для быстрого и лёгкого доступа к командной строке Comment[sl]=Vstavek v KDevelop prinaša vgrajeno konzolo za hiter in preprost dostop do ukazne vrstice. Comment[sv]=Insticksprogrammet ger KDevelop en inbyggd terminal för snabb och enkel åtkomst av kommandoraden. Comment[tr]=Bu eklenti, komut satırına kolayca erişebilmeniz için KDevelop içerisinde gömülü bir uçbirim sağlar. Comment[uk]=За допомогою цього додатка у KDevelop можна буде скористатися вбудованою konsole, яка пришвидшить і полегшить доступ до командного рядка. Comment[x-test]=xxThis plugin provides KDevelop with an embedded konsole for quick and easy command line access.xx Comment[zh_CN]=此插件为 KDevelop 提供了一个快速方便地访问命令行的嵌入式控制台。 Comment[zh_TW]=此外掛程式提供 KDevelop 一個嵌入式的 konsole,能快速地使用命令列。 Name=Konsole Integration Name[bg]=Интегриране на конзола Name[ca]=Integració del Konsole Name[ca@valencia]=Integració del Konsole Name[da]=Integration af Konsole Name[de]=Konsole-Integration Name[el]=Ενσωμάτωση Konsole Name[en_GB]=Konsole Integration Name[es]=Integración de la consola Name[et]=Lõimimine Konsooliga Name[fi]=Pääteikkunaintegraatio Name[fr]=Intégration de Konsole Name[gl]=Integración con Konsole Name[it]=Integrazione Konsole Name[ja]=Konsole の統合 Name[nb]=Konsole-integrering Name[nds]=Konsool-Inbinnen Name[nl]=Console-integratie Name[pl]=Integracja Konsoli Name[pt]=Integração com o Konsole Name[pt_BR]=Integração com o Konsole Name[ru]=Интеграция Konsole Name[sl]=Integracije konzole Name[sv]=Integrering av Konsole Name[tr]=Konsole Bütünleşmesi Name[ug]=Konsole يۈرۈشلەشتۈرۈلۈشى Name[uk]=Інтеграція Konsole Name[x-test]=xxKonsole Integrationxx Name[zh_CN]=Konsole 整合 Name[zh_TW]=Konsole 整合 GenericName=Terminal Integration GenericName[bg]=Интегриране на терминал GenericName[ca]=Integració del terminal GenericName[ca@valencia]=Integració del terminal GenericName[da]=Integration af terminal GenericName[de]=Terminal-Integration GenericName[el]=Ενσωμάτωση τερματικού GenericName[en_GB]=Terminal Integration GenericName[es]=Integración de la terminal GenericName[et]=Lõimimine terminaliga GenericName[fi]=Pääteikkunaintegraatio GenericName[fr]=Intégration du terminal GenericName[gl]=Integración co terminal GenericName[it]=Integrazione terminale GenericName[ja]=ターミナルの統合 GenericName[nb]=Terminalintegrering GenericName[nds]=Konsool-Inbinnen GenericName[nl]=Terminal-integratie GenericName[pl]=Integracja terminala GenericName[pt]=Integração com o Terminal GenericName[pt_BR]=Integração com o terminal GenericName[ru]=Интеграция терминала GenericName[sl]=Integracija terminala GenericName[sv]=Integrering av terminal GenericName[tr]=Uçbirim Bütünleşmesi GenericName[uk]=Інтеграція термінала GenericName[x-test]=xxTerminal Integrationxx GenericName[zh_CN]=终端整合 GenericName[zh_TW]=終端機整合 Icon=utilities-terminal ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevkonsoleview X-KDE-PluginInfo-Name=kdevkonsoleview X-KDE-PluginInfo-Category=Utilities -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/plugins/openwith/kdevopenwith.desktop b/plugins/openwith/kdevopenwith.desktop index 18c66314cd..c23b8eb028 100644 --- a/plugins/openwith/kdevopenwith.desktop +++ b/plugins/openwith/kdevopenwith.desktop @@ -1,103 +1,103 @@ [Desktop Entry] Type=Service Icon=document-open Exec=blubb Comment=This plugin allows to open files with associated external applications. Comment[bg]=Тази приставка позволява отваряне на файлове със съответни външни програми. Comment[ca]=Aquest connector permet obrir fitxers amb aplicacions externes associades. Comment[ca@valencia]=Este connector permet obrir fitxers amb aplicacions externes associades. Comment[da]=Dette plugin tillader at åbne filer med associerede eksterne applikationer. Comment[de]=Mit diesem Modul können Dateien mit ihnen zugewiesenen externen Anwendungen gestartet werden. Comment[el]=Αυτό το πρόσθετο επιτρέπει το άνοιγμα αρχείων με σχετικές εξωτερικές εφαρμογές Comment[en_GB]=This plugin allows to open files with associated external applications. Comment[es]=Este complemento permite abrir archivos con aplicaciones externas asociadas. Comment[et]=See plugin võimaldab avada väliste rakendustega seostatud faile. Comment[fi]=Tämä liitännäinen salli ulkoisiin sovelluksiin liitettyjen tiedostojen avaamisen. Comment[fr]=Ce module externe permet d'ouvrir des fichiers avec des applications externes associées. Comment[gl]=Este engadido permite abrir ficheiros cos programas externos asociados. Comment[it]=Questa estensione permette di aprire i file con le relative applicazioni esterne. Comment[nb]=Dette programtillegget kan åpne filer med tilknyttede eksterne programmer. Comment[nds]=Mit dit Moduul laat sik Dateien mit towiest extern Programmen opmaken. Comment[nl]=Deze plugin biedt het openen van bestanden met geassocieerde externe toepassingen. Comment[pl]=Ta wtyczka pozwala na otwieranie plików, z którymi są powiązane zewnętrzne programy. Comment[pt]=Este 'plugin' permite abrir os ficheiros com as aplicações externas associadas. Comment[pt_BR]=Este plugin permite abrir os arquivos com os aplicativos externos associados. Comment[sl]=Vstavek omogoča odpiranje datotek v povezanih zunanjih programih. Comment[sv]=Insticksprogrammet tillåter att öppna filer med tillhörande externa program. Comment[tr]=Bu eklenti dosyaları ilişkilendirilmiş dış uygulamalar ile açmayı sağlar. Comment[uk]=За допомогою цього додатка ви зможете відкривати файли у пов’язаній з ними зовнішній програмі. Comment[x-test]=xxThis plugin allows to open files with associated external applications.xx Comment[zh_CN]=此插件允许使用关联的外部应用程序打开文件。 Comment[zh_TW]=此外掛程式讓您可以用外部應用程式開啟檔案。 Name=Open With Name[bg]=Отваряне с Name[ca]=Obre amb Name[ca@valencia]=Obri amb Name[cs]=Otevřít pomocí Name[da]=Åbn med Name[de]=Öffnen mit Name[el]=Άνοιγμα με Name[en_GB]=Open With Name[es]=Abrir con Name[et]=Avamine rakendusega Name[fi]=Avaa ohjelmalla Name[fr]=Ouvrir avec Name[gl]=Abrir con Name[it]=Apri con Name[ja]=アプリケーションで開く Name[nb]=Åpne med Name[nds]=Opmaken mit Name[nl]=Openen met Name[pl]=Otwórz za pomocą Name[pt]=Abrir Com Name[pt_BR]=Abrir com Name[ru]=Открыть с помощью Name[sl]=Odpri v Name[sv]=Öppna med Name[tr]=Birlikte Aç Name[ug]=بۇنىڭدا ئېچىش Name[uk]=Відкриття у зовнішніх програмах Name[x-test]=xxOpen Withxx Name[zh_CN]=打开方式 Name[zh_TW]=開啟方式 GenericName=Open With GenericName[bg]=Отваряне с GenericName[ca]=Obre amb GenericName[ca@valencia]=Obri amb GenericName[cs]=Otevřít pomocí GenericName[da]=Åbn med GenericName[de]=Öffnen mit GenericName[el]=Άνοιγμα με GenericName[en_GB]=Open With GenericName[es]=Abrir con GenericName[et]=Avamine rakendusega GenericName[fi]=Avaa ohjelmalla GenericName[fr]=Ouvrir avec GenericName[gl]=Abrir con GenericName[it]=Apri con GenericName[ja]=アプリケーションで開く GenericName[nb]=Åpne med GenericName[nds]=Opmaken mit GenericName[nl]=Openen met GenericName[pl]=Otwórz za pomocą GenericName[pt]=Abrir Com GenericName[pt_BR]=Abrir com GenericName[ru]=Открыть с помощью GenericName[sl]=Odpri v GenericName[sv]=Öppna med GenericName[tr]=Birlikte Aç GenericName[ug]=بۇنىڭدا ئېچىش GenericName[uk]=Відкриття у зовнішніх програмах GenericName[x-test]=xxOpen Withxx GenericName[zh_CN]=打开方式 GenericName[zh_TW]=開啟方式 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevopenwith -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevopenwith X-KDE-PluginInfo-Author=Andreas Pakulat X-KDevelop-Interfaces=org.kdevelop.IOpenWith X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Core X-KDevelop-Mode=GUI diff --git a/plugins/pastebin/kdevpastebin.desktop b/plugins/pastebin/kdevpastebin.desktop index 2a434dffad..034f53d921 100644 --- a/plugins/pastebin/kdevpastebin.desktop +++ b/plugins/pastebin/kdevpastebin.desktop @@ -1,97 +1,97 @@ [Desktop Entry] Type=Service Icon=edit-paste Exec=blubb Comment=This plugin helps you upload your patches to Pastebin service Comment[ca]=Aquest connector ajuda a exportar pedaços al servei Pastebin Comment[ca@valencia]=Este connector ajuda a exportar pedaços al servei Pastebin Comment[da]=Dette plugin hjælper dig med at uploade dine rettelser til en pastebin-tjeneste Comment[de]=Dieses Modul hilft Ihnen, Ihre Patches zu einen Pastebin-Dienst hochzuladen. Comment[el]=Αυτό το πρόσθετο σάς βοηθάει να φορτώνετε διορθώσεις στην υπηρεσία Pastebin Comment[en_GB]=This plugin helps you upload your patches to Pastebin service Comment[es]=Este complemento le ayuda a enviar sus parches al servicio Pastebin Comment[et]=See plugin aitab üles laadida paiku Pastebini teenusesse Comment[fi]=Tämä liitännäinen opastaa sinua kopioidessasi korjauksiasi Pastebin-palveluun Comment[fr]=Ce module externe vous aide à envoyer vos correctifs au service Pastebin Comment[it]=Questa estensione consente di caricare le tue patch su Pastebin Comment[nb]=Med dette programtillegget kan du laste opp lappene dine til Pastebin-tjenesten Comment[nds]=Mit dit Moduul laat sik Kodeplasters na den Pastebin-Deenst hoochladen. Comment[nl]=Deze plugin helpt u om uw patches naar de Pastebin-service te uploaden Comment[pl]=Wtyczka ta pomaga ci wysyłać swoje łatki do usługi Pastebin Comment[pt]=Este 'plugin' ajuda-o a enviar as suas modificações para o serviço Pastebin Comment[pt_BR]=Este plugin o auxilia a enviar suas modificações para o serviço Pastebin Comment[sl]=Vstavek vam pomaga delčke kode poslati storitvi Pastebin Comment[sv]=Det här insticksprogrammet hjälper till att ladda upp programfixar till tjänsten Pastebin Comment[tr]=Bu eklenti yamalarınızı Pastebin servisine göndermenizi sağlar Comment[uk]=За допомогою цього додатка ви зможете вивантажувати ваші латки до служби Pastebin Comment[x-test]=xxThis plugin helps you upload your patches to Pastebin servicexx Comment[zh_CN]=此插件帮助您将补丁上传到 Pastebin 服务 Comment[zh_TW]=此外掛程式讓您上傳您的修補到 Pastebin 服務內 Name=Pastebin Name[ca]=Pastebin Name[ca@valencia]=Pastebin Name[cs]=Vkládací koš Name[da]=Pastebin Name[de]=Pastebin Name[el]=Pastebin Name[en_GB]=Pastebin Name[es]=Pastebin Name[et]=Pastebin Name[fi]=Pastebin Name[fr]=Pastebin Name[ga]=Pastebin Name[it]=Pastebin Name[ja]=Pastebin Name[nb]=Pastebin Name[nds]=Pastebin Name[nl]=Pastebin Name[pl]=Pastebin Name[pt]=Colagem Name[pt_BR]=Colagem Name[ru]=Pastebin Name[sl]=Pastebin Name[sv]=Pastebin Name[tr]=Pastebin Name[ug]=Pastebin Name[uk]=Pastebin Name[x-test]=xxPastebinxx Name[zh_CN]=Pastebin Name[zh_TW]=Pastebin GenericName=Pastebin GenericName[ca]=Pastebin GenericName[ca@valencia]=Pastebin GenericName[da]=Pastebin GenericName[de]=Pastebin GenericName[el]=Pastebin GenericName[en_GB]=Pastebin GenericName[es]=Pastebin GenericName[et]=Pastebin GenericName[fi]=Pastebin GenericName[fr]=Pastebin GenericName[it]=Pastebin GenericName[ja]=Pastebin GenericName[nb]=Pastebin GenericName[nds]=Pastebin GenericName[nl]=Pastebin GenericName[pl]=Pastebin GenericName[pt]=Colagem GenericName[pt_BR]=Colagem GenericName[ru]=Pastebin GenericName[sl]=Pastebin GenericName[sv]=Pastebin GenericName[tr]=Pastebin GenericName[ug]=Pastebin GenericName[uk]=Pastebin GenericName[x-test]=xxPastebinxx GenericName[zh_CN]=Pastebin GenericName[zh_TW]=Pastebin ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevpastebin -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevpastebin X-KDE-PluginInfo-Author=Aleix Pol X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Utilities X-KDevelop-Mode=GUI X-KDevelop-Interfaces=org.kdevelop.IPatchExporter diff --git a/plugins/patchreview/kdevpatchreview.desktop b/plugins/patchreview/kdevpatchreview.desktop index 0533d86dc7..921ecfe0a6 100644 --- a/plugins/patchreview/kdevpatchreview.desktop +++ b/plugins/patchreview/kdevpatchreview.desktop @@ -1,101 +1,101 @@ [Desktop Entry] Type=Service Icon=applications-engineering Exec=blubb Comment=This plugin allows reviewing patches directly in the editor. Comment[bg]=Тази приставка позволява преглеждане на кръпки направо в редактора. Comment[ca]=Aquest connector permet revisar pedaços directament en l'editor. Comment[ca@valencia]=Este connector permet revisar pedaços directament en l'editor. Comment[da]=Dette plugin tillader at gennemgå rettelser direkte i editoren. Comment[de]=Dieses Modul ermöglich es, Patches direkt im Editor durchzusehen. Comment[el]=Αυτό το πρόσθετο σάς επιτρέπει να επιθεωρείτε διορθώσεις απευθείας από τον κειμενογράφο. Comment[en_GB]=This plugin allows reviewing patches directly in the editor. Comment[es]=Este complemento permite revisar parches directamente en el editor. Comment[et]=See plugin võimaldab paiku üle vaadata otse redaktoris. Comment[fi]=Tämä liitännäinen salli korjausten katselmoinnin suoraan editorissa. Comment[fr]=Ce module externe permet de réviser des correctifs directement dans l'éditeur. Comment[gl]=Este engadido permite revisar parches directamente no editor. Comment[it]=Questa estensione permette di rivedere le patch direttamente nell'editor. Comment[nb]=Dette programtillegget kan gjennomgå programlapper direkte i redigeringen. Comment[nds]=Mit dit Moduul laat sik Kodeplasters direktemang binnen den Editor nakieken. Comment[nl]=Deze plugin laat patches herzien direct in de editor. Comment[pl]=Ta wtyczka pozwala na przeglądanie poprawek bezpośrednio w edytorze. Comment[pt]=Este 'plugin' permite obter as modificações directamente no editor. Comment[pt_BR]=Este plugin permite obter as modificações diretamente no editor. Comment[sl]=Vstavek omogoča pregledovanje popravkov neposredno iz urejevalnika. Comment[sv]=Insticksprogrammet gör det möjligt att direkt granska programfixar i editorn. Comment[tr]=Bu eklenti, yamaların doğrudan düzenleyici içerisinde gözden geçirilmesini sağlar. Comment[uk]=За допомогою цього додатка ви зможете рецензувати латки безпосередньо у редакторі. Comment[x-test]=xxThis plugin allows reviewing patches directly in the editor.xx Comment[zh_CN]=此插件允许在编辑器中直接审阅补丁。 Comment[zh_TW]=此外掛程式任您可以直接在編輯器裡檢視修補。 Name=Patch Review Name[bg]=Преглед на кръпки Name[ca]=Revisa pedaç Name[ca@valencia]=Revisa pedaç Name[da]=Gennemgang af rettelser Name[de]=Patch-Durchsicht Name[el]=Επιθεώρηση διορθώσεων Name[en_GB]=Patch Review Name[es]=Revisión de parches Name[et]=Paikade ülevaatamine Name[fi]=Korjauskatselmus Name[fr]=Révision de correctifs Name[gl]=Revisor de parches Name[it]=Revisione patch Name[ja]=パッチレビュー Name[nb]=Lappegjennomgang Name[nds]=Plasternakiek Name[nl]=Patchoverzicht Name[pl]=Przeglądanie poprawek Name[pt]=Revisão da Modificação Name[pt_BR]=Revisão da Modificação Name[ru]=Рецензирование заплаток Name[sl]=Pregledovanje popravkov Name[sv]=Granska programfixar Name[tr]=Yama Gözden Geçirmesi Name[ug]=ياماق باھالاش Name[uk]=Рецензування латки Name[x-test]=xxPatch Reviewxx Name[zh_CN]=补丁审阅 Name[zh_TW]=修補檢視 GenericName=Patch Review GenericName[bg]=Преглед на кръпки GenericName[ca]=Revisa pedaç GenericName[ca@valencia]=Revisa pedaç GenericName[da]=Gennemgang af rettelser GenericName[de]=Patch-Durchsicht GenericName[el]=Επιθεώρηση διορθώσεων GenericName[en_GB]=Patch Review GenericName[es]=Revisión de parches GenericName[et]=Paikade ülevaatamine GenericName[fi]=Korjauskatselmus GenericName[fr]=Révision de correctifs GenericName[gl]=Revisor de parches GenericName[it]=Revisione patch GenericName[ja]=パッチレビュー GenericName[nb]=Lappegjennomgang GenericName[nds]=Plasternakiek GenericName[nl]=Patchoverzicht GenericName[pl]=Przeglądanie poprawek GenericName[pt]=Revisão da Modificação GenericName[pt_BR]=Revisão da Modificação GenericName[ru]=Рецензирование заплаток GenericName[sl]=Pregledovanje popravkov GenericName[sv]=Granska programfixar GenericName[tr]=Yama Gözden Geçirmesi GenericName[ug]=ياماق باھالاش GenericName[uk]=Рецензування латки GenericName[x-test]=xxPatch Reviewxx GenericName[zh_CN]=补丁审阅 GenericName[zh_TW]=修補檢視 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevpatchreview -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Interfaces=org.kdevelop.IPatchReview X-KDE-PluginInfo-Name=kdevpatchreview X-KDE-PluginInfo-Author=David Nolden X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Utilities X-KDevelop-Mode=GUI diff --git a/plugins/problemreporter/kdevproblemreporter.desktop b/plugins/problemreporter/kdevproblemreporter.desktop index 1a95ed8572..93bec83128 100644 --- a/plugins/problemreporter/kdevproblemreporter.desktop +++ b/plugins/problemreporter/kdevproblemreporter.desktop @@ -1,99 +1,99 @@ [Desktop Entry] Type=Service Icon=emblem-important Exec=blubb Comment=This plugin shows errors in source code. Comment[bg]=Тази приставка показва грешки в изходния код. Comment[ca]=Aquest connector permet mostrar errors en el codi font. Comment[ca@valencia]=Este connector permet mostrar errors en el codi font. Comment[da]=Dette plugin viser fejl i kildekoden. Comment[de]=Dieses Modul zeigt Fehler im Quelltext an. Comment[el]=Αυτό το πρόσθετο εμφανίζει τα λάθη στον πηγαίο κώδικα. Comment[en_GB]=This plugin shows errors in source code. Comment[es]=Este complemento muestra errores en el código fuente. Comment[et]=See plugin näitab vigu lähtekoodis. Comment[fi]=Tämä liitännäinen näyttää virheet lähdekoodissa. Comment[fr]=Ce module externe affiche les erreurs dans le code source. Comment[gl]=Esta extensión mostra erros no código fonte. Comment[it]=Questa estensione mostra gli errori nel codice sorgente. Comment[nb]=Dette programtillegget viser feil i kildekode. Comment[nds]=Dit Moduul wiest Fehlers binnen Bornkode. Comment[nl]=Deze plugin toont fouten in broncode Comment[pl]=Ta wtyczka pokazuje błędy w kodzie źródłowym. Comment[pt]=Este 'plugin' apresenta os erros no código-fonte. Comment[pt_BR]=Este plugin apresenta os erros no código-fonte. Comment[sl]=Vstavek prikazuje napake v izvorni kodi. Comment[sv]=Insticksprogrammet visar fel i källkod. Comment[tr]=Bu eklenti kaynak kod içerisindeki hataları gösterir. Comment[uk]=За допомогою цього додатка можна переглянути повідомлення про помилки у коді. Comment[x-test]=xxThis plugin shows errors in source code.xx Comment[zh_CN]=此插件显示源代码中的错误。 Comment[zh_TW]=此外掛程式顯示源碼中的錯誤。 Name=Problem Reporter View Name[bg]=Преглед на съобщенията за грешки Name[ca]=Vista del notificador de problemes Name[ca@valencia]=Vista del notificador de problemes Name[da]=Visning af problemrapportering Name[de]=Ansicht für Fehlerberichte Name[el]=Προβολή ανταποκριτή προβλημάτων Name[en_GB]=Problem Reporter View Name[es]=Vista del notificador de problemas Name[et]=Probleemide teavitaja vaade Name[fi]=Pulmailmoittajanäkymä Name[fr]=Vue du rapporteur de problèmes Name[gl]=Vista do relator de problemas Name[it]=Vista segnalazione problemi Name[ja]=問題レポータービュー Name[nb]=Problemmeldervisning Name[nds]=Problemsöök-Ansicht Name[nl]=Probleemrapporteuroverzicht Name[pl]=Widok raportów o problemach Name[pt]=Área de Relatórios de Erros Name[pt_BR]=Área de Relatórios de Erros Name[sl]=Prikaz poročevalca o težavah Name[sv]=Problemrapporteringsvy Name[tr]=Sorun Bildirici Görünümü Name[ug]=مەسىلە مەلۇم قىلغۇچ كۆرۈنۈشى Name[uk]=Перегляд інструмента звітування про проблеми Name[x-test]=xxProblem Reporter Viewxx Name[zh_CN]=错误汇报视图 Name[zh_TW]=問題回報器檢視 GenericName=Problem Reporter GenericName[bg]=Съобщения за грешки GenericName[ca]=Notificador de problemes GenericName[ca@valencia]=Notificador de problemes GenericName[da]=Problemrapportering GenericName[de]=Fehlerberichte GenericName[el]=Ανταποκριτής προβλημάτων GenericName[en_GB]=Problem Reporter GenericName[es]=Notificador de problemas GenericName[et]=Probleemide teavitaja GenericName[fi]=Pulmailmoittaja GenericName[fr]=Rapporteur de problèmes GenericName[gl]=Relator de problemas GenericName[it]=Segnalazione problemi GenericName[ja]=問題レポーター GenericName[nb]=Problemmelder GenericName[nds]=Problemsöök GenericName[nl]=Probleemrapporteur GenericName[pl]=Raporty o problemach GenericName[pt]=Relato de Problemas GenericName[pt_BR]=Relato de Problemas GenericName[ru]=Проблемы GenericName[sl]=Poročevalec o težavah GenericName[sv]=Problemrapportör GenericName[tr]=Sorun Bildirici GenericName[ug]=مەسىلە مەلۇم قىلغۇچ GenericName[uk]=Сповіщення про проблеми GenericName[x-test]=xxProblem Reporterxx GenericName[zh_CN]=错误汇报 GenericName[zh_TW]=問題回報器 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevproblemreporter -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevproblemreporter X-KDE-PluginInfo-Author=Hamish Rodda X-KDE-PluginInfo-License=LGPL X-KDE-PluginInfo-Category=Utilities X-KDevelop-Mode=GUI diff --git a/plugins/projectmanagerview/kdevprojectmanagerview.desktop b/plugins/projectmanagerview/kdevprojectmanagerview.desktop index 376681c158..585f1bb12e 100644 --- a/plugins/projectmanagerview/kdevprojectmanagerview.desktop +++ b/plugins/projectmanagerview/kdevprojectmanagerview.desktop @@ -1,98 +1,98 @@ [Desktop Entry] Type=Service Exec=blubb Comment=Lets you manage the project contents. Comment[ca]=Us permet gestionar els continguts del projecte. Comment[ca@valencia]=Vos permet gestionar els continguts del projecte. Comment[da]=Lader dig håndtere projektets indhold. Comment[de]=Lässt Sie den Inhalt Ihres Projekts verwalten. Comment[el]=Σας επιτρέπει τη διαχείριση του περιεχομένου του έργου Comment[en_GB]=Lets you manage the project contents. Comment[es]=Le permite gestionar el contenido del proyecto. Comment[et]=Projektide sisu haldamine Comment[fi]=Sallii projektien sisällön hallinnan. Comment[fr]=Permet de gérer le contenu des projets. Comment[it]=Consente di gestire il contenuto del progetto. Comment[nb]=Brukes til å styre prosjektinnholdet. Comment[nds]=Dien Projektinholden plegen Comment[nl]=Laat u de projectinhoud beheren. Comment[pl]=Pozwala tobie na zarządzanie zawartością projektu. Comment[pt]=Permite-lhe gerir o conteúdo do projecto. Comment[pt_BR]=Permite-lhe gerenciar o conteúdo do projeto. Comment[sl]=Vam pomaga upravljati z vsebino projekta. Comment[sv]=Låter dig hantera projektets innehåll. Comment[tr]=Proje içindekileri yönetmenizi sağlar. Comment[ug]=قۇرۇلۇش مەزمۇنىنى باشقۇرۇڭ. Comment[uk]=Надає вам змогу керувати вмістом проектів. Comment[x-test]=xxLets you manage the project contents.xx Comment[zh_CN]=让您管理项目内容。 Comment[zh_TW]=讓您管理您的專案內容。 Name=Project Manager View Name[bg]=Преглед на редактора на проекти Name[ca]=Vista del gestor de projectes Name[ca@valencia]=Vista del gestor de projectes Name[da]=Visning af projekthåndtering Name[de]=Ansicht für Projektverwaltung Name[el]=Προβολή διαχειριστή έργου Name[en_GB]=Project Manager View Name[es]=Vista del gestor de proyectos Name[et]=Projektihalduri vaade Name[fi]=Projektihallintanäkymä Name[fr]=Vue du gestionnaire de projets Name[gl]=Vista do xestor de proxectos Name[it]=Vista gestore progetto Name[ja]=プロジェクトマネージャのビュー Name[nb]=Prosjektbehandlervisning Name[nds]=Projektpleger-Ansicht Name[nl]=Projectbeheerder-overzicht Name[pa]=ਪਰੋਜੈਕਟ ਮੈਨੇਜਰ ਝਲਕ Name[pl]=Widok menadżera projektu Name[pt]=Área do Gestor de Projectos Name[pt_BR]=Visualizador do gerenciador de projeto Name[sl]=Prikaz upravljalnika projektov Name[sv]=Projekthanteringsvy Name[tr]=Proje Yöneticisi Görünümü Name[ug]=قۇرۇلۇش باشقۇرغۇ كۆرۈنۈشى Name[uk]=Перегляд керування проектами Name[x-test]=xxProject Manager Viewxx Name[zh_CN]=工程管理器视图 Name[zh_TW]=專案管理員檢視 GenericName=Project Manager View GenericName[bg]=Преглед на редактора на проекти GenericName[ca]=Vista del gestor de projectes GenericName[ca@valencia]=Vista del gestor de projectes GenericName[da]=Visning af projekthåndtering GenericName[de]=Ansicht für Projektverwaltung GenericName[el]=Προβολή διαχειριστή έργου GenericName[en_GB]=Project Manager View GenericName[es]=Vista del gestor de proyectos GenericName[et]=Projektihalduri vaade GenericName[fi]=Projektihallintanäkymä GenericName[fr]=Vue du gestionnaire de projets GenericName[gl]=Vista do xestor de proxectos GenericName[it]=Vista gestore progetto GenericName[ja]=プロジェクトマネージャのビュー GenericName[nb]=Prosjektbehandlervisning GenericName[nds]=Projektpleger-Ansicht GenericName[nl]=Projectbeheerder-overzicht GenericName[pl]=Widok menadżera projektu GenericName[pt]=Área do Gestor de Projectos GenericName[pt_BR]=Visualizador do gerenciador de projeto GenericName[sl]=Prikaz upravljalnika projektov GenericName[sv]=Projekthanteringsvy GenericName[tr]=Proje Yönetimi Görünümü GenericName[ug]=قۇرۇلۇش باشقۇرغۇ كۆرۈنۈشى GenericName[uk]=Перегляд керування проектами GenericName[x-test]=xxProject Manager Viewxx GenericName[zh_CN]=工程管理器视图 GenericName[zh_TW]=專案管理員檢視 Icon=kdevelop ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevprojectmanagerview X-KDE-PluginInfo-Name=KDevProjectManagerView X-KDE-PluginInfo-Author=Roberto Raggi X-KDE-PluginInfo-License=LGPL X-KDE-PluginInfo-Category=Core -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/plugins/quickopen/kdevquickopen.desktop b/plugins/quickopen/kdevquickopen.desktop index ba02286704..a363217794 100644 --- a/plugins/quickopen/kdevquickopen.desktop +++ b/plugins/quickopen/kdevquickopen.desktop @@ -1,106 +1,106 @@ [Desktop Entry] Type=Service Icon=quickopen Exec=blubb Comment=This plugin allows quick access to project files and language-items like classes/functions. Comment[bg]=Тази приставка позволява бърз достъп до файловете на проекта и езиковите средства класове/уфнкции. Comment[ca]=Aquest connector permet un ràpid accés als fitxers del projecte i a elements del llenguatge com classes/funcions. Comment[ca@valencia]=Este connector permet un ràpid accés als fitxers del projecte i a elements del llenguatge com classes/funcions. Comment[da]=Dette plugin tillader hurtig adgang til projektfiler og sprogelementer som klasser/funktioner. Comment[de]=Dieses Modul bietet schnellen Zugriff auf Projektdateien und Spachelemente wie Klassen und Funktionen. Comment[el]=Το πρόσθετο αυτό επιτρέπει τη γρήγορη πρόσβαση σε αρχεία έργου και αντικείμενα γλώσσας όπως κλάσεις/συναρτήσεις. Comment[en_GB]=This plugin allows quick access to project files and language-items like classes/functions. Comment[es]=Este complemento permite un rápido acceso a los archivos del proyecto y a elementos del lenguaje, como clases y funciones. Comment[et]=See plugin pakub kiiret ligipääsu projekti failidele ja keele elementidele, näiteks klassidele ja funktsioonidele. Comment[fi]=Tämä liitännäinen sallii projektitiedostojen nopean haun ja kielialkiot kuten luokat/funktiot. Comment[fr]=Ce module externe permet un accès rapide aux fichiers de projets et aux éléments de langage comme les classes/fonctions. Comment[gl]=Este engadido permite acceder rapidamente a ficheiros de proxecto e elementos da linguaxe como clases e funcións. Comment[it]=Questa estensione permette di accedere rapidamente ai file di progetto e agli elementi del linguaggio come le classi/funzioni. Comment[nb]=Dette programtillegget gir rask tilgang til prosjektfiler og språkelementer som klasser og funksjoner. Comment[nds]=Dit Moduul stellt Fixtogriep op Projektdateien un Spraakelementen as Klassen un Funkschonen praat. Comment[nl]=Deze plugin biedt snel toegamg tot projectbestanden en taal-items zoals classes/functies. Comment[pl]=Ta wtyczka pozwala na szybki dostęp do plików projektu i elementów języka takich jak klasy i funkcje. Comment[pt]=Este 'plugin' permite um acesso rápido aos ficheiros do projecto e aos itens das linguagens, como as classes/funções. Comment[pt_BR]=Esta extensão permite o rápido acesso a arquivos de projeto e itens da linguagem como classes/funções. Comment[ru]=Это расширение позволяет получать быстрый доступ к файлам проекта и языковым объектам, таким как классы и функции. Comment[sl]=Vstavek omogoča hiter dostop do projektnih datotek in struktur kot so razredi in funkcije. Comment[sv]=Insticksprogrammet ger snabb åtkomst av projektfiler och språkobjekt som klasser och funktioner. Comment[tr]=Bu eklenti, proje dosyalarına ve sınıflar/fonksiyonlar gibi dil ögelerine hızlı erişim sağlar. Comment[uk]=За допомогою цього додатка можна пришвидшити доступ до файлів проектів і елементів мови на зразок класів або функцій. Comment[x-test]=xxThis plugin allows quick access to project files and language-items like classes/functions.xx Comment[zh_CN]=此插件允许快速访问工程文件和诸如类/函数的语言项目。 Comment[zh_TW]=此外掛程式讓您快速存取專案檔案與一些語言的項目,如類別或函式等。 Name=Quick Open Name[bg]=Бързо отваряне Name[ca]=Obertura ràpida Name[ca@valencia]=Obertura ràpida Name[cs]=Rychle otevřít Name[da]=Åbn hurtigt Name[de]=Schnellöffner Name[el]=Γρήγορο άνοιγμα Name[en_GB]=Quick Open Name[es]=Apertura rápida Name[et]=Kiiravamine Name[fi]=Pika-avaus Name[fr]=Ouverture rapide Name[ga]=Oscailt Thapa Name[gl]=Apertura rápida Name[it]=Apertura veloce Name[ja]=クイックオープン Name[nb]=Hurtigåpne Name[nds]=Fixopmaken Name[nl]=Snel openen Name[pl]=Szybkie otwarcie Name[pt]=Abertura Rápida Name[pt_BR]=Abrir rapidamente Name[ru]=Быстрый доступ Name[sl]=Hitro odpiranje Name[sv]=Snabböppna Name[tr]=Hızlı Aç Name[ug]=تېز ئېچىش Name[uk]=Швидке відкриття Name[x-test]=xxQuick Openxx Name[zh_CN]=快速打开 Name[zh_TW]=快速開啟 GenericName=Quick Open GenericName[bg]=Бързо отваряне GenericName[ca]=Obertura ràpida GenericName[ca@valencia]=Obertura ràpida GenericName[cs]=Rychle otevřít GenericName[da]=Åbn hurtigt GenericName[de]=Schnellöffner GenericName[el]=Γρήγορο άνοιγμα GenericName[en_GB]=Quick Open GenericName[es]=Apertura rápida GenericName[et]=Kiiravamine GenericName[fi]=Pika-avaus GenericName[fr]=Ouverture rapide GenericName[ga]=Oscailt Thapa GenericName[gl]=Apertura rápida GenericName[it]=Apertura veloce GenericName[ja]=クイックオープン GenericName[nb]=Hurtigåpne GenericName[nds]=Fixopmaken GenericName[nl]=Snel openen GenericName[pl]=Szybkie otwarcie GenericName[pt]=Abertura Rápida GenericName[pt_BR]=Abrir rapidamente GenericName[ru]=Быстрый доступ GenericName[sl]=Hitro odpiranje GenericName[sv]=Snabböppna GenericName[tr]=Hızlı Aç GenericName[ug]=تېز ئېچىش GenericName[uk]=Швидке відкриття GenericName[x-test]=xxQuick Openxx GenericName[zh_CN]=快速打开 GenericName[zh_TW]=快速開啟 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevquickopen -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Interfaces=org.kdevelop.IQuickOpen X-KDE-PluginInfo-Name=kdevquickopen X-KDE-PluginInfo-Author=David Nolden X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Core X-KDevelop-Mode=GUI diff --git a/plugins/reviewboard/kdevreviewboard.desktop b/plugins/reviewboard/kdevreviewboard.desktop index fd41170481..9687a754e5 100644 --- a/plugins/reviewboard/kdevreviewboard.desktop +++ b/plugins/reviewboard/kdevreviewboard.desktop @@ -1,93 +1,93 @@ [Desktop Entry] Type=Service Icon=reviewboard Exec=blubb Comment=ReviewBoard integration for KDevelop Comment[ca]=Integració de ReviewBoard pel KDevelop Comment[ca@valencia]=Integració de ReviewBoard pel KDevelop Comment[da]=Integration af ReviewBoard med KDevelop Comment[de]=ReviewBoard-Integration für KDevelop Comment[el]=Ενσωμάτωση ReviewBoard για το KDevelop Comment[en_GB]=ReviewBoard integration for KDevelop Comment[es]=Integración de ReviewBoard en KDevelop Comment[et]=ReviewBoardi lõimimine KDevelopiga Comment[fi]=ReviewBoard-integrointi KDevelop-ympäristöön Comment[fr]=Intégration de ReviewBoard pour KDevelop Comment[it]=Integrazione ReviewBoard per KDevelop Comment[nb]=ReviewBoard-integrering for KDevelop Comment[nds]=ReviewBoard-Inbinnen för KDevelop Comment[nl]=ReviewBoard-integratie voor KDevelop Comment[pl]=Integracja tablic przeglądu dla KDevelop Comment[pt]=Integração do ReviewBoard para o KDevelop Comment[pt_BR]=Integração do ReviewBoard para o KDevelop Comment[sl]=Integracija orodja ReviewBoard v KDevelop Comment[sv]=Integrering av Reviewboard i KDevelop Comment[tr]=KDevelop için Gözden Geçirme Tahtası bütünleşmesi Comment[uk]=Інтеграція ReviewBoard з KDevelop Comment[x-test]=xxReviewBoard integration for KDevelopxx Comment[zh_CN]=KDevelop 的 ReviewBoard 集成 Comment[zh_TW]=ReviewBoard 與 KDevelop 整合 Name=ReviewBoard Name[ca]=ReviewBoard Name[ca@valencia]=ReviewBoard Name[da]=ReviewBoard Name[de]=ReviewBoard Name[el]=ReviewBoard Name[en_GB]=ReviewBoard Name[es]=ReviewBoard Name[et]=ReviewBoard Name[fi]=ReviewBoard Name[fr]=ReviewBoard Name[it]=ReviewBoard Name[nb]=ReviewBoard Name[nds]=ReviewBoard Name[nl]=ReviewBoard Name[pl]=Tablica przeglądowa Name[pt]=ReviewBoard Name[pt_BR]=ReviewBoard Name[ru]=ReviewBoard Name[sl]=ReviewBoard Name[sv]=Reviewboard Name[tr]=Gözden Geçirme Tahtası Name[ug]=ReviewBoard Name[uk]=ReviewBoard Name[x-test]=xxReviewBoardxx Name[zh_CN]=ReviewBoard Name[zh_TW]=ReviewBoard GenericName=ReviewBoard GenericName[ca]=ReviewBoard GenericName[ca@valencia]=ReviewBoard GenericName[da]=ReviewBoard GenericName[de]=ReviewBoard GenericName[el]=ReviewBoard GenericName[en_GB]=ReviewBoard GenericName[es]=ReviewBoard GenericName[et]=ReviewBoard GenericName[fi]=ReviewBoard GenericName[fr]=ReviewBoard GenericName[it]=ReviewBoard GenericName[nb]=ReviewBoard GenericName[nds]=ReviewBoard GenericName[nl]=ReviewBoard GenericName[pl]=Tablica przeglądowa GenericName[pt]=ReviewBoard GenericName[pt_BR]=ReviewBoard GenericName[ru]=ReviewBoard GenericName[sl]=ReviewBoard GenericName[sv]=Reviewboard GenericName[tr]=Gözden Geçirme Tahtası GenericName[ug]=ReviewBoard GenericName[uk]=ReviewBoard GenericName[x-test]=xxReviewBoardxx GenericName[zh_CN]=ReviewBoard GenericName[zh_TW]=ReviewBoard ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevreviewboard -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDE-PluginInfo-Name=kdevreviewboard X-KDE-PluginInfo-Author=Aleix Pol X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Utilities X-KDevelop-Mode=GUI X-KDevelop-Interfaces=org.kdevelop.IPatchExporter diff --git a/plugins/snippet/kdevsnippet.desktop b/plugins/snippet/kdevsnippet.desktop index 74d1b7458e..f87c969621 100644 --- a/plugins/snippet/kdevsnippet.desktop +++ b/plugins/snippet/kdevsnippet.desktop @@ -1,101 +1,101 @@ [Desktop Entry] Type=Service Exec=blubb Icon=edit-copy Comment=This plugin allows to store code snippets and insert them into open files Comment[bg]=Тази приставка позволява съхраняването на временни фрагменти от програмни низове и вмъкването им в отворени файлове Comment[ca]=Aquest connector permet desar retalls de codi i inserir-los a fitxers oberts Comment[ca@valencia]=Este connector permet alçar retalls de codi i inserir-los a fitxers oberts Comment[da]=Dette plugin tillader at gemme kodestumper og indsætte dem i åbne filer Comment[de]=Dieses Modul bietet die Möglichkeit, Textbausteine zu speichern und in geöffnete Dateien einzufügen. Comment[el]=Αυτό το πρόσθετο σας επιτρέπει να αποθηκεύσετε δείγματα κώδικα και να τα εισάγετε σε ανοιχτά αρχεία Comment[en_GB]=This plugin allows to store code snippets and insert them into open files Comment[es]=Este complemento le permite almacenar fragmentos de código e insertarlos en los archivos abiertos Comment[et]=See plugin võimaldab salvestada koodijuppe ja lisada neid avatud failidesse Comment[fi]=Tämä liitännäinen sallii tallentaa koodikatkelmia ja lisätä ne avoimiin tiedostoihin Comment[fr]=Ce module externe permet d'enregistrer des fragments de code et de les insérer dans les fichiers ouverts Comment[gl]=Este engadido permite gardar fragmentos de código e inserilos en ficheiros abertos Comment[it]=Questa estensione permette di memorizzare i frammenti di codice e inserirli in file aperti Comment[nb]=Dette programtillegget kan lagre kodebiter og sette dem inn i åpne filer Comment[nds]=Dit Moduul wohrt Kodesnippels un föögt se na opmaakt Dateien in Comment[nl]=Deze plugin biedt het opslaan van codeknipsels en voegt ze in in open bestanden Comment[pl]=Ta wtyczka umożliwia zapisanie wstawek kodu i wstawianie ich później otwartych plików Comment[pt]=Este 'plugin' permite-lhe guardar excertos de código e inseri-los nos ficheiros abertos Comment[pt_BR]=Esta extensão permite armazenar trechos de código e inseri-los em arquivos abertos Comment[ru]=Это расширение позволяет хранить фрагменты кода и вставлять их в открытые файлы. Comment[sl]=Vstavek omogoča shranjevanje delčkov kode in vstavljanje delčkov v odprte datoteke Comment[sv]=Insticksprogrammet gör det möjligt att lagra kodsnuttar och infoga dem i öppna filer Comment[tr]=Bu eklenti, kod parçacıklarını depolamayı ve bu kod parçacıklarını açık olan dosyalara eklemeyi sağlar Comment[uk]=За допомогою цього додатка можна зберігати фрагменти коду і вставляти їх до відкритих файлів Comment[x-test]=xxThis plugin allows to store code snippets and insert them into open filesxx Comment[zh_CN]=此插件允许存储代码片断并插入到打开的文件中去 Comment[zh_TW]=此外掛程式允許儲存程式碼片段,並將它們插入開啟的檔案中 Name=Code Snippets Support Name[bg]=Поддръжка на отрязъци от код Name[ca]=Implementació de retalls de codi Name[ca@valencia]=Implementació de retalls de codi Name[da]=Understøttelse af kodestumper Name[de]=Unterstützung für Textbausteine Name[el]=Υποστήριξη αποσπασμάτων κώδικα Name[en_GB]=Code Snippets Support Name[es]=Implementación de fragmentos de código Name[et]=Koodijuppide toetus Name[fi]=Koodikatkelmatuki Name[fr]=Prise en charge des fragments de code Name[gl]=Soporte de fragmentos de código Name[it]=Supporto frammenti di codice Name[ja]=コードスニペットのサポート Name[nb]=Støtte for kodebiter Name[nds]=Kodesnippels-Ünnerstütten Name[nl]=Ondersteuning voor codeknipsels Name[pa]=ਕੋਡ ਸਨਿੱਪਟ ਸਹਿਯੋਗ Name[pl]=Obsługa wstawek kodu Name[pt]=Suporte para Excertos de Código Name[pt_BR]=Suporte a trechos de código Name[sl]=Podpora za delčke kode Name[sv]=Stöd för kodsnuttar Name[tr]=Kod Parçacıkları Desteği Name[ug]=كود پۇرۇچلىرىنى قوللاش Name[uk]=Підтримка фрагментів коду Name[x-test]=xxCode Snippets Supportxx Name[zh_CN]=代码片断支持 Name[zh_TW]=程式碼片段支援 GenericName=Code Snippets Support GenericName[bg]=Поддръжка на отрязъци от код GenericName[ca]=Implementació de retalls de codi GenericName[ca@valencia]=Implementació de retalls de codi GenericName[da]=Understøttelse af kodestumper GenericName[de]=Unterstützung für Textbausteine GenericName[el]=Υποστήριξη αποσπασμάτων κώδικα GenericName[en_GB]=Code Snippets Support GenericName[es]=Implementación de fragmentos de código GenericName[et]=Koodijuppide toetus GenericName[fi]=Koodikatkelmatuki GenericName[fr]=Prise en charge des fragments de code GenericName[gl]=Soporte de fragmentos de código GenericName[it]=Supporto frammenti di codice GenericName[ja]=コードスニペットのサポート GenericName[nb]=Støtte for kodebiter GenericName[nds]=Kodesnippels-Ünnerstütten GenericName[nl]=Ondersteuning voor codeknipsels GenericName[pl]=Obsługa wstawek kodu GenericName[pt]=Suporte para Excertos de Código GenericName[pt_BR]=Suporte a trechos de código GenericName[sl]=Podpora za delčke kode GenericName[sv]=Stöd för kodsnuttar GenericName[tr]=Kod Parçacıkları Desteği GenericName[ug]=كود پۇرۇچلىرىنى قوللاش GenericName[uk]=Підтримка фрагментів коду GenericName[x-test]=xxCode Snippets Supportxx GenericName[zh_CN]=代码片断支持 GenericName[zh_TW]=程式碼片段支援 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevsnippet X-KDE-PluginInfo-Name=kdevsnippet X-KDE-PluginInfo-Author=Robert Gruber, Milian Wolff X-KDE-PluginInfo-Version=0.75 X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Utilities -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/plugins/standardoutputview/kdevstandardoutputview.desktop b/plugins/standardoutputview/kdevstandardoutputview.desktop index 2ca76a2e2e..e317fbb129 100644 --- a/plugins/standardoutputview/kdevstandardoutputview.desktop +++ b/plugins/standardoutputview/kdevstandardoutputview.desktop @@ -1,98 +1,98 @@ [Desktop Entry] Type=Service Name=Output View Name[bg]=Преглед на резултата Name[ca]=Vista de la sortida Name[ca@valencia]=Vista de l'eixida Name[cs]=Pohled na výstup Name[da]=Visning af output Name[de]=Ansicht für Ausgaben Name[el]=Προβολή αποτελεσμάτων Name[en_GB]=Output View Name[es]=Vista de la salida Name[et]=Väljundivaade Name[fi]=Tulostenäkymä Name[fr]=Vue de la sortie Name[ga]=Amharc Aschurtha Name[gl]=Vista da saída Name[it]=Vista output Name[ja]=出力ビュー Name[nb]=Utdata-visning Name[nds]=Utgaavansicht Name[nl]=Uitvoerweergave Name[pl]=Widok wyjścia Name[pt]=Área de Resultados Name[pt_BR]=Área de Resultados Name[ru]=Просмотр вывода Name[sl]=Prikaz izhoda Name[sv]=Utmatningsvy Name[tr]=Çıktı Görünümü Name[ug]=چىقىرىش كۆرۈنۈشى Name[uk]=Перегляд виводу Name[x-test]=xxOutput Viewxx Name[zh_CN]=输出视图 Name[zh_TW]=輸出檢視 GenericName=Output View GenericName[bg]=Преглед на резултата GenericName[ca]=Vista de la sortida GenericName[ca@valencia]=Vista de l'eixida GenericName[cs]=Pohled na výstup GenericName[da]=Visning af output GenericName[de]=Ansicht für Ausgaben GenericName[el]=Προβολή αποτελεσμάτων GenericName[en_GB]=Output View GenericName[es]=Vista de la salida GenericName[et]=Väljundivaade GenericName[fi]=Tulostenäkymä GenericName[fr]=Vue de la sortie GenericName[ga]=Amharc Aschurtha GenericName[it]=Vista output GenericName[ja]=出力ビュー GenericName[nb]=Utdata-visning GenericName[nds]=Utgaavansicht GenericName[nl]=Uitvoerweergave GenericName[pl]=Widok wyjścia GenericName[pt]=Área de Resultados GenericName[pt_BR]=Área de Resultados GenericName[ru]=Просмотр вывода GenericName[sl]=Prikaz izhoda GenericName[sv]=Utmatningsvy GenericName[tr]=Çıktı Görünümü GenericName[ug]=چىقىرىش كۆرۈنۈشى GenericName[uk]=Панель виводу даних GenericName[x-test]=xxOutput Viewxx GenericName[zh_CN]=输出视图 GenericName[zh_TW]=輸出檢視 Comment=Provides a text output toolview for other plugins to use, to show things like compiler messages. Comment[ca]=Proporciona una vista d'eina de sortida de text per a utilitzar en altres connectors, per a visualitzar missatges del compilador, per exemple. Comment[ca@valencia]=Proporciona una vista d'eina d'eixida de text per a utilitzar en altres connectors, per a visualitzar missatges del compilador, per exemple. Comment[da]=Giver en værktøjsvisning til tekst-output som andre plugins kan bruge til at vise ting som f.eks. meddelelser fra oversætteren. Comment[de]=Stellt eine Textausgabe für andere Module zur Verfügung, um Dinge wie Compiler-Nachrichten anzuzeigen. Comment[el]=Παρέχει ένα εργαλείο προβολής κειμένου στην έξοδο για χρήση από άλλα πρόσθετα, για την εμφάνιση μηνυμάτων όπως τα μηνύματα του μεταγλωττιστή. Comment[en_GB]=Provides a text output toolview for other plugins to use, to show things like compiler messages. Comment[es]=Proporciona una vista de salida de texto que pueden usar otros complementos para mostrar cosas como mensajes del compilador. Comment[et]=Teistele pluginatele kättesaadav tekstiväljundi tööriistavaade, mis näitab kompilaatori teateid ja muud. Comment[fi]=Tarjoaa tekstitulostetyökalunäkymän muille liitännäisille käytettäväksi, näyttää asiat kuin kääntäjäviestit. Comment[fr]=Fournit une vue des outils de sortie en mode texte pour à utiliser pour afficher des éléments comme les messages du compilateur. Comment[it]=Fornisce una vista strumenti testuale per le estensioni da usare, per mostrare le cose come i messaggi del compilatore. Comment[nb]=Viser en tekstlig verktøyvisning av utdata som andre programtillegg kan bruke, for å vise slikt som kompilatormeldinger. Comment[nds]=Stellt en Textutgaav för den Bruuk mit anner Modulen praat. Wiest Saken as a.B. Kompilerermellen. Comment[nl]=Levert tekstuitvoer van hulpmiddelen voor andere te gebruiken plugins, om zaken te tonen zoals berichten van compilers. Comment[pl]=Zapewnia widok narzędzia wyjścia tekstu dla wykorzystania w innych wtyczkach, aby pokazać rzeczy takie jak komunikaty kompilatora. Comment[pt]=Oferece uma área de resultados de texto para os outros 'plugins' usarem, de modo a mostrar coisas como as mensagens do compilador. Comment[pt_BR]=Oferece uma área de resultados de texto para os outros plugins usarem, de modo a mostrar coisas como as mensagens do compilador. Comment[sl]=Drugim vstavkom ponuja okno za prikaz besedilnega izhoda, na primer za sporočila razhroščevalnika. Comment[sv]=Tillhandahåller en verktygsvy för textutmatning som andra insticksprogram kan använda för att visa saker som kompilatormeddelanden. Comment[tr]=Derleyici iletileri gibi şeyleri göstermek amacıyla,diğer eklentilerin kullanması için araç görünümünde bir metin çıkışı sağlar. Comment[uk]=Забезпечує роботу панелі показу текстових даних інших додатків, зокрема попереджень компілятора. Comment[x-test]=xxProvides a text output toolview for other plugins to use, to show things like compiler messages.xx Comment[zh_CN]=提供让其它插件使用的文本输出工具视图,以便显示诸如编译器消息的信息。 Comment[zh_TW]=提供文字輸出工具檢視給其它外掛程式使用,顯示一些像是編譯器的訊息等等。 Icon=gear ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevstandardoutputview X-KDE-PluginInfo-Name=KDevStandardOutputView X-KDE-PluginInfo-Category=Core -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Interfaces=org.kdevelop.IOutputView X-KDevelop-Mode=GUI diff --git a/plugins/subversion/kdevsubversion.desktop b/plugins/subversion/kdevsubversion.desktop index e3ecaa5dc2..c367b48256 100644 --- a/plugins/subversion/kdevsubversion.desktop +++ b/plugins/subversion/kdevsubversion.desktop @@ -1,109 +1,109 @@ [Desktop Entry] Type=Service Icon=subversion Exec=blubb Comment=This plugin integrates subversion to KDevelop. Comment[bg]=Тази приставка вгражда subversion в KDevelop. Comment[ca]=Aquest connector integra subversion en KDevelop. Comment[ca@valencia]=Este connector integra subversion en KDevelop. Comment[da]=Dette plugin integrerer subversion med KDevelop. Comment[de]=Dieses Modul integriert Subversion in KDevelop. Comment[el]=Αυτό το πρόσθετο ενσωματώνει το subversion στο KDevelop Comment[en_GB]=This plugin integrates subversion to KDevelop. Comment[es]=Este complemento integra «Subversion» en KDevelop. Comment[et]=See plugin lõimib Subversioni KDeveloppi. Comment[fi]=Tämä liitännäinen integroi subversion-ohjelman KDevelop-ympäristöön Comment[fr]=Ce module externe intègre Subversion à KDevelop. Comment[gl]=Este engadido integra subversion en KDevelop. Comment[it]=Questa estensione integra subversion in KDevelop. Comment[ja]=このプラグインは Subversion を KDevelop に統合します Comment[lv]=Šis spraudnis integrē SVN iekš KDevelop. Comment[nb]=Dette programtillegget integrerer subversion i KDevelop. Comment[nds]=Dit Moduul bett Subversion na KDevelop in Comment[nl]=Deze plugin integreert subversion in KDevelop. Comment[pl]=Ta wtyczka udostępnia Subversion w KDevelopie Comment[pt]=Este 'plugin' integra o Subversion com o KDevelop. Comment[pt_BR]=Esta extensão integra o Subversion ao KDevelop. Comment[ro]=Acest modul integrează subversion în KDevelop Comment[ru]=Это расширение добавляет поддержку работы с Subversion в KDevelop Comment[sl]=Vstavek v KDevelop integrira Subversion. Comment[sv]=Insticksprogrammet integrerar Subversion i KDevelop Comment[tr]=Bu eklenti Subversion ile KDevelop uygulamasını bütünleştirir Comment[uk]=За допомогою цього додатка можна інтегрувати subversion (SVN) до KDevelop. Comment[x-test]=xxThis plugin integrates subversion to KDevelop.xx Comment[zh_CN]=此插件对 KDevelop 整合 subversion。 Comment[zh_TW]=此外掛程式將 subversion 整合進 KDevelop。 Name=Subversion Support Name[bg]=Поддръжка на Subversion Name[ca]=Implementació de Subversion Name[ca@valencia]=Implementació de Subversion Name[da]=Subversion-understøttelse Name[de]=Subversion-Unterstützung Name[el]=Υποστήριξη Subversion Name[en_GB]=Subversion Support Name[es]=Implementación de Subversion Name[et]=Subversioni toetus Name[fi]=Subversion-tuki Name[fr]=Prise en charge de Subversion Name[gl]=Soporte de Subversion Name[it]=Supporto subversion Name[ja]=Subversion サポート Name[nb]=Støtte for subversion Name[nds]=Subversion-Ünnerstütten Name[nl]=Ondersteuning van subversion Name[pa]=ਸਬਵਰਜਨ ਸਹਿਯੋਗ Name[pl]=Obsługa Subversion Name[pt]=Suporte para Subversion Name[pt_BR]=Suporte ao Subversion Name[ru]=Поддержка Subversion Name[sl]=Podpora za Subversion Name[sv]=Stöd för Subversion Name[tr]=Subversion Desteği Name[ug]=Subversion قوللىشى Name[uk]=Підтримка Subversion Name[x-test]=xxSubversion Supportxx Name[zh_CN]=Subversion 支持 Name[zh_TW]=Subversion 支援 GenericName=Version Control Support GenericName[bg]=Поддръжка на управление на версиите GenericName[ca]=Implementació del control de versions GenericName[ca@valencia]=Implementació del control de versions GenericName[cs]=Podpora správy verzí GenericName[da]=Understøttelse af versionstyring GenericName[de]=Unterstützung für Versionsverwaltungssysteme GenericName[el]=Υποστήριξη Version Control GenericName[en_GB]=Version Control Support GenericName[es]=Implementación de Control de Versiones GenericName[et]=Versioonihalduse toetus GenericName[fi]=Versionhallintatuki GenericName[fr]=Prise en charge du contrôle de versions GenericName[gl]=Soporte de sistemas de versións GenericName[it]=Supporto controllo versione GenericName[ja]=バージョン管理のサポート GenericName[nb]=Støtte for versjonskontroll GenericName[nds]=Verschoonkuntrull-Ünnerstütten GenericName[nl]=Ondersteuning voor versiecontrole GenericName[pl]=Obsługa kontroli wersji GenericName[pt]=Suporte ao Controlo de Versões GenericName[pt_BR]=Suporte a controle de versão GenericName[ru]=Поддержка систем контроля версий GenericName[sl]=Podpora za nadzor različic GenericName[sv]=Stöd för versionskontroll GenericName[tr]=Sürüm Kontrol Desteği GenericName[ug]=نەشر باشقۇرۇش قوللىشى GenericName[uk]=Підтримка керування версіями GenericName[x-test]=xxVersion Control Supportxx GenericName[zh_CN]=版本控制支持 GenericName[zh_TW]=版本控制支援 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevsubversion X-KDE-PluginInfo-Name=kdevsubversion X-KDE-PluginInfo-Author=Dukju Ahn X-KDE-PluginInfo-Version=0.1 X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Version Control -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Interfaces=org.kdevelop.IBasicVersionControl X-KDevelop-IRequired=org.kdevelop.IOutputView X-KDevelop-Mode=GUI diff --git a/plugins/vcschangesview/kdevvcschangesview.desktop b/plugins/vcschangesview/kdevvcschangesview.desktop index 3bd61e3f12..2db3b5c892 100644 --- a/plugins/vcschangesview/kdevvcschangesview.desktop +++ b/plugins/vcschangesview/kdevvcschangesview.desktop @@ -1,70 +1,70 @@ [Desktop Entry] Type=Service Comment=This plugin provides integration between the projects and their VCS infrastructure Comment[de]=Dieses Modul stellt eine Integration zwischen Projekten und ihrer VCS-Infrastruktur her. Comment[el]=Το πρόσθετο αυτό παρέχει ολοκλήρωση ανάμεσα στα έργα και της VCS υποδομής τους Comment[es]=Este complemento proporciona integración entre los proyectos y su infraestructura VCS Comment[et]=See plugin võimaldab lõimida projektid ja nende versioonihalduse infrastruktuuri Comment[fr]=Ce module externe fournit une intégration entre les projets et leur infrastructure VCS Comment[it]=Questa estensione fornisce integrazione tra i progetti e la loro infrastruttura VCS Comment[nb]=Dette programtillegget gir integrering mellom prosjektene og deres VCS infrastruktur Comment[nl]=Deze plugin geeft integratie tussen de projecten en hun VCS-infrastructuur Comment[pl]=Wtyczka ta zapewnia integracje pomiędzy projektami i ich infrastrukturą systemu kontroli wersji (VCS) Comment[pt]=Este 'plugin' oferece a integração entre os projectos e a sua infra-estrutura de SCV Comment[pt_BR]=Este plugin fornece a integração entre os projetos e sua infraestrutura de VCS Comment[sv]=Det här insticksprogrammet tillhandahåller integrering mellan projekten och deras infrastruktur för versionskontroll Comment[tr]=Bu eklenti, projeler ile projelerin sürüm kontrol sistemi altyapıları arasında bütünleşme sağlar Comment[uk]=Цей додаток забезпечує інтеграцію між проектами та їхньою структурою системи керування версіями Comment[x-test]=xxThis plugin provides integration between the projects and their VCS infrastructurexx Comment[zh_CN]=此插件提供工程和它们的代码管理系统的集成 Comment[zh_TW]=此外掛程式提供專案與它們之間版本控制系統基礎間的整合 Name=VCS Integration Name[bg]=Интеграция с VCS Name[de]=VCS-Integration Name[el]=VCS ολοκλήρωση Name[es]=Integración VCS Name[et]=Versioonihalduse lõimimine Name[fr]=Intégration de VCS Name[it]=Integrazione VCS Name[nb]=VCS-integrering Name[nl]=VCS-integratie Name[pl]=Integracja VCS Name[pt]=Integração com o SCV Name[pt_BR]=Integração com o VCS Name[sv]=Integrering av versionskontroll Name[tr]=Sürüm Kontrol Sistemi Bütünleşmesi Name[ug]=VCS يۈرۈشلەشتۈرۈلۈشى Name[uk]=Інтеграція з системами керування версіями Name[x-test]=xxVCS Integrationxx Name[zh_CN]=VCS 工程集成 Name[zh_TW]=版本控制系統整合 GenericName=VCS Integration GenericName[bg]=Интеграция с VCS GenericName[de]=VCS-Integration GenericName[el]=VCS ολοκλήρωση GenericName[es]=Integración VCS GenericName[et]=Versioonihalduse lõimimine GenericName[fr]=Intégration de VCS GenericName[it]=Integrazione VCS GenericName[nb]=VCS-integrering GenericName[nl]=VCS-integratie GenericName[pl]=Integracja VCS GenericName[pt]=Integração com o SCV GenericName[pt_BR]=Integração com o VCS GenericName[sv]=Integrering av versionskontroll GenericName[tr]=Sürüm Kontrol Sistemi Bütünleşmesi GenericName[ug]=VCS يۈرۈشلەشتۈرۈلۈشى GenericName[uk]=Інтеграція з системами керування версіями GenericName[x-test]=xxVCS Integrationxx GenericName[zh_CN]=VCS 工程集成 GenericName[zh_TW]=版本控制系統整合 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevvcschangesviewplugin X-KDE-PluginInfo-Name=kdevvcschangesviewplugin X-KDE-PluginInfo-Author=Aleix Pol X-KDE-PluginInfo-Email=aleixpol@kde.org X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-Category=Version Control -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Mode=GUI diff --git a/shell/kross/examples/bzrkdevelop/kdevbzr.desktop b/shell/kross/examples/bzrkdevelop/kdevbzr.desktop index de09290c57..608adbfebf 100644 --- a/shell/kross/examples/bzrkdevelop/kdevbzr.desktop +++ b/shell/kross/examples/bzrkdevelop/kdevbzr.desktop @@ -1,109 +1,109 @@ [Desktop Entry] Type=Service Exec=blubb Comment=This plugin integrates Bazaar to KDevelop Comment[bg]=Тази приставка вгражда Bazaar в KDevelop Comment[ca]=Aquest connector integra Bazaar en KDevelop Comment[ca@valencia]=Este connector integra Bazaar en KDevelop Comment[da]=Dette plugin integrerer Bazaar med KDevelop Comment[de]=Dieses Modul integriert Bazaar in KDevelop. Comment[el]=Αυτό το πρόσθετο ενσωματώνει το Bazaar στο KDevelop Comment[en_GB]=This plugin integrates Bazaar to KDevelop Comment[es]=Este complemento integra Bazaar en KDevelop Comment[et]=See plugin lõimib Bazaari KDeveloppi Comment[fi]=Tämä liitännäinen integroi Bazaarin KDevelop-ympäristöön Comment[fr]=Ce module externe intègre Bazaar à KDevelop Comment[gl]=Este engadido integra Bazaar con KDevelop Comment[it]=Questa estensione integra Bazaar in KDevelop Comment[ja]=このプラグインは Bazaar を KDevelop に統合します Comment[lv]=Šis spraudnis integrē Bazaar iekš KDevelop Comment[nb]=Dette programtillegget integrerer Bazaar i KDevelop Comment[nds]=Dit Moduul bett Bazaar na KDevelop in Comment[nl]=Deze plugin integreert Bazaar in KDevelop Comment[pl]=Ta wtyczka udostępnia Bazaar w KDevelopie Comment[pt]=Este 'plugin' integra o Bazaar no KDevelop Comment[pt_BR]=Esta extensão integra o Bazaar ao KDevelop Comment[ro]=Acest modul integrează Bazaar în KDevelop Comment[ru]=Это расширение добавляет поддержку работы с Bazaar в KDevelop Comment[sl]=Vstavek v KDevelop integrira Bazaar Comment[sv]=Insticksprogrammet integrerar Bazaar i KDevelop Comment[tr]=Bu eklenti Bazaar uygulamasını KDevelop ile bütünleştirir Comment[ug]=بۇ قىستۇرما Bazaar نى KDevelop قا يۈرۈشلەشتۈرىدۇ Comment[uk]=За допомогою цього додатка можна інтегрувати Bazaar до KDevelop Comment[x-test]=xxThis plugin integrates Bazaar to KDevelopxx Comment[zh_CN]=此插件对 KDevelop 整合 Bazaar Comment[zh_TW]=此外掛程式將 Bazaar 整合進 KDevelop 內 Name=Bazaar Support Name[bg]=Поддръжка на Bazaar Name[ca]=Implementació de Bazaar Name[ca@valencia]=Implementació de Bazaar Name[cs]=Podpora Bazaar Name[da]=Bazaar-understøttelse Name[de]=Bazaar-Unterstützung Name[el]=Υποστήριξη Bazaar Name[en_GB]=Bazaar Support Name[es]=Implementación de Bazaar Name[et]=Bazaari toetus Name[fi]=Bazaar-tuki Name[fr]=Prise en charge de Bazaar Name[ga]=Tacaíocht Bazaar Name[it]=Supporto Bazaar Name[ja]=Bazaar サポート Name[nb]=Bazaar-støtte Name[nds]=Bazaar-Ünnerstütten Name[nl]=Ondersteuning van Bazaar Name[nn]=DPMS-støtte Name[pl]=Obsługa Bazaar Name[pt]=Suporte para Bazaar Name[pt_BR]=Suporte a Bazaar Name[ru]=Поддержка Bazaar Name[sl]=Podpora za Bazaar Name[sv]=Bazaar-stöd Name[tr]=Bazaar Desteği Name[ug]=Bazaar قوللىشى Name[uk]=Підтримка Bazaar Name[x-test]=xxBazaar Supportxx Name[zh_CN]=Bazaar 支持 Name[zh_TW]=Bazaar 支援 GenericName=Version Control Support GenericName[bg]=Поддръжка на управление на версиите GenericName[ca]=Implementació del control de versions GenericName[ca@valencia]=Implementació del control de versions GenericName[cs]=Podpora správy verzí GenericName[da]=Understøttelse af versionstyring GenericName[de]=Unterstützung für Versionsverwaltungssysteme GenericName[el]=Υποστήριξη Version Control GenericName[en_GB]=Version Control Support GenericName[es]=Implementación de Control de Versiones GenericName[et]=Versioonihalduse toetus GenericName[fi]=Versionhallintatuki GenericName[fr]=Prise en charge du contrôle de versions GenericName[gl]=Soporte de sistemas de versións GenericName[it]=Supporto controllo versione GenericName[ja]=バージョン管理のサポート GenericName[nb]=Støtte for versjonskontroll GenericName[nds]=Verschoonkuntrull-Ünnerstütten GenericName[nl]=Ondersteuning voor versiecontrole GenericName[pl]=Obsługa kontroli wersji GenericName[pt]=Suporte ao Controlo de Versões GenericName[pt_BR]=Suporte a controle de versão GenericName[ru]=Поддержка систем контроля версий GenericName[sl]=Podpora za nadzor različic GenericName[sv]=Stöd för versionskontroll GenericName[tr]=Sürüm Kontrol Desteği GenericName[ug]=نەشر باشقۇرۇش قوللىشى GenericName[uk]=Підтримка керування версіями GenericName[x-test]=xxVersion Control Supportxx GenericName[zh_CN]=版本控制支持 GenericName[zh_TW]=版本控制支援 ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevbzr/kdevbzr.py X-KDE-PluginInfo-Name=kdevbzr X-KDE-PluginInfo-Author=Aleix Pol X-KDE-PluginInfo-Version=0.01 X-KDE-PluginInfo-License=GPL -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Properties=GlobalFileManagement X-KDevelop-PluginType=Kross X-KDevelop-Interfaces=org.kdevelop.IBasicVersionControl, IDistributedVersionControl diff --git a/shell/kross/examples/compileone/kdevcompileone.desktop b/shell/kross/examples/compileone/kdevcompileone.desktop index b9c966dc17..eb4ea34ee0 100644 --- a/shell/kross/examples/compileone/kdevcompileone.desktop +++ b/shell/kross/examples/compileone/kdevcompileone.desktop @@ -1,109 +1,109 @@ [Desktop Entry] Type=Service Exec=blubb Comment=Compile a file Comment[bg]=Компилиране на файл Comment[ca]=Compila un fitxer Comment[ca@valencia]=Compila un fitxer Comment[cs]=Zkompilovat soubor Comment[da]=Oversæt en fil Comment[de]=Eine Datei kompilieren Comment[el]=Μεταγλώττιση ενός αρχείου Comment[en_GB]=Compile a file Comment[es]=Compilar un archivo Comment[et]=Faili kompileerimine Comment[fi]=Käännä tiedosto Comment[fr]=Compiler un fichier Comment[gl]=Compilar un ficheiro Comment[it]=Compila un file Comment[ja]=単一のファイルをコンパイルします Comment[lv]=Kompilē failu Comment[nb]=Kompiler en fil Comment[nds]=En Datei kompileren Comment[nl]=Een bestand compileren Comment[pa]=ਇੱਕ ਫਾਇਲ ਕੰਪਾਇਲ ਕਰੋ Comment[pl]=Kompiluj plik Comment[pt]=Compilar um ficheiro Comment[pt_BR]=Compilar um arquivo Comment[ro]=Compilează un fișier Comment[ru]=Скомпилировать файл Comment[sl]=Prevedi datoteko Comment[sv]=Kompilera en fil Comment[tr]=Bir dosya derle Comment[ug]=بىر ھۆججەتنى يۇغۇرىدۇ Comment[uk]=Компіляція файла Comment[x-test]=xxCompile a filexx Comment[zh_CN]=编译文件 Comment[zh_TW]=編譯檔案 Name=CompileOne Name[bg]=CompileOne Name[ca]=CompileOne Name[ca@valencia]=CompileOne Name[da]=CompileOne Name[de]=CompileOne Name[el]=CompileOne Name[en_GB]=CompileOne Name[es]=CompileOne Name[et]=CompileOne Name[fi]=CompileOne Name[fr]=CompileOne Name[gl]=CompileOne Name[it]=CompileOne Name[ja]=CompileOne Name[nb]=KompilerEn Name[nds]=CompileOne Name[nl]=CompileOne Name[pl]=Kompiluj jeden Name[pt]=Compilação Única Name[pt_BR]=CompileOne Name[ro]=CompileOne Name[ru]=CompileOne Name[sl]=CompileOne Name[sv]=Kompilera en Name[tr]=CompileOne Name[ug]=CompileOne Name[uk]=CompileOne Name[x-test]=xxCompileOnexx Name[zh_CN]=CompileOne Name[zh_TW]=CompileOne GenericName=CompileOne GenericName[bg]=CompileOne GenericName[ca]=CompileOne GenericName[ca@valencia]=CompileOne GenericName[da]=CompileOne GenericName[de]=CompileOne GenericName[el]=CompileOne GenericName[en_GB]=CompileOne GenericName[es]=CompileOne GenericName[et]=CompileOne GenericName[fi]=CompileOne GenericName[fr]=CompileOne GenericName[gl]=CompileOne GenericName[it]=CompileOne GenericName[ja]=CompileOne GenericName[nb]=KompilerEn GenericName[nds]=CompileOne GenericName[nl]=CompileOne GenericName[pl]=Kompiluj jeden GenericName[pt]=Compilação Única GenericName[pt_BR]=CompileOne GenericName[ro]=CompileOne GenericName[ru]=Индивидуальная компиляция GenericName[sl]=CompileOne GenericName[sv]=Kompilera en GenericName[tr]=Bir Dosya Derle GenericName[ug]=CompileOne GenericName[uk]=CompileOne GenericName[x-test]=xxCompileOnexx GenericName[zh_CN]=编译一个 GenericName[zh_TW]=CompileOne ServiceTypes=KDevelop/Plugin X-KDE-Library=CompileOne/CompileOne.py X-KDE-PluginInfo-Name=CompileOne X-KDE-PluginInfo-Author=Aleix Pol X-KDE-PluginInfo-Version=0.01 X-KDE-PluginInfo-License=GPL -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-PluginType=Kross X-KDevelop-Mode=GUI diff --git a/shell/kross/examples/guiexample/kdevguiexample.desktop b/shell/kross/examples/guiexample/kdevguiexample.desktop index ec5b684914..b18b7e609a 100644 --- a/shell/kross/examples/guiexample/kdevguiexample.desktop +++ b/shell/kross/examples/guiexample/kdevguiexample.desktop @@ -1,111 +1,111 @@ [Desktop Entry] Type=Service Exec=blubb Comment=GUI Example Comment[bg]=Графичен пример Comment[ca]=Exemple d'IGU Comment[ca@valencia]=Exemple d'IGU Comment[da]=Eksempel på brugerflade Comment[de]=GUI-Beispiel Comment[el]=Παράδειγμα GUI Comment[en_GB]=GUI Example Comment[es]=Ejemplo de interfaz gráfica Comment[et]=GUI näidis Comment[fi]=Graafisen käyttöliittymän esimerkki Comment[fr]=Exemple d'interface graphique Comment[gl]=Exemplo de GUI Comment[it]=Esempio GUI Comment[ja]=GUI の例 Comment[lv]=GUI piemērs Comment[nb]=GUI-eksempel Comment[nds]=Böversiet-Bispill Comment[nl]=GUI-voorbeeld Comment[pa]=GUI ਉਦਾਹਰਨ Comment[pl]=Przykład GUI Comment[pt]=Exemplo GUI Comment[pt_BR]=Exemplo de GUI Comment[ro]=Exemplu GUI Comment[ru]=Пример графического интерфейса пользователя Comment[sl]=Primer grafičnega vmesnika Comment[sv]=Exempel på grafiskt användargränssnitt Comment[tr]=Grafiksel Kullanıcı Arayüzü Örneği Comment[ug]=كۆرۈنمەيۈز مىساللىرى Comment[uk]=Приклад графічного інтерфейсу Comment[x-test]=xxGUI Examplexx Comment[zh_CN]=GUI 示例 Comment[zh_TW]=編譯檔案 Name=GUIExample Name[bg]=GUIExample Name[ca]=GUIExample Name[ca@valencia]=GUIExample Name[da]=GUIExample Name[de]=GUIExample Name[el]=GUIExample Name[en_GB]=GUIExample Name[es]=GUIExample Name[et]=GUIExample Name[fi]=GUI-esimerkki Name[fr]=GUIExample Name[gl]=GUIExample Name[it]=GUIExample Name[ja]=GUIExample Name[nb]=GUIExample Name[nds]=GUIExample Name[nl]=GUIExample Name[pa]=GUIExample Name[pl]=Przykład GUI Name[pt]=Exemplo GUI Name[pt_BR]=GUIExample Name[ro]=ExempluGUI Name[ru]=GUIExample Name[sl]=GUIExample Name[sv]=Exempel på grafiskt användargränssnitt Name[tr]=Grafiksel Kullanıcı Arayüzü Örneği Name[ug]=GUIExample Name[uk]=GUIExample Name[x-test]=xxGUIExamplexx Name[zh_CN]=GUIExample Name[zh_TW]=GUIExample GenericName=GUIExample GenericName[bg]=GUIExample GenericName[ca]=GUIExample GenericName[ca@valencia]=GUIExample GenericName[da]=GUIExample GenericName[de]=GUIExample GenericName[el]=GUIExample GenericName[en_GB]=GUIExample GenericName[es]=GUIExample GenericName[et]=GUIExample GenericName[fi]=GUI-esimerkki GenericName[fr]=GUIExample GenericName[gl]=GUIExample GenericName[it]=GUIExample GenericName[ja]=GUI の例 GenericName[nb]=GUIExample GenericName[nds]=Böversiet-Bispill GenericName[nl]=GUIExample GenericName[pa]=GUIExample GenericName[pl]=Przykład GUI GenericName[pt]=Exemplo GUI GenericName[pt_BR]=GUIExample GenericName[ro]=ExempluGUI GenericName[ru]=Пример графического интерфейса пользователя GenericName[sl]=GUIExample GenericName[sv]=Exempel på grafiskt användargränssnitt GenericName[tr]=Grafiksel Kullanıcı Arayüzü Örneği GenericName[ug]=GUIExample GenericName[uk]=GUIExample GenericName[x-test]=xxGUIExamplexx GenericName[zh_CN]=GUI 示例 GenericName[zh_TW]=GUIExample ServiceTypes=KDevelop/Plugin X-KDE-Library=GUIExample/GUIExample.py X-KDE-PluginInfo-Name=GUIExample X-KDE-PluginInfo-Author=Aleix Pol X-KDE-PluginInfo-Version=0.01 X-KDE-PluginInfo-License=GPL -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Global X-KDevelop-Properties=GlobalFileManagement X-KDevelop-PluginType=Kross X-KDevelop-Interfaces=org.kdevelop.IBasicVersionControl, IDistributedVersionControl diff --git a/shell/kross/examples/msvckdevelop/kdevmsvcmanager.desktop b/shell/kross/examples/msvckdevelop/kdevmsvcmanager.desktop index 3bfe27132f..3f445783f4 100644 --- a/shell/kross/examples/msvckdevelop/kdevmsvcmanager.desktop +++ b/shell/kross/examples/msvckdevelop/kdevmsvcmanager.desktop @@ -1,75 +1,75 @@ [Desktop Entry] Encoding=UTF-8 Type=Service Name=KDevelop MSVC Manager Name[bg]=Maнипулатор на MSVC от KDevelop Name[ca]=Gestor de MSVC de KDevelop Name[ca@valencia]=Gestor de MSVC de KDevelop Name[da]=KDevelop MSVC-håndtering Name[de]=KDevelop-MSVC-Verwaltung Name[el]=Διαχειριστής MSVC του KDevelop Name[en_GB]=KDevelop MSVC Manager Name[es]=Gestor MSVC de KDevelop Name[et]=KDevelopi MSVC haldur Name[fi]=KDevelop MSVC -hallinta Name[fr]=Gestionnaire MSVC pour KDevelop Name[gl]=Xestor de MSVC de KDevelop Name[it]=Gestore MSVC di KDevelop Name[ja]=KDevelop MSVC マネージャ Name[lv]=KDevelop MSVC pārvaldnieks Name[nb]=KDevelop MSVC-håndterer Name[nds]=KDevelop-MSVC-Pleger Name[nl]=MSVC-beheerder van KDevelop Name[pa]=KDevelop MSVC ਮੈਨੇਜਰ Name[pl]=Menadżer MSVC dla KDevelopa Name[pt]=Gestor do MSVC para o KDevelop Name[pt_BR]=Gerenciador MSVC do KDevelop Name[ru]=Управление проектами MSVC Name[sl]=Upravljalnik za MSVC Name[sv]=KDevelop MSVC-hantering Name[tr]=KDevelop MSVC Yöneticisi Name[ug]=KDevelop MSVC باشقۇرغۇچىسى Name[uk]=Інструмент керування MSVC для KDevelop Name[x-test]=xxKDevelop MSVC Managerxx Name[zh_CN]=KDevelop MSVC 管理器 Name[zh_TW]=KDevelop MSVC 管理員 Comment=Imports MSVC projects Comment[bg]=Внасяне на MSVC проекти Comment[ca]=Importa projectes de MSVC Comment[ca@valencia]=Importa projectes de MSVC Comment[da]=Importerer MSVC-projekter Comment[de]=Importiert MSVC-Projekte Comment[el]=Εισαγωγή έργων MSVC Comment[en_GB]=Imports MSVC projects Comment[es]=Importa proyectos de MSVC Comment[et]=MSVC projektide importimine Comment[fi]=Tuo MSVC-projektit Comment[fr]=Importe des projets MSVC Comment[gl]=Importa proxectos de MSVC Comment[it]=Importa i progetti MSVC Comment[ja]=MSVC プロジェクトをインポートします Comment[lv]=Importē MSVC projektus Comment[nb]=Importerer MSVC-prosjekter Comment[nds]=Importeert MSVC-Projekten Comment[nl]=Importeert MSVC-projects Comment[pl]=Importuje projekty MSVC Comment[pt]=Importa projectos do MSVC Comment[pt_BR]=Importar projetos do MSVC Comment[ro]=Importă proiecte MSVC Comment[ru]=Импорт проектов MSVC Comment[sl]=Uvozi projekte MSVC Comment[sv]=Importerar MSVC-projekt Comment[tr]=MSCV projelerini içeriye aktarır Comment[ug]=MSVC قۇرۇلۇشلىرىنى ئىمپورت قىلىش Comment[uk]=Імпортує проекти MSVC Comment[x-test]=xxImports MSVC projectsxx Comment[zh_CN]=导入 MSVC 工程 Comment[zh_TW]=匯入 MSVC 專案 Icon=gear ServiceTypes=KDevelop/Plugin X-KDE-Library=KDevMSVCManager/KDevMSVCManager.py X-KDE-PluginInfo-Name=KDevMSVCManager X-KDevelop-PluginType=Kross X-KDevelop-FileManager=MSVC -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Interfaces=org.kdevelop.IBuildSystemManager,org.kdevelop.IProjectFileManager diff --git a/shell/kross/kdevkrossplugin.desktop b/shell/kross/kdevkrossplugin.desktop index b5dba1bbbc..0adc3b3a56 100644 --- a/shell/kross/kdevkrossplugin.desktop +++ b/shell/kross/kdevkrossplugin.desktop @@ -1,79 +1,79 @@ [Desktop Entry] Encoding=UTF-8 Type=Service Name=KDevelop Kross Support Name[bg]=Поддръжка на KDevelop Kross Name[ca]=Implementació de Kross per KDevelop Name[ca@valencia]=Implementació de Kross per KDevelop Name[da]=Kross-understøttelse Name[de]=KDevelop-Unterstützung für Kross Name[el]=Υποστήριξη Kross του KDevelop Name[en_GB]=KDevelop Kross Support Name[es]=Implementación Kross de KDevelop Name[et]=KDevelopi Krossi toetus Name[fi]=KDevelop Kroos -tuki Name[fr]=Prise en charge de Kross pour KDevelop Name[gl]=Soporte de Kross para KDevelop Name[it]=Supporto Kross di KDevelop Name[ja]=KDevelop Kross サポート Name[lv]=KDevelop Kross atbalsts Name[nb]=Støtte for Kross i KDevelop Name[nds]=KDevelop-Kross-Ünnerstütten Name[nl]=Kross ondersteuning van KDevelop Name[pl]=Obsługa Kross dla KDevelopa Name[pt]=Suporte do Kross para o KDevelop Name[pt_BR]=Suporte do KDevelop ao Kross Name[ro]=Suport Kross KDevelop Name[ru]=Поддержка Kross в KDevelop Name[sl]=Podpora za Kross Name[sv]=KDevelop stöd för Kross Name[tr]=KDevelop Kross Desteği Name[ug]= KDevelop Kross قوللىشى Name[uk]=Підтримка Kross у KDevelop Name[x-test]=xxKDevelop Kross Supportxx Name[zh_CN]=KDevelop Kross 支持 Name[zh_TW]=KDevelop Kross 支援 Comment=KDevelop Kross Support Comment[bg]=Поддръжка на KDevelop Kross Comment[ca]=Implementació de Kross per KDevelop Comment[ca@valencia]=Implementació de Kross per KDevelop Comment[cs]=Podpora Kdevelop Kross Comment[da]=Kross-understøttelse Comment[de]=KDevelop-Unterstützung für Kross Comment[el]=Υποστήριξη Kross του KDevelop Comment[en_GB]=KDevelop Kross Support Comment[es]=Implementación Kross de KDevelop Comment[et]=KDevelopi Krossi toetus Comment[fi]=KDevelop Kross -tuki Comment[fr]=Prise en charge de Kross pour KDevelop Comment[gl]=Soporte de Kross para KDevelop Comment[it]=Supporto Kross di KDevelop Comment[ja]=KDevelop の Kross サポート Comment[lv]=KDevelop Kross atbalsts Comment[nb]=Støtte for Kross i KDevelop Comment[nds]=KDevelop-Ünnerstütten för Kross Comment[nl]=Kross ondersteuning van KDevelop Comment[pl]=Obsługa Kross dla KDevelopa Comment[pt]=Suporte do Kross para o KDevelop Comment[pt_BR]=Suporte do KDevelop ao Kross Comment[ro]=Suport Kross KDevelop Comment[ru]=Поддержка Kross в KDevelop Comment[sl]=Podpora za Kross Comment[sv]=KDevelop stöd för Kross Comment[tr]=KDevelop Kross Desteği Comment[ug]= KDevelop Kross قوللىشى Comment[uk]=Підтримка Kross у KDevelop Comment[x-test]=xxKDevelop Kross Supportxx Comment[zh_CN]=KDevelop Kross 支持 Comment[zh_TW]=KDevelop Kross 支援 Icon=gear ServiceTypes=KDevelop/Plugin X-KDE-Library=kdevkrossplugin X-KDE-PluginInfo-Author=Aleix Pol X-KDE-PluginInfo-Email=aleixpol@gmail.com X-KDE-PluginInfo-Name=KDevKrossManager X-KDE-PluginInfo-License=GPL X-KDevelop-FileManager=Kross -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDevelop-Category=Project X-KDevelop-Interfaces=org.kdevelop.IBuildSystemManager,org.kdevelop.IProjectFileManager,org.kdevelop.ILanguageSupport diff --git a/shell/tests/share/kde4/services/kdevnonguiinterfaceplugin.desktop b/shell/tests/share/kde4/services/kdevnonguiinterfaceplugin.desktop index c47a3ad72b..054431c0ca 100644 --- a/shell/tests/share/kde4/services/kdevnonguiinterfaceplugin.desktop +++ b/shell/tests/share/kde4/services/kdevnonguiinterfaceplugin.desktop @@ -1,99 +1,99 @@ [Desktop Entry] Type=Service Exec=blubb Comment=This plugin is purely for unit-test Comment[bg]=Тази приставка е само за проверка на модула Comment[ca]=Aquest connector és exclusivament per a unitats de proves Comment[ca@valencia]=Este connector és exclusivament per a unitats de proves Comment[da]=Dette plugin er udelukkende til unit-test Comment[de]=Dieses Modul dient nur Unit-Tests. Comment[el]=Αυτό το πρόσθετο προορίζεται για τον έλεγχο μονάδας Comment[en_GB]=This plugin is purely for unit-test Comment[es]=Este complemento es solo para pruebas unitarias Comment[et]=See plugin on ainult unit-testi jaoks Comment[fi]=Tämä liitännäinen on puhtaasti yksikkötestausta varten Comment[fr]=Ce module externe est purement pour le test unitaire Comment[gl]=Este engadido é soamente para probas de unidades Comment[it]=Questa estensione è puramente per lo unit-test Comment[nb]=Dette programtillegget er bare for enhetstesting Comment[nds]=Dit Moduul is bloots för't Eenheiten-Testen Comment[nl]=Deze plugin is alleen voor eenheid-testen Comment[pa]=ਇਹ ਪਲੱਗਇਨ ਸ਼ੁੱਧ ਯੂਨਿਟ-ਟੈਸਟ ਹੈ Comment[pl]=Ta wtyczka służy tylko do testów jednostek Comment[pt]=Este 'plugin' serve apenas para testes unitários Comment[pt_BR]=Esta extensão é somente para testes unitários Comment[sl]=Ta vstavek je samo za preizkušanje Comment[sv]=Insticksprogrammet är enbart avsett för enhetstest Comment[tr]=Bu eklenti tamamen birim-testleri içindir Comment[ug]=بۇ قىستۇرما پەقەتلا unit-test ئۈچۈن Comment[uk]=Цей додаток призначено лише для перевірки модулів Comment[x-test]=xxThis plugin is purely for unit-testxx Comment[zh_CN]=此插件只用于 unit 测试 Comment[zh_TW]=此外掛程式只是單純做測試 Name=KDevNonGuiInterface Name[bg]=KDevNonGuiInterface Name[ca]=KDevNonGuiInterface Name[ca@valencia]=KDevNonGuiInterface Name[da]=KDevNonGuiInterface Name[de]=KDevNonGuiInterface Name[el]=KDevNonGuiInterface Name[en_GB]=KDevNonGuiInterface Name[es]=KDevNonGuiInterface Name[et]=KDevNonGuiInterface Name[fi]=KDevNonGuiInterface Name[fr]=KDevNonGuiInterface Name[ga]=KDevNonGuiInterface Name[gl]=KDevNonGuiInterface Name[it]=KDevNonGuiInterface Name[nb]=KDevNonGuiInterface Name[nds]=KDevKeenBöversiet Name[nl]=KDevNonGuiInterface Name[pa]=KDevNonGuiInterface Name[pl]=KDevNonGuiInterface Name[pt]=KDevNonGuiInterface Name[pt_BR]=KDevNonGuiInterface Name[sl]=KDevNonGuiInterface Name[sv]=KDevelop icke grafiskt användargränssnitt Name[tr]=KDevNonGuiInterface Name[ug]=KDevNonGuiInterface Name[uk]=KDevNonGuiInterface Name[x-test]=xxKDevNonGuiInterfacexx Name[zh_CN]=KDevNonGuiInterface Name[zh_TW]=KDevNonGuiInterface GenericName=NonGuiInterface GenericName[bg]=NonGuiInterface GenericName[ca]=NonGuiInterface GenericName[ca@valencia]=NonGuiInterface GenericName[da]=NonGuiInterface GenericName[de]=NonGuiInterface GenericName[el]=Περιβάλλον χωρίς Gui GenericName[en_GB]=NonGuiInterface GenericName[es]=NonGuiInterface GenericName[et]=NonGuiInterface GenericName[fi]=NonGuiInterface GenericName[fr]=NonGuiInterface GenericName[ga]=NonGuiInterface GenericName[gl]=Interface sen gui GenericName[it]=NonGuiInterface GenericName[nb]=NonGuiInterface GenericName[nds]=Keen graafsch Böversiet GenericName[nl]=NonGuiInterface GenericName[pa]=NonGuiInterface GenericName[pl]=NonGuiInterface GenericName[pt]=Interface Não-Gráfica GenericName[pt_BR]=NonGuiInterface GenericName[sl]=NonGuiInterface GenericName[sv]=Icke grafiskt användargränssnitt GenericName[tr]=Grafiksel Olmayan Arayüz GenericName[ug]=NonGuiInterface GenericName[uk]=NonGuiInterface GenericName[x-test]=xxNonGuiInterfacexx GenericName[zh_CN]=非图形用户界面 GenericName[zh_TW]=NonGuiInterface ServiceTypes=KDevelop/Plugin X-KDE-Library=/home/andreas/src/build/kdevplatform/lib/kdevnonguiinterface -X-KDevelop-Version=12 +X-KDevelop-Version=14 X-KDE-PluginInfo-Name=kdevnonguiinterface X-KDE-PluginInfo-License=LGPL X-KDevelop-Interfaces=org.kdevelop.ITestNonGuiInterface X-KDevelop-Mode=NoGUI