Revision: 1464
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1464&view=rev
Author: frlan
Date: 2010-06-26 16:44:05 +0000 (Sat, 26 Jun 2010)
Log Message:
-----------
Fix some fuzzy strings
Modified Paths:
--------------
trunk/geany-plugins/po/ChangeLog
trunk/geany-plugins/po/de.po
Modified: trunk/geany-plugins/po/ChangeLog
===================================================================
--- trunk/geany-plugins/po/ChangeLog 2010-06-26 16:43:35 UTC (rev 1463)
+++ trunk/geany-plugins/po/ChangeLog 2010-06-26 16:44:05 UTC (rev 1464)
@@ -1,3 +1,8 @@
+2010-06-26 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * de.po: Fix some fuzzy strings.
+
+
2010-06-12 Frank Lanitz <frank(a)frank.uvena.de>
* de.po: Update of German translation.
Modified: trunk/geany-plugins/po/de.po
===================================================================
--- trunk/geany-plugins/po/de.po 2010-06-26 16:43:35 UTC (rev 1463)
+++ trunk/geany-plugins/po/de.po 2010-06-26 16:44:05 UTC (rev 1464)
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: geany-plugins 0.19\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-12 20:49+0200\n"
+"POT-Creation-Date: 2010-06-26 16:38+0200\n"
"PO-Revision-Date: 2010-06-12 20:48+0100\n"
"Last-Translator: Frank Lanitz <frank(a)frank.uvena.de>\n"
"Language-Team: German <geany-i18n(a)uvena.de>\n"
@@ -886,14 +886,15 @@
msgstr ""
"Keine Konfiguration gefunden für das Symbol »%s« des Typs »%s« in Zeile %lu."
-#. FIXME: we're on string freeze then don't add a new string; simply re-use
-#. * an existing one. Need to fix this after string freeze.
-#. msgwin_status_add (_("No tags in the document"));
-#: ../geanygendoc/src/ggd.c:522 ../geanygendoc/src/ggd.c:568
+#: ../geanygendoc/src/ggd.c:522
#, c-format
msgid "No valid tag at line %d."
msgstr "Kein gültiger Tag für %d."
+#: ../geanygendoc/src/ggd.c:565
+msgid "No tags in the document"
+msgstr "Keine Markierungen im Dokument"
+
#: ../geanygendoc/src/ggd-file-type-loader.c:112
msgid "boolean value"
msgstr "Boolescher Wert"
@@ -1181,7 +1182,7 @@
#. Documentation type
#: ../geanygendoc/src/ggd-plugin.c:597
-#: ../geanygendoc/src/ggd-widget-doctype-selector.c:121
+#: ../geanygendoc/src/ggd-widget-doctype-selector.c:135
msgid "Documentation type"
msgstr "Typ der Dokuemntation"
@@ -1209,7 +1210,7 @@
"Globale Umgebung wird überschrieben oder ergänzt: Die Umgebung wird mit den "
"Dateityp spezifischen Einstellungen zusammen geführt."
-#: ../geanygendoc/src/ggd-tag-utils.c:389
+#: ../geanygendoc/src/ggd-tag-utils.c:366
msgid "Invalid tag"
msgstr "Ungültige Markierung"
@@ -1223,15 +1224,23 @@
msgid "%s: no such file or directory"
msgstr "Die Datei oder das Verzeichnis »%s« gibt es nicht."
-#: ../geanygendoc/src/ggd-widget-doctype-selector.c:112
+#: ../geanygendoc/src/ggd-widget-doctype-selector.c:126
msgid "Language"
msgstr "Sprache"
-#: ../geanygendoc/src/ggd-widget-doctype-selector.c:143
+#: ../geanygendoc/src/ggd-widget-doctype-selector.c:146
+msgid "_Change associated documentation type"
+msgstr "_Verknüpfte Dokumententyp ändern"
+
+#: ../geanygendoc/src/ggd-widget-doctype-selector.c:154
+msgid "_Disassociate documentation type"
+msgstr "_Dokumententypverknüpfung aufheben"
+
+#: ../geanygendoc/src/ggd-widget-doctype-selector.c:185
msgid "All"
msgstr "Alle"
-#: ../geanygendoc/src/ggd-widget-doctype-selector.c:144
+#: ../geanygendoc/src/ggd-widget-doctype-selector.c:186
msgid "Default documentation type for languages that does not have one set"
msgstr ""
"Standardkonfiguration des Dokumentationstyps bei Dokumenten, die keinen "
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1461
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1461&view=rev
Author: colombanw
Date: 2010-06-14 19:57:15 +0000 (Mon, 14 Jun 2010)
Log Message:
-----------
GeanyGenDoc: Make use of Geany API 185
Use Geany's symbols_get_context_separator() and not a copied version
since it is now exported to the plugin API.
Modified Paths:
--------------
trunk/geany-plugins/geanygendoc/ChangeLog
trunk/geany-plugins/geanygendoc/src/ggd-tag-utils.c
Modified: trunk/geany-plugins/geanygendoc/ChangeLog
===================================================================
--- trunk/geany-plugins/geanygendoc/ChangeLog 2010-06-14 19:56:49 UTC (rev 1460)
+++ trunk/geany-plugins/geanygendoc/ChangeLog 2010-06-14 19:57:15 UTC (rev 1461)
@@ -4,6 +4,9 @@
Post-release version bump.
* src/ggd.c:
Update a string.
+ * src/ggd-tag-utils.c:
+ Use Geany's symbols_get_context_separator() and not a copied version since
+ it is now exported to the plugin API since 185.
2010-06-12 Colomban Wendling <ban(at)herbesfolles(dot)org>
Modified: trunk/geany-plugins/geanygendoc/src/ggd-tag-utils.c
===================================================================
--- trunk/geany-plugins/geanygendoc/src/ggd-tag-utils.c 2010-06-14 19:56:49 UTC (rev 1460)
+++ trunk/geany-plugins/geanygendoc/src/ggd-tag-utils.c 2010-06-14 19:57:15 UTC (rev 1461)
@@ -28,29 +28,6 @@
#include "ggd-plugin.h" /* to access Geany data/funcs */
-/* symbols_get_context_separator() borrowed from Geany since it isn't in the
- * plugin API yet (API v183) */
-/* FIXME: replace calls to this function with Geany's
- * symbols_get_context_separator() when it gets into the plugin API */
-static const gchar *
-ggd_tag_utils_get_context_separator (filetype_id geany_ft)
-{
- switch (geany_ft) {
- case GEANY_FILETYPES_C: /* for C++ .h headers or C structs */
- case GEANY_FILETYPES_CPP:
- case GEANY_FILETYPES_GLSL: /* for structs */
- return "::";
-
- /* avoid confusion with other possible separators in group/section name */
- case GEANY_FILETYPES_CONF:
- case GEANY_FILETYPES_REST:
- return ":::";
-
- default:
- return ".";
- }
-}
-
/*
* tag_cmp_by_line:
* @a: A #TMTag
@@ -243,7 +220,7 @@
/* scope is of the form a<sep>b<sep>c */
parent_name = child->atts.entry.scope;
- separator = ggd_tag_utils_get_context_separator (geany_ft);
+ separator = symbols_get_context_separator (geany_ft);
separator_len = strlen (separator);
while ((tmp = strstr (parent_name, separator)) != NULL) {
parent_name = &tmp[separator_len];
@@ -471,7 +448,7 @@
if (! *a /* we're at the end of the prefix and it matched */) {
const gchar *separator;
- separator = ggd_tag_utils_get_context_separator (geany_ft);
+ separator = symbols_get_context_separator (geany_ft);
if (maxdepth < 0) {
if (! *b || strncmp (b, separator, strlen (separator)) == 0) {
matches = TRUE;
@@ -531,7 +508,7 @@
/*if (parent->atts.entry.scope) {
fake_scope = g_strconcat (parent->atts.entry.scope,
- ggd_tag_utils_get_context_separator (geany_ft),
+ symbols_get_context_separator (geany_ft),
parent->name, NULL);
} else {
fake_scope = g_strdup (parent->name);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1460
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1460&view=rev
Author: colombanw
Date: 2010-06-14 19:56:49 +0000 (Mon, 14 Jun 2010)
Log Message:
-----------
GeanyGenDoc: Update a string
Modified Paths:
--------------
trunk/geany-plugins/geanygendoc/ChangeLog
trunk/geany-plugins/geanygendoc/src/ggd.c
Modified: trunk/geany-plugins/geanygendoc/ChangeLog
===================================================================
--- trunk/geany-plugins/geanygendoc/ChangeLog 2010-06-14 19:56:27 UTC (rev 1459)
+++ trunk/geany-plugins/geanygendoc/ChangeLog 2010-06-14 19:56:49 UTC (rev 1460)
@@ -2,6 +2,8 @@
* src/ggd-plugin.h:
Post-release version bump.
+ * src/ggd.c:
+ Update a string.
2010-06-12 Colomban Wendling <ban(at)herbesfolles(dot)org>
Modified: trunk/geany-plugins/geanygendoc/src/ggd.c
===================================================================
--- trunk/geany-plugins/geanygendoc/src/ggd.c 2010-06-14 19:56:27 UTC (rev 1459)
+++ trunk/geany-plugins/geanygendoc/src/ggd.c 2010-06-14 19:56:49 UTC (rev 1460)
@@ -562,10 +562,7 @@
g_return_val_if_fail (DOC_VALID (doc), FALSE);
if (! doc->tm_file) {
- /* FIXME: we're on string freeze then don't add a new string; simply re-use
- * an existing one. Need to fix this after string freeze. */
- /*msgwin_status_add (_("No tags in the document"));*/
- msgwin_status_add (_("No valid tag at line %d."), 1);
+ msgwin_status_add (_("No tags in the document"));
} else if (get_config (doc, doc_type, &filetype, &doctype)) {
GList *tag_list;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1457
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1457&view=rev
Author: frlan
Date: 2010-06-14 01:15:05 +0000 (Mon, 14 Jun 2010)
Log Message:
-----------
GeanyLaTeX: Minor update of documentation
Modified Paths:
--------------
trunk/geanylatex/INSTALL
trunk/geanylatex/doc/geanylatex.tex
Modified: trunk/geanylatex/INSTALL
===================================================================
--- trunk/geanylatex/INSTALL 2010-06-14 01:14:37 UTC (rev 1456)
+++ trunk/geanylatex/INSTALL 2010-06-14 01:15:05 UTC (rev 1457)
@@ -1,7 +1,7 @@
These installation instructions are written for a Linux system, but
should work also on other plattforms as Windows is.
-Building the plugin requires Geany 0.19 or above (Geany Plugin API v184
+Building the plugin requires Geany 0.19 or above (Geany Plugin API v188
or higher).
You need for compliling the plugin the Geany header files installed.
Modified: trunk/geanylatex/doc/geanylatex.tex
===================================================================
--- trunk/geanylatex/doc/geanylatex.tex 2010-06-14 01:14:37 UTC (rev 1456)
+++ trunk/geanylatex/doc/geanylatex.tex 2010-06-14 01:15:05 UTC (rev 1457)
@@ -152,7 +152,7 @@
you used a prepared package, e.g. from your distribution, you probably
need to install an additional package, probably called geany-dev
or geany-devel. Please note that in order to compile and use this
-plugin, you need Geany 0.19svn or later (Geany Plugin API v184 or higher).
+plugin, you need Geany 0.19svn or later (Geany Plugin API v188 or higher).
Furthermore you need, of course, a C compiler and python installed. The
GNU version of the C compiler is recommended. Furthermore, there should be a
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.