Changeset 5915


Ignore:
Timestamp:
May 23, 2008, 4:56:03 PM (15 years ago)
Author:
livings124
Message:

keep strings consistent

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Transmission.xcodeproj/project.pbxproj

    r5905 r5915  
    24602460                                GCC_ENABLE_OBJC_EXCEPTIONS = YES;
    24612461                                GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
     2462                                GCC_WARN_UNUSED_FUNCTION = NO;
    24622463                                GCC_WARN_UNUSED_VARIABLE = NO;
    24632464                                MACOSX_DEPLOYMENT_TARGET = 10.4;
     
    24782479                                GCC_ENABLE_OBJC_EXCEPTIONS = YES;
    24792480                                GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
     2481                                GCC_WARN_UNUSED_FUNCTION = NO;
    24802482                                GCC_WARN_UNUSED_VARIABLE = NO;
    24812483                                MACOSX_DEPLOYMENT_TARGET = 10.4;
  • trunk/macosx/FileNameCell.m

    r5904 r5915  
    144144        specialColor = [NSColor whiteColor];
    145145    else if ([[(FileOutlineView *)[self controlView] torrent] checkForFiles:
    146                     [(FileListNode *)[self objectValue] indexes]] == NSOffState)
     146                [(FileListNode *)[self objectValue] indexes]] == NSOffState)
    147147        specialColor = [NSColor disabledControlTextColor];
    148148    else;
  • trunk/macosx/StatsWindowController.m

    r5914 r5915  
    200200            break;
    201201        case 0: //for users that have this problem
    202             [fNumOpenedField setStringValue: NSLocalizedString(@"n/a", "stats window -> times opened")];
     202            [fNumOpenedField setStringValue: NSLocalizedString(@"N/A", "stats window -> times opened")];
    203203            break;
    204204        default:
  • trunk/macosx/TorrentTableView.m

    r5907 r5915  
    688688        [item setState: mode == NSMixedState ? NSOnState : NSOffState];
    689689    }
    690     else  //assume the menu is part of the file list
     690    else //assume the menu is part of the file list
    691691    {
    692692        if ([menu numberOfItems] > 0)
Note: See TracChangeset for help on using the changeset viewer.