Revision: 356 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=356&view=rev Author: yurand Date: 2008-12-23 10:22:15 +0000 (Tue, 23 Dec 2008)
Log Message: ----------- GeanyDBG: Rename geanydbg to External Debuger
Modified Paths: -------------- trunk/geanydbg/README trunk/geanydbg/configure.in trunk/geanydbg/po/be.po trunk/geanydbg/po/de.po trunk/geanydbg/src/Makefile.am trunk/geanydbg/src/dbg.c
Modified: trunk/geanydbg/README =================================================================== --- trunk/geanydbg/README 2008-12-22 22:18:34 UTC (rev 355) +++ trunk/geanydbg/README 2008-12-23 10:22:15 UTC (rev 356) @@ -1,22 +1,22 @@ .. |(version)| replace:: 0.1
======== -geanydbg -======== +External Debuger +================
.. contents::
About =====
-GeanyDBG is plugin for Geany IDE that run external C debugger on executable. +External Debuger is plugin for Geany IDE that run external C debugger on executable.
In order to use it you need Geany >= 0.15 or svn version.
Usage =====
-geanydbg define single keyboard shortcut "Run external debugger". +Plugin define single keyboard shortcut "Run external debugger".
Executable is searched using the following rules:
@@ -35,7 +35,7 @@ License =======
-geanydbg is distributed under the terms of the GNU General Public License +External Debuger is distributed under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. A copy of this license can be found in the file COPYING included with the source code of this
Modified: trunk/geanydbg/configure.in =================================================================== --- trunk/geanydbg/configure.in 2008-12-22 22:18:34 UTC (rev 355) +++ trunk/geanydbg/configure.in 2008-12-23 10:22:15 UTC (rev 356) @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script.
-AC_INIT([geanydbg], [0.1], [yurand2@gmail.com]) +AC_INIT([externdbg], [0.1], [yurand2@gmail.com]) AM_INIT_AUTOMAKE([1.9 foreign])
AM_CONFIG_HEADER(config.h) @@ -25,7 +25,7 @@
# i18n -GETTEXT_PACKAGE=geanydbg +GETTEXT_PACKAGE=externdbg AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])
@@ -65,7 +65,7 @@ ])
echo "----------------------------------------" -echo "Install geanydbg in : ${libdir}" +echo "Install externdbg in : ${libdir}" echo "Using Geany version : ${GEANY_VERSION}" echo "Using GTK version : ${GTK_VERSION}" echo ""
Modified: trunk/geanydbg/po/be.po =================================================================== --- trunk/geanydbg/po/be.po 2008-12-22 22:18:34 UTC (rev 355) +++ trunk/geanydbg/po/be.po 2008-12-23 10:22:15 UTC (rev 356) @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: geanydbg 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-02 01:23+0300\n" +"POT-Creation-Date: 2008-12-23 11:56+0200\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,19 +13,18 @@ "X-Poedit-SourceCharset: utf-8\n"
#. All plugins must set name, description, version and author. -#: ../src/dbg.c:59 -msgid "DBG" +#: ../src/dbg.c:57 +msgid "External Debuger" msgstr ""
-#: ../src/dbg.c:59 +#: ../src/dbg.c:57 msgid "Run external debugger." msgstr ""
-#: ../src/dbg.c:60 +#: ../src/dbg.c:58 msgid "Yura Siamshka yurand2@gmail.com" msgstr "Юра Сямашка yurand2@gmail.com"
-#: ../src/dbg.c:159 +#: ../src/dbg.c:157 msgid "Launch external debugger" msgstr "" -
Modified: trunk/geanydbg/po/de.po =================================================================== --- trunk/geanydbg/po/de.po 2008-12-22 22:18:34 UTC (rev 355) +++ trunk/geanydbg/po/de.po 2008-12-23 10:22:15 UTC (rev 356) @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: geanydbg 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-10-29 22:06+0100\n" +"POT-Creation-Date: 2008-12-23 11:56+0200\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -14,8 +14,9 @@
#. All plugins must set name, description, version and author. #: ../src/dbg.c:57 -msgid "DBG" -msgstr "DBG" +#, fuzzy +msgid "External Debuger" +msgstr "Führe externes Debuggingwerkzeug aus"
#: ../src/dbg.c:57 msgid "Run external debugger." @@ -28,3 +29,6 @@ #: ../src/dbg.c:157 msgid "Launch external debugger" msgstr "Starte externes Debuggingwerkzeug" + +#~ msgid "DBG" +#~ msgstr "DBG"
Modified: trunk/geanydbg/src/Makefile.am =================================================================== --- trunk/geanydbg/src/Makefile.am 2008-12-22 22:18:34 UTC (rev 355) +++ trunk/geanydbg/src/Makefile.am 2008-12-23 10:22:15 UTC (rev 356) @@ -1,7 +1,7 @@
-lib_LTLIBRARIES = geanydbg.la -geanydbg_la_SOURCES = dbg.c -geanydbg_la_LDFLAGS = -module -avoid-version -geanydbg_la_LIBADD = @GEANY_LIBS@ $(INTLLIBS) +lib_LTLIBRARIES = externdbg.la +externdbg_la_SOURCES = dbg.c +externdbg_la_LDFLAGS = -module -avoid-version +externdbg_la_LIBADD = @GEANY_LIBS@ $(INTLLIBS)
AM_CFLAGS = @GEANY_CFLAGS@ -DLOCALEDIR=""$(localedir)""
Modified: trunk/geanydbg/src/dbg.c =================================================================== --- trunk/geanydbg/src/dbg.c 2008-12-22 22:18:34 UTC (rev 355) +++ trunk/geanydbg/src/dbg.c 2008-12-23 10:22:15 UTC (rev 356) @@ -54,7 +54,7 @@ * for binary compatibility. */ PLUGIN_VERSION_CHECK(78); /* All plugins must set name, description, version and author. */ -PLUGIN_SET_INFO(_("DBG"), _("Run external debugger."), VERSION, +PLUGIN_SET_INFO(_("External Debuger"), _("Run external debugger."), VERSION, _("Yura Siamshka yurand2@gmail.com"));
/* Keybinding(s) */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.