Revision: 3735
http://geany.svn.sourceforge.net/geany/?rev=3735&view=rev
Author: eht16
Date: 2009-04-25 09:30:07 +0000 (Sat, 25 Apr 2009)
Log Message:
-----------
Prevent crashes when two or more top level items in the symbol list have the same name (closes #2778246).
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/symbols.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-04-25 08:31:46 UTC (rev 3734)
+++ trunk/ChangeLog 2009-04-25 09:30:07 UTC (rev 3735)
@@ -1,3 +1,10 @@
+2009-04-25 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/symbols.c:
+ Prevent crashes when two or more top level items in the symbol
+ list have the same name (closes #2778246).
+
+
2009-04-24 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/keybindings.c:
Modified: trunk/src/symbols.c
===================================================================
--- trunk/src/symbols.c 2009-04-25 08:31:46 UTC (rev 3734)
+++ trunk/src/symbols.c 2009-04-25 09:30:07 UTC (rev 3735)
@@ -1142,6 +1142,10 @@
return -1;
if (utils_str_equal(name, b))
return 1;
+ /* This should never happen as it would mean that two or more top
+ * level items have the same name but it can happen by typos in the translations. */
+ if (utils_str_equal(a, b))
+ return 1;
}
g_warning("Couldn't find top level node '%s' or '%s'!", a, b);
return 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3733
http://geany.svn.sourceforge.net/geany/?rev=3733&view=rev
Author: eht16
Date: 2009-04-24 19:31:23 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Use the startup path as the initial directory for the filebrowser plugin when no project and no files are opened
(patch by Matias Gea, thanks; closes #2780521).
Modified Paths:
--------------
trunk/ChangeLog
trunk/plugins/filebrowser.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-04-24 19:31:00 UTC (rev 3732)
+++ trunk/ChangeLog 2009-04-24 19:31:23 UTC (rev 3733)
@@ -17,6 +17,10 @@
Increase the amount of highlighted build error messages to 100.
At least for LaTeX we need higher values as there is a lot of
informative output before any errors are reported.
+ * src/filebrowser.c:
+ Use the startup path as the initial directory for the filebrowser
+ plugin when no project and no files are opened
+ (patch by Matias Gea, thanks; closes #2780521).
2009-04-21 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/plugins/filebrowser.c
===================================================================
--- trunk/plugins/filebrowser.c 2009-04-24 19:31:00 UTC (rev 3732)
+++ trunk/plugins/filebrowser.c 2009-04-24 19:31:23 UTC (rev 3733)
@@ -281,6 +281,9 @@
if (project)
dir = project->base_path;
+ else
+ dir = geany->prefs->default_open_path;
+
if (NZV(dir))
return utils_get_locale_from_utf8(dir);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3732
http://geany.svn.sourceforge.net/geany/?rev=3732&view=rev
Author: eht16
Date: 2009-04-24 19:31:00 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Increase the amount of highlighted build error messages to 100.
At least for LaTeX we need higher values as there is a lot of informative output before any errors are reported.
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.html
trunk/doc/geany.txt
trunk/src/build.h
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-04-24 19:30:07 UTC (rev 3731)
+++ trunk/ChangeLog 2009-04-24 19:31:00 UTC (rev 3732)
@@ -13,6 +13,10 @@
* src/treeviews.c:
Set the "ellipsize" property of GtkCellRendererText to automatically
shorten the path and file names in the Documents list.
+ * doc/geany.html, doc/geany.txt, src/build.h:
+ Increase the amount of highlighted build error messages to 100.
+ At least for LaTeX we need higher values as there is a lot of
+ informative output before any errors are reported.
2009-04-21 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/doc/geany.html
===================================================================
--- trunk/doc/geany.html 2009-04-24 19:30:07 UTC (rev 3731)
+++ trunk/doc/geany.html 2009-04-24 19:31:00 UTC (rev 3732)
@@ -4467,15 +4467,15 @@
<tbody valign="top">
<tr><td>GEANY_BUILD_ERR_HIGHLIGHT_MAX</td>
<td>Amount of build error messages which should
-be highlighting in the Compiler message
-window. This affects the special colouring
+be highlighted in the Compiler message
+window. This affects the special coloring
when Geany detects a compiler output line as
an error message and then highlight the
corresponding line in the source code.
Usually only the first few messages are
interesting because following errors are
just aftereffects.</td>
-<td>50</td>
+<td>100</td>
</tr>
</tbody>
</table>
@@ -4847,7 +4847,7 @@
<div class="footer">
<hr class="footer" />
<a class="reference external" href="geany.txt">View document source</a>.
-Generated on: 2009-04-21 20:34 UTC.
+Generated on: 2009-04-24 19:13 UTC.
Generated by <a class="reference external" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference external" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
</div>
Modified: trunk/doc/geany.txt
===================================================================
--- trunk/doc/geany.txt 2009-04-24 19:30:07 UTC (rev 3731)
+++ trunk/doc/geany.txt 2009-04-24 19:31:00 UTC (rev 3732)
@@ -3826,7 +3826,7 @@
============================== ============================================ ==================
Option Description Default
============================== ============================================ ==================
-GEANY_BUILD_ERR_HIGHLIGHT_MAX Amount of build error messages which should 50
+GEANY_BUILD_ERR_HIGHLIGHT_MAX Amount of build error messages which should 100
be highlighted in the Compiler message
window. This affects the special coloring
when Geany detects a compiler output line as
Modified: trunk/src/build.h
===================================================================
--- trunk/src/build.h 2009-04-24 19:30:07 UTC (rev 3731)
+++ trunk/src/build.h 2009-04-24 19:31:00 UTC (rev 3732)
@@ -25,7 +25,7 @@
#ifndef GEANY_BUILD_H
#define GEANY_BUILD_H 1
-#define GEANY_BUILD_ERR_HIGHLIGHT_MAX 50
+#define GEANY_BUILD_ERR_HIGHLIGHT_MAX 100
typedef enum /* Geany Build Options */
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3731
http://geany.svn.sourceforge.net/geany/?rev=3731&view=rev
Author: eht16
Date: 2009-04-24 19:30:07 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Set the "ellipsize" property of GtkCellRendererText to automatically shorten the path and file names in the Documents list.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/treeviews.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-04-24 19:29:45 UTC (rev 3730)
+++ trunk/ChangeLog 2009-04-24 19:30:07 UTC (rev 3731)
@@ -10,6 +10,9 @@
When the editor menu is opened by the Menu key, use the text cursor
position for retrieving the current word. This fixes disabled
Go to Tag items in the menu (#2780044).
+ * src/treeviews.c:
+ Set the "ellipsize" property of GtkCellRendererText to automatically
+ shorten the path and file names in the Documents list.
2009-04-21 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/treeviews.c
===================================================================
--- trunk/src/treeviews.c 2009-04-24 19:29:45 UTC (rev 3730)
+++ trunk/src/treeviews.c 2009-04-24 19:30:07 UTC (rev 3731)
@@ -241,6 +241,7 @@
icon_renderer = gtk_cell_renderer_pixbuf_new();
text_renderer = gtk_cell_renderer_text_new();
+ g_object_set(text_renderer, "ellipsize", PANGO_ELLIPSIZE_MIDDLE, NULL);
column = gtk_tree_view_column_new();
gtk_tree_view_column_pack_start(column, icon_renderer, FALSE);
gtk_tree_view_column_set_attributes(column, icon_renderer, "stock-id", DOCUMENTS_ICON, NULL);
@@ -368,7 +369,7 @@
gtk_tree_view_expand_row(GTK_TREE_VIEW(tv.tree_openfiles), path, TRUE);
gtk_tree_path_free(path);
}
- basename = document_get_basename_for_display(doc, 30);
+ basename = g_path_get_basename(DOC_FILENAME(doc));
gtk_tree_store_set(store_openfiles, iter, DOCUMENTS_ICON, GTK_STOCK_FILE,
DOCUMENTS_SHORTNAME, basename, DOCUMENTS_DOCUMENT, doc, DOCUMENTS_COLOR, color,
DOCUMENTS_FILENAME, DOC_FILENAME(doc), -1);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3730
http://geany.svn.sourceforge.net/geany/?rev=3730&view=rev
Author: eht16
Date: 2009-04-24 19:29:45 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
When the editor menu is opened by the Menu key, use the text cursor position for retrieving the current word. This fixes disabled Go to Tag items in the menu (#2780044).
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/editor.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-04-24 19:29:20 UTC (rev 3729)
+++ trunk/ChangeLog 2009-04-24 19:29:45 UTC (rev 3730)
@@ -6,6 +6,10 @@
* src/document.c:
Fix a crash when USE_GIO_FILEMON is enabled at closing a document
which was reloaded shortly before.
+ * src/editor.c:
+ When the editor menu is opened by the Menu key, use the text cursor
+ position for retrieving the current word. This fixes disabled
+ Go to Tag items in the menu (#2780044).
2009-04-21 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/editor.c
===================================================================
--- trunk/src/editor.c 2009-04-24 19:29:20 UTC (rev 3729)
+++ trunk/src/editor.c 2009-04-24 19:29:45 UTC (rev 3730)
@@ -199,8 +199,15 @@
GeanyEditor *editor = data;
GeanyDocument *doc = editor->document;
- editor_info.click_pos = sci_get_position_from_xy(editor->sci,
- (gint)event->x, (gint)event->y, FALSE);
+ /* it's very unlikely we got a 'real' click even on 0, 0, so assume it is a
+ * fake event to show the editor menu triggered by a key event where we want to use the
+ * text cursor position. */
+ if (event->x > 0.0 && event->y > 0.0)
+ editor_info.click_pos = sci_get_position_from_xy(editor->sci,
+ (gint)event->x, (gint)event->y, FALSE);
+ else
+ editor_info.click_pos = sci_get_current_position(editor->sci);
+
if (event->button == 1)
{
guint state = event->state & gtk_accelerator_get_default_mod_mask();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3729
http://geany.svn.sourceforge.net/geany/?rev=3729&view=rev
Author: eht16
Date: 2009-04-24 19:29:20 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Fix a crash when USE_GIO_FILEMON is enabled at closing a document which was reloaded shortly before.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/document.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-04-24 19:28:55 UTC (rev 3728)
+++ trunk/ChangeLog 2009-04-24 19:29:20 UTC (rev 3729)
@@ -3,6 +3,9 @@
* src/keybindings.c:
Manually show the main notebook tab bar menu when Shift-F10 is
pressed. This broke when we disabled the default GTK tab bar menu.
+ * src/document.c:
+ Fix a crash when USE_GIO_FILEMON is enabled at closing a document
+ which was reloaded shortly before.
2009-04-21 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/document.c
===================================================================
--- trunk/src/document.c 2009-04-24 19:28:55 UTC (rev 3728)
+++ trunk/src/document.c 2009-04-24 19:29:20 UTC (rev 3729)
@@ -435,13 +435,17 @@
/* Resets the 'ignore' file status after a reload action. */
-static gboolean monitor_reset_ignore(gpointer doc)
+static gboolean monitor_reset_ignore(gpointer data)
{
- g_return_val_if_fail(doc != NULL, FALSE);
-
- ((GeanyDocument *)doc)->priv->file_disk_status = FILE_OK;
- ui_update_tab_status(doc);
-
+ GeanyDocument *doc = data;
+ /* FIXME even if the doc is valid, it might be the wrong document if the original document was
+ * closed a new one opened which got this doc pointer while the timeout was active. Either
+ * remove the timeout when closing or document or remove the timeout completely. */
+ if (DOC_VALID(doc))
+ {
+ doc->priv->file_disk_status = FILE_OK;
+ ui_update_tab_status(doc);
+ }
return FALSE;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3728
http://geany.svn.sourceforge.net/geany/?rev=3728&view=rev
Author: eht16
Date: 2009-04-24 19:28:55 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Manually show the main notebook tab bar menu when Shift-F10 is pressed. This broke when we disabled the default GTK tab bar menu.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/keybindings.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-04-24 18:56:59 UTC (rev 3727)
+++ trunk/ChangeLog 2009-04-24 19:28:55 UTC (rev 3728)
@@ -1,3 +1,10 @@
+2009-04-24 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/keybindings.c:
+ Manually show the main notebook tab bar menu when Shift-F10 is
+ pressed. This broke when we disabled the default GTK tab bar menu.
+
+
2009-04-21 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/dialogs.c, src/document.c, src/document.h, src/treeviews.c,
Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c 2009-04-24 18:56:59 UTC (rev 3727)
+++ trunk/src/keybindings.c 2009-04-24 19:28:55 UTC (rev 3728)
@@ -978,9 +978,10 @@
return TRUE;
}
else
- /* we return FALSE, so the default handler will be used and show
- * the GTK notebook tab list */
- return FALSE;
+ { /* show tab bar menu */
+ trigger_button_event(main_widgets.notebook, event_time);
+ return TRUE;
+ }
}
}
if (focusw == tv.tree_openfiles
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3727
http://geany.svn.sourceforge.net/geany/?rev=3727&view=rev
Author: frlan
Date: 2009-04-24 18:56:59 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Update of Spanish translation
Modified Paths:
--------------
trunk/po/ChangeLog
trunk/po/es.po
Modified: trunk/po/ChangeLog
===================================================================
--- trunk/po/ChangeLog 2009-04-23 20:47:38 UTC (rev 3726)
+++ trunk/po/ChangeLog 2009-04-24 18:56:59 UTC (rev 3727)
@@ -1,3 +1,9 @@
+2009-04-24 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * es.po: Update of Spanish translation. Thanks to Antonio Jiménez
+ González.
+
+
2009-04-23 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* *.po, geany.pot: Update for string freeze in preparing of Geany
Modified: trunk/po/es.po
===================================================================
--- trunk/po/es.po 2009-04-23 20:47:38 UTC (rev 3726)
+++ trunk/po/es.po 2009-04-24 18:56:59 UTC (rev 3727)
@@ -6,11 +6,11 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: geany 0.16\n"
-"Report-Msgid-Bugs-To: \n"
+"Project-Id-Version: geany 0.1\n"
+"Report-Msgid-Bugs-To: geany-i18n(a)uvena.de\n"
"POT-Creation-Date: 2009-04-23 22:36+0200\n"
-"PO-Revision-Date: 2009-03-03 18:53+0100\n"
-"Last-Translator: Antonio Jiménez González <tonificante(a)hotmail.com>\n"
+"PO-Revision-Date: 2009-04-24 16:31+0100\n"
+"Last-Translator: Antonio Jimenez <tonificante(a)hotmail.com>\n"
"Language-Team: Spanish <geany-i18n(a)uvena.de>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -424,9 +424,8 @@
msgstr "Detectar desde archivo"
#: ../src/dialogs.c:259
-#, fuzzy
msgid "_More Options"
-msgstr "Opciones"
+msgstr "_Más Opciones"
#. line 1 with checkbox and encoding combo
#: ../src/dialogs.c:266
@@ -682,9 +681,8 @@
msgstr ", sólo lectura"
#: ../src/document.c:1561
-#, fuzzy
msgid "Error renaming file."
-msgstr "Error guardando archivo."
+msgstr "Error al renombrar el archivo."
#: ../src/document.c:1636
#, c-format
@@ -1221,7 +1219,7 @@
#: ../src/interface.c:741
msgid "Show _Markers Margin"
-msgstr "Muestra las _Marcas de Margenes"
+msgstr "Mostrar _Marcas de Márgenes"
#: ../src/interface.c:746
msgid "Show _Line Numbers"
@@ -1344,9 +1342,8 @@
msgstr "_Abrir"
#: ../src/interface.c:955
-#, fuzzy
msgid "_Recent Projects"
-msgstr "Abrir Proyecto"
+msgstr "Proyectos _Recientes"
#: ../src/interface.c:959
msgid "_Close"
@@ -1433,9 +1430,8 @@
msgstr "Iconos _pequeños"
#: ../src/interface.c:1760 ../src/interface.c:3306
-#, fuzzy
msgid "_Very Small Icons"
-msgstr "Iconos _pequeños"
+msgstr "Iconos muy _pequeños"
#: ../src/interface.c:1770
msgid "_Hide toolbar"
@@ -1535,9 +1531,8 @@
msgstr "Ruta a iniciar cuando se abran archivos de proyectos"
#: ../src/interface.c:2796
-#, fuzzy
msgid "Extra plugin path:"
-msgstr "Activar soporte de complementos"
+msgstr "Ruta para complementos extra:"
#: ../src/interface.c:2808
msgid ""
@@ -1545,6 +1540,9 @@
"configuration directory. The path entered here will be searched additionally "
"for plugins. Leave blank to disable."
msgstr ""
+"Por defecto, Geany busca en la ruta de instalación global y en el directorio "
+"de configuración. La ruta introducida aquí se usará para buscar más "
+"complementos. Para desactivar esta opción deje esta casilla en blanco."
#: ../src/interface.c:2821
msgid "<b>Paths</b>"
@@ -1659,7 +1657,6 @@
"Almacenar el archivo de proyecto dentro del directorio base del proyecto"
#: ../src/interface.c:2929
-#, fuzzy
msgid ""
"When enabled, a project file is stored by default inside the project base "
"directory when creating new projects instead of one directory above the base "
@@ -1669,7 +1666,7 @@
"Cuando está activado, el archivo de proyecto se almacena por defecto dentro "
"del directorio base del proyecto al crear nuevos proyectos, en lugar de "
"almacenarse en el directorio superior al directorio base. La ruta del "
-"proyecto todavía se puede cambiar en el diálogo Nuevo Proyecto."
+"proyecto se puede cambiar en el diálogo Nuevo Proyecto."
#: ../src/interface.c:2931
msgid "<b>Projects</b>"
@@ -1813,17 +1810,17 @@
msgstr "Interfaz"
#: ../src/interface.c:3222
-#, fuzzy
msgid "Show T_oolbar"
-msgstr "Mostrar Barra de Herramientas"
+msgstr "M_ostrar Barra de Herramientas"
#: ../src/interface.c:3226
msgid "_Append Toolbar to the Menu"
-msgstr ""
+msgstr "_Añadir la Barra de Herramientas al Menú"
#: ../src/interface.c:3229
msgid "Pack the toolbar to the main menu to save vertical space"
msgstr ""
+"Emplazar la barra de herramientas en el menú principal para ahorrar espacio"
#: ../src/interface.c:3231
msgid "<b>Toolbar</b>"
@@ -1904,14 +1901,13 @@
msgstr "Plegar/desplegar todos los hijos de un punto de plegado"
#: ../src/interface.c:3369
-#, fuzzy
msgid ""
"Fold or unfold all children of a fold point. By pressing the Shift key while "
"clicking on a fold symbol the contrary behavior is used."
msgstr ""
"Pliega o despliega todos los hijos de un punto de plegado. Se logra el "
"comportamiento inverso apretando la tecla Mayús.(Shift) mientras se hace "
-"click en un símbolo de plegado"
+"click en un símbolo de plegado."
#: ../src/interface.c:3371
msgid "Use indicators to show compile errors"
@@ -2147,7 +2143,6 @@
msgstr "Corchetes [ ]"
#: ../src/interface.c:3698
-#, fuzzy
msgid "Auto-close square-bracket when typing an opening one"
msgstr "Cerrar automáticamente corchetes al escribir un corchete de apertura"
@@ -2204,9 +2199,8 @@
msgstr "Mostrar terminaciones de línea"
#: ../src/interface.c:3753
-#, fuzzy
msgid "Shows the line ending character"
-msgstr "Muestra los caracteres de terminación de línea"
+msgstr "Muestra el carácter de fin de línea"
#: ../src/interface.c:3755
msgid "Show line numbers"
@@ -2595,19 +2589,17 @@
msgstr "Imprimir números de página"
#: ../src/interface.c:4518 ../src/printing.c:352
-#, fuzzy
msgid ""
"Add page numbers at the bottom of each page. It takes 2 lines of the page."
msgstr ""
"Agregar números de página al final de cada página. Ocupa 2 lineas de la "
-"página"
+"página."
#: ../src/interface.c:4520 ../src/printing.c:355
msgid "Print page header"
msgstr "Imprimir encabezado de página"
#: ../src/interface.c:4523 ../src/printing.c:357
-#, fuzzy
msgid ""
"Add a little header to every page containing the page number, the filename "
"and the current date (see below). It takes 3 lines of the page."
@@ -2621,7 +2613,6 @@
msgstr "Usar el nombre del archivo impreso"
#: ../src/interface.c:4543
-#, fuzzy
msgid "Print only the basename (without the path) of the printed file"
msgstr "Imprimir sólo el nombre (sin la ruta) del archivo impreso"
@@ -2645,7 +2636,7 @@
#: ../src/interface.c:4565
msgid "Printing"
-msgstr "Imprimiendo"
+msgstr "Impresión"
#: ../src/interface.c:4976
msgid "Project Properties"
@@ -3081,7 +3072,7 @@
#: ../src/keybindings.c:451
msgid "Replace spaces by tabs"
-msgstr "Reem_plazar Espacios por Tabulaciones"
+msgstr "Reemplazar espacios por tabulaciones"
#: ../src/keybindings.c:453
msgid "Toggle current fold"
@@ -3370,7 +3361,7 @@
"loaded when Geany is started."
msgstr ""
"Debajo se encuentra una lista de complementos disponibles. Seleccione los "
-"complementos que deben ser cargados cuando se inicia Geayn."
+"complementos que deben ser cargados cuando se inicia Geany."
#: ../src/plugins.c:1276
msgid "<b>Plugin details:</b>"
@@ -3508,10 +3499,10 @@
msgstr "La impresión de %s ha fallado (%s)."
#: ../src/printing.c:832
-#, fuzzy
msgid "Please set a print command in the preferences dialog first."
msgstr ""
-"Por favor primero configure un comando de impresión en el diálogo de opciones"
+"Por favor configure primero un comando de impresión en el diálogo "
+"Preferencias"
#: ../src/printing.c:840
#, c-format
@@ -3816,10 +3807,9 @@
msgstr "_Invertir los resultados de la búsqueda"
#: ../src/search.c:782
-#, fuzzy
msgid "Invert the sense of matching, to select non-matching lines"
msgstr ""
-"Invierte el sentido de coincidencia, seleccionando las líneas no "
+"Invierte el sentido de la asociación, seleccionando las líneas no "
"coincidentes."
#: ../src/search.c:799
@@ -4262,9 +4252,8 @@
msgstr "Salir de Geany"
#: ../src/toolbar.c:75
-#, fuzzy
msgid "Print document"
-msgstr "Documento XML"
+msgstr "Imprimir documento"
#: ../src/toolbar.c:153
msgid ""
@@ -4820,32 +4809,28 @@
#. Add menuitem for html replacement functions
#: ../plugins/htmlchars.c:699
-#, fuzzy
msgid "HTML Replacement"
-msgstr "<b>Ubicación de la tabulación</b>"
+msgstr "Reemplazo HTML"
#: ../plugins/htmlchars.c:706
msgid "_HTMLToggle"
-msgstr ""
+msgstr "Activar / Desactivar HTML"
#: ../plugins/htmlchars.c:715
-#, fuzzy
msgid "Bulk replacement of special chars"
-msgstr "Ubicación de las pestañas de archivos nuevos:"
+msgstr "Reemplazo masivo de caracteres especiales"
#: ../plugins/htmlchars.c:730
msgid "Insert Special HTML Characters"
msgstr "Insertar Caracteres Especiales HTML"
#: ../plugins/htmlchars.c:733
-#, fuzzy
msgid "Replace special characters"
-msgstr "Caracteres especiales"
+msgstr "Reemplazar caracteres especiales"
#: ../plugins/htmlchars.c:736
-#, fuzzy
msgid "Toggle plugin status"
-msgstr "Comentar/Descomentar"
+msgstr "Activar/Desactivar estado del complemento"
#: ../plugins/export.c:45
msgid "Export"
@@ -4864,12 +4849,11 @@
msgstr "_Usar el nivel actual de acercamiento/alejamiento"
#: ../plugins/export.c:193
-#, fuzzy
msgid ""
"Renders the font size of the document together with the current zoom level"
msgstr ""
-"Muestra el tamaño de fuentes del documento en conjunto con el nivel actual "
-"de acercamiento/alejamiento."
+"Muestra el tamaño de fuente del documento en conjunto con el nivel actual de "
+"acercamiento/alejamiento."
#: ../plugins/export.c:275
#, c-format
@@ -5133,17 +5117,14 @@
msgstr "_Verticalmente"
#: ../plugins/splitwindow.c:422
-#, fuzzy
msgid "Split Horizontally"
-msgstr "_Horizontalmente"
+msgstr "Dividir Horizontalmente"
#: ../plugins/splitwindow.c:424
-#, fuzzy
msgid "Split Vertically"
-msgstr "_Verticalmente"
+msgstr "Dividir Verticalmente"
#: ../plugins/splitwindow.c:426
-#, fuzzy
msgid "Unsplit"
msgstr "_Unificar"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.