Do the same for ProjectOrganizer as for Geany in https://github.com/geany/geany/pull/582 You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/351
-- Commit Summary --
* projectorganizer: Use the word "symbol" instead of "tag"
-- File Changes --
M projectorganizer/README (32) M projectorganizer/src/prjorg-menu.c (4) M projectorganizer/src/prjorg-project.c (4) M projectorganizer/src/prjorg-sidebar.c (4)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/351.patch https://github.com/geany/geany-plugins/pull/351.diff
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/351
@@ -620,7 +620,7 @@ gint prjorg_project_add_properties_tab(GtkWidget *notebook) gtk_entry_set_text(GTK_ENTRY(e->ignored_dirs_patterns), str); g_free(str);
- label = gtk_label_new(_("Generate tags for all project files:"));
- label = gtk_label_new(_("Parse symbols for all project files:"));
I'm not sure if the new sentence is correct. I'd rather say _Parse symbols **in** all project files_ or _**from**_ rather than _**for**_. @elextr ?
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/351/files#r53238746
Otherwise, LGTM
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/351#issuecomment-185428338
@@ -620,7 +620,7 @@ gint prjorg_project_add_properties_tab(GtkWidget *notebook) gtk_entry_set_text(GTK_ENTRY(e->ignored_dirs_patterns), str); g_free(str);
- label = gtk_label_new(_("Generate tags for all project files:"));
- label = gtk_label_new(_("Parse symbols for all project files:"));
Yeah, and actually we don't want to "parse symbols" but rather files. I'd just simplify it to "Index all project files"
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/351/files#r53242309
gtk_misc_set_alignment(GTK_MISC(label), 0, 0); e->generate_tag_prefs = gtk_combo_box_text_new();
- gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(e->generate_tag_prefs), _("Auto (generate if less than 300 files)"));
- gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(e->generate_tag_prefs), _("Auto (index if less than 300 files)"));
BTW, it says 300 here, but 500 in the docs.
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/351/files#r53314921
@b4n Thanks, fixed. As the linguistic problem disappeared because I renamed the label, I guess the patch is OK now so merging.
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/351#issuecomment-185942760
Merged #351.
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/351#event-555772388
github-comments@lists.geany.org