Revision: 1316
http://svn.sourceforge.net/geany/?rev=1316&view=rev
Author: ntrel
Date: 2007-02-22 04:41:48 -0800 (Thu, 22 Feb 2007)
Log Message:
-----------
Fixed switching to the wrong tab when showing the unsaved dialog.
Modified Paths:
--------------
branches/geany-0.10.1/NEWS
branches/geany-0.10.1/src/dialogs.c
branches/geany-0.10.1/src/document.c
branches/geany-0.10.1/src/document.h
Modified: branches/geany-0.10.1/NEWS
===================================================================
--- branches/geany-0.10.1/NEWS 2007-02-22 11:46:57 UTC (rev 1315)
+++ branches/geany-0.10.1/NEWS 2007-02-22 12:41:48 UTC (rev 1316)
@@ -39,6 +39,7 @@
or Next Message.
* Auto close brackets only when auto completion of constructs is
enabled (closes #1665015).
+ * Fixed switching to the wrong tab when showing the unsaved dialog.
Internationalisation:
* New translations: fi (thanks to Harri Koskinen).
Modified: branches/geany-0.10.1/src/dialogs.c
===================================================================
--- branches/geany-0.10.1/src/dialogs.c 2007-02-22 11:46:57 UTC (rev 1315)
+++ branches/geany-0.10.1/src/dialogs.c 2007-02-22 12:41:48 UTC (rev 1316)
@@ -342,7 +342,7 @@
// display the file tab to remind the user of the document
gtk_notebook_set_current_page(GTK_NOTEBOOK(app->notebook),
- document_find_by_sci(doc_list[idx].sci));
+ document_get_notebook_page(idx));
if (doc_list[idx].file_name != NULL)
{
Modified: branches/geany-0.10.1/src/document.c
===================================================================
--- branches/geany-0.10.1/src/document.c 2007-02-22 11:46:57 UTC (rev 1315)
+++ branches/geany-0.10.1/src/document.c 2007-02-22 12:41:48 UTC (rev 1316)
@@ -75,7 +75,7 @@
-/* returns the index of the notebook page which has the given filename
+/* returns the document index which has the given filename.
* is_tm_filename is needed when passing TagManager filenames because they are
* dereferenced, and would not match the link filename. */
gint document_find_by_filename(const gchar *filename, gboolean is_tm_filename)
@@ -99,7 +99,7 @@
}
-/* returns the index of the notebook page which has sci */
+/* returns the document index which has sci */
gint document_find_by_sci(ScintillaObject *sci)
{
guint i;
@@ -114,6 +114,16 @@
}
+/* returns the index of the notebook page from the document index */
+gint document_get_notebook_page(gint doc_idx)
+{
+ if (! DOC_IDX_VALID(doc_idx)) return -1;
+
+ return gtk_notebook_page_num(GTK_NOTEBOOK(app->notebook),
+ GTK_WIDGET(doc_list[doc_idx].sci));
+}
+
+
/* returns the index of the given notebook page in the document list */
gint document_get_n_idx(guint page_num)
{
Modified: branches/geany-0.10.1/src/document.h
===================================================================
--- branches/geany-0.10.1/src/document.h 2007-02-22 11:46:57 UTC (rev 1315)
+++ branches/geany-0.10.1/src/document.h 2007-02-22 12:41:48 UTC (rev 1316)
@@ -88,14 +88,19 @@
(doc_list[doc_idx].file_name) : GEANY_STRING_UNTITLED)
-/* returns the index of the notebook page which has the given filename */
-gint document_find_by_filename(const gchar*, gboolean is_tm_filename);
+/* returns the document index which has the given filename.
+ * is_tm_filename is needed when passing TagManager filenames because they are
+ * dereferenced, and would not match the link filename. */
+gint document_find_by_filename(const gchar *filename, gboolean is_tm_filename);
-/* returns the index of the notebook page which has sci */
-gint document_find_by_sci(ScintillaObject*);
+/* returns the document index which has sci */
+gint document_find_by_sci(ScintillaObject *sci);
+/* returns the index of the notebook page from the document index */
+gint document_get_notebook_page(gint doc_idx);
+
/* returns the index of the given notebook page in the document list */
gint document_get_n_idx(guint page_num);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1315
http://svn.sourceforge.net/geany/?rev=1315&view=rev
Author: ntrel
Date: 2007-02-22 03:46:57 -0800 (Thu, 22 Feb 2007)
Log Message:
-----------
Added note to see the NEWS file for a list of changes for the 0.10.1 release.
Modified Paths:
--------------
branches/geany-0.10.1/ChangeLog
Modified: branches/geany-0.10.1/ChangeLog
===================================================================
--- branches/geany-0.10.1/ChangeLog 2007-02-21 16:02:19 UTC (rev 1314)
+++ branches/geany-0.10.1/ChangeLog 2007-02-22 11:46:57 UTC (rev 1315)
@@ -1,3 +1,7 @@
+*** NOTE: This ChangeLog was not updated for the 0.10.1 release.
+ Instead see the NEWS file for a list of changes.
+
+
2006-12-21 Enrico Tröger <enrico.troeger(a)uvena.de>
* doc/geany.1.in, doc/Makefile.am, doc/geany.docbook, doc/images/*,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1314
http://svn.sourceforge.net/geany/?rev=1314&view=rev
Author: eht16
Date: 2007-02-21 08:02:19 -0800 (Wed, 21 Feb 2007)
Log Message:
-----------
Improved tooltip for auto completion.
Modified Paths:
--------------
trunk/ChangeLog
trunk/geany.glade
trunk/src/interface.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-02-21 15:20:45 UTC (rev 1313)
+++ trunk/ChangeLog 2007-02-21 16:02:19 UTC (rev 1314)
@@ -4,6 +4,7 @@
Made auto_close_bracket() static and auto close brackets only when
auto completion of constructs is enabled (closes #1665015).
* doc/geany.1.in: Fixed typo.
+ * geany.glade, src/interface.c: Improved tooltip for auto completion.
2007-02-20 Nick Treleaven <nick.treleaven(a)btinternet.com>
Modified: trunk/geany.glade
===================================================================
--- trunk/geany.glade 2007-02-21 15:20:45 UTC (rev 1313)
+++ trunk/geany.glade 2007-02-21 16:02:19 UTC (rev 1314)
@@ -5476,7 +5476,7 @@
<child>
<widget class="GtkCheckButton" id="check_symbol_auto_completion">
<property name="visible">True</property>
- <property name="tooltip" translatable="yes">Automatic completion of known symbols in open source file(s) (function, global variables, ...)</property>
+ <property name="tooltip" translatable="yes">Automatic completion of known symbols in open files (function names, global variables, ...)</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">Symbol autocompletion</property>
<property name="use_underline">True</property>
Modified: trunk/src/interface.c
===================================================================
--- trunk/src/interface.c 2007-02-21 15:20:45 UTC (rev 1313)
+++ trunk/src/interface.c 2007-02-21 16:02:19 UTC (rev 1314)
@@ -3345,7 +3345,7 @@
check_symbol_auto_completion = gtk_check_button_new_with_mnemonic (_("Symbol autocompletion"));
gtk_widget_show (check_symbol_auto_completion);
gtk_box_pack_start (GTK_BOX (vbox19), check_symbol_auto_completion, FALSE, FALSE, 0);
- gtk_tooltips_set_tip (tooltips, check_symbol_auto_completion, _("Automatic completion of known symbols in open source file(s) (function, global variables, ...)"), NULL);
+ gtk_tooltips_set_tip (tooltips, check_symbol_auto_completion, _("Automatic completion of known symbols in open files (function names, global variables, ...)"), NULL);
gtk_button_set_focus_on_click (GTK_BUTTON (check_symbol_auto_completion), FALSE);
hbox6 = gtk_hbox_new (FALSE, 20);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1313
http://svn.sourceforge.net/geany/?rev=1313&view=rev
Author: eht16
Date: 2007-02-21 07:20:45 -0800 (Wed, 21 Feb 2007)
Log Message:
-----------
Fixed typo.
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.1.in
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-02-21 14:13:29 UTC (rev 1312)
+++ trunk/ChangeLog 2007-02-21 15:20:45 UTC (rev 1313)
@@ -3,6 +3,7 @@
* src/sci_cb.c, src/sci_cb.c:
Made auto_close_bracket() static and auto close brackets only when
auto completion of constructs is enabled (closes #1665015).
+ * doc/geany.1.in: Fixed typo.
2007-02-20 Nick Treleaven <nick.treleaven(a)btinternet.com>
Modified: trunk/doc/geany.1.in
===================================================================
--- trunk/doc/geany.1.in 2007-02-21 14:13:29 UTC (rev 1312)
+++ trunk/doc/geany.1.in 2007-02-21 15:20:45 UTC (rev 1313)
@@ -1,4 +1,4 @@
-.TH "GEANY" "1" "December 21, 2006" "@PACKAGE@ @VERSION@" ""
+.TH "GEANY" "1" "February 21, 2007" "@PACKAGE@ @VERSION@" ""
.SH "NAME"
Geany \(em a small and lightweight IDE
.SH "SYNOPSIS"
@@ -12,11 +12,8 @@
many supported filetypes like C(++), Java, PHP, HTML, DocBook, Perl and more.
.PP
Homepage: http://geany.uvena.de
-
-Set initial line number for the first opened file
-
.SH "OPTIONS"
-.IP "\fB\fP \fB\-\-column\fP " 10
+.IP "\fB\fP \fB\-\-column\fP " 10
Set initial column number for the first opened file (useful in conjunction with --line).
.IP "\fB-c\fP \fB\-\-config\fP " 10
Use an alternate configuration directory. Default configuration directory is
@@ -40,7 +37,7 @@
Don't load terminal support. Use this option, if you don't want to load the virtual terminal
emulator widget at startup. If you don't have libvte.so.4 installed, then terminal-support is
automatically disabled. Only available if Geany was compiled with support for VTE.
-.IP "\fB\fP \fB\-\-vte-lib\fP " 10
+.IP "\fB\fP \fB\-\-vte-lib\fP " 10
Specify explicitly the path including filename or only the filename to the VTE library, e.g.
/usr/lib/libvte.so or libvte.so. This option is only needed, when the autodetection doesn't
work. Only available if Geany was compiled with support for VTE.
@@ -50,13 +47,11 @@
Show help information and exit.
.PP
Geany supports all generic GTK options, a list is available on the help screen.
-
.SH "AUTHOR"
.PP
-This manual page was written by Enrico Tröger <enrico.troeger(a)uvena.de>. Permission is
+This manual page was written by Enrico Troeger <enrico.troeger(a)uvena.de>. Permission is
granted to copy, distribute and/or modify this document under
the terms of the GNU General Public License, Version 2 any
later version published by the Free Software Foundation.
.PP
The complete text of the GNU General Public License can be found in @GEANY_DATA_DIR@/GPL-2.
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1312
http://svn.sourceforge.net/geany/?rev=1312&view=rev
Author: eht16
Date: 2007-02-21 06:13:29 -0800 (Wed, 21 Feb 2007)
Log Message:
-----------
Updated version and date information.
Modified Paths:
--------------
branches/geany-0.10.1/configure.in
branches/geany-0.10.1/doc/geany.1.in
branches/geany-0.10.1/doc/geany.docbook
Modified: branches/geany-0.10.1/configure.in
===================================================================
--- branches/geany-0.10.1/configure.in 2007-02-21 14:01:41 UTC (rev 1311)
+++ branches/geany-0.10.1/configure.in 2007-02-21 14:13:29 UTC (rev 1312)
@@ -2,7 +2,7 @@
dnl $Id$
AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(geany, 0.10)
+AM_INIT_AUTOMAKE(geany, 0.10.1)
AM_CONFIG_HEADER(config.h)
Modified: branches/geany-0.10.1/doc/geany.1.in
===================================================================
--- branches/geany-0.10.1/doc/geany.1.in 2007-02-21 14:01:41 UTC (rev 1311)
+++ branches/geany-0.10.1/doc/geany.1.in 2007-02-21 14:13:29 UTC (rev 1312)
@@ -1,4 +1,4 @@
-.TH "GEANY" "1" "December 21, 2006" "@PACKAGE@ @VERSION@" ""
+.TH "GEANY" "1" "February 23, 2007" "@PACKAGE@ @VERSION@" ""
.SH "NAME"
Geany \(em a small and lightweight IDE
.SH "SYNOPSIS"
@@ -12,9 +12,6 @@
many supported filetypes like C(++), Java, PHP, HTML, DocBook, Perl and more.
.PP
Homepage: http://geany.uvena.de
-
-Set initial line number for the first opened file
-
.SH "OPTIONS"
.IP "\fB-c\fP \fB\-\-config\fP " 10
Use an alternate configuration directory. Default configuration directory is
@@ -48,13 +45,11 @@
Show help information and exit.
.PP
Geany supports all generic GTK options, a list is available on the help screen.
-
.SH "AUTHOR"
.PP
-This manual page was written by Enrico Tröger <enrico.troeger(a)uvena.de>. Permission is
+This manual page was written by Enrico Troeger <enrico.troeger(a)uvena.de>. Permission is
granted to copy, distribute and/or modify this document under
the terms of the GNU General Public License, Version 2 any
later version published by the Free Software Foundation.
.PP
The complete text of the GNU General Public License can be found in @GEANY_DATA_DIR@/GPL-2.
-
Modified: branches/geany-0.10.1/doc/geany.docbook
===================================================================
--- branches/geany-0.10.1/doc/geany.docbook 2007-02-21 14:01:41 UTC (rev 1311)
+++ branches/geany-0.10.1/doc/geany.docbook 2007-02-21 14:13:29 UTC (rev 1312)
@@ -2,10 +2,10 @@
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
<!ENTITY app_small "geany">
-<!ENTITY appversion "0.10">
+<!ENTITY appversion "0.10.1">
<!ENTITY appurl "http://geany.uvena.de">
<!ENTITY author_mail "enrico.troeger(a)uvena.de">
-<!ENTITY date "December 21, 2006">
+<!ENTITY date "February 23, 2007">
<!ENTITY legal SYSTEM "geany_gpl.docbook">
<!ENTITY scikeybinding SYSTEM "scikeybinding.docbook">
]>
@@ -28,7 +28,7 @@
<address><email>frank(a)frank.uvena.de</email></address>
</author>
<copyright>
- <year>2005-2006</year>
+ <year>2005-2007</year>
</copyright>
<legalnotice>
<para>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1311
http://svn.sourceforge.net/geany/?rev=1311&view=rev
Author: eht16
Date: 2007-02-21 06:01:41 -0800 (Wed, 21 Feb 2007)
Log Message:
-----------
Auto close brackets only when auto completion of constructs is enabled (closes #1665015).
Modified Paths:
--------------
branches/geany-0.10.1/NEWS
branches/geany-0.10.1/src/sci_cb.c
Modified: branches/geany-0.10.1/NEWS
===================================================================
--- branches/geany-0.10.1/NEWS 2007-02-21 12:11:28 UTC (rev 1310)
+++ branches/geany-0.10.1/NEWS 2007-02-21 14:01:41 UTC (rev 1311)
@@ -1,4 +1,4 @@
-Geany 0.10.1 (TBA)
+Geany 0.10.1 (February 23, 2007)
Bugs fixed:
* Wrong tab foreground colour for unmodified documents.
@@ -37,6 +37,8 @@
* Update the symbol list when starting a new document.
* Scroll Compiler and Messages window in view when using Next Error
or Next Message.
+ * Auto close brackets only when auto completion of constructs is
+ enabled (closes #1665015).
Internationalisation:
* New translations: fi (thanks to Harri Koskinen).
Modified: branches/geany-0.10.1/src/sci_cb.c
===================================================================
--- branches/geany-0.10.1/src/sci_cb.c 2007-02-21 12:11:28 UTC (rev 1310)
+++ branches/geany-0.10.1/src/sci_cb.c 2007-02-21 14:01:41 UTC (rev 1311)
@@ -1,7 +1,8 @@
/*
* sci_cb.c - this file is part of Geany, a fast and lightweight IDE
*
- * Copyright 2006 Enrico Troeger <enrico.troeger(a)uvena.de>
+ * Copyright 2005-2007 Enrico Tröger <enrico.troeger(a)uvena.de>
+ * Copyright 2006-2007 Nick Treleaven <nick.treleaven(a)btinternet.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -378,7 +379,8 @@
void sci_cb_auto_close_bracket(ScintillaObject *sci, gint pos, gchar c)
{
- if (SSM(sci, SCI_GETLEXER, 0, 0) != SCLEX_LATEX) return;
+ if (! app->pref_editor_auto_complete_constructs || SSM(sci, SCI_GETLEXER, 0, 0) != SCLEX_LATEX)
+ return;
if (c == '[')
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1308
http://svn.sourceforge.net/geany/?rev=1308&view=rev
Author: kretek
Date: 2007-02-19 13:19:37 -0800 (Mon, 19 Feb 2007)
Log Message:
-----------
Update of Hungarian translation
Modified Paths:
--------------
branches/geany-0.10.1/NEWS
branches/geany-0.10.1/po/hu.po
Modified: branches/geany-0.10.1/NEWS
===================================================================
--- branches/geany-0.10.1/NEWS 2007-02-19 18:58:32 UTC (rev 1307)
+++ branches/geany-0.10.1/NEWS 2007-02-19 21:19:37 UTC (rev 1308)
@@ -40,7 +40,7 @@
Internationalisation:
* New translations: fi (thanks to Harri Koskinen).
- * Updated translations: cs, de, es, fr.
+ * Updated translations: cs, de, es, fr, hu.
Geany 0.10 (December 21, 2006)
Modified: branches/geany-0.10.1/po/hu.po
===================================================================
--- branches/geany-0.10.1/po/hu.po 2007-02-19 18:58:32 UTC (rev 1307)
+++ branches/geany-0.10.1/po/hu.po 2007-02-19 21:19:37 UTC (rev 1308)
@@ -1,3 +1,4 @@
+# translation of hu.po to Hungarian
# Hungarian translation of Geany package
# Copyright (C) 2006 THE geany'S COPYRIGHT HOLDER
# This file is distributed under the same license as the geany package.
@@ -2,10 +3,10 @@
#
-# Gabor Kmetyko aka kilo <kg_kilo(a)freemail.hu>, 2006.
#
+# Gabor Kmetyko aka kilo <kg_kilo(a)freemail.hu>, 2006, 2007.
msgid ""
msgstr ""
-"Project-Id-Version: geany 0.10.1\n"
+"Project-Id-Version: hu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-02-07 19:53+0100\n"
-"PO-Revision-Date: 2006-12-13 23:15+0100\n"
+"PO-Revision-Date: 2007-02-18 23:58+0100\n"
"Last-Translator: kilo <kg_kilo(a)freemail.hu>\n"
@@ -294,8 +295,7 @@
#: src/interface.c:647
msgid "Toggle the window with status and compiler messages on and off"
-msgstr ""
-"Ki/bekapcsolja az állapotokat és fordítóüzeneteket megjelenítő ablakot "
+msgstr "Ki/bekapcsolja az állapotokat és fordítóüzeneteket megjelenítő ablakot "
#: src/interface.c:650
msgid "Show _Toolbar"
@@ -357,8 +357,7 @@
#: src/interface.c:711
msgid "Treat this file as read-only. No changes can be made."
-msgstr ""
-"A fájlt csak olvashatóként kezeli. Nem lehet benne változtatásokat tenni."
+msgstr "A fájlt csak olvashatóként kezeli. Nem lehet benne változtatásokat tenni."
#: src/interface.c:713
msgid "_Write Unicode BOM"
@@ -434,8 +433,7 @@
msgstr "_Színválasztó"
#: src/interface.c:816 src/interface.c:941
-msgid ""
-"Open a color chooser dialog, to interactively pick colors from a palette."
+msgid "Open a color chooser dialog, to interactively pick colors from a palette."
msgstr ""
"Megnyit egy színválasztó dialógus ablakot, hogy interaktív módon lehessek "
"egy palettáról színt választani."
@@ -880,8 +878,7 @@
#: src/interface.c:2866
msgid "Sets the default encoding for newly created files."
-msgstr ""
-"Beállítja az alapértelmezett kódolást újonnan létrehozott fájlok esetén."
+msgstr "Beállítja az alapértelmezett kódolást újonnan létrehozott fájlok esetén."
#: src/interface.c:2878
msgid "The width in chars, which one tab character will take"
@@ -924,8 +921,7 @@
msgstr "Új fájl fülek elhelyezkedése:"
#: src/interface.c:2963
-msgid ""
-"Specifies the number of files which are stored in the Recent files list."
+msgid "Specifies the number of files which are stored in the Recent files list."
msgstr "Megadja, hogy hány fájl jelenjen meg a Legutóbbi fájlok listáján."
#: src/interface.c:2976
@@ -1170,8 +1166,7 @@
#: src/interface.c:3344
#, c-format
msgid "Path to the command for printing files (use %f for the filename)."
-msgstr ""
-"Elérési út a fájl nyomtatási parancshoz (használjon %f-et a fájlnév helyén)."
+msgstr "Elérési út a fájl nyomtatási parancshoz (használjon %f-et a fájlnév helyén)."
#: src/interface.c:3356
msgid "Grep:"
@@ -1291,18 +1286,17 @@
msgstr "A(z) '%s' fájl már létezik. Felülírja?"
#: src/callbacks.c:1247
-#, fuzzy, c-format
+#, c-format
msgid "Declaration of \"%s()\" not found"
-msgstr "\"%s()\" definíciója nem található"
+msgstr "\"%s()\" deklarációja nem található"
#: src/callbacks.c:1249
-#, fuzzy, c-format
+#, c-format
msgid "Definition of \"%s()\" not found"
msgstr "\"%s()\" definíciója nem található"
#: src/callbacks.c:1454 src/callbacks.c:1499
-msgid ""
-"Please set the filetype for the current file before using this function."
+msgid "Please set the filetype for the current file before using this function."
msgstr "Mielőtt ezt a funkciót használná, adja meg a jelenlegi fájl típusát."
#: src/callbacks.c:1615 src/ui_utils.c:561
@@ -1349,8 +1343,7 @@
#: src/callbacks.c:1659
msgid "Date format string could not be converted (possibly too long)."
-msgstr ""
-"A dátum formátum stringet nem lehetett átalakítani (feltehetően túl hosszú)."
+msgstr "A dátum formátum stringet nem lehetett átalakítani (feltehetően túl hosszú)."
#: src/callbacks.c:2047
msgid "No more message items."
@@ -1655,7 +1648,7 @@
msgstr "Nem lehetett megnyitni a(z) %s fájlt (%s)"
#: src/document.c:618
-#, fuzzy, c-format
+#, c-format
msgid ""
"The file \"%s\" could not opened properly and probably was truncated. Be "
"aware that saving it can cause data loss.\n"
@@ -2010,8 +2003,7 @@
#: src/build.c:203 src/build.c:604
#, c-format
msgid "Failed to execute %s (start-script could not be created)"
-msgstr ""
-"%s végrehajtása nem sikerült (az indító szkriptet nem lehetett létrehozni)"
+msgstr "%s végrehajtása nem sikerült (az indító szkriptet nem lehetett létrehozni)"
#: src/build.c:231 src/build.c:447 src/build.c:649 src/search.c:1069
#, c-format
@@ -2079,8 +2071,7 @@
#: src/build.c:889 src/build.c:1011
msgid "Builds the current file with the make tool and the specified target"
-msgstr ""
-"Build-eli a jelenlegi fájlt a make eszközzel és a megadott célállománnyal"
+msgstr "Build-eli a jelenlegi fájlt a make eszközzel és a megadott célállománnyal"
#. build the code with make object
#: src/build.c:896
@@ -2150,8 +2141,7 @@
msgstr "Egyedi cél készítése"
#: src/build.c:1341
-msgid ""
-"Enter custom options here, all entered text is passed to the make command."
+msgid "Enter custom options here, all entered text is passed to the make command."
msgstr ""
"Adja meg itt az egyedi opciókat, minden bevitt szöveg átadásra kerül a make "
"parancs számára."
@@ -2194,8 +2184,7 @@
#: src/prefs.c:909
#, c-format
-msgid ""
-"The combination '%s' is already used for \"%s\". Please choose another one."
+msgid "The combination '%s' is already used for \"%s\". Please choose another one."
msgstr ""
"A '%s' kombináció már használatban van a \"%s\" parancsnál. Válasszon "
"másikat!"
@@ -2581,11 +2570,8 @@
msgstr "Terminál emuláció:"
#: src/vte.c:580
-#, fuzzy
-msgid ""
-"Controls how the terminal emulator should behave. xterm is a good start."
-msgstr ""
-"A terminál emulátor működését szabályozza. Kezdetnek az xterm jó példa."
+msgid "Controls how the terminal emulator should behave. xterm is a good start."
+msgstr "A terminál emulátor működését szabályozza. Kezdetnek az xterm jó példa."
#: src/vte.c:582
msgid "Shell:"
@@ -3099,139 +3085,3 @@
msgid "Miscellaneous characters"
msgstr "Egyéb karakterek"
-#, fuzzy
-#~ msgid "Forward declaration \"%s\" not found."
-#~ msgstr "\"%s()\" deklarációja nem található"
-
-#, fuzzy
-#~ msgid "Javascript source file"
-#~ msgstr "Java forráskód fájl"
-
-#, fuzzy
-#~ msgid "Lua source file"
-#~ msgstr "LaTeX forráskód fájl"
-
-#, fuzzy
-#~ msgid "Open Selected F_ile"
-#~ msgstr "Fájl megnyitása"
-
-#, fuzzy
-#~ msgid "Insert BSD License Notice"
-#~ msgstr "GPL megjegyzés beszúrása"
-
-#, fuzzy
-#~ msgid ""
-#~ "Inserts a BSD licence notice (should be done at the beginning of the file)"
-#~ msgstr "GPL megjegyzést illeszt be (a fájl elejére kell kerüljön)"
-
-#, fuzzy
-#~ msgid "Find _Selected"
-#~ msgstr "Kö_vetkező találat"
-
-#, fuzzy
-#~ msgid "_New"
-#~ msgstr "Új"
-
-#, fuzzy
-#~ msgid "_Open"
-#~ msgstr "Megnyit"
-
-#, fuzzy
-#~ msgid "_Close"
-#~ msgstr "Bezár"
-
-#, fuzzy
-#~ msgid "Insert BSD license Notice"
-#~ msgstr "GPL megjegyzés beszúrása"
-
-#, fuzzy
-#~ msgid "Open selected file"
-#~ msgstr "Megnyitott fájlok"
-
-#, fuzzy
-#~ msgid "Save as"
-#~ msgstr "Mindet menti"
-
-#, fuzzy
-#~ msgid "Find Next Selection"
-#~ msgstr "A kije_lölésben"
-
-#, fuzzy
-#~ msgid "Find Previous Selection"
-#~ msgstr "Előző"
-
-#, fuzzy
-#~ msgid ""
-#~ "set initial column number for the first opened file (useful in "
-#~ "conjunction with --line)"
-#~ msgstr "állítsa a kezdő sorszámot az első megnyitott fájlhoz"
-
-#, fuzzy
-#~ msgid "Could not find file '%s'."
-#~ msgstr "Nem található a pixmap fájl: %s"
-
-#, fuzzy
-#~ msgid "Open project"
-#~ msgstr "Make"
-
-#, fuzzy
-#~ msgid "Project files"
-#~ msgstr "Tulajdonságok"
-
-#, fuzzy
-#~ msgid "Project \"%s\" closed."
-#~ msgstr "%s fájl bezárva."
-
-#, fuzzy
-#~ msgid "Project properties"
-#~ msgstr "Tulajdonságok"
-
-#, fuzzy
-#~ msgid "C_reate"
-#~ msgstr "Karakter"
-
-#, fuzzy
-#~ msgid "Name:"
-#~ msgstr "Make:"
-
-#, fuzzy
-#~ msgid "Description:"
-#~ msgstr "DVI létrehozása:"
-
-#, fuzzy
-#~ msgid "Filename:"
-#~ msgstr "Vietnami"
-
-#, fuzzy
-#~ msgid "File patterns:"
-#~ msgstr "Köz_el-keleti"
-
-#, fuzzy
-#~ msgid ""
-#~ "There is already an open project \"%s\". Do you want to close it before "
-#~ "proceed?"
-#~ msgstr "A(z) '%s' fájl már létezik. Felülírja?"
-
-#, fuzzy
-#~ msgid "Project file could not be written."
-#~ msgstr "A folyamatot nem sikerült leállítani (%s)."
-
-#, fuzzy
-#~ msgid "Project \"%s\" created."
-#~ msgstr "Tulajdonságok"
-
-#, fuzzy
-#~ msgid "Project \"%s\" saved."
-#~ msgstr "%s fájl elmentve."
-
-#, fuzzy
-#~ msgid "Project \"%s\" opened."
-#~ msgstr "Tulajdonságok"
-
-#, fuzzy
-#~ msgid "Project file could not be loaded."
-#~ msgstr "A folyamatot nem sikerült leállítani (%s)."
-
-#, fuzzy
-#~ msgid "File location:"
-#~ msgstr "PDF létrehozása:"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.