Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Sat, 30 Nov 2024 15:31:03 UTC Commit: e6c39c6e92a8c70e0bfb307bd9241c6f836dd021 https://github.com/geany/geany/commit/e6c39c6e92a8c70e0bfb307bd9241c6f836dd0...
Log Message: ----------- Make saveaction preference strings shorter
The existing strings make the dialog too wide and they are a little too verbose. I believe the substitutes contain roughly the same information value.
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).