Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Thu, 23 Nov 2017 05:01:42 UTC
Commit: 369a58f4a604c324fe3df04f5fe8f8c696986551
https://github.com/geany/geany-plugins/commit/369a58f4a604c324fe3df04f5fe8f…
Log Message:
-----------
Small update of the French translation
Modified Paths:
--------------
po/fr.po
Modified: po/fr.po
26 lines changed, 12 insertions(+), 14 deletions(-)
===================================================================
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Geany-Plugins 1.30\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-11-05 14:45+0100\n"
+"POT-Creation-Date: 2017-11-21 18:22-0800\n"
"PO-Revision-Date: 2017-03-05 16:25+0100\n"
"Last-Translator: Colomban Wendling <ban(a)herbesfolles.org>\n"
"Language-Team: French <geany-i18n(a)uvena.de>\n"
@@ -2239,9 +2239,9 @@ msgstr "Numéro du volume"
msgid "Year of publication or creation if unpublished"
msgstr "Année de publication ou de création si non publié"
-#: ../geanylatex/src/geanylatex.c:41
-msgid "GeanyLaTeX"
-msgstr "GeanyLaTeX"
+#: ../latex/src/latex.c:42 ../tableconvert/src/tableconvert.c:41
+msgid "LaTeX"
+msgstr "LaTeX"
#: ../geanylatex/src/geanylatex.c:42
msgid "Extends LaTeX support"
@@ -2617,11 +2617,11 @@ msgstr ""
#: ../geanylatex/src/geanylatex.c:2011
msgid ""
-"GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n"
+"LaTeX is a plugin to improve support for LaTeX in Geany.\n"
"\n"
"Please report all bugs or feature requests to one of the authors."
msgstr ""
-"GeanyLaTeX est un plugin qui améliore la gestion de LaTeX dans Geany.\n"
+"LaTeX est un plugin qui améliore la gestion de LaTeX dans Geany.\n"
"\n"
"Merci de rapporter tous les bogues ou demandes d'améliorations aux auteurs."
@@ -7397,10 +7397,6 @@ msgstr "Convertisseur en tableau"
msgid "Converts lists into tables for different filetypes"
msgstr "Convertit des listes en tableaux"
-#: ../tableconvert/src/tableconvert.c:41
-msgid "LaTeX"
-msgstr "LaTeX"
-
#: ../tableconvert/src/tableconvert.c:58
msgid "HTML"
msgstr "HTML"
@@ -8102,8 +8098,8 @@ msgid "Workbench settings"
msgstr "Paramètres du plan de travail"
#: ../workbench/src/dialogs.c:361
-msgid "Rescan all projects on open:"
-msgstr "Réindexer tous les projets à l'ouverture :"
+msgid "_Rescan all projects on open"
+msgstr "_Réindexer tous les projets à l'ouverture"
#: ../workbench/src/dialogs.c:366
msgid ""
@@ -8271,8 +8267,10 @@ msgstr "Aucun plan de travail ouvert."
#: ../workbench/src/sidebar.c:598
#, c-format
-msgid "%s: %u Projects"
-msgstr "%s : %u projets"
+msgid "%s: %u Project"
+msgid_plural "%s: %u Projects"
+msgstr[0] "%s : %u projet"
+msgstr[1] "%s : %u projets"
#: ../workbench/src/sidebar.c:609
msgid ""
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Wed, 22 Nov 2017 02:21:23 UTC
Commit: 2c4f36efc446b3905ef22b1350f8d59918ccb8ed
https://github.com/geany/geany-plugins/commit/2c4f36efc446b3905ef22b1350f8d…
Log Message:
-----------
workbench: Properly use check buttons
Set the check button's label itself rather than using a label-less
check button together with a label, which allows clicking the label to
toggle the check button, as well as using the label's mnemonic.
Modified Paths:
--------------
workbench/src/dialogs.c
Modified: workbench/src/dialogs.c
8 lines changed, 3 insertions(+), 5 deletions(-)
===================================================================
@@ -337,7 +337,7 @@ gboolean dialogs_workbench_settings(WORKBENCH *workbench)
{
gint result;
GtkWidget *w_rescan_projects_on_open;
- GtkWidget *dialog, *label, *content_area;
+ GtkWidget *dialog, *content_area;
GtkWidget *vbox, *hbox, *table;
GtkDialogFlags flags;
gboolean changed, rescan_projects_on_open, rescan_projects_on_open_old;
@@ -358,10 +358,8 @@ gboolean dialogs_workbench_settings(WORKBENCH *workbench)
gtk_table_set_row_spacings(GTK_TABLE(table), 5);
gtk_table_set_col_spacings(GTK_TABLE(table), 10);
- label = gtk_label_new(_("Rescan all projects on open:"));
- gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
- w_rescan_projects_on_open = gtk_check_button_new();
- ui_table_add_row(GTK_TABLE(table), 0, label, w_rescan_projects_on_open, NULL);
+ w_rescan_projects_on_open = gtk_check_button_new_with_mnemonic(_("_Rescan all projects on open"));
+ ui_table_add_row(GTK_TABLE(table), 0, w_rescan_projects_on_open, NULL);
gtk_widget_set_tooltip_text(w_rescan_projects_on_open,
_("If the option is activated (default), then all projects will be re-scanned"
" on opening of the workbench."));
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).