[epiphany/mcatanzaro/cli-pt2: 2/4] Ensure all --help output fits 80 column terminal



commit 197f4d3a0f87468495e47b13f9c1bd05cc51c72e
Author: Michael Catanzaro <mcatanzaro igalia com>
Date:   Fri Jan 4 13:22:42 2019 -0600

    Ensure all --help output fits 80 column terminal
    
    This looks nice, but means we can't hint at the extended usage of
    --application-mode that receives a desktop basename instead of
    --profile.

 data/epiphany.1 | 4 ++--
 src/ephy-main.c | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/data/epiphany.1 b/data/epiphany.1
index fb6ae9a2b..05eede2c0 100644
--- a/data/epiphany.1
+++ b/data/epiphany.1
@@ -24,7 +24,7 @@ Load the given session state file
 Start a private instance with separate user data
 .TP
 \fB\-\-incognito\-mode\fR
-Start an incognito instance with a read-only view of user data
+Start an instance with user data read-only
 .TP
 \fB\-a\fR, \fB\-\-application\-mode\fR[=\fIBASENAME\fR]
 Start a private instance in web application mode (requires passing either desktop file basename or
@@ -34,7 +34,7 @@ Start a private instance in web application mode (requires passing either deskto
 Start a private instance for WebDriver control
 .TP
 \fB\-\-profile\fR=\fIFILE\fR
-Profile directory to use in the private instance (optional)
+Custom profile directory for private instance (optional)
 .TP
 -?, \fB\-\-help\fR
 Show help options
diff --git a/src/ephy-main.c b/src/ephy-main.c
index 132bad30f..603c536bb 100644
--- a/src/ephy-main.c
+++ b/src/ephy-main.c
@@ -116,14 +116,14 @@ static const GOptionEntry option_entries[] =
   { "private-instance", 'p', 0, G_OPTION_ARG_NONE, &private_instance,
     N_("Start a private instance with separate user data"), NULL },
   { "incognito-mode", 'i', 0, G_OPTION_ARG_NONE, &incognito_mode,
-    N_("Start an incognito instance with a read-only view of data"), NULL },
+    N_("Start an instance with user data read-only"), NULL },
   { "application-mode", 'a', G_OPTION_FLAG_FILENAME | G_OPTION_FLAG_OPTIONAL_ARG,
     G_OPTION_ARG_CALLBACK, application_mode_cb,
-    N_("Start a private instance in web application mode"), N_("[BASENAME]") },
+    N_("Start a private instance in web application mode"), NULL },
   { "automation-mode", 0, 0, G_OPTION_ARG_NONE, &automation_mode,
     N_("Start a private instance for WebDriver control"), NULL },
   { "profile", 0, 0, G_OPTION_ARG_STRING, &profile_directory,
-    N_("Profile directory to use in the private instance (optional)"), N_("DIR") },
+    N_("Custom profile directory for private instance"), N_("DIR") },
   { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, &arguments,
     "", N_("URL …") },
   { "version", 0, G_OPTION_FLAG_NO_ARG | G_OPTION_FLAG_HIDDEN,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]