Commit 73fc7959398935ca8a0a411861a4907bff03644c

Authored by Perry Werneck
1 parent b9b51d67

Small adjustments in toggles labels and descriptions.

Showing 1 changed file with 10 additions and 10 deletions   Show diff stats
src/core/toggles/table.c
@@ -81,7 +81,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -81,7 +81,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
81 .key = NULL, // Default keycode 81 .key = NULL, // Default keycode
82 .icon = NULL, // Icon name 82 .icon = NULL, // Icon name
83 .label = N_( "Track Cursor" ), 83 .label = N_( "Track Cursor" ),
84 - .summary = N_( "Track Cursor" ), 84 + .summary = N_( "Track Cursor location" ),
85 .description = N_( "Display the cursor location in the OIA (the status line)" ) 85 .description = N_( "Display the cursor location in the OIA (the status line)" )
86 }, 86 },
87 { 87 {
@@ -90,7 +90,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -90,7 +90,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
90 .def = False, 90 .def = False,
91 .key = NULL, // Default keycode 91 .key = NULL, // Default keycode
92 .icon = NULL, // Icon name 92 .icon = NULL, // Icon name
93 - .label = N_( "Data Stream" ), 93 + .label = N_( "Trace Data Stream" ),
94 .summary = N_( "Trace Data Stream" ), 94 .summary = N_( "Trace Data Stream" ),
95 .description = "" 95 .description = ""
96 }, 96 },
@@ -120,7 +120,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -120,7 +120,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
120 .def = False, 120 .def = False,
121 .key = NULL, // Default keycode 121 .key = NULL, // Default keycode
122 .icon = NULL, // Icon name 122 .icon = NULL, // Icon name
123 - .label = N_( "Screens" ), 123 + .label = N_( "Trace Screen" ),
124 .summary = N_( "Trace screen contents" ), 124 .summary = N_( "Trace screen contents" ),
125 .description = "" 125 .description = ""
126 }, 126 },
@@ -130,7 +130,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -130,7 +130,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
130 .def = False, 130 .def = False,
131 .key = NULL, // Default keycode 131 .key = NULL, // Default keycode
132 .icon = NULL, // Icon name 132 .icon = NULL, // Icon name
133 - .label = N_( "Events" ), 133 + .label = N_( "Trace Events" ),
134 .summary = N_( "Trace interface and application events" ), 134 .summary = N_( "Trace interface and application events" ),
135 .description = "" 135 .description = ""
136 }, 136 },
@@ -140,7 +140,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -140,7 +140,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
140 .def = False, 140 .def = False,
141 .key = NULL, // Default keycode 141 .key = NULL, // Default keycode
142 .icon = NULL, // Icon name 142 .icon = NULL, // Icon name
143 - .label = N_( "Paste with left margin" ), 143 + .label = N_( "Margined paste" ),
144 .summary = N_( "Paste with left margin" ), 144 .summary = N_( "Paste with left margin" ),
145 .description = N_( "If set, puts restrictions on how pasted text is placed on the screen. The position of the cursor at the time the paste operation is begun is used as a left margin. No pasted text will fill any area of the screen to the left of that position. This option is useful for pasting into certain IBM editors that use the left side of the screen for control information" ) 145 .description = N_( "If set, puts restrictions on how pasted text is placed on the screen. The position of the cursor at the time the paste operation is begun is used as a left margin. No pasted text will fill any area of the screen to the left of that position. This option is useful for pasting into certain IBM editors that use the left side of the screen for control information" )
146 }, 146 },
@@ -280,9 +280,9 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -280,9 +280,9 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
280 .def = True, 280 .def = True,
281 .key = NULL, // Default keycode 281 .key = NULL, // Default keycode
282 .icon = NULL, // Icon name 282 .icon = NULL, // Icon name
283 - .label = N_( "Alternate screen" ), 283 + .label = N_( "Auto Resize" ),
284 .summary = N_( "Resize on alternate screen" ), 284 .summary = N_( "Resize on alternate screen" ),
285 - .description = N_( "Auto resize on altscreen" ) 285 + .description = N_( "Change screen size on alternative screen" )
286 }, 286 },
287 { 287 {
288 .id = LIB3270_TOGGLE_KEEP_ALIVE, 288 .id = LIB3270_TOGGLE_KEEP_ALIVE,
@@ -291,7 +291,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -291,7 +291,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
291 .key = NULL, // Default keycode 291 .key = NULL, // Default keycode
292 .icon = NULL, // Icon name 292 .icon = NULL, // Icon name
293 .label = N_( "Network keep alive" ), 293 .label = N_( "Network keep alive" ),
294 - .summary = N_( "Network keep alive" ), 294 + .summary = N_( "Enable use of network keep alive" ),
295 .description = N_( "Enable network keep-alive with SO_KEEPALIVE" ) 295 .description = N_( "Enable network keep-alive with SO_KEEPALIVE" )
296 }, 296 },
297 { 297 {
@@ -300,7 +300,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -300,7 +300,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
300 .def = False, 300 .def = False,
301 .key = NULL, // Default keycode 301 .key = NULL, // Default keycode
302 .icon = NULL, // Icon name 302 .icon = NULL, // Icon name
303 - .label = N_( "Network data" ), 303 + .label = N_( "Trace Network" ),
304 .summary = N_( "Trace network data flow" ), 304 .summary = N_( "Trace network data flow" ),
305 .description = N_( "Enable network in/out trace" ) 305 .description = N_( "Enable network in/out trace" )
306 }, 306 },
@@ -310,7 +310,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = @@ -310,7 +310,7 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] =
310 .def = False, 310 .def = False,
311 .key = NULL, // Default keycode 311 .key = NULL, // Default keycode
312 .icon = NULL, // Icon name 312 .icon = NULL, // Icon name
313 - .label = N_( "SSL negotiation" ), 313 + .label = N_( "Trace Security" ),
314 .summary = N_( "Trace SSL negotiation" ), 314 .summary = N_( "Trace SSL negotiation" ),
315 .description = N_( "Enable security negotiation trace" ) 315 .description = N_( "Enable security negotiation trace" )
316 }, 316 },