@@ -57,7 +57,7 @@ func initApp() *cli.App {
57
57
Name : "source" ,
58
58
Aliases : []string {"s" , "from" },
59
59
Required : true ,
60
- Usage : "Source language to translate" ,
60
+ Usage : "Source language to translate; specifying the value '?' will shows a selectable menu " ,
61
61
EnvVars : []string {"STRANS_SOURCE_LANG" },
62
62
Action : func (ctx * cli.Context , s string ) error {
63
63
if strings .TrimSpace (s ) == "" {
@@ -74,7 +74,7 @@ func initApp() *cli.App {
74
74
Name : "target" ,
75
75
Aliases : []string {"t" , "to" },
76
76
Required : true ,
77
- Usage : "Target language to translate" ,
77
+ Usage : "Target language to translate; specifying the value '?' will shows a selectable menu " ,
78
78
EnvVars : []string {"STRANS_TARGET_LANG" },
79
79
Action : func (ctx * cli.Context , s string ) error {
80
80
if strings .TrimSpace (s ) == "" {
@@ -119,13 +119,13 @@ func initApp() *cli.App {
119
119
& cli.BoolFlag {
120
120
Name : "list-source" ,
121
121
Aliases : []string {"S" },
122
- Usage : "Show list of source languages" ,
122
+ Usage : "Show a list of source languages" ,
123
123
Required : false ,
124
124
},
125
125
& cli.BoolFlag {
126
126
Name : "list-target" ,
127
127
Aliases : []string {"T" },
128
- Usage : "Show list of target languages" ,
128
+ Usage : "Show a list of target languages" ,
129
129
Required : false ,
130
130
},
131
131
& cli.BoolFlag {
0 commit comments