Commit eb7b2c5ca1d91772cd1cc25842dd9b85365c1849
1 parent
09ab3f9b
Exists in
master
and in
3 other branches
Atualizando tradução pt_BR
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
ft_cut.c
... | ... | @@ -404,7 +404,7 @@ cut_data_request(void) |
404 | 404 | ctlr_add(O_UP_DATA + j, 0, 0); |
405 | 405 | |
406 | 406 | /* Abort the transfer. */ |
407 | - cut_abort(SC_ABORT_FILE,_( "Error \"%s\" reading local file (rc=%d)" ), strerror(errno), errno); | |
407 | + cut_abort(SC_ABORT_FILE,_( "Error \"%s\" reading from local file (rc=%d)" ), strerror(errno), errno); | |
408 | 408 | return; |
409 | 409 | } |
410 | 410 | |
... | ... | @@ -500,7 +500,7 @@ cut_data(void) |
500 | 500 | |
501 | 501 | /* Write it to the file. */ |
502 | 502 | if (fwrite((char *)cvbuf, conv_length, 1, ftsession->ft_local_file) == 0) { |
503 | - cut_abort(SC_ABORT_FILE,_( "Error \"%s\" writing to file (rc=%d)" ),strerror(errno),errno); | |
503 | + cut_abort(SC_ABORT_FILE,_( "Error \"%s\" writing to local file (rc=%d)" ),strerror(errno),errno); | |
504 | 504 | } else { |
505 | 505 | ft_length += conv_length; |
506 | 506 | ft_update_length(NULL); | ... | ... |