Commit 32077591198cde5b4d8a50eedee84bd442a5b412
1 parent
43ebfc5a
Exists in
master
and in
3 other branches
Fixing action descriptions.
Showing
1 changed file
with
24 additions
and
24 deletions
Show diff stats
src/core/actions/table.c
... | ... | @@ -83,7 +83,7 @@ |
83 | 83 | .keys = NULL, |
84 | 84 | .icon = "gtk-connect", |
85 | 85 | .label = N_( "_Connect" ) , |
86 | - .summary = N_( "Connect to host." ), | |
86 | + .summary = N_( "Connect to host" ), | |
87 | 87 | .activate = connect_host, |
88 | 88 | |
89 | 89 | .group = LIB3270_ACTION_GROUP_OFFLINE, |
... | ... | @@ -97,7 +97,7 @@ |
97 | 97 | .keys = NULL, |
98 | 98 | .icon = "gtk-disconnect", |
99 | 99 | .label = N_( "_Disconnect" ), |
100 | - .summary = N_( "Disconnect from host." ), | |
100 | + .summary = N_( "Disconnect from host" ), | |
101 | 101 | .activate = lib3270_disconnect, |
102 | 102 | |
103 | 103 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -114,7 +114,7 @@ |
114 | 114 | .keys = "Up,KP_Up", |
115 | 115 | .icon = NULL, |
116 | 116 | .label = NULL, |
117 | - .summary = N_( "Cursor up 1 position." ), | |
117 | + .summary = N_( "Cursor up 1 position" ), | |
118 | 118 | .activate = lib3270_cursor_up, |
119 | 119 | |
120 | 120 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -128,7 +128,7 @@ |
128 | 128 | .keys = "Down,KP_Down", |
129 | 129 | .icon = NULL, |
130 | 130 | .label = NULL, |
131 | - .summary = N_( "Cursor down 1 position." ), | |
131 | + .summary = N_( "Cursor down 1 position" ), | |
132 | 132 | .activate = lib3270_cursor_down, |
133 | 133 | |
134 | 134 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -142,7 +142,7 @@ |
142 | 142 | .keys = "Left,KP_Left", |
143 | 143 | .icon = NULL, |
144 | 144 | .label = NULL, |
145 | - .summary = N_( "Cursor left 1 position." ), | |
145 | + .summary = N_( "Cursor left 1 position" ), | |
146 | 146 | .activate = lib3270_cursor_left, |
147 | 147 | |
148 | 148 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -156,7 +156,7 @@ |
156 | 156 | .keys = "Right,KP_Right", |
157 | 157 | .icon = NULL, |
158 | 158 | .label = NULL, |
159 | - .summary = N_( "Cursor right 1 position." ), | |
159 | + .summary = N_( "Cursor right 1 position" ), | |
160 | 160 | .activate = lib3270_cursor_right, |
161 | 161 | |
162 | 162 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -170,7 +170,7 @@ |
170 | 170 | .keys = "Control_R", |
171 | 171 | .icon = NULL, |
172 | 172 | .label = NULL, |
173 | - .summary = N_( "Cursor to first field on next line or any lines after that." ), | |
173 | + .summary = N_( "Cursor to first field on next line or any lines after that" ), | |
174 | 174 | .activate = lib3270_newline, |
175 | 175 | |
176 | 176 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -184,7 +184,7 @@ |
184 | 184 | .keys = NULL, |
185 | 185 | .icon = NULL, |
186 | 186 | .label = NULL, |
187 | - .summary = N_( "Cursor to previous word." ), | |
187 | + .summary = N_( "Cursor to previous word" ), | |
188 | 188 | .activate = lib3270_previousword, |
189 | 189 | |
190 | 190 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -198,7 +198,7 @@ |
198 | 198 | .keys = NULL, |
199 | 199 | .icon = NULL, |
200 | 200 | .label = NULL, |
201 | - .summary = N_( "Cursor to next unprotected word." ), | |
201 | + .summary = N_( "Cursor to next unprotected word" ), | |
202 | 202 | .activate = lib3270_nextword, |
203 | 203 | |
204 | 204 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -215,7 +215,7 @@ |
215 | 215 | .keys = NULL, |
216 | 216 | .icon = "document-save", |
217 | 217 | .label = NULL, |
218 | - .summary = N_( "Save screen." ), | |
218 | + .summary = N_( "Save screen to file" ), | |
219 | 219 | .activate = save_all, |
220 | 220 | |
221 | 221 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -229,7 +229,7 @@ |
229 | 229 | .keys = NULL, |
230 | 230 | .icon = NULL, |
231 | 231 | .label = NULL, |
232 | - .summary = N_( "Save selected area." ), | |
232 | + .summary = N_( "Save selected area to file" ), | |
233 | 233 | .activate = save_selected, |
234 | 234 | |
235 | 235 | .group = LIB3270_ACTION_GROUP_SELECTION, |
... | ... | @@ -257,7 +257,7 @@ |
257 | 257 | .keys = NULL, |
258 | 258 | .icon = "document-load", |
259 | 259 | .label = NULL, |
260 | - .summary = N_( "Paste file." ), | |
260 | + .summary = N_( "Paste from text file" ), | |
261 | 261 | .activate = paste_file, |
262 | 262 | |
263 | 263 | .group = LIB3270_ACTION_GROUP_LOCK_STATE, |
... | ... | @@ -334,7 +334,7 @@ |
334 | 334 | .keys = NULL, |
335 | 335 | .icon = NULL, |
336 | 336 | .label = NULL, |
337 | - .summary = N_( "Move the cursor to the first blank after the last nonblank in the field." ), | |
337 | + .summary = N_( "Move the cursor to the first blank after the last nonblank in the field" ), | |
338 | 338 | .activate = lib3270_fieldend, |
339 | 339 | |
340 | 340 | .group = LIB3270_ACTION_GROUP_FORMATTED, |
... | ... | @@ -348,7 +348,7 @@ |
348 | 348 | .keys = "Home", |
349 | 349 | .icon = "go-first", |
350 | 350 | .label = NULL, |
351 | - .summary = N_( "Move to first unprotected field on screen." ), | |
351 | + .summary = N_( "Move to first unprotected field on screen" ), | |
352 | 352 | .activate = lib3270_firstfield, |
353 | 353 | |
354 | 354 | .group = LIB3270_ACTION_GROUP_FORMATTED, |
... | ... | @@ -362,7 +362,7 @@ |
362 | 362 | .keys = "Tab", |
363 | 363 | .icon = "go-next", |
364 | 364 | .label = NULL, |
365 | - .summary = N_( "Tab forward to next field." ), | |
365 | + .summary = N_( "Tab forward to next field" ), | |
366 | 366 | .activate = lib3270_nextfield, |
367 | 367 | |
368 | 368 | .group = LIB3270_ACTION_GROUP_FORMATTED, |
... | ... | @@ -376,7 +376,7 @@ |
376 | 376 | .keys = "<Shift>ISO_Left_Tab", |
377 | 377 | .icon = "go-previous", |
378 | 378 | .label = NULL, |
379 | - .summary = N_( "Tab backward to previous field." ), | |
379 | + .summary = N_( "Tab backward to previous field" ), | |
380 | 380 | .activate = lib3270_previousfield, |
381 | 381 | |
382 | 382 | .group = LIB3270_ACTION_GROUP_FORMATTED, |
... | ... | @@ -394,7 +394,7 @@ |
394 | 394 | .keys = "<Ctrl>w", |
395 | 395 | .icon = NULL, |
396 | 396 | .label = NULL, |
397 | - .summary = N_( "Backspaces the cursor until it hits the front of a word." ), | |
397 | + .summary = N_( "Backspaces the cursor until it hits the front of a word" ), | |
398 | 398 | .activate = lib3270_deleteword, |
399 | 399 | |
400 | 400 | .group = LIB3270_ACTION_GROUP_LOCK_STATE, |
... | ... | @@ -437,7 +437,7 @@ |
437 | 437 | .keys = "End", |
438 | 438 | .icon = NULL, |
439 | 439 | .label = NULL, |
440 | - .summary = N_( "Erase End Of Field Key." ), | |
440 | + .summary = N_( "Erase End Of Field" ), | |
441 | 441 | .activate = lib3270_eraseeof, |
442 | 442 | |
443 | 443 | .group = LIB3270_ACTION_GROUP_FORMATTED, |
... | ... | @@ -451,7 +451,7 @@ |
451 | 451 | .keys = NULL, |
452 | 452 | .icon = NULL, |
453 | 453 | .label = NULL, |
454 | - .summary = N_( "Erase End Of Line Key." ), | |
454 | + .summary = N_( "Erase End Of Line" ), | |
455 | 455 | .activate = lib3270_eraseeol, |
456 | 456 | |
457 | 457 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -482,7 +482,7 @@ |
482 | 482 | .keys = NULL, |
483 | 483 | .icon = NULL, |
484 | 484 | .label = NULL, |
485 | - .summary = N_( "Send an \"Enter\" action." ), | |
485 | + .summary = N_( "Send an \"Enter\" action" ), | |
486 | 486 | .activate = lib3270_enter, |
487 | 487 | |
488 | 488 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -568,7 +568,7 @@ |
568 | 568 | .keys = NULL, |
569 | 569 | .icon = NULL, |
570 | 570 | .label = NULL, |
571 | - .summary = N_( "3270-style backspace." ), | |
571 | + .summary = N_( "3270-style backspace" ), | |
572 | 572 | .activate = lib3270_backspace, |
573 | 573 | |
574 | 574 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -582,7 +582,7 @@ |
582 | 582 | .keys = "<shift>Escape", |
583 | 583 | .icon = NULL, |
584 | 584 | .label = NULL, |
585 | - .summary = N_( "ATTN key, per RFC 2355. Sends IP, regardless." ), | |
585 | + .summary = N_( "ATTN key, per RFC 2355. Sends IP, regardless" ), | |
586 | 586 | .activate = lib3270_attn, |
587 | 587 | |
588 | 588 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -642,7 +642,7 @@ |
642 | 642 | .icon = "document-print", |
643 | 643 | .label = N_("Print"), |
644 | 644 | .summary = N_("Send to print"), |
645 | - .description = N_("If the terminal has selected area print it, if not, print all contents."), | |
645 | + .description = N_("If the terminal has selected area print it, if not, print all contents"), | |
646 | 646 | .activate = lib3270_print, |
647 | 647 | |
648 | 648 | .group = LIB3270_ACTION_GROUP_ONLINE, |
... | ... | @@ -670,7 +670,7 @@ |
670 | 670 | .keys = NULL, |
671 | 671 | .icon = NULL, |
672 | 672 | .label = NULL, |
673 | - .summary = N_( "Print selected area." ), | |
673 | + .summary = N_( "Print selected area" ), | |
674 | 674 | .activate = lib3270_print_selected, |
675 | 675 | |
676 | 676 | .group = LIB3270_ACTION_GROUP_SELECTION, | ... | ... |