Commit 190cdc144f13fd3ad4407fb088ded4a51afdc0dd
1 parent
0f4fd014
Exists in
master
and in
3 other branches
Fixing "print" action label.
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/core/actions/table.c
| ... | ... | @@ -421,8 +421,8 @@ |
| 421 | 421 | .type = LIB3270_ACTION_TYPE_GENERIC, |
| 422 | 422 | |
| 423 | 423 | .key = NULL, |
| 424 | - .icon = NULL, | |
| 425 | - .label = NULL, | |
| 424 | + .icon = "edit-clear", | |
| 425 | + .label = N_("Erase input"), | |
| 426 | 426 | .summary = NULL, |
| 427 | 427 | .activate = lib3270_eraseinput, |
| 428 | 428 | |
| ... | ... | @@ -640,7 +640,7 @@ |
| 640 | 640 | |
| 641 | 641 | .key = "Print", |
| 642 | 642 | .icon = "document-print", |
| 643 | - .label = NULL, | |
| 643 | + .label = N_("Print"), | |
| 644 | 644 | .summary = N_("Send to print"), |
| 645 | 645 | .description = N_("If the terminal has selected area print it, if not, print all contents."), |
| 646 | 646 | .activate = lib3270_print, | ... | ... |