Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Kirkgaard Nielsen <memb_gitlab@mikini.dk>2018-10-30 00:01:33 +0300
committerMikkel Kirkgaard Nielsen <memb_gitlab@mikini.dk>2018-10-30 00:01:33 +0300
commit4267370e2c609d988333a133be2453dabff6e2ef (patch)
tree9f600f284e27b13a0ad9ba8c2781d3bd6c54dd7e
parent62cec506bf12ab867b3a79ea292ab83e326708de (diff)
man+help: elaborate on file types of -connect and -edit cmd line options
-rw-r--r--src/remmina.14
-rw-r--r--src/remmina.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/remmina.1 b/src/remmina.1
index 4a82ca8af..9327d0809 100644
--- a/src/remmina.1
+++ b/src/remmina.1
@@ -45,9 +45,9 @@ Show help options
.It Fl a
Show about dialog
.It Fl c, -connect\fR=\fIFILE\fR
-Directly connect to desktop described by file (.remmina or plugin support type)
+Directly connect to desktop using options described by file, file type can be either .remmina or one supported by a file import capable plugin
.It Fl e, -edit\fR=\fIFILE\fR
-Open connect UI with options described by file (.remmina or plugin support type)
+Open and edit desktop connection using options described by file, file type can be either .remmina or one supported by a file import capable plugin
.It Fl k, -kiosk\fR
Start Remmina in kiosk mode (thin client)
.It Fl n, -new\fR
diff --git a/src/remmina.c b/src/remmina.c
index eac14d790..94ea8be5c 100644
--- a/src/remmina.c
+++ b/src/remmina.c
@@ -79,9 +79,9 @@ gboolean kioskmode;
static GOptionEntry remmina_options[] =
{
{ "about", 'a', 0, G_OPTION_ARG_NONE, NULL, N_("Show about dialog"), NULL },
- { "connect", 'c', 0, G_OPTION_ARG_FILENAME, NULL, N_("Connect to a .remmina file"), "FILE" },
- { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, NULL, N_("Connect to a .remmina file"), "FILE" },
- { "edit", 'e', 0, G_OPTION_ARG_FILENAME, NULL, N_("Edit a .remmina file"), "FILE" },
+ { "connect", 'c', 0, G_OPTION_ARG_FILENAME, NULL, N_("Connect to desktop described by file (.remmina or type supported by plugin)"), "FILE" },
+ { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, NULL, N_("Connect to desktop described by file (.remmina or type supported by plugin)"), "FILE" },
+ { "edit", 'e', 0, G_OPTION_ARG_FILENAME, NULL, N_("Edit desktop connection described by file (.remmina or type supported by plugin)"), "FILE" },
{ "help", '?', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, NULL, NULL, NULL },
{ "kiosk", 'k', 0, G_OPTION_ARG_NONE, NULL, N_("Start Remmina in Kiosk mode"), NULL },
{ "new", 'n', 0, G_OPTION_ARG_NONE, NULL, N_("Create a new connection profile"), NULL },