Merge pull request #2371 from ntrel/fif-strings

Find in files: Update file pattern label and tooltip
master
Frank Lanitz 2019-11-26 10:15:06 +01:00 committed by GitHub
commit 5cc69b3d67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -894,7 +894,7 @@ static void create_fif_dialog(void)
size_group = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
gtk_size_group_add_widget(size_group, label);
label3 = gtk_label_new_with_mnemonic(_("Fi_les:"));
label3 = gtk_label_new_with_mnemonic(_("File _patterns:"));
gtk_misc_set_alignment(GTK_MISC(label3), 0, 0.5);
combo_files_mode = create_fif_file_mode_combo();
@ -906,7 +906,8 @@ static void create_fif_dialog(void)
entry = gtk_bin_get_child(GTK_BIN(fcombo));
ui_entry_add_clear_icon(GTK_ENTRY(entry));
gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE);
gtk_widget_set_tooltip_text(entry, _("File patterns, e.g. *.c *.h"));
gtk_widget_set_tooltip_text(entry,
_("Space separated list of file patterns (e.g. *.c *.h)"));
ui_hookup_widget(fif_dlg.dialog, entry, "entry_files");
fif_dlg.files_combo = fcombo;