PNIO: clean up the title and description of the GSD folder path preference.

It wasn't clear that the preference is the pathname of a directory that
contains the GSD files.  It used the term "Networkpath", which is an odd
name for a folder - the path *itself* doesn't necessarily have anything
to do with networks; for example, there is no guarantee that it's a
directory on a network file server.  It also didn't make it sufficienty
clear that this isn't the pathname of a GSD file, it's the pathname of a
directory *containing* GSD files.
This commit is contained in:
Guy Harris 2023-11-02 13:11:19 -07:00
parent 4035dfa94d
commit 660cefa708
1 changed files with 3 additions and 3 deletions

View File

@ -17835,9 +17835,9 @@ proto_register_pn_io (void)
"Whether the PNIO dissector is allowed to use detailed PROFIsafe dissection of cyclic data frames",
&pnio_ps_selection);
prefs_register_directory_preference(pnio_module, "pnio_ps_networkpath",
"Configuration GSD-File Networkpath", /* Title */
"Select your Networkpath to your GSD-Files.", /* Descreption */
&pnio_ps_networkpath); /* Variable to save the GSD-File networkpath */
"Folder containing GSD files", /* Title */
"Place GSD files in this folder.", /* Descreption */
&pnio_ps_networkpath); /* Variable in which to save the GSD file folder path */
/* subdissector code */
register_dissector("pn_io", dissect_PNIO_heur, proto_pn_io);