Commit eb7b2c5ca1d91772cd1cc25842dd9b85365c1849

Authored by perry.werneck@gmail.com
1 parent 09ab3f9b

Atualizando tradução pt_BR

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
@@ -404,7 +404,7 @@ cut_data_request(void) @@ -404,7 +404,7 @@ cut_data_request(void)
404 ctlr_add(O_UP_DATA + j, 0, 0); 404 ctlr_add(O_UP_DATA + j, 0, 0);
405 405
406 /* Abort the transfer. */ 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 return; 408 return;
409 } 409 }
410 410
@@ -500,7 +500,7 @@ cut_data(void) @@ -500,7 +500,7 @@ cut_data(void)
500 500
501 /* Write it to the file. */ 501 /* Write it to the file. */
502 if (fwrite((char *)cvbuf, conv_length, 1, ftsession->ft_local_file) == 0) { 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 } else { 504 } else {
505 ft_length += conv_length; 505 ft_length += conv_length;
506 ft_update_length(NULL); 506 ft_update_length(NULL);