Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Thu, 10 Sep 2015 12:47:37 UTC
Commit: 7c0bb4c6ca15fecbb295d90d2493ef39d0307d10
https://github.com/geany/geany/commit/7c0bb4c6ca15fecbb295d90d2493ef39d0307…
Log Message:
-----------
Small update of the French translation
Modified Paths:
--------------
po/fr.po
Modified: po/fr.po
11 lines changed, 5 insertions(+), 6 deletions(-)
===================================================================
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Geany 1.25\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-09 20:09+0200\n"
-"PO-Revision-Date: 2015-09-09 20:24+0200\n"
+"POT-Creation-Date: 2015-09-10 14:43+0200\n"
+"PO-Revision-Date: 2015-09-10 14:45+0200\n"
"Last-Translator: Colomban Wendling <ban(a)herbesfolles.org>\n"
"Language-Team: French <geany-i18n(a)uvena.de>\n"
"Language: fr\n"
@@ -1623,11 +1623,10 @@ msgid "Follow path of the current file"
msgstr "Suivre le chemin du fichier courant"
#: ../data/geany.glade.h:328
-msgid ""
-"Whether to execute \\\"cd $path\\\" when you switch between opened files"
+msgid "Whether to execute \"cd $path\" when you switch between opened files"
msgstr ""
-"Définit si l'on doit exécuter \\\"cd $path\\\" lorsque vous basculez entre "
-"les fichiers ouverts"
+"Définit si l'on doit exécuter « cd $path » lorsque vous basculez entre les "
+"fichiers ouverts"
#: ../data/geany.glade.h:329
msgid "Execute programs in the VTE"
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Ross Konsolebox <konsolebox(a)gmail.com>
Committer: Ross Konsolebox <konsolebox(a)gmail.com>
Date: Wed, 09 Sep 2015 05:37:10 UTC
Commit: 8253e2bd481e10c49bf5367d996dd36126c82ded
https://github.com/geany/geany/commit/8253e2bd481e10c49bf5367d996dd36126c82…
Log Message:
-----------
Use 'g' as shortcut key for "Use multi-line matching" instead of 'l'.
The current shorcut key for "Use multi-line matching" conflicts with
"In Selection" when "Use regular expressions" is enabled. It should be
convenient if we change it.
We choose 'g' since other letters are already in use:
u: "Use regular expressions"
s: "Search for"
e: "Use escape sequences"
m: "Mark"
l: "In Selection"
t: "Match from start of word"
i: "In Document"
n: "Replace & Find"
a: "Case sensitive"
c: "Close"
h: "Replace with"
Modified Paths:
--------------
src/search.c
Modified: src/search.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -319,7 +319,7 @@ static GtkWidget *add_find_checkboxes(GtkDialog *dialog)
_("Replace \\\\, \\t, \\n, \\r and \\uXXXX (Unicode characters) with the "
"corresponding control characters"));
- check_multiline = gtk_check_button_new_with_mnemonic(_("Use multi-_line matching"));
+ check_multiline = gtk_check_button_new_with_mnemonic(_("Use multi-line matchin_g"));
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_multiline), FALSE);
gtk_widget_set_sensitive(check_multiline, FALSE);
ui_hookup_widget(dialog, check_multiline, "check_multiline");
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: elextr <elextr(a)gmail.com>
Committer: elextr <elextr(a)gmail.com>
Date: Tue, 01 Sep 2015 23:10:33 UTC
Commit: 8b767fea49f8698ee89e152c8be81d62ef0d8637
https://github.com/geany/geany/commit/8b767fea49f8698ee89e152c8be81d62ef0d8…
Log Message:
-----------
Merge pull request #638 from Akronix/master
Added multiline comment for filetypes.haskell
Modified Paths:
--------------
data/filetypes.haskell
Modified: data/filetypes.haskell
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -53,8 +53,8 @@ mime_type=text/x-haskell
# single comments, like # in this file
comment_single=--
# multiline comments
-#comment_open=
-#comment_close=
+comment_open={-
+comment_close=-}
# set to false if a comment character/string should start at column 0 of a line, true uses any
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Abel 'Akronix' Serrano Juste <akronix5(a)gmail.com>
Committer: Abel 'Akronix' Serrano Juste <akronix5(a)gmail.com>
Date: Tue, 01 Sep 2015 17:12:59 UTC
Commit: 80c4cd0de0ba8447d9b7fe04ad9c301b9d791992
https://github.com/geany/geany/commit/80c4cd0de0ba8447d9b7fe04ad9c301b9d791…
Log Message:
-----------
Added multiline comment for filetypes.haskell
Modified Paths:
--------------
data/filetypes.haskell
Modified: data/filetypes.haskell
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -53,8 +53,8 @@ mime_type=text/x-haskell
# single comments, like # in this file
comment_single=--
# multiline comments
-#comment_open=
-#comment_close=
+comment_open={-
+comment_close=-}
# set to false if a comment character/string should start at column 0 of a line, true uses any
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).