Ignore:
Timestamp:
Mar 7, 2008, 8:48:36 PM (15 years ago)
Author:
charles
Message:

lots more i18n string work -- making strings more consistent, folding redundant strings together, etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libtransmission/natpmp.c

    r5209 r5221  
    6666{
    6767    if( ret==NATPMP_TRYAGAIN )
    68         tr_dbg( _( "%s: %s returned 'try again'" ), getKey(), func );
     68        tr_dbg( _( "%s: %s responded 'try again'" ), getKey(), func );
    6969    else if( ret >= 0 )
    70         tr_dbg( _( "%s: %s returned success (%d)" ), getKey(), func, ret );
     70        tr_dbg( _( "%s: %s succeeded (%d)" ), getKey(), func, ret );
    7171    else
    72         tr_err( _( "%s: %s returned error %d, errno is %d (%s)" ), getKey(), func, ret, errno, tr_strerror(errno) );
     72        tr_err( _( "%s: %s failed (%d): %s (%d)" ), getKey(), func, ret, tr_strerror(errno), errno );
    7373}
    7474
     
    164164        logVal( "readnatpmpresponseorretry", val );
    165165        if( val >= 0 ) {
    166             tr_inf( _( "%s: port %d has been unmapped." ), getKey(), nat->port );
     166            tr_inf( _( "%s: port %d has been unmapped" ), getKey(), nat->port );
    167167            nat->state = TR_NATPMP_IDLE;
    168168            nat->port = -1;
Note: See TracChangeset for help on using the changeset viewer.