Commit 61ad61e70e97df5cddcacf9f4be9b3df23a940e4
1 parent
62dff8b4
Exists in
master
and in
3 other branches
Ajuste na string para contornar erro no processamento do .pot
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
telnet.c
| ... | ... | @@ -666,7 +666,7 @@ int net_connect(H3270 *session, const char *host, char *portname, Boolean ls, Bo |
| 666 | 666 | |
| 667 | 667 | if (setsockopt(session->sock, SOL_SOCKET, SO_KEEPALIVE, (char *)&optval, sizeof(optval)) < 0) |
| 668 | 668 | { |
| 669 | - popup_a_sockerr(session, N_( "Can´t %s network keep-alive" ), optval ? _( "enable" ) : _( "disable" )); | |
| 669 | + popup_a_sockerr(session, N_( "Can't %s network keep-alive" ), optval ? _( "enable" ) : _( "disable" )); | |
| 670 | 670 | close_fail; |
| 671 | 671 | } |
| 672 | 672 | else | ... | ... |
toggles.c
| ... | ... | @@ -170,7 +170,7 @@ static void toggle_keepalive(H3270 *session, struct lib3270_toggle *t unused, LI |
| 170 | 170 | |
| 171 | 171 | if (setsockopt(session->sock, SOL_SOCKET, SO_KEEPALIVE, (char *)&optval, sizeof(optval)) < 0) |
| 172 | 172 | { |
| 173 | - popup_a_sockerr(session, N_( "Can´t %s network keep-alive" ), optval ? _( "enable" ) : _( "disable" )); | |
| 173 | + popup_a_sockerr(session, N_( "Can't %s network keep-alive" ), optval ? _( "enable" ) : _( "disable" )); | |
| 174 | 174 | } |
| 175 | 175 | else |
| 176 | 176 | { | ... | ... |