Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: GitHub noreply@github.com Date: Mon, 09 Dec 2024 11:28:29 UTC Commit: 397bb5eac38b24bbbc3b8c434766dc109af2d7f8 https://github.com/geany/geany/commit/397bb5eac38b24bbbc3b8c434766dc109af2d7...
Log Message: ----------- Merge pull request #4061 from techee/saveactions_str
Split label in saveactions preferences to make the dialog less wide
Modified Paths: -------------- plugins/saveactions.c
Modified: plugins/saveactions.c 6 lines changed, 2 insertions(+), 4 deletions(-) =================================================================== @@ -1439,7 +1439,7 @@ GtkWidget *plugin_configure(GtkDialog *dialog) gtk_box_pack_start(GTK_BOX(inner_vbox), hbox, FALSE, FALSE, 0);
label = gtk_label_new_with_mnemonic( - _("Date/_Time format for backup files (for a list of available conversion specifiers see https://docs.gtk.org/glib/method.DateTime.format.html):")); + _("Date/_Time format for backup files (see https://docs.gtk.org/glib/method.DateTime.format.html):")); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); gtk_box_pack_start(GTK_BOX(inner_vbox), label, FALSE, FALSE, 7);
@@ -1528,9 +1528,7 @@ GtkWidget *plugin_configure(GtkDialog *dialog) gtk_box_pack_start(GTK_BOX(inner_vbox), hbox, FALSE, FALSE, 0);
help_label = gtk_label_new( - _("<i>If you set the Instant Save directory to a directory " - "which is not automatically cleared,\nyou will need to cleanup instantly saved files " - "manually. The Instant Save plugin will not delete the created files.</i>")); + _("<i>The plugin will not delete the files created in this directory.</i>")); gtk_label_set_use_markup(GTK_LABEL(help_label), TRUE); gtk_misc_set_alignment(GTK_MISC(help_label), 0, 0.5); gtk_widget_set_margin_left(help_label, 12);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).